/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.1
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2016 Daniel Eden
 */
.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.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
}

@-webkit-keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
@keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
.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: none;
    transform: none;
  }

  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes wobble {
  from {
    -webkit-transform: none;
    transform: none;
  }

  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}
.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes jello {
  from, 11.1%, to {
    -webkit-transform: none;
    transform: none;
  }

  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }

  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }

  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }

  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }

  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }

  77.7% {
    -webkit-transform: skewX(0.39063deg) skewY(0.39063deg);
    transform: skewX(0.39063deg) skewY(0.39063deg);
  }

  88.8% {
    -webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg);
    transform: skewX(-0.19531deg) skewY(-0.19531deg);
  }
}
@keyframes jello {
  from, 11.1%, to {
    -webkit-transform: none;
    transform: none;
  }

  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }

  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }

  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }

  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }

  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }

  77.7% {
    -webkit-transform: skewX(0.39063deg) skewY(0.39063deg);
    transform: skewX(0.39063deg) skewY(0.39063deg);
  }

  88.8% {
    -webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg);
    transform: skewX(-0.19531deg) skewY(-0.19531deg);
  }
}
.jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  transform-origin: center;
}

@-webkit-keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }

  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }

  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}
.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}
.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}
.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-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: none;
    transform: none;
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.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: none;
    transform: none;
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.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: none;
    transform: none;
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.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: none;
    transform: none;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.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) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
@keyframes flip {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
.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-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-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);
    opacity: 1;
  }

  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@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);
    opacity: 1;
  }

  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.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: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}

@-webkit-keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
.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-name: hinge;
  animation-name: hinge;
}

/* 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: none;
    transform: none;
  }
}
@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: none;
    transform: none;
  }
}
.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;
}

/* 
 * 	Core Owl Carousel CSS File
 *	v1.3.3
 */
#owl-demo .item {
  margin: 3px;
  padding: 40px;
}

#owl-demo .item img {
  display: block;
  width: 100%;
  height: auto;
}

/* clearfix */
.owl-carousel .owl-wrapper:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

/* display none until init */
.owl-carousel {
  display: none;
  position: relative;
  width: 100%;
  -ms-touch-action: pan-y;
}

.owl-carousel .owl-wrapper {
  display: none;
  position: relative;
  -webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-wrapper-outer {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.owl-carousel .owl-wrapper-outer.autoHeight {
  -webkit-transition: height 500ms ease-in-out;
  -moz-transition: height 500ms ease-in-out;
  -ms-transition: height 500ms ease-in-out;
  -o-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out;
}

.owl-carousel .owl-item {
  float: left;
}

.owl-controls .owl-page,
.owl-controls .owl-buttons div {
  cursor: pointer;
}

.owl-controls {
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

/* mouse grab icon */
.grabbing {
  cursor: url(grabbing.png) 8 8, move;
}

/* fix */
.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 Demo Theme 
*	v1.3.3
*/
.owl-theme .owl-controls {
  margin-top: 10px;
  text-align: center;
}

/* Styling Next and Prev buttons */
.owl-theme .owl-controls .owl-buttons div {
  color: #FFF;
  display: inline-block;
  zoom: 1;
  *display: inline;
  /*IE7 life-saver */
  margin: 5px;
  padding: 3px 10px;
  font-size: 12px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
  background: #869791;
  filter: Alpha(Opacity=50);
  /*IE7 fix*/
  opacity: 0.5;
}

/* Clickable class fix problem with hover on touch devices */
/* Use it for non-touch hover action */
.owl-theme .owl-controls.clickable .owl-buttons div:hover {
  filter: Alpha(Opacity=100);
  /*IE7 fix*/
  opacity: 1;
  text-decoration: none;
}

/* Styling Pagination*/
.owl-theme .owl-controls .owl-page {
  display: inline-block;
  zoom: 1;
  *display: inline;
  /*IE7 life-saver */
}

.owl-theme .owl-controls .owl-page span {
  display: block;
  width: 12px;
  height: 12px;
  margin: 5px 7px;
  filter: Alpha(Opacity=50);
  /*IE7 fix*/
  opacity: 0.5;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  background: #869791;
}

.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls.clickable .owl-page:hover span {
  filter: Alpha(Opacity=100);
  /*IE7 fix*/
  opacity: 1;
}

/* If PaginationNumbers is true */
.owl-theme .owl-controls .owl-page span.owl-numbers {
  height: auto;
  width: auto;
  color: #FFF;
  padding: 2px 10px;
  font-size: 12px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
}

/* preloading images */
.owl-item.loading {
  min-height: 150px;
  background: url(AjaxLoader.gif) no-repeat center center;
}

/* 
 *  Owl Carousel CSS3 Transitions 
 *  v1.3.2
 */
.owl-origin {
  -webkit-perspective: 1200px;
  -webkit-perspective-origin-x: 50%;
  -webkit-perspective-origin-y: 50%;
  -moz-perspective: 1200px;
  -moz-perspective-origin-x: 50%;
  -moz-perspective-origin-y: 50%;
  perspective: 1200px;
}

/* fade */
.owl-fade-out {
  z-index: 10;
  -webkit-animation: fadeOut .7s both ease;
  -moz-animation: fadeOut .7s both ease;
  animation: fadeOut .7s both ease;
}

.owl-fade-in {
  -webkit-animation: fadeIn .7s both ease;
  -moz-animation: fadeIn .7s both ease;
  animation: fadeIn .7s both ease;
}

/* backSlide */
.owl-backSlide-out {
  -webkit-animation: backSlideOut 1s both ease;
  -moz-animation: backSlideOut 1s both ease;
  animation: backSlideOut 1s both ease;
}

.owl-backSlide-in {
  -webkit-animation: backSlideIn 1s both ease;
  -moz-animation: backSlideIn 1s both ease;
  animation: backSlideIn 1s both ease;
}

/* goDown */
.owl-goDown-out {
  -webkit-animation: scaleToFade .7s ease both;
  -moz-animation: scaleToFade .7s ease both;
  animation: scaleToFade .7s ease both;
}

.owl-goDown-in {
  -webkit-animation: goDown .6s ease both;
  -moz-animation: goDown .6s ease both;
  animation: goDown .6s ease both;
}

/* scaleUp */
.owl-fadeUp-in {
  -webkit-animation: scaleUpFrom .5s ease both;
  -moz-animation: scaleUpFrom .5s ease both;
  animation: scaleUpFrom .5s ease both;
}

.owl-fadeUp-out {
  -webkit-animation: scaleUpTo .5s ease both;
  -moz-animation: scaleUpTo .5s ease both;
  animation: scaleUpTo .5s ease both;
}

/* Keyframes */
/*empty*/
@-webkit-keyframes empty {
  0% {
    opacity: 1;
  }
}
@-moz-keyframes empty {
  0% {
    opacity: 1;
  }
}
@keyframes empty {
  0% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}
@-moz-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}
@-moz-keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}
@-webkit-keyframes backSlideOut {
  25% {
    opacity: .5;
    -webkit-transform: translateZ(-500px);
  }

  75% {
    opacity: .5;
    -webkit-transform: translateZ(-500px) translateX(-200%);
  }

  100% {
    opacity: .5;
    -webkit-transform: translateZ(-500px) translateX(-200%);
  }
}
@-moz-keyframes backSlideOut {
  25% {
    opacity: .5;
    -moz-transform: translateZ(-500px);
  }

  75% {
    opacity: .5;
    -moz-transform: translateZ(-500px) translateX(-200%);
  }

  100% {
    opacity: .5;
    -moz-transform: translateZ(-500px) translateX(-200%);
  }
}
@keyframes backSlideOut {
  25% {
    opacity: .5;
    transform: translateZ(-500px);
  }

  75% {
    opacity: .5;
    transform: translateZ(-500px) translateX(-200%);
  }

  100% {
    opacity: .5;
    transform: translateZ(-500px) translateX(-200%);
  }
}
@-webkit-keyframes backSlideIn {
  0%, 25% {
    opacity: .5;
    -webkit-transform: translateZ(-500px) translateX(200%);
  }

  75% {
    opacity: .5;
    -webkit-transform: translateZ(-500px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateZ(0) translateX(0);
  }
}
@-moz-keyframes backSlideIn {
  0%, 25% {
    opacity: .5;
    -moz-transform: translateZ(-500px) translateX(200%);
  }

  75% {
    opacity: .5;
    -moz-transform: translateZ(-500px);
  }

  100% {
    opacity: 1;
    -moz-transform: translateZ(0) translateX(0);
  }
}
@keyframes backSlideIn {
  0%, 25% {
    opacity: .5;
    transform: translateZ(-500px) translateX(200%);
  }

  75% {
    opacity: .5;
    transform: translateZ(-500px);
  }

  100% {
    opacity: 1;
    transform: translateZ(0) translateX(0);
  }
}
@-webkit-keyframes scaleToFade {
  to {
    opacity: 0;
    -webkit-transform: scale(0.8);
  }
}
@-moz-keyframes scaleToFade {
  to {
    opacity: 0;
    -moz-transform: scale(0.8);
  }
}
@keyframes scaleToFade {
  to {
    opacity: 0;
    transform: scale(0.8);
  }
}
@-webkit-keyframes goDown {
  from {
    -webkit-transform: translateY(-100%);
  }
}
@-moz-keyframes goDown {
  from {
    -moz-transform: translateY(-100%);
  }
}
@keyframes goDown {
  from {
    transform: translateY(-100%);
  }
}
@-webkit-keyframes scaleUpFrom {
  from {
    opacity: 0;
    -webkit-transform: scale(1.5);
  }
}
@-moz-keyframes scaleUpFrom {
  from {
    opacity: 0;
    -moz-transform: scale(1.5);
  }
}
@keyframes scaleUpFrom {
  from {
    opacity: 0;
    transform: scale(1.5);
  }
}
@-webkit-keyframes scaleUpTo {
  to {
    opacity: 0;
    -webkit-transform: scale(1.5);
  }
}
@-moz-keyframes scaleUpTo {
  to {
    opacity: 0;
    -moz-transform: scale(1.5);
  }
}
@keyframes scaleUpTo {
  to {
    opacity: 0;
    transform: scale(1.5);
  }
}
/*-------------------------------- begin menu-mobile ------------------------------------*/
.is-hidden {
  overflow: hidden;
}
.is-hidden .menu-mobile .topNav {
  position: fixed;
  top: 10px;
}

.menu-mobile .topNav-toggle, .menu-mobile [hidden], .menu-mobile template {
  display: none;
}
.menu-mobile .main.-hp:after, .menu-mobile .-hp.DetailViewTwelve:after, .menu-mobile .mainHeader-scrollDown, .menu-mobile .mainHeader-videoBackground, .menu-mobile .topNav, .menu-mobile .topNav-bannerWrapper:after, .menu-mobile .topNav-inner {
  left: 0;
  right: 0;
  bottom: 0;
}
.menu-mobile .darkTheme .mainHeader-intro, .menu-mobile .grid-item, .menu-mobile .headline, .menu-mobile .mainNav-itemTitle, .menu-mobile .newsletter-title, .menu-mobile .section-figcaption {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: antialiased;
}
.menu-mobile .topNav-logoIndicator, .menu-mobile .topNav-menu:before {
  letter-spacing: .2em;
  text-transform: uppercase;
}
.menu-mobile button, .menu-mobile html input[type=button], .menu-mobile input[type=reset], .menu-mobile input[type=submit] {
  -webkit-appearance: button;
  cursor: pointer;
}
.menu-mobile button[disabled], .menu-mobile html input[disabled] {
  cursor: default;
}
.menu-mobile .roundedCta, .menu-mobile .topNav-menu {
  cursor: pointer;
  text-decoration: none;
}
.menu-mobile .topNav {
  position: absolute;
  z-index: 990;
  pointer-events: none;
  color: #fff;
}
@media (min-width: 620px) and (max-width: 767px) {
  .menu-mobile .topNav {
    top: 129px;
  }
}
@media (max-width: 619px) {
  .menu-mobile .topNav {
    top: 179px;
  }
}
.menu-mobile .topNav-inner {
  position: absolute;
  top: 0;
  overflow-y: hidden;
}
.menu-mobile .topNav-toggle:checked ~ .topNav-inner {
  overflow-y: scroll;
}
.menu-mobile .topNav-bannerWrapper {
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 48em) {
  .menu-mobile .topNav-bannerWrapper {
    padding: 0 5rem;
  }
}
@media screen and (min-width: 64em) {
  .menu-mobile .topNav-bannerWrapper {
    padding: 0 5rem;
  }
}
.menu-mobile .topNav-bannerWrapper:after {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  background-color: rgba(0, 0, 0, 0.6);
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-transition: -webkit-transform .2s ease-out;
  transition: transform .2s ease-out;
}
.menu-mobile .mainHeader-cover, .menu-mobile .mainHeader-intro, .menu-mobile .topNav-backToHome {
  position: relative;
  z-index: 1;
}
.menu-mobile .topNav-bannerWrapper.is-scrolled:after {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
.menu-mobile .topNav-toggle:checked ~ .topNav-inner .topNav-bannerWrapper:after {
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
}
.menu-mobile .topNav-bannerInner {
  margin: auto;
  display: table;
  width: 100%;
  height: 5rem;
  max-width: 144rem;
}
@media screen and (min-width: 48em) {
  .menu-mobile .topNav-bannerInner {
    height: 6rem;
  }
}
@media screen and (min-width: 64em) {
  .menu-mobile .topNav-bannerInner {
    height: 8rem;
  }
}
.menu-mobile .topNav-left, .menu-mobile .topNav-right {
  display: table-cell;
  vertical-align: middle;
  font-size: 0;
}
.menu-mobile .topNav-backToHome, .menu-mobile .topNav-logoIndicator, .menu-mobile .topNav-menu, .menu-mobile .topNav-menu:before, .menu-mobile .topNav-menuIcon {
  display: inline-block;
  vertical-align: middle;
}
.menu-mobile .topNav-left svg g, .menu-mobile .topNav-right svg g {
  -webkit-transition: stroke .3s ease-out;
  transition: stroke .3s ease-out;
}
.menu-mobile .darkTheme .topNav-left svg g, .menu-mobile .darkTheme .topNav-right svg g, .menu-mobile .is-scrolled .topNav-left svg g, .menu-mobile .is-scrolled .topNav-right svg g, .menu-mobile .topNav-toggle:checked ~ .topNav-inner .topNav-left svg g, .menu-mobile .topNav-toggle:checked ~ .topNav-inner .topNav-right svg g {
  stroke: #fff;
}
.menu-mobile .topNav-backToHome {
  text-decoration: none;
  pointer-events: auto;
}
.menu-mobile .topNav-backToHome:focus ~ .topNav-logoIndicator, .menu-mobile .topNav-backToHome:hover ~ .topNav-logoIndicator {
  opacity: 1;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}
.menu-mobile .topNav-logo {
  width: 30px;
  height: 15px;
}
@media screen and (min-width: 93.75em) {
  .menu-mobile .topNav-bannerWrapper {
    padding: 0 9rem;
  }
  .menu-mobile .topNav-logo {
    width: 35px;
    height: 18px;
  }
}
.menu-mobile .topNav-logo path {
  -webkit-transition: fill .3s ease-out;
  transition: fill .3s ease-out;
}
.menu-mobile .topNav-toggle:checked ~ .topNav-inner .topNav-logo {
  background-color: transparent;
}
.menu-mobile .darkTheme .topNav-logo path, .menu-mobile .is-scrolled .topNav-logo path, .menu-mobile .topNav-toggle:checked ~ .topNav-inner .topNav-logo path {
  fill: #fff;
}
.menu-mobile .topNav-logoIndicator {
  padding-left: 1rem;
  font-size: 1.1rem;
  text-decoration: none;
  color: #13171F;
  opacity: 0;
  -webkit-transform: translateX(-0.5em);
  -ms-transform: translateX(-0.5em);
  transform: translateX(-0.5em);
  -webkit-transition: -webkit-transform .2s ease-out, opacity .2s ease-out, color .3s ease-out;
  transition: transform .2s ease-out, opacity .2s ease-out, color .3s ease-out;
  pointer-events: none;
}
@media screen and (min-width: 93.75em) {
  .menu-mobile .topNav-logoIndicator {
    font-size: 1.2rem;
  }
}
.menu-mobile .darkTheme .topNav-logoIndicator, .menu-mobile .is-scrolled .topNav-logoIndicator, .menu-mobile .topNav-toggle:checked ~ .topNav-inner .topNav-logoIndicator {
  color: #fff;
}
.menu-mobile .topNav-right {
  font-size: 0;
  text-align: right;
  text-decoration: none;
}
.menu-mobile .topNav-menu {
  pointer-events: auto;
  outline-width: 0;
  background: #1b1d1f;
  padding: 5px 10px;
}
.menu-mobile .topNav-menu:before {
  content: 'Menu';
  padding-right: 1rem;
  font-size: 1.1rem;
  text-decoration: none;
  color: #fff;
  -webkit-transition: color .3s ease-out;
  transition: color .3s ease-out;
}
.menu-mobile .article-inner .article-intro, .menu-mobile .cards-desc, .menu-mobile .cards-info, .menu-mobile .cards-intro, .menu-mobile .grid-desc, .menu-mobile .headline-desc, .menu-mobile .mainHeader-headline, .menu-mobile .section-ctaTxt, .menu-mobile .section-quote, .menu-mobile .section-subtitle, .menu-mobile .team-desc {
  letter-spacing: .05em;
}
.menu-mobile .darkTheme .topNav-menu:before, .menu-mobile .is-scrolled .topNav-menu:before, .menu-mobile .topNav-toggle:checked ~ .topNav-inner .topNav-menu:before {
  color: #fff;
}
.menu-mobile .topNav-toggle:checked ~ .topNav-inner .topNav-menu:before {
  content: 'Close';
}
.menu-mobile .headline-title.-bubble:after, .menu-mobile .main.-hp:after, .menu-mobile .-hp.DetailViewTwelve:after, .menu-mobile .mainHeader-videoContainer:after, .menu-mobile .mainHeader-videoContainer:before {
  content: '';
}
.menu-mobile .topNav-toggle:checked ~ .topNav-inner .topNav-menu .path-1 {
  -webkit-transform: rotate(45deg) translateX(5px) translateY(-3px);
  -ms-transform: rotate(45deg) translateX(5px) translateY(-3px);
  transform: rotate(45deg) translateX(5px) translateY(-3px);
}
.menu-mobile .topNav-toggle:checked ~ .topNav-inner .topNav-menu .path-2 {
  opacity: 0;
}
@media all and (-ms-high-contrast: none) {
  .menu-mobile .topNav-toggle:checked ~ .topNav-inner .topNav-menu .path-2 {
    opacity: 1;
  }
  .menu-mobile .topNav-toggle:checked ~ .topNav-inner .topNav-menu .path-2, .menu-mobile .topNav-toggle:checked ~ .topNav-inner .topNav-menu ::-ms-backdrop {
    opacity: 1;
  }
}
.menu-mobile .edge .topNav-toggle:checked ~ .topNav-inner .topNav-menu .path-2 {
  opacity: 1;
}
.menu-mobile .topNav-toggle:checked ~ .topNav-inner .topNav-menu .path-3 {
  -webkit-transform: rotate(-45deg) translateX(5px) translateY(3px);
  -ms-transform: rotate(-45deg) translateX(5px) translateY(3px);
  transform: rotate(-45deg) translateX(5px) translateY(3px);
}
.menu-mobile .topNav-menuIcon {
  width: 24px;
  height: 24px;
}
.menu-mobile .topNav-menuIcon .path-1, .menu-mobile .topNav-menuIcon .path-3 {
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: rotate(0);
  -webkit-transition: -webkit-transform 0.35s cubic-bezier(0.67, -0.57, 0.43, 1.51);
  transition: transform 0.35s cubic-bezier(0.67, -0.57, 0.43, 1.51);
}
.menu-mobile .topNav-menuIcon .path-2 {
  -webkit-transition: opacity .35s ease-out;
  transition: opacity .35s ease-out;
}
.menu-mobile .topNav-menuIcon .path-1 {
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
}
.menu-mobile .topNav-menuIcon .path-3 {
  -webkit-transform-origin: 0 24px;
  -ms-transform-origin: 0 24px;
  transform-origin: 0 24px;
}
.menu-mobile .mainNav-itemTitleExternal:after, .menu-mobile .mainNav-link:after, .menu-mobile .mainNav:after, .menu-mobile .mainNav:before, .menu-mobile .team-desc:before, .menu-mobile .team-imgContainer:before {
  content: '';
}
.menu-mobile .mainNav-list, .menu-mobile .roundedCta {
  vertical-align: middle;
  text-align: center;
}
.menu-mobile .mainNav {
  background: #1b1d1f;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: visibility 0s linear .3s, opacity ease-out .3s;
  transition: visibility 0s linear .3s, opacity ease-out .3s;
  pointer-events: auto;
  overflow-y: scroll;
}
.menu-mobile .mainNav:after, .menu-mobile .mainNav:before {
  position: fixed;
  z-index: 1;
  left: 0;
  right: 0;
  height: 5rem;
  display: none;
}
@media screen and (min-width: 48em) {
  .menu-mobile .mainNav:after, .menu-mobile .mainNav:before {
    height: 6rem;
  }
}
@media screen and (min-width: 64em) {
  .menu-mobile .mainNav:after, .menu-mobile .mainNav:before {
    height: 8rem;
  }
}
.menu-mobile .mainNav:before {
  top: 0;
  background: -webkit-linear-gradient(#4b8bf2, rgba(83, 144, 236, 0));
  background: linear-gradient(#4b8bf2, rgba(83, 144, 236, 0));
}
.menu-mobile .mainNav:after {
  bottom: 0;
  background: -webkit-linear-gradient(rgba(83, 144, 236, 0), #4b8bf2);
  background: linear-gradient(rgba(83, 144, 236, 0), #4b8bf2);
}
.menu-mobile .topNav-toggle:checked ~ .topNav-inner .mainNav {
  visibility: visible;
  opacity: 1;
  -webkit-transition: visibility 0s linear 0s, opacity ease-out .3s;
  transition: visibility 0s linear 0s, opacity ease-out .3s;
}
.menu-mobile .mainNav-inner {
  padding: 1rem 0;
  display: table;
  height: 100%;
  width: 100%;
  overflow: hidden;
}
@media screen and (min-width: 48em) {
  .menu-mobile .mainNav-inner {
    padding: 6rem 0;
  }
}
@media screen and (min-width: 64em) {
  .menu-mobile .mainNav-inner {
    padding: 8rem 0;
  }
}
.menu-mobile .mainNav-list {
  margin: 0 auto;
  padding: 0;
  display: table-cell;
  list-style: none;
}
.menu-mobile .mainNav-item {
  position: relative;
  opacity: 0;
  -webkit-transform: translateY(-20%);
  -ms-transform: translateY(-20%);
  transform: translateY(-20%);
  -webkit-transition: all .3s ease-out;
  transition: all .3s ease-out;
}
.menu-mobile .mainNav-item + .mainNav-item .mainNav-link:before {
  content: '';
  margin: auto;
  display: block;
  max-width: 144rem;
  height: 1px;
  background-color: #fff;
}
.menu-mobile .mainNav-list .mainNav-item:nth-child(1) {
  -webkit-transition: opacity ease-out .3s -.14118s, -webkit-transform ease-out .3s -.14118s;
  transition: opacity ease-out .3s -.14118s, transform ease-out .3s -.14118s;
}
.menu-mobile .mainNav-list .mainNav-item:nth-child(2) {
  -webkit-transition: opacity ease-out .3s -.08235s, -webkit-transform ease-out .3s -.08235s;
  transition: opacity ease-out .3s -.08235s, transform ease-out .3s -.08235s;
}
.menu-mobile .mainNav-list .mainNav-item:nth-child(3) {
  -webkit-transition: opacity ease-out .3s -.02353s, -webkit-transform ease-out .3s -.02353s;
  transition: opacity ease-out .3s -.02353s, transform ease-out .3s -.02353s;
}
.menu-mobile .mainNav-list .mainNav-item:nth-child(4) {
  -webkit-transition: opacity ease-out .3s 35.29ms, -webkit-transform ease-out .3s 35.29ms;
  transition: opacity ease-out .3s 35.29ms, transform ease-out .3s 35.29ms;
}
.menu-mobile .mainNav-list .mainNav-item:nth-child(5) {
  -webkit-transition: opacity ease-out .3s .09412s, -webkit-transform ease-out .3s .09412s;
  transition: opacity ease-out .3s .09412s, transform ease-out .3s .09412s;
}
.menu-mobile .mainNav-list .mainNav-item:nth-child(6) {
  -webkit-transition: opacity ease-out .3s .15294s, -webkit-transform ease-out .3s .15294s;
  transition: opacity ease-out .3s .15294s, transform ease-out .3s .15294s;
}
.menu-mobile .mainNav-list .mainNav-item:nth-child(7) {
  -webkit-transition: opacity ease-out .3s .21176s, -webkit-transform ease-out .3s .21176s;
  transition: opacity ease-out .3s .21176s, transform ease-out .3s .21176s;
}
.menu-mobile .mainNav-list .mainNav-item:nth-child(8) {
  -webkit-transition: opacity ease-out .3s .27059s, -webkit-transform ease-out .3s .27059s;
  transition: opacity ease-out .3s .27059s, transform ease-out .3s .27059s;
}
.menu-mobile .topNav-toggle:checked ~ .topNav-inner .mainNav-item {
  opacity: 1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
.menu-mobile .mainNav-link {
  padding: 0 2rem;
  display: block;
  height: 6rem;
  line-height: 6rem;
  font-size: 1.8rem;
  font-weight: 300;
  text-decoration: none;
  color: #fff;
}
@media screen and (min-width: 64em) {
  .menu-mobile .mainNav-link {
    height: 11rem;
    line-height: 11rem;
    font-size: 3.2rem;
  }
  .menu-mobile .mainNav-link:focus:after, .menu-mobile .mainNav-link:hover:after {
    opacity: 1;
  }
  .menu-mobile .mainNav-link:focus .mainNav-itemTitle, .menu-mobile .mainNav-link:hover .mainNav-itemTitle {
    -webkit-transform: translateY(-1.2rem);
    -ms-transform: translateY(-1.2rem);
    transform: translateY(-1.2rem);
  }
  .menu-mobile .mainNav-link:focus .mainNav-itemSubtitle, .menu-mobile .mainNav-link:hover .mainNav-itemSubtitle {
    opacity: 1;
    -webkit-transform: translateY(-9.2rem);
    -ms-transform: translateY(-9.2rem);
    transform: translateY(-9.2rem);
  }
}
@media screen and (min-width: 93.75em) {
  .menu-mobile .mainNav-link {
    padding: 0 9rem;
    font-size: 3.8rem;
  }
  .menu-mobile .mainNav-link:focus .mainNav-itemTitle, .menu-mobile .mainNav-link:hover .mainNav-itemTitle {
    -webkit-transform: translateY(-1.4rem);
    -ms-transform: translateY(-1.4rem);
    transform: translateY(-1.4rem);
  }
  .menu-mobile .mainNav-link:focus .mainNav-itemSubtitle, .menu-mobile .mainNav-link:hover .mainNav-itemSubtitle {
    opacity: 1;
    -webkit-transform: translateY(-8.8rem);
    -ms-transform: translateY(-8.8rem);
    transform: translateY(-8.8rem);
  }
}
.menu-mobile .mainNav-link:after {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: -1px;
  opacity: 0;
  background-color: #fff;
  -webkit-transition: .2s opacity ease-out;
  transition: .2s opacity ease-out;
}
.menu-mobile .mainNav-itemSubtitle, .menu-mobile .mainNav-itemTitle {
  position: relative;
  z-index: 1;
  -webkit-transition: -webkit-transform .25s ease-out, opacity .25s ease-out;
  transition: transform .25s ease-out, opacity .25s ease-out;
}
.menu-mobile .mainNav-itemTitle {
  display: block;
  font-weight: 300;
}
.menu-mobile .mainNav-itemTitleExternal {
  position: relative;
  display: inline-block;
}
.menu-mobile .mainNav-itemTitleExternal:after {
  display: block;
  width: 30px;
  height: 30px;
  position: absolute;
  top: calc(50% + 2px);
  right: -30px;
  background-image: url(icon-external-link.svg);
  background-size: cover;
  opacity: .4;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media screen and (min-width: 48em) {
  .menu-mobile .mainNav-itemTitleExternal:after {
    width: 35px;
    height: 35px;
    top: calc(50% + 3px);
    right: -35px;
  }
}
@media screen and (min-width: 64em) {
  .menu-mobile .mainNav-itemTitleExternal:after {
    width: 41px;
    height: 41px;
    right: -41px;
  }
}
.menu-mobile .mainNav-itemSubtitle {
  display: none;
}
@media screen and (min-width: 64em) {
  .menu-mobile .mainNav-itemSubtitle {
    display: block;
    letter-spacing: .05em;
    font-size: 1.4rem;
    font-style: italic;
    opacity: 0;
    -webkit-transform: translateY(-10rem);
    -ms-transform: translateY(-10rem);
    transform: translateY(-10rem);
  }
}
@media screen and (min-width: 93.75em) {
  .menu-mobile .mainNav-itemTitleExternal:after {
    width: 48px;
    height: 48px;
    top: calc(50% + 4px);
    right: -48px;
  }
  .menu-mobile .mainNav-itemSubtitle {
    font-size: 1.6rem;
  }
}

/*-------------------------------- end menu-mobile ------------------------------------*/
h2.style-4 {
  color: white !important;
  font-weight: 300;
  text-transform: uppercase;
  text-align: center;
}

h2.style-3 {
  font-weight: 300;
  text-transform: uppercase;
  text-align: center;
}

html .row.buffer, body .row.buffer {
  margin-top: 50px;
  margin-bottom: 50px;
}

html .row-eq-height, body .row-eq-height {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.grey-strip {
  width: 100%;
  padding-top: 60px;
  padding-bottom: 60px;
}
.grey-strip h3 {
  margin-top: 0;
  margin-bottom: 0px;
}
@media (min-width: 993px) {
  .grey-strip h3 {
    font-size: 40px;
  }
}

.white-strip {
  background: rgba(255, 255, 255, 0.4);
}

.red-strip {
  background: rgba(255, 255, 255, 0.4);
}
.red-strip h3 {
  font-weight: 400;
}

.box-padding {
  padding: 4%;
  padding-left: 4% !important;
  padding-right: 4% !important;
}

#nm-intro {
  padding-top: 60px;
  padding-bottom: 60px;
}
#nm-intro h2 {
  font-family: "Proxima Nova Regular";
  margin-top: 40px;
  text-transform: uppercase;
  margin-bottom: 40px;
  font-weight: 900;
  font-size: 29px;
}
#nm-intro h2 span {
  width: 118px;
  height: 79px;
  display: inline-block;
  position: relative;
  margin-right: 25px;
  background: url("../../Content/images/speed-meter.svg") center bottom no-repeat;
}
#nm-intro h1 {
  font-size: 24px;
  font-weight: 600;
  font-family: "Proxima Nova Regular";
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.3;
  padding-left: 0;
  margin-top: 0;
  color: #1b1d1f;
}
#nm-intro p {
  margin-bottom: 30px;
}
#nm-intro h3.form-title {
  padding: 20px;
  text-align: center;
  margin: 40px auto 0 auto;
  max-width: 400px;
  font-size: 34px;
}
#nm-intro .form-shell {
  background: rgba(255, 255, 255, 0.75);
  padding-top: 20px;
  padding-bottom: 20px;
  margin: 0 auto 30px auto;
  max-width: 400px;
}
#nm-intro .form-shell .form-control {
  padding: 12px;
  height: inherit;
}
#nm-intro .contact-form-product {
  max-width: 80%;
  margin: 0 auto;
}
#nm-intro div.options .link-class {
  border-bottom: 2px solid #ebebeb;
  display: inline-block;
  margin-bottom: 20px;
}
#nm-intro div.options h4 {
  font-size: 15px;
  margin-bottom: 20px;
}
#nm-intro div.options a {
  display: block;
  margin-bottom: 20px;
}
#nm-intro div.options a:link, #nm-intro div.options a:visited, #nm-intro div.options a:active {
  float: left;
}
#nm-intro div.options a.pdf {
  display: block;
  height: 33px;
  margin-bottom: 10px;
  margin-right: 20px;
  text-decoration: none;
  color: #ac192d;
}
#nm-intro div.options a.pdf span {
  display: inline-block;
  padding-top: 5px;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 14px;
  font-family: "Montserrat";
}
#nm-intro div.options a.pdf div {
  background: url("../../content/images/pdf-file-type-symbol.svg") no-repeat;
  width: 36px;
  height: 30px;
  float: left;
  margin-right: 10px;
}
#nm-intro div.options a.link {
  font-weight: 500;
  text-transform: uppercase;
  font-size: 14px;
  padding-bottom: 24px;
  text-decoration: none;
  padding: 10px;
  margin-right: 10px;
}
#nm-intro div.options a.link span {
  padding-top: 10px;
  display: block;
  width: 175px;
  text-align: left;
}
#nm-intro div.options a.link div {
  width: 37px;
  height: 37px;
  float: left;
  background: #fff;
  margin-right: 10px;
}
#nm-intro div.options a.link div.small-arrow {
  background: #ac192d url("../../content/images/little-arrow.svg") center center no-repeat;
}
#nm-intro div.options a.link div.small-play {
  background: #ac192d url("../../content/images/play-button.svg") center center no-repeat;
  color: white;
}
#nm-intro div.options2 a.pdf div {
  background: url("../../content/images/pdf-file-type-symbol.svg") no-repeat;
  width: 36px;
  height: 30px;
  float: left;
  margin-right: 10px;
}
#nm-intro div.options2 a.pdf span {
  padding-top: 4px;
  display: inline-block;
}

.brochure-specs {
  background: #333333 url(../../Content/images/video-bg.jpg) center top no-repeat;
  color: #fff;
  padding-top: 40px;
  padding-bottom: 30px;
}
.brochure-specs h2 {
  color: #fff;
  font-size: 28px;
  text-align: center;
}
.brochure-specs div.btn-brochure-specs a {
  margin-bottom: 20px;
}

#nm-video {
  background: #333333 url("../../Content/images/video-bg.jpg") center top no-repeat;
  color: #fff;
  padding-top: 50px;
  padding-bottom: 60px;
}
#nm-video h2 {
  font-size: 28px;
  color: #fff;
  margin-bottom: 30px;
}
#nm-video p {
  margin-top: 20px;
}

#nm-form {
  padding-top: 50px;
  padding-bottom: 60px;
}
#nm-form h2 {
  font-size: 28px;
  margin-bottom: 30px;
}

#nm-specs {
  background: #847e6d url("../../Content/images/specs.jpg") center top;
  padding-top: 60px;
  padding-bottom: 60px;
  min-width: 767px;
}
#nm-specs .specs-class {
  background: #fff;
  color: #1b1d1f;
  padding-top: 10px;
  padding-bottom: 30px;
}
#nm-specs .specs-class h2 {
  color: #ac192d;
  margin: 0;
  text-align: center;
  padding-top: 30px;
  padding-bottom: 20px;
  font-size: 28px;
}
#nm-specs p {
  text-align: center;
  font-size: 14px;
}
#nm-specs table.specs-table {
  text-align: center;
  margin: 0 auto;
}
#nm-specs table.specs-table tr th {
  padding: 20px;
}
#nm-specs table.specs-table tr td {
  padding: 15px 20px;
}
#nm-specs table.specs-table tr.uline {
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}
#nm-specs table.specs-table tr:nth-child(odd) {
  background: #fff;
}
#nm-specs table.specs-table tr:nth-child(even) {
  background: rgba(0, 0, 0, 0.1);
}

#nm-brandinfo .container {
  max-width: 1000px;
}

#nm-ProductWalkaround {
  text-align: center;
  margin: 0 auto 60px auto;
}

.nm-gallery {
  margin-top: 60px;
}
.nm-gallery h3 {
  margin-top: 0;
}

.bg-fe-1 {
  background-image: url("../../Content/newmodels/brands/brandtalk-fe-1.jpg");
  background-position: center 34% !important;
}

.bg-fe-2 {
  background-image: url("../../Content/newmodels/brands/brandtalk-fe-2.jpg");
  background-position: center 34% !important;
}

.bg-kr-1 {
  background-image: url("../../Content/newmodels/brands/brandtalk-kr-1.jpg");
  background-position: center 34% !important;
}

.bg-kr-2 {
  background-image: url("../../Content/newmodels/brands/brandtalk-kr-2.jpg");
  background-position: center 34% !important;
}

.bg-ku-1 {
  background-image: url("../../Content/newmodels/brands/brandtalk-ku-1.jpg");
  background-position: center 34% !important;
}

.bg-ku-2 {
  background-image: url("../../Content/newmodels/brands/brandtalk-ku-2.jpg");
  background-position: center 34% !important;
}

.bg-is-1 {
  background-image: url("../../Content/newmodels/brands/brandtalk-is-1.jpg");
  background-position: center 34% !important;
}

.bg-is-2 {
  background-image: url("../../Content/newmodels/brands/brandtalk-is-2.jpg");
  background-position: center 34% !important;
}

.bg-mf-1 {
  background-image: url("../../Content/newmodels/brands/mfperformance.jpg");
  background-position: center 34% !important;
}

.bg-mf-2 {
  background-image: url("../../Content/newmodels/brands/mfproductivity.jpg");
  background-position: center 34% !important;
}

@font-face {
  font-family: "Montserrat";
  src: url("/Content/fonts/Montserrat/Montserrat-ExtraBold.ttf") format("truetype");
}
@font-face {
  font-family: "Proxima Nova Regular";
  src: url("/Content/fonts/Proxima Nova/Mark Simonson - Proxima Nova Regular.otf") format("opentype");
}
@font-face {
  font-family: "Proxima Nova Light";
  src: url("/Content/fonts/Proxima Nova/Mark Simonson - Proxima Nova Light.otf") format("opentype");
}
body {
  font-family: "Proxima Nova Light";
  font-size: 18px;
  color: #1b1d1f;
  line-height: 1.4;
  letter-spacing: 0.5px;
}
@media (max-width: 992px) {
  body {
    font-size: 16px;
  }
}

.form-control {
  font-size: 18px !important;
}
@media (max-width: 992px) {
  .form-control {
    font-size: 16px !important;
  }
}

input.form-control {
  height: 46px !important;
}

.c-1920 {
  max-width: 1920px !important;
  width: 100%;
}

.c-1650 {
  max-width: 1650px !important;
  width: 100%;
}

.c-1350 {
  max-width: 1350px !important;
  width: 100%;
}

h1, h2 {
  letter-spacing: 1.5px;
  font-family: "Montserrat";
  color: #ac192d;
  text-transform: uppercase;
  font-size: 56px;
}
@media (min-width: 1200px) {
  h1, h2 {
    font-size: 40px;
  }
}
@media (min-width: 993px) and (max-width: 1199px) {
  h1, h2 {
    font-size: 32px;
  }
}
@media (max-width: 992px) {
  h1, h2 {
    font-size: 24px;
  }
}

.header {
  padding-top: 5px;
  padding-bottom: 5px;
}
@media (max-width: 619px) {
  .header {
    text-align: center;
  }
  .header .social-class, .header .address-class, .header .address, .header .phone {
    width: 100%;
  }
}
@media (min-width: 993px) and (max-width: 1199px) {
  .header .logo-class img {
    max-width: 230px;
  }
}
@media (max-width: 992px) {
  .header .logo-class {
    text-align: center;
    float: none !important;
  }
  .header .logo-class img {
    display: -webkit-inline-box;
    margin-top: 5px;
  }
}
@media (min-width: 1650px) {
  .header .social-address-class {
    padding-top: 20px;
    font-size: 24px;
  }
  .header .social-address-class i {
    padding: 5px;
    font-size: 34px;
  }
}
@media (min-width: 1200px) and (max-width: 1649px) {
  .header .social-address-class {
    font-size: 20px;
    padding-top: 20px;
  }
  .header .social-address-class i {
    padding: 5px;
    font-size: 32px;
  }
}
@media (min-width: 993px) and (max-width: 1199px) {
  .header .social-address-class {
    padding-top: 20px;
  }
  .header .social-address-class i {
    padding: 5px;
    font-size: 20px;
  }
}
@media (max-width: 992px) {
  .header .social-address-class {
    text-align: center;
    float: none !important;
  }
}
@media (min-width: 993px) {
  .header .social-address-class .address-class {
    float: left;
  }
}
@media (min-width: 620px) and (max-width: 992px) {
  .header .social-address-class .address-class {
    display: inline-flex;
    margin-left: 20px;
  }
}
@media (min-width: 620px) {
  .header .social-address-class .address-class > div {
    float: left;
  }
}
@media (max-width: 619px) {
  .header .social-address-class .address-class > div {
    display: inline-block;
  }
}
.header .social-address-class .address-class .phone {
  font-family: "Montserrat";
}
@media (min-width: 1650px) {
  .header .social-address-class .address-class .phone {
    font-size: 30px;
  }
}
@media (min-width: 1200px) and (max-width: 1649px) {
  .header .social-address-class .address-class .phone {
    font-size: 26px;
  }
}
@media (min-width: 993px) and (max-width: 1199px) {
  .header .social-address-class .address-class .phone {
    font-size: 20px;
  }
}
@media (max-width: 619px) {
  .header .social-address-class .address-class .phone {
    font-size: 20px;
  }
}
.header .social-address-class .address-class .phone a, .header .social-address-class .address-class .phone a:focus {
  color: #ac192d;
}
@media (min-width: 620px) {
  .header .social-address-class .address-class .address {
    margin-right: 30px;
  }
}
@media (min-width: 993px) {
  .header .social-address-class .social-class {
    float: left;
    margin-right: 30px;
  }
}
@media (max-width: 992px) {
  .header .social-address-class .social-class {
    display: inline-block;
  }
}
.header a, .header a:focus {
  color: #1b1d1f;
  text-decoration: none;
}
.header a:hover {
  color: #ac192d;
  text-decoration: none;
}

.js-menu {
  text-align: center;
  background: #ac192d;
}
@media (max-width: 992px) {
  .js-menu {
    float: none !important;
  }
}
.js-menu .navbar-default {
  background: #ac192d;
  border: none !important;
  color: #1b1d1f;
  box-shadow: inset 0 0px 0 rgba(255, 255, 255, 0.15), 0 0px 0px rgba(0, 0, 0, 0.075);
}
.js-menu .navbar {
  margin-bottom: 0;
  border-bottom: none;
  border-left: none;
  border-right: none;
  border-radius: 0;
}
.js-menu .navbar .nav > li a {
  font-weight: normal;
  color: white;
}
.js-menu .navbar .nav > li > a {
  display: flex;
  justify-content: center;
  align-items: center;
}
.js-menu .navbar .nav > li a:hover, .js-menu .navbar .nav > li a:focus {
  background: rgba(0, 0, 0, 0.1);
  color: white;
}
.js-menu .navbar-default .navbar-nav > .active > a, .js-menu .navbar-default .navbar-nav > .active > a:hover, .js-menu .navbar-default .navbar-nav > .active > a:focus {
  font-family: "Montserrat";
  background: rgba(0, 0, 0, 0.1);
  color: white;
  box-shadow: inset 0 0px 0px rgba(0, 0, 0, 0.075);
}
@media (min-width: 768px) {
  .js-menu .nav.navbar-nav {
    display: inline-block;
    margin-bottom: -8px;
    float: none;
  }
}
@media (max-width: 992px) {
  .js-menu .nav.navbar-nav {
    margin-bottom: -7px;
  }
}
@media (min-width: 1650px) {
  .js-menu .navbar .nav > li a.top-level {
    padding: 22px 29px;
    margin-left: 1px;
    margin-right: 1px;
  }
  .js-menu .navbar .nav > li a {
    font-size: 18px;
  }
}
@media (min-width: 1200px) and (max-width: 1649px) {
  .js-menu .navbar .nav > li a.top-level {
    padding: 22px 29px;
    margin-left: 1px;
    margin-right: 1px;
  }
  .js-menu .navbar .nav > li a {
    font-size: 18px;
  }
}
@media (min-width: 768px) {
  .js-menu .navbar > .container {
    padding-left: 0px;
    padding-right: 0px;
  }
  .js-menu .navbar-nav {
    margin-left: 0%;
  }
  .js-menu .navbar-collapse {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (min-width: 993px) and (max-width: 1199px) {
  .js-menu .navbar .nav > li {
    margin-left: 1px;
    margin-right: 1px;
  }
  .js-menu .navbar .nav > li a.top-level {
    padding: 18px 20px;
  }
  .js-menu .navbar .nav > li a {
    font-size: 18px;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .js-menu .navbar .nav > li {
    margin-left: 1px;
    margin-right: 1px;
  }
  .js-menu .navbar .nav > li a.top-level {
    padding: 16px;
  }
  .js-menu .navbar .nav > li a {
    font-size: 16px;
  }
}
@media (min-width: 768px) {
  .js-menu .dropdown .dropdown-menu {
    display: none;
  }
}
.js-menu .dropdown.open a.dropdown-toggle:link, .js-menu .dropdown.open a.dropdown-toggle:visited, .js-menu .dropdown.open a.dropdown-toggle:hover, .js-menu .dropdown.open a.dropdown-toggle:active {
  background: rgba(0, 0, 0, 0.1);
  color: white;
  box-shadow: inset 0 0px 0px rgba(0, 0, 0, 0.075);
}
.js-menu .dropdown .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  float: left;
  width: 700px;
  left: -42%;
  padding: 0px 0;
  margin: -1px 0 0 0;
  font-size: 14px;
  text-align: left;
  list-style: none;
  background-color: white;
  border-radius: 0px;
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  border: none;
  text-transform: uppercase;
}
@media (min-width: 1650px) {
  .js-menu .dropdown .dropdown-menu {
    width: 940px;
  }
}
@media (min-width: 1200px) and (max-width: 1649px) {
  .js-menu .dropdown .dropdown-menu {
    width: 820px;
  }
}
@media (min-width: 993px) and (max-width: 1199px) {
  .js-menu .dropdown .dropdown-menu {
    width: 820px;
  }
}
.js-menu .dropdown .dropdown-menu li {
  float: left;
  width: 350px;
}
@media (min-width: 1650px) {
  .js-menu .dropdown .dropdown-menu li {
    width: 470px;
  }
}
@media (min-width: 1200px) and (max-width: 1649px) {
  .js-menu .dropdown .dropdown-menu li {
    width: 410px;
  }
}
@media (min-width: 993px) and (max-width: 1199px) {
  .js-menu .dropdown .dropdown-menu li {
    width: 375px;
  }
}
.js-menu .dropdown .dropdown-menu li a {
  background: white;
  padding: 15px 20px !important;
  color: #1b1d1f;
  -webkit-transition: 0.2s ease all;
  transition: 0.2s ease all;
}
.js-menu .dropdown .dropdown-menu li a img {
  display: inline-block;
  padding-right: 10px;
}
.js-menu .dropdown .dropdown-menu li a:hover, .js-menu .dropdown .dropdown-menu li a:active {
  background: #ac192d;
  color: white;
  -webkit-transition: 0.2s ease all;
  transition: 0.2s ease all;
}

@media (max-width: 767px) {
  .mainNav-sub-item {
    position: relative;
    z-index: 9;
    padding-left: 20px;
    padding-right: 20px;
    list-style: none;
  }
  .mainNav-sub-item li a {
    border-top: 1px solid #8c8c8c;
    width: 100%;
    display: inline-block;
    padding: 10px;
    background: #252525;
    color: #d0d0d0;
    text-decoration: none;
  }
  .mainNav-sub-item li a:hover {
    text-decoration: none;
  }
}
.contact-banner {
  background: url("/Content/images/banner-pages/contact-us.jpg") center center no-repeat black;
}

.about-banner {
  background: url("/Content/images/banner-pages/about-us.jpg") center center no-repeat black;
}

.parts-banner {
  background: url("/Content/images/banner-pages/parts-parts.jpg") center center no-repeat black;
}

.service-banner {
  background: url("/Content/images/banner-pages/parts-service.jpg") center center no-repeat black;
}

.used-banner {
  background: url("/Content/images/banner-pages/used-machinery.jpg") center center no-repeat black;
}

.new-banner {
  background: url("/Content/images/banner-pages/new-models.jpg") center center no-repeat black;
}

.content-banner .banner-title {
  margin: 60px 0;
}
.content-banner .banner-title h1 {
  color: white;
  text-transform: uppercase;
  margin: 0;
  padding: 0;
  display: block;
}
@media (min-width: 768px) {
  .content-banner .banner-title h1 {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  .content-banner .banner-title h1 {
    font-size: 24px;
  }
}
.content-banner .banner-title h2 {
  font-family: "Proxima Nova Light";
  color: white;
  line-height: 1.4;
  padding-top: 5px;
  padding-bottom: 5px;
  margin-bottom: 0;
  margin-top: 0;
}
@media (min-width: 1200px) {
  .content-banner .banner-title h2 {
    font-size: 24px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .content-banner .banner-title h2 {
    font-size: 22px;
  }
}
@media (max-width: 767px) {
  .content-banner .banner-title h2 {
    font-size: 20px;
  }
}

.main-page {
  margin-top: 60px;
  margin-bottom: 60px;
}
.main-page h3 {
  font-family: "Montserrat";
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 30px;
  line-height: 1.2;
  text-transform: uppercase;
}
.main-page h4 {
  line-height: 1.5;
}
.main-page p {
  margin-bottom: 15px;
}
.main-page a, .main-page a:focus {
  color: #1b1d1f;
}
.main-page a:hover {
  color: #ac192d;
}

.cl-validate {
  color: #ac192d;
  font-size: 16px;
}

form .form-control {
  border-radius: 0;
  padding: 10px 12px;
}
form input.form-control {
  height: 44px;
}
form .btn-default.btn-link, form #div-stock-content > div .box-product .box-product-info .btn-default.more-info, #div-stock-content > div .box-product .box-product-info form .btn-default.more-info, form .btn-default.btn-link:hover, form #div-stock-content > div .box-product .box-product-info .btn-default.more-info:hover, #div-stock-content > div .box-product .box-product-info form .btn-default.more-info:hover {
  font-size: 24px;
  box-shadow: inset 0 0px 0 rgba(255, 255, 255, 0), 0 0px 0px transparent;
  outline: none;
}

.frm-mail {
  background: rgba(255, 255, 255, 0.7);
  padding: 25px 30px;
}

.vehicle-class {
  margin-top: 60px;
  background: white;
}
.vehicle-class h2 {
  margin-top: 0;
  margin-bottom: 40px;
}
.vehicle-class a, .vehicle-class a:focus {
  color: white;
  text-decoration: none;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}
.vehicle-class a h3, .vehicle-class a:focus h3 {
  font-size: 20px;
  line-height: 1.1;
  height: 80px;
  margin: 8% 0 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
  text-transform: uppercase;
}
.vehicle-class a h4, .vehicle-class a:focus h4 {
  font-size: 24px;
  margin-top: 0;
  margin-bottom: 8%;
}
.vehicle-class a .info-vehicle h3, .vehicle-class a:focus .info-vehicle h3 {
  margin-top: -80px;
  z-index: 9;
  position: relative;
  text-align: center;
  width: 100%;
  top: 0px;
  -webkit-transition: all 0.1s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  -ms-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}
.vehicle-class a:hover, .vehicle-class a:focus:hover {
  text-decoration: none;
}
.vehicle-class a:hover .info-vehicle h3, .vehicle-class a:focus:hover .info-vehicle h3 {
  opacity: 1;
  transform: translateY(80px);
  -webkit-transform: translateY(80px);
  -moz-transform: translateY(80px);
  -ms-transform: translateY(80px);
  -o-transform: translateY(80px);
}
.vehicle-class .owl-item:nth-of-type(odd) .info-vehicle h3 {
  background: rgba(172, 25, 45, 0.8);
}
.vehicle-class .owl-item:nth-of-type(even) .info-vehicle h3 {
  background: rgba(27, 29, 31, 0.8);
}
.vehicle-class .box-vehicle-resize {
  width: 100%;
  padding-top: 75%;
  /* 1:1 Aspect Ratio */
  position: relative;
}
.vehicle-class .box-vehicle-resize > .resize-img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
.vehicle-class .box-vehicle-resize > .resize-img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  overflow: hidden;
}
.vehicle-class .box-product-home-hover {
  padding: 0px;
  position: relative;
  overflow: hidden;
}
.vehicle-class .box-product-home-hover:hover .caption {
  opacity: 1;
  transform: translateY(-100vh);
  -webkit-transform: translateY(-100vh);
  -moz-transform: translateY(-100vh);
  -ms-transform: translateY(-100vh);
  -o-transform: translateY(-100vh);
}
.vehicle-class .box-product-home-hover img {
  z-index: 4;
}
.vehicle-class .box-product-home-hover .caption {
  position: absolute;
  top: 100vh;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  width: 100%;
}
.vehicle-class .box-product-home-hover .blur {
  background-color: rgba(0, 0, 0, 0.7);
  height: 100vh;
  z-index: 5;
  position: absolute;
  width: 100%;
}
.vehicle-class .box-product-home-hover .caption-text {
  z-index: 10;
  color: #fff;
  position: absolute;
  height: 100vh;
  text-align: center;
  top: 0;
  width: 100%;
}
.vehicle-class .owl-nav {
  display: none;
}
.vehicle-class .owl-dots {
  margin-top: 30px;
}
.vehicle-class .owl-dots .owl-dot span {
  width: 24px !important;
  height: 8px !important;
}
.vehicle-class .owl-theme .owl-dots .owl-dot span {
  background: #1b1d1f;
}
.vehicle-class .owl-theme .owl-dots .owl-dot.active span, .vehicle-class .owl-theme .owl-dots .owl-dot:hover span {
  background: #ac192d;
}

.about-class {
  display: block;
  margin-top: 60px;
  background: #f6f6f6;
}
.about-class .about-text h1 {
  padding-left: 0;
  margin-top: 0;
  margin-bottom: 20px;
  line-height: 1.2;
}
@media (min-width: 993px) {
  .about-class .about-text h1 {
    font-size: 28px;
  }
}
@media (max-width: 992px) {
  .about-class .about-text h1 {
    font-size: 24px;
  }
}
.about-class .about-text .btn-link1, .about-class .about-text #nm-intro div.options2 a.pdf, #nm-intro div.options2 .about-class .about-text a.pdf, .about-class .about-text .brochure-specs div.btn-brochure-specs a, .brochure-specs div.btn-brochure-specs .about-class .about-text a {
  margin-top: 20px;
}
@media (min-width: 1650px) {
  .about-class .about-text {
    margin-top: 80px;
    padding-left: 6%;
    padding-right: 6%;
  }
}
@media (min-width: 1200px) and (max-width: 1649px) {
  .about-class .about-text {
    margin-top: 55px;
    padding-left: 4%;
    padding-right: 4%;
  }
}
@media (min-width: 993px) and (max-width: 1199px) {
  .about-class .about-text {
    margin-top: 40px;
    padding-left: 2%;
    padding-right: 2%;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .about-class .about-text {
    margin-top: 40px;
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (max-width: 767px) {
  .about-class .about-text {
    margin-top: 40px;
    margin-bottom: 40px;
  }
}
@media (min-width: 1441px) {
  .about-class .about-img {
    height: 540px;
  }
}
@media (min-width: 1200px) and (max-width: 1440px) {
  .about-class .about-img {
    height: 580px;
  }
}
@media (min-width: 993px) and (max-width: 1199px) {
  .about-class .about-img {
    height: 550px;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .about-class .about-img {
    height: 560px;
  }
}
@media (min-width: 768px) {
  .about-class .about-img {
    background: url("/Content/images/about-img.jpg") left center no-repeat;
  }
}

@media (min-width: 993px) {
  .banner {
    margin-top: 30px;
  }
}
@media (max-width: 993px) {
  .banner {
    margin-top: 15px;
  }
}
@media (min-width: 993px) {
  .banner .left {
    margin-right: -20px;
    margin-left: 10px;
  }
}
@media (max-width: 992px) {
  .banner .left {
    margin-bottom: 30px;
  }
}
.banner .banner-slider .carousel .item {
  overflow: hidden;
  width: 100%;
  display: block;
  margin: 0 auto;
}
@media (min-width: 993px) {
  .banner .banner-slider .carousel .item {
    height: 520px;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .banner .banner-slider .carousel .item {
    height: 400px;
  }
}
@media (max-width: 767px) {
  .banner .banner-slider .carousel .item {
    height: 300px;
  }
}
.banner .banner-slider .carousel img {
  width: 100%;
  object-fit: cover;
  overflow: hidden;
}
@media (min-width: 993px) {
  .banner .banner-slider .carousel img {
    height: 520px;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .banner .banner-slider .carousel img {
    height: 400px;
  }
}
@media (max-width: 767px) {
  .banner .banner-slider .carousel img {
    height: 300px;
  }
}
.banner .banner-slider .banner-text {
  position: absolute;
  width: 100%;
  z-index: 9;
}
.banner .banner-slider .banner-text h2 {
  background: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 15px;
}
@media (min-width: 1200px) {
  .banner .banner-slider .banner-text h2 {
    font-size: 30px;
    margin-top: 20%;
    margin-bottom: 30px;
    line-height: 1.4;
  }
}
@media (min-width: 993px) and (max-width: 1199px) {
  .banner .banner-slider .banner-text h2 {
    font-size: 30px;
    margin-top: 25%;
    margin-bottom: 30px;
    line-height: 1.4;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .banner .banner-slider .banner-text h2 {
    font-size: 30px;
    margin-top: 15%;
    margin-bottom: 30px;
    line-height: 1.4;
  }
}
@media (max-width: 767px) {
  .banner .banner-slider .banner-text h2 {
    font-size: 18px;
    margin-top: 18%;
    line-height: 1.4;
  }
}
.banner .right .box-banner {
  margin-bottom: 2px;
}
@media (max-width: 767px) {
  .banner .right .box-banner {
    display: contents;
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .banner .right .box-banner {
    margin-bottom: 30px;
  }
}
.banner .right .box-banner a, .banner .right .box-banner a:focus, .banner .right .box-banner a:hover {
  width: 100%;
  display: inline-block;
}
.banner .right .box-banner a .banner-info, .banner .right .box-banner a:focus .banner-info, .banner .right .box-banner a:hover .banner-info {
  padding: 20px;
}
@media (min-width: 993px) {
  .banner .right .box-banner a .banner-info, .banner .right .box-banner a:focus .banner-info, .banner .right .box-banner a:hover .banner-info {
    height: 167px;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .banner .right .box-banner a .banner-info, .banner .right .box-banner a:focus .banner-info, .banner .right .box-banner a:hover .banner-info {
    height: 260px;
  }
}
@media (max-width: 767px) {
  .banner .right .box-banner a .banner-info, .banner .right .box-banner a:focus .banner-info, .banner .right .box-banner a:hover .banner-info {
    display: inline-block;
    width: 100%;
  }
}
.banner .right .box-banner a, .banner .right .box-banner a:focus {
  text-decoration: none;
  background: #ebebeb;
  color: #1b1d1f;
}
.banner .right .box-banner a .banner-info .text, .banner .right .box-banner a:focus .banner-info .text {
  float: left;
}
@media (min-width: 1200px) {
  .banner .right .box-banner a .banner-info .text, .banner .right .box-banner a:focus .banner-info .text {
    width: calc(100% - 170px);
  }
}
@media (min-width: 993px) and (max-width: 1199px) {
  .banner .right .box-banner a .banner-info .text, .banner .right .box-banner a:focus .banner-info .text {
    width: calc(100% - 110px);
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .banner .right .box-banner a .banner-info .text, .banner .right .box-banner a:focus .banner-info .text {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .banner .right .box-banner a .banner-info .text, .banner .right .box-banner a:focus .banner-info .text {
    text-align: left;
    width: calc(100% - 130px);
  }
}
.banner .right .box-banner a .banner-info .text h2, .banner .right .box-banner a:focus .banner-info .text h2 {
  text-decoration: none;
  font-family: "Montserrat";
  color: #1b1d1f;
  margin-top: 0;
}
@media (min-width: 1200px) {
  .banner .right .box-banner a .banner-info .text h2, .banner .right .box-banner a:focus .banner-info .text h2 {
    font-size: 28px;
  }
}
@media (min-width: 993px) and (max-width: 1199px) {
  .banner .right .box-banner a .banner-info .text h2, .banner .right .box-banner a:focus .banner-info .text h2 {
    font-size: 20px;
  }
}
.banner .right .box-banner a .banner-info .text p, .banner .right .box-banner a:focus .banner-info .text p {
  line-height: 1.3;
}
@media (min-width: 1200px) {
  .banner .right .box-banner a .banner-info .images, .banner .right .box-banner a:focus .banner-info .images {
    float: right;
    padding-top: 30px;
  }
}
@media (min-width: 993px) and (max-width: 1199px) {
  .banner .right .box-banner a .banner-info .images, .banner .right .box-banner a:focus .banner-info .images {
    float: right;
    position: absolute;
    right: 0;
    margin-top: 35px;
    margin-right: -10px;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .banner .right .box-banner a .banner-info .images, .banner .right .box-banner a:focus .banner-info .images {
    text-align: center;
  }
  .banner .right .box-banner a .banner-info .images img, .banner .right .box-banner a:focus .banner-info .images img {
    display: -webkit-inline-box;
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .banner .right .box-banner a .banner-info .images, .banner .right .box-banner a:focus .banner-info .images {
    float: right;
    position: absolute;
    right: 0;
    z-index: 9;
  }
}
.banner .right .box-banner a:hover, .banner .right .box-banner a:focus:hover {
  background: rgba(0, 0, 0, 0.18);
}
.banner .right .box-banner a:hover .banner-info-service, .banner .right .box-banner a:focus:hover .banner-info-service {
  background: #92061a;
}
.banner .right .box-banner a, .banner .right .box-banner a:focus {
  text-decoration: none;
}
.banner .right .box-banner a .banner-info-service, .banner .right .box-banner a:focus .banner-info-service {
  color: white;
  background: #ac192d;
}
.banner .right .box-banner a .banner-info-service h2, .banner .right .box-banner a:focus .banner-info-service h2 {
  color: white !important;
}

.banner-slider {
  /********************
  *****Slide effect
  **********************/
  /*---------- INDICATORS CONTROL ----------*/
  /*---------- SLIDE CAPTION ----------*/
}
.banner-slider .bs-slider {
  /*overflow: hidden;
  max-height: 800px;
  @media (max-width:767px) {
  	height: 430px;
  	.item {
  		overflow: hidden;				
  		img {
  			height: 430px;
  		}
  	}
  }
  position: relative;
  background: #000000;*/
}
.banner-slider .bs-slider:hover {
  cursor: default;
  /*cursor: -moz-grab;
  cursor: -webkit-grab;*/
}
.banner-slider .bs-slider:active {
  /*cursor: -moz-grabbing;
  cursor: -webkit-grabbing;*/
}
.banner-slider .bs-slider .bs-slider-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
}
.banner-slider .bs-slider > .carousel-inner > .item > img,
.banner-slider .bs-slider > .carousel-inner > .item > a > img {
  margin: auto;
  width: 100% !important;
  /*@media (max-width:993px) {
  	width: auto !important;
  	max-width: inherit !important;
  }*/
}
.banner-slider .fade {
  opacity: 1;
}
.banner-slider .fade .item {
  top: 0;
  z-index: 1;
  opacity: 0;
  width: 100%;
  position: absolute;
  left: 0 !important;
  display: block !important;
  -webkit-transition: opacity ease-in-out 1s;
  -moz-transition: opacity ease-in-out 1s;
  -ms-transition: opacity ease-in-out 1s;
  -o-transition: opacity ease-in-out 1s;
  transition: opacity ease-in-out 1s;
}
.banner-slider .fade .item:first-child {
  top: auto;
  position: relative;
}
.banner-slider .fade .item.active {
  opacity: 1;
  z-index: 2;
  -webkit-transition: opacity ease-in-out 1s;
  -moz-transition: opacity ease-in-out 1s;
  -ms-transition: opacity ease-in-out 1s;
  -o-transition: opacity ease-in-out 1s;
  transition: opacity ease-in-out 1s;
}
.banner-slider .indicators-line > .carousel-indicators {
  right: 0%;
  bottom: 0%;
  left: auto;
  width: 90%;
  height: 20px;
  font-size: 0;
  overflow-x: auto;
  text-align: right;
  overflow-y: hidden;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 1px;
  white-space: nowrap;
}
.banner-slider .indicators-line > .carousel-indicators li {
  padding: 0;
  width: 15px;
  height: 15px;
  border: 1px solid #fff;
  text-indent: 0;
  overflow: hidden;
  text-align: left;
  position: relative;
  letter-spacing: 1px;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  margin-right: 5px;
  -webkit-transition: all 0.5s cubic-bezier(0.22, 0.81, 0.01, 0.99);
  transition: all 0.5s cubic-bezier(0.22, 0.81, 0.01, 0.99);
  z-index: 10;
  cursor: pointer;
}
.banner-slider .indicators-line > .carousel-indicators li:last-child {
  margin-right: 0;
}
.banner-slider .indicators-line > .carousel-indicators .active {
  margin: 1px 5px 1px 1px;
  box-shadow: 0 0 0 2px #d51125;
  background-color: transparent;
  position: relative;
  -webkit-transition: box-shadow 0.3s ease;
  -moz-transition: box-shadow 0.3s ease;
  -o-transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  -webkit-transition: background-color 0.3s ease;
  -moz-transition: background-color 0.3s ease;
  -o-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.banner-slider .indicators-line > .carousel-indicators .active:before {
  transform: scale(0.5);
  background-color: #d51125;
  content: "";
  position: absolute;
  left: -1px;
  top: -1px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  -webkit-transition: background-color 0.3s ease;
  -moz-transition: background-color 0.3s ease;
  -o-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
.banner-slider .slide_style_left {
  text-align: left !important;
}
.banner-slider .slide-text {
  right: 0;
  margin: auto;
  padding: 10px;
  position: absolute;
  text-align: left;
  padding: 10px 85px;
}
@media (min-width: 1560px) {
  .banner-slider .slide-text {
    left: 6%;
    top: 16%;
  }
}
@media (min-width: 1200px) and (max-width: 1559px) {
  .banner-slider .slide-text {
    left: 1%;
    top: 9%;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .banner-slider .slide-text {
    left: 1%;
    top: 7%;
  }
}
@media (max-width: 767px) {
  .banner-slider .slide-text {
    left: 1%;
    top: 7%;
  }
}
@media (max-width: 767px) {
  .banner-slider .slide-text {
    padding: 10px 20px;
  }
}
.banner-slider .slide-text .line-red {
  border-left: 10px solid #d51125;
  padding-left: 20px;
  padding-top: 10px;
  padding-bottom: 15px;
}
.banner-slider .slide-text .line-red a, .banner-slider .slide-text .line-red a:focus {
  text-decoration: none;
}
.banner-slider .slide-text .line-red a p, .banner-slider .slide-text .line-red a:focus p {
  font-family: "Montserrat";
  text-transform: uppercase;
  color: #fff;
  line-height: 1.4;
  text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.6);
}
.banner-slider .slide-text .line-red a .btn-link, .banner-slider .slide-text .line-red a #div-stock-content > div .box-product .box-product-info .more-info, #div-stock-content > div .box-product .box-product-info .banner-slider .slide-text .line-red a .more-info, .banner-slider .slide-text .line-red a:focus .btn-link, .banner-slider .slide-text .line-red a:focus #div-stock-content > div .box-product .box-product-info .more-info, #div-stock-content > div .box-product .box-product-info .banner-slider .slide-text .line-red a:focus .more-info {
  margin-top: 10px;
  background: #d51125 !important;
  color: #fff !important;
  border: 2px solid #d51125 !important;
}
.banner-slider .slide-text .line-red a:hover {
  text-decoration: none;
}
.banner-slider .slide-text .line-red a:hover .btn-link, .banner-slider .slide-text .line-red a:hover #div-stock-content > div .box-product .box-product-info .more-info, #div-stock-content > div .box-product .box-product-info .banner-slider .slide-text .line-red a:hover .more-info {
  background: #fff !important;
  color: #d51125 !important;
  border: 2px solid #d51125 !important;
}
.banner-slider .slide-text > h2 {
  font-family: "Montserrat";
  color: #575556;
  font-style: normal;
  -webkit-animation-delay: 0.7s;
  animation-delay: 0.7s;
  display: inline;
}
@media (min-width: 1560px) {
  .banner-slider .slide-text > h2 {
    font-size: 60px;
    line-height: 1.6em;
  }
  .banner-slider .slide-text > h2 > span {
    padding: 0em;
    box-shadow: 0.3em 0 0 rgba(246, 246, 246, 0.9), -0.3em 0 0 rgba(246, 246, 246, 0.9);
    background-color: #f6f6f6;
    background-color: rgba(246, 246, 246, 0.9);
  }
  .banner-slider .line-red {
    margin-left: -19px;
    margin-top: 30px;
    width: 60%;
  }
  .banner-slider .line-red p {
    font-size: 30px;
  }
}
@media (min-width: 1200px) and (max-width: 1559px) {
  .banner-slider .slide-text > h2 {
    font-size: 50px;
    line-height: 1.6em;
  }
  .banner-slider .slide-text > h2 > span {
    padding: 0em;
    box-shadow: 0.3em 0 0 rgba(246, 246, 246, 0.9), -0.3em 0 0 rgba(246, 246, 246, 0.9);
    background-color: #f6f6f6;
    background-color: rgba(246, 246, 246, 0.9);
  }
  .banner-slider .line-red {
    margin-left: -17px;
    margin-top: 30px;
    width: 60%;
  }
  .banner-slider .line-red p {
    font-size: 24px;
  }
}
@media (min-width: 993px) and (max-width: 1199px) {
  .banner-slider .line-red {
    width: 80%;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .banner-slider .slide-text > h2 {
    font-size: 40px;
    line-height: 1.6em;
  }
  .banner-slider .slide-text > h2 > span {
    padding: 0em;
    box-shadow: 0.3em 0 0 rgba(246, 246, 246, 0.9), -0.3em 0 0 rgba(246, 246, 246, 0.9);
    background-color: #f6f6f6;
    background-color: rgba(246, 246, 246, 0.9);
  }
  .banner-slider .line-red {
    margin-left: -14px;
    margin-top: 10px;
  }
  .banner-slider .line-red p {
    font-size: 24px;
  }
}
@media (max-width: 767px) {
  .banner-slider .slide-text > h2 {
    font-size: 32px;
    line-height: 1.6em;
  }
  .banner-slider .slide-text > h2 > span {
    padding: 0em;
    box-shadow: 0.3em 0 0 rgba(246, 246, 246, 0.9), -0.3em 0 0 rgba(246, 246, 246, 0.9);
    background-color: #f6f6f6;
    background-color: rgba(246, 246, 246, 0.9);
  }
  .banner-slider .line-red {
    margin-left: -10px;
    margin-top: 10px;
  }
  .banner-slider .line-red p {
    font-size: 20px;
  }
}
@media (max-width: 400px) {
  .banner-slider .slide-text > h2 {
    font-size: 30px;
  }
  .banner-slider .line-red p {
    font-size: 18px;
  }
}

footer .sign-class {
  background: #ac192d;
  color: white;
  padding-top: 50px;
  padding-bottom: 40px;
}
footer .sign-class .text-class p {
  font-family: "Montserrat";
  line-height: 1.5;
  margin-bottom: 0;
}
@media (min-width: 993px) {
  footer .sign-class .text-class p {
    text-align: right;
    font-size: 28px;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  footer .sign-class .text-class p {
    text-align: right;
    font-size: 20px;
    line-height: 1.4;
    margin-top: 8px;
  }
}
@media (max-width: 767px) {
  footer .sign-class .text-class p {
    text-align: center;
    font-size: 20px;
    line-height: 1.2;
    margin-bottom: 10px;
  }
}
@media (min-width: 993px) {
  footer .sign-class .text-class span {
    text-align: right;
    font-size: 16px;
    float: right;
    line-height: 1.2;
    margin-top: -5px;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  footer .sign-class .text-class span {
    font-size: 13px;
    line-height: 1.4;
    margin-top: 0px;
    text-align: right;
    float: right;
  }
}
@media (max-width: 767px) {
  footer .sign-class .text-class span {
    text-align: center;
    font-size: 16px;
    display: block;
    line-height: 1.2;
    margin-bottom: 20px;
  }
}
footer .sign-class .text-class p.btn-lastnews {
  text-align: center;
}
footer .sign-class .text-class p.btn-lastnews a, footer .sign-class .text-class p.btn-lastnews a:focus {
  color: white;
  text-decoration: none;
}
footer .sign-class .text-class p.btn-lastnews a:hover, footer .sign-class .text-class p.btn-lastnews a:focus:hover {
  text-decoration: none;
  opacity: 0.75;
}
footer .sign-class .newsletter-class form {
  margin-top: 5px;
}
footer .sign-class .newsletter-class .form-control {
  padding: 18px 40px 18px 20px;
  background: white;
  border: 0;
  border-radius: 0px !important;
  height: 54px !important;
}
footer .sign-class .newsletter-class .btn-subscribe {
  padding: 0;
  border-radius: 0;
  border: 0;
  background: transparent;
}
footer .sign-class .newsletter-class .btn-subscribe button {
  background: #ac192d;
  border: 2px solid white;
  color: white;
  text-decoration: none;
  border-radius: 0px;
  outline: none;
  margin-left: 0px;
  position: relative;
  z-index: 9;
}
@media (min-width: 993px) {
  footer .sign-class .newsletter-class .btn-subscribe button {
    font-size: 18px;
    padding: 12px 20px 13px 20px;
  }
}
@media (max-width: 992px) {
  footer .sign-class .newsletter-class .btn-subscribe button {
    font-size: 16px;
    padding: 14px 20px;
  }
}
footer .sign-class .newsletter-class .btn-subscribe buuton:hover {
  background: #92061a;
  border: 2px solid white;
}
footer .menu-footer {
  background: url("/Content/images/footer_bg.png") center center no-repeat #373737;
  color: white;
  border-top: 9px solid #ac192d;
  padding-top: 35px;
  padding-bottom: 40px;
  margin-top: -8px;
}
footer .menu-footer .icon-fa {
  margin-bottom: 10px;
}
footer .menu-footer .icon-fa i {
  padding: 5px 10px;
  font-size: 22px;
  margin-left: 10px;
  margin-right: 10px;
  background: white;
  color: #373737;
  border-radius: 50%;
}
footer .menu-footer .icon-fa a:hover i {
  background: #ac192d;
  color: #373737;
}
footer .menu-footer ul {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
  margin-top: 25px;
}
@media (min-width: 768px) {
  footer .menu-footer ul {
    display: -webkit-inline-box;
  }
}
@media (max-width: 767px) {
  footer .menu-footer ul {
    text-align: center;
  }
  footer .menu-footer ul li {
    margin-top: 10px;
    margin-bottom: 10px;
  }
}
footer .menu-footer ul li {
  margin-left: 20px;
  margin-right: 20px;
}
footer .copy-class {
  background: #1b1d1f;
  color: white;
  padding-top: 15px;
  padding-bottom: 15px;
}
footer .info-class {
  background: white;
}
@media (min-width: 993px) {
  footer .info-class {
    width: 445px;
    position: relative;
    margin-top: -334px;
    margin-left: -7px;
    padding: 30px 20px;
    float: left;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  footer .info-class {
    padding-left: 25%;
  }
}
@media (max-width: 992px) {
  footer .info-class {
    padding-top: 40px;
    padding-bottom: 45px;
  }
}
footer .info-class h2 {
  margin-top: 0;
  margin-bottom: 20px;
  font-family: "Montserrat";
  font-size: 32px;
}
footer .info-class p i {
  width: 30px;
  font-size: 24px;
}
footer .info-class a, footer .info-class a:focus {
  color: #1b1d1f;
}
footer .info-class a:hover {
  color: #ac192d;
}
footer .info-class a, footer .info-class a:focus, footer .info-class a:hover {
  text-decoration: none;
}
footer .info-class .btn-link, footer .info-class #div-stock-content > div .box-product .box-product-info .more-info, #div-stock-content > div .box-product .box-product-info footer .info-class .more-info {
  margin-top: 20px;
}

.btn-link, #div-stock-content > div .box-product .box-product-info .more-info, .btn-link:focus, #div-stock-content > div .box-product .box-product-info .more-info:focus {
  text-align: center;
  font-family: "Montserrat";
  background: transparent !important;
  color: #ac192d !important;
  padding: 16px 35px;
  text-transform: uppercase;
  display: inline-block;
  border-radius: 0px;
  line-height: 1.2;
  text-decoration: none;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  min-width: 180px;
  border: 2px solid #ac192d;
}
.btn-link:hover, #div-stock-content > div .box-product .box-product-info .more-info:hover, .btn-link:focus:hover, #div-stock-content > div .box-product .box-product-info .more-info:focus:hover {
  background: #ac192d !important;
  color: white !important;
  text-decoration: none;
}

.btn-link1, #nm-intro div.options2 a.pdf, .brochure-specs div.btn-brochure-specs a, .btn-link1:focus, #nm-intro div.options2 a.pdf:focus, .brochure-specs div.btn-brochure-specs a:focus {
  text-align: center;
  font-family: "Montserrat";
  background: transparent !important;
  border: 2px solid white;
  color: white !important;
  padding: 16px 35px;
  text-transform: uppercase;
  display: inline-block;
  border-radius: 0px;
  line-height: 1.2;
  text-decoration: none;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  min-width: 180px;
}
.btn-link1:hover, #nm-intro div.options2 a.pdf:hover, .brochure-specs div.btn-brochure-specs a:hover, .btn-link1:focus:hover, #nm-intro div.options2 a.pdf:focus:hover, .brochure-specs div.btn-brochure-specs a:focus:hover {
  background: #ac192d !important;
  color: white !important;
  text-decoration: none;
}

.btn-link2, .DetailViewTwelve #btnSendMail, .DetailViewTwelve #btnSendMail:focus, .btn-link2:focus, .DetailViewTwelve #btnSendMail:focus {
  text-align: center;
  font-family: "Montserrat";
  background: #ac192d !important;
  color: white !important;
  border: 2px solid #ac192d;
  padding: 16px 35px;
  text-transform: uppercase;
  display: inline-block;
  border-radius: 0px;
  line-height: 1.2;
  text-decoration: none;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  min-width: 180px;
}
.btn-link2:hover, .DetailViewTwelve #btnSendMail:hover, .btn-link2:focus:hover, .DetailViewTwelve #btnSendMail:focus:hover {
  background: #ac192d !important;
  color: white !important;
  border: 2px solid white;
  text-decoration: none;
}

.btn-text, footer .menu-footer a, footer .copy-class a, footer .copy-class a:focus, .btn-text:focus, footer .menu-footer a:focus, footer .copy-class a:focus {
  color: white;
  text-decoration: none;
}

.btn-text:hover, footer .menu-footer a:hover, footer .copy-class a:hover {
  color: #ac192d;
  text-decoration: none;
}

.line2 {
  width: 80px;
  height: 3px;
  text-align: center;
  background: #ac192d;
  border-top: 0;
  margin-top: 10px;
  margin-bottom: 15px;
  display: -webkit-inline-box;
}

#btnTopPages {
  position: fixed;
  bottom: 50px;
  right: 20px;
  z-index: 999;
  background: #ac192d;
}
#btnTopPages a, #btnTopPages a:focus {
  color: white !important;
  text-decoration: inherit;
  background: #ac192d;
  padding: 5px 7px;
}
#btnTopPages a:hover {
  color: white !important;
  text-decoration: inherit;
  background: #ac192d;
}

.box-product-specifications {
  display: none;
}

.css-view19 .container, .DetailViewTwelve .container {
  max-width: 1350px;
  width: 100%;
}

.frm-view19 {
  background: #1b1d1f;
  float: left;
  width: 100%;
  border-radius: 4px;
  padding-top: 15px;
}
.frm-view19 > .col-lg-12 {
  background: rgba(0, 0, 0, 0.2);
}
.frm-view19 .form-control {
  background: #f0f2f5;
  color: #1b1d1f;
  outline: none;
}
.frm-view19 .countVehicles {
  color: white;
  font-size: 18px;
}
.frm-view19 .countVehicles b {
  font-size: 24px;
}
.frm-view19 .titleCurrent {
  color: white;
  font-size: 18px;
  text-align: right;
  line-height: 2;
}

@media (max-width: 767px) {
  .frm-view19 .titleCurrent {
    text-align: left;
  }
}
#div-stock-content > div .box-product {
  background: #f0f2f5;
  display: block;
  margin-bottom: 30px;
  color: #1b1d1f;
  text-align: center;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}
#div-stock-content > div .box-product img {
  display: initial;
}
#div-stock-content > div .box-product h3 {
  font-family: "Montserrat";
  margin-top: 0;
  margin-bottom: 0;
  padding: 10px;
  font-size: 18px;
  height: 86px;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1.2;
}
#div-stock-content > div .box-product .box-product-specifications {
  background: #f6f6f6;
  padding: 10px 10px 0px 10px;
  height: 65px;
}
#div-stock-content > div .box-product .box-product-specifications .col-xs-3 {
  padding-left: 10px;
  padding-right: 10px;
  font-size: 13px;
}
#div-stock-content > div .box-product .box-product-specifications .col-xs-3 p {
  margin-bottom: 0;
}
#div-stock-content > div .box-product .box-product-description {
  font-size: 15px;
  line-height: 1.5;
  padding: 0 15px;
  margin: 5px 0 15px 0;
  display: -webkit-box;
  height: 70px;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
#div-stock-content > div .box-product .box-product-price {
  padding: 0 15px 15px 15px;
  text-align: left;
}
#div-stock-content > div .box-product .box-product-price .cl-price {
  line-height: 1.2;
}
#div-stock-content > div .box-product .box-product-price .cl-price h4 {
  font-family: "Montserrat";
  margin-bottom: 0;
  margin-top: 0;
  font-size: 20px;
}
#div-stock-content > div .box-product .box-product-price .cl-price span {
  font-size: 13px;
}
#div-stock-content > div .box-product .box-product-info .more-info {
  text-align: center;
  display: block;
  padding: 15px 10px;
}
#div-stock-content > div .box-product-hover:hover {
  -moz-box-shadow: 0 0 5px #bbbbbb;
  -webkit-box-shadow: 0 0 5px #bbbbbb;
  box-shadow: 0 0 5px #bbbbbb;
}
#div-stock-content > div .box-product-hover:hover .box-product-info .more-info {
  background: #ac192d !important;
  color: white !important;
  box-shadow: inset 0 0px 0px transparent;
}
#div-stock-content > div a:hover, #div-stock-content > div a:focus {
  text-decoration: initial;
}

.css-view19 input.btn-success, .js-search input.btn-success {
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  background: #ac192d;
  border-radius: 0px;
  outline: none;
  padding: 11px 12px;
  font-family: "Montserrat";
  font-size: 18px;
}

.css-view19 input.btn-success:hover, .js-search input.btn-success:hover {
  opacity: 0.85;
}

ul.pagination {
  margin-top: 0;
}
ul.pagination li input {
  background-color: #f6f6f6;
  color: #ac192d;
  float: left;
  padding: 5px 10px;
}
ul.pagination li.active input {
  background-color: #ac192d;
  color: white;
  float: left;
  padding: 5px 10px;
}

.DetailViewTwelve {
  padding-top: 60px;
  padding-bottom: 50px;
}
.DetailViewTwelve .product-title {
  display: inline-block;
  width: 100%;
  margin-bottom: 20px;
}
.DetailViewTwelve .product-title h2 {
  font-family: "Montserrat";
  margin-top: 14px;
  float: left;
  font-size: 24px;
  color: #1b1d1f;
}
.DetailViewTwelve .product-title .cl_search_results {
  background: #ac192d;
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: center;
  color: white;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}
.DetailViewTwelve .product-title .cl_search_results input {
  color: white;
}
.DetailViewTwelve .product-title .cl_search_results:hover {
  background: #ac192d;
}
.DetailViewTwelve .product-title .product-header {
  float: right;
}
.DetailViewTwelve .product-title .product-header .product-price {
  font-family: "Montserrat";
  font-weight: normal;
  font-size: 26px;
  margin-top: 5px;
  margin-bottom: 5px;
  display: inline-block;
  color: #ac192d;
}
.DetailViewTwelve .product-title .product-header .drive-away-label {
  font-size: 12px;
}
.DetailViewTwelve .widget.form {
  background: #e0e0e0;
  padding: 15px;
  margin-bottom: 30px;
}
.DetailViewTwelve .widget.form h3 {
  font-family: "Montserrat";
  font-weight: normal;
  border-bottom: 0;
  font-size: 30px;
  border-bottom: 0;
  margin-top: 5px;
  padding-bottom: 5px;
}
.DetailViewTwelve .widget.form > label {
  font-weight: inherit;
  line-height: 1.4;
  margin-bottom: 15px;
}
.DetailViewTwelve .product-slider {
  margin-bottom: 20px;
}
.DetailViewTwelve .product-comments {
  margin-bottom: 40px;
}
.DetailViewTwelve .product-comments h3 {
  font-family: "Montserrat";
  background: #e0e0e0;
  font-size: 24px;
  padding: 15px;
}
.DetailViewTwelve #btnSendMail, .DetailViewTwelve #btnSendMail:focus {
  width: 100%;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  font-size: 18px;
  outline: none;
}

@media (min-width: 993px) {
  .product-title {
    background: #e0e0e0;
  }
  .product-title .col-md-4.col-lg-3 {
    float: right;
  }
  .product-title .col-md-4.col-lg-3 .cl_search_results {
    margin-right: -15px;
    margin-left: 8px;
  }
}
@media (max-width: 992px) {
  .product-title .col-md-8.col-lg-9 {
    background: #e0e0e0;
    display: inline-block;
    width: 100%;
    margin-top: 20px;
  }
  .product-title .col-md-4.col-lg-3 {
    float: left;
  }
  .product-title .col-md-4.col-lg-3 .cl_search_results {
    margin-left: -15px;
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (min-width: 768px) {
  .main-content .tab-content {
    padding: 30px 20px;
  }
  .main-content .tab-content .frm2-calculator {
    margin: 30px 20%;
  }
}
.main-content .tab-content .vehicle_details_body table tr th {
  font-weight: 500;
}
.main-content .tab-content .tab-pane h4 {
  font-family: "Montserrat";
  font-size: 30px;
  text-transform: uppercase;
}
.main-content .tab-content .tab-pane .panel-group .panel-heading {
  padding-bottom: 0;
}
.main-content .tab-content .tab-pane .panel-group .panel-heading a {
  padding-left: 10px;
  padding-right: 10px;
}
.main-content .tab-content .tab-pane .panel-group .panel-heading a:hover {
  background: #fbfbfb;
}
.main-content .tab-content .tab-pane .panel-group .panel-heading i {
  margin-right: 10px;
}
.main-content ul.nav-tabs {
  border-bottom: 0;
  text-align: center;
}
.main-content ul.nav-tabs li, .main-content ul.nav-tabs li:hover {
  background: #e0e0e0;
  background-image: url("/Content/images/icondetails12.png");
  background-repeat: no-repeat;
  float: left;
  height: 85px;
}
@media (min-width: 768px) {
  .main-content ul.nav-tabs li, .main-content ul.nav-tabs li:hover {
    width: 24%;
    margin-left: 0.5%;
    margin-right: 0.5%;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .main-content ul.nav-tabs li a, .main-content ul.nav-tabs li:hover a {
    padding: 0;
  }
}
@media (max-width: 767px) {
  .main-content ul.nav-tabs li, .main-content ul.nav-tabs li:hover {
    width: 49%;
    margin: 0.5%;
  }
}
.main-content ul.nav-tabs li a, .main-content ul.nav-tabs li a:hover, .main-content ul.nav-tabs li:hover a, .main-content ul.nav-tabs li:hover a:hover {
  background-color: transparent;
  border: 0;
  color: #1b1d1f;
  padding-top: 55px;
}
.main-content ul.nav-tabs li.tabs1, .main-content ul.nav-tabs li.tabs1:hover {
  background-position: center 5px;
}
.main-content ul.nav-tabs li.tabs2, .main-content ul.nav-tabs li.tabs2:hover {
  background-position: center -195px;
}
.main-content ul.nav-tabs li.tabs3, .main-content ul.nav-tabs li.tabs3:hover {
  background-position: center -195px;
}
.main-content ul.nav-tabs li.tabs4, .main-content ul.nav-tabs li.tabs4:hover {
  background-position: center -395px;
}
.main-content ul.nav-tabs li.active {
  background: #ac192d;
  background-image: url("/Content/images/icondetails12.png");
  background-repeat: no-repeat;
  float: left;
  height: 85px;
}
@media (min-width: 768px) {
  .main-content ul.nav-tabs li.active {
    width: 24%;
    margin-left: 0.5%;
    margin-right: 0.5%;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  .main-content ul.nav-tabs li.active a {
    padding: 0;
  }
}
@media (max-width: 767px) {
  .main-content ul.nav-tabs li.active {
    width: 49%;
    margin: 0.5%;
  }
}
.main-content ul.nav-tabs li.active a, .main-content ul.nav-tabs li.active a:hover {
  background-color: transparent;
  border: 0;
  color: white;
  padding-top: 55px;
}
.main-content ul.nav-tabs li.tabs1.active {
  background-position: center -95px;
}
.main-content ul.nav-tabs li.tabs2.active {
  background-position: center -295px;
}
.main-content ul.nav-tabs li.tabs3.active {
  background-position: center -295px;
}
.main-content ul.nav-tabs li.tabs4.active {
  background-position: center -495px;
}
.main-content .panel-group .panel {
  box-shadow: 0 0px 0px transparent;
  border: 0;
  border-radius: 0;
}
.main-content .panel-group .panel .panel-heading {
  background: transparent;
  padding: 0 0 5px 0;
  border: 1px solid #f0f0f0;
}
.main-content .panel-group .panel .panel-heading a {
  display: inline-block;
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
}
.main-content .panel-group .panel .panel-heading a, .main-content .panel-group .panel .panel-heading a:focus, .main-content .panel-group .panel .panel-heading a:hover {
  text-decoration: none;
}
.main-content .panel-group .panel .panel-heading i {
  position: relative;
  margin-top: -30px;
}
.main-content .panel-group .panel > div.panel-collapse.collapse, .main-content .panel-group .panel > div.panel-collapse.collapsing, .main-content .panel-group .panel > div.panel-collapse.collapse.in {
  background: #f9f9f9;
  border: 1px solid #f0f0f0;
  padding-left: 10px;
  padding-right: 10px;
  line-height: 2.4;
}

.panel-group .panel + .panel {
  margin-top: 10px;
}

.tooltip {
  background: #ac192d !important;
}

.galleria-container {
  background: #484848 !important;
}

.galleria-fullscreen, .galleria-play {
  border-right: 1px solid #2f2f2f !important;
  outline: 1px solid #797979 !important;
}

.galleria-container.notouch .galleria-thumblink:hover,
.galleria-container.touch .galleria-thumblink:active,
.galleria-thumblink.open,
.galleria-container.notouch .galleria-fullscreen:hover,
.galleria-container.touch .galleria-fullscreen:active,
.galleria-container.notouch .galleria-play:hover,
.galleria-container.touch .galleria-play:active,
.galleria-container.notouch .galleria-popout:hover,
.galleria-container.touch .galleria-popout:active {
  background-color: #d51125 !important;
}

.models-list-page h2 {
  margin-bottom: 20px;
}
.models-list-page h3 {
  margin-bottom: 0px;
}
.models-list-page h2, .models-list-page h3 {
  margin-top: 0;
  font-size: 28px;
}
.models-list-page .filter-list {
  margin-bottom: 40px;
}
@media (min-width: 993px) {
  .models-list-page .filter-list {
    margin-right: 15px;
  }
}
.models-list-page .filter-list ul.list-menu {
  padding-left: 0;
  list-style: none;
}
.models-list-page .filter-list ul.list-menu li a, .models-list-page .filter-list ul.list-menu li a:focus {
  padding: 15px 35px 15px 15px;
  width: 100%;
  display: inline-block;
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid #eaeaea;
  margin-bottom: -1px;
  text-decoration: none;
  color: #1b1d1f;
}
.models-list-page .filter-list ul.list-menu li a i, .models-list-page .filter-list ul.list-menu li a:focus i {
  -webkit-transition: 0.2s ease all;
  transition: 0.2s ease all;
  float: right;
  font-size: 26px;
}
.models-list-page .filter-list ul.list-menu li a:hover {
  color: #ac192d;
  text-decoration: none;
}
.models-list-page .filter-list ul.list-menu li a:hover i {
  -webkit-transition: 0.2s ease all;
  transition: 0.2s ease all;
  margin-right: -20px;
}
.models-list-page .filter-list ul.list-menu li.active > a, .models-list-page .filter-list ul.list-menu li.active a:focus, .models-list-page .filter-list ul.list-menu li.active a:hover {
  color: #ac192d;
  text-decoration: none;
}
.models-list-page .filter-list ul.list-menu li.active > a i, .models-list-page .filter-list ul.list-menu li.active a:focus i, .models-list-page .filter-list ul.list-menu li.active a:hover i {
  -webkit-transition: 0.2s ease all;
  transition: 0.2s ease all;
  margin-right: -20px;
}
.models-list-page .filter-list ul.list-menu li.active > ul {
  display: block !important;
  padding-left: 0;
  list-style: none;
  background: #f6f6f6;
}
.models-list-page .filter-list ul.list-menu li.active > ul li a {
  padding-left: 40px;
}
.models-list-page .filter-list ul.list-menu li.active > ul li.active a {
  color: #ac192d;
}
.models-list-page .models-list .line2 {
  height: 3px;
  text-align: left;
  display: inline-block;
}
.models-list-page .models-list .box-models {
  margin-bottom: 40px;
}
.models-list-page .models-list .box-models a, .models-list-page .models-list .box-models a:focus {
  text-decoration: none;
  color: #1b1d1f;
  padding: 10px;
  display: inline-block;
}
.models-list-page .models-list .box-models a .images img, .models-list-page .models-list .box-models a:focus .images img {
  display: -webkit-inline-box;
  height: 115px;
}
.models-list-page .models-list .box-models a h4, .models-list-page .models-list .box-models a:focus h4 {
  font-family: "Montserrat";
  text-transform: uppercase;
  margin: 0 10px;
  height: 60px;
  font-size: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1.3;
}
.models-list-page .models-list .box-models a span, .models-list-page .models-list .box-models a:focus span {
  margin: 0 10px;
  height: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1.3;
}
.models-list-page .models-list .box-models a:hover {
  -webkit-box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.1);
  display: inline-block;
  padding: 10px;
  color: #ac192d;
  text-decoration: none;
}
.models-list-page .models-list .box-models a:hover img {
  -webkit-filter: brightness(70%);
}
.models-list-page .models-list .box-models .box-list {
  text-decoration: none;
  color: #1b1d1f;
  padding: 10px;
  display: inline-block;
}
.models-list-page .models-list .box-models .box-list .images img {
  display: -webkit-inline-box;
  height: 115px;
}
.models-list-page .models-list .box-models .box-list h4 {
  font-family: "Montserrat";
  text-transform: uppercase;
  margin: 0 10px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1.3;
}
.models-list-page .models-list .box-models .box-list span {
  margin: 0 10px;
  height: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1.3;
}
@media (max-width: 400px) {
  .models-list-page .models-list .col-xs-6 {
    width: 100%;
  }
}

.models-details-page .models-details-video h2 {
  margin-top: 0;
  margin-bottom: 30px;
}

@media (min-width: 1200px) {
  .about-page h3 {
    margin-top: 60px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .about-page h3 {
    margin-top: 25px;
    font-size: 22px;
  }
}
.about-page h3.top1 {
  margin-top: 0;
}
@media (min-width: 993px) {
  .about-page .pull-left > div {
    margin-right: -15px;
  }
  .about-page .pull-left > .fadeInLeft {
    padding-right: 30px;
  }
  .about-page .pull-right > div {
    margin-left: -15px;
  }
  .about-page .pull-right > .fadeInRight {
    padding-left: 30px;
  }
}
@media (max-width: 767px) {
  .about-page {
    text-align: center;
  }
  .about-page .pull-left, .about-page .pull-right {
    float: none !important;
  }
  .about-page .pull-left img, .about-page .pull-right img {
    margin-bottom: 40px;
    margin-rop: 20px;
  }
}

.frm-class {
  background: #f0f1f5;
  padding: 20px 30px;
}

.frm-calculate {
  background: #f6f7fb;
  margin-top: 40px;
  padding-top: 50px;
  padding-bottom: 50px;
  margin-bottom: -60px;
}
.frm-calculate h2 {
  margin-top: 0;
}

div.tooltip {
  background: #ac192d !important;
}

.frm-finance h3 {
  font-size: 28px;
}

.logo-brands {
  margin-top: 60px;
  margin-bottom: 60px;
  text-align: center;
}
.logo-brands img {
  display: -webkit-inline-box;
  margin-bottom: 20px;
  max-width: 168px;
}
.logo-brands #owl-demo .item {
  padding: 0;
}

.parts-page .parts-box a, .parts-page .parts-box a:hover, .parts-page .parts-box a:focus {
  text-decoration: none;
}

@media (min-width: 767px) {
  .fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
  }
}
.banner-model .banner-image {
  text-align: center;
}
.banner-model .banner-image img {
  width: inherit;
  max-width: 100%;
  height: 290px;
  object-fit: cover;
  display: -webkit-inline-box;
}
.banner-model h2 {
  background: #ac192d;
  color: white;
  font-size: 24px;
  margin: 0;
  padding: 20px;
  position: relative;
  margin-top: -32px;
  font-family: "Proxima Nova Regular";
  font-weight: bold;
}

.models-details-page .galleria-container {
  border: 0;
  background: transparent !important;
}
.models-details-page .galleria-container .galleria-stage {
  background: transparent;
  border: 1px solid rgba(27, 29, 31, 0.2);
}
.models-details-page .galleria-bar {
  background: rgba(27, 29, 31, 0.8);
}

.info-contact hr {
  margin-top: 13px;
  margin-bottom: 13px;
}


