/* line 83, app/assets/stylesheets/mixin/_mixin.scss */
.navigation__menu--item ul.submenu li a::before,
.navigation__menu--item .sub__style li a::before {
  position: absolute;
  content: '';
}

/* line 87, app/assets/stylesheets/mixin/_mixin.scss */
.banner__area .video__area .video__area__overlay, .banner__area.is__home__five .banner__content::before, .banner__slider__image::before, .banner__slider__image {
  position: absolute;
  height: 100%;
  width: 100%;
  content: '';
  left: 0;
  top: 0;
}

/* line 107, app/assets/stylesheets/mixin/_mixin.scss */
.subtitle__icon::after, .subtitle__icon::before {
  transform: translate(0, 50%);
}

/* line 1, app/assets/stylesheets/default/_animation.scss */
.animated {
  -webkit-animation-duration: .8s;
  animation-duration: .8s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

/* line 1, app/assets/stylesheets/default/_animation.scss */
.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

/* line 1, app/assets/stylesheets/default/_animation.scss */
.animated.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

/* line 1, app/assets/stylesheets/default/_animation.scss */
.animated.flipOutX, .animated.flipOutY, .animated.bounceIn, .animated.bounceOut {
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
}

@-webkit-keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}

@keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}

/* line 1, app/assets/stylesheets/default/_animation.scss */
.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

@-webkit-keyframes flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}

@keyframes flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}

/* line 1, app/assets/stylesheets/default/_animation.scss */
.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}

@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

/* line 1, app/assets/stylesheets/default/_animation.scss */
.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

@-webkit-keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

/* line 1, app/assets/stylesheets/default/_animation.scss */
.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}

@-webkit-keyframes shake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}

@keyframes shake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}

/* line 1, app/assets/stylesheets/default/_animation.scss */
.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}

@-webkit-keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

/* line 1, app/assets/stylesheets/default/_animation.scss */
.headShake {
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: headShake;
  animation-name: headShake;
}

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

/* line 1, app/assets/stylesheets/default/_animation.scss */
.swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

/* line 1, app/assets/stylesheets/default/_animation.scss */
.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

@-webkit-keyframes wobble {
  from {
    -webkit-transform: none;
    transform: none;
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes wobble {
  from {
    -webkit-transform: none;
    transform: none;
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}

/* line 1, app/assets/stylesheets/default/_animation.scss */
.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes jello {
  from, 11.1%, to {
    -webkit-transform: none;
    transform: none;
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}

@keyframes jello {
  from, 11.1%, to {
    -webkit-transform: none;
    transform: none;
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}

/* line 1, app/assets/stylesheets/default/_animation.scss */
.jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  transform-origin: center;
}

@-webkit-keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

/* line 1, app/assets/stylesheets/default/_animation.scss */
.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}

/* line 1, app/assets/stylesheets/default/_animation.scss */
.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}

/* line 1, app/assets/stylesheets/default/_animation.scss */
.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}

/* line 1, app/assets/stylesheets/default/_animation.scss */
.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

/* line 1, app/assets/stylesheets/default/_animation.scss */
.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}

@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}

/* line 1, app/assets/stylesheets/default/_animation.scss */
.bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

/* line 1, app/assets/stylesheets/default/_animation.scss */
.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

/* line 1, app/assets/stylesheets/default/_animation.scss */
.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

/* line 1, app/assets/stylesheets/default/_animation.scss */
.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

/* line 1, app/assets/stylesheets/default/_animation.scss */
.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* line 1, app/assets/stylesheets/default/_animation.scss */
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -30%, 0);
    transform: translate3d(0, -30%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -30%, 0);
    transform: translate3d(0, -30%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

/* line 1, app/assets/stylesheets/default/_animation.scss */
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

/* line 1, app/assets/stylesheets/default/_animation.scss */
.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-10%, 0, 0);
    transform: translate3d(-10%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-10%, 0, 0);
    transform: translate3d(-10%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

/* line 1, app/assets/stylesheets/default/_animation.scss */
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

/* line 1, app/assets/stylesheets/default/_animation.scss */
.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(10%, 0, 0);
    transform: translate3d(10%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(10%, 0, 0);
    transform: translate3d(10%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

/* line 1, app/assets/stylesheets/default/_animation.scss */
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

/* line 1, app/assets/stylesheets/default/_animation.scss */
.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 30%, 0);
    transform: translate3d(0, 30%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 30%, 0);
    transform: translate3d(0, 30%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

/* line 1, app/assets/stylesheets/default/_animation.scss */
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

/* line 1, app/assets/stylesheets/default/_animation.scss */
.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

/* line 1, app/assets/stylesheets/default/_animation.scss */
.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 30%, 0);
    transform: translate3d(0, 30%, 0);
  }
}

@keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 30%, 0);
    transform: translate3d(0, 30%, 0);
  }
}

/* line 1, app/assets/stylesheets/default/_animation.scss */
.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

/* line 1, app/assets/stylesheets/default/_animation.scss */
.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-10%, 0, 0);
    transform: translate3d(-10%, 0, 0);
  }
}

@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-10%, 0, 0);
    transform: translate3d(-10%, 0, 0);
  }
}

/* line 1, app/assets/stylesheets/default/_animation.scss */
.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

/* line 1, app/assets/stylesheets/default/_animation.scss */
.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(10%, 0, 0);
    transform: translate3d(10%, 0, 0);
  }
}

@keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(10%, 0, 0);
    transform: translate3d(10%, 0, 0);
  }
}

/* line 1, app/assets/stylesheets/default/_animation.scss */
.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

/* line 1, app/assets/stylesheets/default/_animation.scss */
.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -30%, 0);
    transform: translate3d(0, -30%, 0);
  }
}

@keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -30%, 0);
    transform: translate3d(0, -30%, 0);
  }
}

/* line 1, app/assets/stylesheets/default/_animation.scss */
.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

/* line 1, app/assets/stylesheets/default/_animation.scss */
.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

@-webkit-keyframes flip {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

@keyframes flip {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

/* line 1, app/assets/stylesheets/default/_animation.scss */
.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}

@-webkit-keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

@keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

/* line 1, app/assets/stylesheets/default/_animation.scss */
.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}

@-webkit-keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

@keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

/* line 1, app/assets/stylesheets/default/_animation.scss */
.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

@keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

/* line 1, app/assets/stylesheets/default/_animation.scss */
.flipOutX {
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}

@keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}

/* line 1, app/assets/stylesheets/default/_animation.scss */
.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}

@-webkit-keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(10%, 0, 0) skewX(-30deg);
    transform: translate3d(10%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(10%, 0, 0) skewX(-30deg);
    transform: translate3d(10%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

/* line 1, app/assets/stylesheets/default/_animation.scss */
.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(10%, 0, 0) skewX(30deg);
    transform: translate3d(10%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}

@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(10%, 0, 0) skewX(30deg);
    transform: translate3d(10%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}

/* line 1, app/assets/stylesheets/default/_animation.scss */
.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

@-webkit-keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

/* line 1, app/assets/stylesheets/default/_animation.scss */
.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}

@-webkit-keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

/* line 1, app/assets/stylesheets/default/_animation.scss */
.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

/* line 1, app/assets/stylesheets/default/_animation.scss */
.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

/* line 1, app/assets/stylesheets/default/_animation.scss */
.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

/* line 1, app/assets/stylesheets/default/_animation.scss */
.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}

@keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}

/* line 1, app/assets/stylesheets/default/_animation.scss */
.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}

@-webkit-keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}

/* line 1, app/assets/stylesheets/default/_animation.scss */
.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

/* line 1, app/assets/stylesheets/default/_animation.scss */
.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

/* line 1, app/assets/stylesheets/default/_animation.scss */
.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}

/* line 1, app/assets/stylesheets/default/_animation.scss */
.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}

@-webkit-keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}

@keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}

/* line 1, app/assets/stylesheets/default/_animation.scss */
.hinge {
  -webkit-animation-name: hinge;
  animation-name: hinge;
}

@-webkit-keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-10%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-10%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-10%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-10%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

/* line 1, app/assets/stylesheets/default/_animation.scss */
.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

@-webkit-keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}

@keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}

/* line 1, app/assets/stylesheets/default/_animation.scss */
.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}

@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}

/* line 1, app/assets/stylesheets/default/_animation.scss */
.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

@-webkit-keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

/* line 1, app/assets/stylesheets/default/_animation.scss */
.zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}

@-webkit-keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

/* line 1, app/assets/stylesheets/default/_animation.scss */
.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}

@-webkit-keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

/* line 1, app/assets/stylesheets/default/_animation.scss */
.zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}

@-webkit-keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

/* line 1, app/assets/stylesheets/default/_animation.scss */
.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}

@-webkit-keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}

@keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}

/* line 1, app/assets/stylesheets/default/_animation.scss */
.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

/* line 1, app/assets/stylesheets/default/_animation.scss */
.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
}

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}

/* line 1, app/assets/stylesheets/default/_animation.scss */
.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
}

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}

/* line 1, app/assets/stylesheets/default/_animation.scss */
.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
}

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

/* line 1, app/assets/stylesheets/default/_animation.scss */
.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
}

@-webkit-keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -30%, 0);
    transform: translate3d(0, -30%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -30%, 0);
    transform: translate3d(0, -30%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

/* line 1, app/assets/stylesheets/default/_animation.scss */
.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-10%, 0, 0);
    transform: translate3d(-10%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-10%, 0, 0);
    transform: translate3d(-10%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

/* line 1, app/assets/stylesheets/default/_animation.scss */
.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(10%, 0, 0);
    transform: translate3d(10%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInRight {
  from {
    -webkit-transform: translate3d(10%, 0, 0);
    transform: translate3d(10%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

/* line 1, app/assets/stylesheets/default/_animation.scss */
.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

@-webkit-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 30%, 0);
    transform: translate3d(0, 30%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 30%, 0);
    transform: translate3d(0, 30%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

/* line 1, app/assets/stylesheets/default/_animation.scss */
.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

@-webkit-keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 30%, 0);
    transform: translate3d(0, 30%, 0);
  }
}

@keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 30%, 0);
    transform: translate3d(0, 30%, 0);
  }
}

/* line 1, app/assets/stylesheets/default/_animation.scss */
.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}

@-webkit-keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-10%, 0, 0);
    transform: translate3d(-10%, 0, 0);
  }
}

@keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-10%, 0, 0);
    transform: translate3d(-10%, 0, 0);
  }
}

/* line 1, app/assets/stylesheets/default/_animation.scss */
.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(10%, 0, 0);
    transform: translate3d(10%, 0, 0);
  }
}

@keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(10%, 0, 0);
    transform: translate3d(10%, 0, 0);
  }
}

/* line 1, app/assets/stylesheets/default/_animation.scss */
.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -30%, 0);
    transform: translate3d(0, -30%, 0);
  }
}

@keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -30%, 0);
    transform: translate3d(0, -30%, 0);
  }
}

/* line 1, app/assets/stylesheets/default/_animation.scss */
.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

/* line 1, app/assets/stylesheets/default/_variables.scss */
:root {
  /* Text Color */
  --rts-para: #65676B;
  --rts-heading: #000834;
  --rts-black: #000000;
  --rts-white: #FFFFFF;
  --rts-gray: #F1F1F1;
  /* Background Color */
  --btn-1: #AB8A62;
  --heading-color: #AB8A62;
  --rts-border: rgba(125, 128, 135, 0.3);
  --transparent: transparent;
  --transition: all .4s ease;
  --color-success: #26CF4B;
  --color-danger: #FF0003;
  --color-warning: #FF8F3C;
  --color-info: #1BA2DB;
  --color-facebook: #3B5997;
  --color-twitter: #1BA1F2;
  --color-youtube: #ED4141;
  --color-linkedin: #0077B5;
  --color-pinterest: #E60022;
  --color-instagram: #C231A1;
  --color-vimeo: #00ADEF;
  --color-twitch: #6441A3;
  --color-discord: #7289da;
  /* typhography */
  --glida: "Gilda Display", serif;
  --jost: "Jost", sans-serif;
  --h1: 80px;
  --h2: 60px;
  --h3: 48px;
  --h4: 40px;
  --h5: 32px;
  --h6: 24px;
  --size-20: 20px;
  --size-18: 18px;
  --p: 16px;
  --p-sm: 16px;
  --p-xs: 14px;
}

/* line 3, app/assets/stylesheets/default/_loader.scss */
.loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
}

/* line 11, app/assets/stylesheets/default/_loader.scss */
.loader-wrapper .loader-section {
  position: fixed;
  top: 0;
  background: var(--rts-white);
  width: 50%;
  height: 100%;
  z-index: 1000;
}

/* line 21, app/assets/stylesheets/default/_loader.scss */
.loader-wrapper .loader-section.section-left {
  left: 0;
}

/* line 25, app/assets/stylesheets/default/_loader.scss */
.loader-wrapper .loader-section.section-right {
  right: 0;
}

/* Loaded Styles */
/* line 30, app/assets/stylesheets/default/_loader.scss */
.loaded .loader-wrapper .loader-section.section-left {
  transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  opacity: 0;
}

/* line 36, app/assets/stylesheets/default/_loader.scss */
.loaded .loader-wrapper .loader-section.section-right {
  transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  opacity: 0;
}

/* line 42, app/assets/stylesheets/default/_loader.scss */
.loaded .loader {
  opacity: 0;
  transition: all 0.3s ease-out;
}

/* line 47, app/assets/stylesheets/default/_loader.scss */
.loaded .loader-wrapper {
  visibility: hidden;
  transform: translateY(-100%);
  transition: all .3s 1s ease-out;
}

/* line 53, app/assets/stylesheets/default/_loader.scss */
.loader:after {
  content: "";
  position: absolute;
  top: 14px;
  left: 14px;
  right: 14px;
  bottom: 14px;
  border: 4px solid transparent;
  border-top-color: var(--rts-primary);
  border-right-color: var(--rts-primary);
  border-bottom-color: var(--rts-primary);
  border-radius: 100%;
  -webkit-animation: spin 1.5s linear infinite;
  animation: spin 1.5s linear infinite;
}

/* line 69, app/assets/stylesheets/default/_loader.scss */
.loader {
  display: block;
  position: relative;
  top: 50%;
  left: 50%;
  width: 70px;
  height: 70px;
  z-index: 1001;
  transform: translate(-50%, -50%);
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/*-----------------
    Typography
-------------------*/
/* line 5, app/assets/stylesheets/default/_typography.scss */
html, body {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}

/* line 10, app/assets/stylesheets/default/_typography.scss */
a, a:hover, a:focus {
  text-decoration: none;
}

/* line 13, app/assets/stylesheets/default/_typography.scss */
.font-xs {
  font-size: var(--p-xs);
}

/* line 16, app/assets/stylesheets/default/_typography.scss */
.font-sm {
  font-size: 18px;
}

/* line 19, app/assets/stylesheets/default/_typography.scss */
.rts__white {
  color: var(--rts-white);
}

/* line 22, app/assets/stylesheets/default/_typography.scss */
.text-gray {
  color: var(--rts-gray);
}

/* line 25, app/assets/stylesheets/default/_typography.scss */
h1, .h1, .heading-1 {
  font-size: var(--h1);
  line-height: 90px;
}

@media screen and (max-width: 992px) {
  /* line 25, app/assets/stylesheets/default/_typography.scss */
  h1, .h1, .heading-1 {
    font-size: 70px;
    line-height: 80px;
  }
}

/* line 34, app/assets/stylesheets/default/_typography.scss */
h2, .h2, .heading-2 {
  font-size: var(--h2);
  line-height: 70px;
}

@media screen and (max-width: 1200px) {
  /* line 34, app/assets/stylesheets/default/_typography.scss */
  h2, .h2, .heading-2 {
    font-size: 50px;
    line-height: 60px;
  }
}

@media screen and (max-width: 992px) {
  /* line 34, app/assets/stylesheets/default/_typography.scss */
  h2, .h2, .heading-2 {
    font-size: 48px;
    line-height: 58px;
  }
}

@media screen and (max-width: 768px) {
  /* line 34, app/assets/stylesheets/default/_typography.scss */
  h2, .h2, .heading-2 {
    font-size: 40px;
    line-height: 50px;
  }
}

@media screen and (max-width: 576px) {
  /* line 34, app/assets/stylesheets/default/_typography.scss */
  h2, .h2, .heading-2 {
    font-size: 35px;
    line-height: 45px;
  }
}

/* line 56, app/assets/stylesheets/default/_typography.scss */
h3, .h3, .heading-3 {
  font-size: var(--h3);
  line-height: 58px;
}

@media screen and (max-width: 1400px) {
  /* line 56, app/assets/stylesheets/default/_typography.scss */
  h3, .h3, .heading-3 {
    font-size: 40px;
    line-height: 50px;
  }
}

@media screen and (max-width: 992px) {
  /* line 56, app/assets/stylesheets/default/_typography.scss */
  h3, .h3, .heading-3 {
    font-size: 40px;
    line-height: 50px;
  }
}

@media screen and (max-width: 768px) {
  /* line 56, app/assets/stylesheets/default/_typography.scss */
  h3, .h3, .heading-3 {
    font-size: 30px;
    line-height: 40px;
  }
}

@media screen and (max-width: 576px) {
  /* line 56, app/assets/stylesheets/default/_typography.scss */
  h3, .h3, .heading-3 {
    font-size: 25px;
    line-height: 35px;
  }
}

/* line 76, app/assets/stylesheets/default/_typography.scss */
h4, .h4, .heading-4 {
  font-size: var(--h4);
  line-height: 50px;
}

@media screen and (max-width: 992px) {
  /* line 76, app/assets/stylesheets/default/_typography.scss */
  h4, .h4, .heading-4 {
    font-size: 30px;
    line-height: 40px;
  }
}

/* line 85, app/assets/stylesheets/default/_typography.scss */
h5, .h5, .heading-5 {
  font-size: var(--h5);
  line-height: 42px;
}

@media screen and (max-width: 1200px) {
  /* line 85, app/assets/stylesheets/default/_typography.scss */
  h5, .h5, .heading-5 {
    font-size: 30px;
    line-height: 40px;
  }
}

@media screen and (max-width: 992px) {
  /* line 85, app/assets/stylesheets/default/_typography.scss */
  h5, .h5, .heading-5 {
    font-size: 20px;
    line-height: 30px;
  }
}

/* line 98, app/assets/stylesheets/default/_typography.scss */
h6, .h6, .heading-6 {
  font-size: var(--h6);
  line-height: 30px;
}

@media screen and (max-width: 1400px) {
  /* line 98, app/assets/stylesheets/default/_typography.scss */
  h6, .h6, .heading-6 {
    font-size: 20px;
  }
}

@media screen and (max-width: 576px) {
  /* line 98, app/assets/stylesheets/default/_typography.scss */
  h6, .h6, .heading-6 {
    font-size: 20px;
    line-height: 30px;
  }
}

/* line 110, app/assets/stylesheets/default/_typography.scss */
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6, .heading {
  font-weight: 400;
  font-family: var(--glida);
}

/* line 115, app/assets/stylesheets/default/_typography.scss */
p {
  font-size: var(--p);
}

/* line 117, app/assets/stylesheets/default/_typography.scss */
p:last-child {
  margin-bottom: 0;
}

/* line 121, app/assets/stylesheets/default/_typography.scss */
.font-20 {
  font-size: 20px;
}

@media screen and (max-width: 576px) {
  /* line 121, app/assets/stylesheets/default/_typography.scss */
  .font-20 {
    font-size: 18px;
  }
}

/* line 128, app/assets/stylesheets/default/_typography.scss */
.list-style-dot li {
  list-style: none;
  padding-left: 30px;
  margin-bottom: 15px;
  font-weight: 500;
  position: relative;
}

/* line 134, app/assets/stylesheets/default/_typography.scss */
.list-style-dot li::before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
  height: 6px;
  width: 6px;
  border-radius: 50%;
  background-color: var(--rts-button-1);
  content: '';
}

/* line 4, app/assets/stylesheets/components/_nav.scss */
.navigation__menu ul {
  display: flex;
  max-width: max-content;
  position: relative;
  padding: 0;
  margin: 0;
}

/* line 12, app/assets/stylesheets/components/_nav.scss */
.navigation__menu--item {
  position: relative;
  margin: 0 20px;
}

@media screen and (max-width: 1400px) {
  /* line 12, app/assets/stylesheets/components/_nav.scss */
  .navigation__menu--item {
    margin: 0 25px;
  }
}

@media screen and (max-width: 1300px) and (min-width: 1200px) {
  /* line 12, app/assets/stylesheets/components/_nav.scss */
  .navigation__menu--item {
    margin: 0 15px;
  }
}

@media screen and (max-width: 1200px) {
  /* line 12, app/assets/stylesheets/components/_nav.scss */
  .navigation__menu--item {
    margin: 0 14px;
  }
}

/* line 28, app/assets/stylesheets/components/_nav.scss */
.navigation__menu--item:last-child {
  margin-right: 0;
}

/* line 31, app/assets/stylesheets/components/_nav.scss */
.navigation__menu--item:last-child::after {
  display: none;
}

/* line 36, app/assets/stylesheets/components/_nav.scss */
.navigation__menu--item:first-child {
  margin-left: 0;
}

/* line 40, app/assets/stylesheets/components/_nav.scss */
.navigation__menu--item:hover > a {
  color: var(--btn-1) !important;
}

/* line 45, app/assets/stylesheets/components/_nav.scss */
.navigation__menu--item__link {
  position: relative;
  font-size: 16px;
  text-transform: capitalize;
  padding-top: 24px;
  padding-bottom: 30px;
  font-weight: 400;
  display: block;
  color: var(--rts-para);
  transition: padding 0.3s ease;
  transition: var(--transition);
}

/* line 60, app/assets/stylesheets/components/_nav.scss */
.navigation__menu--item.has-child:hover ul.submenu {
  opacity: 1;
  visibility: visible;
  transform: scaleY(1);
}

/* line 67, app/assets/stylesheets/components/_nav.scss */
.navigation__menu--item.has-child:hover ul.submenu li.has-child:hover ul {
  opacity: 1;
  visibility: visible;
  transform: scaleY(1);
}

/* line 78, app/assets/stylesheets/components/_nav.scss */
.navigation__menu--item.has-arrow {
  position: relative;
}

/* line 81, app/assets/stylesheets/components/_nav.scss */
.navigation__menu--item.has-arrow::before {
  position: absolute;
  content: "\f122";
  font-family: flaticon_bokinn !important;
  top: 48%;
  right: -15px;
  transform: translateY(-50%);
  color: var(--rts-heading);
  font-size: 14px;
  transition: var(--transition);
}

/* line 94, app/assets/stylesheets/components/_nav.scss */
.navigation__menu--item.has-arrow:hover::before {
  content: "\f121";
  font-family: flaticon_bokinn !important;
  transition: var(--transition);
  color: var(--rts-button-1);
}

/* line 103, app/assets/stylesheets/components/_nav.scss */
.navigation__menu--item ul.submenu,
.navigation__menu--item .sub__style {
  position: absolute;
  top: 100%;
  min-width: 230px;
  background: var(--rts-white);
  z-index: 1024;
  display: inline-block;
  opacity: 0;
  padding: 20px 0 30px 0;
  transform: scaleY(0);
  transform-origin: top center;
  visibility: hidden;
  transition: var(--transition);
  left: 0;
  box-shadow: 0 36px 35px rgba(0, 0, 0, 0.08);
}

/* line 120, app/assets/stylesheets/components/_nav.scss */
.navigation__menu--item ul.submenu li,
.navigation__menu--item .sub__style li {
  position: relative;
  display: block;
  padding: 0 30px;
}

/* line 125, app/assets/stylesheets/components/_nav.scss */
.navigation__menu--item ul.submenu li:last-child,
.navigation__menu--item .sub__style li:last-child {
  margin-bottom: 0;
}

/* line 129, app/assets/stylesheets/components/_nav.scss */
.navigation__menu--item ul.submenu li:hover > a,
.navigation__menu--item .sub__style li:hover > a {
  color: var(--heading-color);
  transition: var(--transition);
}

/* line 133, app/assets/stylesheets/components/_nav.scss */
.navigation__menu--item ul.submenu li:hover > a::before,
.navigation__menu--item .sub__style li:hover > a::before {
  width: 80%;
}

/* line 138, app/assets/stylesheets/components/_nav.scss */
.navigation__menu--item ul.submenu li:not(:last-child),
.navigation__menu--item .sub__style li:not(:last-child) {
  margin: 0 0 10px;
}

/* line 142, app/assets/stylesheets/components/_nav.scss */
.navigation__menu--item ul.submenu li.has-arrow,
.navigation__menu--item .sub__style li.has-arrow {
  position: relative;
}

/* line 145, app/assets/stylesheets/components/_nav.scss */
.navigation__menu--item ul.submenu li.has-arrow::before,
.navigation__menu--item .sub__style li.has-arrow::before {
  position: absolute;
  content: "\f121";
  font-family: flaticon_bokinn !important;
  top: 50%;
  right: 25px;
  transform: translateY(-50%);
  color: var(--rts-heading);
  font-size: 14px;
  transition: var(--transition);
}

/* line 158, app/assets/stylesheets/components/_nav.scss */
.navigation__menu--item ul.submenu li.has-arrow:hover::before,
.navigation__menu--item .sub__style li.has-arrow:hover::before {
  content: "\f122";
  font-family: flaticon_bokinn !important;
  transition: var(--transition);
}

/* line 166, app/assets/stylesheets/components/_nav.scss */
.navigation__menu--item ul.submenu li a,
.navigation__menu--item .sub__style li a {
  padding: 0;
  font-size: 15px;
  text-transform: capitalize;
  font-weight: 400;
  position: relative;
  color: var(--rts-heading);
}

/* line 174, app/assets/stylesheets/components/_nav.scss */
.navigation__menu--item ul.submenu li a::before,
.navigation__menu--item .sub__style li a::before {
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--heading-color);
  transition: var(--transition);
}

/* line 185, app/assets/stylesheets/components/_nav.scss */
.navigation__menu--item ul.submenu li a:hover::before,
.navigation__menu--item .sub__style li a:hover::before {
  width: 100%;
}

/* line 191, app/assets/stylesheets/components/_nav.scss */
.navigation__menu--item ul.submenu li ul,
.navigation__menu--item .sub__style li ul {
  top: 0;
  position: absolute;
  left: 100%;
  visibility: hidden;
  transform: scaleY(0);
  transform-origin: top center;
  opacity: 0;
  transition: var(--transition);
}

/* line 208, app/assets/stylesheets/components/_nav.scss */
.header__sticky {
  position: relative;
  top: 0;
  display: block;
  width: 100%;
  box-shadow: none;
  background: transparent;
  z-index: 999;
  margin: auto;
  align-items: center;
  left: 0;
  border-radius: 0;
  transition: all 0.5s ease-in-out;
  top: 0;
  transform: translateY(0);
}

/* line 224, app/assets/stylesheets/components/_nav.scss */
.header__sticky.fixed {
  position: fixed !important;
  box-shadow: 0px 7px 18px #1810100d;
  background: var(--rts-white);
}

/* line 237, app/assets/stylesheets/components/_nav.scss */
.main__header.is__home__three .navigation .navigation__menu--item.has-arrow::before {
  color: var(--rts-white);
}

/* line 241, app/assets/stylesheets/components/_nav.scss */
.main__header.is__home__three .navigation .navigation__menu--item.has-arrow:hover::before {
  color: var(--btn-1);
}

/* line 247, app/assets/stylesheets/components/_nav.scss */
.main__header.is__home__three .navigation .navigation__menu--item__link {
  color: var(--rts-white);
}

/* line 260, app/assets/stylesheets/components/_nav.scss */
.navigation__menu--item.has-child .has__mega__menu {
  position: absolute;
  width: 1000px;
  background-color: var(--rts-white);
  padding: 30px;
  opacity: 0;
  visibility: hidden;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  transition: var(--transition);
  z-index: 1024;
  top: 100%;
  display: none;
}

@media screen and (max-width: 1200px) {
  /* line 260, app/assets/stylesheets/components/_nav.scss */
  .navigation__menu--item.has-child .has__mega__menu {
    width: 940px;
  }
}

/* line 275, app/assets/stylesheets/components/_nav.scss */
.navigation__menu--item.has-child .has__mega__menu .menu__item {
  text-align: center;
  overflow: hidden;
}

/* line 278, app/assets/stylesheets/components/_nav.scss */
.navigation__menu--item.has-child .has__mega__menu .menu__item a {
  display: block;
  overflow: hidden;
}

/* line 281, app/assets/stylesheets/components/_nav.scss */
.navigation__menu--item.has-child .has__mega__menu .menu__item a img {
  border-radius: 4px;
  width: 100%;
  transition: var(--transition);
}

/* line 286, app/assets/stylesheets/components/_nav.scss */
.navigation__menu--item.has-child .has__mega__menu .menu__item a span {
  display: block;
  margin-top: 15px;
  color: var(--rts-heading);
  transition: var(--transition);
}

/* line 294, app/assets/stylesheets/components/_nav.scss */
.navigation__menu--item.has-child .has__mega__menu .menu__item:hover span {
  text-decoration: underline;
}

/* line 301, app/assets/stylesheets/components/_nav.scss */
.navigation__menu--item.has-child:hover .has__mega__menu {
  display: block;
  opacity: 1;
  visibility: visible;
}

/* line 2, app/assets/stylesheets/components/_button.scss */
.theme-btn {
  pointer-events: auto;
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 8px 20px;
  font-family: inherit;
  font-size: 16px;
  position: relative;
  overflow: hidden;
}

/* line 13, app/assets/stylesheets/components/_button.scss */
.theme-btn::before, .theme-btn::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* line 21, app/assets/stylesheets/components/_button.scss */
.theme-btn.border {
  border: 0.5px solid rgba(101, 103, 107, 0.3) !important;
  transition: var(--transition);
}

/* line 24, app/assets/stylesheets/components/_button.scss */
.theme-btn.border span {
  color: var(--rts-para);
  mix-blend-mode: normal;
}

/* line 28, app/assets/stylesheets/components/_button.scss */
.theme-btn.border:hover {
  border-color: var(--btn-1) !important;
}

/* line 32, app/assets/stylesheets/components/_button.scss */
.theme-btn.fill {
  background: var(--btn-1);
  border: 0.5px solid rgba(255, 255, 255, 0.4);
  color: var(--rts-white);
  transition: var(--transition);
}

/* line 37, app/assets/stylesheets/components/_button.scss */
.theme-btn.fill:hover {
  color: var(--rts-white);
  border-color: var(--btn-1);
}

/* line 40, app/assets/stylesheets/components/_button.scss */
.theme-btn.fill:hover span {
  color: var(--rts-white);
  mix-blend-mode: normal;
}

/* line 46, app/assets/stylesheets/components/_button.scss */
.theme-btn.sm-btn {
  padding: 5px 20px;
}

@media screen and (max-width: 1200px) {
  /* line 46, app/assets/stylesheets/components/_button.scss */
  .theme-btn.sm-btn {
    padding: 5px 10px;
  }
}

/* line 52, app/assets/stylesheets/components/_button.scss */
.theme-btn.no-border {
  border: none;
}

/* line 56, app/assets/stylesheets/components/_button.scss */
.theme-btn.border:hover {
  border-color: var(--btn-1);
}

/* line 59, app/assets/stylesheets/components/_button.scss */
.theme-btn.fill:hover {
  background: var(--btn-1);
  color: var(--rts-white);
}

/* line 65, app/assets/stylesheets/components/_button.scss */
.theme-btn.menu__btn img {
  filter: invert(1);
}

/* line 1, app/assets/stylesheets/components/_swiper-nav.scss */
.slider-button-next,
.slider-button-prev {
  position: absolute;
  top: 50%;
  width: auto;
  height: auto;
  margin-top: calc(0px - (var(--swiper-navigation-size)/ 2));
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

/* line 16, app/assets/stylesheets/components/_swiper-nav.scss */
.slider-button-prev,
.slider-rtl .slider-button-next {
  left: 10px;
  right: auto;
}

/* line 21, app/assets/stylesheets/components/_swiper-nav.scss */
.slider-button-prev svg path,
.slider-rtl .slider-button-next svg path {
  transition: var(--transition);
}

/* line 26, app/assets/stylesheets/components/_swiper-nav.scss */
.slider-button-prev:hover svg path,
.slider-rtl .slider-button-next:hover svg path {
  fill: var(--rts-heading);
}

/* line 32, app/assets/stylesheets/components/_swiper-nav.scss */
.slider-button-next,
.slider-rtl .slider-button-prev {
  right: 10px;
  left: auto;
}

/* line 37, app/assets/stylesheets/components/_swiper-nav.scss */
.slider-button-next svg path,
.slider-rtl .slider-button-prev svg path {
  transition: var(--transition);
}

/* line 42, app/assets/stylesheets/components/_swiper-nav.scss */
.slider-button-next:hover svg path,
.slider-rtl .slider-button-prev:hover svg path {
  fill: var(--rts-heading);
}

/* line 53, app/assets/stylesheets/components/_swiper-nav.scss */
.is__room__slider .slider-button-next svg path,
.is__room__slider .slider-button-prev svg path {
  transition: var(--transition);
}

/* line 58, app/assets/stylesheets/components/_swiper-nav.scss */
.is__room__slider .slider-button-next:hover svg path,
.is__room__slider .slider-button-prev:hover svg path {
  fill: var(--rts-white);
}

@media screen and (max-width: 992px) {
  /* line 66, app/assets/stylesheets/components/_swiper-nav.scss */
  .full__width__nav {
    display: none;
    opacity: 0;
    visibility: hidden;
  }
}

/* line 74, app/assets/stylesheets/components/_swiper-nav.scss */
.slider__navigation {
  display: flex;
  gap: 10px;
  align-items: center;
  max-width: max-content;
  position: absolute;
  top: -20px;
  right: 0;
  z-index: 9;
}

@media screen and (max-width: 768px) {
  /* line 74, app/assets/stylesheets/components/_swiper-nav.scss */
  .slider__navigation {
    display: none;
  }
}

/* line 88, app/assets/stylesheets/components/_swiper-nav.scss */
.slider__navigation .nav__btn {
  border: 1px solid var(--rts-border);
  max-width: max-content;
  padding: 8px 10px;
  border-radius: 4px;
  cursor: pointer;
  line-height: 1;
  transition: var(--transition);
}

/* line 97, app/assets/stylesheets/components/_swiper-nav.scss */
.slider__navigation .nav__btn:hover {
  background-color: var(--heading-color) !important;
}

/* line 100, app/assets/stylesheets/components/_swiper-nav.scss */
.slider__navigation .nav__btn:hover img {
  filter: invert(100);
}

/* line 105, app/assets/stylesheets/components/_swiper-nav.scss */
.slider__navigation .nav__btn img {
  transition: var(--transition);
}

/* line 111, app/assets/stylesheets/components/_swiper-nav.scss */
.testimonial__slider__style__two {
  position: relative;
}

/* line 114, app/assets/stylesheets/components/_swiper-nav.scss */
.testimonial__slider__style__two .slider__navigation {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
}

/* line 122, app/assets/stylesheets/components/_swiper-nav.scss */
.testimonial__slider__style__three {
  position: relative;
}

/* line 125, app/assets/stylesheets/components/_swiper-nav.scss */
.testimonial__slider__style__three .slider__navigation {
  position: absolute;
  left: -45px;
  bottom: 50%;
  z-index: 1;
  transform: translate(0, 50%);
}

@media screen and (max-width: 992px) {
  /* line 125, app/assets/stylesheets/components/_swiper-nav.scss */
  .testimonial__slider__style__three .slider__navigation {
    display: none;
  }
}

/* line 136, app/assets/stylesheets/components/_swiper-nav.scss */
.testimonial__slider__style__three .slider__navigation .nav__btn {
  background-color: var(--rts-white);
}

/* line 143, app/assets/stylesheets/components/_swiper-nav.scss */
.rts__pagination {
  padding-top: 40px;
  max-width: max-content;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  /* line 143, app/assets/stylesheets/components/_swiper-nav.scss */
  .rts__pagination {
    padding-top: 80px;
  }
}

/* line 153, app/assets/stylesheets/components/_swiper-nav.scss */
.rts-pagination {
  display: flex;
  gap: 6px;
}

/* line 157, app/assets/stylesheets/components/_swiper-nav.scss */
.rts-pagination .swiper-pagination-bullet {
  height: 10px;
  width: 10px;
  transition: var(--transition);
}

/* line 162, app/assets/stylesheets/components/_swiper-nav.scss */
.rts-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--heading-color);
}

/* line 2, app/assets/stylesheets/components/_slider_animation.scss */
.swiper-slide-active .anim-1 {
  animation-delay: 1.4s;
  animation: fadeInUp 2s;
}

/* line 7, app/assets/stylesheets/components/_slider_animation.scss */
.swiper-slide-active .anim-2 {
  animation-delay: 1s;
  animation: fadeInUp 2s;
}

/* line 12, app/assets/stylesheets/components/_slider_animation.scss */
.swiper-slide-active .anim-3 {
  animation-delay: 1.2s;
  animation: fadeInUp 2s;
}

/* line 17, app/assets/stylesheets/components/_slider_animation.scss */
.swiper-slide-active .anim-4 {
  animation-delay: 1.4s;
  animation: fadeInUp 2s;
}

/* line 22, app/assets/stylesheets/components/_slider_animation.scss */
.swiper-slide-active .animate-content {
  display: flex;
  animation-delay: 1s;
  animation: fadeInUp 2s;
}

/* line 1, app/assets/stylesheets/components/_backtotop.scss */
.rts__back__top {
  background: var(--btn-1);
  width: 45px;
  height: 45px;
  line-height: 45px;
  color: #fff;
  border-radius: 25px;
  display: none;
  text-align: center;
  position: fixed;
  z-index: 999;
  right: 20px;
  bottom: 0;
  opacity: 0;
  cursor: pointer;
  transition: var(--transition);
  border: 0;
}

/* line 19, app/assets/stylesheets/components/_backtotop.scss */
.rts__back__top.show {
  display: block;
  bottom: 30px;
  opacity: 1;
}

/* line 2, app/assets/stylesheets/section/_header.scss */
.header__function {
  transition: var(--transition);
}

/* line 5, app/assets/stylesheets/section/_header.scss */
.header__function.is__sticky {
  position: fixed;
  animation: stickyanimations 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  transition: padding 1s;
  box-shadow: 0px 4px 16px 0px rgba(0, 0, 0, 0.06);
  background: var(--rts-white);
  z-index: 999;
  width: 100%;
  top: 0;
  padding: 0;
}

@media screen and (max-width: 992px) {
  /* line 5, app/assets/stylesheets/section/_header.scss */
  .header__function.is__sticky {
    padding: 15px 0;
  }
}

/* line 23, app/assets/stylesheets/section/_header.scss */
.header__function.is__home__two.is__sticky, .header__function.is__color__white.is__sticky {
  background-color: #000834;
}

/* line 29, app/assets/stylesheets/section/_header.scss */
.main__header {
  padding-top: 0;
  padding-bottom: 0;
}

@media screen and (max-width: 992px) {
  /* line 29, app/assets/stylesheets/section/_header.scss */
  .main__header {
    padding: 20px 0;
  }
}

/* line 37, app/assets/stylesheets/section/_header.scss */
.main__header.is__home__two, .main__header.is__color__white {
  background-color: rgba(0, 8, 52, 0.7);
}

/* line 41, app/assets/stylesheets/section/_header.scss */
.main__header.is__home__two .theme-btn.border, .main__header.is__color__white .theme-btn.border {
  border-color: rgba(255, 255, 255, 0.25) !important;
}

/* line 44, app/assets/stylesheets/section/_header.scss */
.main__header.is__home__two .theme-btn.border span, .main__header.is__color__white .theme-btn.border span {
  color: var(--rts-white);
  mix-blend-mode: normal;
}

/* line 49, app/assets/stylesheets/section/_header.scss */
.main__header.is__home__two .theme-btn.border:hover, .main__header.is__color__white .theme-btn.border:hover {
  border-color: var(--btn-1) !important;
}

/* line 55, app/assets/stylesheets/section/_header.scss */
.main__header.is__home__two {
  padding-top: 24px;
  padding-bottom: 30px;
}

/* line 60, app/assets/stylesheets/section/_header.scss */
.main__header.is__home__three {
  background-color: var(--rts-heading);
}

/* line 63, app/assets/stylesheets/section/_header.scss */
.main__header.is__home__three .theme-btn {
  border-radius: 0;
}

/* line 68, app/assets/stylesheets/section/_header.scss */
.main__header .main__header__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media screen and (max-width: 992px) {
  /* line 68, app/assets/stylesheets/section/_header.scss */
  .main__header .main__header__wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* line 77, app/assets/stylesheets/section/_header.scss */
.main__header .main__header__wrapper .main__logo {
  display: grid;
  justify-items: center;
}

@media screen and (max-width: 992px) {
  /* line 77, app/assets/stylesheets/section/_header.scss */
  .main__header .main__header__wrapper .main__logo {
    justify-items: self-start;
  }
}

/* line 86, app/assets/stylesheets/section/_header.scss */
.main__header .main__header__wrapper .main__right {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: end;
}

@media screen and (max-width: 992px) {
  /* line 86, app/assets/stylesheets/section/_header.scss */
  .main__header .main__header__wrapper .main__right {
    gap: 15px;
  }
}

@media screen and (max-width: 576px) {
  /* line 97, app/assets/stylesheets/section/_header.scss */
  .main__header .main__header__wrapper .main__right .theme-btn.fill {
    display: none;
  }
}

@media screen and (max-width: 576px) {
  /* line 103, app/assets/stylesheets/section/_header.scss */
  .main__header .main__header__wrapper .main__right .theme-btn.fill.menu__btn {
    display: block;
  }
}

@media screen and (max-width: 992px) {
  /* line 112, app/assets/stylesheets/section/_header.scss */
  .main__header .main__nav {
    display: none;
  }
}

/* line 117, app/assets/stylesheets/section/_header.scss */
.main__header .main__nav__toogler {
  border: 0;
  background-color: transparent;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--rts-white);
  font-size: 20px;
  font-family: var(--glida);
}

/* line 127, app/assets/stylesheets/section/_header.scss */
.main__header .main__nav__toogler i {
  font-size: 26px;
  color: var(--rts-white);
}

/* line 135, app/assets/stylesheets/section/_header.scss */
.header__absolute {
  position: absolute;
  top: 0;
  height: auto;
  width: 100%;
  z-index: 2;
}

@keyframes stickyanimations {
  0% {
    transform: translateY(-100px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* ----- Banner Home One ----- */
/* line 2, app/assets/stylesheets/section/_banner.scss */
.banner__area {
  background-color: rgba(0, 8, 52, 0.65);
}

/* line 9, app/assets/stylesheets/section/_banner.scss */
.is__home__one.banner__center {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* line 16, app/assets/stylesheets/section/_banner.scss */
.banner__slide__content {
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 200px 0;
}

@media screen and (max-width: 992px) {
  /* line 16, app/assets/stylesheets/section/_banner.scss */
  .banner__slide__content {
    padding: 150px 0;
  }
}

/* line 26, app/assets/stylesheets/section/_banner.scss */
.banner__slide__content .h6,
.banner__slide__content h1,
.banner__slide__content p {
  color: var(--rts-white);
}

/* line 32, app/assets/stylesheets/section/_banner.scss */
.banner__slide__content h1 {
  line-height: 90px;
  margin-top: 20px;
  margin-bottom: 30px;
}

@media screen and (max-width: 992px) {
  /* line 32, app/assets/stylesheets/section/_banner.scss */
  .banner__slide__content h1 {
    font-size: 60px;
    line-height: 70px;
  }
}

@media screen and (max-width: 768px) {
  /* line 32, app/assets/stylesheets/section/_banner.scss */
  .banner__slide__content h1 {
    font-size: 50px;
    line-height: 60px;
  }
}

@media screen and (max-width: 576px) {
  /* line 32, app/assets/stylesheets/section/_banner.scss */
  .banner__slide__content h1 {
    font-size: 40px;
    line-height: 50px;
  }
}

/* line 53, app/assets/stylesheets/section/_banner.scss */
.banner__slide__content .sub__text {
  font-size: 18px;
  max-width: 560px;
  margin: 0 auto;
  margin-bottom: 40px;
}

/* line 65, app/assets/stylesheets/section/_banner.scss */
.banner__slider__image::before {
  background-color: rgba(0, 8, 52, 0.65);
}

/* line 70, app/assets/stylesheets/section/_banner.scss */
.banner__slider__image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

/* line 77, app/assets/stylesheets/section/_banner.scss */
.subtitle__icon {
  position: relative;
  display: inline-block;
  margin-bottom: 0;
}

/* line 82, app/assets/stylesheets/section/_banner.scss */
.subtitle__icon::before {
  position: absolute;
  content: "";
  left: -65px;
  bottom: 50%;
  width: 52px;
  height: 12px;
  background-image: url(/../images/shape/left.svg);
  background-repeat: no-repeat;
}

/* line 94, app/assets/stylesheets/section/_banner.scss */
.subtitle__icon::after {
  position: absolute;
  content: "";
  right: -65px;
  bottom: 50%;
  width: 52px;
  height: 12px;
  background-image: url(/../images/shape/right.svg);
  background-repeat: no-repeat;
}

@keyframes slideUp {
  0% {
    transform: translateY(5%);
    opacity: 0.2;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes zoom {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.1);
    opacity: 1;
  }
}

/* line 135, app/assets/stylesheets/section/_banner.scss */
.banner__slider .swiper-slide-active .banner__slider__image {
  animation: zoom 7s;
}

/* line 140, app/assets/stylesheets/section/_banner.scss */
.banner__slider .swiper-slide-active .banner__slide__content .subtitle__icon {
  animation-delay: 1.4s;
  animation: fadeInUp 2s;
}

/* line 145, app/assets/stylesheets/section/_banner.scss */
.banner__slider .swiper-slide-active .banner__slide__content h1 {
  animation-delay: 1s;
  animation: fadeInUp 2s;
}

/* line 150, app/assets/stylesheets/section/_banner.scss */
.banner__slider .swiper-slide-active .banner__slide__content .sub__text {
  animation-delay: 1.2s;
  animation: fadeInUp 2s;
}

/* line 155, app/assets/stylesheets/section/_banner.scss */
.banner__slider .swiper-slide-active .banner__slide__content .theme-btn {
  animation-delay: 1.4s;
  animation: fadeInUp 2s;
}

/* line 167, app/assets/stylesheets/section/_banner.scss */
.banner__slider:hover .rts__slider__nav {
  opacity: 1;
}

@media screen and (max-width: 768px) {
  /* line 167, app/assets/stylesheets/section/_banner.scss */
  .banner__slider:hover .rts__slider__nav {
    display: none;
    opacity: 0;
  }
}

/* line 178, app/assets/stylesheets/section/_banner.scss */
.rts__slider__nav {
  opacity: 0;
  transition: var(--transition);
  position: absolute;
  width: 100%;
  left: 60px;
  display: flex;
  z-index: 9999;
  bottom: 50%;
  justify-content: space-between;
  transform: translate(0, -50%);
}

/* line 192, app/assets/stylesheets/section/_banner.scss */
.rts__slider__nav .prev {
  right: 120px;
  position: absolute;
}

/* line 200, app/assets/stylesheets/section/_banner.scss */
.banner__area.is__home__two {
  position: relative;
}

/* line 203, app/assets/stylesheets/section/_banner.scss */
.banner__area.is__home__two .banner__slide__content {
  padding-top: calc(155px + 220px);
  padding-bottom: 130px;
  z-index: 1;
}

@media screen and (max-width: 1200px) {
  /* line 203, app/assets/stylesheets/section/_banner.scss */
  .banner__area.is__home__two .banner__slide__content {
    padding-top: 300px;
  }
}

@media screen and (max-width: 992px) {
  /* line 203, app/assets/stylesheets/section/_banner.scss */
  .banner__area.is__home__two .banner__slide__content {
    padding-top: 280px;
  }
}

@media screen and (max-width: 768px) {
  /* line 203, app/assets/stylesheets/section/_banner.scss */
  .banner__area.is__home__two .banner__slide__content {
    padding-top: 200px;
  }
}

/* line 220, app/assets/stylesheets/section/_banner.scss */
.banner__area.is__home__two .banner__slide__content__info {
  padding-top: 130px;
  display: flex;
  max-width: 860px;
  margin: 0 auto;
  justify-content: space-around;
}

@media screen and (max-width: 992px) {
  /* line 220, app/assets/stylesheets/section/_banner.scss */
  .banner__area.is__home__two .banner__slide__content__info {
    padding-top: 80px;
  }
}

@media screen and (max-width: 768px) {
  /* line 220, app/assets/stylesheets/section/_banner.scss */
  .banner__area.is__home__two .banner__slide__content__info {
    padding-top: 40px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    justify-content: center;
  }
}

@media screen and (max-width: 576px) {
  /* line 220, app/assets/stylesheets/section/_banner.scss */
  .banner__area.is__home__two .banner__slide__content__info {
    margin-top: 0;
  }
}

/* line 244, app/assets/stylesheets/section/_banner.scss */
.banner__area.is__home__two .banner__slide__content__info .item {
  display: flex;
  flex-direction: column;
  gap: 15px;
  text-align: center;
}

/* line 250, app/assets/stylesheets/section/_banner.scss */
.banner__area.is__home__two .banner__slide__content__info .item .h2 {
  color: var(--rts-white);
  line-height: 1;
  margin-bottom: 0;
}

/* line 256, app/assets/stylesheets/section/_banner.scss */
.banner__area.is__home__two .banner__slide__content__info .item p {
  font-size: 24px;
}

/* line 267, app/assets/stylesheets/section/_banner.scss */
.banner__area.is__home__three {
  background-color: var(--rts-gray);
  margin-bottom: 70px;
}

@media screen and (max-width: 576px) {
  /* line 267, app/assets/stylesheets/section/_banner.scss */
  .banner__area.is__home__three {
    margin-bottom: 0;
  }
}

/* line 276, app/assets/stylesheets/section/_banner.scss */
.banner__area.is__home__three .banner__content.not__slider {
  display: flex;
}

/* line 281, app/assets/stylesheets/section/_banner.scss */
.banner__area.is__home__three .banner__content .banner__slide__content.not__slider {
  text-align: left;
  padding-top: 180px;
  padding-bottom: 60px;
  max-width: 600px;
}

@media screen and (max-width: 768px) {
  /* line 281, app/assets/stylesheets/section/_banner.scss */
  .banner__area.is__home__three .banner__content .banner__slide__content.not__slider {
    padding-top: 120px;
  }
}

/* line 291, app/assets/stylesheets/section/_banner.scss */
.banner__area.is__home__three .banner__content .banner__slide__content.not__slider h1 {
  color: var(--rts-heading);
  margin-top: 0;
  margin-bottom: 0;
}

/* line 299, app/assets/stylesheets/section/_banner.scss */
.banner__area.is__home__three .banner__content .banner__image {
  position: absolute;
  right: 0;
  top: 0;
}

/* line 312, app/assets/stylesheets/section/_banner.scss */
.banner__area.is__home__four .banner__slide__content.if__not__slider {
  text-align: left;
  padding: 290px 0;
}

@media screen and (max-width: 1200px) {
  /* line 312, app/assets/stylesheets/section/_banner.scss */
  .banner__area.is__home__four .banner__slide__content.if__not__slider {
    padding: 170px 0 190px 0;
  }
}

@media screen and (max-width: 992px) {
  /* line 312, app/assets/stylesheets/section/_banner.scss */
  .banner__area.is__home__four .banner__slide__content.if__not__slider {
    padding: 170px 0;
  }
}

@media screen and (max-width: 768px) {
  /* line 312, app/assets/stylesheets/section/_banner.scss */
  .banner__area.is__home__four .banner__slide__content.if__not__slider {
    padding: 120px 0;
  }
}

/* line 328, app/assets/stylesheets/section/_banner.scss */
.banner__area.is__home__four .banner__slide__content.if__not__slider h1 {
  margin: 0;
}

/* line 338, app/assets/stylesheets/section/_banner.scss */
.banner__area.is__home__five {
  clip-path: polygon(0% 100%, 0% 0%, 100% 0%, 100% 100%, 100% 100%, 89.246% 91.898%, 78.025% 86.489%, 66.575% 83.438%, 55.133% 82.41%, 43.939% 83.071%, 33.229% 85.087%, 23.243% 88.122%, 14.217% 91.842%, 6.39% 95.913%, 0% 100%);
}

@media screen and (max-width: 992px) {
  /* line 338, app/assets/stylesheets/section/_banner.scss */
  .banner__area.is__home__five {
    clip-path: none;
  }
}

/* line 345, app/assets/stylesheets/section/_banner.scss */
.banner__area.is__home__five .banner__content {
  clip-path: polygon(0% 100%, 0% 0%, 100% 0%, 100% 100%, 100% 100%, 89.246% 91.898%, 78.025% 86.489%, 66.575% 83.438%, 55.133% 82.41%, 43.939% 83.071%, 33.229% 85.087%, 23.243% 88.122%, 14.217% 91.842%, 6.39% 95.913%, 0% 100%);
  height: 940px;
  position: relative;
  padding-top: 105px;
}

@media screen and (max-width: 1200px) {
  /* line 345, app/assets/stylesheets/section/_banner.scss */
  .banner__area.is__home__five .banner__content {
    height: 800px;
  }
}

@media screen and (max-width: 992px) {
  /* line 345, app/assets/stylesheets/section/_banner.scss */
  .banner__area.is__home__five .banner__content {
    clip-path: none;
    height: 100%;
    padding-bottom: 100px;
  }
}

@media screen and (max-width: 768px) {
  /* line 345, app/assets/stylesheets/section/_banner.scss */
  .banner__area.is__home__five .banner__content {
    clip-path: none;
    height: 100%;
  }
}

/* line 366, app/assets/stylesheets/section/_banner.scss */
.banner__area.is__home__five .banner__content::before {
  background-color: rgba(0, 8, 52, 0.4);
}

/* line 373, app/assets/stylesheets/section/_banner.scss */
.banner__area.is__home__five .banner__slide__content.if__not__slider {
  padding: 0;
}

/* line 376, app/assets/stylesheets/section/_banner.scss */
.banner__area.is__home__five .banner__slide__content.if__not__slider h1 {
  text-align: left;
  margin: 0;
}

@media screen and (max-width: 1200px) {
  /* line 376, app/assets/stylesheets/section/_banner.scss */
  .banner__area.is__home__five .banner__slide__content.if__not__slider h1 {
    font-size: 70px;
  }
}

@media screen and (max-width: 768px) {
  /* line 376, app/assets/stylesheets/section/_banner.scss */
  .banner__area.is__home__five .banner__slide__content.if__not__slider h1 {
    font-size: 50px;
  }
}

/* line 397, app/assets/stylesheets/section/_banner.scss */
.banner__area.is__home__six .banner__slide__content {
  padding-bottom: 30px;
  padding-top: 250px;
}

@media screen and (max-width: 1200px) {
  /* line 397, app/assets/stylesheets/section/_banner.scss */
  .banner__area.is__home__six .banner__slide__content {
    padding-top: 180px;
  }
}

@media screen and (max-width: 992px) {
  /* line 397, app/assets/stylesheets/section/_banner.scss */
  .banner__area.is__home__six .banner__slide__content {
    padding-top: 150px;
  }
}

@media screen and (max-width: 768px) {
  /* line 397, app/assets/stylesheets/section/_banner.scss */
  .banner__area.is__home__six .banner__slide__content {
    padding-top: 100px;
  }
}

/* line 418, app/assets/stylesheets/section/_banner.scss */
.banner__area.is__home__video {
  height: 800px;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.4);
}

@media screen and (max-width: 768px) {
  /* line 418, app/assets/stylesheets/section/_banner.scss */
  .banner__area.is__home__video {
    height: 600px;
  }
}

/* line 425, app/assets/stylesheets/section/_banner.scss */
.banner__area.is__home__video .video__section__text {
  display: flex;
  align-items: center;
  height: 800px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  /* line 425, app/assets/stylesheets/section/_banner.scss */
  .banner__area.is__home__video .video__section__text {
    height: 400px;
    margin-top: 150px;
  }
}

/* line 437, app/assets/stylesheets/section/_banner.scss */
.banner__area .video__area {
  position: absolute;
  z-index: -1;
  height: 800px;
  left: 0;
  width: 100%;
}

@media screen and (max-width: 768px) {
  /* line 437, app/assets/stylesheets/section/_banner.scss */
  .banner__area .video__area {
    height: 600px;
  }
}

/* line 447, app/assets/stylesheets/section/_banner.scss */
.banner__area .video__area video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* line 453, app/assets/stylesheets/section/_banner.scss */
.banner__area .video__area .video__area__overlay {
  background-color: rgba(0, 0, 0, 0.1);
}

/* line 459, app/assets/stylesheets/section/_banner.scss */
.banner__area .swiper-slide .video__text__slider__title {
  transition: var(--transition);
  margin-top: 100px;
}

@media screen and (max-width: 768px) {
  /* line 459, app/assets/stylesheets/section/_banner.scss */
  .banner__area .swiper-slide .video__text__slider__title {
    font-size: 50px;
    line-height: 60px;
    margin-top: 0;
  }
}

@media screen and (max-width: 576px) {
  /* line 459, app/assets/stylesheets/section/_banner.scss */
  .banner__area .swiper-slide .video__text__slider__title {
    font-size: 40px;
    line-height: 50px;
  }
}

/* line 473, app/assets/stylesheets/section/_banner.scss */
.banner__area .swiper-slide-active .video__text__slider__title {
  animation: fadeInUp 2s;
  opacity: 1;
}

/* line 485, app/assets/stylesheets/section/_banner.scss */
[data-theme="dark"] .banner__slide__content span {
  color: #fff;
}

/* line 489, app/assets/stylesheets/section/_banner.scss */
[data-theme="dark"] .banner__slide__content h1 {
  color: #fff;
}

/* line 493, app/assets/stylesheets/section/_banner.scss */
[data-theme="dark"] .banner__slide__content p {
  color: #fff;
}

/* line 1, app/assets/stylesheets/section/_advance__search.scss */
.advance__search {
  box-shadow: 0px 30px 30px rgba(175, 175, 175, 0.16);
  border-radius: 16px;
  background-color: var(--rts-white);
  padding: 20px 22px;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 992px) {
  /* line 1, app/assets/stylesheets/section/_advance__search.scss */
  .advance__search {
    box-shadow: none;
  }
}

@media screen and (max-width: 576px) {
  /* line 1, app/assets/stylesheets/section/_advance__search.scss */
  .advance__search {
    border-radius: 0;
    padding: 30px 20px;
  }
}

/* line 16, app/assets/stylesheets/section/_advance__search.scss */
.advance__search__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
}

@media screen and (max-width: 992px) {
  /* line 16, app/assets/stylesheets/section/_advance__search.scss */
  .advance__search__wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (max-width: 768px) {
  /* line 16, app/assets/stylesheets/section/_advance__search.scss */
  .advance__search__wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 576px) {
  /* line 16, app/assets/stylesheets/section/_advance__search.scss */
  .advance__search__wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media screen and (max-width: 768px) {
  /* line 31, app/assets/stylesheets/section/_advance__search.scss */
  .advance__search__wrapper.is__home__five {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* line 35, app/assets/stylesheets/section/_advance__search.scss */
.advance__search__wrapper.is__home__five .query__input {
  border-right: none;
}

/* line 38, app/assets/stylesheets/section/_advance__search.scss */
.advance__search__wrapper.is__home__five .query__input__icon {
  top: 55%;
}

/* line 40, app/assets/stylesheets/section/_advance__search.scss */
.advance__search__wrapper.is__home__five .query__input__icon.is__svg {
  top: 50%;
}

@media screen and (max-width: 576px) {
  /* line 47, app/assets/stylesheets/section/_advance__search.scss */
  .advance__search__wrapper .query__input {
    border-right: none !important;
  }
}

@media screen and (max-width: 992px) {
  /* line 51, app/assets/stylesheets/section/_advance__search.scss */
  .advance__search__wrapper .query__input:nth-child(even) {
    border-right: 1px solid #E4E4E4;
  }
}

@media screen and (max-width: 768px) {
  /* line 51, app/assets/stylesheets/section/_advance__search.scss */
  .advance__search__wrapper .query__input:nth-child(even) {
    border-right: none;
  }
}

@media screen and (max-width: 992px) {
  /* line 59, app/assets/stylesheets/section/_advance__search.scss */
  .advance__search__wrapper .query__input:nth-child(3) {
    border-right: none;
  }
}

@media screen and (max-width: 768px) {
  /* line 59, app/assets/stylesheets/section/_advance__search.scss */
  .advance__search__wrapper .query__input:nth-child(3) {
    border-right: 1px solid #E4E4E4;
  }
}

@media screen and (max-width: 576px) {
  /* line 59, app/assets/stylesheets/section/_advance__search.scss */
  .advance__search__wrapper .query__input:nth-child(3) {
    border-right: none;
  }
}

/* line 71, app/assets/stylesheets/section/_advance__search.scss */
.advance__search__wrapper .search__btn {
  min-width: 140px;
  display: flex;
  gap: 10px;
  align-items: center;
  height: 56px;
  justify-content: center;
}

@media screen and (max-width: 992px) {
  /* line 71, app/assets/stylesheets/section/_advance__search.scss */
  .advance__search__wrapper .search__btn {
    justify-content: center;
  }
}

/* line 84, app/assets/stylesheets/section/_advance__search.scss */
.advance__search .query__input {
  position: relative;
  width: 100%;
  border-right: 1px solid #E4E4E4;
  padding-right: 25px;
  z-index: 2;
}

/* line 90, app/assets/stylesheets/section/_advance__search.scss */
.advance__search .query__input:last-child {
  padding-right: 0;
  border-right: 0;
}

/* line 94, app/assets/stylesheets/section/_advance__search.scss */
.advance__search .query__input label {
  display: block;
  font-size: 20px;
  font-family: var(--glida);
  color: var(--rts-heading);
  margin-bottom: 5px;
}

@media screen and (max-width: 576px) {
  /* line 94, app/assets/stylesheets/section/_advance__search.scss */
  .advance__search .query__input label {
    font-size: 16px;
  }
}

/* line 105, app/assets/stylesheets/section/_advance__search.scss */
.advance__search .query__input input,
.advance__search .query__input select {
  position: relative;
  width: 100%;
  margin-left: 25px;
  border: 0;
  z-index: 1;
  cursor: pointer;
  color: var(--rts-para);
  background-color: red;
}

/* line 117, app/assets/stylesheets/section/_advance__search.scss */
.advance__search .query__input__icon {
  position: absolute;
  left: 0;
  top: 58%;
  width: 100%;
}

/* line 122, app/assets/stylesheets/section/_advance__search.scss */
.advance__search .query__input__icon.is__svg {
  top: 55%;
}

/* line 124, app/assets/stylesheets/section/_advance__search.scss */
.advance__search .query__input__icon.is__svg img {
  height: 18px;
  width: 16px;
}

/* line 129, app/assets/stylesheets/section/_advance__search.scss */
.advance__search .query__input__icon i {
  color: var(--rts-heading);
}

/* line 132, app/assets/stylesheets/section/_advance__search.scss */
.advance__search .query__input__icon::before {
  content: "\f122";
  position: absolute;
  color: var(--rts-heading);
  right: 20px;
  bottom: 0;
  font-family: flaticon_bokinn !important;
  z-index: 1;
}

/* line 142, app/assets/stylesheets/section/_advance__search.scss */
.advance__search .query__input__icon.is__svg img {
  position: relative;
  top: -2px;
}

/* line 148, app/assets/stylesheets/section/_advance__search.scss */
.advance__search .query__input .form-select {
  --bs-form-select-bg-img: unset;
  outline: none;
  margin-left: 15px;
  padding: 0 15px;
  top: 1px;
}

/* line 154, app/assets/stylesheets/section/_advance__search.scss */
.advance__search .query__input .form-select:focus {
  box-shadow: none !important;
}

/* line 164, app/assets/stylesheets/section/_advance__search.scss */
.advance__search__section.is__home__one {
  margin-top: -50px;
}

/* line 167, app/assets/stylesheets/section/_advance__search.scss */
.advance__search__section.is__home__three {
  padding-bottom: 230px;
}

@media screen and (max-width: 576px) {
  /* line 167, app/assets/stylesheets/section/_advance__search.scss */
  .advance__search__section.is__home__three {
    padding-bottom: 175px;
  }
}

/* line 172, app/assets/stylesheets/section/_advance__search.scss */
.advance__search__section.is__home__three .advance__search {
  border-radius: 0;
}

/* line 174, app/assets/stylesheets/section/_advance__search.scss */
.advance__search__section.is__home__three .advance__search .search__btn {
  border-radius: 0;
}

/* line 179, app/assets/stylesheets/section/_advance__search.scss */
.advance__search__section.is__home__four {
  margin-top: -50px;
}

@media screen and (max-width: 576px) {
  /* line 182, app/assets/stylesheets/section/_advance__search.scss */
  .advance__search__section.is__home__four .advance__search__wrapper .query__input {
    border-right: none;
  }
}

@media screen and (max-width: 992px) {
  /* line 186, app/assets/stylesheets/section/_advance__search.scss */
  .advance__search__section.is__home__four .advance__search__wrapper .query__input:nth-child(even) {
    border-right: 1px solid #E4E4E4;
  }
}

@media screen and (max-width: 768px) {
  /* line 186, app/assets/stylesheets/section/_advance__search.scss */
  .advance__search__section.is__home__four .advance__search__wrapper .query__input:nth-child(even) {
    border-right: none;
  }
}

@media screen and (max-width: 992px) {
  /* line 194, app/assets/stylesheets/section/_advance__search.scss */
  .advance__search__section.is__home__four .advance__search__wrapper .query__input:nth-child(3) {
    border-right: none;
  }
}

@media screen and (max-width: 768px) {
  /* line 194, app/assets/stylesheets/section/_advance__search.scss */
  .advance__search__section.is__home__four .advance__search__wrapper .query__input:nth-child(3) {
    border-right: 1px solid #E4E4E4;
  }
}

@media screen and (max-width: 576px) {
  /* line 194, app/assets/stylesheets/section/_advance__search.scss */
  .advance__search__section.is__home__four .advance__search__wrapper .query__input:nth-child(3) {
    border-right: none;
  }
}

/* line 208, app/assets/stylesheets/section/_advance__search.scss */
.advance__search__section.is__home__six {
  padding-bottom: 240px;
}

@media screen and (max-width: 1200px) {
  /* line 208, app/assets/stylesheets/section/_advance__search.scss */
  .advance__search__section.is__home__six {
    padding-bottom: 180px;
  }
}

@media screen and (max-width: 992px) {
  /* line 208, app/assets/stylesheets/section/_advance__search.scss */
  .advance__search__section.is__home__six {
    padding-bottom: 140px;
  }
}

@media screen and (max-width: 768px) {
  /* line 208, app/assets/stylesheets/section/_advance__search.scss */
  .advance__search__section.is__home__six {
    padding-bottom: 100px;
  }
}

@media screen and (max-width: 576px) {
  /* line 220, app/assets/stylesheets/section/_advance__search.scss */
  .advance__search__section.is__home__six .advance__search__wrapper .query__input {
    border-right: none;
  }
}

@media screen and (max-width: 992px) {
  /* line 224, app/assets/stylesheets/section/_advance__search.scss */
  .advance__search__section.is__home__six .advance__search__wrapper .query__input:nth-child(even) {
    border-right: 1px solid #E4E4E4;
  }
}

@media screen and (max-width: 768px) {
  /* line 224, app/assets/stylesheets/section/_advance__search.scss */
  .advance__search__section.is__home__six .advance__search__wrapper .query__input:nth-child(even) {
    border-right: none;
  }
}

@media screen and (max-width: 992px) {
  /* line 232, app/assets/stylesheets/section/_advance__search.scss */
  .advance__search__section.is__home__six .advance__search__wrapper .query__input:nth-child(3) {
    border-right: none;
  }
}

@media screen and (max-width: 768px) {
  /* line 232, app/assets/stylesheets/section/_advance__search.scss */
  .advance__search__section.is__home__six .advance__search__wrapper .query__input:nth-child(3) {
    border-right: 1px solid #E4E4E4;
  }
}

@media screen and (max-width: 576px) {
  /* line 232, app/assets/stylesheets/section/_advance__search.scss */
  .advance__search__section.is__home__six .advance__search__wrapper .query__input:nth-child(3) {
    border-right: none;
  }
}

/* line 248, app/assets/stylesheets/section/_advance__search.scss */
.advance__search__section.is__page.has__border .advance__search {
  border-radius: 10px;
  border: 1px solid var(--rts-border);
}

@media screen and (max-width: 576px) {
  /* line 254, app/assets/stylesheets/section/_advance__search.scss */
  .advance__search__section.is__page .advance__search__wrapper .query__input {
    border-right: none;
  }
}

@media screen and (max-width: 992px) {
  /* line 258, app/assets/stylesheets/section/_advance__search.scss */
  .advance__search__section.is__page .advance__search__wrapper .query__input:nth-child(even) {
    border-right: 1px solid #E4E4E4;
  }
}

@media screen and (max-width: 768px) {
  /* line 258, app/assets/stylesheets/section/_advance__search.scss */
  .advance__search__section.is__page .advance__search__wrapper .query__input:nth-child(even) {
    border-right: none;
  }
}

@media screen and (max-width: 992px) {
  /* line 266, app/assets/stylesheets/section/_advance__search.scss */
  .advance__search__section.is__page .advance__search__wrapper .query__input:nth-child(3) {
    border-right: none;
  }
}

@media screen and (max-width: 768px) {
  /* line 266, app/assets/stylesheets/section/_advance__search.scss */
  .advance__search__section.is__page .advance__search__wrapper .query__input:nth-child(3) {
    border-right: 1px solid #E4E4E4;
  }
}

@media screen and (max-width: 576px) {
  /* line 266, app/assets/stylesheets/section/_advance__search.scss */
  .advance__search__section.is__page .advance__search__wrapper .query__input:nth-child(3) {
    border-right: none;
  }
}

/* line 283, app/assets/stylesheets/section/_advance__search.scss */
.rts__booking__form .advance__search {
  padding: 30px;
}

/* line 285, app/assets/stylesheets/section/_advance__search.scss */
.rts__booking__form .advance__search h5 {
  padding-top: 20px;
  padding-bottom: 25px;
  text-align: center;
}

/* line 291, app/assets/stylesheets/section/_advance__search.scss */
.rts__booking__form .advance__search__wrapper {
  display: flex;
  flex-direction: column;
}

/* line 294, app/assets/stylesheets/section/_advance__search.scss */
.rts__booking__form .advance__search__wrapper .query__input {
  display: flex;
  justify-content: space-between;
  padding: 14px 20px;
  border-radius: 6px;
  align-items: center;
  background-color: var(--rts-gray);
}

/* line 301, app/assets/stylesheets/section/_advance__search.scss */
.rts__booking__form .advance__search__wrapper .query__input__position {
  position: relative;
  max-width: 160px;
  min-width: 160px;
}

/* line 307, app/assets/stylesheets/section/_advance__search.scss */
.rts__booking__form .advance__search__wrapper .query__input input, .rts__booking__form .advance__search__wrapper .query__input textarea, .rts__booking__form .advance__search__wrapper .query__input select {
  width: min-content;
  background-color: transparent;
  width: 100%;
}

/* line 312, app/assets/stylesheets/section/_advance__search.scss */
.rts__booking__form .advance__search__wrapper .query__input__icon {
  transform: translateY(-50%);
}

/* line 314, app/assets/stylesheets/section/_advance__search.scss */
.rts__booking__form .advance__search__wrapper .query__input__icon::before {
  right: 0;
}

/* line 319, app/assets/stylesheets/section/_advance__search.scss */
.rts__booking__form .advance__search__wrapper .theme-btn {
  width: 100%;
  justify-content: center;
}

/* line 326, app/assets/stylesheets/section/_advance__search.scss */
.rts__booking__form.has__background .advance__search {
  background-color: var(--rts-gray);
}

/* line 330, app/assets/stylesheets/section/_advance__search.scss */
.rts__booking__form.has__background .advance__search__wrapper .query__input {
  background-color: var(--rts-white);
}

/* line 345, app/assets/stylesheets/section/_advance__search.scss */
.rts__booking__form.is__room__details .advance__search {
  padding: 50px 30px;
  box-shadow: none;
  border-radius: 10px;
}

/* line 354, app/assets/stylesheets/section/_advance__search.scss */
.advance__search__wrapper .query__input.checkbox {
  padding: 0;
  background-color: transparent !important;
}

/* line 359, app/assets/stylesheets/section/_advance__search.scss */
.advance__search__wrapper .total__price {
  border-top: 1px solid var(--rts-border);
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding-top: 30px;
}

/* line 369, app/assets/stylesheets/section/_advance__search.scss */
[data-theme="dark"] .advance__search {
  box-shadow: 0px 30px 30px rgba(0, 0, 0, 0.16);
}

/* line 372, app/assets/stylesheets/section/_advance__search.scss */
[data-theme="dark"] .advance__search .query__input {
  border-color: #383838;
}

/* line 376, app/assets/stylesheets/section/_advance__search.scss */
[data-theme="dark"] .query__input__icon.is__svg img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(2%) hue-rotate(157deg) brightness(102%) contrast(101%);
}
