﻿/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.2
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2017 Daniel Eden
 */
@import "https://fonts.googleapis.com/css2?family=Jost:wght@300;400;500&family=Noto+Sans+HK:wght@500;700&display=swap";
.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}
.animated.infinite {
  animation-iteration-count: infinite;
}
.animated.hinge {
  animation-duration: 2s;
}
.animated.bounceIn,
.animated.bounceOut,
.animated.flipOutX,
.animated.flipOutY {
  animation-duration: 0.75s;
}
@keyframes bounce {
  0%,
  20%,
  53%,
  80%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translateZ(0);
  }
  40%,
  43% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    transform: translate3d(0, -4px, 0);
  }
}
.bounce {
  animation-name: bounce;
  transform-origin: center bottom;
}
@keyframes flash {
  0%,
  50%,
  to {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}
.flash {
  animation-name: flash;
}
@keyframes pulse {
  0% {
    transform: scaleX(1);
  }
  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    transform: scaleX(1);
  }
}
.pulse {
  animation-name: pulse;
}
@keyframes rubberBand {
  0% {
    transform: scaleX(1);
  }
  30% {
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    transform: scaleX(1);
  }
}
.rubberBand {
  animation-name: rubberBand;
}
@keyframes shake {
  0%,
  to {
    transform: translateZ(0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    transform: translate3d(-10px, 0, 0);
  }
  20%,
  40%,
  60%,
  80% {
    transform: translate3d(10px, 0, 0);
  }
}
.shake {
  animation-name: shake;
}
@keyframes headShake {
  0% {
    transform: translateX(0);
  }
  6.5% {
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    transform: translateX(0);
  }
}
.headShake {
  animation-timing-function: ease-in-out;
  animation-name: headShake;
}
@keyframes swing {
  20% {
    transform: rotate(15deg);
  }
  40% {
    transform: rotate(-10deg);
  }
  60% {
    transform: rotate(5deg);
  }
  80% {
    transform: rotate(-5deg);
  }
  to {
    transform: rotate(0deg);
  }
}
.swing {
  transform-origin: top center;
  animation-name: swing;
}
@keyframes tada {
  0% {
    transform: scaleX(1);
  }
  10%,
  20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
  }
  30%,
  50%,
  70%,
  90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
  }
  40%,
  60%,
  80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
  }
  to {
    transform: scaleX(1);
  }
}
.tada {
  animation-name: tada;
}
@keyframes wobble {
  0% {
    transform: none;
  }
  15% {
    transform: translate3d(-25%, 0, 0) rotate(-5deg);
  }
  30% {
    transform: translate3d(20%, 0, 0) rotate(3deg);
  }
  45% {
    transform: translate3d(-15%, 0, 0) rotate(-3deg);
  }
  60% {
    transform: translate3d(10%, 0, 0) rotate(2deg);
  }
  75% {
    transform: translate3d(-5%, 0, 0) rotate(-1deg);
  }
  to {
    transform: none;
  }
}
.wobble {
  animation-name: wobble;
}
@keyframes jello {
  0%,
  11.1%,
  to {
    transform: none;
  }
  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.jello {
  animation-name: jello;
  transform-origin: center;
}
@keyframes bounceIn {
  0%,
  20%,
  40%,
  60%,
  80%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}
.bounceIn {
  animation-name: bounceIn;
}
@keyframes bounceInDown {
  0%,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }
  75% {
    transform: translate3d(0, -10px, 0);
  }
  90% {
    transform: translate3d(0, 5px, 0);
  }
  to {
    transform: none;
  }
}
.bounceInDown {
  animation-name: bounceInDown;
}
@keyframes bounceInLeft {
  0%,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    transform: translate3d(5px, 0, 0);
  }
  to {
    transform: none;
  }
}
.bounceInLeft {
  animation-name: bounceInLeft;
}
@keyframes bounceInRight {
  0%,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    transform: translate3d(10px, 0, 0);
  }
  90% {
    transform: translate3d(-5px, 0, 0);
  }
  to {
    transform: none;
  }
}
.bounceInRight {
  animation-name: bounceInRight;
}
@keyframes bounceInUp {
  0%,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  75% {
    transform: translate3d(0, 10px, 0);
  }
  90% {
    transform: translate3d(0, -5px, 0);
  }
  to {
    transform: translateZ(0);
  }
}
.bounceInUp {
  animation-name: bounceInUp;
}
@keyframes bounceOut {
  20% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%,
  55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.bounceOut {
  animation-name: bounceOut;
}
@keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }
  40%,
  45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.bounceOutDown {
  animation-name: bounceOutDown;
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
.bounceOutLeft {
  animation-name: bounceOutLeft;
}
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
.bounceOutRight {
  animation-name: bounceOutRight;
}
@keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }
  40%,
  45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
.bounceOutUp {
  animation-name: bounceOutUp;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  animation-name: fadeIn;
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInDown {
  animation-name: fadeInDown;
}
@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInDownBig {
  animation-name: fadeInDownBig;
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInLeft {
  animation-name: fadeInLeft;
}
@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInLeftBig {
  animation-name: fadeInLeftBig;
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInRight {
  animation-name: fadeInRight;
}
@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInRightBig {
  animation-name: fadeInRightBig;
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInUp {
  animation-name: fadeInUp;
}
@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInUpBig {
  animation-name: fadeInUpBig;
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.fadeOut {
  animation-name: fadeOut;
}
@keyframes fadeOutDown {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}
.fadeOutDown {
  animation-name: fadeOutDown;
}
@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.fadeOutDownBig {
  animation-name: fadeOutDownBig;
}
@keyframes fadeOutLeft {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
}
.fadeOutLeft {
  animation-name: fadeOutLeft;
}
@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
.fadeOutLeftBig {
  animation-name: fadeOutLeftBig;
}
@keyframes fadeOutRight {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
}
.fadeOutRight {
  animation-name: fadeOutRight;
}
@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
.fadeOutRightBig {
  animation-name: fadeOutRightBig;
}
@keyframes fadeOutUp {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}
.fadeOutUp {
  animation-name: fadeOutUp;
}
@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
.fadeOutUpBig {
  animation-name: fadeOutUpBig;
}
@keyframes flip {
  0% {
    transform: perspective(400px) rotateY(-1turn);
    animation-timing-function: ease-out;
  }
  40% {
    transform: perspective(400px) translateZ(150px) rotateY(-190deg);
    animation-timing-function: ease-out;
  }
  50% {
    transform: perspective(400px) translateZ(150px) rotateY(-170deg);
    animation-timing-function: ease-in;
  }
  80% {
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    animation-timing-function: ease-in;
  }
  to {
    transform: perspective(400px);
    animation-timing-function: ease-in;
  }
}
.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  animation-name: flip;
}
@keyframes flipInX {
  0% {
    transform: perspective(400px) rotateX(90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotateX(-20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotateX(10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotateX(-5deg);
  }
  to {
    transform: perspective(400px);
  }
}
.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipInX;
}
@keyframes flipInY {
  0% {
    transform: perspective(400px) rotateY(90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotateY(-20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotateY(10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotateY(-5deg);
  }
  to {
    transform: perspective(400px);
  }
}
.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipInY;
}
@keyframes flipOutX {
  0% {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotateX(-20deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}
.flipOutX {
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}
@keyframes flipOutY {
  0% {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotateY(-15deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}
.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipOutY;
}
@keyframes lightSpeedIn {
  0% {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    transform: skewX(-5deg);
    opacity: 1;
  }
  to {
    transform: none;
    opacity: 1;
  }
}
.lightSpeedIn {
  animation-name: lightSpeedIn;
  animation-timing-function: ease-out;
}
@keyframes lightSpeedOut {
  0% {
    opacity: 1;
  }
  to {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.lightSpeedOut {
  animation-name: lightSpeedOut;
  animation-timing-function: ease-in;
}
@keyframes rotateIn {
  0% {
    transform-origin: center;
    transform: rotate(-200deg);
    opacity: 0;
  }
  to {
    transform-origin: center;
    transform: none;
    opacity: 1;
  }
}
.rotateIn {
  animation-name: rotateIn;
}
@keyframes rotateInDownLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate(-45deg);
    opacity: 0;
  }
  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInDownLeft {
  animation-name: rotateInDownLeft;
}
@keyframes rotateInDownRight {
  0% {
    transform-origin: right bottom;
    transform: rotate(45deg);
    opacity: 0;
  }
  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInDownRight {
  animation-name: rotateInDownRight;
}
@keyframes rotateInUpLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate(45deg);
    opacity: 0;
  }
  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpLeft {
  animation-name: rotateInUpLeft;
}
@keyframes rotateInUpRight {
  0% {
    transform-origin: right bottom;
    transform: rotate(-90deg);
    opacity: 0;
  }
  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpRight {
  animation-name: rotateInUpRight;
}
@keyframes rotateOut {
  0% {
    transform-origin: center;
    opacity: 1;
  }
  to {
    transform-origin: center;
    transform: rotate(200deg);
    opacity: 0;
  }
}
.rotateOut {
  animation-name: rotateOut;
}
@keyframes rotateOutDownLeft {
  0% {
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    transform-origin: left bottom;
    transform: rotate(45deg);
    opacity: 0;
  }
}
.rotateOutDownLeft {
  animation-name: rotateOutDownLeft;
}
@keyframes rotateOutDownRight {
  0% {
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    transform-origin: right bottom;
    transform: rotate(-45deg);
    opacity: 0;
  }
}
.rotateOutDownRight {
  animation-name: rotateOutDownRight;
}
@keyframes rotateOutUpLeft {
  0% {
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    transform-origin: left bottom;
    transform: rotate(-45deg);
    opacity: 0;
  }
}
.rotateOutUpLeft {
  animation-name: rotateOutUpLeft;
}
@keyframes rotateOutUpRight {
  0% {
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    transform-origin: right bottom;
    transform: rotate(90deg);
    opacity: 0;
  }
}
.rotateOutUpRight {
  animation-name: rotateOutUpRight;
}
@keyframes hinge {
  0% {
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  20%,
  60% {
    transform: rotate(80deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  40%,
  80% {
    transform: rotate(60deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.hinge {
  animation-name: hinge;
}
@keyframes jackInTheBox {
  0% {
    opacity: 0;
    transform: scale(0.1) rotate(30deg);
    transform-origin: center bottom;
  }
  50% {
    transform: rotate(-10deg);
  }
  70% {
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.jackInTheBox {
  animation-name: jackInTheBox;
}
@keyframes rollIn {
  0% {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate(-120deg);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.rollIn {
  animation-name: rollIn;
}
@keyframes rollOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate(120deg);
  }
}
.rollOut {
  animation-name: rollOut;
}
@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.zoomIn {
  animation-name: zoomIn;
}
@keyframes zoomInDown {
  0% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInDown {
  animation-name: zoomInDown;
}
@keyframes zoomInLeft {
  0% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInLeft {
  animation-name: zoomInLeft;
}
@keyframes zoomInRight {
  0% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInRight {
  animation-name: zoomInRight;
}
@keyframes zoomInUp {
  0% {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInUp {
  animation-name: zoomInUp;
}
@keyframes zoomOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.zoomOut {
  animation-name: zoomOut;
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutDown {
  animation-name: zoomOutDown;
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform-origin: left center;
  }
}
.zoomOutLeft {
  animation-name: zoomOutLeft;
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(2000px, 0, 0);
    transform-origin: right center;
  }
}
.zoomOutRight {
  animation-name: zoomOutRight;
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutUp {
  animation-name: zoomOutUp;
}
@keyframes slideInDown {
  0% {
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    transform: translateZ(0);
  }
}
.slideInDown {
  animation-name: slideInDown;
}
@keyframes slideInLeft {
  0% {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translateZ(0);
  }
}
.slideInLeft {
  animation-name: slideInLeft;
}
@keyframes slideInRight {
  0% {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translateZ(0);
  }
}
.slideInRight {
  animation-name: slideInRight;
}
@keyframes slideInUp {
  0% {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    transform: translateZ(0);
  }
}
.slideInUp {
  animation-name: slideInUp;
}
@keyframes slideOutDown {
  0% {
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 100%, 0);
  }
}
.slideOutDown {
  animation-name: slideOutDown;
}
@keyframes slideOutLeft {
  0% {
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0);
  }
}
.slideOutLeft {
  animation-name: slideOutLeft;
}
@keyframes slideOutRight {
  0% {
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    transform: translate3d(100%, 0, 0);
  }
}
.slideOutRight {
  animation-name: slideOutRight;
}
@keyframes slideOutUp {
  0% {
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, -100%, 0);
  }
}
.slideOutUp {
  animation-name: slideOutUp;
} /*!
 * Font Awesome Free 5.15.4 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */
.fa,
.fab,
.fad,
.fal,
.far,
.fas {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}
.fa-lg {
  font-size: 1.33333em;
  line-height: 0.75em;
  vertical-align: -0.0667em;
}
.fa-xs {
  font-size: 0.75em;
}
.fa-sm {
  font-size: 0.875em;
}
.fa-1x {
  font-size: 1em;
}
.fa-2x {
  font-size: 2em;
}
.fa-3x {
  font-size: 3em;
}
.fa-4x {
  font-size: 4em;
}
.fa-5x {
  font-size: 5em;
}
.fa-6x {
  font-size: 6em;
}
.fa-7x {
  font-size: 7em;
}
.fa-8x {
  font-size: 8em;
}
.fa-9x {
  font-size: 9em;
}
.fa-10x {
  font-size: 10em;
}
.fa-fw {
  text-align: center;
  width: 1.25em;
}
.fa-ul {
  list-style-type: none;
  margin-left: 2.5em;
  padding-left: 0;
}
.fa-ul > li {
  position: relative;
}
.fa-li {
  left: -2em;
  position: absolute;
  text-align: center;
  width: 2em;
  line-height: inherit;
}
.fa-border {
  border: 0.08em solid #eee;
  border-radius: 0.1em;
  padding: 0.2em 0.25em 0.15em;
}
.fa-pull-left {
  float: left;
}
.fa-pull-right {
  float: right;
}
.fa.fa-pull-left,
.fab.fa-pull-left,
.fal.fa-pull-left,
.far.fa-pull-left,
.fas.fa-pull-left {
  margin-right: 0.3em;
}
.fa.fa-pull-right,
.fab.fa-pull-right,
.fal.fa-pull-right,
.far.fa-pull-right,
.fas.fa-pull-right {
  margin-left: 0.3em;
}
.fa-spin {
  -webkit-animation: fa-spin 2s linear infinite;
  animation: fa-spin 2s linear infinite;
}
.fa-pulse {
  -webkit-animation: fa-spin 1s steps(8) infinite;
  animation: fa-spin 1s steps(8) infinite;
}
@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}
@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}
.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  -webkit-transform: rotate(270deg);
  transform: rotate(270deg);
}
.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}
.fa-flip-vertical {
  -webkit-transform: scaleY(-1);
  transform: scaleY(-1);
}
.fa-flip-both,
.fa-flip-horizontal.fa-flip-vertical,
.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
}
.fa-flip-both,
.fa-flip-horizontal.fa-flip-vertical {
  -webkit-transform: scale(-1);
  transform: scale(-1);
}
:root .fa-flip-both,
:root .fa-flip-horizontal,
:root .fa-flip-vertical,
:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270 {
  -webkit-filter: none;
  filter: none;
}
.fa-stack {
  display: inline-block;
  height: 2em;
  line-height: 2em;
  position: relative;
  vertical-align: middle;
  width: 2.5em;
}
.fa-stack-1x,
.fa-stack-2x {
  left: 0;
  position: absolute;
  text-align: center;
  width: 100%;
}
.fa-stack-1x {
  line-height: inherit;
}
.fa-stack-2x {
  font-size: 2em;
}
.fa-inverse {
  color: #fff;
}
.fa-500px:before {
  content: "";
}
.fa-accessible-icon:before {
  content: "";
}
.fa-accusoft:before {
  content: "";
}
.fa-acquisitions-incorporated:before {
  content: "";
}
.fa-ad:before {
  content: "";
}
.fa-address-book:before {
  content: "";
}
.fa-address-card:before {
  content: "";
}
.fa-adjust:before {
  content: "";
}
.fa-adn:before {
  content: "";
}
.fa-adversal:before {
  content: "";
}
.fa-affiliatetheme:before {
  content: "";
}
.fa-air-freshener:before {
  content: "";
}
.fa-airbnb:before {
  content: "";
}
.fa-algolia:before {
  content: "";
}
.fa-align-center:before {
  content: "";
}
.fa-align-justify:before {
  content: "";
}
.fa-align-left:before {
  content: "";
}
.fa-align-right:before {
  content: "";
}
.fa-alipay:before {
  content: "";
}
.fa-allergies:before {
  content: "";
}
.fa-amazon:before {
  content: "";
}
.fa-amazon-pay:before {
  content: "";
}
.fa-ambulance:before {
  content: "";
}
.fa-american-sign-language-interpreting:before {
  content: "";
}
.fa-amilia:before {
  content: "";
}
.fa-anchor:before {
  content: "";
}
.fa-android:before {
  content: "";
}
.fa-angellist:before {
  content: "";
}
.fa-angle-double-down:before {
  content: "";
}
.fa-angle-double-left:before {
  content: "";
}
.fa-angle-double-right:before {
  content: "";
}
.fa-angle-double-up:before {
  content: "";
}
.fa-angle-down:before {
  content: "";
}
.fa-angle-left:before {
  content: "";
}
.fa-angle-right:before {
  content: "";
}
.fa-angle-up:before {
  content: "";
}
.fa-angry:before {
  content: "";
}
.fa-angrycreative:before {
  content: "";
}
.fa-angular:before {
  content: "";
}
.fa-ankh:before {
  content: "";
}
.fa-app-store:before {
  content: "";
}
.fa-app-store-ios:before {
  content: "";
}
.fa-apper:before {
  content: "";
}
.fa-apple:before {
  content: "";
}
.fa-apple-alt:before {
  content: "";
}
.fa-apple-pay:before {
  content: "";
}
.fa-archive:before {
  content: "";
}
.fa-archway:before {
  content: "";
}
.fa-arrow-alt-circle-down:before {
  content: "";
}
.fa-arrow-alt-circle-left:before {
  content: "";
}
.fa-arrow-alt-circle-right:before {
  content: "";
}
.fa-arrow-alt-circle-up:before {
  content: "";
}
.fa-arrow-circle-down:before {
  content: "";
}
.fa-arrow-circle-left:before {
  content: "";
}
.fa-arrow-circle-right:before {
  content: "";
}
.fa-arrow-circle-up:before {
  content: "";
}
.fa-arrow-down:before {
  content: "";
}
.fa-arrow-left:before {
  content: "";
}
.fa-arrow-right:before {
  content: "";
}
.fa-arrow-up:before {
  content: "";
}
.fa-arrows-alt:before {
  content: "";
}
.fa-arrows-alt-h:before {
  content: "";
}
.fa-arrows-alt-v:before {
  content: "";
}
.fa-artstation:before {
  content: "";
}
.fa-assistive-listening-systems:before {
  content: "";
}
.fa-asterisk:before {
  content: "";
}
.fa-asymmetrik:before {
  content: "";
}
.fa-at:before {
  content: "";
}
.fa-atlas:before {
  content: "";
}
.fa-atlassian:before {
  content: "";
}
.fa-atom:before {
  content: "";
}
.fa-audible:before {
  content: "";
}
.fa-audio-description:before {
  content: "";
}
.fa-autoprefixer:before {
  content: "";
}
.fa-avianex:before {
  content: "";
}
.fa-aviato:before {
  content: "";
}
.fa-award:before {
  content: "";
}
.fa-aws:before {
  content: "";
}
.fa-baby:before {
  content: "";
}
.fa-baby-carriage:before {
  content: "";
}
.fa-backspace:before {
  content: "";
}
.fa-backward:before {
  content: "";
}
.fa-bacon:before {
  content: "";
}
.fa-bacteria:before {
  content: "";
}
.fa-bacterium:before {
  content: "";
}
.fa-bahai:before {
  content: "";
}
.fa-balance-scale:before {
  content: "";
}
.fa-balance-scale-left:before {
  content: "";
}
.fa-balance-scale-right:before {
  content: "";
}
.fa-ban:before {
  content: "";
}
.fa-band-aid:before {
  content: "";
}
.fa-bandcamp:before {
  content: "";
}
.fa-barcode:before {
  content: "";
}
.fa-bars:before {
  content: "";
}
.fa-baseball-ball:before {
  content: "";
}
.fa-basketball-ball:before {
  content: "";
}
.fa-bath:before {
  content: "";
}
.fa-battery-empty:before {
  content: "";
}
.fa-battery-full:before {
  content: "";
}
.fa-battery-half:before {
  content: "";
}
.fa-battery-quarter:before {
  content: "";
}
.fa-battery-three-quarters:before {
  content: "";
}
.fa-battle-net:before {
  content: "";
}
.fa-bed:before {
  content: "";
}
.fa-beer:before {
  content: "";
}
.fa-behance:before {
  content: "";
}
.fa-behance-square:before {
  content: "";
}
.fa-bell:before {
  content: "";
}
.fa-bell-slash:before {
  content: "";
}
.fa-bezier-curve:before {
  content: "";
}
.fa-bible:before {
  content: "";
}
.fa-bicycle:before {
  content: "";
}
.fa-biking:before {
  content: "";
}
.fa-bimobject:before {
  content: "";
}
.fa-binoculars:before {
  content: "";
}
.fa-biohazard:before {
  content: "";
}
.fa-birthday-cake:before {
  content: "";
}
.fa-bitbucket:before {
  content: "";
}
.fa-bitcoin:before {
  content: "";
}
.fa-bity:before {
  content: "";
}
.fa-black-tie:before {
  content: "";
}
.fa-blackberry:before {
  content: "";
}
.fa-blender:before {
  content: "";
}
.fa-blender-phone:before {
  content: "";
}
.fa-blind:before {
  content: "";
}
.fa-blog:before {
  content: "";
}
.fa-blogger:before {
  content: "";
}
.fa-blogger-b:before {
  content: "";
}
.fa-bluetooth:before {
  content: "";
}
.fa-bluetooth-b:before {
  content: "";
}
.fa-bold:before {
  content: "";
}
.fa-bolt:before {
  content: "";
}
.fa-bomb:before {
  content: "";
}
.fa-bone:before {
  content: "";
}
.fa-bong:before {
  content: "";
}
.fa-book:before {
  content: "";
}
.fa-book-dead:before {
  content: "";
}
.fa-book-medical:before {
  content: "";
}
.fa-book-open:before {
  content: "";
}
.fa-book-reader:before {
  content: "";
}
.fa-bookmark:before {
  content: "";
}
.fa-bootstrap:before {
  content: "";
}
.fa-border-all:before {
  content: "";
}
.fa-border-none:before {
  content: "";
}
.fa-border-style:before {
  content: "";
}
.fa-bowling-ball:before {
  content: "";
}
.fa-box:before {
  content: "";
}
.fa-box-open:before {
  content: "";
}
.fa-box-tissue:before {
  content: "";
}
.fa-boxes:before {
  content: "";
}
.fa-braille:before {
  content: "";
}
.fa-brain:before {
  content: "";
}
.fa-bread-slice:before {
  content: "";
}
.fa-briefcase:before {
  content: "";
}
.fa-briefcase-medical:before {
  content: "";
}
.fa-broadcast-tower:before {
  content: "";
}
.fa-broom:before {
  content: "";
}
.fa-brush:before {
  content: "";
}
.fa-btc:before {
  content: "";
}
.fa-buffer:before {
  content: "";
}
.fa-bug:before {
  content: "";
}
.fa-building:before {
  content: "";
}
.fa-bullhorn:before {
  content: "";
}
.fa-bullseye:before {
  content: "";
}
.fa-burn:before {
  content: "";
}
.fa-buromobelexperte:before {
  content: "";
}
.fa-bus:before {
  content: "";
}
.fa-bus-alt:before {
  content: "";
}
.fa-business-time:before {
  content: "";
}
.fa-buy-n-large:before {
  content: "";
}
.fa-buysellads:before {
  content: "";
}
.fa-calculator:before {
  content: "";
}
.fa-calendar:before {
  content: "";
}
.fa-calendar-alt:before {
  content: "";
}
.fa-calendar-check:before {
  content: "";
}
.fa-calendar-day:before {
  content: "";
}
.fa-calendar-minus:before {
  content: "";
}
.fa-calendar-plus:before {
  content: "";
}
.fa-calendar-times:before {
  content: "";
}
.fa-calendar-week:before {
  content: "";
}
.fa-camera:before {
  content: "";
}
.fa-camera-retro:before {
  content: "";
}
.fa-campground:before {
  content: "";
}
.fa-canadian-maple-leaf:before {
  content: "";
}
.fa-candy-cane:before {
  content: "";
}
.fa-cannabis:before {
  content: "";
}
.fa-capsules:before {
  content: "";
}
.fa-car:before {
  content: "";
}
.fa-car-alt:before {
  content: "";
}
.fa-car-battery:before {
  content: "";
}
.fa-car-crash:before {
  content: "";
}
.fa-car-side:before {
  content: "";
}
.fa-caravan:before {
  content: "";
}
.fa-caret-down:before {
  content: "";
}
.fa-caret-left:before {
  content: "";
}
.fa-caret-right:before {
  content: "";
}
.fa-caret-square-down:before {
  content: "";
}
.fa-caret-square-left:before {
  content: "";
}
.fa-caret-square-right:before {
  content: "";
}
.fa-caret-square-up:before {
  content: "";
}
.fa-caret-up:before {
  content: "";
}
.fa-carrot:before {
  content: "";
}
.fa-cart-arrow-down:before {
  content: "";
}
.fa-cart-plus:before {
  content: "";
}
.fa-cash-register:before {
  content: "";
}
.fa-cat:before {
  content: "";
}
.fa-cc-amazon-pay:before {
  content: "";
}
.fa-cc-amex:before {
  content: "";
}
.fa-cc-apple-pay:before {
  content: "";
}
.fa-cc-diners-club:before {
  content: "";
}
.fa-cc-discover:before {
  content: "";
}
.fa-cc-jcb:before {
  content: "";
}
.fa-cc-mastercard:before {
  content: "";
}
.fa-cc-paypal:before {
  content: "";
}
.fa-cc-stripe:before {
  content: "";
}
.fa-cc-visa:before {
  content: "";
}
.fa-centercode:before {
  content: "";
}
.fa-centos:before {
  content: "";
}
.fa-certificate:before {
  content: "";
}
.fa-chair:before {
  content: "";
}
.fa-chalkboard:before {
  content: "";
}
.fa-chalkboard-teacher:before {
  content: "";
}
.fa-charging-station:before {
  content: "";
}
.fa-chart-area:before {
  content: "";
}
.fa-chart-bar:before {
  content: "";
}
.fa-chart-line:before {
  content: "";
}
.fa-chart-pie:before {
  content: "";
}
.fa-check:before {
  content: "";
}
.fa-check-circle:before {
  content: "";
}
.fa-check-double:before {
  content: "";
}
.fa-check-square:before {
  content: "";
}
.fa-cheese:before {
  content: "";
}
.fa-chess:before {
  content: "";
}
.fa-chess-bishop:before {
  content: "";
}
.fa-chess-board:before {
  content: "";
}
.fa-chess-king:before {
  content: "";
}
.fa-chess-knight:before {
  content: "";
}
.fa-chess-pawn:before {
  content: "";
}
.fa-chess-queen:before {
  content: "";
}
.fa-chess-rook:before {
  content: "";
}
.fa-chevron-circle-down:before {
  content: "";
}
.fa-chevron-circle-left:before {
  content: "";
}
.fa-chevron-circle-right:before {
  content: "";
}
.fa-chevron-circle-up:before {
  content: "";
}
.fa-chevron-down:before {
  content: "";
}
.fa-chevron-left:before {
  content: "";
}
.fa-chevron-right:before {
  content: "";
}
.fa-chevron-up:before {
  content: "";
}
.fa-child:before {
  content: "";
}
.fa-chrome:before {
  content: "";
}
.fa-chromecast:before {
  content: "";
}
.fa-church:before {
  content: "";
}
.fa-circle:before {
  content: "";
}
.fa-circle-notch:before {
  content: "";
}
.fa-city:before {
  content: "";
}
.fa-clinic-medical:before {
  content: "";
}
.fa-clipboard:before {
  content: "";
}
.fa-clipboard-check:before {
  content: "";
}
.fa-clipboard-list:before {
  content: "";
}
.fa-clock:before {
  content: "";
}
.fa-clone:before {
  content: "";
}
.fa-closed-captioning:before {
  content: "";
}
.fa-cloud:before {
  content: "";
}
.fa-cloud-download-alt:before {
  content: "";
}
.fa-cloud-meatball:before {
  content: "";
}
.fa-cloud-moon:before {
  content: "";
}
.fa-cloud-moon-rain:before {
  content: "";
}
.fa-cloud-rain:before {
  content: "";
}
.fa-cloud-showers-heavy:before {
  content: "";
}
.fa-cloud-sun:before {
  content: "";
}
.fa-cloud-sun-rain:before {
  content: "";
}
.fa-cloud-upload-alt:before {
  content: "";
}
.fa-cloudflare:before {
  content: "";
}
.fa-cloudscale:before {
  content: "";
}
.fa-cloudsmith:before {
  content: "";
}
.fa-cloudversify:before {
  content: "";
}
.fa-cocktail:before {
  content: "";
}
.fa-code:before {
  content: "";
}
.fa-code-branch:before {
  content: "";
}
.fa-codepen:before {
  content: "";
}
.fa-codiepie:before {
  content: "";
}
.fa-coffee:before {
  content: "";
}
.fa-cog:before {
  content: "";
}
.fa-cogs:before {
  content: "";
}
.fa-coins:before {
  content: "";
}
.fa-columns:before {
  content: "";
}
.fa-comment:before {
  content: "";
}
.fa-comment-alt:before {
  content: "";
}
.fa-comment-dollar:before {
  content: "";
}
.fa-comment-dots:before {
  content: "";
}
.fa-comment-medical:before {
  content: "";
}
.fa-comment-slash:before {
  content: "";
}
.fa-comments:before {
  content: "";
}
.fa-comments-dollar:before {
  content: "";
}
.fa-compact-disc:before {
  content: "";
}
.fa-compass:before {
  content: "";
}
.fa-compress:before {
  content: "";
}
.fa-compress-alt:before {
  content: "";
}
.fa-compress-arrows-alt:before {
  content: "";
}
.fa-concierge-bell:before {
  content: "";
}
.fa-confluence:before {
  content: "";
}
.fa-connectdevelop:before {
  content: "";
}
.fa-contao:before {
  content: "";
}
.fa-cookie:before {
  content: "";
}
.fa-cookie-bite:before {
  content: "";
}
.fa-copy:before {
  content: "";
}
.fa-copyright:before {
  content: "";
}
.fa-cotton-bureau:before {
  content: "";
}
.fa-couch:before {
  content: "";
}
.fa-cpanel:before {
  content: "";
}
.fa-creative-commons:before {
  content: "";
}
.fa-creative-commons-by:before {
  content: "";
}
.fa-creative-commons-nc:before {
  content: "";
}
.fa-creative-commons-nc-eu:before {
  content: "";
}
.fa-creative-commons-nc-jp:before {
  content: "";
}
.fa-creative-commons-nd:before {
  content: "";
}
.fa-creative-commons-pd:before {
  content: "";
}
.fa-creative-commons-pd-alt:before {
  content: "";
}
.fa-creative-commons-remix:before {
  content: "";
}
.fa-creative-commons-sa:before {
  content: "";
}
.fa-creative-commons-sampling:before {
  content: "";
}
.fa-creative-commons-sampling-plus:before {
  content: "";
}
.fa-creative-commons-share:before {
  content: "";
}
.fa-creative-commons-zero:before {
  content: "";
}
.fa-credit-card:before {
  content: "";
}
.fa-critical-role:before {
  content: "";
}
.fa-crop:before {
  content: "";
}
.fa-crop-alt:before {
  content: "";
}
.fa-cross:before {
  content: "";
}
.fa-crosshairs:before {
  content: "";
}
.fa-crow:before {
  content: "";
}
.fa-crown:before {
  content: "";
}
.fa-crutch:before {
  content: "";
}
.fa-css3:before {
  content: "";
}
.fa-css3-alt:before {
  content: "";
}
.fa-cube:before {
  content: "";
}
.fa-cubes:before {
  content: "";
}
.fa-cut:before {
  content: "";
}
.fa-cuttlefish:before {
  content: "";
}
.fa-d-and-d:before {
  content: "";
}
.fa-d-and-d-beyond:before {
  content: "";
}
.fa-dailymotion:before {
  content: "";
}
.fa-dashcube:before {
  content: "";
}
.fa-database:before {
  content: "";
}
.fa-deaf:before {
  content: "";
}
.fa-deezer:before {
  content: "";
}
.fa-delicious:before {
  content: "";
}
.fa-democrat:before {
  content: "";
}
.fa-deploydog:before {
  content: "";
}
.fa-deskpro:before {
  content: "";
}
.fa-desktop:before {
  content: "";
}
.fa-dev:before {
  content: "";
}
.fa-deviantart:before {
  content: "";
}
.fa-dharmachakra:before {
  content: "";
}
.fa-dhl:before {
  content: "";
}
.fa-diagnoses:before {
  content: "";
}
.fa-diaspora:before {
  content: "";
}
.fa-dice:before {
  content: "";
}
.fa-dice-d20:before {
  content: "";
}
.fa-dice-d6:before {
  content: "";
}
.fa-dice-five:before {
  content: "";
}
.fa-dice-four:before {
  content: "";
}
.fa-dice-one:before {
  content: "";
}
.fa-dice-six:before {
  content: "";
}
.fa-dice-three:before {
  content: "";
}
.fa-dice-two:before {
  content: "";
}
.fa-digg:before {
  content: "";
}
.fa-digital-ocean:before {
  content: "";
}
.fa-digital-tachograph:before {
  content: "";
}
.fa-directions:before {
  content: "";
}
.fa-discord:before {
  content: "";
}
.fa-discourse:before {
  content: "";
}
.fa-disease:before {
  content: "";
}
.fa-divide:before {
  content: "";
}
.fa-dizzy:before {
  content: "";
}
.fa-dna:before {
  content: "";
}
.fa-dochub:before {
  content: "";
}
.fa-docker:before {
  content: "";
}
.fa-dog:before {
  content: "";
}
.fa-dollar-sign:before {
  content: "";
}
.fa-dolly:before {
  content: "";
}
.fa-dolly-flatbed:before {
  content: "";
}
.fa-donate:before {
  content: "";
}
.fa-door-closed:before {
  content: "";
}
.fa-door-open:before {
  content: "";
}
.fa-dot-circle:before {
  content: "";
}
.fa-dove:before {
  content: "";
}
.fa-download:before {
  content: "";
}
.fa-draft2digital:before {
  content: "";
}
.fa-drafting-compass:before {
  content: "";
}
.fa-dragon:before {
  content: "";
}
.fa-draw-polygon:before {
  content: "";
}
.fa-dribbble:before {
  content: "";
}
.fa-dribbble-square:before {
  content: "";
}
.fa-dropbox:before {
  content: "";
}
.fa-drum:before {
  content: "";
}
.fa-drum-steelpan:before {
  content: "";
}
.fa-drumstick-bite:before {
  content: "";
}
.fa-drupal:before {
  content: "";
}
.fa-dumbbell:before {
  content: "";
}
.fa-dumpster:before {
  content: "";
}
.fa-dumpster-fire:before {
  content: "";
}
.fa-dungeon:before {
  content: "";
}
.fa-dyalog:before {
  content: "";
}
.fa-earlybirds:before {
  content: "";
}
.fa-ebay:before {
  content: "";
}
.fa-edge:before {
  content: "";
}
.fa-edge-legacy:before {
  content: "";
}
.fa-edit:before {
  content: "";
}
.fa-egg:before {
  content: "";
}
.fa-eject:before {
  content: "";
}
.fa-elementor:before {
  content: "";
}
.fa-ellipsis-h:before {
  content: "";
}
.fa-ellipsis-v:before {
  content: "";
}
.fa-ello:before {
  content: "";
}
.fa-ember:before {
  content: "";
}
.fa-empire:before {
  content: "";
}
.fa-envelope:before {
  content: "";
}
.fa-envelope-open:before {
  content: "";
}
.fa-envelope-open-text:before {
  content: "";
}
.fa-envelope-square:before {
  content: "";
}
.fa-envira:before {
  content: "";
}
.fa-equals:before {
  content: "";
}
.fa-eraser:before {
  content: "";
}
.fa-erlang:before {
  content: "";
}
.fa-ethereum:before {
  content: "";
}
.fa-ethernet:before {
  content: "";
}
.fa-etsy:before {
  content: "";
}
.fa-euro-sign:before {
  content: "";
}
.fa-evernote:before {
  content: "";
}
.fa-exchange-alt:before {
  content: "";
}
.fa-exclamation:before {
  content: "";
}
.fa-exclamation-circle:before {
  content: "";
}
.fa-exclamation-triangle:before {
  content: "";
}
.fa-expand:before {
  content: "";
}
.fa-expand-alt:before {
  content: "";
}
.fa-expand-arrows-alt:before {
  content: "";
}
.fa-expeditedssl:before {
  content: "";
}
.fa-external-link-alt:before {
  content: "";
}
.fa-external-link-square-alt:before {
  content: "";
}
.fa-eye:before {
  content: "";
}
.fa-eye-dropper:before {
  content: "";
}
.fa-eye-slash:before {
  content: "";
}
.fa-facebook:before {
  content: "";
}
.fa-facebook-f:before {
  content: "";
}
.fa-facebook-messenger:before {
  content: "";
}
.fa-facebook-square:before {
  content: "";
}
.fa-fan:before {
  content: "";
}
.fa-fantasy-flight-games:before {
  content: "";
}
.fa-fast-backward:before {
  content: "";
}
.fa-fast-forward:before {
  content: "";
}
.fa-faucet:before {
  content: "";
}
.fa-fax:before {
  content: "";
}
.fa-feather:before {
  content: "";
}
.fa-feather-alt:before {
  content: "";
}
.fa-fedex:before {
  content: "";
}
.fa-fedora:before {
  content: "";
}
.fa-female:before {
  content: "";
}
.fa-fighter-jet:before {
  content: "";
}
.fa-figma:before {
  content: "";
}
.fa-file:before {
  content: "";
}
.fa-file-alt:before {
  content: "";
}
.fa-file-archive:before {
  content: "";
}
.fa-file-audio:before {
  content: "";
}
.fa-file-code:before {
  content: "";
}
.fa-file-contract:before {
  content: "";
}
.fa-file-csv:before {
  content: "";
}
.fa-file-download:before {
  content: "";
}
.fa-file-excel:before {
  content: "";
}
.fa-file-export:before {
  content: "";
}
.fa-file-image:before {
  content: "";
}
.fa-file-import:before {
  content: "";
}
.fa-file-invoice:before {
  content: "";
}
.fa-file-invoice-dollar:before {
  content: "";
}
.fa-file-medical:before {
  content: "";
}
.fa-file-medical-alt:before {
  content: "";
}
.fa-file-pdf:before {
  content: "";
}
.fa-file-powerpoint:before {
  content: "";
}
.fa-file-prescription:before {
  content: "";
}
.fa-file-signature:before {
  content: "";
}
.fa-file-upload:before {
  content: "";
}
.fa-file-video:before {
  content: "";
}
.fa-file-word:before {
  content: "";
}
.fa-fill:before {
  content: "";
}
.fa-fill-drip:before {
  content: "";
}
.fa-film:before {
  content: "";
}
.fa-filter:before {
  content: "";
}
.fa-fingerprint:before {
  content: "";
}
.fa-fire:before {
  content: "";
}
.fa-fire-alt:before {
  content: "";
}
.fa-fire-extinguisher:before {
  content: "";
}
.fa-firefox:before {
  content: "";
}
.fa-firefox-browser:before {
  content: "";
}
.fa-first-aid:before {
  content: "";
}
.fa-first-order:before {
  content: "";
}
.fa-first-order-alt:before {
  content: "";
}
.fa-firstdraft:before {
  content: "";
}
.fa-fish:before {
  content: "";
}
.fa-fist-raised:before {
  content: "";
}
.fa-flag:before {
  content: "";
}
.fa-flag-checkered:before {
  content: "";
}
.fa-flag-usa:before {
  content: "";
}
.fa-flask:before {
  content: "";
}
.fa-flickr:before {
  content: "";
}
.fa-flipboard:before {
  content: "";
}
.fa-flushed:before {
  content: "";
}
.fa-fly:before {
  content: "";
}
.fa-folder:before {
  content: "";
}
.fa-folder-minus:before {
  content: "";
}
.fa-folder-open:before {
  content: "";
}
.fa-folder-plus:before {
  content: "";
}
.fa-font:before {
  content: "";
}
.fa-font-awesome:before {
  content: "";
}
.fa-font-awesome-alt:before {
  content: "";
}
.fa-font-awesome-flag:before {
  content: "";
}
.fa-font-awesome-logo-full:before {
  content: "";
}
.fa-fonticons:before {
  content: "";
}
.fa-fonticons-fi:before {
  content: "";
}
.fa-football-ball:before {
  content: "";
}
.fa-fort-awesome:before {
  content: "";
}
.fa-fort-awesome-alt:before {
  content: "";
}
.fa-forumbee:before {
  content: "";
}
.fa-forward:before {
  content: "";
}
.fa-foursquare:before {
  content: "";
}
.fa-free-code-camp:before {
  content: "";
}
.fa-freebsd:before {
  content: "";
}
.fa-frog:before {
  content: "";
}
.fa-frown:before {
  content: "";
}
.fa-frown-open:before {
  content: "";
}
.fa-fulcrum:before {
  content: "";
}
.fa-funnel-dollar:before {
  content: "";
}
.fa-futbol:before {
  content: "";
}
.fa-galactic-republic:before {
  content: "";
}
.fa-galactic-senate:before {
  content: "";
}
.fa-gamepad:before {
  content: "";
}
.fa-gas-pump:before {
  content: "";
}
.fa-gavel:before {
  content: "";
}
.fa-gem:before {
  content: "";
}
.fa-genderless:before {
  content: "";
}
.fa-get-pocket:before {
  content: "";
}
.fa-gg:before {
  content: "";
}
.fa-gg-circle:before {
  content: "";
}
.fa-ghost:before {
  content: "";
}
.fa-gift:before {
  content: "";
}
.fa-gifts:before {
  content: "";
}
.fa-git:before {
  content: "";
}
.fa-git-alt:before {
  content: "";
}
.fa-git-square:before {
  content: "";
}
.fa-github:before {
  content: "";
}
.fa-github-alt:before {
  content: "";
}
.fa-github-square:before {
  content: "";
}
.fa-gitkraken:before {
  content: "";
}
.fa-gitlab:before {
  content: "";
}
.fa-gitter:before {
  content: "";
}
.fa-glass-cheers:before {
  content: "";
}
.fa-glass-martini:before {
  content: "";
}
.fa-glass-martini-alt:before {
  content: "";
}
.fa-glass-whiskey:before {
  content: "";
}
.fa-glasses:before {
  content: "";
}
.fa-glide:before {
  content: "";
}
.fa-glide-g:before {
  content: "";
}
.fa-globe:before {
  content: "";
}
.fa-globe-africa:before {
  content: "";
}
.fa-globe-americas:before {
  content: "";
}
.fa-globe-asia:before {
  content: "";
}
.fa-globe-europe:before {
  content: "";
}
.fa-gofore:before {
  content: "";
}
.fa-golf-ball:before {
  content: "";
}
.fa-goodreads:before {
  content: "";
}
.fa-goodreads-g:before {
  content: "";
}
.fa-google:before {
  content: "";
}
.fa-google-drive:before {
  content: "";
}
.fa-google-pay:before {
  content: "";
}
.fa-google-play:before {
  content: "";
}
.fa-google-plus:before {
  content: "";
}
.fa-google-plus-g:before {
  content: "";
}
.fa-google-plus-square:before {
  content: "";
}
.fa-google-wallet:before {
  content: "";
}
.fa-gopuram:before {
  content: "";
}
.fa-graduation-cap:before {
  content: "";
}
.fa-gratipay:before {
  content: "";
}
.fa-grav:before {
  content: "";
}
.fa-greater-than:before {
  content: "";
}
.fa-greater-than-equal:before {
  content: "";
}
.fa-grimace:before {
  content: "";
}
.fa-grin:before {
  content: "";
}
.fa-grin-alt:before {
  content: "";
}
.fa-grin-beam:before {
  content: "";
}
.fa-grin-beam-sweat:before {
  content: "";
}
.fa-grin-hearts:before {
  content: "";
}
.fa-grin-squint:before {
  content: "";
}
.fa-grin-squint-tears:before {
  content: "";
}
.fa-grin-stars:before {
  content: "";
}
.fa-grin-tears:before {
  content: "";
}
.fa-grin-tongue:before {
  content: "";
}
.fa-grin-tongue-squint:before {
  content: "";
}
.fa-grin-tongue-wink:before {
  content: "";
}
.fa-grin-wink:before {
  content: "";
}
.fa-grip-horizontal:before {
  content: "";
}
.fa-grip-lines:before {
  content: "";
}
.fa-grip-lines-vertical:before {
  content: "";
}
.fa-grip-vertical:before {
  content: "";
}
.fa-gripfire:before {
  content: "";
}
.fa-grunt:before {
  content: "";
}
.fa-guilded:before {
  content: "";
}
.fa-guitar:before {
  content: "";
}
.fa-gulp:before {
  content: "";
}
.fa-h-square:before {
  content: "";
}
.fa-hacker-news:before {
  content: "";
}
.fa-hacker-news-square:before {
  content: "";
}
.fa-hackerrank:before {
  content: "";
}
.fa-hamburger:before {
  content: "";
}
.fa-hammer:before {
  content: "";
}
.fa-hamsa:before {
  content: "";
}
.fa-hand-holding:before {
  content: "";
}
.fa-hand-holding-heart:before {
  content: "";
}
.fa-hand-holding-medical:before {
  content: "";
}
.fa-hand-holding-usd:before {
  content: "";
}
.fa-hand-holding-water:before {
  content: "";
}
.fa-hand-lizard:before {
  content: "";
}
.fa-hand-middle-finger:before {
  content: "";
}
.fa-hand-paper:before {
  content: "";
}
.fa-hand-peace:before {
  content: "";
}
.fa-hand-point-down:before {
  content: "";
}
.fa-hand-point-left:before {
  content: "";
}
.fa-hand-point-right:before {
  content: "";
}
.fa-hand-point-up:before {
  content: "";
}
.fa-hand-pointer:before {
  content: "";
}
.fa-hand-rock:before {
  content: "";
}
.fa-hand-scissors:before {
  content: "";
}
.fa-hand-sparkles:before {
  content: "";
}
.fa-hand-spock:before {
  content: "";
}
.fa-hands:before {
  content: "";
}
.fa-hands-helping:before {
  content: "";
}
.fa-hands-wash:before {
  content: "";
}
.fa-handshake:before {
  content: "";
}
.fa-handshake-alt-slash:before {
  content: "";
}
.fa-handshake-slash:before {
  content: "";
}
.fa-hanukiah:before {
  content: "";
}
.fa-hard-hat:before {
  content: "";
}
.fa-hashtag:before {
  content: "";
}
.fa-hat-cowboy:before {
  content: "";
}
.fa-hat-cowboy-side:before {
  content: "";
}
.fa-hat-wizard:before {
  content: "";
}
.fa-hdd:before {
  content: "";
}
.fa-head-side-cough:before {
  content: "";
}
.fa-head-side-cough-slash:before {
  content: "";
}
.fa-head-side-mask:before {
  content: "";
}
.fa-head-side-virus:before {
  content: "";
}
.fa-heading:before {
  content: "";
}
.fa-headphones:before {
  content: "";
}
.fa-headphones-alt:before {
  content: "";
}
.fa-headset:before {
  content: "";
}
.fa-heart:before {
  content: "";
}
.fa-heart-broken:before {
  content: "";
}
.fa-heartbeat:before {
  content: "";
}
.fa-helicopter:before {
  content: "";
}
.fa-highlighter:before {
  content: "";
}
.fa-hiking:before {
  content: "";
}
.fa-hippo:before {
  content: "";
}
.fa-hips:before {
  content: "";
}
.fa-hire-a-helper:before {
  content: "";
}
.fa-history:before {
  content: "";
}
.fa-hive:before {
  content: "";
}
.fa-hockey-puck:before {
  content: "";
}
.fa-holly-berry:before {
  content: "";
}
.fa-home:before {
  content: "";
}
.fa-hooli:before {
  content: "";
}
.fa-hornbill:before {
  content: "";
}
.fa-horse:before {
  content: "";
}
.fa-horse-head:before {
  content: "";
}
.fa-hospital:before {
  content: "";
}
.fa-hospital-alt:before {
  content: "";
}
.fa-hospital-symbol:before {
  content: "";
}
.fa-hospital-user:before {
  content: "";
}
.fa-hot-tub:before {
  content: "";
}
.fa-hotdog:before {
  content: "";
}
.fa-hotel:before {
  content: "";
}
.fa-hotjar:before {
  content: "";
}
.fa-hourglass:before {
  content: "";
}
.fa-hourglass-end:before {
  content: "";
}
.fa-hourglass-half:before {
  content: "";
}
.fa-hourglass-start:before {
  content: "";
}
.fa-house-damage:before {
  content: "";
}
.fa-house-user:before {
  content: "";
}
.fa-houzz:before {
  content: "";
}
.fa-hryvnia:before {
  content: "";
}
.fa-html5:before {
  content: "";
}
.fa-hubspot:before {
  content: "";
}
.fa-i-cursor:before {
  content: "";
}
.fa-ice-cream:before {
  content: "";
}
.fa-icicles:before {
  content: "";
}
.fa-icons:before {
  content: "";
}
.fa-id-badge:before {
  content: "";
}
.fa-id-card:before {
  content: "";
}
.fa-id-card-alt:before {
  content: "";
}
.fa-ideal:before {
  content: "";
}
.fa-igloo:before {
  content: "";
}
.fa-image:before {
  content: "";
}
.fa-images:before {
  content: "";
}
.fa-imdb:before {
  content: "";
}
.fa-inbox:before {
  content: "";
}
.fa-indent:before {
  content: "";
}
.fa-industry:before {
  content: "";
}
.fa-infinity:before {
  content: "";
}
.fa-info:before {
  content: "";
}
.fa-info-circle:before {
  content: "";
}
.fa-innosoft:before {
  content: "";
}
.fa-instagram:before {
  content: "";
}
.fa-instagram-square:before {
  content: "";
}
.fa-instalod:before {
  content: "";
}
.fa-intercom:before {
  content: "";
}
.fa-internet-explorer:before {
  content: "";
}
.fa-invision:before {
  content: "";
}
.fa-ioxhost:before {
  content: "";
}
.fa-italic:before {
  content: "";
}
.fa-itch-io:before {
  content: "";
}
.fa-itunes:before {
  content: "";
}
.fa-itunes-note:before {
  content: "";
}
.fa-java:before {
  content: "";
}
.fa-jedi:before {
  content: "";
}
.fa-jedi-order:before {
  content: "";
}
.fa-jenkins:before {
  content: "";
}
.fa-jira:before {
  content: "";
}
.fa-joget:before {
  content: "";
}
.fa-joint:before {
  content: "";
}
.fa-joomla:before {
  content: "";
}
.fa-journal-whills:before {
  content: "";
}
.fa-js:before {
  content: "";
}
.fa-js-square:before {
  content: "";
}
.fa-jsfiddle:before {
  content: "";
}
.fa-kaaba:before {
  content: "";
}
.fa-kaggle:before {
  content: "";
}
.fa-key:before {
  content: "";
}
.fa-keybase:before {
  content: "";
}
.fa-keyboard:before {
  content: "";
}
.fa-keycdn:before {
  content: "";
}
.fa-khanda:before {
  content: "";
}
.fa-kickstarter:before {
  content: "";
}
.fa-kickstarter-k:before {
  content: "";
}
.fa-kiss:before {
  content: "";
}
.fa-kiss-beam:before {
  content: "";
}
.fa-kiss-wink-heart:before {
  content: "";
}
.fa-kiwi-bird:before {
  content: "";
}
.fa-korvue:before {
  content: "";
}
.fa-landmark:before {
  content: "";
}
.fa-language:before {
  content: "";
}
.fa-laptop:before {
  content: "";
}
.fa-laptop-code:before {
  content: "";
}
.fa-laptop-house:before {
  content: "";
}
.fa-laptop-medical:before {
  content: "";
}
.fa-laravel:before {
  content: "";
}
.fa-lastfm:before {
  content: "";
}
.fa-lastfm-square:before {
  content: "";
}
.fa-laugh:before {
  content: "";
}
.fa-laugh-beam:before {
  content: "";
}
.fa-laugh-squint:before {
  content: "";
}
.fa-laugh-wink:before {
  content: "";
}
.fa-layer-group:before {
  content: "";
}
.fa-leaf:before {
  content: "";
}
.fa-leanpub:before {
  content: "";
}
.fa-lemon:before {
  content: "";
}
.fa-less:before {
  content: "";
}
.fa-less-than:before {
  content: "";
}
.fa-less-than-equal:before {
  content: "";
}
.fa-level-down-alt:before {
  content: "";
}
.fa-level-up-alt:before {
  content: "";
}
.fa-life-ring:before {
  content: "";
}
.fa-lightbulb:before {
  content: "";
}
.fa-line:before {
  content: "";
}
.fa-link:before {
  content: "";
}
.fa-linkedin:before {
  content: "";
}
.fa-linkedin-in:before {
  content: "";
}
.fa-linode:before {
  content: "";
}
.fa-linux:before {
  content: "";
}
.fa-lira-sign:before {
  content: "";
}
.fa-list:before {
  content: "";
}
.fa-list-alt:before {
  content: "";
}
.fa-list-ol:before {
  content: "";
}
.fa-list-ul:before {
  content: "";
}
.fa-location-arrow:before {
  content: "";
}
.fa-lock:before {
  content: "";
}
.fa-lock-open:before {
  content: "";
}
.fa-long-arrow-alt-down:before {
  content: "";
}
.fa-long-arrow-alt-left:before {
  content: "";
}
.fa-long-arrow-alt-right:before {
  content: "";
}
.fa-long-arrow-alt-up:before {
  content: "";
}
.fa-low-vision:before {
  content: "";
}
.fa-luggage-cart:before {
  content: "";
}
.fa-lungs:before {
  content: "";
}
.fa-lungs-virus:before {
  content: "";
}
.fa-lyft:before {
  content: "";
}
.fa-magento:before {
  content: "";
}
.fa-magic:before {
  content: "";
}
.fa-magnet:before {
  content: "";
}
.fa-mail-bulk:before {
  content: "";
}
.fa-mailchimp:before {
  content: "";
}
.fa-male:before {
  content: "";
}
.fa-mandalorian:before {
  content: "";
}
.fa-map:before {
  content: "";
}
.fa-map-marked:before {
  content: "";
}
.fa-map-marked-alt:before {
  content: "";
}
.fa-map-marker:before {
  content: "";
}
.fa-map-marker-alt:before {
  content: "";
}
.fa-map-pin:before {
  content: "";
}
.fa-map-signs:before {
  content: "";
}
.fa-markdown:before {
  content: "";
}
.fa-marker:before {
  content: "";
}
.fa-mars:before {
  content: "";
}
.fa-mars-double:before {
  content: "";
}
.fa-mars-stroke:before {
  content: "";
}
.fa-mars-stroke-h:before {
  content: "";
}
.fa-mars-stroke-v:before {
  content: "";
}
.fa-mask:before {
  content: "";
}
.fa-mastodon:before {
  content: "";
}
.fa-maxcdn:before {
  content: "";
}
.fa-mdb:before {
  content: "";
}
.fa-medal:before {
  content: "";
}
.fa-medapps:before {
  content: "";
}
.fa-medium:before {
  content: "";
}
.fa-medium-m:before {
  content: "";
}
.fa-medkit:before {
  content: "";
}
.fa-medrt:before {
  content: "";
}
.fa-meetup:before {
  content: "";
}
.fa-megaport:before {
  content: "";
}
.fa-meh:before {
  content: "";
}
.fa-meh-blank:before {
  content: "";
}
.fa-meh-rolling-eyes:before {
  content: "";
}
.fa-memory:before {
  content: "";
}
.fa-mendeley:before {
  content: "";
}
.fa-menorah:before {
  content: "";
}
.fa-mercury:before {
  content: "";
}
.fa-meteor:before {
  content: "";
}
.fa-microblog:before {
  content: "";
}
.fa-microchip:before {
  content: "";
}
.fa-microphone:before {
  content: "";
}
.fa-microphone-alt:before {
  content: "";
}
.fa-microphone-alt-slash:before {
  content: "";
}
.fa-microphone-slash:before {
  content: "";
}
.fa-microscope:before {
  content: "";
}
.fa-microsoft:before {
  content: "";
}
.fa-minus:before {
  content: "";
}
.fa-minus-circle:before {
  content: "";
}
.fa-minus-square:before {
  content: "";
}
.fa-mitten:before {
  content: "";
}
.fa-mix:before {
  content: "";
}
.fa-mixcloud:before {
  content: "";
}
.fa-mixer:before {
  content: "";
}
.fa-mizuni:before {
  content: "";
}
.fa-mobile:before {
  content: "";
}
.fa-mobile-alt:before {
  content: "";
}
.fa-modx:before {
  content: "";
}
.fa-monero:before {
  content: "";
}
.fa-money-bill:before {
  content: "";
}
.fa-money-bill-alt:before {
  content: "";
}
.fa-money-bill-wave:before {
  content: "";
}
.fa-money-bill-wave-alt:before {
  content: "";
}
.fa-money-check:before {
  content: "";
}
.fa-money-check-alt:before {
  content: "";
}
.fa-monument:before {
  content: "";
}
.fa-moon:before {
  content: "";
}
.fa-mortar-pestle:before {
  content: "";
}
.fa-mosque:before {
  content: "";
}
.fa-motorcycle:before {
  content: "";
}
.fa-mountain:before {
  content: "";
}
.fa-mouse:before {
  content: "";
}
.fa-mouse-pointer:before {
  content: "";
}
.fa-mug-hot:before {
  content: "";
}
.fa-music:before {
  content: "";
}
.fa-napster:before {
  content: "";
}
.fa-neos:before {
  content: "";
}
.fa-network-wired:before {
  content: "";
}
.fa-neuter:before {
  content: "";
}
.fa-newspaper:before {
  content: "";
}
.fa-nimblr:before {
  content: "";
}
.fa-node:before {
  content: "";
}
.fa-node-js:before {
  content: "";
}
.fa-not-equal:before {
  content: "";
}
.fa-notes-medical:before {
  content: "";
}
.fa-npm:before {
  content: "";
}
.fa-ns8:before {
  content: "";
}
.fa-nutritionix:before {
  content: "";
}
.fa-object-group:before {
  content: "";
}
.fa-object-ungroup:before {
  content: "";
}
.fa-octopus-deploy:before {
  content: "";
}
.fa-odnoklassniki:before {
  content: "";
}
.fa-odnoklassniki-square:before {
  content: "";
}
.fa-oil-can:before {
  content: "";
}
.fa-old-republic:before {
  content: "";
}
.fa-om:before {
  content: "";
}
.fa-opencart:before {
  content: "";
}
.fa-openid:before {
  content: "";
}
.fa-opera:before {
  content: "";
}
.fa-optin-monster:before {
  content: "";
}
.fa-orcid:before {
  content: "";
}
.fa-osi:before {
  content: "";
}
.fa-otter:before {
  content: "";
}
.fa-outdent:before {
  content: "";
}
.fa-page4:before {
  content: "";
}
.fa-pagelines:before {
  content: "";
}
.fa-pager:before {
  content: "";
}
.fa-paint-brush:before {
  content: "";
}
.fa-paint-roller:before {
  content: "";
}
.fa-palette:before {
  content: "";
}
.fa-palfed:before {
  content: "";
}
.fa-pallet:before {
  content: "";
}
.fa-paper-plane:before {
  content: "";
}
.fa-paperclip:before {
  content: "";
}
.fa-parachute-box:before {
  content: "";
}
.fa-paragraph:before {
  content: "";
}
.fa-parking:before {
  content: "";
}
.fa-passport:before {
  content: "";
}
.fa-pastafarianism:before {
  content: "";
}
.fa-paste:before {
  content: "";
}
.fa-patreon:before {
  content: "";
}
.fa-pause:before {
  content: "";
}
.fa-pause-circle:before {
  content: "";
}
.fa-paw:before {
  content: "";
}
.fa-paypal:before {
  content: "";
}
.fa-peace:before {
  content: "";
}
.fa-pen:before {
  content: "";
}
.fa-pen-alt:before {
  content: "";
}
.fa-pen-fancy:before {
  content: "";
}
.fa-pen-nib:before {
  content: "";
}
.fa-pen-square:before {
  content: "";
}
.fa-pencil-alt:before {
  content: "";
}
.fa-pencil-ruler:before {
  content: "";
}
.fa-penny-arcade:before {
  content: "";
}
.fa-people-arrows:before {
  content: "";
}
.fa-people-carry:before {
  content: "";
}
.fa-pepper-hot:before {
  content: "";
}
.fa-perbyte:before {
  content: "";
}
.fa-percent:before {
  content: "";
}
.fa-percentage:before {
  content: "";
}
.fa-periscope:before {
  content: "";
}
.fa-person-booth:before {
  content: "";
}
.fa-phabricator:before {
  content: "";
}
.fa-phoenix-framework:before {
  content: "";
}
.fa-phoenix-squadron:before {
  content: "";
}
.fa-phone:before {
  content: "";
}
.fa-phone-alt:before {
  content: "";
}
.fa-phone-slash:before {
  content: "";
}
.fa-phone-square:before {
  content: "";
}
.fa-phone-square-alt:before {
  content: "";
}
.fa-phone-volume:before {
  content: "";
}
.fa-photo-video:before {
  content: "";
}
.fa-php:before {
  content: "";
}
.fa-pied-piper:before {
  content: "";
}
.fa-pied-piper-alt:before {
  content: "";
}
.fa-pied-piper-hat:before {
  content: "";
}
.fa-pied-piper-pp:before {
  content: "";
}
.fa-pied-piper-square:before {
  content: "";
}
.fa-piggy-bank:before {
  content: "";
}
.fa-pills:before {
  content: "";
}
.fa-pinterest:before {
  content: "";
}
.fa-pinterest-p:before {
  content: "";
}
.fa-pinterest-square:before {
  content: "";
}
.fa-pizza-slice:before {
  content: "";
}
.fa-place-of-worship:before {
  content: "";
}
.fa-plane:before {
  content: "";
}
.fa-plane-arrival:before {
  content: "";
}
.fa-plane-departure:before {
  content: "";
}
.fa-plane-slash:before {
  content: "";
}
.fa-play:before {
  content: "";
}
.fa-play-circle:before {
  content: "";
}
.fa-playstation:before {
  content: "";
}
.fa-plug:before {
  content: "";
}
.fa-plus:before {
  content: "";
}
.fa-plus-circle:before {
  content: "";
}
.fa-plus-square:before {
  content: "";
}
.fa-podcast:before {
  content: "";
}
.fa-poll:before {
  content: "";
}
.fa-poll-h:before {
  content: "";
}
.fa-poo:before {
  content: "";
}
.fa-poo-storm:before {
  content: "";
}
.fa-poop:before {
  content: "";
}
.fa-portrait:before {
  content: "";
}
.fa-pound-sign:before {
  content: "";
}
.fa-power-off:before {
  content: "";
}
.fa-pray:before {
  content: "";
}
.fa-praying-hands:before {
  content: "";
}
.fa-prescription:before {
  content: "";
}
.fa-prescription-bottle:before {
  content: "";
}
.fa-prescription-bottle-alt:before {
  content: "";
}
.fa-print:before {
  content: "";
}
.fa-procedures:before {
  content: "";
}
.fa-product-hunt:before {
  content: "";
}
.fa-project-diagram:before {
  content: "";
}
.fa-pump-medical:before {
  content: "";
}
.fa-pump-soap:before {
  content: "";
}
.fa-pushed:before {
  content: "";
}
.fa-puzzle-piece:before {
  content: "";
}
.fa-python:before {
  content: "";
}
.fa-qq:before {
  content: "";
}
.fa-qrcode:before {
  content: "";
}
.fa-question:before {
  content: "";
}
.fa-question-circle:before {
  content: "";
}
.fa-quidditch:before {
  content: "";
}
.fa-quinscape:before {
  content: "";
}
.fa-quora:before {
  content: "";
}
.fa-quote-left:before {
  content: "";
}
.fa-quote-right:before {
  content: "";
}
.fa-quran:before {
  content: "";
}
.fa-r-project:before {
  content: "";
}
.fa-radiation:before {
  content: "";
}
.fa-radiation-alt:before {
  content: "";
}
.fa-rainbow:before {
  content: "";
}
.fa-random:before {
  content: "";
}
.fa-raspberry-pi:before {
  content: "";
}
.fa-ravelry:before {
  content: "";
}
.fa-react:before {
  content: "";
}
.fa-reacteurope:before {
  content: "";
}
.fa-readme:before {
  content: "";
}
.fa-rebel:before {
  content: "";
}
.fa-receipt:before {
  content: "";
}
.fa-record-vinyl:before {
  content: "";
}
.fa-recycle:before {
  content: "";
}
.fa-red-river:before {
  content: "";
}
.fa-reddit:before {
  content: "";
}
.fa-reddit-alien:before {
  content: "";
}
.fa-reddit-square:before {
  content: "";
}
.fa-redhat:before {
  content: "";
}
.fa-redo:before {
  content: "";
}
.fa-redo-alt:before {
  content: "";
}
.fa-registered:before {
  content: "";
}
.fa-remove-format:before {
  content: "";
}
.fa-renren:before {
  content: "";
}
.fa-reply:before {
  content: "";
}
.fa-reply-all:before {
  content: "";
}
.fa-replyd:before {
  content: "";
}
.fa-republican:before {
  content: "";
}
.fa-researchgate:before {
  content: "";
}
.fa-resolving:before {
  content: "";
}
.fa-restroom:before {
  content: "";
}
.fa-retweet:before {
  content: "";
}
.fa-rev:before {
  content: "";
}
.fa-ribbon:before {
  content: "";
}
.fa-ring:before {
  content: "";
}
.fa-road:before {
  content: "";
}
.fa-robot:before {
  content: "";
}
.fa-rocket:before {
  content: "";
}
.fa-rocketchat:before {
  content: "";
}
.fa-rockrms:before {
  content: "";
}
.fa-route:before {
  content: "";
}
.fa-rss:before {
  content: "";
}
.fa-rss-square:before {
  content: "";
}
.fa-ruble-sign:before {
  content: "";
}
.fa-ruler:before {
  content: "";
}
.fa-ruler-combined:before {
  content: "";
}
.fa-ruler-horizontal:before {
  content: "";
}
.fa-ruler-vertical:before {
  content: "";
}
.fa-running:before {
  content: "";
}
.fa-rupee-sign:before {
  content: "";
}
.fa-rust:before {
  content: "";
}
.fa-sad-cry:before {
  content: "";
}
.fa-sad-tear:before {
  content: "";
}
.fa-safari:before {
  content: "";
}
.fa-salesforce:before {
  content: "";
}
.fa-sass:before {
  content: "";
}
.fa-satellite:before {
  content: "";
}
.fa-satellite-dish:before {
  content: "";
}
.fa-save:before {
  content: "";
}
.fa-schlix:before {
  content: "";
}
.fa-school:before {
  content: "";
}
.fa-screwdriver:before {
  content: "";
}
.fa-scribd:before {
  content: "";
}
.fa-scroll:before {
  content: "";
}
.fa-sd-card:before {
  content: "";
}
.fa-search:before {
  content: "";
}
.fa-search-dollar:before {
  content: "";
}
.fa-search-location:before {
  content: "";
}
.fa-search-minus:before {
  content: "";
}
.fa-search-plus:before {
  content: "";
}
.fa-searchengin:before {
  content: "";
}
.fa-seedling:before {
  content: "";
}
.fa-sellcast:before {
  content: "";
}
.fa-sellsy:before {
  content: "";
}
.fa-server:before {
  content: "";
}
.fa-servicestack:before {
  content: "";
}
.fa-shapes:before {
  content: "";
}
.fa-share:before {
  content: "";
}
.fa-share-alt:before {
  content: "";
}
.fa-share-alt-square:before {
  content: "";
}
.fa-share-square:before {
  content: "";
}
.fa-shekel-sign:before {
  content: "";
}
.fa-shield-alt:before {
  content: "";
}
.fa-shield-virus:before {
  content: "";
}
.fa-ship:before {
  content: "";
}
.fa-shipping-fast:before {
  content: "";
}
.fa-shirtsinbulk:before {
  content: "";
}
.fa-shoe-prints:before {
  content: "";
}
.fa-shopify:before {
  content: "";
}
.fa-shopping-bag:before {
  content: "";
}
.fa-shopping-basket:before {
  content: "";
}
.fa-shopping-cart:before {
  content: "";
}
.fa-shopware:before {
  content: "";
}
.fa-shower:before {
  content: "";
}
.fa-shuttle-van:before {
  content: "";
}
.fa-sign:before {
  content: "";
}
.fa-sign-in-alt:before {
  content: "";
}
.fa-sign-language:before {
  content: "";
}
.fa-sign-out-alt:before {
  content: "";
}
.fa-signal:before {
  content: "";
}
.fa-signature:before {
  content: "";
}
.fa-sim-card:before {
  content: "";
}
.fa-simplybuilt:before {
  content: "";
}
.fa-sink:before {
  content: "";
}
.fa-sistrix:before {
  content: "";
}
.fa-sitemap:before {
  content: "";
}
.fa-sith:before {
  content: "";
}
.fa-skating:before {
  content: "";
}
.fa-sketch:before {
  content: "";
}
.fa-skiing:before {
  content: "";
}
.fa-skiing-nordic:before {
  content: "";
}
.fa-skull:before {
  content: "";
}
.fa-skull-crossbones:before {
  content: "";
}
.fa-skyatlas:before {
  content: "";
}
.fa-skype:before {
  content: "";
}
.fa-slack:before {
  content: "";
}
.fa-slack-hash:before {
  content: "";
}
.fa-slash:before {
  content: "";
}
.fa-sleigh:before {
  content: "";
}
.fa-sliders-h:before {
  content: "";
}
.fa-slideshare:before {
  content: "";
}
.fa-smile:before {
  content: "";
}
.fa-smile-beam:before {
  content: "";
}
.fa-smile-wink:before {
  content: "";
}
.fa-smog:before {
  content: "";
}
.fa-smoking:before {
  content: "";
}
.fa-smoking-ban:before {
  content: "";
}
.fa-sms:before {
  content: "";
}
.fa-snapchat:before {
  content: "";
}
.fa-snapchat-ghost:before {
  content: "";
}
.fa-snapchat-square:before {
  content: "";
}
.fa-snowboarding:before {
  content: "";
}
.fa-snowflake:before {
  content: "";
}
.fa-snowman:before {
  content: "";
}
.fa-snowplow:before {
  content: "";
}
.fa-soap:before {
  content: "";
}
.fa-socks:before {
  content: "";
}
.fa-solar-panel:before {
  content: "";
}
.fa-sort:before {
  content: "";
}
.fa-sort-alpha-down:before {
  content: "";
}
.fa-sort-alpha-down-alt:before {
  content: "";
}
.fa-sort-alpha-up:before {
  content: "";
}
.fa-sort-alpha-up-alt:before {
  content: "";
}
.fa-sort-amount-down:before {
  content: "";
}
.fa-sort-amount-down-alt:before {
  content: "";
}
.fa-sort-amount-up:before {
  content: "";
}
.fa-sort-amount-up-alt:before {
  content: "";
}
.fa-sort-down:before {
  content: "";
}
.fa-sort-numeric-down:before {
  content: "";
}
.fa-sort-numeric-down-alt:before {
  content: "";
}
.fa-sort-numeric-up:before {
  content: "";
}
.fa-sort-numeric-up-alt:before {
  content: "";
}
.fa-sort-up:before {
  content: "";
}
.fa-soundcloud:before {
  content: "";
}
.fa-sourcetree:before {
  content: "";
}
.fa-spa:before {
  content: "";
}
.fa-space-shuttle:before {
  content: "";
}
.fa-speakap:before {
  content: "";
}
.fa-speaker-deck:before {
  content: "";
}
.fa-spell-check:before {
  content: "";
}
.fa-spider:before {
  content: "";
}
.fa-spinner:before {
  content: "";
}
.fa-splotch:before {
  content: "";
}
.fa-spotify:before {
  content: "";
}
.fa-spray-can:before {
  content: "";
}
.fa-square:before {
  content: "";
}
.fa-square-full:before {
  content: "";
}
.fa-square-root-alt:before {
  content: "";
}
.fa-squarespace:before {
  content: "";
}
.fa-stack-exchange:before {
  content: "";
}
.fa-stack-overflow:before {
  content: "";
}
.fa-stackpath:before {
  content: "";
}
.fa-stamp:before {
  content: "";
}
.fa-star:before {
  content: "";
}
.fa-star-and-crescent:before {
  content: "";
}
.fa-star-half:before {
  content: "";
}
.fa-star-half-alt:before {
  content: "";
}
.fa-star-of-david:before {
  content: "";
}
.fa-star-of-life:before {
  content: "";
}
.fa-staylinked:before {
  content: "";
}
.fa-steam:before {
  content: "";
}
.fa-steam-square:before {
  content: "";
}
.fa-steam-symbol:before {
  content: "";
}
.fa-step-backward:before {
  content: "";
}
.fa-step-forward:before {
  content: "";
}
.fa-stethoscope:before {
  content: "";
}
.fa-sticker-mule:before {
  content: "";
}
.fa-sticky-note:before {
  content: "";
}
.fa-stop:before {
  content: "";
}
.fa-stop-circle:before {
  content: "";
}
.fa-stopwatch:before {
  content: "";
}
.fa-stopwatch-20:before {
  content: "";
}
.fa-store:before {
  content: "";
}
.fa-store-alt:before {
  content: "";
}
.fa-store-alt-slash:before {
  content: "";
}
.fa-store-slash:before {
  content: "";
}
.fa-strava:before {
  content: "";
}
.fa-stream:before {
  content: "";
}
.fa-street-view:before {
  content: "";
}
.fa-strikethrough:before {
  content: "";
}
.fa-stripe:before {
  content: "";
}
.fa-stripe-s:before {
  content: "";
}
.fa-stroopwafel:before {
  content: "";
}
.fa-studiovinari:before {
  content: "";
}
.fa-stumbleupon:before {
  content: "";
}
.fa-stumbleupon-circle:before {
  content: "";
}
.fa-subscript:before {
  content: "";
}
.fa-subway:before {
  content: "";
}
.fa-suitcase:before {
  content: "";
}
.fa-suitcase-rolling:before {
  content: "";
}
.fa-sun:before {
  content: "";
}
.fa-superpowers:before {
  content: "";
}
.fa-superscript:before {
  content: "";
}
.fa-supple:before {
  content: "";
}
.fa-surprise:before {
  content: "";
}
.fa-suse:before {
  content: "";
}
.fa-swatchbook:before {
  content: "";
}
.fa-swift:before {
  content: "";
}
.fa-swimmer:before {
  content: "";
}
.fa-swimming-pool:before {
  content: "";
}
.fa-symfony:before {
  content: "";
}
.fa-synagogue:before {
  content: "";
}
.fa-sync:before {
  content: "";
}
.fa-sync-alt:before {
  content: "";
}
.fa-syringe:before {
  content: "";
}
.fa-table:before {
  content: "";
}
.fa-table-tennis:before {
  content: "";
}
.fa-tablet:before {
  content: "";
}
.fa-tablet-alt:before {
  content: "";
}
.fa-tablets:before {
  content: "";
}
.fa-tachometer-alt:before {
  content: "";
}
.fa-tag:before {
  content: "";
}
.fa-tags:before {
  content: "";
}
.fa-tape:before {
  content: "";
}
.fa-tasks:before {
  content: "";
}
.fa-taxi:before {
  content: "";
}
.fa-teamspeak:before {
  content: "";
}
.fa-teeth:before {
  content: "";
}
.fa-teeth-open:before {
  content: "";
}
.fa-telegram:before {
  content: "";
}
.fa-telegram-plane:before {
  content: "";
}
.fa-temperature-high:before {
  content: "";
}
.fa-temperature-low:before {
  content: "";
}
.fa-tencent-weibo:before {
  content: "";
}
.fa-tenge:before {
  content: "";
}
.fa-terminal:before {
  content: "";
}
.fa-text-height:before {
  content: "";
}
.fa-text-width:before {
  content: "";
}
.fa-th:before {
  content: "";
}
.fa-th-large:before {
  content: "";
}
.fa-th-list:before {
  content: "";
}
.fa-the-red-yeti:before {
  content: "";
}
.fa-theater-masks:before {
  content: "";
}
.fa-themeco:before {
  content: "";
}
.fa-themeisle:before {
  content: "";
}
.fa-thermometer:before {
  content: "";
}
.fa-thermometer-empty:before {
  content: "";
}
.fa-thermometer-full:before {
  content: "";
}
.fa-thermometer-half:before {
  content: "";
}
.fa-thermometer-quarter:before {
  content: "";
}
.fa-thermometer-three-quarters:before {
  content: "";
}
.fa-think-peaks:before {
  content: "";
}
.fa-thumbs-down:before {
  content: "";
}
.fa-thumbs-up:before {
  content: "";
}
.fa-thumbtack:before {
  content: "";
}
.fa-ticket-alt:before {
  content: "";
}
.fa-tiktok:before {
  content: "";
}
.fa-times:before {
  content: "";
}
.fa-times-circle:before {
  content: "";
}
.fa-tint:before {
  content: "";
}
.fa-tint-slash:before {
  content: "";
}
.fa-tired:before {
  content: "";
}
.fa-toggle-off:before {
  content: "";
}
.fa-toggle-on:before {
  content: "";
}
.fa-toilet:before {
  content: "";
}
.fa-toilet-paper:before {
  content: "";
}
.fa-toilet-paper-slash:before {
  content: "";
}
.fa-toolbox:before {
  content: "";
}
.fa-tools:before {
  content: "";
}
.fa-tooth:before {
  content: "";
}
.fa-torah:before {
  content: "";
}
.fa-torii-gate:before {
  content: "";
}
.fa-tractor:before {
  content: "";
}
.fa-trade-federation:before {
  content: "";
}
.fa-trademark:before {
  content: "";
}
.fa-traffic-light:before {
  content: "";
}
.fa-trailer:before {
  content: "";
}
.fa-train:before {
  content: "";
}
.fa-tram:before {
  content: "";
}
.fa-transgender:before {
  content: "";
}
.fa-transgender-alt:before {
  content: "";
}
.fa-trash:before {
  content: "";
}
.fa-trash-alt:before {
  content: "";
}
.fa-trash-restore:before {
  content: "";
}
.fa-trash-restore-alt:before {
  content: "";
}
.fa-tree:before {
  content: "";
}
.fa-trello:before {
  content: "";
}
.fa-trophy:before {
  content: "";
}
.fa-truck:before {
  content: "";
}
.fa-truck-loading:before {
  content: "";
}
.fa-truck-monster:before {
  content: "";
}
.fa-truck-moving:before {
  content: "";
}
.fa-truck-pickup:before {
  content: "";
}
.fa-tshirt:before {
  content: "";
}
.fa-tty:before {
  content: "";
}
.fa-tumblr:before {
  content: "";
}
.fa-tumblr-square:before {
  content: "";
}
.fa-tv:before {
  content: "";
}
.fa-twitch:before {
  content: "";
}
.fa-twitter:before {
  content: "";
}
.fa-twitter-square:before {
  content: "";
}
.fa-typo3:before {
  content: "";
}
.fa-uber:before {
  content: "";
}
.fa-ubuntu:before {
  content: "";
}
.fa-uikit:before {
  content: "";
}
.fa-umbraco:before {
  content: "";
}
.fa-umbrella:before {
  content: "";
}
.fa-umbrella-beach:before {
  content: "";
}
.fa-uncharted:before {
  content: "";
}
.fa-underline:before {
  content: "";
}
.fa-undo:before {
  content: "";
}
.fa-undo-alt:before {
  content: "";
}
.fa-uniregistry:before {
  content: "";
}
.fa-unity:before {
  content: "";
}
.fa-universal-access:before {
  content: "";
}
.fa-university:before {
  content: "";
}
.fa-unlink:before {
  content: "";
}
.fa-unlock:before {
  content: "";
}
.fa-unlock-alt:before {
  content: "";
}
.fa-unsplash:before {
  content: "";
}
.fa-untappd:before {
  content: "";
}
.fa-upload:before {
  content: "";
}
.fa-ups:before {
  content: "";
}
.fa-usb:before {
  content: "";
}
.fa-user:before {
  content: "";
}
.fa-user-alt:before {
  content: "";
}
.fa-user-alt-slash:before {
  content: "";
}
.fa-user-astronaut:before {
  content: "";
}
.fa-user-check:before {
  content: "";
}
.fa-user-circle:before {
  content: "";
}
.fa-user-clock:before {
  content: "";
}
.fa-user-cog:before {
  content: "";
}
.fa-user-edit:before {
  content: "";
}
.fa-user-friends:before {
  content: "";
}
.fa-user-graduate:before {
  content: "";
}
.fa-user-injured:before {
  content: "";
}
.fa-user-lock:before {
  content: "";
}
.fa-user-md:before {
  content: "";
}
.fa-user-minus:before {
  content: "";
}
.fa-user-ninja:before {
  content: "";
}
.fa-user-nurse:before {
  content: "";
}
.fa-user-plus:before {
  content: "";
}
.fa-user-secret:before {
  content: "";
}
.fa-user-shield:before {
  content: "";
}
.fa-user-slash:before {
  content: "";
}
.fa-user-tag:before {
  content: "";
}
.fa-user-tie:before {
  content: "";
}
.fa-user-times:before {
  content: "";
}
.fa-users:before {
  content: "";
}
.fa-users-cog:before {
  content: "";
}
.fa-users-slash:before {
  content: "";
}
.fa-usps:before {
  content: "";
}
.fa-ussunnah:before {
  content: "";
}
.fa-utensil-spoon:before {
  content: "";
}
.fa-utensils:before {
  content: "";
}
.fa-vaadin:before {
  content: "";
}
.fa-vector-square:before {
  content: "";
}
.fa-venus:before {
  content: "";
}
.fa-venus-double:before {
  content: "";
}
.fa-venus-mars:before {
  content: "";
}
.fa-vest:before {
  content: "";
}
.fa-vest-patches:before {
  content: "";
}
.fa-viacoin:before {
  content: "";
}
.fa-viadeo:before {
  content: "";
}
.fa-viadeo-square:before {
  content: "";
}
.fa-vial:before {
  content: "";
}
.fa-vials:before {
  content: "";
}
.fa-viber:before {
  content: "";
}
.fa-video:before {
  content: "";
}
.fa-video-slash:before {
  content: "";
}
.fa-vihara:before {
  content: "";
}
.fa-vimeo:before {
  content: "";
}
.fa-vimeo-square:before {
  content: "";
}
.fa-vimeo-v:before {
  content: "";
}
.fa-vine:before {
  content: "";
}
.fa-virus:before {
  content: "";
}
.fa-virus-slash:before {
  content: "";
}
.fa-viruses:before {
  content: "";
}
.fa-vk:before {
  content: "";
}
.fa-vnv:before {
  content: "";
}
.fa-voicemail:before {
  content: "";
}
.fa-volleyball-ball:before {
  content: "";
}
.fa-volume-down:before {
  content: "";
}
.fa-volume-mute:before {
  content: "";
}
.fa-volume-off:before {
  content: "";
}
.fa-volume-up:before {
  content: "";
}
.fa-vote-yea:before {
  content: "";
}
.fa-vr-cardboard:before {
  content: "";
}
.fa-vuejs:before {
  content: "";
}
.fa-walking:before {
  content: "";
}
.fa-wallet:before {
  content: "";
}
.fa-warehouse:before {
  content: "";
}
.fa-watchman-monitoring:before {
  content: "";
}
.fa-water:before {
  content: "";
}
.fa-wave-square:before {
  content: "";
}
.fa-waze:before {
  content: "";
}
.fa-weebly:before {
  content: "";
}
.fa-weibo:before {
  content: "";
}
.fa-weight:before {
  content: "";
}
.fa-weight-hanging:before {
  content: "";
}
.fa-weixin:before {
  content: "";
}
.fa-whatsapp:before {
  content: "";
}
.fa-whatsapp-square:before {
  content: "";
}
.fa-wheelchair:before {
  content: "";
}
.fa-whmcs:before {
  content: "";
}
.fa-wifi:before {
  content: "";
}
.fa-wikipedia-w:before {
  content: "";
}
.fa-wind:before {
  content: "";
}
.fa-window-close:before {
  content: "";
}
.fa-window-maximize:before {
  content: "";
}
.fa-window-minimize:before {
  content: "";
}
.fa-window-restore:before {
  content: "";
}
.fa-windows:before {
  content: "";
}
.fa-wine-bottle:before {
  content: "";
}
.fa-wine-glass:before {
  content: "";
}
.fa-wine-glass-alt:before {
  content: "";
}
.fa-wix:before {
  content: "";
}
.fa-wizards-of-the-coast:before {
  content: "";
}
.fa-wodu:before {
  content: "";
}
.fa-wolf-pack-battalion:before {
  content: "";
}
.fa-won-sign:before {
  content: "";
}
.fa-wordpress:before {
  content: "";
}
.fa-wordpress-simple:before {
  content: "";
}
.fa-wpbeginner:before {
  content: "";
}
.fa-wpexplorer:before {
  content: "";
}
.fa-wpforms:before {
  content: "";
}
.fa-wpressr:before {
  content: "";
}
.fa-wrench:before {
  content: "";
}
.fa-x-ray:before {
  content: "";
}
.fa-xbox:before {
  content: "";
}
.fa-xing:before {
  content: "";
}
.fa-xing-square:before {
  content: "";
}
.fa-y-combinator:before {
  content: "";
}
.fa-yahoo:before {
  content: "";
}
.fa-yammer:before {
  content: "";
}
.fa-yandex:before {
  content: "";
}
.fa-yandex-international:before {
  content: "";
}
.fa-yarn:before {
  content: "";
}
.fa-yelp:before {
  content: "";
}
.fa-yen-sign:before {
  content: "";
}
.fa-yin-yang:before {
  content: "";
}
.fa-yoast:before {
  content: "";
}
.fa-youtube:before {
  content: "";
}
.fa-youtube-square:before {
  content: "";
}
.fa-zhihu:before {
  content: "";
}
.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
.sr-only-focusable:active,
.sr-only-focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}
@font-face {
  font-family: "Font Awesome 5 Brands";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url(../webfonts/fa-brands-400.eot);
  src:
    url(../webfonts/fa-brands-400.eot?#iefix) format("embedded-opentype"),
    url(../webfonts/fa-brands-400.woff2) format("woff2"),
    url(../webfonts/fa-brands-400.woff) format("woff"),
    url(../webfonts/fa-brands-400.ttf) format("truetype"),
    url(../webfonts/fa-brands-400.svg#fontawesome) format("svg");
}
.fab {
  font-family: "Font Awesome 5 Brands";
}
@font-face {
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url(../webfonts/fa-regular-400.eot);
  src:
    url(../webfonts/fa-regular-400.eot?#iefix) format("embedded-opentype"),
    url(../webfonts/fa-regular-400.woff2) format("woff2"),
    url(../webfonts/fa-regular-400.woff) format("woff"),
    url(../webfonts/fa-regular-400.ttf) format("truetype"),
    url(../webfonts/fa-regular-400.svg#fontawesome) format("svg");
}
.fab,
.far {
  font-weight: 400;
}
@font-face {
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: 900;
  font-display: block;
  src: url(../webfonts/fa-solid-900.eot);
  src:
    url(../webfonts/fa-solid-900.eot?#iefix) format("embedded-opentype"),
    url(../webfonts/fa-solid-900.woff2) format("woff2"),
    url(../webfonts/fa-solid-900.woff) format("woff"),
    url(../webfonts/fa-solid-900.ttf) format("truetype"),
    url(../webfonts/fa-solid-900.svg#fontawesome) format("svg");
}
.fa,
.far,
.fas {
  font-family: "Font Awesome 5 Free";
}
.fa,
.fas {
  font-weight: 900;
}
@font-face {
  font-family: iconmonstr-iconic-font;
  src:
    url(../fonts/iconmonstr-iconic-font.woff2?v=1.2.0) format("woff2"),
    url(../fonts/iconmonstr-iconic-font.woff?v=1.2.0) format("woff"),
    url(../fonts/iconmonstr-iconic-font.ttf?v=1.2.0) format("truetype");
}
.im {
  display: inline-block;
  font: normal normal normal 24px/1 "iconmonstr-iconic-font";
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.im-angle-right:before {
  content: "";
}
.im-angle-left:before {
  content: "";
}
.im-angle-down:before {
  content: "";
}
.im-angle-up:before {
  content: "";
}
.im-angle-right-circle:before {
  content: "";
}
.im-angle-left-circle:before {
  content: "";
}
.im-angle-down-circle:before {
  content: "";
}
.im-angle-up-circle:before {
  content: "";
}
.im-arrow-right:before {
  content: "";
}
.im-arrow-left:before {
  content: "";
}
.im-arrow-down:before {
  content: "";
}
.im-arrow-up:before {
  content: "";
}
.im-arrow-right-circle:before {
  content: "";
}
.im-arrow-left-circle:before {
  content: "";
}
.im-arrow-down-circle:before {
  content: "";
}
.im-arrow-up-circle:before {
  content: "";
}
.im-care-right:before {
  content: "";
}
.im-care-left:before {
  content: "";
}
.im-care-down:before {
  content: "";
}
.im-care-up:before {
  content: "";
}
.im-forbidden:before {
  content: "";
}
.im-printer:before {
  content: "";
}
.im-menu:before {
  content: "";
}
.im-menu-list:before {
  content: "";
}
.im-quote-left:before {
  content: "";
}
.im-quote-right:before {
  content: "";
}
.im-bell:before {
  content: "";
}
.im-bell-off:before {
  content: "";
}
.im-bookmark:before {
  content: "";
}
.im-briefcase:before {
  content: "";
}
.im-calendar:before {
  content: "";
}
.im-photo-camera:before {
  content: "";
}
.im-video-camera:before {
  content: "";
}
.im-microphone:before {
  content: "";
}
.im-check-mark:before {
  content: "";
}
.im-check-mark-circle:before {
  content: "";
}
.im-check-square-o:before {
  content: "";
}
.im-check-square:before {
  content: "";
}
.im-check-square-i:before {
  content: "";
}
.im-square-o:before {
  content: "";
}
.im-radio-button-circle-o:before {
  content: "";
}
.im-radio-button-circle:before {
  content: "";
}
.im-circle-o:before {
  content: "";
}
.im-clock-o:before {
  content: "";
}
.im-cloud:before {
  content: "";
}
.im-cloud-download:before {
  content: "";
}
.im-cloud-upload:before {
  content: "";
}
.im-code:before {
  content: "";
}
.im-speech-bubble:before {
  content: "";
}
.im-speech-bubble-comment:before {
  content: "";
}
.im-speech-bubble-comments:before {
  content: "";
}
.im-copy:before {
  content: "";
}
.im-credit-card:before {
  content: "";
}
.im-crown:before {
  content: "";
}
.im-database:before {
  content: "";
}
.im-computer:before {
  content: "";
}
.im-download:before {
  content: "";
}
.im-upload:before {
  content: "";
}
.im-pencil:before {
  content: "";
}
.im-edit-off:before {
  content: "";
}
.im-play:before {
  content: "";
}
.im-pause:before {
  content: "";
}
.im-stop:before {
  content: "";
}
.im-eject:before {
  content: "";
}
.im-previous:before {
  content: "";
}
.im-next:before {
  content: "";
}
.im-loop:before {
  content: "";
}
.im-random:before {
  content: "";
}
.im-menu-dot-h:before {
  content: "";
}
.im-menu-dot-v:before {
  content: "";
}
.im-mail:before {
  content: "";
}
.im-info:before {
  content: "";
}
.im-warning:before {
  content: "";
}
.im-question:before {
  content: "";
}
.im-link:before {
  content: "";
}
.im-unlink:before {
  content: "";
}
.im-external-link:before {
  content: "";
}
.im-eye:before {
  content: "";
}
.im-eye-off:before {
  content: "";
}
.im-file:before {
  content: "";
}
.im-file-o:before {
  content: "";
}
.im-files-o:before {
  content: "";
}
.im-video:before {
  content: "";
}
.im-audio:before {
  content: "";
}
.im-picture-o:before {
  content: "";
}
.im-flag:before {
  content: "";
}
.im-folder:before {
  content: "";
}
.im-folder-open:before {
  content: "";
}
.im-smiley-o:before {
  content: "";
}
.im-frown-o:before {
  content: "";
}
.im-gear:before {
  content: "";
}
.im-globe:before {
  content: "";
}
.im-heart:before {
  content: "";
}
.im-home:before {
  content: "";
}
.im-inbox:before {
  content: "";
}
.im-key:before {
  content: "";
}
.im-lock:before {
  content: "";
}
.im-lock-open:before {
  content: "";
}
.im-task-o:before {
  content: "";
}
.im-filter:before {
  content: "";
}
.im-light-bulb:before {
  content: "";
}
.im-flash:before {
  content: "";
}
.im-map-o:before {
  content: "";
}
.im-location:before {
  content: "";
}
.im-maximize:before {
  content: "";
}
.im-minimize:before {
  content: "";
}
.im-fullscreen:before {
  content: "";
}
.im-mobile:before {
  content: "";
}
.im-phone:before {
  content: "";
}
.im-coin:before {
  content: "";
}
.im-banknote:before {
  content: "";
}
.im-paper-clip:before {
  content: "";
}
.im-bar-chart:before {
  content: "";
}
.im-plus:before {
  content: "";
}
.im-minus:before {
  content: "";
}
.im-plus-circle:before {
  content: "";
}
.im-minus-circle:before {
  content: "";
}
.im-undo:before {
  content: "";
}
.im-redo:before {
  content: "";
}
.im-rocket:before {
  content: "";
}
.im-rss:before {
  content: "";
}
.im-magnifier:before {
  content: "";
}
.im-magnifier-plus:before {
  content: "";
}
.im-magnifier-minus:before {
  content: "";
}
.im-share:before {
  content: "";
}
.im-shield:before {
  content: "";
}
.im-shopping-cart:before {
  content: "";
}
.im-sign-in:before {
  content: "";
}
.im-sign-out:before {
  content: "";
}
.im-spinner:before {
  content: "";
}
.im-star:before {
  content: "";
}
.im-star-half:before {
  content: "";
}
.im-star-o:before {
  content: "";
}
.im-sync:before {
  content: "";
}
.im-table:before {
  content: "";
}
.im-window-o:before {
  content: "";
}
.im-windows-o:before {
  content: "";
}
.im-thumb-up:before {
  content: "";
}
.im-thumb-down:before {
  content: "";
}
.im-x-mark:before {
  content: "";
}
.im-x-mark-circle:before {
  content: "";
}
.im-trash-can:before {
  content: "";
}
.im-user-male:before {
  content: "";
}
.im-user-female:before {
  content: "";
}
.im-user-circle:before {
  content: "";
}
.im-users:before {
  content: "";
}
.im-volume:before {
  content: "";
}
.im-volume-off:before {
  content: "";
}
.im-wifi:before {
  content: "";
}
.im-tools:before {
  content: "";
}
.im-dashboard:before {
  content: "";
}
.im-archive:before {
  content: "";
}
.im-save:before {
  content: "";
}
.im-floppy-disk:before {
  content: "";
}
.im-sitemap:before {
  content: "";
}
.im-toggle:before {
  content: "";
}
.im-tag:before {
  content: "";
}
.im-tags:before {
  content: "";
}
.im-wizard:before {
  content: "";
}
.im-book:before {
  content: "";
}
.im-fire:before {
  content: "";
}
.im-id-card:before {
  content: "";
}
.im-note-o:before {
  content: "";
}
.im-control-panel:before {
  content: "";
}
.im-facebook:before {
  content: "";
}
.im-facebook-like:before {
  content: "";
}
.im-twitter:before {
  content: "";
}
.im-amazon:before {
  content: "";
}
.im-android-os:before {
  content: "";
}
.im-apple-os:before {
  content: "";
}
.im-windows-os:before {
  content: "";
}
.im-linux-os:before {
  content: "";
}
.im-chrome:before {
  content: "";
}
.im-ie:before {
  content: "";
}
.im-edge:before {
  content: "";
}
.im-firefox:before {
  content: "";
}
.im-safari:before {
  content: "";
}
.im-opera:before {
  content: "";
}
.im-behance:before {
  content: "";
}
.im-blogger:before {
  content: "";
}
.im-flickr:before {
  content: "";
}
.im-github:before {
  content: "";
}
.im-google-plus:before {
  content: "";
}
.im-instagram:before {
  content: "";
}
.im-linkedin:before {
  content: "";
}
.im-pinterest:before {
  content: "";
}
.im-skype:before {
  content: "";
}
.im-snapchat:before {
  content: "";
}
.im-soundcloud:before {
  content: "";
}
.im-stackoverflow:before {
  content: "";
}
.im-stumbleupon:before {
  content: "";
}
.im-tumblr:before {
  content: "";
}
.im-xing:before {
  content: "";
}
.im-youtube:before {
  content: "";
}
.im-reddit:before {
  content: "";
}
.im-vimeo:before {
  content: "";
}
.im-vk:before {
  content: "";
}
.im-whatsapp:before {
  content: "";
}
.im-paypal:before {
  content: "";
}
.im-twitch:before {
  content: "";
}
.im-drop:before {
  content: "";
}
.im-sun:before {
  content: "";
}
.im-certificate-o:before {
  content: "";
}
.im-graduation-hat:before {
  content: "";
}
.im-store:before {
  content: "";
}
.im-pin:before {
  content: "";
}
.im-navigation:before {
  content: "";
}
.im-keyboard:before {
  content: "";
}
.im-cursor:before {
  content: "";
}
.im-monitor-o:before {
  content: "";
}
.im-laptop-o:before {
  content: "";
}
.im-power:before {
  content: "";
}
.im-pie-chart:before {
  content: "";
}
.im-line-chart-up:before {
  content: "";
}
.im-clock:before {
  content: "";
}
.im-flip-chart-o:before {
  content: "";
}
.im-gift:before {
  content: "";
}
.im-leaf:before {
  content: "";
}
.im-bug:before {
  content: "";
}
.im-coffee:before {
  content: "";
}
.im-diamond-o:before {
  content: "";
}
.im-bell-active:before {
  content: "";
}
.im-history:before {
  content: "";
}
.im-gamepad:before {
  content: "";
}
.im-binoculars:before {
  content: "";
}
.im-paperplane:before {
  content: "";
}
.im-wrench:before {
  content: "";
}
.im-newspaper-o:before {
  content: "";
}
.im-lifebuoy:before {
  content: "";
}
.im-fingerprint:before {
  content: "";
}
.im-date-o:before {
  content: "";
}
.im-network:before {
  content: "";
}
.im-target:before {
  content: "";
}
.im-user-settings:before {
  content: "";
}
.im-radio:before {
  content: "";
}
.im-bank:before {
  content: "";
}
.im-calculator:before {
  content: "";
}
.im-battery-empty:before {
  content: "";
}
.im-battery:before {
  content: "";
}
.im-battery-full:before {
  content: "";
}
.im-check-mark-circle-o:before {
  content: "";
}
.im-x-mark-circle-o:before {
  content: "";
}
.im-cube:before {
  content: "";
}
.im-cubes:before {
  content: "";
}
.im-warning-circle:before {
  content: "";
}
.im-timer:before {
  content: "";
}
.im-hashtag:before {
  content: "";
}
.im-pointer:before {
  content: "";
}
.im-paintbrush:before {
  content: "";
}
.im-server:before {
  content: "";
}
.im-car:before {
  content: "";
}
.im-edit:before {
  content: "";
}
.im-flask:before {
  content: "";
}
.im-language:before {
  content: "";
}
.im-anchor:before {
  content: "";
}
.im-trophy:before {
  content: "";
}
.im-umbrella:before {
  content: "";
}
.im-cc-amex:before {
  content: "";
}
.im-cc-visa:before {
  content: "";
}
.im-cc-mastercard:before {
  content: "";
}
.im-cc-paypal:before {
  content: "";
}
.im-cc-amazon:before {
  content: "";
}
.im-cc-bitcoin:before {
  content: "";
}
@font-face {
  font-family: "Linearicons-Free";
  src: url("/fonts/Linearicons-Free.eot?w118d");
  src:
    url("/fonts/Linearicons-Free.eot?#iefixw118d") format("embedded-opentype"),
    url("/fonts/Linearicons-Free.woff2?w118d") format("woff2"),
    url("/fonts/Linearicons-Free.woff?w118d") format("woff"),
    url("/fonts/Linearicons-Free.ttf?w118d") format("truetype"),
    url("/fonts/Linearicons-Free.svg?w118d#Linearicons-Free") format("svg");
  font-weight: normal;
  font-style: normal;
}
.lnr {
  font-family: "Linearicons-Free";
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.lnr-home:before {
  content: "";
}
.lnr-apartment:before {
  content: "";
}
.lnr-pencil:before {
  content: "";
}
.lnr-magic-wand:before {
  content: "";
}
.lnr-drop:before {
  content: "";
}
.lnr-lighter:before {
  content: "";
}
.lnr-poop:before {
  content: "";
}
.lnr-sun:before {
  content: "";
}
.lnr-moon:before {
  content: "";
}
.lnr-cloud:before {
  content: "";
}
.lnr-cloud-upload:before {
  content: "";
}
.lnr-cloud-download:before {
  content: "";
}
.lnr-cloud-sync:before {
  content: "";
}
.lnr-cloud-check:before {
  content: "";
}
.lnr-database:before {
  content: "";
}
.lnr-lock:before {
  content: "";
}
.lnr-cog:before {
  content: "";
}
.lnr-trash:before {
  content: "";
}
.lnr-dice:before {
  content: "";
}
.lnr-heart:before {
  content: "";
}
.lnr-star:before {
  content: "";
}
.lnr-star-half:before {
  content: "";
}
.lnr-star-empty:before {
  content: "";
}
.lnr-flag:before {
  content: "";
}
.lnr-envelope:before {
  content: "";
}
.lnr-paperclip:before {
  content: "";
}
.lnr-inbox:before {
  content: "";
}
.lnr-eye:before {
  content: "";
}
.lnr-printer:before {
  content: "";
}
.lnr-file-empty:before {
  content: "";
}
.lnr-file-add:before {
  content: "";
}
.lnr-enter:before {
  content: "";
}
.lnr-exit:before {
  content: "";
}
.lnr-graduation-hat:before {
  content: "";
}
.lnr-license:before {
  content: "";
}
.lnr-music-note:before {
  content: "";
}
.lnr-film-play:before {
  content: "";
}
.lnr-camera-video:before {
  content: "";
}
.lnr-camera:before {
  content: "";
}
.lnr-picture:before {
  content: "";
}
.lnr-book:before {
  content: "";
}
.lnr-bookmark:before {
  content: "";
}
.lnr-user:before {
  content: "";
}
.lnr-users:before {
  content: "";
}
.lnr-shirt:before {
  content: "";
}
.lnr-store:before {
  content: "";
}
.lnr-cart:before {
  content: "";
}
.lnr-tag:before {
  content: "";
}
.lnr-phone-handset:before {
  content: "";
}
.lnr-phone:before {
  content: "";
}
.lnr-pushpin:before {
  content: "";
}
.lnr-map-marker:before {
  content: "";
}
.lnr-map:before {
  content: "";
}
.lnr-location:before {
  content: "";
}
.lnr-calendar-full:before {
  content: "";
}
.lnr-keyboard:before {
  content: "";
}
.lnr-spell-check:before {
  content: "";
}
.lnr-screen:before {
  content: "";
}
.lnr-smartphone:before {
  content: "";
}
.lnr-tablet:before {
  content: "";
}
.lnr-laptop:before {
  content: "";
}
.lnr-laptop-phone:before {
  content: "";
}
.lnr-power-switch:before {
  content: "";
}
.lnr-bubble:before {
  content: "";
}
.lnr-heart-pulse:before {
  content: "";
}
.lnr-construction:before {
  content: "";
}
.lnr-pie-chart:before {
  content: "";
}
.lnr-chart-bars:before {
  content: "";
}
.lnr-gift:before {
  content: "";
}
.lnr-diamond:before {
  content: "";
}
.lnr-linearicons:before {
  content: "";
}
.lnr-dinner:before {
  content: "";
}
.lnr-coffee-cup:before {
  content: "";
}
.lnr-leaf:before {
  content: "";
}
.lnr-paw:before {
  content: "";
}
.lnr-rocket:before {
  content: "";
}
.lnr-briefcase:before {
  content: "";
}
.lnr-bus:before {
  content: "";
}
.lnr-car:before {
  content: "";
}
.lnr-train:before {
  content: "";
}
.lnr-bicycle:before {
  content: "";
}
.lnr-wheelchair:before {
  content: "";
}
.lnr-select:before {
  content: "";
}
.lnr-earth:before {
  content: "";
}
.lnr-smile:before {
  content: "";
}
.lnr-sad:before {
  content: "";
}
.lnr-neutral:before {
  content: "";
}
.lnr-mustache:before {
  content: "";
}
.lnr-alarm:before {
  content: "";
}
.lnr-bullhorn:before {
  content: "";
}
.lnr-volume-high:before {
  content: "";
}
.lnr-volume-medium:before {
  content: "";
}
.lnr-volume-low:before {
  content: "";
}
.lnr-volume:before {
  content: "";
}
.lnr-mic:before {
  content: "";
}
.lnr-hourglass:before {
  content: "";
}
.lnr-undo:before {
  content: "";
}
.lnr-redo:before {
  content: "";
}
.lnr-sync:before {
  content: "";
}
.lnr-history:before {
  content: "";
}
.lnr-clock:before {
  content: "";
}
.lnr-download:before {
  content: "";
}
.lnr-upload:before {
  content: "";
}
.lnr-enter-down:before {
  content: "";
}
.lnr-exit-up:before {
  content: "";
}
.lnr-bug:before {
  content: "";
}
.lnr-code:before {
  content: "";
}
.lnr-link:before {
  content: "";
}
.lnr-unlink:before {
  content: "";
}
.lnr-thumbs-up:before {
  content: "";
}
.lnr-thumbs-down:before {
  content: "";
}
.lnr-magnifier:before {
  content: "";
}
.lnr-cross:before {
  content: "";
}
.lnr-menu:before {
  content: "";
}
.lnr-list:before {
  content: "";
}
.lnr-chevron-up:before {
  content: "";
}
.lnr-chevron-down:before {
  content: "";
}
.lnr-chevron-left:before {
  content: "";
}
.lnr-chevron-right:before {
  content: "";
}
.lnr-arrow-up:before {
  content: "";
}
.lnr-arrow-down:before {
  content: "";
}
.lnr-arrow-left:before {
  content: "";
}
.lnr-arrow-right:before {
  content: "";
}
.lnr-move:before {
  content: "";
}
.lnr-warning:before {
  content: "";
}
.lnr-question-circle:before {
  content: "";
}
.lnr-menu-circle:before {
  content: "";
}
.lnr-checkmark-circle:before {
  content: "";
}
.lnr-cross-circle:before {
  content: "";
}
.lnr-plus-circle:before {
  content: "";
}
.lnr-circle-minus:before {
  content: "";
}
.lnr-arrow-up-circle:before {
  content: "";
}
.lnr-arrow-down-circle:before {
  content: "";
}
.lnr-arrow-left-circle:before {
  content: "";
}
.lnr-arrow-right-circle:before {
  content: "";
}
.lnr-chevron-up-circle:before {
  content: "";
}
.lnr-chevron-down-circle:before {
  content: "";
}
.lnr-chevron-left-circle:before {
  content: "";
}
.lnr-chevron-right-circle:before {
  content: "";
}
.lnr-crop:before {
  content: "";
}
.lnr-frame-expand:before {
  content: "";
}
.lnr-frame-contract:before {
  content: "";
}
.lnr-layers:before {
  content: "";
}
.lnr-funnel:before {
  content: "";
}
.lnr-text-format:before {
  content: "";
}
.lnr-text-format-remove:before {
  content: "";
}
.lnr-text-size:before {
  content: "";
}
.lnr-bold:before {
  content: "";
}
.lnr-italic:before {
  content: "";
}
.lnr-underline:before {
  content: "";
}
.lnr-strikethrough:before {
  content: "";
}
.lnr-highlight:before {
  content: "";
}
.lnr-text-align-left:before {
  content: "";
}
.lnr-text-align-center:before {
  content: "";
}
.lnr-text-align-right:before {
  content: "";
}
.lnr-text-align-justify:before {
  content: "";
}
.lnr-line-spacing:before {
  content: "";
}
.lnr-indent-increase:before {
  content: "";
}
.lnr-indent-decrease:before {
  content: "";
}
.lnr-pilcrow:before {
  content: "";
}
.lnr-direction-ltr:before {
  content: "";
}
.lnr-direction-rtl:before {
  content: "";
}
.lnr-page-break:before {
  content: "";
}
.lnr-sort-alpha-asc:before {
  content: "";
}
.lnr-sort-amount-asc:before {
  content: "";
}
.lnr-hand:before {
  content: "";
}
.lnr-pointer-up:before {
  content: "";
}
.lnr-pointer-right:before {
  content: "";
}
.lnr-pointer-down:before {
  content: "";
}
.lnr-pointer-left:before {
  content: "";
}
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
* {
  position: relative;
  box-sizing: border-box;
  text-decoration: none;
}
.container {
  margin: 0 auto;
}
@media (min-width: 1280px) {
  .container {
    max-width: 1280px;
    width: 100%;
  }
}
body.rm-blocking {
  overflow: hidden;
}
header#resp-header {
  display: none;
  width: 100%;
}
header#resp-header .resp-header {
  z-index: 999;
  border-bottom: 2px solid #d3b571;
  background-color: #fff;
  padding-top: 10px;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
header#resp-header .resp-header a.logo {
  padding: 0px 80px;
  position: absolute;
  width: 100%;
  text-align: center;
  display: block;
}
header#resp-header .resp-header a.logo .resp-header-white {
  display: block;
  margin: auto;
}
header#resp-header .resp-header a.logo .resp-header-black {
  display: none;
  margin: auto;
}
header#resp-header .resp-header a.logo img {
  vertical-align: middle;
  width: 175px;
}
header#resp-header .resp-header a#menu-button {
  display: inline-block;
  width: 50px;
  height: 100%;
  padding: 5px 10px;
  top: 0;
  left: 5px;
  cursor: pointer;
}
header#resp-header .resp-header a#menu-button .line-box {
  width: 100%;
  height: 22px;
  display: inline-block;
  position: relative;
}
header#resp-header .resp-header a#menu-button .line-box .inner {
  top: auto;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: #ff6100;
  border-radius: 2px;
  position: absolute;
  display: block;
  margin-top: -2px;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
header#resp-header .resp-header a#menu-button .line-box .inner:before,
header#resp-header .resp-header a#menu-button .line-box .inner:after {
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: #ff6100;
  border-radius: 2px;
  position: absolute;
}
header#resp-header .resp-header a#menu-button .line-box .inner:before {
  top: -10px;
}
header#resp-header .resp-header a#menu-button .line-box .inner:after {
  top: -20px;
}
header#resp-header .resp-header a#menu-button.is-active .inner {
  -webkit-transform: translate3d(0, -10px, 0) rotate(-45deg);
  -ms-transform: translate3d(0, -10px, 0) rotate(-45deg);
  -o-transform: translate3d(0, -10px, 0) rotate(-45deg);
  -moz-transform: translate3d(0, -10px, 0) rotate(-45deg);
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}
header#resp-header .resp-header a#menu-button.is-active .inner:before {
  top: 0px;
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
header#resp-header .resp-header a#menu-button.is-active .inner:after {
  top: 0;
  opacity: 0;
}
header#resp-header .resp-header.is_sticky {
  background-color: #fff;
}
header#resp-header .resp-header.is_sticky .logo .resp-header-white {
  display: none;
  margin: auto;
}
header#resp-header .resp-header.is_sticky .logo .resp-header-black {
  display: block;
  margin: auto;
}
header#resp-header .resp-header.is_sticky #menu-button .line-box .inner {
  background-color: #000;
}
header#resp-header .resp-header.is_sticky #menu-button .line-box .inner:after {
  background-color: #000 !important;
}
header#resp-header .resp-header.is_sticky #menu-button .line-box .inner:before {
  background-color: #000 !important;
}
header#resp-header #resp-menu {
  display: none;
  background-color: #fff;
  position: absolute;
  z-index: 99;
  width: 100%;
  box-shadow: 0px 0px 10px #888;
  overflow-scrolling: touch;
  -webkit-overflow-scrolling: touch;
}
header#resp-header #resp-menu ul.sub-menu {
  border-bottom: 1px solid #bbb;
  display: none;
}
header#resp-header #resp-menu ul.sub-menu.active {
  display: block !important;
}
header#resp-header #resp-menu ul.sub-menu > li.hasChild .sub-menu {
  border-bottom: 0px;
  padding-left: 20px;
}
header#resp-header #resp-menu ul.sub-menu > li.hasChild .sub-menu > li > a {
  border-bottom: 0px;
}
header#resp-header #resp-menu ul.sub-menu > li > a {
  padding-left: 40px;
  border-bottom: 0px;
  border-top: 0;
}
header#resp-header #resp-menu ul.sub-menu > li:last-child > a {
  border-bottom: 1px solid #bbb;
}
header#resp-header
  #resp-menu
  ul.sub-menu
  > li:last-child:not(.has-children)
  > a {
  border-bottom: 0;
}
header#resp-header #resp-menu ul li a {
  color: #464646;
  font-size: 15px;
  text-decoration: none;
  margin: 0;
  padding: 10px 30px;
  padding-bottom: 5px;
  border-bottom: 1px solid #bbb;
  display: block;
  line-height: 30px;
  text-align: left;
}
header#resp-header #resp-menu ul li a.rm-open:after {
  content: "";
  font-family: "Linearicons-Free";
  position: absolute;
  right: 35px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 12px;
}
header#resp-header #resp-menu ul li a.rm-close:after {
  content: "";
  font-family: "Linearicons-Free";
  position: absolute;
  right: 35px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 12px;
}
header#resp-header .menuWrapper {
  display: none;
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  width: 100%;
  height: 9999px;
  top: 0;
  left: 0;
  z-index: 2;
}
img {
  max-width: 100%;
}
.text-bold {
  font-weight: bold;
}
.vertical-center {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
}
#scrollUp {
  background-image: url("/images/top.png");
  bottom: 20px;
  right: 20px;
  width: 38px;
  height: 38px;
}
@font-face {
  font-family: "Acme Gothic Light";
  src: url("/font/Acme Gothic Light.otf") format("opentype");
}
@font-face {
  font-family: "Acme Gothic Regular";
  src: url("/font/Acme Gothic Regular.otf") format("opentype");
}
@font-face {
  font-family: "Acme Gothic Semi Bold";
  src: url("/font/Acme Gothic Semi Bold.otf") format("opentype");
}
html {
  scroll-padding-top: 120px;
}
body {
  background-color: #0f0f0f;
  background-repeat: repeat-y;
  background-size: cover;
  font-family: "Acme Gothic Regular", sans-serif;
  font-size: 20px;
  letter-spacing: 1px;
  color: #fff;
  font-weight: 400;
  line-height: 1.4;
}
strong {
  font-weight: bold;
}
p {
  font-weight: normal;
  font-size: 15px;
  margin-bottom: 25px;
  line-height: 26px;
}
.p-0 {
  padding: 0 !important;
}
.m-0 {
  margin: 0 !important;
}
.header-bar,
.header-icon {
  display: inline-block;
}
a {
  text-decoration: none !important;
  color: inherit; 
}
a:hover {
  color: inherit;
}
.btn {
  padding: 5px 30px;
  background-color: #b89649;
  border: 2px solid #b89649;
  border-radius: 50px;
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .btn {
    display: inline-block;
  }
}
.btn i {
  margin-left: 5px;
  font-size: 14px;
}
.btn:hover {
  background-color: #b89649;
  color: #fff;
  text-decoration: none;
}
.content {
  max-width: 1280px;
  margin: 0 auto;
}
input[type="radio"] {
  height: 20px;
  width: 20px;
  top: 2px;
}
input[type="text"],
textarea {
  padding: 20px 20px !important;
  font-size: 18px !important;
  border-radius: 0 !important;
}
textarea {
  padding-top: 10px !important;
}
.d-none {
  display: none;
}
.popup {
  display: none;
  background-color: #fff;
  padding: 60px 20px 20px 20px;
  max-width: 1280px;
}
.popup .title {
  font-size: 40px;
  margin-bottom: 60px;
}
.popup .content {
  font-size: 30px;
  text-align: justify;
}
@media (max-width: 1200px) {
  .popup .content {
    font-size: 18px;
  }
}
.featherlight .featherlight-content {
  background: none;
  padding-top: 40px;
  background-color: rgba(193, 170, 79, 0.91);
  color: #fff;
}
.featherlight .featherlight-close-icon {
  right: 0px;
  background: none;
  color: #fff;
  font-weight: bold;
  padding: 5px 0px;
  width: 50px;
  height: 40px;
  top: 0px;
}
.featherlight:last-of-type {
  background: none;
}
.container {
  border: 0px solid #000;
  display: block;
  margin: 0 auto;
  max-width: 1400px;
}
@media (min-width: 1200px) {
  .container {
    width: 100%;
  }
}
.color-gold {
  color: #b89649 !important;
}
.slide-buttons {
  text-align: center;
}
.slide-buttons .slide-button {
  background-color: #fff;
  margin: 0px 0px;
  font-size: 0px;
  width: 23px;
  height: 4px;
  display: inline-block;
  border-radius: 1px;
}
.slide-buttons .slide-button.active {
  background-color: #e0cc7d;
}
.gold-line {
  max-width: 1200px;
  margin: 0 auto;
  border: 0px;
  border-top: 1px solid #b89649;
}
.dish-wrapper {
  margin-top: 60px;
}
.dish-wrapper img {
  width: 100%;
}
.dish-wrapper .title {
  margin-top: 30px;
  text-align: left;
  font-size: 22px;
  color: #b89649;
}
@media screen and (max-width: 500px) {
  .dish-wrapper .title {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.dish-wrapper .text {
  text-align: left;
  font-size: 18px;
  color: #fff;
}
@media screen and (max-width: 500px) {
  .dish-wrapper .text {
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 60px;
  }
}
.gold-btn {
  font-size: 24px;
  font-family: "Acme Gothic Semi Bold";
  color: #b89649;
  border: 1px solid #fff;
  border-radius: 100px;
  padding: 20px 40px;
}
.white-btn {
  font-size: 24px;
  font-family: "Acme Gothic Semi Bold";
  color: #fff;
  border: 1px solid #fff;
  border-radius: 100px;
  padding: 20px 40px;
}
.text2 {
  margin: 0 auto;
  margin-top: 30px;
  display: block;
  max-width: 800px;
  font-size: 22px;
  color: #fff;
  line-height: 1.5;
  font-weight: 100;
}
@media screen and (max-width: 500px) {
  .text2 {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.gold-sectionTitle {
  font-size: 36px;
  color: #b89649;
  text-align: center;
  margin-top: 90px;
  margin-bottom: 60px;
}
.white-sectionTitle {
  font-size: 36px;
  color: #fff;
  text-align: center;
  margin-top: 90px;
  margin-bottom: 60px;
}
.row {
  margin-left: 0;
  margin-right: 0;
}
section.page-content {
  padding-top: 250px;
  padding-bottom: 150px;
}
@media (min-width: 768px) {
  section.page-content {
    max-width: 1400px;
    margin: 0 auto;
  }
}
#home section.banner {
  margin-top: 120px;
  max-height: 550px;
}
#home section.banner .banner-wrapper {
  justify-content: center;
  align-items: center;
  height: 100vh;
  max-height: 550px;
  overflow: hidden;
}
#home section.banner .banner-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 1199px) {
  #home section.banner {
    margin-top: 75px;
  }
}
@media (max-width: 576px) {
  #home section.banner {
    margin-top: 75px;
  }
}
#home section.intro {
  max-width: 800px;
  margin: 0 auto;
  padding-bottom: 150px;
  top: -60px;
}
@media screen and (max-width: 500px) {
  #home section.intro {
    padding-bottom: 60px;
  }
}
#home section.intro .banner-wrapper {
  justify-content: center;
  align-items: center;
  height: 100vh;
  max-height: 332px;
  overflow: hidden;
}
#home section.intro .banner-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#home section.intro .text1 {
  background-color: #b89649;
  font-size: 28px;
  color: #fff;
  display: block;
  width: 100%;
  padding: 25px 0px;
  margin-bottom: 60px;
  line-height: 1.2;
  font-weight: 100;
}
#home section.hopperbase {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 30px;
  padding-bottom: 150px;
}
@media screen and (max-width: 500px) {
  #home section.hopperbase {
    padding-bottom: 60px;
  }
}
@media (max-width: 1200px) {
  #home section.hopperbase .dish-wrapper .text {
    min-height: 330px;
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media screen and (max-width: 500px) {
  #home section.hopperbase .dish-wrapper .text {
    min-height: 0px;
    padding-left: 15px;
    padding-right: 15px;
  }
}
#home section.gotthardbase {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  padding-top: 90px;
  padding-bottom: 150px;
}
@media screen and (max-width: 500px) {
  #home section.gotthardbase {
    padding-bottom: 60px;
  }
}
#home section.hongrill {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  padding-top: 30px;
  padding-bottom: 150px;
}
@media screen and (max-width: 500px) {
  #home section.hongrill {
    padding-bottom: 60px;
  }
}
#home section.packagedFood {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  padding-top: 30px;
  padding-bottom: 150px;
}
@media screen and (max-width: 500px) {
  #home section.packagedFood {
    padding-bottom: 60px;
  }
}
#home section.packagedFood .text2 {
  max-width: 920px;
}
#home section.packagedFood .dish-wrapper .title {
  color: #000;
}
#home section.futureDevelopment {
  font-size: 18px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  padding-top: 30px;
  padding-bottom: 150px;
  color: #fff;
  text-align: left;
}
#home section.futureDevelopment .text1 {
  padding-left: 100px;
  padding-right: 60px;
}
@media screen and (max-width: 500px) {
  #home section.futureDevelopment .text1 {
    padding-left: 30px;
    padding-right: 30px;
  }
}
#home section.futureDevelopment .text2 {
  padding-left: 15px;
  padding-right: 15px;
}
@media screen and (max-width: 500px) {
  #home section.futureDevelopment .text2 {
    padding-left: 30px;
    padding-right: 30px;
  }
}
#home section.futureDevelopment .text3 {
  padding-right: 100px;
  padding-left: 60px;
}
@media screen and (max-width: 500px) {
  #home section.futureDevelopment .text3 {
    padding-left: 30px;
    padding-right: 30px;
  }
}
#home section.corporateSocial {
  font-size: 18px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  padding-top: 0px;
  padding-bottom: 150px;
  color: #fff;
}
#home section.corporateSocial .text2 {
  max-width: 996px;
  font-size: 18px;
}
@media screen and (max-width: 500px) {
  #home section.corporateSocial .text2 {
    padding-left: 30px;
    padding-right: 30px;
  }
}
#home section.contact {
  font-size: 18px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  padding-top: 30px;
  padding-bottom: 150px;
  color: #fff;
}
#home .food-menu {
  background-color: #e4e1c9;
}
#home .food-menu p {
  display: inline-block;
  max-width: 600px;
  padding: 20px 0px;
}
#home .food-menu .caption {
  font-weight: 500;
}
#home .food-menu .menu-tbn-wrapper img {
  width: 100%;
}
#home .news .container {
  max-width: 1000px;
}
#home .news .news-wrapper {
  margin: 30px 0px;
}
#home .news .news-wrapper .cover img {
  top: 10px;
  max-width: 80%;
}
#home .news .date {
  font-size: 22px;
  color: #fff;
  margin-bottom: 10px;
}
#home .news .content {
  color: #fff;
  font-size: 18px;
  margin: 0px 0px 20px 0px;
}
#home .news .learn-more {
  font-size: 18px;
}
@media (max-width: 1200px) {
  #home .news .cover {
    text-align: left;
  }
}
#home .highlight .caption {
  color: #b89649;
}
#home .highlight .container {
  max-width: 1000px;
  background-color: #fff;
  padding: 60px 30px;
}
#home .highlight h1 {
  margin-bottom: 60px;
  color: #b89649;
}
@media (max-width: 576px) {
  #about {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
#about .first-image {
  margin-top: 60px;
}
@media (max-width: 576px) {
  #about .first-image {
    margin-top: 0px;
  }
}
#about .dish.first {
  margin-top: 60px;
}
#about .dish h2 {
  margin-bottom: 30px;
  /* font-size: 28px; */
}
#about .dish .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 768px) {
  #about .dish .image img {
    width: 100%;
  }
}
#about .dish .description {
  padding-top: 60px;
  padding-bottom: 60px;
  padding-right: 120px;
  padding-left: 120px;
  line-height: 1.5;
}
#about .dish .inner-description {
  max-width: 600px;
}
@media (min-width: 1024px) {
  #about .dish .description.right {
    padding-right: 120px;
  }
}
@media (min-width: 1024px) {
  #about .dish .description.left {
    padding-left: 120px;
  }
}
@media (min-width: 768px) {
  #event .intro {
    max-width: 820px;
  }
}
@media (max-width: 576px) {
  #about .dish .description {
    padding-right: 15px;
    padding-left: 15px;
  }
}
#event h3 {
  margin-bottom: 10px;
}
#event .content {
  margin: 0;
}
@media (min-width: 768px) {
  #event .content {
    max-width: 1000px;
  }
}
#event .event {
  border-bottom: 1px solid #b89649;
}
#event .event.first {
  margin-top: 90px;
  border-top: 1px solid #b89649;
}
#event .event h2 {
  margin-bottom: 30px;
}
#event .event .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 768px) {
  #event .event .image img {
    width: 90%;
  }
}
#event .event .description {
  padding-top: 60px;
  padding-bottom: 60px;
  padding-right: 60px;
  padding-left: 60px;
  line-height: 1.5;
}
@media (min-width: 1024px) {
  #event .event .description.right {
    padding-right: 120px;
  }
}
@media (min-width: 1024px) {
  #event .event .description.left {
    padding-left: 120px;
  }
}
@media (min-width: 768px) {
  #event {
    max-width: 1920px;
    width: 70%;
    margin: 0 auto;
  }
}
.menu-bg-banner {
  position: fixed;
  top: 530px;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.menu-bg-banner img {
  width: 100%;
}
@media (max-width: 576px) {
  #menu {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media (min-width: 768px) {
  #menu {
    max-width: 1920px;
    width: 70%;
    margin: 0 auto;
  }
}
@media (min-width: 1200px) {
  #menu h4 {
    min-height: 60px;
  }
}
#menu .dish-nav.fixed {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
}
#menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 60px;
}
#menu ul li {
  display: inline-block;
  margin: 0 10px;
  vertical-align: top;
}
#menu ul li a {
  display: block;
  text-align: center;
  font-size: 18px;
  color: #fff;
}
#menu ul li a.active {
  color: #b89649;
}
#menu ul li a img {
  display: block;
  margin-bottom: 10px;
}
#menu .menu-item {
  padding: 60px 90px;
  background-color: #fff;
  color: #b89649;
  margin-top: 530px;
}
#menu .menu-item .menu-item-content {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 15px;
}
#menu .menu-item .menu-item-content .menu-item-name {
  flex: 1;
  vertical-align: top;
}
#menu .menu-item .menu-item-content .menu-item-price {
  flex-shrink: 0;
  white-space: nowrap;
  vertical-align: top;
}
#menu .btn {
  white-space: normal !important;
  padding: 5px 20px;
  max-width: 220px;
  margin: 0 auto;
}
@media (max-width: 576px) {
  #menu .btn {
    width: 250px;
    margin: 0 auto;
  }
}
#press .press-btn {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #000;
  border: 1px solid #b89649;
  color: #b89649!important;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  font-size: 22px;
  font-weight: normal;
}
#press .press-btn.active {
  background-color: #b89649;
  color: #000!important;
}
#press .press-btn:hover {
  background-color: #fff;
  color: #000;
}
#press .title2 {
  font-size: 20px;
}
#press .press-item {
    cursor: pointer;
    font-size: 17px;
}
#membership {
  --essential-bg: #fff;
  --essential-border: #c9a84c;
  --glow-bg: #8a7560;
  --radiant-bg: #c9a84c;
  --gold: #c9a84c;
  --dark: #1a1a1a;
  max-width: 1200px;
}
#membership h2 {
  margin-bottom: 90px;
}
#membership .row-label {
  margin-bottom: 6px;
}
#membership .row-value.small-text {
  line-height: 1.6;
}
#membership .desktop-view {
  display: none;
}
#membership .mobile-view {
  display: block;
}
@media (min-width: 576px) {
  #membership .mobile-view {
    display: none !important;
  }
  #membership .desktop-view {
    display: grid !important;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 15px;
  }
  #membership .gc {
    padding: 30px 25px 40px 25px;
  }
  #membership .gc.c1 {
    background: var(--essential-bg);
    color: var(--dark);
    border-right: 1px solid #000;
  }
  #membership .gc.c2 {
    background: var(--glow-bg);
    color: var(--dark);
    border-right: 1px solid #000;
  }
  #membership .gc.c3 {
    background: var(--radiant-bg);
    color: var(--dark);
  }
  #membership .gc.c1.rd {
    border-bottom: 1px solid #000;
  }
  #membership .gc.c2.rd {
    border-bottom: 1px solid #000;
  }
  #membership .gc.c3.rd {
    border-bottom: 1px solid #000;
  }
  #membership .gc.hdr {
    padding: 40px 25px;
    border-bottom: 1px solid rgba(201, 168, 76, 0.35);
    display: flex;
    align-items: center;
  }
  #membership .gc.hdr h2 {
    margin: 0;
  }
  #membership .gc.c1.hdr h3 {
    color: #b89649;
  }
  #membership .gc.c2.hdr h3 {
    color: #000;
  }
  #membership .gc.c3.hdr h3 {
    color: #fff;
  }
  #membership .gc.c1 .row-label {
    color: #000;
  }
  #membership .gc.c2 .row-label {
    color: #000;
  }
  #membership .gc.c3 .row-label {
    color: #000;
  }
}
@media (max-width: 575px) {
  #membership .m-card {
    margin-bottom: 20px;
    overflow: hidden;
  }
  #membership .m-card.essential {
    border: 1px solid var(--essential-border);
    background: var(--essential-bg);
  }
  #membership .m-card.glow {
    background: var(--glow-bg);
  }
  #membership .m-card.radiant {
    background: var(--radiant-bg);
  }
  #membership .m-header {
    padding: 18px 20px;
    border-bottom: 1px solid #000;
  }
  #membership .m-header h2 {
    margin: 0;
    font-family: "Acme Gothic Regular";
  }
  #membership .m-card.essential .m-header h2 {
    color: var(--gold);
  }
  #membership .m-card.glow .m-header h2 {
    color: var(--dark);
  }
  #membership .m-card.radiant .m-header h2 {
    color: var(--dark);
  }
  #membership .m-cell {
    padding: 13px 20px;
    border-bottom: 1px solid #000;
  }
  #membership .m-cell:last-child {
    border-bottom: none;
  }
  #membership .m-card.essential .m-cell {
    border-color: #000;
  }
  #membership .m-card.essential .row-label {
    color: #000;
  }
  #membership .m-card.essential .row-value {
    color: #000;
  }
  #membership .m-card.glow .row-label {
    color: #000;
  }
  #membership .m-card.glow .row-value {
    color: #000;
  }
  #membership .m-card.radiant .row-label {
    color: #000;
  }
  #membership .m-card.radiant .row-value {
    color: #000;
  }
}
section.footer {
  background-color: #b89649;
  font-size: 14px;
  margin: 0 auto;
  padding-top: 90px;
  padding-bottom: 60px;
  color: #fff;
  line-height: 1.5;
}
section.footer a {
  color: #fff;
}
section.footer i {
  font-size: 24px;
  margin-right: 10px;
}
section.footer .title {
  font-size: 20px;
  margin-bottom: 20px;
}
.color-orange {
  color: #ff6100;
}
.color-blue {
  color: #03a7ff;
}
.bg-blue {
  background-color: #03a7ff;
}
.font-bold {
  font-weight: bold;
}
.font-13 {
  font-size: 13px;
}
.font-15 {
  font-size: 15px;
}
.font-17 {
  font-size: 17px;
}
.font-20 {
  font-size: 20px;
}
.font-25 {
  font-size: 25px;
}
label {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 10px;
  font-weight: bold;
  font-size: 15px;
}
.btn-cell .btn + .btn {
  margin-right: 15px;
}
a.btn-lg,
button.btn-lg {
  width: 100%;
  max-width: 165px;
}
a.btn-reset,
button.btn-reset {
  background-color: #c1b192;
  color: #fff;
  font-size: 17px;
  padding: 9px 40px;
  border: none;
  border-radius: 0px;
}
a.btn-reset:hover:active,
button.btn-reset:hover:active {
  background-color: #534741;
  color: #fff;
}
a.btn-reset:hover,
a.btn-reset:focus,
a.btn-reset:active,
button.btn-reset:hover,
button.btn-reset:focus,
button.btn-reset:active {
  background-color: #534741;
  color: #fff;
}
a.btn-default,
button.btn-default {
  display: inline-block;
  background-color: #ff6100;
  color: #fff;
  font-size: 17px;
  padding: 9px 40px;
  border: none;
  border-radius: 20px;
  border: 0px solid #505050;
  white-space: nowrap;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
a.btn-default .fas,
button.btn-default .fas {
  margin-left: 20px;
}
a.btn-default:hover:active,
button.btn-default:hover:active {
  background-color: #534741;
  color: #fff;
}
a.btn-default:hover,
a.btn-default:focus,
a.btn-default:active,
button.btn-default:hover,
button.btn-default:focus,
button.btn-default:active {
  background-color: #534741;
  color: #fff;
}
a.btn-success,
button.btn-success {
  color: #fff;
  background-color: #5cb85c;
  border-color: #4cae4c;
}
a.btn-gray,
button.btn-gray {
  background-color: #959595;
  color: #fff;
  font-size: 17px;
  padding: 9px 40px;
  border: none;
  border-radius: 0px;
}
.quantity {
  border: 2px solid #efefef;
  display: table;
  margin: 0 auto;
  background: #fff;
}
.quantity .quantity-minus,
.quantity .quantity-plus,
.quantity .qty {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}
.quantity .quantity-minus,
.quantity .quantity-plus {
  width: 42px;
  height: 42px;
  line-height: 42px;
  font-size: 16px;
  font-family: "Lato", sans-serif;
  color: #1d1d1d;
}
.quantity .qty {
  border: 2px solid #efefef !important;
  border-top: 0px !important;
  border-bottom: 0px !important;
  padding: 0;
  height: 42px;
  width: 50px;
  font-size: 18px;
  color: #1d1d1d;
  background-color: rgba(0, 0, 0, 0);
}
h1 {
  display: block;
  font-size: 48px;
  color: #fff;
  line-height: 1.2;
}
h2 {
  display: block;
  font-size: 36px;
  color: #fff;
  line-height: 1.2;
  font-family: "Acme Gothic Light";
}
h3 {
  display: block;
  font-size: 34px;
  color: #fff;
  line-height: 1.2;
}
h3.menu-subtitle {
  width: 100%;
}
@media (min-width: 768px) {
  h3.menu-subtitle {
    width: 50%;
  }
}
h3.dishes-subtitle {
  width: 100%;
}
@media (min-width: 768px) {
  h3.dishes-subtitle {
    width: 50%;
  }
}
h4 {
  display: block;
  font-size: 24px;
  color: #fff;
  line-height: 1.2;
  font-family: "Acme Gothic Light";
}
h5 {
  display: block;
  font-size: 16px !important;
  color: #fff;
  line-height: 1;
  font-family: "Acme Gothic Regular";
}
.banner-slider-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-bottom: 60px;
}
.banner-slider-wrapper {
  position: relative;
  width: 100%;
  z-index: 10;
}
.banner-slider-wrapper .tns-nav {
  bottom: 0px;
}
@media (min-width: 768px) {
  .banner-slider-wrapper .tns-nav {
    bottom: 30px;
  }
}
@media (max-width: 576px) {
  .banner-slider-wrapper .tns-nav button.tns-nav-active {
    background-color: #b89649 !important;
    border-color: #b89649 !important;
  }
}
.banner-slider .slide {
  width: 100%;
  position: relative;
}
.banner-slider .slide img {
  width: 100%;
  height: 100vh;
  display: block;
  object-fit: cover;
}
.banner-slider .slide .slide-content {
  text-align: center;
  padding: 20px;
  position: absolute;
  bottom: 120px;
  z-index: 5;
  width: 100%;
  padding: 0 20px;
  background-color: rgba(0, 0, 0, 0);
}
.banner-slider .slide .slide-title {
  color: #fff;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .banner-slider .slide .slide-title {
    color: #fff;
    margin-bottom: 40px;
  }
  .banner-slider .slide .slide-titleh1 {
    font-size: 48px;
  }
  .banner-slider .slide .slide-titleh4 {
    font-size: 22px;
  }
}
.banner-slider .slide h1.slide-title {
  font-size: 24px;
}
.banner-slider .slide h4.slide-title {
  font-size: 18px;
}
@media (min-width: 768px) {
  .banner-slider .slide h1.slide-title {
    font-size: 48px;
  }
  .banner-slider .slide h4.slide-title {
    font-size: 22px;
  }
}
.tns-nav {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  text-align: center;
}
.tns-nav button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid #fff;
  background-color: #fff;
  margin: 0 8px;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}
.tns-nav button:hover {
  background-color: #333;
  border-color: #333;
}
.tns-nav button.tns-nav-active {
  background-color: #000;
  border-color: #000;
}
.tns-controls {
  display: none;
}
.menu-slider-wrapper {
  position: relative;
  width: 100%;
  margin: 60px auto;
  margin-top: 90px;
}
@media (min-width: 768px) {
  .menu-slider-wrapper {
    width: 80%;
  }
}
.menu-slider .menu-slide {
  text-align: center;
  padding: 0 15px;
}
.menu-slider .menu-slide img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 20px;
}
.menu-slider .menu-slide .menu-slide-title {
  margin: 0;
  text-align: center;
}
.menu-slider-wrapper .tns-nav {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  text-align: center;
  width: 100%;
}
.menu-slider-wrapper .tns-nav button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid #fff;
  background-color: #fff;
  margin: 0 8px;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}
.menu-slider-wrapper .tns-nav button:hover {
  background-color: #b89649;
  border-color: #b89649;
}
.menu-slider-wrapper .tns-nav button.tns-nav-active {
  background-color: #b89649;
  border-color: #b89649;
}
.news-slider-wrapper {
  position: relative;
  width: 100%;
  margin: 30px auto;
  margin-bottom: 60px;
}
@media (min-width: 768px) {
  .news-slider-wrapper {
    width: 60%;
  }
}
.news-slider-wrapper .news-slide .row {
  align-items: flex-start;
}
.news-slider-wrapper .news-slide .row .left-content {
  padding-right: 90px;
}
.news-slider-wrapper .news-slide .row .news-slide-date {
  font-size: 14px;
  display: block;
  margin-bottom: 5px;
}
.news-slider-wrapper .news-slide .row .news-slide-title {
  margin-bottom: 30px;
}
.news-slider-wrapper .news-slide .row .news-slide-description {
  margin-bottom: 15px;
}
.news-slider-wrapper .tns-nav {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  text-align: center;
}
.news-slider-wrapper .tns-nav button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid #fff;
  background-color: #fff;
  margin: 0 8px;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}
.news-slider-wrapper .tns-nav button:hover {
  background-color: #b89649;
  border-color: #b89649;
}
.news-slider-wrapper .tns-nav button.tns-nav-active {
  background-color: #b89649;
  border-color: #b89649;
}
.dishes-slider-wrapper {
  position: relative;
  width: 100%;
  margin: 60px auto;
  margin-top: 90px;
  margin-bottom: 180px;
}
@media (min-width: 768px) {
  .dishes-slider-wrapper {
    width: 70%;
  }
}
.dishes-slider .dishes-slide {
  text-align: center;
  padding: 0 15px;
}
.dishes-slider .dishes-slide img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 20px;
}
.dishes-slider .dishes-slide .dishes-slide-title {
  margin: 0;
  text-align: center;
}
.dishes-slider-wrapper .tns-nav {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  text-align: center;
}
.dishes-slider-wrapper .tns-nav button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid #fff;
  background-color: #fff;
  margin: 0 8px;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}
.dishes-slider-wrapper .tns-nav button:hover {
  background-color: #b89649;
  border-color: #b89649;
}
.dishes-slider-wrapper .tns-nav button.tns-nav-active {
  background-color: #b89649;
  border-color: #b89649;
}
table {
  width: 100%;
  margin-bottom: 10px;
  border-collapse: collapse;
  margin-bottom: 15px;
}
table.shop-table thead th {
  border-top: 1px solid #dfdfdf;
  border-bottom: 2px solid #eee;
  padding: 10px 5px;
  color: #474747;
  font-weight: bold;
  vertical-align: middle;
}
table.shop-table tbody th {
  padding: 10px 5px;
  border: none;
  border-bottom: 1px solid #efefef;
  font-weight: bold;
}
table.shop-table tbody tr {
  border-bottom: 1px solid #dfdfdf;
}
table.shop-table tbody td {
  padding: 11px 15px;
  vertical-align: middle;
}
table.shop-table tbody td.product-thumbnail {
  width: 15%;
}
table.shop-table
  tbody
  td.product-thumbnail
  .product-thumbnail-wrapper
  .product-thumbnail-quantity {
  font-size: 15px;
  font-weight: 500;
  white-space: nowrap;
  padding: 2px 10px;
  border-radius: 2em;
  background-color: #03a7ff;
  color: #fff;
  position: absolute;
  right: -11px;
  top: -7px;
  z-index: 3;
  line-height: 25px;
}
table.shop-table tbody td.product-name {
  width: 50%;
  max-width: 200px;
  font-size: 16px;
}
table.shop-table tbody td.product-name a {
  color: #555;
}
table.shop-table tbody td.product-price {
  width: 15%;
}
table.shop-table tfoot th {
  font-weight: bold;
}
table.shop-table tfoot td {
  text-align: right;
}
table.cart-table {
  border-collapse: collapse;
  width: 100%;
}
@media (max-width: 767px) {
  table.cart-table thead {
    display: none;
  }
}
table.cart-table thead th {
  border-top: 1px solid #03a7ff;
  border-bottom: 1px solid #03a7ff;
  padding: 15px 22px;
  color: #474747;
  font-weight: bold;
  text-transform: capitalize;
  text-align: center;
}
@media (max-width: 767px) {
  table.cart-table tbody {
    display: block;
    padding: 0;
    width: 100%;
    border: none;
  }
}
@media (max-width: 767px) {
  table.cart-table tbody tr {
    overflow: hidden;
    display: block;
    padding: 0;
    width: 100%;
  }
}
table.cart-table tbody tr.promotion {
  background-color: #f2f2f2;
}
table.cart-table tbody tr.promotion.title td {
  padding-top: 20px;
  font-size: 18px;
}
table.cart-table tbody tr.promotion td {
  padding: 5px 22px;
}
table.cart-table tbody td {
  border-bottom: 0px;
  border: none;
  padding: 11px 22px;
  font-size: 16px;
  vertical-align: middle;
}
table.cart-table tbody .product-price,
table.cart-table tbody .product-subtotal,
table.cart-table tbody .product-quantity,
table.cart-table tbody .product-remove {
  text-align: right;
}
table.cart-table tbody .product-thumbnail {
  width: 110px;
}
table.cart-table tbody .product-name .name {
  font-size: 16px;
  color: #555;
  display: inline-block;
}
@media (max-width: 767px) {
  table.cart-table tbody .product-quantity {
    padding: 0px 22px;
    width: 100%;
    float: left;
    text-align: left;
  }
  table.cart-table tbody .product-quantity .product-title {
    line-height: 29px;
  }
}
table.cart-table tbody .product-remove a {
  color: #454545;
}
@media (max-width: 767px) {
  table.cart-table tbody .product-remove {
    position: absolute;
    top: 0;
    right: 0;
  }
}
@media (max-width: 767px) {
  table.cart-table tbody .product-price {
    display: block;
    padding-bottom: 0;
    text-align: left;
  }
  table.cart-table tbody .product-price > * {
    line-height: 29px;
  }
}
table.cart-table tbody .product-price .amount {
  display: block;
}
table.cart-table tbody .product-price .orgAmount {
  font-size: 15px;
  color: #b9b9b9;
  display: inline-block;
  text-decoration: line-through;
}
@media (max-width: 767px) {
  table.cart-table tbody .product-subtotal {
    float: left;
    width: 100%;
    padding-top: 0;
    text-align: left;
  }
  table.cart-table tbody .product-subtotal > * {
    line-height: 29px;
  }
}
table.cart-table tbody .product-subtotal .amount {
  display: inline-block;
}
table.cart-table tbody .product-title {
  display: inline-block;
  width: 90px;
  float: left;
}
@media (max-width: 767px) {
  table.cart-table tbody .quantity {
    float: left;
    display: block;
  }
  table.cart-table tbody .quantity .qty {
    display: table-cell;
    border: 2px solid #efefef;
    border-top: 0;
    border-bottom: 0;
    padding: 0;
    width: 50px;
    font-size: 18px;
    color: #1d1d1d;
    text-align: center;
    float: left;
    max-height: 25px;
  }
  table.cart-table tbody .quantity .quantity-minus,
  table.cart-table tbody .quantity .quantity-plus {
    height: 25px;
    line-height: 25px;
    float: left;
  }
}
table.checkout-review-order-table th,
table.checkout-review-order-table td {
  padding: 10px 5px;
  border: none;
  border-bottom: 1px solid #efefef;
}
table.checkout-review-order-table thead th {
  border-top: 1px solid #dfdfdf;
  border-bottom: 2px solid #eee;
  padding: 10px 5px;
  color: #474747;
  font-weight: bold;
}
table.order-history thead th {
  font-weight: bold;
  font-size: 16px;
  padding: 11px 15px;
}
table.order-history thead th.cell-address {
  width: 300px;
}
.header {
  background-color: rgba(0, 0, 0, 0);
  transition: background-color 1s ease;
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  z-index: 190;
  -webkit-transition: opacity 0.5s;
  -moz-transition: opacity 0.5s;
  -o-transition: opacity 0.5s;
  transition: opacity 0.5s;
}
.header .logo-thin {
  margin-top: 45px;
  display: none;
}
@media (max-width: 576px) {
  .header .logo-thin {
    width: 270px;
    margin-top: 45px;
  }
}
.header .logo-full {
  margin-top: 30px;
  display: none;
}
.header .menu {
  display: none;
  margin-left: 70px;
  margin-top: 110px;
  border: 0px solid red;
  z-index: 1;
  margin-right: 60px;
  margin-bottom: 40px;
  transition: margin-top 0.5s ease;
  padding-left: 10px;
  margin-top: 0;
  margin-left: 0;
}
.header .menu.sticky {
  background-color: #fff;
  box-shadow: 0px 0px 10px #d3d3d3;
  margin-top: 0px;
}
.header .menu.sticky ul {
  padding: 10px 10px 0px 10px;
}
.header .menu ul.icon {
  display: none;
}
.header .menu ul li {
  display: inline-block;
  font-size: 35px;
  vertical-align: top;
}
.header .menu ul li a {
  color: #000;
  overflow: hidden;
  padding: 0 4px;
  display: block;
  line-height: 1.2;
  font-size: 16px;
  text-align: left;
}
.header .menu ul li a.order {
  display: inline-block;
  top: 5px;
  color: #fff;
  border: 1px solid #fff;
  padding: 5px 20px;
}
.header .menu ul li + li {
  padding-left: 20px;
}
.header .menu.hamburger {
  z-index: 100;
}
.header .menu.hamburger a {
  padding: 0px 7px;
  border-radius: 6px;
  line-height: 1;
  font-size: 40px;
}
.header .menu.hamburger.clicked {
  box-shadow: none;
}
.header .menu.hamburger.clicked i:before {
  transition: 0.5s ease-in-out;
  content: "";
}
.header .menu.hamburger.clicked a {
  color: #fff !important;
  font-size: 40px;
}
@media (max-width: 1024px) {
  .header .menu.hamburger.clicked {
    margin-left: 30px;
    margin-top: 40px;
  }
}
@media (max-width: 576px) {
  .header .menu.hamburger.clicked {
    margin-left: 0px;
  }
}
.header .menu ul.icon {
  display: block;
}
.header .menu.hamburger {
  display: block;
  margin-top: 40px;
  margin-right: -20px;
  margin-bottom: 15px;
  margin-left: 110px;
}
@media (max-width: 1024px) {
  .header .menu.hamburger {
    margin-left: 30px;
  }
}
@media (max-width: 576px) {
  .header .menu.hamburger {
    margin-left: 0px;
  }
}
.header .menu:not(.hamburger) {
  display: none;
}
.header .menu.responsive {
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  padding-left: 135px;
  padding-top: 100px;
  background-color: #b89649;
  width: 40%;
  height: 100%;
  z-index: 10;
}
@media (max-width: 1024px) {
  .header .menu.responsive {
    padding-left: 55px;
    padding-top: 40px;
    width: 50%;
  }
}
@media (max-width: 576px) {
  .header .menu.responsive {
    padding-left: 30px;
    width: 100%;
  }
}
.header .menu.responsive img.logo {
  display: block;
  width: 150px;
  position: absolute;
  left: 20px;
  top: 20px;
}
.header .menu.responsive ul {
  display: inline-block;
  padding: 20px;
  width: 100%;
  z-index: 10;
  top: 60px;
  left: -20px;
}
.header .menu.responsive ul li + li {
  padding-left: 0px;
}
.header .menu.responsive ul li {
  display: block;
  text-align: center;
  padding: 10px 0px;
}
.header .menu.responsive ul li a {
  font-size: 22px !important;
}
.header.scrolled {
  z-index: 199;
  background-color: #0f0f0f;
}
.header.scrolled .menu {
  transition:
    margin-top 0.5s ease,
    visibility 0.5s ease;
}
@media screen and (max-width: 1320px) {
  .header .lang {
    margin-top: 20px !important;
  }
}
header#header {
  position: relative;
  z-index: 199;
}
@media (max-width: 991px) {
  header#header {
    display: none;
  }
}
header#header:not(.home) {
  position: relative;
  left: auto;
}
header#header .btnlogin {
  color: #03a7ff;
}
header#header .searchBox {
  width: 20%;
  position: absolute;
  left: 10px;
  top: 5px;
  z-index: 1;
}
header#header .sticky-bar #logo {
  margin-top: 20px;
  margin-bottom: 20px;
  text-align: center;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
@media (max-width: 1134px) {
  header#header .sticky-bar #logo {
    margin-right: 0px;
  }
}
@media (max-width: 1086px) {
  header#header .sticky-bar #logo {
    padding-right: 0px;
  }
}
header#header .sticky-bar #logo a {
  display: inline-block;
}
header#header .sticky-bar #logo a img {
  height: 45px;
}
header#header .sticky-bar #logo .retina-logo {
  display: none;
}
header#header .sticky-bar .group-control {
  padding-top: 40px;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
header#header .sticky-bar .group-control .text {
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  text-transform: uppercase;
}
header#header .sticky-bar .group-control > ul > li {
  vertical-align: middle;
}
header#header .sticky-bar.is_sticky {
  background-color: #fff;
  padding-bottom: 0px;
  box-shadow: 0 0 14px #ececec;
}
header#header .sticky-bar.is_sticky .group-control .text {
  color: #000;
}
header#header .sticky-bar.is_sticky .group-control .standard-logo {
  display: none !important;
}
header#header .sticky-bar.is_sticky .group-control .standard-logo img {
  max-height: 80px;
}
header#header .sticky-bar.is_sticky .group-control .retina-logo {
  display: block !important;
}
header#header .sticky-bar.is_sticky .group-control .retina-logo img {
  max-height: 80px;
}
header#header .sticky-bar.is_sticky #logo {
  padding-top: 0px;
  padding-bottom: 0px;
}
header#header .sticky-bar.is_sticky #logo .standard-logo {
  display: none;
}
header#header .sticky-bar.is_sticky #logo .standard-logo img {
  max-height: 80px;
}
header#header .sticky-bar.is_sticky #logo .retina-logo {
  display: block;
}
header#header .sticky-bar.is_sticky #logo .retina-logo img {
  max-height: 80px;
}
header#header .sticky-bar.is_sticky #primary-menu > ul > li {
  display: inline-block;
}
header#header .sticky-bar.is_sticky #primary-menu > ul > li > a {
  padding: 5px 15px;
}
header#header .sticky-bar.is_sticky #primary-menu > ul > li > a:hover {
  color: #534741;
}
header#header #primary-menu {
  float: left;
}
header#header #primary-menu > ul > li {
  display: inline-block;
}
header#header #primary-menu > ul > li > a {
  padding: 5px 15px;
  display: inline-block;
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
header#header #primary-menu > ul > li > a:hover {
  color: #534741;
}
header#header #primary-menu > ul > li:hover {
  background-color: #ff6100;
}
header#header #primary-menu > ul > li:hover a {
  color: #fff;
}
header#header #primary-menu > ul > li + li {
  border-left: 1px solid #fff;
}
header#header #primary-menu > ul li.has-children:hover .sub-menu {
  box-shadow: 0 0 10px #dadada;
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(-50%) translateY(0px);
  -ms-transform: translateX(-50%) translateY(0px);
  -o-transform: translateX(-50%) translateY(0px);
  -moz-transform: translateX(-50%) translateY(0px);
  transform: translateX(-50%) translateY(0px);
}
header#header #primary-menu > ul li.has-children > a:after {
  content: "";
  font-family: "Font Awesome 5 Free";
  position: absolute;
  right: 0px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
}
header#header #primary-menu > ul li.has-children .sub-menu {
  position: absolute;
  background-color: #fff;
  top: 100%;
  left: 50%;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  -webkit-transform: translateX(-50%) translateY(20px);
  -ms-transform: translateX(-50%) translateY(20px);
  -o-transform: translateX(-50%) translateY(20px);
  -moz-transform: translateX(-50%) translateY(20px);
  transform: translateX(-50%) translateY(20px);
  min-width: 200px;
  padding: 10px 0px;
  opacity: 0;
  visibility: hidden;
  opacity: 1 !important;
}
header#header #primary-menu > ul li.has-children .sub-menu > li {
  display: block;
}
header#header #primary-menu > ul li.has-children .sub-menu > li:hover {
  background-color: #03a7ff;
}
header#header #primary-menu > ul li.has-children .sub-menu > li:hover a {
  color: #fff;
}
header#header #primary-menu > ul li.has-children .sub-menu > li a {
  display: block;
  padding: 1px 15px;
  font-size: 16px;
  font-weight: bold;
  width: 100%;
  color: #2a371d;
}
@media (max-width: 991px) {
  header#resp-header {
    display: block;
    z-index: 2;
  }
}
header#resp-header .resp-header.is_sticky .group-control .standard-logo {
  display: none;
}
header#resp-header .resp-header.is_sticky .group-control .retina-logo {
  display: block;
}
header#resp-header
  .resp-header.is_sticky
  .group-control
  ul
  > li
  .header-icon
  span.text {
  color: #000;
}
header#resp-header .resp-header .search-dropdown a {
  cursor: pointer;
}
header#resp-header .resp-header .search-dropdown .searchBox {
  display: none;
  position: absolute;
  margin: 0;
  right: 0px;
  background-color: #fff;
  width: 300px;
  box-shadow: 0 0 10px #d7d7d7;
}
header#resp-header .group-control {
  right: 15px;
  top: 50%;
}
header.transparent-header {
  background-color: rgba(0, 0, 0, 0);
}
header.full-header .container {
  width: 100%;
  max-width: 1440px;
  padding: 0 30px;
}
header .header-top {
  background-color: #ff6100;
}
header .header-top .msg {
  color: #fff;
  margin: 0 auto;
  text-align: center;
  padding: 5px;
}
footer#desktop-footer .footer-top {
  color: #3c3b3b;
  line-height: 20px;
  padding: 30px 0;
  background-color: #eee;
}
footer#desktop-footer .footer-top .links a {
  color: #3c3b3b;
  padding: 0 20px;
  font-weight: bold;
}
footer#desktop-footer .footer-top .links a:first-child {
  padding-left: 0px;
}
footer#desktop-footer .footer-top .links a + a {
  border-left: 1px solid #979797;
}
footer#desktop-footer .footer-top .widget {
  margin-top: 50px;
}
footer#desktop-footer .footer-top .widget address {
  color: #3c3b3b;
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 30px;
}
footer#desktop-footer .footer-top .widget p {
  opacity: 0.8;
  color: #3c3b3b;
  line-height: 1.7;
  font-size: 14px;
}
footer#desktop-footer .footer-top .widget .footer-logo {
  display: block;
  margin-bottom: 30px;
}
footer#desktop-footer .footer-top .widget:first-child {
  margin-top: 0px;
}
footer#desktop-footer .footer-top .widget > h4 {
  margin-bottom: 25px;
  font-size: 14px;
}
footer#desktop-footer .footer-top .widget h5 {
  font-size: 14px;
  line-height: 1.5;
  color: #3c3b3b;
}
footer#desktop-footer .footer-top .widget.widget_links > ul {
  margin-top: -4px;
}
footer#desktop-footer .footer-top .widget.widget_links > ul li {
  padding: 4px;
}
footer#desktop-footer .footer-top .widget.widget_links > ul li a {
  display: inline-block;
  padding: 0 3px 0 12px;
  background: url("/images/widget-link-dark.png") left top no-repeat;
  color: #3c3b3b;
  font-size: 14px;
}
footer#desktop-footer .footer-top .widget.social-widget .social-icon {
  display: block;
  float: left;
  margin: 0 5px 5px 0;
  width: 40px;
  height: 40px;
  font-size: 20px;
  line-height: 38px !important;
  color: #555;
  text-shadow: none;
  border-radius: 3px;
  overflow: hidden;
  margin-right: 10px;
}
footer#desktop-footer
  .footer-top
  .widget.social-widget
  .social-widget-item
  small {
  display: block;
  margin-top: 3px;
  font-size: 10.5px;
  line-height: 15px;
  color: #3c3b3b;
}
footer#desktop-footer .footer-top #post-list-footer .post-item + .post-item {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px dashed #e5e5e5;
  border-top-color: rgba(255, 255, 255, 0.1019607843);
}
footer#desktop-footer .footer-top #post-list-footer .post-item .post-title a {
  color: #3c3b3b;
  font-size: 14px;
}
footer#desktop-footer .footer-top #post-list-footer .post-item .post-date {
  margin: 8px -10px 0 0;
}
footer#desktop-footer .footer-top #post-list-footer .post-item .post-date li {
  color: #3c3b3b;
}
footer#desktop-footer .footer-top #widget-subscribe-form {
  margin-top: 20px;
}
footer#desktop-footer .footer-top #widget-subscribe-form .input-group-addon {
  background-color: #b99f62;
  color: #3c3b3b;
  border-color: #b99f62;
}
footer#desktop-footer .footer-top #widget-subscribe-form input {
  color: #3c3b3b;
  background-color: #b99f62;
  border-color: #b99f62;
  height: 35px !important;
}
footer#desktop-footer .footer-top #widget-subscribe-form input::placeholder {
  color: #3c3b3b;
}
footer#desktop-footer .footer-top .footer-widgets-wrap {
  padding: 30px 0;
}
footer#desktop-footer .footer-bottom {
  padding: 10px 0;
  color: #fff;
  background-color: #77797d;
}
footer#desktop-footer .footer-bottom .copyright {
  color: #fff;
}
footer#desktop-footer .footer-bottom .copyright-links a {
  display: inline-block;
  margin: 0 3px;
  color: #3c3b3b;
}
footer#desktop-footer .footer-bottom .copyright-links a + a {
  padding-left: 16px;
}
footer#desktop-footer .footer-bottom .copyright-links a + a:before {
  content: "/";
  position: absolute;
  top: 0;
  left: 0;
}
footer#desktop-footer
  .footer-bottom
  .other-link
  .footer-social-media
  .social-icon {
  display: inline-block;
  font-size: 14px;
  color: #3c3b3b;
  height: 30px;
  width: 30px;
  -webkit-transition: all 0.1s ease-in-out 0s;
  -moz-transition: all 0.1s ease-in-out 0s;
  -o-transition: all 0.1s ease-in-out 0s;
  transition: all 0.1s ease-in-out 0s;
}
footer#desktop-footer
  .footer-bottom
  .other-link
  .footer-social-media
  .social-icon:hover {
  -webkit-transform: scale(1.2, 1.2);
  -ms-transform: scale(1.2, 1.2);
  -o-transform: scale(1.2, 1.2);
  -moz-transform: scale(1.2, 1.2);
  transform: scale(1.2, 1.2);
}
footer#desktop-footer .footer-bottom .other-link .footer-contact-info > div {
  color: #3c3b3b;
  display: inline-block;
}
footer#desktop-footer
  .footer-bottom
  .other-link
  .footer-contact-info
  > div
  + div {
  margin-left: 30px;
}
footer#desktop-footer .footer-widgets-item .footer-info {
  font-size: 14px;
}
footer#desktop-footer .footer-widgets-item .footer-info .info-item {
  line-height: 25px;
}
@media (max-width: 991px) {
  footer#desktop-footer .footer-widgets-item {
    margin-bottom: 30px;
  }
}
.owl-theme {
  overflow: hidden;
}
.owl-theme:hover .owl-nav [class*="owl-"] {
  visibility: visible;
  opacity: 1;
  padding: 0;
  margin: 0;
}
.owl-theme:hover .owl-nav .owl-prev {
  left: 0;
}
.owl-theme:hover .owl-nav .owl-next {
  right: 0;
}
.owl-nav {
  position: absolute;
  width: 100%;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  margin-top: 0px !important;
}
.owl-nav span {
  display: inline-block;
}
.owl-nav span img {
  width: 40px;
}
@media (max-width: 767px) {
  .owl-nav [class*="owl-"] {
    visibility: visible !important;
    opacity: 1 !important;
  }
  .owl-nav .owl-prev {
    left: 0px !important;
  }
  .owl-nav .owl-next {
    right: 0px !important;
  }
}
.owl-nav [class*="owl-"] {
  position: absolute;
  top: 50%;
  padding: 0 !important;
  margin: 0 !important;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0) !important;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
.owl-nav .owl-prev {
  left: -73px;
}
.owl-nav .owl-next {
  right: -73px;
}
.static-page-banner > div {
  min-height: 245px;
  background-size: cover;
  background-position: center center;
}
@media (max-width: 375px) {
  .products .product-item-grid {
    width: 100%;
  }
}
.related-product-list h1 {
  font-weight: bold;
  margin-bottom: 30px;
}
.product-item {
  background-image: url(/images/p-bg.png);
  background-size: 100% 100%;
  overflow: visible;
  vertical-align: middle;
  padding: 20px 20px;
}
.product-item .flash {
  position: absolute;
  top: 17px;
  left: 0px;
  z-index: 10;
  width: 100%;
}
.product-item .product-inner {
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  z-index: 1;
}
.product-item .product-inner .thumb {
  border-radius: 5px;
  box-shadow: 0px 0px 10px #d6d6d6 !important;
  background: #fff;
  text-align: center;
  overflow: hidden;
  padding: 10px 10px 10px 10px;
  margin-bottom: 10px;
}
.product-item .product-inner .thumb .product-image {
  display: inline;
  line-height: 280px;
  height: 280px;
}
.product-item .product-inner .thumb .product-image img {
  max-height: 280px;
  width: auto;
  margin: auto;
  vertical-align: middle;
}
.product-item .product-inner .info {
  text-align: left;
}
.product-item .product-inner .info h3 {
  line-height: 1;
  min-height: 36px;
}
.product-item .product-inner .info .product-name {
  display: block;
  color: #0845a2;
  font-size: 18px;
  font-weight: bold;
}
.product-item .product-inner .info .promote-price {
  display: inline-block;
  font-size: 15px;
  color: #ff6100;
  padding-bottom: 10px;
  font-weight: normal;
}
.product-item .product-inner .info .origin-price {
  display: inline-block;
  font-size: 12px;
  padding-bottom: 5px;
  color: #d25000;
  text-decoration: line-through;
  font-weight: normal;
}
.product-item:hover .group-buttons > a {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  -o-transform: scale(1, 1);
  -moz-transform: scale(1, 1);
  transform: scale(1, 1);
}
.product-item .group-buttons {
  position: absolute;
  left: 0;
  width: 100%;
  bottom: 10px;
  text-align: center;
  z-index: 3;
}
.product-item .group-buttons > a {
  border: none;
  padding: 0;
  width: 40px;
  height: 40px;
  font-size: 0;
  background-color: #fff;
  display: inline-block;
  line-height: 52px;
  border-radius: 0;
  vertical-align: middle;
  border: 1px solid #d6ccb7;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  -webkit-transform: scale(0, 1);
  -ms-transform: scale(0, 1);
  -o-transform: scale(0, 1);
  -moz-transform: scale(0, 1);
  transform: scale(0, 1);
  opacity: 0;
  visibility: hidden;
  font-size: 0;
  float: initial;
  color: #d6ccb7;
}
@media (max-width: 540px) {
  .product-item .group-buttons > a {
    width: 40px;
    height: 40px;
  }
}
.product-item .add_to_cart:before {
  content: "";
  font-family: "Linearicons-Free";
  font-size: 23px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
  left: 0px;
}
@media (max-width: 540px) {
  .product-item .add_to_cart:before {
    font-size: 19px;
  }
}
.product-item .added_to_cart:before {
  content: "";
  font-family: "FontAwesome";
  font-size: 1.1rem;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
  left: 0px;
}
@media (max-width: 540px) {
  .product-item .added_to_cart:before {
    font-size: 14px;
  }
}
.product-item .search_button:before {
  content: "";
  font-family: "Linearicons-Free";
  font-size: 1rem;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
  left: 0px;
}
@media (max-width: 540px) {
  .product-item .search_button:before {
    font-size: 16px;
  }
}
.product-item .add_to_wishlist:before {
  content: "";
  font-family: "FontAwesome";
  font-size: 1.1rem;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
  left: 0px;
}
@media (max-width: 540px) {
  .product-item .add_to_wishlist:before {
    font-size: 14px;
  }
}
.product-item .added_to_wishlist:before {
  content: "";
  font-family: "Linearicons-Free";
  font-size: 1rem;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
  left: 0px;
}
@media (max-width: 540px) {
  .product-item .added_to_wishlist:before {
    font-size: 16px;
  }
}
.product-single {
  margin-bottom: 25px;
}
@media (max-width: 767px) {
  .product-single .product-single-left {
    margin-bottom: 30px;
  }
}
.product-single .product-single-left .images {
  padding: 0px 0px;
}
.product-single .product-single-right .summary h1 {
  font-size: 24px;
  color: #0845a2;
  font-weight: bold;
  margin-bottom: 5px;
}
.product-single .product-single-right .summary .promote-price {
  font-size: 32px;
  color: #ff6100;
  margin-bottom: 20px;
  font-weight: bold;
}
.product-single .product-single-right .summary .origin-price {
  font-size: 18px;
  margin-bottom: 10px;
  color: #c1b192;
  text-decoration: line-through;
}
.product-single .product-single-right .summary .quantity {
  border: 2px solid #efefef;
  display: table;
  float: left;
  margin-bottom: 30px;
  margin-right: 35px;
}
.product-detail-page .product-desc {
  margin-bottom: 50px;
  padding: 15px 0px;
  background-color: #fff;
  line-height: 1.2;
}
.product-detail-page .product-desc h2 {
  font-weight: bold;
  color: #000;
}
.product-detail-page .product-desc p {
  font-size: 17px;
  color: #000;
}
.product-detail-page .product-desc li {
  background: url(/images/bullet.png) no-repeat;
  background-position: 5px 3px;
  padding: 2px 0px 2px 25px;
}
.cart-grid {
  border: 1px solid #03a7ff;
  border-top: 0px;
}
.cart-table-footer .coupon {
  padding: 25px 15px;
}
.cart-table-footer .coupon input {
  display: inline-block;
}
.cart-table-footer .cart-totals {
  margin-top: 30px;
  padding: 0 15px;
}
.cart-table-footer .cart-totals .form-title {
  margin-bottom: 15px;
  border-bottom: 1px solid #afafaf;
}
.cart-table-footer .cart-totals table tr {
  border-bottom: 0px;
}
.cart-table-footer .cart-totals table td {
  padding: 12px 0;
}
.cart-table-footer .cart-control {
  padding: 25px 15px;
}
#checkout-page .billing-fields {
  padding: 30px;
}
@media (max-width: 767px) {
  #checkout-page .billing-fields {
    margin-bottom: 30px;
  }
}
#checkout-page .billing-fields .form-title {
  margin-bottom: 15px;
}
#checkout-page .checkout-review-order {
  padding: 30px;
}
#checkout-page .checkout-review-order .form-title {
  margin-bottom: 15px;
}
#checkout-page .payment_methods [value^="paypal"] {
  top: 10px;
}
#checkout-page .payment_methods .font-bold {
  font-size: 16px;
  margin-bottom: 5px;
}
#checkout-page .payment_methods p {
  font-size: 13px;
  color: #555;
  line-height: 18px;
}
#checkout-page .payment_methods .paypal > div {
  display: inline-block;
  vertical-align: top;
}
#checkout-page .payment_methods .paypal .text {
  line-height: 43px;
}
#histroy-list-page .wrapper {
  padding: 20px 30px;
  border: 2px solid #ccc;
}
#histroy-list-page .wrapper .form-title {
  margin-bottom: 25px;
}
#history-detail-page .wrapper {
  padding: 20px 30px;
  border: 2px solid #ccc;
}
#history-detail-page .wrapper .form-title {
  margin-bottom: 25px;
}
.article-menu-list {
  background-color: #faea9d;
}
.article-menu-list > li + li {
  border-top: 1px solid #fff;
}
.article-menu-list > li a {
  font-size: 20px;
  display: block;
  color: #000;
  padding: 16px 18px;
}
.static-content-grid {
  padding: 25px 30px;
  background-color: #fff;
  margin-bottom: 70px;
}
.static-content-grid h1 {
  color: #7a0026;
  margin-bottom: 10px;
}
.static-content-grid img {
  margin-bottom: 15px;
}
.static-content-grid p {
  font-size: 17px;
  color: #000;
  margin-bottom: 25px;
  line-height: 26px;
}
.login-grid {
  background-color: #fff;
  padding: 20px 30px;
  border: 1px solid #ccc;
}
@media (max-width: 767px) {
  .login-grid {
    margin-bottom: 30px;
  }
}
.register-grid {
  background-color: #fff;
  padding: 20px 30px;
  border: 1px solid #ccc;
}
#home-page .latest-product {
  background-image: url("/images/home_hot_bg_02.png");
  background-repeat: no-repeat;
  background-size: cover;
}
#home-page section#product-grid .product-wrapper {
  display: block;
}
#home-page section#product-grid .product-wrapper img {
  width: 100%;
}
#home-page section#product-grid .product-name {
  background-color: rgba(255, 255, 255, 0.7);
  position: absolute;
  top: 30px;
  width: 100%;
  left: 0;
  z-index: 1;
  text-align: center;
  padding: 15px;
}
#home-page section#product-grid .product-name span {
  padding: 0 25px;
  display: inline-block;
  font-size: 25px;
  color: #f26522;
  line-height: 30px;
}
#home-page section#product-grid .product-name span:before {
  content: "";
  background-image: url("/images/icon-1.png");
  width: 18px;
  height: 20px;
  position: absolute;
  left: 0px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
}
#home-page section#product-grid .product-name span:after {
  content: "";
  background-image: url("/images/icon-1.png");
  width: 18px;
  height: 20px;
  position: absolute;
  right: 0px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
}
#home-page section#home-instagram-grid {
  padding-top: 20px;
  padding-bottom: 100px;
}
#home-page section#home-instagram-grid .instagram-post-list {
  font-size: 0px;
  margin-right: -10px;
}
#home-page section#home-instagram-grid .instagram-post-list .instagram-item {
  text-align: center;
  display: inline-block;
  width: 10%;
  max-height: 230px;
  overflow: hidden;
  padding-right: 10px;
  padding-bottom: 10px;
}
@media (max-width: 767px) {
  #home-page section#home-instagram-grid .instagram-post-list .instagram-item {
    width: 50%;
    margin-bottom: 10px;
    padding-bottom: 0px;
  }
}
#home-page section#home-instagram-grid .instagram-post-list .instagram-item a {
  display: inline-block;
}
@media (max-width: 767px) {
  #home-page section#home-lastest-product-grid .section-title-wrapper {
    width: 50%;
    margin: 0px auto;
    margin-bottom: 0px !important;
  }
}
#home-page section#video .video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}
#home-page section#video .video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#home-page .section-margin {
  margin-top: 25px;
  margin-bottom: 50px;
  padding-bottom: 30px;
}
#contact-page .container {
  max-width: 1200px;
}
#contact-page form button {
  margin-top: 30px;
}
#contact-page .shop-infromation {
  margin-top: 70px;
  margin-bottom: 70px;
}
#contact-page .shop-infromation .shop-info-grid {
  margin-bottom: 25px;
}
#contact-page .shop-infromation .shop-info-grid h2 {
  margin-bottom: 15px;
  text-transform: capitalize;
  font-weight: bold;
}
#contact-page .shop-infromation .shop-info-grid div,
#contact-page .shop-infromation .shop-info-grid p,
#contact-page .shop-infromation .shop-info-grid a {
  font-size: 15px;
  color: #a7a7a7;
  line-height: 23px;
}
#contact-page .shop-infromation .shop-info-grid address {
  font-size: 15px;
  color: #a7a7a7;
  line-height: 23px;
}
#contact-page .shop-infromation .block-social a {
  font-size: 20px;
}
#contact-page .shop-infromation .block-social a + a {
  margin-left: 15px;
}
#googleMap {
  height: 485px;
  margin-top: 50px;
  width: 100%;
}
#career-page .career-list .career-item {
  background-color: #fff;
  margin-bottom: 35px;
}
#career-page .career-list .career-item h2 {
  background-color: #f7941d;
  display: block;
  padding: 10px 30px;
  color: #fff;
}
#career-page .career-list .career-item h3 {
  margin-bottom: 10px;
}
#career-page .career-list .career-item .detail {
  padding: 10px 30px;
  padding-bottom: 25px;
}
section#home-blog-grid {
  padding-top: 95px;
  padding-bottom: 40px;
}
.blog-item a {
  display: block;
}
.blog-item figure {
  margin-bottom: 37px;
}
.blog-item .blog-detail .title {
  display: block;
  color: #232222;
  font-size: 14px;
  margin-bottom: 10px;
  font-weight: bold;
}
.blog-item .blog-detail .short-desc {
  color: #777;
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 30px;
}
.blog-item .blog-detail .date {
  color: #232222;
}
.blog-item .blog-detail .date time {
  color: #bfbfbf;
}
#blog-list-page .blog-item {
  margin-bottom: 30px;
}
#blog-list-page .blog-item .title {
  font-size: 16px;
}
#blog-list-page .blog-item .blog-detail p {
  color: #777 !important;
  font-size: 16px !important;
  line-height: 20px !important;
  margin-bottom: 15px !important;
}
#blog-detail-page h1 {
  margin-bottom: 15px;
}
#blog-detail-page .date {
  display: block;
  size: 18px;
  margin-bottom: 50px;
}
section#product-list .search-container {
  display: block;
  overflow: hidden;
  margin-bottom: 10px;
}
section#product-list .search-container input[type="text"] {
  width: 420px;
  font-size: 17px;
  border: 1px solid #ddd;
  display: inline;
}
section#product-list .search-container input[type="text"]:focus {
  outline: none;
}
section#product-list .search-container button {
  padding: 11px 17px;
  background: #ddd;
  font-size: 17px;
  height: 42px;
  border: none;
  cursor: pointer;
  top: 1px;
  left: -5px;
}
section#product-list .search-container button:hover {
  background: #ccc;
}
section#product-list .filter {
  padding-top: 10px;
  padding-left: 15px;
  padding-bottom: 5px;
  margin-bottom: 20px;
  background-color: rgba(214, 204, 183, 0.2509803922);
}
.product-detail {
  padding-top: 0px;
}
.product-detail .slider-producct-detail {
  border: 1px solid #ebebeb;
}
.product-detail .nav-tabs {
  border-bottom: 0px;
  margin: 0 auto;
  display: inline-block;
  bottom: -2px;
}
.product-detail .nav-tabs li + li {
  margin-left: 20px;
}
.product-detail .nav-tabs li a {
  background-color: #03a7ff;
  color: #fff;
  padding: 10px 40px;
}
.product-detail .tab-content {
  margin: 0 auto;
  display: block;
  padding-bottom: 60px;
}
ul.payment_methods .payment_method {
  background-color: #f2f2f2;
  width: 100%;
  line-height: 100%;
  padding: 5px 2px 1px 13px;
}
ul.payment_methods .payment_method label[for="paypal"]::before {
  top: 4px;
}
ul.payment_methods .payment_method label[for="paypal"]::after {
  top: 6px;
}
.body-l {
  font-size: 22px;
}
.body-s {
  font-size: 14px;
}
.body-xs {
  font-size: 12px;
}
#home .visit {
  margin-bottom: 120px;
}
.section-title-wrapper .section-title {
  color: #fff;
  background-color: #03a7ff;
  margin-bottom: 15px;
  font-weight: bold;
  font-size: 20px;
  text-transform: uppercase;
  display: inline-block;
  padding: 0px 15px;
  z-index: 1;
  line-height: 40px;
}
.section-title-wrapper .section-title:before {
  content: url(/images/header1_left.png);
  position: absolute;
  left: -14px;
}
.section-title-wrapper .section-title:after {
  content: url(/images/header1_right.png);
  position: absolute;
  right: -14px;
}
.section-title-wrapper .line {
  border-top: 1px solid #d6ccb7;
  width: 100%;
  display: block;
  top: -20px;
}
.static-page-content {
  padding-top: 40px;
}
.section-top-95 {
  padding-top: 95px;
}
.input-group .form-control,
.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group {
  z-index: 1;
}
.product-detail-page {
  padding-top: 70px;
}
.product-menu-heading {
  color: #000;
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: bold;
}
.standard-content {
  padding: 0px;
}
h1.product-page-title {
  font-size: 36px;
  font-weight: bold;
  color: #000;
  margin-bottom: 40px;
  text-transform: uppercase;
}
h1.article-page-title {
  font-size: 36px;
  font-weight: bold;
  color: #000;
  margin-bottom: 80px;
}
@media (max-width: 767px) {
  h1.article-page-title {
    font-size: 30px;
    margin-bottom: 40px;
  }
}
@media (max-width: 640px) {
  h1.article-page-title {
    font-size: 25px;
    margin-bottom: 20px;
  }
}
#checkout-page .checkout-review-order-table tr.discount .fa-trash,
#checkout-page .cart-table tr.discount .fa-trash,
#cart-page .checkout-review-order-table tr.discount .fa-trash,
#cart-page .cart-table tr.discount .fa-trash {
  color: #bd0000;
  cursor: pointer;
}
.slider {
  width: 100%;
}
.slider .no-opacity {
  opacity: 1;
}
.slick-slide {
  margin: 0px 0px;
}
.slick-slide img {
  width: 100%;
}
.slick-prev {
  left: 15px;
  z-index: 1;
}
.slick-next {
  right: 15px;
  z-index: 1;
}
.slick-prev:before,
.slick-next:before {
  color: #ff6100;
}
.slick-slide {
  transition: all ease-in-out 0.3s;
  opacity: 0.2;
}
.slick-active {
  opacity: 0.5;
}
.slick-current {
  opacity: 1;
}
/*# sourceMappingURL=yk.css.map */
