@charset "UTF-8";

/*!
 * animate.css -https://daneden.github.io/animate.css/
 * Version - 3.7.2
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2019 Daniel Eden
 */

@-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);
  }
}

.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;
  }
}

.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-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);
  }
}

.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);
  }
}

.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);
  }
}

.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);
  }
}

.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);
  }
}

.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);
  }
}

.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes wobble {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes wobble {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes jello {
  from,
  11.1%,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  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);
  }
}

.jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  transform-origin: center;
}

@-webkit-keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.heartBeat {
  -webkit-animation-name: heartBeat;
  animation-name: heartBeat;
  -webkit-animation-duration: 1.3s;
  animation-duration: 1.3s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

@-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);
  }
}

.bounceIn {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.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);
  }
}

.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);
  }
}

.bounceOut {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -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);
  }
}

.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);
  }
}

.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);
  }
}

.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);
  }
}

.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;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

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

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

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

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

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

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

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

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.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;
  }
}

.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

@keyframes fadeOutDown {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

.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);
  }
}

.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

.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);
  }
}

.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

@keyframes fadeOutRight {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

.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);
  }
}

.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

@keyframes fadeOutUp {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

.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);
  }
}

.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

@-webkit-keyframes flip {
  from {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) scale3d(1, 1, 1) 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) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) scale3d(1, 1, 1) 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) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  to {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

@keyframes flip {
  from {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) scale3d(1, 1, 1) 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) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) scale3d(1, 1, 1) 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) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  to {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

.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);
  }
}

.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);
  }
}

.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;
  }
}

.flipOutX {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -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;
  }
}

.flipOutY {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}

@-webkit-keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.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(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}

@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}

.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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

.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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

.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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

.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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

.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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

.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;
  }
}

.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;
  }
}

.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;
  }
}

.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;
  }
}

.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;
  }
}

.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;
  }
}

.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-name: hinge;
  animation-name: hinge;
}

@-webkit-keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }

  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }

  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }

  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }

  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.jackInTheBox {
  -webkit-animation-name: jackInTheBox;
  animation-name: jackInTheBox;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

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

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

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

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes rollOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}

@keyframes rollOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}

.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;
  }
}

.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);
  }
}

.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);
  }
}

.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);
  }
}

.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);
  }
}

.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;
  }
}

.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);
  }
}

.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;
  }
}

.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;
  }
}

.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);
  }
}

.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
}

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.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, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

@keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

.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(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

.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(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

@keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

.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, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

@keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.animated.delay-1s {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.animated.delay-2s {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.animated.delay-3s {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}

.animated.delay-4s {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}

.animated.delay-5s {
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
}

.animated.fast {
  -webkit-animation-duration: 800ms;
  animation-duration: 800ms;
}

.animated.faster {
  -webkit-animation-duration: 500ms;
  animation-duration: 500ms;
}

.animated.slow {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

.animated.slower {
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
}

@media (print), (prefers-reduced-motion: reduce) {
  .animated {
    -webkit-animation-duration: 1ms !important;
    animation-duration: 1ms !important;
    -webkit-transition-duration: 1ms !important;
    transition-duration: 1ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
  }
}
@charset "UTF-8";
/*
 *  Owl Carousel - Core
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1; }
  .owl-carousel .owl-stage {
    position: relative;
    -ms-touch-action: pan-Y;
    touch-action: manipulation;
    -moz-backface-visibility: hidden;
    /* fix firefox animation glitch */ }
  .owl-carousel .owl-stage:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0; }
  .owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    /* fix for flashing background */
    -webkit-transform: translate3d(0px, 0px, 0px); }
  .owl-carousel .owl-wrapper,
  .owl-carousel .owl-item {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0); }
  .owl-carousel .owl-item {
    position: relative;
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none; }
  .owl-carousel .owl-item img {
    display: block;
    width: 100%; }
  .owl-carousel .owl-nav.disabled,
  .owl-carousel .owl-dots.disabled {
    display: none; }
  .owl-carousel .owl-nav .owl-prev,
  .owl-carousel .owl-nav .owl-next,
  .owl-carousel .owl-dot {
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
  .owl-carousel .owl-nav button.owl-prev,
  .owl-carousel .owl-nav button.owl-next,
  .owl-carousel button.owl-dot {
    background: none;
    color: inherit;
    border: none;
    padding: 0 !important;
    font: inherit; }
  .owl-carousel.owl-loaded {
    display: block; }
  .owl-carousel.owl-loading {
    opacity: 0;
    display: block; }
  .owl-carousel.owl-hidden {
    opacity: 0; }
  .owl-carousel.owl-refresh .owl-item {
    visibility: hidden; }
  .owl-carousel.owl-drag .owl-item {
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
  .owl-carousel.owl-grab {
    cursor: move;
    cursor: grab; }
  .owl-carousel.owl-rtl {
    direction: rtl; }
  .owl-carousel.owl-rtl .owl-item {
    float: right; }

/* No Js */
.no-js .owl-carousel {
  display: block; }

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  animation-duration: 1000ms;
  animation-fill-mode: both; }

.owl-carousel .owl-animated-in {
  z-index: 0; }

.owl-carousel .owl-animated-out {
  z-index: 1; }

.owl-carousel .fadeOut {
  animation-name: fadeOut; }

@keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  transition: height 500ms ease-in-out; }

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item {
  /**
			This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
			calculation of the height of the owl-item that breaks page layouts
		 */ }
  .owl-carousel .owl-item .owl-lazy {
    opacity: 0;
    transition: opacity 400ms ease; }
  .owl-carousel .owl-item .owl-lazy[src^=""], .owl-carousel .owl-item .owl-lazy:not([src]) {
    max-height: 0; }
  .owl-carousel .owl-item img.owl-lazy {
    transform-style: preserve-3d; }

/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000; }

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 100ms ease; }

.owl-carousel .owl-video-play-icon:hover {
  transform: scale(1.3, 1.3); }

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none; }

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 400ms ease; }

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%; }

.product-tile {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: start;
      justify-content: flex-start;
  height: 100%;
  position: relative;
  padding-bottom: 30px; }
  @media (min-width: 768px) {
    .product-tile {
      padding-bottom: 36px; } }
  .product-tile .image-container {
    text-align: center;
    padding-top: 5px; }
    @media (min-width: 992px) {
      .product-tile .image-container {
        padding-top: 30px;
        overflow: hidden; }
        .product-tile .image-container:hover .tile-image, .product-tile .image-container:focus .tile-image {
          transform: scale(1.1); } }
    .product-tile .image-container a .tile-image {
      max-width: 65%;
      margin-left: auto;
      margin-right: auto;
      width: auto; }
      @media (min-width: 992px) {
        .product-tile .image-container a .tile-image {
          transition: ease-in 0.3s; } }
  .product-tile .tile-body {
    padding-top: 10px;
    padding-bottom: 0; }
    @media (min-width: 992px) {
      .product-tile .tile-body {
        padding-top: 27px; } }
    .product-grid .product-tile .tile-body {
      padding-bottom: 0.714rem;
      padding-top: 0.714rem; }
      @media (min-width: 1600px) {
        .product-grid .product-tile .tile-body {
          padding-top: 1.214rem;
          padding-bottom: 1.214rem; } }
    .product-tile .tile-body .price {
      font-family: "HelveticaNeue-Light", sans-serif;
      font-size: 1.107rem;
      font-weight: normal; }
      @media (min-width: 992px) {
        .product-tile .tile-body .price {
          font-size: 1.257rem; } }
      @media (min-width: 1600px) {
        .product-tile .tile-body .price {
          font-size: 1.5714rem; } }
      .product-tile .tile-body .price .sales {
        font-weight: normal; }
      .product-tile .tile-body .price .strike-through {
        font-size: 100%;
        margin-right: 0.2em;
        margin-left: 0;
        color: #000; }
        .product-tile .tile-body .price .strike-through ~ .sales {
          color: #c00; }
      .product-tile .tile-body .price .price-inner {
        display: -ms-flexbox;
        display: flex;
        display: -ms-flex;
        white-space: nowrap; }
  .product-tile .tile-message {
    position: absolute;
    top: 0.5em;
    z-index: 1;
    font-size: 0.6681rem;
    text-transform: uppercase;
    font-family: "Gotham-Medium"; }
    .product-tile .tile-message .callout {
      width: 100%; }
    @media (min-width: 768px) {
      .product-tile .tile-message {
        font-size: 0.91432rem; } }
    @media (min-width: 1600px) {
      .product-tile .tile-message {
        font-size: 1.1429rem; } }
  .product-tile .tile-top-left {
    left: 0; }
    .owl-carousel .product-tile .tile-top-left {
      left: 1em; }
    .product-tile .tile-top-left > div {
      display: inline-block;
      margin-right: 10px; }
  .product-tile .tile-top-right {
    right: 0; }
    .owl-carousel .product-tile .tile-top-right {
      right: 1em; }
  .product-tile .product-sticker img {
    max-width: 30px;
    min-width: 20px; }
    @media (min-width: 992px) {
      .product-tile .product-sticker img {
        min-width: 30px; } }
    @media (min-width: 1600px) {
      .product-tile .product-sticker img {
        max-width: 35px; } }
  .product-tile .tile-body-field-group {
    display: -ms-flexbox;
    display: flex;
    display: -ms-flex;
    position: relative; }
    .product-grid .product-tile .tile-body-field-group {
      padding-bottom: 1.429rem; }
      @media (min-width: 768px) {
        .product-grid .product-tile .tile-body-field-group {
          padding-bottom: 0; } }
    @media (min-width: 1600px) {
      .product-tile .tile-body-field-group {
        padding-bottom: 5px; } }
  .product-tile .tile-group-left {
    -ms-flex: 0 0 70%;
        flex: 0 0 70%;
    max-width: 70%; }
  .product-tile .tile-group-right {
    text-align: right;
    -ms-flex: 0 0 30%;
        flex: 0 0 30%;
    max-width: 30%; }
    @media (min-width: 992px) {
      .product-tile .tile-group-right {
        -ms-flex-direction: column;
            flex-direction: column;
        -ms-flex-pack: justify;
            justify-content: space-between;
        display: -ms-flexbox;
        display: flex;
        display: -ms-flex; } }
  .product-tile .product-collection {
    text-transform: uppercase;
    font-size: 1.2143rem;
    margin-bottom: 5px; }
    .product-tile .product-collection h4 {
      margin-bottom: 0;
      font-size: 1.2143rem; }
      @media (min-width: 992px) {
        .product-tile .product-collection h4 {
          font-size: 1.1429rem; } }
      @media (min-width: 1600px) {
        .product-tile .product-collection h4 {
          font-size: 1.4286rem; } }
  .product-tile .pdp-link {
    font-family: "Gotham-Medium", sans-serif;
    text-transform: uppercase;
    font-size: 0.714rem;
    margin-bottom: 5px;
    min-height: 2em; }
    @media (min-width: 992px) {
      .product-tile .pdp-link {
        font-size: 0.857rem; } }
    @media (min-width: 1600px) {
      .product-tile .pdp-link {
        font-size: 0.929rem; } }
  .product-tile .ratings {
    padding: 0;
    width: auto; }
    .product-tile .ratings .fa-star,
    .product-tile .ratings .fa-star-half-o {
      color: #094f8d; }
  .product-tile .tile-body-footer {
    display: block;
    margin: 0; }
  .product-tile .tile-actions {
    margin-left: -3px;
    margin-right: -3px; }
    .product-tile .tile-actions .col-6 {
      padding-left: 3px;
      padding-right: 3px; }
    .product-tile .tile-actions .apple-pay-pdp {
      display: none; }
  .product-tile .cart-and-ipay {
    padding-bottom: 0; }
  .product-tile .add-to-cart,
  .product-tile .add-to-cart-global {
    color: #000;
    background-color: #fff;
    border: 2px solid #000;
    display: inline-block;
    text-transform: uppercase;
    font-family: "Gotham-Bold", sans-serif;
    padding: 5px 10px;
    border-radius: 0;
    background-color: #000;
    color: #fff;
    padding: 9px 3px;
    font-size: 2.3vw;
    line-height: 1;
    margin: 0;
    width: 100%; }
    .product-tile .add-to-cart:hover, .product-tile .add-to-cart:focus,
    .product-tile .add-to-cart-global:hover,
    .product-tile .add-to-cart-global:focus {
      background-color: #000; }
    @media (min-width: 768px) {
      .product-tile .add-to-cart,
      .product-tile .add-to-cart-global {
        font-size: 1rem; } }
    @media (min-width: 992px) {
      .product-tile .add-to-cart,
      .product-tile .add-to-cart-global {
        padding-top: 9px;
        padding-bottom: 9px;
        line-height: 1.2;
        font-size: 0.879rem;
        letter-spacing: 0.05rem; } }
    @media (min-width: 1600px) {
      .product-tile .add-to-cart,
      .product-tile .add-to-cart-global {
        font-size: 1.099rem;
        padding-top: 11px;
        padding-bottom: 11px; } }
    .product-tile .add-to-cart .fa,
    .product-tile .add-to-cart-global .fa {
      display: none; }
    .product-tile .add-to-cart:disabled,
    .product-tile .add-to-cart-global:disabled {
      opacity: 0.3; }
  .product-tile .btn-go-details {
    color: #000;
    background-color: #fff;
    border: 2px solid #000;
    display: inline-block;
    text-transform: uppercase;
    font-family: "Gotham-Bold", sans-serif;
    padding: 5px 10px;
    border-radius: 0;
    display: block;
    font-size: 2.3vw;
    padding: 9px 3px;
    line-height: 1;
    letter-spacing: 0.07em; }
    .product-tile .btn-go-details:hover, .product-tile .btn-go-details:focus {
      background-color: #000;
      color: #fff; }
    @media (min-width: 768px) {
      .product-tile .btn-go-details {
        font-size: 1rem; } }
    @media (min-width: 992px) {
      .product-tile .btn-go-details {
        padding-top: 9px;
        padding-bottom: 9px;
        line-height: 1.2;
        font-size: 0.879rem;
        letter-spacing: 0.05rem; } }
    @media (min-width: 1600px) {
      .product-tile .btn-go-details {
        font-size: 1.099rem;
        padding-top: 11px;
        padding-bottom: 11px; } }
  .product-tile .p-w-r {
    margin: 0; }
    @media (min-width: 992px) {
      .product-tile .p-w-r {
        padding-top: 10px; } }
    .product-tile .p-w-r .pr-category-snippet {
      display: block; }
    .product-tile .p-w-r .pr-snippet-rating-decimal {
      display: none; }
    .product-tile .p-w-r .pr-category-snippet__item {
      display: block; }
    .product-tile .p-w-r .pr-category-snippet__total.pr-category-snippet__item {
      display: none; }
    .product-tile .p-w-r .pr-snippet .pr-rating-stars [class^="pr-star"] {
      background: none;
      position: relative;
      width: 8px;
      height: 8px;
      padding: 0;
      margin-right: 0;
      margin-left: 2px; }
      .product-tile .p-w-r .pr-snippet .pr-rating-stars [class^="pr-star"]::before {
        font-family: 'FontAwesome';
        font-style: normal;
        font-weight: normal;
        content: '\F005';
        position: absolute;
        width: 100%;
        height: 100%;
        color: #c6c6c5;
        font-size: 8px;
        top: 0;
        left: 0; }
      @media (min-width: 992px) {
        .product-tile .p-w-r .pr-snippet .pr-rating-stars [class^="pr-star"] {
          width: 9px;
          height: 9px;
          margin-left: 2px; }
          .product-tile .p-w-r .pr-snippet .pr-rating-stars [class^="pr-star"]::before {
            font-size: 9px; } }
      @media (min-width: 1600px) {
        .product-tile .p-w-r .pr-snippet .pr-rating-stars [class^="pr-star"] {
          width: 10px;
          height: 10px;
          margin-left: 2px; }
          .product-tile .p-w-r .pr-snippet .pr-rating-stars [class^="pr-star"]::before {
            font-size: 10px; } }
    .product-tile .p-w-r .pr-snippet .pr-rating-stars .pr-star-v4-100-filled::before,
    .product-tile .p-w-r .pr-snippet .pr-rating-stars .pr-star-v4-50-filled::before {
      color: #094f8d; }
    .product-tile .p-w-r .pr-snippet .pr-snippet-stars-png {
      display: block; }
      .product-tile .p-w-r .pr-snippet .pr-snippet-stars-png .pr-rating-stars {
        display: -ms-flexbox;
        display: flex;
        display: -ms-flex;
        -ms-flex-pack: end;
            justify-content: flex-end;
        padding-top: 1em; }
  .product-tile .attribute {
    margin-top: 0;
    margin-right: 0;
    padding-top: 5px;
    padding-right: 0;
    text-align: center; }
    @media (min-width: 992px) {
      .product-tile .attribute {
        padding-top: 0; } }
    .product-tile .attribute h4 {
      display: none; }
    .product-tile .attribute .attr-item {
      display: inline-block;
      margin-left: 2px;
      margin-right: 2px; }
      @media (min-width: 992px) {
        .product-tile .attribute .attr-item {
          padding-left: 3px;
          padding-right: 3px; } }
      @media (min-width: 1600px) {
        .product-tile .attribute .attr-item {
          padding-left: 4px;
          padding-right: 4px; } }
    .product-tile .attribute .owl-carousel {
      display: -ms-flexbox;
      display: flex;
      display: -ms-flex;
      -ms-flex-pack: center;
          justify-content: center; }
      .product-tile .attribute .owl-carousel .owl-stage {
        margin: 0 auto; }
    .product-tile .attribute .owl-loaded {
      display: block;
      margin-right: -10px;
      width: auto; }
      .product-tile .attribute .owl-loaded .attr-item {
        margin-left: 0;
        margin-right: 0; }
  .product-tile .tile-attribute {
    margin-bottom: 0.5rem; }
    @media (min-width: 992px) {
      .product-tile .tile-attribute {
        margin-bottom: 1rem; } }
    .product-tile .tile-attribute[data-attr="productSize"] {
      margin-bottom: 0; }
      .product-tile .tile-attribute[data-attr="productSize"].empty-size-selection {
        min-height: 29px; }
        @media (min-width: 1600px) {
          .product-tile .tile-attribute[data-attr="productSize"].empty-size-selection {
            min-height: 33px; } }
  .product-tile .color-swatchs {
    text-align: center; }
    @media (min-width: 992px) {
      .product-tile .color-swatchs {
        padding-top: 5px; } }
    .product-tile .color-swatchs .swatch-circle.color-value.selected::after {
      content: none; }
    .product-tile .color-swatchs .attr-item {
      border: 3px solid transparent;
      padding: 2px;
      max-width: 40px;
      border-radius: 50%; }
      @media (min-width: 992px) {
        .product-tile .color-swatchs .attr-item {
          max-width: 50px; } }
      .product-tile .color-swatchs .attr-item.selected, .product-tile .color-swatchs .attr-item:hover {
        border-color: #000; }
      .product-tile .color-swatchs .attr-item a {
        display: block;
        width: 27px;
        height: 27px; }
        @media (min-width: 992px) {
          .product-tile .color-swatchs .attr-item a {
            width: 35px;
            height: 35px; } }
        @media (min-width: 1600px) {
          .product-tile .color-swatchs .attr-item a {
            width: 40px;
            height: 40px; } }
        .product-tile .color-swatchs .attr-item a .swatch-circle {
          width: 100%;
          height: 100%;
          border: none;
          margin: 0;
          border-radius: 50%; }
  .product-tile .size-selection {
    font-size: 0.714rem; }
    @media (min-width: 992px) {
      .product-tile .size-selection {
        font-size: 0.914rem; } }
    @media (min-width: 1600px) {
      .product-tile .size-selection {
        font-size: 1.1429rem; } }
    .product-tile .size-selection .attr-item.selected a, .product-tile .size-selection .attr-item:hover a {
      color: #fff;
      background-color: #000;
      border-color: #000; }
    .product-tile .size-selection .attr-item a {
      display: block;
      padding: 4px 9px;
      border: 2px solid #e6e6e6;
      white-space: nowrap;
      border-radius: 5px; }
      @media (min-width: 992px) {
        .product-tile .size-selection .attr-item a {
          min-width: 84px;
          padding-top: 5px;
          padding-bottom: 5px; } }
      @media (min-width: 1600px) {
        .product-tile .size-selection .attr-item a {
          min-width: 95px;
          padding-top: 5px;
          padding-bottom: 5px; } }
    .product-tile .size-selection.owl-loaded .attr-item a {
      width: 47px; }
      @media (min-width: 992px) {
        .product-tile .size-selection.owl-loaded .attr-item a {
          min-width: 72px; } }
      @media (min-width: 1200px) {
        .product-tile .size-selection.owl-loaded .attr-item a {
          min-width: 67px; } }
      @media (min-width: 1600px) {
        .product-tile .size-selection.owl-loaded .attr-item a {
          min-width: 77px; } }
  .product-tile .product-comparition {
    position: absolute;
    left: 0;
    bottom: 0; }
    @media (min-width: 768px) {
      .product-tile .product-comparition {
        display: none; } }
    @media (min-width: 1200px) {
      .product-tile .product-comparition {
        display: block;
        position: static; } }
    .product-tile .product-comparition .checkbox {
      padding-left: 1.071rem;
      text-transform: uppercase;
      font-size: 0.7143rem; }
      @media (min-width: 1200px) {
        .product-tile .product-comparition .checkbox {
          padding-left: 0;
          font-size: 14px; } }
      .product-tile .product-comparition .checkbox::before {
        right: auto;
        left: 2px; }
        @media (min-width: 1200px) {
          .product-tile .product-comparition .checkbox::before {
            left: auto;
            right: 2px; } }
      .product-tile .product-comparition .checkbox::after {
        right: auto;
        left: 0; }
        @media (min-width: 1200px) {
          .product-tile .product-comparition .checkbox::after {
            right: 0;
            left: auto; } }
    @media (min-width: 1200px) {
      .product-tile .product-comparition {
        display: block;
        padding-bottom: 5px; }
        .product-tile .product-comparition .checkbox {
          font-size: 0.62848rem;
          text-transform: uppercase;
          cursor: pointer;
          padding-right: 22px; } }
    @media (min-width: 1600px) {
      .product-tile .product-comparition .checkbox {
        font-size: 0.7856rem; } }
  .product-tile .attr-item.watch-item.disable-click:hover {
    border-color: transparent; }
  .product-tile .attr-item.watch-item.disable-click a {
    pointer-events: none; }
  .product-tile .attr-item.size-item.disable-click:hover a, .product-tile .attr-item.size-item.disable-click:focus a, .product-tile .attr-item.size-item.disable-click:active a {
    background-color: transparent;
    color: #000;
    border: 2px solid #e6e6e6; }
  .product-tile .attr-item.size-item.disable-click a {
    pointer-events: none;
    opacity: 0.4; }
  .product-tile .attr-item.size-item.disable-click.selected:hover a {
    color: #fff;
    background-color: #000;
    border: 2px solid #000; }

.product-list-campaign .product-tile .tile-actions {
  margin-left: -3px;
  margin-right: -3px;
  position: absolute;
  bottom: 0;
  width: 100%; }
  @media (min-width: 992px) {
    .product-list-campaign .product-tile .tile-actions {
      width: auto;
      left: -3px;
      right: -3px; }
      .product-list-campaign .product-tile .tile-actions .pdp-link {
        min-height: 2.3em; } }
  .product-list-campaign .product-tile .tile-actions .col-6 {
    padding-left: 3px;
    padding-right: 3px; }
    @media (min-width: 992px) {
      .product-list-campaign .product-tile .tile-actions .col-6 {
        padding-left: 5px;
        padding-right: 5px; } }

.homepage-product-listing .product-tile .tile-body .price .strike-through {
  display: block; }

.homepage-product-listing .product-tile .tile-body .price .price-inner {
  display: block; }
  @media (min-width: 1200px) {
    .homepage-product-listing .product-tile .tile-body .price .price-inner {
      display: -ms-flexbox;
      display: flex;
      display: -ms-flex; } }

@keyframes customFadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 0.5em, 0); }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0); } }

@keyframes zoomOutElement {
  from {
    transform: scale(1) translate(0, 0); }
  to {
    transform: scale(4) translate(30px, -30px); } }

.section-hero-slider {
  position: relative;
  z-index: 9;
  margin-top: -45px; }
  @media (min-width: 768px) {
    .section-hero-slider {
      margin-top: -57px; } }
  @media (min-width: 992px) {
    .section-hero-slider {
      margin-top: -97px; } }
  .section-hero-slider .container-fluid {
    padding-left: 0;
    padding-right: 0; }

.hero-banner img,
.hero-banner picture {
  max-width: 100%; }

@media (min-width: 768px) {
  .hero-banner {
    max-height: 64vw; } }

@media (min-width: 992px) {
  .hero-banner {
    max-height: 41.9vw; } }

.hero-banner .owl-item.active .hero-banner-info h3,
.hero-banner .owl-item.active .hero-banner-info h2,
.hero-banner .owl-item.active .hero-banner-info .btn-shop {
  animation-duration: 0.5s;
  animation-fill-mode: both;
  animation-name: customFadeInUp; }

.hero-banner .owl-item.active .hero-banner-info h3 {
  animation-delay: 0.7s; }

.hero-banner .owl-item.active .hero-banner-info h2 {
  animation-delay: 0.8s; }

.hero-banner .owl-item.active .hero-banner-info .btn-shop {
  animation-delay: 0.9s; }

.hero-banner .hero-banner-info {
  position: absolute;
  left: 0;
  bottom: 70px;
  width: 100%;
  z-index: 5;
  text-align: center; }
  @media (min-width: 768px) {
    .hero-banner .hero-banner-info {
      bottom: auto;
      top: 50%;
      transform: translateY(-50%); } }
  @media (min-width: 992px) {
    .hero-banner .hero-banner-info {
      top: 55%; } }
  .hero-banner .hero-banner-info h2 {
    font-size: 4.371rem;
    color: #fff;
    margin-bottom: 20px;
    font-family: "HelveticaNeue-Thin"; }
    @media (min-width: 768px) {
      .hero-banner .hero-banner-info h2 {
        font-size: 3.214rem;
        margin-bottom: 10px;
        font-family: "HelveticaNeue-UltraLight"; } }
    @media (min-width: 992px) {
      .hero-banner .hero-banner-info h2 {
        font-size: 4.06848rem; } }
    @media (min-width: 1600px) {
      .hero-banner .hero-banner-info h2 {
        font-size: 5.0856rem; } }
  .hero-banner .hero-banner-info h3 {
    font-family: "Gotham-Light", sans-serif;
    color: #fff;
    font-size: 1.7143rem; }
    @media (min-width: 768px) {
      .hero-banner .hero-banner-info h3 {
        font-size: 1.1429rem;
        margin-bottom: 0; } }
    @media (min-width: 992px) {
      .hero-banner .hero-banner-info h3 {
        font-size: 1.5rem; } }
    @media (min-width: 1600px) {
      .hero-banner .hero-banner-info h3 {
        font-size: 1.886rem; } }

.hero-banner .btn-shop {
  border: 2px solid #fff;
  color: #fff;
  min-width: 100px;
  text-transform: uppercase;
  padding: 0.6em 2.6em;
  font-family: "Gotham-Bold";
  font-size: 0.786rem;
  transition: ease-in 0.3s;
  border-radius: 0; }
  .hero-banner .btn-shop:hover, .hero-banner .btn-shop:focus {
    background-color: #fff;
    color: #000; }
  @media (min-width: 992px) {
    .hero-banner .btn-shop {
      font-size: 0.91rem; } }

.hero-banner .owl-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 35px;
  z-index: 2;
  text-align: center; }
  @media (min-width: 768px) {
    .hero-banner .owl-dots {
      bottom: 75px; } }
  .hero-banner .owl-dots .owl-dot {
    display: inline-block;
    height: 3px;
    width: 20px;
    background: #fff;
    margin-left: 5px;
    margin-right: 5px;
    border-radius: 5px; }
    @media (min-width: 768px) {
      .hero-banner .owl-dots .owl-dot {
        height: 4px;
        width: 22px; } }
    .hero-banner .owl-dots .owl-dot.active {
      background: #999; }

.home-eco-collection {
  position: relative;
  padding: 30px 25px;
  background-attachment: scroll;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover; }
  .home-eco-collection.load-animation .eco-product-typical,
  .home-eco-collection.load-animation h6,
  .home-eco-collection.load-animation h2 {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: customFadeInUp;
    opacity: 1;
    filter: alpha(opacity=1); }
  .home-eco-collection.load-animation .eco-product-typical {
    animation-delay: 0.2s; }
  .home-eco-collection.load-animation h6 {
    animation-delay: 0.2s; }
  .home-eco-collection.load-animation h2 {
    animation-delay: 0.4s; }
  .home-eco-collection.load-animation .eco-logo {
    animation-delay: 1s;
    animation-duration: 1s;
    animation-fill-mode: both;
    animation-name: rotateIn; }
  @media (min-width: 992px) {
    .home-eco-collection {
      padding: 60px 75px;
      background-attachment: fixed; } }
  .home-eco-collection .eco-image img {
    width: 100%; }
  .home-eco-collection .eco-info {
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 1.786em;
    min-height: 24.643em; }
    @media (min-width: 768px) {
      .home-eco-collection .eco-info {
        min-height: 17.143em; } }
    @media (min-width: 992px) {
      .home-eco-collection .eco-info {
        padding: 2.857em;
        min-height: 20.571em; } }
    @media (min-width: 1600px) {
      .home-eco-collection .eco-info {
        padding: 3.571em;
        min-height: 25.714em; } }
  @media (min-width: 768px) {
    .home-eco-collection .eco-info-inner {
      width: 40%;
      float: right;
      position: relative; } }
  @media (min-width: 992px) {
    .home-eco-collection .eco-info-inner {
      width: 33%; } }
  .home-eco-collection .eco-logo {
    width: 65px;
    margin-bottom: 15px; }
    @media (min-width: 768px) {
      .home-eco-collection .eco-logo {
        position: absolute;
        left: -80px;
        top: 0; } }
    @media (min-width: 992px) {
      .home-eco-collection .eco-logo {
        width: 6.286em;
        left: -8em; } }
    @media (min-width: 1600px) {
      .home-eco-collection .eco-logo {
        width: 7.257em;
        left: -9em; } }
  .home-eco-collection .eco-product-typical {
    position: absolute;
    width: 57%;
    right: 25px;
    bottom: 0;
    z-index: 2;
    text-align: right; }
    @media (min-width: 768px) {
      .home-eco-collection .eco-product-typical {
        right: auto;
        left: 12.5%;
        width: 37%; } }
    @media (min-width: 992px) {
      .home-eco-collection .eco-product-typical {
        left: 12%;
        width: 40%; } }
  .home-eco-collection h6,
  .home-eco-collection h2 {
    opacity: 0;
    filter: alpha(opacity=0); }
  .home-eco-collection h6 {
    font-size: 1.275rem;
    font-family: "Gotham-Light", sans-serif; }
    @media (min-width: 992px) {
      .home-eco-collection h6 {
        font-size: 1.2rem; } }
    @media (min-width: 1600px) {
      .home-eco-collection h6 {
        font-size: 1.5rem; } }
  .home-eco-collection h2 {
    font-size: 3.764rem;
    font-family: "HelveticaNeue-UltraLight", sans-serif;
    line-height: 1;
    margin-bottom: 15px; }
    @media (min-width: 768px) {
      .home-eco-collection h2 {
        font-size: 3rem;
        margin-bottom: 10px; } }
    @media (min-width: 992px) {
      .home-eco-collection h2 {
        font-size: 3.5714rem;
        line-height: 0.9;
        margin-bottom: 0.583em; } }
    @media (min-width: 1600px) {
      .home-eco-collection h2 {
        font-size: 4.286rem; } }
  .home-eco-collection .btn-view {
    display: inline-block;
    width: 30px;
    height: 30px;
    background-color: #fff;
    color: #000;
    text-align: center;
    line-height: 35px;
    position: relative;
    border-radius: 50%; }
    @media (min-width: 992px) {
      .home-eco-collection .btn-view {
        width: 32px;
        height: 32px; } }
    @media (min-width: 1600px) {
      .home-eco-collection .btn-view {
        width: 34px;
        height: 34px; } }
    .home-eco-collection .btn-view .sa-icon {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%); }

.section-home-footer .store-locator {
  background-color: #f7f6f5;
  padding-top: 1.429em;
  padding-bottom: 1.429em;
  text-align: center; }
  @media (min-width: 992px) {
    .section-home-footer .store-locator {
      padding-top: 2.114em;
      padding-bottom: 2.114em; } }
  @media (min-width: 1600px) {
    .section-home-footer .store-locator {
      padding-top: 2.643em;
      padding-bottom: 2.643em; } }
  .section-home-footer .store-locator a {
    display: -ms-flexbox;
    display: flex;
    display: -ms-flex;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-pack: center;
        justify-content: center; }
    .section-home-footer .store-locator a:hover, .section-home-footer .store-locator a:focus {
      text-decoration: none; }
  .section-home-footer .store-locator img {
    width: 40px;
    vertical-align: middle;
    margin-right: 30px; }
  .section-home-footer .store-locator span {
    text-transform: uppercase;
    font-family: "Gotham-Bold", sans-serif;
    letter-spacing: 0.2rem; }
    @media (min-width: 992px) {
      .section-home-footer .store-locator span {
        font-size: 1.1429rem; } }
    @media (min-width: 1600px) {
      .section-home-footer .store-locator span {
        font-size: 1.4286rem; } }

.section-home-footer .social-list {
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 10px;
  padding-bottom: 10px;
  margin-bottom: 2px; }
  @media (min-width: 768px) {
    .section-home-footer .social-list {
      padding-top: 20px;
      padding-bottom: 25px; } }
  .section-home-footer .social-list .row {
    -ms-flex-align: center;
        align-items: center; }
  .section-home-footer .social-list p {
    margin-bottom: 0;
    text-transform: uppercase;
    font-family: "Gotham-Bold", sans-serif;
    letter-spacing: 0.2rem;
    font-size: 0.929rem; }
    @media (min-width: 768px) {
      .section-home-footer .social-list p {
        text-align: right;
        font-size: 1.25712rem; } }
    @media (min-width: 992px) {
      .section-home-footer .social-list p {
        letter-spacing: 0.4rem;
        font-size: 1.1429rem; } }
    @media (min-width: 1600px) {
      .section-home-footer .social-list p {
        font-size: 1.4286rem; } }
  .section-home-footer .social-list ul {
    margin: 0;
    padding: 0; }
    .section-home-footer .social-list ul li {
      list-style: none;
      display: inline-block;
      font-size: 2.1429rem;
      margin-right: 8px; }
      .section-home-footer .social-list ul li:last-child {
        margin-right: 0; }
      @media (min-width: 768px) {
        .section-home-footer .social-list ul li {
          font-size: 2.1429rem;
          margin-right: 20px; } }
      @media (min-width: 992px) {
        .section-home-footer .social-list ul li {
          font-size: 2.2857rem;
          margin-right: 1.111em; } }
      @media (min-width: 1600px) {
        .section-home-footer .social-list ul li {
          font-size: 2.8571rem; } }

.section-home-footer .other-brands {
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 25px;
  padding-right: 25px; }
  .section-home-footer .other-brands h3 {
    font-size: 1.214rem;
    font-family: "HelveticaNeue-Light", sans-serif;
    text-align: center;
    margin-bottom: 20px; }
    @media (min-width: 768px) {
      .section-home-footer .other-brands h3 {
        font-size: 1.1429rem; } }
    @media (min-width: 1600px) {
      .section-home-footer .other-brands h3 {
        font-size: 1.4286rem; } }
  .section-home-footer .other-brands ul {
    margin-bottom: 0;
    padding-left: 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
    margin-left: -10px;
    margin-right: -10px;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-pack: center;
        justify-content: center; }
    .section-home-footer .other-brands ul li {
      list-style: none;
      padding-left: 10px;
      padding-right: 10px;
      -ms-flex: 0 0 33.33333%;
          flex: 0 0 33.33333%;
      max-width: 33.33333%;
      max-width: 150px; }
      @media (min-width: 768px) {
        .section-home-footer .other-brands ul li {
          padding-left: 20px;
          padding-right: 20px; } }
      @media (min-width: 1600px) {
        .section-home-footer .other-brands ul li {
          max-width: 180px; } }
      .section-home-footer .other-brands ul li img {
        display: block;
        width: 100%; }

.home-how-to-pack {
  position: relative;
  z-index: 1; }
  .home-how-to-pack .load-animation .info-inner h6,
  .home-how-to-pack .load-animation .info-inner h2,
  .home-how-to-pack .load-animation .info-inner .btn-view {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: customFadeInUp;
    opacity: 1;
    filter: alpha(opacity=1); }
  .home-how-to-pack .load-animation .info-inner h6 {
    animation-delay: 0.2s; }
  .home-how-to-pack .load-animation .info-inner h2 {
    animation-delay: 0.4s; }
  .home-how-to-pack .load-animation .info-inner .btn-view {
    animation-delay: 0.6s; }
  @media (min-width: 768px) {
    .home-how-to-pack {
      background-color: #f7f6f5; }
      .home-how-to-pack .container {
        padding-left: 0;
        padding-right: 0; }
      .home-how-to-pack .row {
        -ms-flex-align: center;
            align-items: center; } }
  @media (min-width: 992px) {
    .home-how-to-pack .row {
      -ms-flex-align: start;
          align-items: flex-start; } }
  .home-how-to-pack .col-info {
    position: relative;
    z-index: 2;
    bottom: -30px;
    padding-left: 25px;
    padding-right: 25px; }
    @media (min-width: 768px) {
      .home-how-to-pack .col-info {
        bottom: 0;
        padding: 0; } }
    @media (min-width: 992px) {
      .home-how-to-pack .col-info {
        -ms-flex: 0 0 38%;
            flex: 0 0 38%;
        max-width: 38%; } }
  .home-how-to-pack .info-inner {
    background-color: #f7f6f5;
    padding: 15px 20px; }
    @media (min-width: 992px) {
      .home-how-to-pack .info-inner {
        padding-left: 110px;
        padding-top: 65px; } }
    .home-how-to-pack .info-inner h6 {
      font-size: 1.275rem;
      font-family: "Gotham-Light", sans-serif;
      opacity: 0;
      filter: alpha(opacity=0); }
      @media (min-width: 992px) {
        .home-how-to-pack .info-inner h6 {
          font-size: 1.2rem; } }
      @media (min-width: 1600px) {
        .home-how-to-pack .info-inner h6 {
          font-size: 1.5rem; } }
    .home-how-to-pack .info-inner h2 {
      font-size: 3.764rem;
      font-family: "HelveticaNeue-UltraLight", sans-serif;
      line-height: 1;
      margin-bottom: 15px;
      opacity: 0;
      filter: alpha(opacity=0); }
      @media (min-width: 768px) {
        .home-how-to-pack .info-inner h2 {
          font-size: 3rem; } }
      @media (min-width: 992px) {
        .home-how-to-pack .info-inner h2 {
          font-size: 3.5714rem;
          line-height: 0.9;
          margin-bottom: 0.6667em; } }
      @media (min-width: 1600px) {
        .home-how-to-pack .info-inner h2 {
          font-size: 4.286rem; } }
  .home-how-to-pack .btn-view {
    display: inline-block;
    width: 30px;
    height: 30px;
    background-color: #fff;
    color: #000;
    text-align: center;
    line-height: 35px;
    position: relative;
    border-radius: 50%;
    opacity: 0;
    filter: alpha(opacity=0); }
    @media (min-width: 992px) {
      .home-how-to-pack .btn-view {
        width: 32px;
        height: 32px; } }
    @media (min-width: 1600px) {
      .home-how-to-pack .btn-view {
        width: 34px;
        height: 34px; } }
    .home-how-to-pack .btn-view .sa-icon {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%); }
  .home-how-to-pack .col-image {
    padding-left: 0;
    padding-right: 0;
    z-index: 1; }
    @media (min-width: 992px) {
      .home-how-to-pack .col-image {
        -ms-flex: 0 0 62%;
            flex: 0 0 62%;
        max-width: 62%;
        padding-right: 52px; } }
    @media (min-width: 1600px) {
      .home-how-to-pack .col-image {
        padding-right: 65px; } }
    @media (min-width: 768px) {
      .home-how-to-pack .col-image img {
        width: 100%; } }

.home-instagram {
  margin-bottom: 25px; }
  @media (min-width: 992px) {
    .home-instagram {
      margin-bottom: 10px; } }
  .home-instagram h2 {
    font-size: 1.1429rem;
    font-family: "HelveticaNeue-Light", sans-serif;
    text-align: center;
    margin-bottom: 25px; }
    @media (min-width: 992px) {
      .home-instagram h2 {
        font-size: 1.314rem;
        margin-bottom: 1em; } }
    @media (min-width: 1600px) {
      .home-instagram h2 {
        font-size: 1.643rem; } }
    .home-instagram h2 .fa-instagram {
      font-size: 2.5rem;
      vertical-align: middle;
      margin-right: 8px; }
  .home-instagram .content {
    padding-left: 6px;
    padding-right: 6px; }
    .home-instagram .content .row {
      margin-left: -3px;
      margin-right: -3px; }
      @media (min-width: 992px) {
        .home-instagram .content .row {
          margin-left: -5px;
          margin-right: -5px; } }
    .home-instagram .content .col-4 {
      padding-left: 3px;
      padding-right: 3px;
      margin-bottom: 6px; }
      @media (min-width: 992px) {
        .home-instagram .content .col-4 {
          padding-left: 5px;
          padding-right: 5px;
          margin-bottom: 0; } }

.section-category {
  position: relative;
  z-index: 10;
  margin-top: -20px; }
  @media (min-width: 768px) {
    .section-category {
      margin-top: -32px; } }
  @media (min-width: 1600px) {
    .section-category {
      margin-top: -40px; } }

.home-libraries .lib-content {
  position: relative; }

.home-libraries .libraries-first {
  margin-bottom: 0.714em;
  padding-left: 25px;
  padding-right: 25px;
  background-position: center 80%;
  background-size: contain; }
  @media (min-width: 768px) {
    .home-libraries .libraries-first {
      margin-bottom: 0;
      background-position: center bottom; }
      .home-libraries .libraries-first img {
        width: 100%; } }
  .home-libraries .libraries-first .container {
    padding-left: 0;
    padding-right: 0; }
  .home-libraries .libraries-first .row {
    margin-left: 0;
    margin-right: 0;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto; }
    @media (min-width: 768px) {
      .home-libraries .libraries-first .row {
        -ms-flex-pack: center;
            justify-content: center; } }
  .home-libraries .libraries-first .col-12 {
    padding-bottom: 10px;
    background-color: #fff;
    padding-left: 0;
    padding-right: 0; }
    @media (min-width: 768px) {
      .home-libraries .libraries-first .col-12 {
        padding-left: 3px;
        padding-right: 3px;
        padding-bottom: 0;
        background: none; }
        .home-libraries .libraries-first .col-12:first-child::before {
          content: '';
          background-color: #fff;
          position: absolute;
          z-index: 1;
          width: 6px;
          right: -3px;
          top: 0;
          bottom: 0; } }
  .home-libraries .libraries-first .load-animation .info-item h5,
  .home-libraries .libraries-first .load-animation .info-item h3,
  .home-libraries .libraries-first .load-animation .info-item .btn-view {
    animation-duration: 0.5s;
    animation-fill-mode: both;
    animation-name: customFadeInUp;
    opacity: 1; }
  .home-libraries .libraries-first .load-animation .info-item h5 {
    animation-delay: 0.2s; }
  .home-libraries .libraries-first .load-animation .info-item h3 {
    animation-delay: 0.4s; }
  .home-libraries .libraries-first .load-animation .info-item .btn-view {
    animation-delay: 0.6s; }
  .home-libraries .libraries-first .lib-content {
    min-height: 300px; }
    @media (min-width: 992px) {
      .home-libraries .libraries-first .lib-content {
        overflow: hidden; }
        .home-libraries .libraries-first .lib-content:hover img, .home-libraries .libraries-first .lib-content:focus img {
          transform: scale(1.1); } }
    @media (min-width: 992px) {
      .home-libraries .libraries-first .lib-content img {
        transition: ease-in 0.3s; } }
  .home-libraries .libraries-first .info-item {
    position: absolute;
    z-index: 2;
    left: 0;
    bottom: 1.786em;
    left: 1.786em;
    right: 0;
    color: #fff; }
    @media (min-width: 992px) {
      .home-libraries .libraries-first .info-item {
        bottom: 2.5em;
        left: 4.286em; } }
    .home-libraries .libraries-first .info-item h5,
    .home-libraries .libraries-first .info-item h3,
    .home-libraries .libraries-first .info-item .btn-view {
      opacity: 0; }
    .home-libraries .libraries-first .info-item h5 {
      font-family: "Gotham-Light", sans-serif;
      font-size: 1.5rem; }
      @media (min-width: 992px) {
        .home-libraries .libraries-first .info-item h5 {
          font-size: 1.543rem; } }
      @media (min-width: 1600px) {
        .home-libraries .libraries-first .info-item h5 {
          font-size: 1.629rem; } }
    .home-libraries .libraries-first .info-item h3 {
      font-family: "HelveticaNeue-UltraLight", sans-serif;
      font-size: 3.429rem;
      line-height: 1;
      margin-bottom: 0.241em; }
      @media (min-width: 992px) {
        .home-libraries .libraries-first .info-item h3 {
          font-size: 3.186rem;
          margin-bottom: 0.583em; } }
      @media (min-width: 1600px) {
        .home-libraries .libraries-first .info-item h3 {
          font-size: 4.357rem; } }

.home-libraries .libraries-second {
  background-color: #f7f6f5; }
  @media (min-width: 992px) {
    .home-libraries .libraries-second {
      background-color: #f0f7f8; } }
  .home-libraries .libraries-second .container {
    padding-left: 0;
    padding-right: 0; }
  .home-libraries .libraries-second .row {
    margin-left: 0;
    margin-right: 0; }
  .home-libraries .libraries-second .lib-item {
    position: relative; }
    .home-libraries .libraries-second .lib-item::before {
      background-position: right bottom;
      background-size: 100%;
      background-repeat: no-repeat;
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      z-index: 0; }
    @media (min-width: 768px) {
      .home-libraries .libraries-second .lib-item {
        padding-left: 0;
        padding-right: 0; }
        .home-libraries .libraries-second .lib-item::before {
          background-size: cover; } }
    @media (min-width: 1200px) {
      .home-libraries .libraries-second .lib-item {
        overflow: hidden;
        background-position-y: 100%;
        padding-left: 30px;
        padding-right: 30px; }
        .home-libraries .libraries-second .lib-item::before {
          top: 100%;
          height: 100%;
          background-size: cover; }
        .home-libraries .libraries-second .lib-item.active::before {
          top: 0; }
        .home-libraries .libraries-second .lib-item.active .lib-content {
          color: #fff; }
          .home-libraries .libraries-second .lib-item.active .lib-content::before {
            opacity: 1;
            filter: alpha(opacity=1); }
        .home-libraries .libraries-second .lib-item.active .btn-view-collection {
          width: auto;
          padding: 8px 25px;
          height: auto;
          border-radius: 0; }
          .home-libraries .libraries-second .lib-item.active .btn-view-collection::before {
            content: none; } }
    @media (min-width: 1600px) {
      .home-libraries .libraries-second .lib-item {
        padding-left: 45px;
        padding-right: 45px; }
        .home-libraries .libraries-second .lib-item.active .btn-view-collection {
          padding: 10px 34px; } }
    .home-libraries .libraries-second .lib-item:nth-child(2n) {
      background-position-x: left; }
    @media (min-width: 992px) {
      .home-libraries .libraries-second .lib-item.item-first .info-item {
        left: 52%; } }
    @media (min-width: 1200px) {
      .home-libraries .libraries-second .lib-item.item-third .info-item {
        left: -8px; } }
  .home-libraries .libraries-second .lib-content {
    min-height: 14em;
    position: relative;
    color: #fff; }
    @media (min-width: 576px) {
      .home-libraries .libraries-second .lib-content {
        min-height: 343px; } }
    @media (min-width: 768px) {
      .home-libraries .libraries-second .lib-content {
        min-height: 240px; } }
    @media (min-width: 1200px) {
      .home-libraries .libraries-second .lib-content {
        min-height: 24.571em;
        color: #000; }
        .home-libraries .libraries-second .lib-content::before {
          bottom: auto;
          opacity: 0;
          filter: alpha(opacity=0); } }
    @media (min-width: 1600px) {
      .home-libraries .libraries-second .lib-content {
        min-height: 28.571em; } }
  .home-libraries .libraries-second .info-item {
    position: absolute;
    left: 3.571em;
    right: 0;
    bottom: 12%;
    z-index: 2; }
    @media (min-width: 1200px) {
      .home-libraries .libraries-second .info-item {
        left: 40px;
        bottom: 27%; } }
    .home-libraries .libraries-second .info-item h6 {
      font-size: 1.046rem;
      font-family: "Gotham-Light", sans-serif;
      margin-bottom: 0.357em; }
      @media (min-width: 992px) {
        .home-libraries .libraries-second .info-item h6 {
          font-size: 1.314rem; } }
      @media (min-width: 1600px) {
        .home-libraries .libraries-second .info-item h6 {
          font-size: 1.643rem; } }
    .home-libraries .libraries-second .info-item h4 {
      font-size: 3.31rem;
      font-family: "HelveticaNeue-UltraLight", sans-serif;
      line-height: 1;
      margin-bottom: 0.259em; }
      @media (min-width: 992px) {
        .home-libraries .libraries-second .info-item h4 {
          font-size: 2.857rem;
          margin-bottom: 0.877em; } }
      @media (min-width: 1600px) {
        .home-libraries .libraries-second .info-item h4 {
          font-size: 3.571rem; } }

.home-libraries .btn-view {
  display: inline-block;
  width: 30px;
  height: 30px;
  background-color: #fff;
  color: #000;
  text-align: center;
  line-height: 35px;
  position: relative;
  border-radius: 50%; }
  @media (min-width: 992px) {
    .home-libraries .btn-view {
      width: 32px;
      height: 32px; } }
  @media (min-width: 1600px) {
    .home-libraries .btn-view {
      width: 34px;
      height: 34px; } }
  .home-libraries .btn-view .sa-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); }

.home-libraries .btn-view-collection {
  display: inline-block;
  color: #000;
  background: #fff;
  padding: 0.6em 2.5em;
  text-transform: uppercase;
  font-family: "Gotham-Bold";
  font-size: 0.714rem;
  overflow: hidden;
  border-radius: 0;
  transition: width ease-in-out 0.3s; }
  @media (min-width: 992px) {
    .home-libraries .btn-view-collection {
      font-size: 0.929rem;
      width: 34px;
      height: 34px;
      position: relative;
      padding: 0;
      border-radius: 50%; }
      .home-libraries .btn-view-collection::before {
        content: "\E903";
        position: absolute;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        line-height: 34px;
        background: #fff;
        font-family: "Samsonite-icons";
        font-style: normal;
        font-weight: normal; } }

.section-product-list {
  padding-top: 50px;
  padding-bottom: 50px;
  position: relative;
  z-index: 10; }
  @media (min-width: 992px) {
    .section-product-list {
      padding-top: 4.857em; } }
  @media (min-width: 1600px) {
    .section-product-list {
      padding-top: 6.0714em; } }
  .section-product-list .container-fluid {
    padding-left: 25px;
    padding-right: 25px; }
  .section-product-list .section-head {
    margin-bottom: 40px; }
    .section-product-list .section-head ul.nav {
      padding-left: 0;
      margin-bottom: 0;
      text-align: center;
      -ms-flex-pack: center;
          justify-content: center;
      -ms-flex-align: center;
          align-items: center;
      border-bottom: 0;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
      margin-right: -15px;
      margin-left: -15px; }
      .section-product-list .section-head ul.nav li {
        list-style: none;
        position: relative;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
        max-width: 50%;
        padding-left: 20px;
        padding-right: 20px;
        font-size: 1.2857rem;
        font-family: "HelveticaNeue-Light";
        text-align: left;
        font-size: 1.357rem; }
        @media (min-width: 992px) {
          .section-product-list .section-head ul.nav li {
            font-size: 1.1429rem;
            padding-left: 2.087em;
            padding-right: 2.087em; } }
        @media (min-width: 1600px) {
          .section-product-list .section-head ul.nav li {
            font-size: 1.4286rem; } }
        .section-product-list .section-head ul.nav li:first-child {
          text-align: right; }
          .section-product-list .section-head ul.nav li:first-child::before {
            content: '';
            position: absolute;
            right: 0;
            top: 50%;
            z-index: 1;
            width: 1px;
            height: 40px;
            background-color: #000;
            margin-top: -20px; }
          @media (min-width: 992px) {
            .section-product-list .section-head ul.nav li:first-child::before {
              height: 47px;
              width: 2px;
              margin-top: -24px; } }
          @media (min-width: 1600px) {
            .section-product-list .section-head ul.nav li:first-child::before {
              height: 67px;
              width: 2px;
              margin-top: -34px; } }
        .section-product-list .section-head ul.nav li a {
          position: relative;
          display: inline-block; }
          .section-product-list .section-head ul.nav li a:hover, .section-product-list .section-head ul.nav li a:focus {
            text-decoration: none;
            color: #000; }
          .section-product-list .section-head ul.nav li a::before {
            content: '';
            position: absolute;
            left: 50%;
            bottom: -5px;
            height: 1px;
            z-index: 1;
            width: 0;
            background-color: #000;
            transition: ease-in 0.3s;
            transform: translateX(-50%); }
          @media (min-width: 992px) {
            .section-product-list .section-head ul.nav li a::before {
              width: 0; }
            .section-product-list .section-head ul.nav li a:hover::before, .section-product-list .section-head ul.nav li a:focus::before {
              width: 100%; } }
          .section-product-list .section-head ul.nav li a.active {
            font-family: "HelveticaNeue-Medium"; }
            .section-product-list .section-head ul.nav li a.active::before {
              width: 100%; }
            @media (min-width: 768px) {
              .section-product-list .section-head ul.nav li a.active::before {
                height: 2px; } }
  .section-product-list .tab-content {
    position: relative; }
    .section-product-list .tab-content > .tab-pane {
      display: block;
      visibility: hidden;
      opacity: 0;
      transition: ease-in 0.3s; }
      .section-product-list .tab-content > .tab-pane.active {
        visibility: visible;
        opacity: 1;
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        z-index: 1; }
  @media (min-width: 992px) {
    .section-product-list .home-product-list {
      padding-left: 8%;
      padding-right: 8%; } }
  .section-product-list .home-product-list.active img {
    animation-duration: 1s;
    animation-fill-mode: both;
    animation-name: fadeIn; }
  .section-product-list .home-product-list .owl-item {
    padding-left: 0;
    padding-right: 0;
    max-width: 120px; }
    @media (min-width: 768px) {
      .section-product-list .home-product-list .owl-item {
        padding-left: 10px;
        padding-right: 10px;
        max-width: none; } }
    @media (min-width: 992px) {
      .section-product-list .home-product-list .owl-item {
        padding-left: 23px;
        padding-right: 23px; } }
  .section-product-list .owl-nav button.owl-prev, .section-product-list .owl-nav button.owl-next {
    width: 26px;
    height: 26px;
    background-color: #000;
    color: #fff;
    font-size: 10px;
    position: absolute;
    z-index: 10;
    top: 35%;
    border-radius: 50%; }
    @media (min-width: 992px) {
      .section-product-list .owl-nav button.owl-prev, .section-product-list .owl-nav button.owl-next {
        width: 30px;
        height: 30px;
        font-size: 0.857rem;
        top: 35%; } }
    @media (min-width: 1600px) {
      .section-product-list .owl-nav button.owl-prev, .section-product-list .owl-nav button.owl-next {
        width: 40px;
        height: 40px;
        font-size: 1.0714rem; } }
  .section-product-list .owl-nav button::before {
    content: "\E903";
    position: absolute;
    left: 50%;
    top: 50%;
    font-family: "Samsonite-icons";
    font-style: normal;
    font-weight: normal;
    transform: translate(-50%, -50%); }
  .section-product-list .owl-nav button.owl-prev {
    left: -10px;
    background-color: #000; }
    .section-product-list .owl-nav button.owl-prev::before {
      content: "\E902"; }
    @media (min-width: 992px) {
      .section-product-list .owl-nav button.owl-prev {
        left: -40px; } }
  .section-product-list .owl-nav button.owl-next {
    right: -10px;
    left: auto;
    background-color: #000; }
    .section-product-list .owl-nav button.owl-next::before {
      content: "\E903"; }
    @media (min-width: 992px) {
      .section-product-list .owl-nav button.owl-next {
        right: -40px; } }
  .section-product-list .owl-nav span {
    display: none; }
  .section-product-list .product-tile {
    min-height: 0;
    position: relative; }
    .section-product-list .product-tile .tile-body {
      padding-bottom: 0;
      padding-top: 10px; }
    .section-product-list .product-tile .image-container {
      padding-left: 10px;
      padding-right: 10px; }
      .section-product-list .product-tile .image-container img {
        max-width: 100%; }
    .section-product-list .product-tile .tile-message {
      top: 0.714em; }
    .section-product-list .product-tile .tile-top-left {
      left: 0; }
    .section-product-list .product-tile .tile-top-right {
      right: 0; }
    .section-product-list .product-tile .product-sticker img {
      max-width: 1.5em; }
    .section-product-list .product-tile .tile-body-field-group {
      display: block; }
    .section-product-list .product-tile .tile-group-left,
    .section-product-list .product-tile .tile-group-right {
      max-width: none;
      -ms-flex: auto;
          flex: auto; }
    .section-product-list .product-tile .p-w-r .pr-snippet .pr-snippet-stars-png .pr-rating-stars {
      text-align: left; }
    .section-product-list .product-tile .product-collection h4 {
      font-size: 0.929rem;
      text-transform: uppercase;
      margin-bottom: 0; }
      @media (min-width: 992px) {
        .section-product-list .product-tile .product-collection h4 {
          font-size: 1.2143rem; } }
      @media (min-width: 1600px) {
        .section-product-list .product-tile .product-collection h4 {
          font-size: 1.4286rem; } }
    .section-product-list .product-tile .pdp-link {
      font-size: 0.714rem;
      text-transform: uppercase; }
      @media (min-width: 992px) {
        .section-product-list .product-tile .pdp-link {
          font-size: 0.857rem; } }
      @media (min-width: 1600px) {
        .section-product-list .product-tile .pdp-link {
          font-size: 0.929rem; } }

.home-why-shop-with-us {
  position: relative;
  z-index: 2;
  margin-top: -30px; }
  @media (min-width: 992px) {
    .home-why-shop-with-us {
      margin-top: -2.714em;
      margin-bottom: 0.5em; } }
  @media (min-width: 1600px) {
    .home-why-shop-with-us {
      margin-top: -3.214em; } }
  .home-why-shop-with-us .container {
    padding-left: 25px;
    padding-right: 25px; }
  .home-why-shop-with-us .content {
    font-family: "HelveticaNeue-Light", sans-serif;
    background-color: #fff; }
    .home-why-shop-with-us .content .image {
      margin-bottom: 1em;
      padding-left: 25px;
      padding-right: 25px; }
      .home-why-shop-with-us .content .image img {
        height: 70px;
        width: auto;
        max-width: 90px; }
    .home-why-shop-with-us .content h6 {
      font-size: 1.214rem;
      margin-bottom: 0.588em; }
      @media (min-width: 768px) {
        .home-why-shop-with-us .content h6 {
          font-size: 1.0714rem; } }
      @media (min-width: 1600px) {
        .home-why-shop-with-us .content h6 {
          font-size: 1.2857rem; } }
    .home-why-shop-with-us .content p {
      font-size: 0.786rem;
      text-align: left; }
      @media (min-width: 768px) {
        .home-why-shop-with-us .content p {
          font-size: 1rem; } }
      @media (min-width: 1600px) {
        .home-why-shop-with-us .content p {
          font-size: 1.036rem; } }
  .home-why-shop-with-us h2 {
    font-size: 1.214rem;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-top: 10px;
    padding-bottom: 10px; }
    .home-why-shop-with-us h2::before {
      content: '';
      background-color: #fff;
      position: absolute;
      left: 0;
      right: 0;
      top: 0;
      bottom: 0;
      z-index: -1; }
    @media (min-width: 768px) {
      .home-why-shop-with-us h2 {
        font-size: 1.314rem; } }
    @media (min-width: 992px) {
      .home-why-shop-with-us h2 {
        margin-bottom: 2.143em;
        padding-top: 1.648em;
        padding-bottom: 0.448em; } }
    @media (min-width: 1600px) {
      .home-why-shop-with-us h2 {
        font-size: 1.643rem; } }
  .home-why-shop-with-us ul {
    padding-left: 0;
    margin-bottom: 0;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px; }
    .home-why-shop-with-us ul li {
      list-style: none;
      text-align: center;
      margin-bottom: 1.786em;
      position: relative;
      width: 100%;
      min-height: 1px;
      padding-right: 15px;
      padding-left: 15px;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
      max-width: 50%; }
      @media (min-width: 992px) {
        .home-why-shop-with-us ul li {
          -ms-flex: 0 0 25%;
              flex: 0 0 25%;
          max-width: 25%; } }
      @media (min-width: 992px) {
        .home-why-shop-with-us ul li {
          padding-left: 3.714em;
          padding-right: 3.714em; } }
      @media (min-width: 1600px) {
        .home-why-shop-with-us ul li {
          padding-left: 5.143em;
          padding-right: 5.143em; } }

@media (min-width: 768px) {
  .home-story-and-finder {
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 30px;
    margin-top: 30px;
    position: relative; }
    .home-story-and-finder::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      right: 0;
      z-index: 0;
      height: 64%;
      background-color: #f7f6f5; } }

.home-story-and-finder .load-animation h6,
.home-story-and-finder .load-animation h3,
.home-story-and-finder .load-animation .btn-view {
  animation-duration: 0.5s;
  animation-fill-mode: both;
  animation-name: customFadeInUp;
  opacity: 1; }

.home-story-and-finder .load-animation h6 {
  animation-delay: 0.2s; }

.home-story-and-finder .load-animation h3 {
  animation-delay: 0.4s; }

.home-story-and-finder .load-animation .btn-view {
  animation-delay: 0.6s; }

@media (min-width: 992px) {
  .home-story-and-finder {
    padding-left: 70px;
    padding-right: 70px;
    padding-bottom: 10px;
    margin-top: 60px; } }

.home-story-and-finder .row {
  margin: 0;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto; }

.home-story-and-finder .col-12 {
  padding: 0;
  z-index: 1; }
  @media (min-width: 768px) {
    .home-story-and-finder .col-12 {
      padding-left: 3px;
      padding-right: 3px; } }

.home-story-and-finder .image img {
  width: 100%; }

.home-story-and-finder .info {
  position: absolute;
  z-index: 1;
  left: 15px; }
  @media (min-width: 768px) {
    .home-story-and-finder .info {
      left: 20px; } }
  @media (min-width: 992px) {
    .home-story-and-finder .info {
      left: 35px; } }

.home-story-and-finder .first-item {
  margin-bottom: 10px; }
  @media (min-width: 768px) {
    .home-story-and-finder .first-item {
      margin-bottom: 0; } }
  .home-story-and-finder .first-item .info {
    bottom: 40px; }
    @media (min-width: 768px) {
      .home-story-and-finder .first-item .info {
        bottom: auto;
        top: 50%;
        transform: translateY(-50%); } }

.home-story-and-finder .second-item .info {
  top: 10px; }
  @media (min-width: 992px) {
    .home-story-and-finder .second-item .info {
      top: 35px; } }

.home-story-and-finder h6,
.home-story-and-finder h3,
.home-story-and-finder .btn-view {
  opacity: 0;
  filter: alpha(opacity=0); }

.home-story-and-finder h6 {
  font-size: 1.275rem;
  font-family: "Gotham-Light", sans-serif; }
  @media (min-width: 992px) {
    .home-story-and-finder h6 {
      font-size: 1.2rem; } }
  @media (min-width: 1600px) {
    .home-story-and-finder h6 {
      font-size: 1.5rem; } }

.home-story-and-finder h3 {
  font-size: 3.764rem;
  font-family: "HelveticaNeue-UltraLight", sans-serif;
  line-height: 1;
  margin-bottom: 15px; }
  @media (min-width: 768px) {
    .home-story-and-finder h3 {
      font-size: 3rem; } }
  @media (min-width: 992px) {
    .home-story-and-finder h3 {
      font-size: 3.5714rem; } }
  @media (min-width: 1600px) {
    .home-story-and-finder h3 {
      font-size: 4.286rem; } }

.home-story-and-finder .btn-view {
  display: inline-block;
  width: 30px;
  height: 30px;
  background-color: #fff;
  color: #000;
  text-align: center;
  line-height: 35px;
  position: relative;
  border-radius: 50%; }
  @media (min-width: 992px) {
    .home-story-and-finder .btn-view {
      width: 32px;
      height: 32px; } }
  @media (min-width: 1600px) {
    .home-story-and-finder .btn-view {
      width: 34px;
      height: 34px; } }
  .home-story-and-finder .btn-view .sa-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); }

.float-banner-wrapper {
  position: absolute;
  z-index: 102;
  left: 0;
  padding: 2.2em 1em 1em;
  max-width: 10em;
  max-height: 25.14em;
  top: 50%;
  overflow: hidden;
  transform: translateY(-50%);
  transition: ease-in 0.3s; }
  .float-banner-wrapper.minimized {
    max-width: 2.85em;
    padding: 1em 0.5em; }
    .float-banner-wrapper.minimized::before {
      background: rgba(255, 255, 255, 0.8);
      border-radius: 0 12px 12px 0; }
    .float-banner-wrapper.minimized h2,
    .float-banner-wrapper.minimized p,
    .float-banner-wrapper.minimized .close {
      display: none; }
    .float-banner-wrapper.minimized .brand-list li {
      padding-top: 0.5em;
      padding-bottom: 0.5em; }
    .float-banner-wrapper.minimized .brand-list img {
      display: none; }
      .float-banner-wrapper.minimized .brand-list img.minimized {
        display: block; }
  .float-banner-wrapper .close {
    position: absolute;
    top: 0;
    right: 0;
    width: 30px;
    height: 30px;
    z-index: 1; }
  .float-banner-wrapper h2 {
    font-family: "HelveticaNeue-UltraLight";
    font-size: 1.5714rem;
    margin-bottom: 0.5em; }
  .float-banner-wrapper p {
    font-family: "Gotham-Light";
    font-size: 0.786rem; }
  .float-banner-wrapper .brand-list {
    margin-bottom: 0;
    padding-left: 0;
    list-style: none; }
    .float-banner-wrapper .brand-list li {
      padding-top: 1em;
      padding-bottom: 1em;
      border-bottom: 1px solid #000; }
      .float-banner-wrapper .brand-list li:last-child {
        border-bottom: none; }
      .float-banner-wrapper .brand-list li .minimized {
        display: none; }

.section-home-content {
  background-color: #fff;
  position: relative; }

@media (min-width: 1600px) {
  .section-hero-slider {
    margin-top: -101px; } }
