@charset "UTF-8";
/*********************************
#imports
**********************************/ /*!
 * 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: 0.75s;
  animation-duration: 0.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.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
@keyframes jello {
  from, 11.1%, to {
    -webkit-transform: none;
    transform: none;
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.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;
}

/*! normalize.css v5.0.0 | MIT License | github.com/necolas/normalize.css */
/**
 * 1. Change the default font family in all browsers (opinionated).
 * 2. Correct the line height in all browsers.
 * 3. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 */
/* Document
   ========================================================================== */
html {
  font-family: sans-serif; /* 1 */
  line-height: 1.15; /* 2 */
  -ms-text-size-adjust: 100%; /* 3 */
  -webkit-text-size-adjust: 100%; /* 3 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers (opinionated).
 */
body {
  margin: 0;
}

/**
 * Add the correct display in IE 9-.
 */
article,
aside,
footer,
header,
nav,
section {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 * 1. Add the correct display in IE.
 */
figcaption,
figure,
main { /* 1 */
  display: block;
}

/**
 * Add the correct margin in IE 8.
 */
figure {
  margin: 1em 40px;
}

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 */
a {
  background-color: transparent; /* 1 */
  -webkit-text-decoration-skip: objects; /* 2 */
}

/**
 * Remove the outline on focused links when they are also active or hovered
 * in all browsers (opinionated).
 */
a:active,
a:hover {
  outline-width: 0;
}

/**
 * 1. Remove the bottom border in Firefox 39-.
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
 */
b,
strong {
  font-weight: inherit;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font style in Android 4.3-.
 */
dfn {
  font-style: italic;
}

/**
 * Add the correct background and color in IE 9-.
 */
mark {
  background-color: #ff0;
  color: #000;
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
audio,
video {
  display: inline-block;
}

/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Remove the border on images inside links in IE 10-.
 */
img {
  border-style: none;
}

/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers (opinionated).
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: sans-serif; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select { /* 1 */
  text-transform: none;
}

/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 *    controls in Android 4.
 * 2. Correct the inability to style clickable types in iOS and Safari.
 */
button,
html [type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button; /* 2 */
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Change the border, margin, and padding in all browsers (opinionated).
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * 1. Add the correct display in IE 9-.
 * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * Remove the default vertical scrollbar in IE.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10-.
 * 2. Remove the padding in IE 10-.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-cancel-button,
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in IE 9-.
 * 1. Add the correct display in Edge, IE, and Firefox.
 */
details,
menu {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Scripting
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
canvas {
  display: inline-block;
}

/**
 * Add the correct display in IE.
 */
template {
  display: none;
}

/* Hidden
   ========================================================================== */
/**
 * Add the correct display in IE 10-.
 */
[hidden] {
  display: none;
}

.container-fluid,
.container {
  margin-right: auto;
  margin-left: auto;
}

.container-fluid {
  padding-right: 2rem;
  padding-left: 2rem;
}

.row {
  box-sizing: border-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -0.5rem;
  margin-left: -0.5rem;
}

.row.reverse {
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.col.reverse {
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}

.col-xs,
.col-xs-1,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9,
.col-xs-10,
.col-xs-11,
.col-xs-12,
.col-xs-offset-0,
.col-xs-offset-1,
.col-xs-offset-2,
.col-xs-offset-3,
.col-xs-offset-4,
.col-xs-offset-5,
.col-xs-offset-6,
.col-xs-offset-7,
.col-xs-offset-8,
.col-xs-offset-9,
.col-xs-offset-10,
.col-xs-offset-11,
.col-xs-offset-12 {
  box-sizing: border-box;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}

.col-xs {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  max-width: 100%;
}

.col-xs-1 {
  -ms-flex-preferred-size: 8.33333333%;
  flex-basis: 8.33333333%;
  max-width: 8.33333333%;
}

.col-xs-2 {
  -ms-flex-preferred-size: 16.66666667%;
  flex-basis: 16.66666667%;
  max-width: 16.66666667%;
}

.col-xs-3 {
  -ms-flex-preferred-size: 25%;
  flex-basis: 25%;
  max-width: 25%;
}

.col-xs-4 {
  -ms-flex-preferred-size: 33.33333333%;
  flex-basis: 33.33333333%;
  max-width: 33.33333333%;
}

.col-xs-5 {
  -ms-flex-preferred-size: 41.66666667%;
  flex-basis: 41.66666667%;
  max-width: 41.66666667%;
}

.col-xs-6 {
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
  max-width: 50%;
}

.col-xs-7 {
  -ms-flex-preferred-size: 58.33333333%;
  flex-basis: 58.33333333%;
  max-width: 58.33333333%;
}

.col-xs-8 {
  -ms-flex-preferred-size: 66.66666667%;
  flex-basis: 66.66666667%;
  max-width: 66.66666667%;
}

.col-xs-9 {
  -ms-flex-preferred-size: 75%;
  flex-basis: 75%;
  max-width: 75%;
}

.col-xs-10 {
  -ms-flex-preferred-size: 83.33333333%;
  flex-basis: 83.33333333%;
  max-width: 83.33333333%;
}

.col-xs-11 {
  -ms-flex-preferred-size: 91.66666667%;
  flex-basis: 91.66666667%;
  max-width: 91.66666667%;
}

.col-xs-12 {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  max-width: 100%;
}

.col-xs-offset-0 {
  margin-left: 0;
}

.col-xs-offset-1 {
  margin-left: 8.33333333%;
}

.col-xs-offset-2 {
  margin-left: 16.66666667%;
}

.col-xs-offset-3 {
  margin-left: 25%;
}

.col-xs-offset-4 {
  margin-left: 33.33333333%;
}

.col-xs-offset-5 {
  margin-left: 41.66666667%;
}

.col-xs-offset-6 {
  margin-left: 50%;
}

.col-xs-offset-7 {
  margin-left: 58.33333333%;
}

.col-xs-offset-8 {
  margin-left: 66.66666667%;
}

.col-xs-offset-9 {
  margin-left: 75%;
}

.col-xs-offset-10 {
  margin-left: 83.33333333%;
}

.col-xs-offset-11 {
  margin-left: 91.66666667%;
}

.start-xs {
  -ms-flex-pack: start;
  justify-content: flex-start;
  text-align: start;
}

.center-xs {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}

.end-xs {
  -ms-flex-pack: end;
  justify-content: flex-end;
  text-align: end;
}

.top-xs {
  -ms-flex-align: start;
  align-items: flex-start;
}

.middle-xs {
  -ms-flex-align: center;
  align-items: center;
}

.bottom-xs {
  -ms-flex-align: end;
  align-items: flex-end;
}

.around-xs {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.between-xs {
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.first-xs {
  -ms-flex-order: -1;
  order: -1;
}

.last-xs {
  -ms-flex-order: 1;
  order: 1;
}

@media only screen and (min-width: 48em) {
  .container {
    width: 49rem;
  }
  .col-sm,
  .col-sm-1,
  .col-sm-2,
  .col-sm-3,
  .col-sm-4,
  .col-sm-5,
  .col-sm-6,
  .col-sm-7,
  .col-sm-8,
  .col-sm-9,
  .col-sm-10,
  .col-sm-11,
  .col-sm-12,
  .col-sm-offset-0,
  .col-sm-offset-1,
  .col-sm-offset-2,
  .col-sm-offset-3,
  .col-sm-offset-4,
  .col-sm-offset-5,
  .col-sm-offset-6,
  .col-sm-offset-7,
  .col-sm-offset-8,
  .col-sm-offset-9,
  .col-sm-offset-10,
  .col-sm-offset-11,
  .col-sm-offset-12 {
    box-sizing: border-box;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .col-sm {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }
  .col-sm-1 {
    -ms-flex-preferred-size: 8.33333333%;
    flex-basis: 8.33333333%;
    max-width: 8.33333333%;
  }
  .col-sm-2 {
    -ms-flex-preferred-size: 16.66666667%;
    flex-basis: 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-sm-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    -ms-flex-preferred-size: 33.33333333%;
    flex-basis: 33.33333333%;
    max-width: 33.33333333%;
  }
  .col-sm-5 {
    -ms-flex-preferred-size: 41.66666667%;
    flex-basis: 41.66666667%;
    max-width: 41.66666667%;
  }
  .col-sm-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    -ms-flex-preferred-size: 58.33333333%;
    flex-basis: 58.33333333%;
    max-width: 58.33333333%;
  }
  .col-sm-8 {
    -ms-flex-preferred-size: 66.66666667%;
    flex-basis: 66.66666667%;
    max-width: 66.66666667%;
  }
  .col-sm-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    -ms-flex-preferred-size: 83.33333333%;
    flex-basis: 83.33333333%;
    max-width: 83.33333333%;
  }
  .col-sm-11 {
    -ms-flex-preferred-size: 91.66666667%;
    flex-basis: 91.66666667%;
    max-width: 91.66666667%;
  }
  .col-sm-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
  .col-sm-offset-0 {
    margin-left: 0;
  }
  .col-sm-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-sm-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-sm-offset-3 {
    margin-left: 25%;
  }
  .col-sm-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-sm-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-sm-offset-6 {
    margin-left: 50%;
  }
  .col-sm-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-sm-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-sm-offset-9 {
    margin-left: 75%;
  }
  .col-sm-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-sm-offset-11 {
    margin-left: 91.66666667%;
  }
  .start-sm {
    -ms-flex-pack: start;
    justify-content: flex-start;
    text-align: start;
  }
  .center-sm {
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
  }
  .end-sm {
    -ms-flex-pack: end;
    justify-content: flex-end;
    text-align: end;
  }
  .top-sm {
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .middle-sm {
    -ms-flex-align: center;
    align-items: center;
  }
  .bottom-sm {
    -ms-flex-align: end;
    align-items: flex-end;
  }
  .around-sm {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
  .between-sm {
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .first-sm {
    -ms-flex-order: -1;
    order: -1;
  }
  .last-sm {
    -ms-flex-order: 1;
    order: 1;
  }
}
@media only screen and (min-width: 64em) {
  .container {
    width: 65rem;
  }
  .col-md,
  .col-md-1,
  .col-md-2,
  .col-md-3,
  .col-md-4,
  .col-md-5,
  .col-md-6,
  .col-md-7,
  .col-md-8,
  .col-md-9,
  .col-md-10,
  .col-md-11,
  .col-md-12,
  .col-md-offset-0,
  .col-md-offset-1,
  .col-md-offset-2,
  .col-md-offset-3,
  .col-md-offset-4,
  .col-md-offset-5,
  .col-md-offset-6,
  .col-md-offset-7,
  .col-md-offset-8,
  .col-md-offset-9,
  .col-md-offset-10,
  .col-md-offset-11,
  .col-md-offset-12 {
    box-sizing: border-box;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .col-md {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }
  .col-md-1 {
    -ms-flex-preferred-size: 8.33333333%;
    flex-basis: 8.33333333%;
    max-width: 8.33333333%;
  }
  .col-md-2 {
    -ms-flex-preferred-size: 16.66666667%;
    flex-basis: 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-md-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }
  .col-md-4 {
    -ms-flex-preferred-size: 33.33333333%;
    flex-basis: 33.33333333%;
    max-width: 33.33333333%;
  }
  .col-md-5 {
    -ms-flex-preferred-size: 41.66666667%;
    flex-basis: 41.66666667%;
    max-width: 41.66666667%;
  }
  .col-md-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }
  .col-md-7 {
    -ms-flex-preferred-size: 58.33333333%;
    flex-basis: 58.33333333%;
    max-width: 58.33333333%;
  }
  .col-md-8 {
    -ms-flex-preferred-size: 66.66666667%;
    flex-basis: 66.66666667%;
    max-width: 66.66666667%;
  }
  .col-md-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }
  .col-md-10 {
    -ms-flex-preferred-size: 83.33333333%;
    flex-basis: 83.33333333%;
    max-width: 83.33333333%;
  }
  .col-md-11 {
    -ms-flex-preferred-size: 91.66666667%;
    flex-basis: 91.66666667%;
    max-width: 91.66666667%;
  }
  .col-md-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
  .col-md-offset-0 {
    margin-left: 0;
  }
  .col-md-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-md-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-md-offset-3 {
    margin-left: 25%;
  }
  .col-md-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-md-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-md-offset-6 {
    margin-left: 50%;
  }
  .col-md-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-md-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-md-offset-9 {
    margin-left: 75%;
  }
  .col-md-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-md-offset-11 {
    margin-left: 91.66666667%;
  }
  .start-md {
    -ms-flex-pack: start;
    justify-content: flex-start;
    text-align: start;
  }
  .center-md {
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
  }
  .end-md {
    -ms-flex-pack: end;
    justify-content: flex-end;
    text-align: end;
  }
  .top-md {
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .middle-md {
    -ms-flex-align: center;
    align-items: center;
  }
  .bottom-md {
    -ms-flex-align: end;
    align-items: flex-end;
  }
  .around-md {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
  .between-md {
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .first-md {
    -ms-flex-order: -1;
    order: -1;
  }
  .last-md {
    -ms-flex-order: 1;
    order: 1;
  }
}
@media only screen and (min-width: 75em) {
  .container {
    width: 76rem;
  }
  .col-lg,
  .col-lg-1,
  .col-lg-2,
  .col-lg-3,
  .col-lg-4,
  .col-lg-5,
  .col-lg-6,
  .col-lg-7,
  .col-lg-8,
  .col-lg-9,
  .col-lg-10,
  .col-lg-11,
  .col-lg-12,
  .col-lg-offset-0,
  .col-lg-offset-1,
  .col-lg-offset-2,
  .col-lg-offset-3,
  .col-lg-offset-4,
  .col-lg-offset-5,
  .col-lg-offset-6,
  .col-lg-offset-7,
  .col-lg-offset-8,
  .col-lg-offset-9,
  .col-lg-offset-10,
  .col-lg-offset-11,
  .col-lg-offset-12 {
    box-sizing: border-box;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .col-lg {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }
  .col-lg-1 {
    -ms-flex-preferred-size: 8.33333333%;
    flex-basis: 8.33333333%;
    max-width: 8.33333333%;
  }
  .col-lg-2 {
    -ms-flex-preferred-size: 16.66666667%;
    flex-basis: 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-lg-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    -ms-flex-preferred-size: 33.33333333%;
    flex-basis: 33.33333333%;
    max-width: 33.33333333%;
  }
  .col-lg-5 {
    -ms-flex-preferred-size: 41.66666667%;
    flex-basis: 41.66666667%;
    max-width: 41.66666667%;
  }
  .col-lg-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    -ms-flex-preferred-size: 58.33333333%;
    flex-basis: 58.33333333%;
    max-width: 58.33333333%;
  }
  .col-lg-8 {
    -ms-flex-preferred-size: 66.66666667%;
    flex-basis: 66.66666667%;
    max-width: 66.66666667%;
  }
  .col-lg-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    -ms-flex-preferred-size: 83.33333333%;
    flex-basis: 83.33333333%;
    max-width: 83.33333333%;
  }
  .col-lg-11 {
    -ms-flex-preferred-size: 91.66666667%;
    flex-basis: 91.66666667%;
    max-width: 91.66666667%;
  }
  .col-lg-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
  .col-lg-offset-0 {
    margin-left: 0;
  }
  .col-lg-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-lg-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-lg-offset-3 {
    margin-left: 25%;
  }
  .col-lg-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-lg-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-lg-offset-6 {
    margin-left: 50%;
  }
  .col-lg-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-lg-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-lg-offset-9 {
    margin-left: 75%;
  }
  .col-lg-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-lg-offset-11 {
    margin-left: 91.66666667%;
  }
  .start-lg {
    -ms-flex-pack: start;
    justify-content: flex-start;
    text-align: start;
  }
  .center-lg {
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
  }
  .end-lg {
    -ms-flex-pack: end;
    justify-content: flex-end;
    text-align: end;
  }
  .top-lg {
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .middle-lg {
    -ms-flex-align: center;
    align-items: center;
  }
  .bottom-lg {
    -ms-flex-align: end;
    align-items: flex-end;
  }
  .around-lg {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
  .between-lg {
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .first-lg {
    -ms-flex-order: -1;
    order: -1;
  }
  .last-lg {
    -ms-flex-order: 1;
    order: 1;
  }
}
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/*! nouislider - 9.2.0 - 2017-01-11 10:35:35 */
/* Functional styling;
 * These styles are required for noUiSlider to function.
 * You don't need to change these rules to apply your design.
 */
.noUi-target,
.noUi-target * {
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-user-select: none;
  -ms-touch-action: none;
  touch-action: none;
  -ms-user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
          user-select: none;
  box-sizing: border-box;
}

.noUi-target {
  position: relative;
  direction: ltr;
}

.noUi-base {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  /* Fix 401 */
}

.noUi-connect {
  position: absolute;
  right: 0;
  top: 0;
  left: 0;
  bottom: 0;
}

.noUi-origin {
  position: absolute;
  height: 0;
  width: 0;
}

.noUi-handle {
  position: relative;
  z-index: 1;
}

.noUi-state-tap .noUi-connect,
.noUi-state-tap .noUi-origin {
  transition: top 0.3s, right 0.3s, bottom 0.3s, left 0.3s;
}

.noUi-state-drag * {
  cursor: inherit !important;
}

/* Painting and performance;
 * Browsers can paint handles in their own layer.
 */
.noUi-base,
.noUi-handle {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

/* Slider size and handle placement;
 */
.noUi-horizontal {
  height: 18px;
}

.noUi-horizontal .noUi-handle {
  width: 34px;
  height: 28px;
  left: -17px;
  top: -6px;
}

.noUi-vertical {
  width: 18px;
}

.noUi-vertical .noUi-handle {
  width: 28px;
  height: 34px;
  left: -6px;
  top: -17px;
}

/* Styling;
 */
.noUi-target {
  background: #FAFAFA;
  border-radius: 4px;
  border: 1px solid #D3D3D3;
  box-shadow: inset 0 1px 1px #F0F0F0, 0 3px 6px -5px #BBB;
}

.noUi-connect {
  background: #3FB8AF;
  box-shadow: inset 0 0 3px rgba(51, 51, 51, 0.45);
  transition: background 450ms;
}

/* Handles and cursors;
 */
.noUi-draggable {
  cursor: ew-resize;
}

.noUi-vertical .noUi-draggable {
  cursor: ns-resize;
}

.noUi-handle {
  border: 1px solid #D9D9D9;
  border-radius: 3px;
  background: #FFF;
  cursor: default;
  box-shadow: inset 0 0 1px #FFF, inset 0 1px 7px #EBEBEB, 0 3px 6px -3px #BBB;
}

.noUi-active {
  box-shadow: inset 0 0 1px #FFF, inset 0 1px 7px #DDD, 0 3px 6px -3px #BBB;
}

/* Handle stripes;
 */
.noUi-handle:before,
.noUi-handle:after {
  content: "";
  display: block;
  position: absolute;
  height: 14px;
  width: 1px;
  background: #E8E7E6;
  left: 14px;
  top: 6px;
}

.noUi-handle:after {
  left: 17px;
}

.noUi-vertical .noUi-handle:before,
.noUi-vertical .noUi-handle:after {
  width: 14px;
  height: 1px;
  left: 6px;
  top: 14px;
}

.noUi-vertical .noUi-handle:after {
  top: 17px;
}

/* Disabled state;
 */
[disabled] .noUi-connect {
  background: #B8B8B8;
}

[disabled].noUi-target,
[disabled].noUi-handle,
[disabled] .noUi-handle {
  cursor: not-allowed;
}

/* Base;
 *
 */
.noUi-pips,
.noUi-pips * {
  box-sizing: border-box;
}

.noUi-pips {
  position: absolute;
  color: #999;
}

/* Values;
 *
 */
.noUi-value {
  position: absolute;
  text-align: center;
}

.noUi-value-sub {
  color: #ccc;
  font-size: 10px;
}

/* Markings;
 *
 */
.noUi-marker {
  position: absolute;
  background: #CCC;
}

.noUi-marker-sub {
  background: #AAA;
}

.noUi-marker-large {
  background: #AAA;
}

/* Horizontal layout;
 *
 */
.noUi-pips-horizontal {
  padding: 10px 0;
  height: 80px;
  top: 100%;
  left: 0;
  width: 100%;
}

.noUi-value-horizontal {
  -webkit-transform: translate3d(-50%, 50%, 0);
  transform: translate3d(-50%, 50%, 0);
}

.noUi-marker-horizontal.noUi-marker {
  margin-left: -1px;
  width: 2px;
  height: 5px;
}

.noUi-marker-horizontal.noUi-marker-sub {
  height: 10px;
}

.noUi-marker-horizontal.noUi-marker-large {
  height: 15px;
}

/* Vertical layout;
 *
 */
.noUi-pips-vertical {
  padding: 0 10px;
  height: 100%;
  top: 0;
  left: 100%;
}

.noUi-value-vertical {
  -webkit-transform: translate3d(0, 50%, 0);
  transform: translate3d(0, 50%, 0);
  padding-left: 25px;
}

.noUi-marker-vertical.noUi-marker {
  width: 5px;
  height: 2px;
  margin-top: -1px;
}

.noUi-marker-vertical.noUi-marker-sub {
  width: 10px;
}

.noUi-marker-vertical.noUi-marker-large {
  width: 15px;
}

.noUi-tooltip {
  display: block;
  position: absolute;
  border: 1px solid #D9D9D9;
  border-radius: 3px;
  background: #fff;
  color: #000;
  padding: 5px;
  text-align: center;
}

.noUi-horizontal .noUi-tooltip {
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  left: 50%;
  bottom: 120%;
}

.noUi-vertical .noUi-tooltip {
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  top: 50%;
  right: 120%;
}

/* Default custom select styles */
div.cs-select {
  display: inline-block;
  vertical-align: middle;
  position: relative;
  text-align: left;
  background: #fff;
  z-index: 0;
  width: 100%;
  max-width: 500px;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

div.cs-select:focus {
  outline: none; /* For better accessibility add a style for this in your skin */
}

.cs-select select {
  display: none;
}

.cs-select span {
  display: block;
  position: relative;
  cursor: pointer;
  padding: 1em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Placeholder and selected option */
.cs-select > span {
  padding-right: 3em;
}

.cs-select > span::after,
.cs-select .cs-selected span::after {
  speak: none;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.cs-select > span::after {
  content: "▾";
  right: 1em;
}

.cs-select .cs-selected span::after {
  content: "✓";
  margin-left: 1em;
}

.cs-select.cs-active > span::after {
  -webkit-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg);
}

div.cs-active {
  z-index: 200;
}

/* Options */
.cs-select .cs-options {
  position: absolute;
  overflow: hidden;
  width: 100%;
  background: #fff;
  visibility: hidden;
}

.cs-select.cs-active .cs-options {
  visibility: visible;
}

.cs-select ul {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}

.cs-select ul span {
  padding: 1em;
}

.cs-select ul li.cs-focus span {
  background-color: #ddd;
}

/* Optgroup and optgroup label */
.cs-select li.cs-optgroup ul {
  padding-left: 1em;
}

.cs-select li.cs-optgroup > span {
  cursor: default;
}

@font-face {
  font-family: "icomoon";
  src: url("../fonts/icomoon/icomoon.eot?-rdnm34");
  src: url("../fonts/icomoon/icomoon.eot?#iefix-rdnm34") format("embedded-opentype"), url("../fonts/icomoon/icomoon.woff?-rdnm34") format("woff"), url("../fonts/icomoon/icomoon.ttf?-rdnm34") format("truetype"), url("../fonts/icomoon/icomoon.svg?-rdnm34#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
}
div.cs-skin-border {
  background: transparent;
  font-size: 2em;
  font-weight: 700;
  max-width: 600px;
}

@media screen and (max-width: 30em) {
  div.cs-skin-border {
    font-size: 1em;
  }
}
.cs-skin-border > span {
  border: 5px solid #000;
  border-color: inherit;
  transition: background 0.2s, border-color 0.2s;
}

.cs-skin-border > span::after,
.cs-skin-border .cs-selected span::after {
  content: "↓";
}

.cs-skin-border ul span::after {
  content: "";
  opacity: 0;
}

.cs-skin-border .cs-selected span::after {
  content: "✓";
  color: #ddd9c9;
  font-size: 1.5em;
  opacity: 1;
  transition: opacity 0.2s;
}

.cs-skin-border.cs-active > span {
  background: #fff;
  border-color: #fff;
  color: #2980b9;
}

.cs-skin-border .cs-options {
  color: #2980b9;
  font-size: 0.75em;
  opacity: 0;
  transition: opacity 0.2s, visibility 0s 0.2s;
}

.cs-skin-border.cs-active .cs-options {
  opacity: 1;
  transition: opacity 0.2s;
}

.cs-skin-border ul span {
  padding: 1em 2em;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.cs-skin-border .cs-options li span:hover,
.cs-skin-border li.cs-focus span {
  background: #f5f3ec;
}

/*********************************
#Media Query Mixins - Depricated
**********************************/
.two-column-padded {
  display: grid;
  grid-gap: 40px;
}
@media (min-width: 480px) {
  .two-column-padded {
    max-width: 480px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    grid-gap: 40px;
  }
}
@media (min-width: 768px) {
  .two-column-padded {
    max-width: initial;
  }
}

@media (min-width: 480px) {
  .three-column-padded {
    display: -ms-flexbox;
    display: flex;
    min-width: 300px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -ms-flex-pack: center;
        justify-content: center;
    justify-items: center;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    grid-gap: 40px;
  }
}
@media (min-width: 768px) {
  .three-column-padded {
    display: grid;
    max-width: initial;
  }
}

.three-column {
  display: -ms-flexbox;
  display: flex;
  min-width: 300px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: center;
      justify-content: center;
}
@media (min-width: 480px) {
  .three-column {
    display: grid;
    justify-items: center;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    grid-gap: 0;
  }
}

.vcenter-grid {
  -ms-flex-align: center;
      align-items: center;
}

/*********************************
#Variables
**********************************/
/*********************************
#global
**********************************/
html {
  background-color: #1e2328;
}

body {
  font-family: "Titillium Web", sans-serif;
  color: #474d52;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  opacity: 0;
}

ul {
  list-style-type: disc;
}

.blockquote {
  margin: 1.5rem auto 1rem;
  font-size: 1.1em;
  line-height: 1.5;
  letter-spacing: 0.75px;
  max-width: 900px;
}
.blockquote--caps {
  font-size: 1.1em;
  margin: 1rem auto 2rem;
  text-transform: uppercase;
  line-height: 2;
}

.blockquote-caption {
  text-transform: uppercase;
  font-weight: 800;
  font-size: 0.7rem;
  letter-spacing: 1px;
}

h4 {
  font-weight: 400;
  margin-top: 3rem;
  margin-bottom: 1rem;
}

* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.js-scrollReveal {
  opacity: 0;
  transition: all 800ms cubic-bezier(0.39, 0.575, 0.565, 1);
}

.js-scrollReveal.fadeIn {
  opacity: 1;
}

.strong {
  font-weight: 700;
}

a {
  text-decoration: none;
  color: #808795;
  transition: 300ms;
}

a:hover {
  color: #fff;
}

.block-link span, .block-link:hover span {
  color: #fff;
}

.submenu {
  list-style: none;
  margin: 0;
  padding: 0;
}

p {
  line-height: 1.5;
}

.img-fluid {
  max-width: 100%;
  width: 100%;
}

.img-fluid-max {
  max-width: 100%;
}

.title-color {
  text-transform: uppercase;
  color: #3fc0c2;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}

.numbered-text {
  text-transform: uppercase;
  font-weight: bold;
}

.line-list {
  list-style: none;
  margin: 1rem 0 1rem 0.25rem;
  padding: 0 0 0 1rem;
  border-left: 1px solid #3fc0c2;
}
.line-list li {
  line-height: 1.25;
  margin-bottom: 1rem;
}

p .sub-title {
  color: #808795;
  font-size: 0.8em;
}

.vimeo {
  margin-bottom: 6rem;
}

.page {
  margin: 2rem 0;
}

.inline-title {
  text-transform: uppercase;
}

.writer-speak {
  font-size: 1.3em;
  display: block;
  padding: 1rem 0;
}

@media only screen and (min-width: 48em) {
  .container {
    width: 100%;
  }
}
/*********************************
# Color Themes
**********************************/
.theme {
  opacity: 1;
  transition: 175ms;
}

.blue .theme-background {
  background-color: #3ebfc1;
  color: #fff;
}
.blue .theme-hover:hover {
  background-color: #3ebfc1;
  color: #fff;
}
.blue .blog__single h3 {
  color: #3ebfc1;
}
.blue .blog__single ul {
  border-left: 1px solid #3ebfc1;
}
.blue .blog__overlay {
  background-color: #3ebfc1;
}
.blue .theme-fill, .blue .cls-1, .blue .cls-2 {
  fill: #3ebfc1 !important;
}
.blue .theme-stroke {
  stroke: #3ebfc1 !important;
}
.blue .theme-text {
  color: #3ebfc1;
}
.blue .theme-link {
  color: #3ebfc1;
  font-weight: 700;
  cursor: pointer;
}
.blue .theme-link:hover {
  color: #78d2d4;
}
.blue .services-line {
  border-right: 1px solid #3ebfc1;
}
.blue .values-line {
  border-bottom: 1px solid #3ebfc1;
}
.blue .theme-list-line {
  border-left: 1px solid #3ebfc1;
  list-style: none;
}
.blue .theme-list-line li {
  padding: 10px 0;
}
.blue .cs-options, .blue .hire-us .cs-skin-border.cs-active > span {
  color: #3ebfc1;
}
.blue .hamburger line {
  stroke: #3ebfc1 !important;
  transform-box: fill-box;
}
.blue .hire-us input {
  border-bottom: 2px solid #3ebfc1;
}
.blue .hire-us textarea, .blue .hire-us .noUi-horizontal .noUi-handle, .blue .hire-us .cs-skin-border > span {
  border: 2px solid #3ebfc1;
}
.blue .hire-us .noUi-connect, .blue .hire-us .noUi-base {
  background-color: #3ebfc1;
}
.blue .hire-us .product-list .active {
  color: #3ebfc1;
}
.blue .theme-button {
  border: 2px solid #3ebfc1;
  color: #3ebfc1;
}
.blue .theme-button:hover {
  border: 2px solid #3ebfc1;
  color: #fff;
  background-color: #3ebfc1;
}
.blue .blog__meta {
  color: #3ebfc1;
}
.blue .theme-checkmarks li:before {
  color: #3ebfc1;
}
.blue .theme-squares li:before {
  background-color: #3ebfc1;
}
.blue .bd-fill path {
  fill: #3ebfc1;
}
.blue .btn-round {
  background-color: #3ebfc1;
}
.blue .btn-round:hover {
  background-color: #65cccd;
}
.blue .next-steps__card:hover::after {
  background-color: #3ebfc1;
}
@media (min-width: 1008px) {
  .blue .service-card:hover::before {
    background-color: #3ebfc1;
  }
}

.navy .theme-background {
  background-color: #314597;
  color: #fff;
}
.navy .theme-hover:hover {
  background-color: #314597;
  color: #fff;
}
.navy .blog__single h3 {
  color: #314597;
}
.navy .blog__single ul {
  border-left: 1px solid #314597;
}
.navy .blog__overlay {
  background-color: #314597;
}
.navy .theme-fill, .navy .cls-1, .navy .cls-2 {
  fill: #314597 !important;
}
.navy .theme-stroke {
  stroke: #314597 !important;
}
.navy .theme-text {
  color: #314597;
}
.navy .theme-link {
  color: #314597;
  font-weight: 700;
  cursor: pointer;
}
.navy .theme-link:hover {
  color: #4f66c6;
}
.navy .services-line {
  border-right: 1px solid #314597;
}
.navy .values-line {
  border-bottom: 1px solid #314597;
}
.navy .theme-list-line {
  border-left: 1px solid #314597;
  list-style: none;
}
.navy .theme-list-line li {
  padding: 10px 0;
}
.navy .cs-options, .navy .hire-us .cs-skin-border.cs-active > span {
  color: #314597;
}
.navy .hamburger line {
  stroke: #314597 !important;
  transform-box: fill-box;
}
.navy .hire-us input {
  border-bottom: 2px solid #314597;
}
.navy .hire-us textarea, .navy .hire-us .noUi-horizontal .noUi-handle, .navy .hire-us .cs-skin-border > span {
  border: 2px solid #314597;
}
.navy .hire-us .noUi-connect, .navy .hire-us .noUi-base {
  background-color: #314597;
}
.navy .hire-us .product-list .active {
  color: #314597;
}
.navy .theme-button {
  border: 2px solid #314597;
  color: #314597;
}
.navy .theme-button:hover {
  border: 2px solid #314597;
  color: #fff;
  background-color: #314597;
}
.navy .blog__meta {
  color: #314597;
}
.navy .theme-checkmarks li:before {
  color: #314597;
}
.navy .theme-squares li:before {
  background-color: #314597;
}
.navy .bd-fill path {
  fill: #314597;
}
.navy .btn-round {
  background-color: #314597;
}
.navy .btn-round:hover {
  background-color: #3d57be;
}
.navy .next-steps__card:hover::after {
  background-color: #314597;
}
@media (min-width: 1008px) {
  .navy .service-card:hover::before {
    background-color: #314597;
  }
}

.red .theme-background {
  background-color: #e86768;
  color: #fff;
}
.red .theme-hover:hover {
  background-color: #e86768;
  color: #fff;
}
.red .blog__single h3 {
  color: #e86768;
}
.red .blog__single ul {
  border-left: 1px solid #e86768;
}
.red .blog__overlay {
  background-color: #e86768;
}
.red .theme-fill, .red .cls-1, .red .cls-2 {
  fill: #e86768 !important;
}
.red .theme-stroke {
  stroke: #e86768 !important;
}
.red .theme-text {
  color: #e86768;
}
.red .theme-link {
  color: #e86768;
  font-weight: 700;
  cursor: pointer;
}
.red .theme-link:hover {
  color: #f2a9aa;
}
.red .services-line {
  border-right: 1px solid #e86768;
}
.red .values-line {
  border-bottom: 1px solid #e86768;
}
.red .theme-list-line {
  border-left: 1px solid #e86768;
  list-style: none;
}
.red .theme-list-line li {
  padding: 10px 0;
}
.red .cs-options, .red .hire-us .cs-skin-border.cs-active > span {
  color: #e86768;
}
.red .hamburger line {
  stroke: #e86768 !important;
  transform-box: fill-box;
}
.red .hire-us input {
  border-bottom: 2px solid #e86768;
}
.red .hire-us textarea, .red .hire-us .noUi-horizontal .noUi-handle, .red .hire-us .cs-skin-border > span {
  border: 2px solid #e86768;
}
.red .hire-us .noUi-connect, .red .hire-us .noUi-base {
  background-color: #e86768;
}
.red .hire-us .product-list .active {
  color: #e86768;
}
.red .theme-button {
  border: 2px solid #e86768;
  color: #e86768;
}
.red .theme-button:hover {
  border: 2px solid #e86768;
  color: #fff;
  background-color: #e86768;
}
.red .blog__meta {
  color: #e86768;
}
.red .theme-checkmarks li:before {
  color: #e86768;
}
.red .theme-squares li:before {
  background-color: #e86768;
}
.red .bd-fill path {
  fill: #e86768;
}
.red .btn-round {
  background-color: #e86768;
}
.red .btn-round:hover {
  background-color: #ef9394;
}
.red .next-steps__card:hover::after {
  background-color: #e86768;
}
@media (min-width: 1008px) {
  .red .service-card:hover::before {
    background-color: #e86768;
  }
}

.yellow .theme-background {
  background-color: #f3bd35;
  color: #fff;
}
.yellow .theme-hover:hover {
  background-color: #f3bd35;
  color: #fff;
}
.yellow .blog__single h3 {
  color: #f3bd35;
}
.yellow .blog__single ul {
  border-left: 1px solid #f3bd35;
}
.yellow .blog__overlay {
  background-color: #f3bd35;
}
.yellow .theme-fill, .yellow .cls-1, .yellow .cls-2 {
  fill: #f3bd35 !important;
}
.yellow .theme-stroke {
  stroke: #f3bd35 !important;
}
.yellow .theme-text {
  color: #f3bd35;
}
.yellow .theme-link {
  color: #f3bd35;
  font-weight: 700;
  cursor: pointer;
}
.yellow .theme-link:hover {
  color: #f7d57d;
}
.yellow .services-line {
  border-right: 1px solid #f3bd35;
}
.yellow .values-line {
  border-bottom: 1px solid #f3bd35;
}
.yellow .theme-list-line {
  border-left: 1px solid #f3bd35;
  list-style: none;
}
.yellow .theme-list-line li {
  padding: 10px 0;
}
.yellow .cs-options, .yellow .hire-us .cs-skin-border.cs-active > span {
  color: #f3bd35;
}
.yellow .hamburger line {
  stroke: #f3bd35 !important;
  transform-box: fill-box;
}
.yellow .hire-us input {
  border-bottom: 2px solid #f3bd35;
}
.yellow .hire-us textarea, .yellow .hire-us .noUi-horizontal .noUi-handle, .yellow .hire-us .cs-skin-border > span {
  border: 2px solid #f3bd35;
}
.yellow .hire-us .noUi-connect, .yellow .hire-us .noUi-base {
  background-color: #f3bd35;
}
.yellow .hire-us .product-list .active {
  color: #f3bd35;
}
.yellow .theme-button {
  border: 2px solid #f3bd35;
  color: #f3bd35;
}
.yellow .theme-button:hover {
  border: 2px solid #f3bd35;
  color: #fff;
  background-color: #f3bd35;
}
.yellow .blog__meta {
  color: #f3bd35;
}
.yellow .theme-checkmarks li:before {
  color: #f3bd35;
}
.yellow .theme-squares li:before {
  background-color: #f3bd35;
}
.yellow .bd-fill path {
  fill: #f3bd35;
}
.yellow .btn-round {
  background-color: #f3bd35;
}
.yellow .btn-round:hover {
  background-color: #f6cd65;
}
.yellow .next-steps__card:hover::after {
  background-color: #f3bd35;
}
@media (min-width: 1008px) {
  .yellow .service-card:hover::before {
    background-color: #f3bd35;
  }
}

.section-blue .theme-background {
  background-color: #3ebfc1;
  color: #fff;
}
.section-blue .theme-hover:hover {
  background-color: #3ebfc1;
  color: #fff;
}
.section-blue .blog__single h3 {
  color: #3ebfc1;
}
.section-blue .blog__single ul {
  border-left: 1px solid #3ebfc1;
}
.section-blue .blog__overlay {
  background-color: #3ebfc1;
}
.section-blue .theme-fill, .section-blue .cls-1, .section-blue .cls-2 {
  fill: #3ebfc1 !important;
}
.section-blue .theme-stroke {
  stroke: #3ebfc1 !important;
}
.section-blue .theme-text {
  color: #3ebfc1;
}
.section-blue .theme-link {
  color: #3ebfc1;
  font-weight: 700;
  cursor: pointer;
}
.section-blue .theme-link:hover {
  color: #78d2d4;
}
.section-blue .services-line {
  border-right: 1px solid #3ebfc1;
}
.section-blue .values-line {
  border-bottom: 1px solid #3ebfc1;
}
.section-blue .theme-list-line {
  border-left: 1px solid #3ebfc1;
  list-style: none;
}
.section-blue .theme-list-line li {
  padding: 10px 0;
}
.section-blue .cs-options, .section-blue .hire-us .cs-skin-border.cs-active > span {
  color: #3ebfc1;
}
.section-blue .hamburger line {
  stroke: #3ebfc1 !important;
  transform-box: fill-box;
}
.section-blue .hire-us input {
  border-bottom: 2px solid #3ebfc1;
}
.section-blue .hire-us textarea, .section-blue .hire-us .noUi-horizontal .noUi-handle, .section-blue .hire-us .cs-skin-border > span {
  border: 2px solid #3ebfc1;
}
.section-blue .hire-us .noUi-connect, .section-blue .hire-us .noUi-base {
  background-color: #3ebfc1;
}
.section-blue .hire-us .product-list .active {
  color: #3ebfc1;
}
.section-blue .theme-button {
  border: 2px solid #3ebfc1;
  color: #3ebfc1;
}
.section-blue .theme-button:hover {
  border: 2px solid #3ebfc1;
  color: #fff;
  background-color: #3ebfc1;
}
.section-blue .blog__meta {
  color: #3ebfc1;
}
.section-blue .theme-checkmarks li:before {
  color: #3ebfc1;
}
.section-blue .theme-squares li:before {
  background-color: #3ebfc1;
}
.section-blue .bd-fill path {
  fill: #3ebfc1;
}
.section-blue .btn-round {
  background-color: #3ebfc1;
}
.section-blue .btn-round:hover {
  background-color: #65cccd;
}
.section-blue .next-steps__card:hover::after {
  background-color: #3ebfc1;
}
@media (min-width: 1008px) {
  .section-blue .service-card:hover::before {
    background-color: #3ebfc1;
  }
}

.section-white .theme-background {
  background-color: #fff;
  color: #fff;
}
.section-white .theme-hover:hover {
  background-color: #fff;
  color: #fff;
}
.section-white .blog__single h3 {
  color: #fff;
}
.section-white .blog__single ul {
  border-left: 1px solid #fff;
}
.section-white .blog__overlay {
  background-color: #fff;
}
.section-white .theme-fill, .section-white .cls-1, .section-white .cls-2 {
  fill: #fff !important;
}
.section-white .theme-stroke {
  stroke: #fff !important;
}
.section-white .theme-text {
  color: #fff;
}
.section-white .theme-link {
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}
.section-white .theme-link:hover {
  color: white;
}
.section-white .services-line {
  border-right: 1px solid #fff;
}
.section-white .values-line {
  border-bottom: 1px solid #fff;
}
.section-white .theme-list-line {
  border-left: 1px solid #fff;
  list-style: none;
}
.section-white .theme-list-line li {
  padding: 10px 0;
}
.section-white .cs-options, .section-white .hire-us .cs-skin-border.cs-active > span {
  color: #fff;
}
.section-white .hamburger line {
  stroke: #fff !important;
  transform-box: fill-box;
}
.section-white .hire-us input {
  border-bottom: 2px solid #fff;
}
.section-white .hire-us textarea, .section-white .hire-us .noUi-horizontal .noUi-handle, .section-white .hire-us .cs-skin-border > span {
  border: 2px solid #fff;
}
.section-white .hire-us .noUi-connect, .section-white .hire-us .noUi-base {
  background-color: #fff;
}
.section-white .hire-us .product-list .active {
  color: #fff;
}
.section-white .theme-button {
  border: 2px solid #fff;
  color: #fff;
}
.section-white .theme-button:hover {
  border: 2px solid #fff;
  color: #fff;
  background-color: #fff;
}
.section-white .blog__meta {
  color: #fff;
}
.section-white .theme-checkmarks li:before {
  color: #fff;
}
.section-white .theme-squares li:before {
  background-color: #fff;
}
.section-white .bd-fill path {
  fill: #fff;
}
.section-white .btn-round {
  background-color: #fff;
}
.section-white .btn-round:hover {
  background-color: white;
}
.section-white .next-steps__card:hover::after {
  background-color: #fff;
}
@media (min-width: 1008px) {
  .section-white .service-card:hover::before {
    background-color: #fff;
  }
}

.section-navy .theme-background {
  background-color: #314597;
  color: #fff;
}
.section-navy .theme-hover:hover {
  background-color: #314597;
  color: #fff;
}
.section-navy .blog__single h3 {
  color: #314597;
}
.section-navy .blog__single ul {
  border-left: 1px solid #314597;
}
.section-navy .blog__overlay {
  background-color: #314597;
}
.section-navy .theme-fill, .section-navy .cls-1, .section-navy .cls-2 {
  fill: #314597 !important;
}
.section-navy .theme-stroke {
  stroke: #314597 !important;
}
.section-navy .theme-text {
  color: #314597;
}
.section-navy .theme-link {
  color: #314597;
  font-weight: 700;
  cursor: pointer;
}
.section-navy .theme-link:hover {
  color: #4f66c6;
}
.section-navy .services-line {
  border-right: 1px solid #314597;
}
.section-navy .values-line {
  border-bottom: 1px solid #314597;
}
.section-navy .theme-list-line {
  border-left: 1px solid #314597;
  list-style: none;
}
.section-navy .theme-list-line li {
  padding: 10px 0;
}
.section-navy .cs-options, .section-navy .hire-us .cs-skin-border.cs-active > span {
  color: #314597;
}
.section-navy .hamburger line {
  stroke: #314597 !important;
  transform-box: fill-box;
}
.section-navy .hire-us input {
  border-bottom: 2px solid #314597;
}
.section-navy .hire-us textarea, .section-navy .hire-us .noUi-horizontal .noUi-handle, .section-navy .hire-us .cs-skin-border > span {
  border: 2px solid #314597;
}
.section-navy .hire-us .noUi-connect, .section-navy .hire-us .noUi-base {
  background-color: #314597;
}
.section-navy .hire-us .product-list .active {
  color: #314597;
}
.section-navy .theme-button {
  border: 2px solid #314597;
  color: #314597;
}
.section-navy .theme-button:hover {
  border: 2px solid #314597;
  color: #fff;
  background-color: #314597;
}
.section-navy .blog__meta {
  color: #314597;
}
.section-navy .theme-checkmarks li:before {
  color: #314597;
}
.section-navy .theme-squares li:before {
  background-color: #314597;
}
.section-navy .bd-fill path {
  fill: #314597;
}
.section-navy .btn-round {
  background-color: #314597;
}
.section-navy .btn-round:hover {
  background-color: #3d57be;
}
.section-navy .next-steps__card:hover::after {
  background-color: #314597;
}
@media (min-width: 1008px) {
  .section-navy .service-card:hover::before {
    background-color: #314597;
  }
}

.section-red .theme-background {
  background-color: #e86768;
  color: #fff;
}
.section-red .theme-hover:hover {
  background-color: #e86768;
  color: #fff;
}
.section-red .blog__single h3 {
  color: #e86768;
}
.section-red .blog__single ul {
  border-left: 1px solid #e86768;
}
.section-red .blog__overlay {
  background-color: #e86768;
}
.section-red .theme-fill, .section-red .cls-1, .section-red .cls-2 {
  fill: #e86768 !important;
}
.section-red .theme-stroke {
  stroke: #e86768 !important;
}
.section-red .theme-text {
  color: #e86768;
}
.section-red .theme-link {
  color: #e86768;
  font-weight: 700;
  cursor: pointer;
}
.section-red .theme-link:hover {
  color: #f2a9aa;
}
.section-red .services-line {
  border-right: 1px solid #e86768;
}
.section-red .values-line {
  border-bottom: 1px solid #e86768;
}
.section-red .theme-list-line {
  border-left: 1px solid #e86768;
  list-style: none;
}
.section-red .theme-list-line li {
  padding: 10px 0;
}
.section-red .cs-options, .section-red .hire-us .cs-skin-border.cs-active > span {
  color: #e86768;
}
.section-red .hamburger line {
  stroke: #e86768 !important;
  transform-box: fill-box;
}
.section-red .hire-us input {
  border-bottom: 2px solid #e86768;
}
.section-red .hire-us textarea, .section-red .hire-us .noUi-horizontal .noUi-handle, .section-red .hire-us .cs-skin-border > span {
  border: 2px solid #e86768;
}
.section-red .hire-us .noUi-connect, .section-red .hire-us .noUi-base {
  background-color: #e86768;
}
.section-red .hire-us .product-list .active {
  color: #e86768;
}
.section-red .theme-button {
  border: 2px solid #e86768;
  color: #e86768;
}
.section-red .theme-button:hover {
  border: 2px solid #e86768;
  color: #fff;
  background-color: #e86768;
}
.section-red .blog__meta {
  color: #e86768;
}
.section-red .theme-checkmarks li:before {
  color: #e86768;
}
.section-red .theme-squares li:before {
  background-color: #e86768;
}
.section-red .bd-fill path {
  fill: #e86768;
}
.section-red .btn-round {
  background-color: #e86768;
}
.section-red .btn-round:hover {
  background-color: #ef9394;
}
.section-red .next-steps__card:hover::after {
  background-color: #e86768;
}
@media (min-width: 1008px) {
  .section-red .service-card:hover::before {
    background-color: #e86768;
  }
}

.section-yellow .theme-background {
  background-color: #f3bd35;
  color: #fff;
}
.section-yellow .theme-hover:hover {
  background-color: #f3bd35;
  color: #fff;
}
.section-yellow .blog__single h3 {
  color: #f3bd35;
}
.section-yellow .blog__single ul {
  border-left: 1px solid #f3bd35;
}
.section-yellow .blog__overlay {
  background-color: #f3bd35;
}
.section-yellow .theme-fill, .section-yellow .cls-1, .section-yellow .cls-2 {
  fill: #f3bd35 !important;
}
.section-yellow .theme-stroke {
  stroke: #f3bd35 !important;
}
.section-yellow .theme-text {
  color: #f3bd35;
}
.section-yellow .theme-link {
  color: #f3bd35;
  font-weight: 700;
  cursor: pointer;
}
.section-yellow .theme-link:hover {
  color: #f7d57d;
}
.section-yellow .services-line {
  border-right: 1px solid #f3bd35;
}
.section-yellow .values-line {
  border-bottom: 1px solid #f3bd35;
}
.section-yellow .theme-list-line {
  border-left: 1px solid #f3bd35;
  list-style: none;
}
.section-yellow .theme-list-line li {
  padding: 10px 0;
}
.section-yellow .cs-options, .section-yellow .hire-us .cs-skin-border.cs-active > span {
  color: #f3bd35;
}
.section-yellow .hamburger line {
  stroke: #f3bd35 !important;
  transform-box: fill-box;
}
.section-yellow .hire-us input {
  border-bottom: 2px solid #f3bd35;
}
.section-yellow .hire-us textarea, .section-yellow .hire-us .noUi-horizontal .noUi-handle, .section-yellow .hire-us .cs-skin-border > span {
  border: 2px solid #f3bd35;
}
.section-yellow .hire-us .noUi-connect, .section-yellow .hire-us .noUi-base {
  background-color: #f3bd35;
}
.section-yellow .hire-us .product-list .active {
  color: #f3bd35;
}
.section-yellow .theme-button {
  border: 2px solid #f3bd35;
  color: #f3bd35;
}
.section-yellow .theme-button:hover {
  border: 2px solid #f3bd35;
  color: #fff;
  background-color: #f3bd35;
}
.section-yellow .blog__meta {
  color: #f3bd35;
}
.section-yellow .theme-checkmarks li:before {
  color: #f3bd35;
}
.section-yellow .theme-squares li:before {
  background-color: #f3bd35;
}
.section-yellow .bd-fill path {
  fill: #f3bd35;
}
.section-yellow .btn-round {
  background-color: #f3bd35;
}
.section-yellow .btn-round:hover {
  background-color: #f6cd65;
}
.section-yellow .next-steps__card:hover::after {
  background-color: #f3bd35;
}
@media (min-width: 1008px) {
  .section-yellow .service-card:hover::before {
    background-color: #f3bd35;
  }
}

.hire-us .cs-skin-border.cs-active > span {
  border-color: #fff;
}

/*********************************
#Menu
**********************************/
.mobile-menu {
  color: #fff;
  transition: 400ms;
  position: fixed;
  z-index: 100;
}
.mobile-menu li {
  margin: 0.5rem 0;
}

.desktop-menu {
  display: none;
  color: #fff;
  transition: 400ms;
  position: fixed;
  z-index: 100;
}
.desktop-menu li {
  margin: 0.5rem 0;
}

.desktop-menu__logo {
  position: fixed;
  width: 100px;
  height: 125px;
  max-width: 500px;
  background-color: #242a30;
  margin-top: -2rem;
  -webkit-transform: skewY(-5deg);
          transform: skewY(-5deg);
  z-index: 200;
  transition: 300ms;
  outline: 1px solid transparent;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.desktop-menu__logo svg {
  position: absolute;
  top: 45px;
  left: 15px;
  -webkit-transform: skewY(5deg);
          transform: skewY(5deg);
  width: 60px;
  height: 60px;
}

.desktop-menu__content {
  position: fixed;
  left: 0;
  width: 500px;
  height: 110px;
  max-width: 500px;
  background-color: #242a30;
  margin-top: -2rem;
  -webkit-transform: skewY(-5deg);
          transform: skewY(-5deg);
  z-index: 101;
  transition: 300ms;
}

.d-menu {
  left: 70px;
  top: 45px;
  font-size: 0.85rem;
  list-style: none;
  font-weight: 700;
  text-transform: uppercase;
  position: absolute;
  -webkit-transform: skewY(5deg);
          transform: skewY(5deg);
  letter-spacing: 1px;
}
.d-menu li {
  display: inline-block;
  padding-right: 0.7rem;
}

.menu {
  padding: 0;
  margin: 3rem 0 0 0;
  font-size: 1.5rem;
  line-height: 1.5;
  list-style: none;
  font-weight: 700;
  text-transform: uppercase;
}

.menu__icon-set {
  margin-top: 1.5rem;
  transition: 300ms;
}

.menu__contact {
  margin-top: 2.1rem;
  transition: 300ms;
}
.menu__contact span {
  display: block;
  margin-bottom: 0.25rem;
}

.menu__logo {
  max-width: 100px;
  display: block;
  transition: 300ms;
}

.mobile-menu__content-fade {
  display: none;
}

.hamburger {
  width: 40px;
  margin-top: 0.5rem;
  cursor: pointer;
  display: block;
  float: right;
}

.mobile-menu__panel {
  position: fixed;
  width: 75px;
  height: 100px;
  max-width: 500px;
  background-color: #242a30;
  margin-top: -2rem;
  -webkit-transform: skewY(-5deg);
          transform: skewY(-5deg);
  z-index: 100;
  transition: 300ms;
}

.mobile-menu__panel.open {
  width: 100%;
  height: 500px;
  transition: 300ms;
}

.mobile-menu__content {
  display: block;
  margin: 2rem 1rem;
  padding: 1rem 0;
  -webkit-transform: skewY(5deg);
          transform: skewY(5deg);
  text-align: center;
}

.headroom {
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

.headroom--pinned {
  top: 0;
}

.headroom--unpinned {
  top: -100px;
}

#line-three {
  -webkit-transform-origin: 0% 100%;
          transform-origin: 0% 100%;
}

@media only screen and (min-width: 48em) {
  .mobile-menu {
    display: none;
  }
  .desktop-menu {
    display: block;
  }
}
/*********************************
#Masthead
**********************************/
.masthead {
  display: -ms-flexbox;
  display: flex;
  padding: 4rem 1rem 1rem 1rem;
  min-height: 500px;
  text-align: center;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
}
.masthead .cta__button {
  margin-top: 4rem;
}
.masthead h1 {
  line-height: 1.5;
}

.masthead--portfolio {
  position: relative;
  padding: 0;
  text-align: center;
  transition: all 800ms cubic-bezier(0.39, 0.575, 0.565, 1);
}

.masthead--blog {
  position: relative;
  color: white;
  height: 450px;
  padding: 0;
  text-align: center;
  transition: all 800ms cubic-bezier(0.39, 0.575, 0.565, 1);
}

.portfolio__title-wrap {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10;
}

.portfolio__title-area {
  color: #fff;
  position: absolute;
  bottom: 1.5rem;
}
.portfolio__title-area h1 {
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.1);
  font-weight: 700;
  font-size: 2.2rem;
  margin-bottom: 0.1rem;
}
.portfolio__title-area h3 {
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.1);
  margin-top: 0;
  text-transform: uppercase;
  font-weight: 400;
}

.masthead__featured {
  display: none;
  width: 100%;
  height: 600px;
  object-fit: cover;
  object-position: center center;
  min-width: 1200px;
  margin-left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.masthead__video {
  display: none;
}

.masthead__featured--mobile {
  display: block;
  width: 100%;
  margin-left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.masthead__logo {
  margin-bottom: 2rem;
  width: 400px;
  max-width: 100%;
}

.masthead p {
  text-transform: uppercase;
  font-size: 1.25rem;
  line-height: 1.75;
  letter-spacing: 1px;
}

@media only screen and (min-width: 64em) {
  .masthead {
    padding: 1rem;
  }
  .portfolio__title-area h1 {
    font-size: 3rem;
  }
  .masthead__video {
    display: block;
  }
  .masthead__video video {
    max-width: 101%;
    width: 1800px;
    height: 600px;
    object-fit: cover;
    margin-left: -2px;
  }
  .masthead__featured {
    display: block;
  }
  .masthead__featured--mobile {
    display: none;
  }
  .masthead--portfolio {
    height: 550px;
  }
}
/*********************************
#Motions
**********************************/
.motions__title {
  font-size: 2rem;
  margin-bottom: 0.4rem;
}

.motion__body p {
  margin-top: 0;
}

.measure {
  background-color: #242a30;
  color: #fff;
  padding: 3rem 0 6rem 0;
}

#Chemistry-Flame {
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transform-origin: 50% 100%;
          transform-origin: 50% 100%;
  transform-box: fill-box;
}

#Chemistry-Bubbles circle {
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  transform-box: fill-box;
}

#Chemistry-Marble {
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
}

.science-svg {
  max-width: 300px;
}

.science__wrap {
  text-align: right;
}

.love {
  padding: 0rem 0 3rem;
  background-color: #3fc0c2;
  color: #1e2328;
}
.love .motions__title {
  margin-top: 0;
}

.radio {
  max-width: 650px;
  -webkit-transform: translateX(-60px) translateY(-30px);
          transform: translateX(-60px) translateY(-30px);
}

#radioButton {
  cursor: pointer;
}

.love__text {
  max-width: 500px;
}

.space {
  background-color: #242a30;
  color: #fff;
  background-image: url(../../static/svg/stars.svg);
  background-repeat: repeat;
  background-size: contain;
}

.bold__text {
  margin: 4rem auto;
  max-width: 500px;
}

.spaceman {
  max-width: 250px;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  margin: auto;
}
.spaceman svg {
  max-width: 200px;
}

#Astro-Leg {
  -webkit-transform-origin: 100px center;
          transform-origin: 100px center;
}

#Astro-Arm {
  -webkit-transform-origin: center 100px;
          transform-origin: center 100px;
}

#astroman {
  -webkit-transform-origin: center center;
          transform-origin: center center;
}

.less {
  line-height: 0;
  color: #1e2328;
  position: relative;
  overflow: hidden;
  min-height: 700px;
}

.less__text-wrap {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
}

.less__text {
  text-align: center;
  bottom: 0;
  padding: 1rem;
  max-width: 420px;
  line-height: 1;
}

.moon {
  margin-left: 50%;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  width: 100%;
  min-width: 101%;
}

.moon__block {
  background-color: #fff;
  top: 15%;
  bottom: 0;
  left: 0;
  right: 0;
  position: absolute;
}

@media only screen and (min-width: 64em) {
  .moon__block {
    top: 19%;
  }
}
.honesty {
  background-color: #242a30;
  color: #242a30;
}

.honesty__text-wrap {
  position: absolute;
  bottom: 0;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  padding-bottom: 3rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}

.honesty__text {
  text-align: center;
  line-height: 1;
  width: 65%;
  margin: auto;
  max-width: 400px;
  padding-top: 13rem;
}

.lamp {
  line-height: 0;
  position: relative;
  overflow: hidden;
}

.lamp__wrap {
  overflow: hidden;
  max-height: 700px;
}

.svg-lamp {
  width: 100%;
  min-width: 1800px;
  display: block;
  margin-left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

@media only screen and (min-width: 48em) {
  .measure .row, .space .row {
    -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
  }
}
/*********************************
#more work
**********************************/
.more-work {
  text-align: center;
  padding: 3rem 0;
}

.more-work__grid {
  margin-bottom: 2rem;
}

.more-work__title {
  text-transform: uppercase;
  font-size: 1.3rem;
  margin-bottom: 2rem;
  color: #1e2328;
}

.port-card__wrap {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: stretch;
      align-content: stretch;
}

.port-card {
  position: relative;
  min-height: 180px;
  margin: 0.5rem 0;
  overflow: hidden;
}
.port-card__img {
  width: 100%;
}

@media only screen and (min-width: 48em) {
  .more-work {
    padding: 6rem 0;
  }
  .more-work__grid {
    margin-bottom: 4rem;
  }
}
/*********************************
#Services
**********************************/
.services {
  text-align: center;
  padding: 1rem;
}

.service-logo {
  max-width: 400px;
  display: block;
  margin: 1rem auto;
}

.services__section {
  margin-bottom: 4rem;
}

.services__tile {
  text-transform: uppercase;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}

.services__list {
  display: -ms-flexbox;
  display: flex;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  margin: 2rem auto;
}
.services__list ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.services__list ul li {
  line-height: 1.25;
  margin-bottom: 1rem;
}

.services__list-left {
  border-right: 1px solid #3fc0c2;
  padding: 0 1rem;
  width: 50%;
  text-align: right;
}

.services__list-right {
  padding: 0 1rem;
  width: 50%;
  text-align: left;
}

.service-cards {
  background: #FAF9F9;
  padding: 40px 0;
  border-bottom: 1px solid #e8e4e4;
  text-align: center;
  width: 100%;
}

.service-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  grid-gap: 10px;
}

.service-card {
  background: white;
  padding: 1rem 1.5rem 1rem;
  position: relative;
  letter-spacing: initial;
  border: 1px solid lightgray;
}
.service-card::before {
  position: absolute;
  bottom: -1px;
  left: -1px;
  right: 0;
  display: block;
  content: " ";
  width: calc(100% + 2px);
  height: 5px;
  transition: 200ms;
  background-color: transparent;
}
.service-card__title {
  margin-top: 0;
  font-size: 1.5rem;
  font-weight: 700;
}

@media only screen and (min-width: 75em) {
  .services {
    padding: 4rem;
  }
}
/*********************************
#Caption
**********************************/
.caption, .caption--blog {
  color: #242a30;
  text-align: left;
  position: relative;
  left: 0;
  bottom: 0;
  padding: 1rem;
  margin: 0.25rem 0 2.75rem;
  z-index: 11;
}

.caption--blog {
  padding: 0;
  margin-bottom: 4.5rem;
}

.caption__sub-title {
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.caption__title {
  margin: 0 0 0.5rem 0;
  font-size: 1.5rem;
  max-width: 300px;
}

.caption__sub {
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1px;
}

.small-text {
  font-size: 0.7rem;
  color: #808795;
  line-height: 2;
}

@media only screen and (min-width: 64em) {
  .caption, .caption--blog {
    color: #fff;
    text-align: left;
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 2rem;
    margin: 0;
  }
  .caption__title {
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.1);
  }
  .caption__sub {
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.1);
  }
}
/*********************************
#Buttons
**********************************/
.button-icon {
  max-width: 75px;
}

.button, .button--wide {
  border: 2px solid #1e2328;
  color: #1e2328;
  text-transform: uppercase;
  font-size: 1rem;
  display: inline-block;
  padding: 1.25rem 3rem;
  cursor: pointer;
  font-weight: 700;
  min-width: 6rem;
  transition: 300ms;
}

.button--wide {
  padding: 0.5rem 2rem;
  margin-top: 1.5rem;
}

.button:hover, .button--wide:hover {
  background-color: #242a30;
  color: #fff;
}

.button.white, .white.button--wide {
  border: 2px solid #fff;
  color: #fff;
}

.button:hover.white, .button--wide:hover.white {
  background-color: #fff;
  color: #242a30;
}

button.button, button.button--wide {
  background: transparent;
}

/*********************************
#toolkit
**********************************/
.toolkit.theme-background {
  padding: 2rem 0 6rem 0;
  text-align: center;
  color: #1e2328;
}

.toolkit__title {
  text-transform: uppercase;
  font-size: 1rem;
}

.toolkit-icon {
  padding: 2rem 0 0.25rem 0;
  text-align: center;
  max-width: 40px;
  margin: auto;
  transition: 300ms;
  -webkit-transform-origin: center bottom;
          transform-origin: center bottom;
}

.toolkit .toolkit-icon:hover {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.toolkit__sub {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.toolkit img {
  max-width: 100%;
}

.tool-icon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media (min-width: 768px) {
  .tool-icon-grid {
    grid-template-columns: repeat(7, 1fr);
  }
}

/*********************************
#values
**********************************/
.values {
  text-align: center;
  padding: 1rem;
}

.values__section {
  margin: 2rem auto;
}

.values__left {
  text-align: left;
}

.values__right {
  text-align: left;
}
.values__right p {
  margin: 0;
}

.values__number {
  color: #3fc0c2;
  border-bottom: 1px solid #3fc0c2;
  font-weight: 700;
}

@media only screen and (min-width: 75em) {
  .values {
    padding: 6rem;
  }
  .values__left {
    text-align: right;
    padding: 1rem 0;
  }
}
/*********************************
#Culture
**********************************/
.culture__section {
  margin: 6rem auto;
}

/*********************************
#Profiles
**********************************/
.profiles {
  text-align: center;
}

.profiles__wrap {
  position: relative;
}
.profiles__wrap img:nth-child(2) {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: 300ms;
}
.profiles__wrap img:nth-child(2):hover {
  opacity: 1;
}

.profiles__caption {
  text-align: left;
  margin: 1rem auto;
}

.profiles__name {
  text-transform: uppercase;
  color: #3fc0c2;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}

.profiles__founder {
  display: block;
  font-style: italic;
  margin-top: 0.5rem;
}

/*********************************
#Work with us
**********************************/
.work-with-us {
  margin: 3rem auto;
}
.work-with-us li {
  margin: 1rem 0;
}

.work-with-us__apply {
  position: relative;
  text-align: center;
  margin: 1rem 0;
  height: 300px;
}
.work-with-us__apply .apply__button {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  height: 300px;
  width: 100%;
  z-index: 200;
}
.work-with-us__apply .apply__instruction {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-direction: row;
      flex-direction: row;
  text-align: left;
  line-height: 1.75;
  height: 300px;
  opacity: 0;
}
.work-with-us__apply .apply__instruction.active {
  opacity: 1;
  transition: all 800ms cubic-bezier(0.39, 0.575, 0.565, 1);
}

.work-with-us__skills {
  padding: 1rem 0;
}

.work-with-us__skills {
  padding: 1rem 0;
}

.with-us__wrap {
  width: 100%;
  text-align: center;
}

.work-with-us__typed {
  display: inline-block;
}

/*********************************
#Work
**********************************/
.work {
  padding: 2rem 0;
}
.work .container {
  padding: 0rem;
  overflow: hidden;
}
.work .container .col-xs {
  padding: 0.1rem;
  transition: all 800ms cubic-bezier(0.39, 0.575, 0.565, 1);
}

.portfolio {
  color: #fff;
  margin: 0;
  position: relative;
}
.portfolio__full-link {
  display: inline-block;
  color: white;
  padding: 0.5rem 0.75rem 0.65rem;
  margin-right: 0.25rem;
  border-radius: 20px;
  font-style: italic;
  border: 1.5px solid white;
  opacity: 0;
  transition: opacity 0.3s;
}
.portfolio:hover .portfolio__full-link {
  opacity: 0.5;
  color: white;
}
.portfolio:hover .portfolio__full-link:hover {
  opacity: 1;
}
.portfolio img {
  max-width: 100%;
}

.portfolio__controls {
  display: none;
}

.bold-statement {
  font-weight: 700;
  font-style: italic;
  font-size: 1.5rem;
  margin: 1rem 0 1.5rem;
}

.checklist {
  padding: 0 1.5rem;
  margin-bottom: 1rem;
}
.checklist ul {
  padding-left: 0;
  margin: 0;
}
.checklist li {
  display: block;
  margin: 1rem 0;
}

.checklist__title {
  border-bottom: 1px solid #242a30;
  padding-bottom: 0.5rem;
  text-align: center;
  margin: 1rem 0 0.5rem 0;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.portfolio__section {
  margin: 5rem auto;
  text-align: center;
}

.portfolio__section > p {
  line-height: 2.5;
}

.flush-stack {
  line-height: 0;
}
.flush-stack img, .flush-stack div {
  margin-top: -1px;
}

.container.portfolio__section {
  margin-top: 1rem;
}

.portfolio__intro {
  padding-right: 0rem;
  text-align: left;
}
.portfolio__intro h4 {
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

@media only screen and (min-width: 48em) {
  .container.portfolio__section {
    margin-top: 5rem;
  }
  .work .container .col-xs {
    padding: 0.5rem;
  }
  .portfolio {
    margin: 3rem 0;
    cursor: pointer;
  }
  .portfolio .caption, .portfolio .caption--blog {
    opacity: 0;
    transition: 400ms;
  }
  .portfolio:hover .caption, .portfolio:hover .caption--blog {
    opacity: 1;
  }
  .portfolio__intro {
    padding-right: 2rem;
  }
  .portfolio__half {
    margin: 0;
  }
  .portfolio__controls {
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 2rem;
    z-index: 11;
  }
  .arrow-right {
    height: 40px;
    padding: 0 0.25rem;
    opacity: 0.5;
  }
  .arrow-left {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
    -webkit-transform-origin: center center;
            transform-origin: center center;
    height: 40px;
    padding: 0 0.25rem;
    opacity: 0.5;
    transition: opacity 300ms;
  }
  .arrow-left:hover, .arrow-right:hover {
    opacity: 1;
    cursor: pointer;
  }
  .portfolio__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
    opacity: 0;
    background: linear-gradient(transparent 80%, #424242);
    transition: 300ms;
    border: 10px solid #fff;
  }
  .portfolio:hover .portfolio__overlay, .port-card:hover .portfolio__overlay, .blog__grid-item:hover .portfolio__overlay {
    opacity: 0.7;
  }
}
@media only screen and (min-width: 64em) {
  .checklist, .checklist__title {
    text-align: left;
  }
}
/*********************************
#Blog
**********************************/
.blog.page {
  min-height: 600px;
}

.blog__filter {
  font-size: 0.8rem;
  letter-spacing: 1px;
  transition: all 800ms cubic-bezier(0.39, 0.575, 0.565, 1);
  text-align: center;
}
.blog__filter ul {
  list-style: none;
  display: inline-block;
  margin: 0;
  padding: 0;
}
.blog__filter li {
  display: inline-block;
  padding: 0.2rem 0.7rem;
  margin: 4px 2px;
  color: white;
  transition: 300ms;
  cursor: pointer;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 600;
}

.blog__grid {
  margin: 2rem auto;
}

.blog__meta {
  text-align: left;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 1rem 0 0.5rem;
  z-index: 11;
}

.blog__sub-title {
  text-transform: uppercase;
  display: inline-block;
  margin: 0.5rem 0;
}

@media only screen and (min-width: 64em) {
  .blog__filter {
    font-size: 1rem;
  }
}
/*********************************
#Blog Single
**********************************/
.notes-single__top-img {
  object-fit: cover;
  object-position: center center;
  height: 100%;
  width: 100%;
}
.notes-single__top-overlay {
  height: 100%;
  width: 100%;
  opacity: 0.6;
  position: absolute;
  top: 0;
}
.notes-single__background {
  background-color: #f9f9f9;
}
.notes-single__tags {
  position: absolute;
  top: -20px;
  left: -1px;
  text-transform: uppercase;
  font-size: 0.9rem;
  font-weight: 600;
}
.notes-single__tags span {
  display: inline-block;
  background-color: #3ebfc1;
  padding: 0.1rem 0.5rem;
  margin-right: 6px;
  color: white;
}

.blog__title {
  text-align: center;
  font-size: 2rem;
  margin-top: 100px;
}
@media (min-width: 480px) {
  .blog__title {
    font-size: 2.25rem;
  }
}
.blog__grid-item {
  position: relative;
}

.blog__single {
  padding: 1rem;
  margin: -130px auto 0;
  z-index: 3;
  position: relative;
  background-color: white;
  max-width: 800px;
  border: 1px solid #e9e9e9;
}
@media (min-width: 480px) {
  .blog__single {
    padding: 70px;
  }
}
.blog__single strong > em {
  font-size: 1.4rem;
  line-height: 1.2;
}
.blog__single .flush-stack img {
  margin: 0;
  margin-top: -2px;
}
.blog__single img {
  max-width: 100%;
  margin: 2rem 0;
}
.blog__single h3 {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1rem;
  line-height: 1.75;
}
.blog__single ul {
  list-style: none;
  padding-left: 1.5rem;
  line-height: 1.5;
}
.blog__single ul li {
  margin: 1.5rem 0;
}

.blog-single__feature {
  height: 200px;
  object-fit: cover;
  object-position: center top;
}
@media (min-width: 480px) {
  .blog-single__feature {
    height: 300px;
  }
}

/*********************************
#Hire-us
**********************************/
.hire-us {
  background-color: #242a30;
  min-height: 100vh;
  color: #fff;
}
.hire-us .submit {
  margin-top: 1rem;
}
.hire-us .container {
  margin: auto;
  overflow-y: scroll;
}
.hire-us .hire-content {
  padding-top: 6rem;
  padding-bottom: 103px;
}
.hire-us textarea {
  width: 100%;
}
.hire-us p {
  font-weight: 700;
  font-size: 1.3rem;
  margin: 1rem 0;
  line-height: 2;
  max-width: 700px;
}
.hire-us textarea, .hire-us input {
  border: none;
  overflow: auto;
  outline: none;
  box-shadow: none;
}
.hire-us .hire-alert {
  min-height: 200px;
  color: #c5c5c5;
}
.hire-us .success {
  text-align: center;
}
.hire-us .success h1 {
  font-size: 3rem;
  font-weight: 400;
}
.hire-us .success p {
  text-align: center;
  margin: 2rem auto;
  max-width: 600px;
}
.hire-us .success .button, .hire-us .success .button--wide {
  background-color: #242a30;
}
.hire-us input {
  background-color: transparent;
  color: #808795;
  height: 30px;
  font-size: 1.4rem;
  padding: 0 3px 5px 3px;
  text-align: center;
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  border-radius: 0;
}
.hire-us input::-webkit-input-placeholder {
  font-size: 1.2rem;
}
.hire-us input::-moz-placeholder {
  font-size: 1.2rem;
}
.hire-us input:-ms-input-placeholder {
  font-size: 1.2rem;
}
.hire-us input::placeholder {
  font-size: 1.2rem;
}
.hire-us input.hireus-error::-webkit-input-placeholder, .hire-us textarea.hireus-error::-webkit-input-placeholder, .hire-us input.hireus-error {
  color: #e86768;
}
.hire-us input.hireus-error::-moz-placeholder, .hire-us textarea.hireus-error::-moz-placeholder, .hire-us input.hireus-error {
  color: #e86768;
}
.hire-us input.hireus-error:-ms-input-placeholder, .hire-us textarea.hireus-error:-ms-input-placeholder, .hire-us input.hireus-error {
  color: #e86768;
}
.hire-us input.hireus-error::placeholder, .hire-us textarea.hireus-error::placeholder, .hire-us input.hireus-error {
  color: #e86768;
}
.hire-us p.hireus-error, .hire-us p.hireus-error .cs-placeholder {
  color: #e86768;
}
.hire-us p.hireus-error.error-text, .hire-us p.hireus-error .cs-placeholder.error-text {
  font-size: 1rem;
  margin-top: 0px;
}
.hire-us p.hidden {
  opacity: 0;
}
.hire-us textarea {
  background-color: transparent;
  color: #808795;
  font-size: 1.4rem;
  padding: 1rem;
  box-sizing: border-box;
}
.hire-us .controls {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: #1e2328;
  padding: 1rem;
  transition: all 800ms cubic-bezier(0.39, 0.575, 0.565, 1);
}
.hire-us .arrow-left, .hire-us .arrow-right {
  max-width: 40px;
}

.hireus__content {
  padding: 3rem 0;
}

h2 .sub-title {
  display: inline-block;
  margin-top: 0.5em;
  font-size: 0.7em;
  font-weight: 600;
}

.left-align {
  text-align: left;
}

.center-block p {
  margin: auto;
}

ul.product-list {
  list-style: none;
  padding: 0;
}
ul.product-list li {
  cursor: pointer;
  padding-bottom: 0.8rem;
  transition: 300ms;
}

div.cs-skin-border {
  font-size: 1rem;
}

.cs-select.cs-skin-border {
  margin-left: 0;
}
.cs-select.cs-skin-border span {
  padding: 0.5rem;
}

.cs-skin-border .cs-selected span::after, .cs-skin-border > span::after {
  font-family: monospace;
  content: "↓";
  font-size: 1.4rem;
}

div.cs-skin-border {
  max-width: 250px;
}

.progress-bar__title {
  margin: 0;
  text-align: left;
}

.progress-bg {
  background-color: #919293;
  border-radius: 5px;
  width: 90%;
  max-width: 250px;
}
.progress-bg .progress-bar-bg {
  background-color: #FFFFFE;
  border-radius: 5px;
  height: 0.5rem;
  transition: all 800ms cubic-bezier(0.39, 0.575, 0.565, 1);
}

.hireus-bottom {
  background-color: #1e2328;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px;
  margin-top: 1rem;
}
.hireus-bottom p {
  text-align: left;
  margin: 0 0 0.25rem 0;
}
.hireus-bottom .container .col-xs-8 {
  padding-bottom: 1rem;
}
.hireus-bottom .container .col-xs-4 {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
}
.hireus-bottom .container .col-xs-4 a {
  display: inline-block;
  padding: 2px 6px 3px;
}
.hireus-bottom .container .col-xs-4 button {
  padding-bottom: 2px;
}

.hire-us .arrow-right {
  width: 40px;
  height: 40px;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  padding: 0 0.25rem;
  opacity: 0.5;
  transition: 300ms;
}
.hire-us .arrow-right:hover {
  -webkit-transform: scale(1.15);
          transform: scale(1.15);
}

.hire-us .arrow-left {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  -webkit-transform-origin: center center;
          transform-origin: center center;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  width: 40px;
  height: 40px;
  padding: 0 0.25rem;
  opacity: 0.5;
  transition: 300ms;
}
.hire-us .arrow-left:hover {
  -webkit-transform: scale(1.15) rotate(180deg);
          transform: scale(1.15) rotate(180deg);
}

.hireus-response {
  padding: 6px 0;
  font-size: 0.8rem;
  color: #828282;
  max-width: 250px;
  margin: auto;
  line-height: 1.5;
}

@media only screen and (min-width: 48em) {
  .hire-content {
    padding-bottom: 0;
  }
  .hireus-bottom {
    background-color: transparent;
    position: fixed;
  }
  .hireus-bottom .container .row {
    -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
  }
  .cs-select.cs-skin-border {
    margin-left: 1rem;
  }
}
@media only screen and (min-width: 64em) {
  .hire-us {
    display: -ms-flexbox;
    display: flex;
    text-align: center;
  }
  .hire-us .container {
    margin: auto;
    overflow-y: visible;
    padding: 0 3rem;
  }
  .hireus__content {
    padding: 0;
  }
  .hire-us p {
    font-size: 1.5rem;
  }
  .controls .row {
    -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
  }
  .hire-us .controls {
    background-color: transparent;
  }
}
button.btn-arrow {
  background-color: transparent;
  border: none;
}
button.btn-arrow:focus {
  outline: none;
}

.hireus-slider {
  padding: 8rem 3rem 4rem 3rem;
}

.noUi-horizontal, .noUi-base {
  height: 2px;
  border: none;
}

.noUi-horizontal .noUi-handle {
  top: -24px;
  border-radius: 100%;
  box-shadow: none;
  background-color: #242a30;
  height: 50px;
  width: 50px;
  cursor: pointer;
}

.noUi-handle:after, .noUi-handle:before {
  content: none;
}

.fireworks {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.hire-content.top {
  position: relative;
  left: 0;
  right: 0;
  z-index: 1;
}

.no-color {
  color: #FFFFFE !important;
  font-size: 1.3rem;
}

/*********************************
#CTA
**********************************/
.cta {
  background-color: #1e2328;
  max-width: 100%;
  text-align: center;
  color: #fff;
}
.cta .row {
  margin: 0;
}
.cta .col-xs {
  padding-left: 0;
  padding-right: 0;
}
.cta span {
  font-size: 1.25rem;
  font-weight: 700;
  transition: all 800ms cubic-bezier(0.39, 0.575, 0.565, 1);
}

.cta__hire-block {
  background-color: #1e2328;
  cursor: pointer;
  min-height: 200px;
  transition: all 800ms cubic-bezier(0.39, 0.575, 0.565, 1);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
}

.cta__button {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  display: block;
  margin: 0 auto 1.5rem;
  max-width: 65px;
}

.cta__join-block {
  background-color: #1e2328;
  cursor: pointer;
  min-height: 200px;
  transition: all 800ms cubic-bezier(0.39, 0.575, 0.565, 1);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
}

.cta__hire-block:hover, .cta__join-block:hover {
  background-color: #3fc0c2;
}

@media only screen and (min-width: 48em) {
  .cta__hire-block, .cta__join-block {
    min-height: 300px;
    transition: all 800ms cubic-bezier(0.39, 0.575, 0.565, 1);
  }
  .cta span {
    font-size: 2rem;
  }
}
/*********************************
#Four oh Four
**********************************/
.four-oh-four {
  background-color: #242a30;
  color: #fff;
  background-image: url(../../static/svg/stars.svg);
  background-repeat: repeat;
  background-size: contain;
  height: 100vh;
}

.four-spaceman {
  max-width: 200px;
  margin: auto;
}

.four__text {
  margin: auto;
  text-align: center;
}
.four__text span {
  font-size: 4rem;
  font-weight: 600;
  text-transform: uppercase;
}
.four__text p {
  margin-top: 0;
}

/*********************************
#Footer
**********************************/
.footer {
  background-color: #1e2328;
  color: #808795;
  min-height: 3rem;
}

.footer__contact {
  background-color: #242a30;
  padding: 1rem 1rem 3rem;
  font-size: 0.7rem;
  line-height: 1.75;
}
.footer__contact .info, .footer__contact li, .footer__contact a {
  color: #fff;
}

.footer__base {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column-reverse;
      flex-direction: column-reverse;
  text-align: center;
  font-size: 0.9rem;
  padding: 1rem;
}

.footer__icon-set {
  margin-bottom: 0.5rem;
}

.footer__copy {
  margin-top: 0.5rem;
  color: #333b42;
  text-align: left;
  font-size: 0.7rem;
}

.footer h3 {
  text-align: center;
  font-size: 1.5rem;
  margin: 1rem;
}

.footer h4 {
  margin-bottom: 0.2rem;
  text-transform: uppercase;
  font-size: 0.65rem;
  letter-spacing: 1.5px;
}

.footer__menu {
  padding: 0;
  margin: 0;
  list-style: none;
}
.footer__menu li {
  display: inline-block;
  padding: 0.5rem;
}

.block-center {
  text-align: center;
}

.block-center > div {
  display: inline-block;
  text-align: left;
}

.snapcode {
  width: 80%;
  max-width: 300px;
}

.snap-wrap {
  height: 100vh;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
}

.snap-close {
  max-width: 40px;
  cursor: pointer;
}

.snap-close-wrap {
  display: block;
  margin: 4rem;
  text-align: center;
}

.snap__typed-wrap {
  min-height: 150px;
}
.snap__typed-wrap .typed-cursor {
  margin: 3rem 0.2rem;
}

.snap__typed {
  color: #242a30;
  font-weight: 600;
  font-size: 2rem;
  display: inline-block;
  margin: 3rem 0;
}

.snap:hover {
  fill: #fffc00;
}

.face:hover {
  fill: #3b5998;
}

.insta:hover {
  fill: #bc2a8d;
}

.svg-sprite path {
  fill: inherit;
}

@media only screen and (min-width: 48em) {
  .footer__base {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
        flex-direction: row;
    text-align: left;
    font-size: 0.9rem;
    padding: 1rem;
  }
  .footer__copy {
    margin-top: 0;
  }
  .footer__icon-set {
    margin-bottom: 0;
  }
}
.contact-page a {
  color: white !important;
}

.scrolling-screen {
  position: relative;
}
.scrolling-screen__frame {
  position: absolute;
  top: 49.7%;
  left: 52.3%;
  width: 23.3%;
  height: 31.6%;
  background: rgba(255, 0, 0, 0.5);
  overflow: hidden;
}

.icon-card {
  max-width: 240px;
  margin: 2rem auto 0;
  text-align: center;
}
.icon-card__number {
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 5px;
}
.icon-card__title {
  font-weight: 700;
  margin-top: 0px;
  font-size: 1.15rem;
}
.icon-card__icon {
  width: 100px;
  height: 100px;
  margin: auto;
  object-fit: contain;
}
.icon-card__list {
  list-style: none;
  padding: 0 10px;
  text-transform: uppercase;
  font-size: 0.7rem;
  font-weight: 600;
  color: #808795;
}
.icon-card__list li {
  margin: 15px;
  display: block;
}

.next-steps {
  background-color: #FAF9F9;
  padding: 2rem 0;
}
.next-steps__icon {
  width: 100px;
  height: 120px;
  object-fit: contain;
}
.next-steps__card {
  background-color: white;
  border: 1px solid #E5EEEF;
  border-radius: 10px;
  padding: 2rem 1rem 3rem;
  position: relative;
  overflow: hidden;
}
.next-steps__card::after {
  display: block;
  content: " ";
  background-color: transparent;
  width: 100%;
  height: 5px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  transition: 300ms;
}
.next-steps__title {
  font-size: 1.75rem;
  font-weight: 600;
  margin-top: 10px;
  margin-bottom: 10px;
}
.next-steps__sub {
  font-style: italic;
  font-weight: 600;
}
.next-steps__link {
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 1px;
}

.contact-block {
  padding: 70px 0;
}
.contact-block__sub {
  font-style: italic;
  font-weight: 600;
  max-width: 270px;
  margin: auto;
}

.contact-form {
  position: relative;
}
.contact-form input,
.contact-form textarea {
  font-family: "Titillium Web", sans-serif;
  width: 100%;
  margin: 10px 0;
  border-radius: 5px;
  padding: 1rem 0.5rem;
  border: 1px solid #E5EEEF;
  background-color: #FAF9F9;
  transition: box-shadow 200ms;
}
.contact-form input[type=submit] {
  width: initial;
  float: right;
  padding: 0.75rem 2rem;
  background-color: #3ebfc1;
  color: white;
  font-weight: 900;
  cursor: pointer;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none !important;
  box-shadow: 0 0 10px #3ebfc1;
}
.contact-form__result {
  font-weight: 600;
  font-size: 1.5rem;
  opacity: 0;
  transition: 300ms;
}
.contact-form .company {
  display: none;
}

.brand-chip {
  text-align: center;
  max-width: 150px;
  margin: 20px auto 40px;
}
.brand-chip__link {
  font-weight: 600;
}
.brand-chip p {
  margin-top: 4px;
  font-size: 0.8rem;
  line-height: 1.5;
}
.brand-chip__logo {
  display: block;
  margin: 0 auto 20px;
  width: 80px;
  height: 50px;
  object-fit: contain;
  object-position: 50% 100%;
  max-width: 100%;
}

.service-dropdown {
  position: relative;
  background-color: pink;
  height: 50px;
  border-radius: 10px;
  z-index: 3;
}
.service-dropdown__menu {
  list-style: none;
  border: 1px solid #f3f3f3;
  padding: 0;
  font-weight: 600;
  font-size: 1.17rem;
  line-height: 1.1;
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  height: 50px;
}
.service-dropdown__menu li {
  padding: 12px 0;
}
.service-dropdown__display {
  background-color: rgb(246, 246, 246);
  height: 50px;
  cursor: pointer;
}
.service-dropdown__sublist {
  opacity: 0;
}
.service-dropdown__arrow {
  width: 20px;
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 20px;
  z-index: 4;
}
.service-dropdown a:hover {
  color: gray;
}

.note-card {
  position: relative;
}
.note-card:hover .note-card__img {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}
.note-card__img {
  width: 100%;
  transition: -webkit-transform 1.5s cubic-bezier(0.19, 1, 0.22, 1);
  transition: transform 1.5s cubic-bezier(0.19, 1, 0.22, 1);
  object-fit: cover;
  height: 250px;
}
.note-card__content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: justify;
      justify-content: space-between;
  min-height: 100px;
  width: 90%;
  margin: auto;
  margin-top: -100px;
  z-index: 4;
  position: relative;
  height: 150px;
  padding: 0.75rem;
  border: 1px solid #ebebeb;
  background-color: #fff;
}
@media (min-width: 480px) {
  .note-card__content {
    padding: 1rem;
    width: 80%;
  }
}
.note-card__title {
  margin-top: 8px;
  margin-bottom: 4px;
  font-size: 18px;
}
.note-card__cat {
  display: inline-block;
  background-color: #3ebfc1;
  padding: 0.1rem 0.5rem;
  margin-right: 6px;
  color: white;
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 600;
}
.note-card__sub-title {
  font-style: italic;
}
.note-card__link {
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: #3ebfc1;
}
.note-card__link:hover {
  color: #3ebfc1;
}

.title--masthead {
  font-size: 2em;
  margin: 0.67em 0;
  line-height: 1.5;
  font-weight: 700;
}
.title--large {
  font-size: 2.25rem;
  font-weight: 600;
  margin-bottom: 2.5rem;
  margin-top: 0px;
}
.title--med-caps {
  font-size: 1.4rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
}
.title--regular {
  font-weight: 700;
  margin-top: 3rem;
  margin-bottom: 1rem;
  letter-spacing: 0.75px;
}
.title--small-caps {
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
}

.tiny-caps {
  text-transform: uppercase;
  font-weight: 800;
  font-size: 0.7rem;
  letter-spacing: 1px;
  color: #808795;
}

.breakdown-grid {
  display: block;
}
.breakdown-grid p {
  margin-top: 0;
}
@media (min-width: 768px) {
  .breakdown-grid {
    display: grid;
    grid-gap: 20px;
    grid-template-columns: 170px 1fr;
  }
}
@media (min-width: 1008px) {
  .breakdown-grid {
    display: grid;
    grid-gap: 40px;
    grid-template-columns: 300px 1fr;
  }
}
.breakdown-grid__wrap {
  border: 1px solid #E5EEEF;
  background-color: white;
  border-radius: 10px;
  padding: 1rem 2rem;
}

.breakdown-controls {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.breakdown-controls__title {
  display: inline-block;
  margin: 10px auto 60px;
  text-transform: uppercase;
  font-weight: 600;
}
.breakdown-controls__icon {
  max-width: 50px;
  height: 50px;
  object-fit: contain;
  object-position: center bottom;
  display: block;
  margin: auto;
}
.breakdown-controls__card {
  max-width: 160px;
  text-align: center;
  cursor: pointer;
}

.breakdown-list {
  display: none;
}
@media (min-width: 768px) {
  .breakdown-list {
    display: block;
  }
}
.breakdown-list__title {
  margin-bottom: 3px;
  font-size: 1rem;
}
.breakdown-list__subtitle {
  font-style: italic;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 40px;
}
.breakdown-list__sublist {
  padding-left: 1.1rem;
}

.breakdown-glyph {
  display: block;
  max-width: 300px;
  margin: 20px auto;
}

.breakdown-svg {
  width: 50px;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

/*********************************
#flexbox grid fix
**********************************/
.container-fluid,
.container {
  margin-right: auto;
  margin-left: auto;
}

.container-fluid {
  padding-right: 0rem;
  padding-left: 0rem;
}

.large-grid, .container {
  max-width: 1000px;
  padding-left: 1rem;
  padding-right: 1rem;
}

.container-slim {
  max-width: 650px;
  padding-left: 1rem;
  padding-right: 1rem;
  margin: auto;
}

.container-plus {
  max-width: 1200px;
  padding-left: 1rem;
  padding-right: 1rem;
  margin: auto;
}

.container-big {
  margin: auto;
  max-width: 1800px;
}

/*********************************
#svg-icons
**********************************/
.svg-icon {
  width: 25px;
  margin: 0 0.5rem 0.2rem 0.5rem;
  cursor: pointer;
  fill: #808795;
}

.icon-grow {
  transition: 300ms;
  -webkit-transform-origin: center center;
          transform-origin: center center;
  cursor: pointer;
}

.icon-grow:hover {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

/*********************************
#Typed Cursor Animation
**********************************/
.typed-cursor {
  opacity: 1;
  -webkit-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  display: inline-block;
  font-size: 1.4rem;
  margin-left: 0.25rem;
}

@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*********************************
#Shame
**********************************/
.section-block {
  margin: 70px auto;
}

.fib-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 8px;
}
.fib-grid__lg {
  grid-column: 1/3;
  grid-row: 1/3;
}
.fib-grid__med {
  grid-column: 3/5;
  grid-row: 1/2;
}
.fib-grid__square {
  width: 300px;
  height: 300px;
}
.fib-grid img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 480px) {
  .fib-grid {
    grid-gap: 15px;
  }
}

.center-text {
  text-align: center;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 600;
  margin-bottom: 2.5rem;
  margin-top: 0px;
}

.sub-title {
  font-size: 1.4rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
}

.split-list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  margin: 20px auto;
}
.split-list__img {
  width: 150px;
  height: 110px;
  object-fit: contain;
  margin-right: 10px;
}
.split-list ul {
  list-style: none;
  padding: 0 10px;
  text-transform: uppercase;
  font-size: 0.7rem;
  font-weight: 600;
  color: #808795;
}
.split-list__left {
  text-align: right;
}
.split-list__right {
  text-align: left;
  border-left: 1px solid #808795;
}
.split-list__item {
  margin: 15px 0;
}
.split-list__item:first-child {
  margin: 0 0 15px;
}
.split-list__item:last-child {
  margin: 15px 0 0;
}

.check-list {
  list-style: none;
}
.check-list > li {
  position: relative;
  margin: 25px 0;
}
.check-list > li:before {
  position: absolute;
  left: -25px;
  content: "	✔";
  color: #3ebfc1;
}

.square-list {
  list-style: none;
}
.square-list li {
  position: relative;
  margin: 25px 0;
}
.square-list li:before {
  display: block;
  position: absolute;
  top: 8px;
  height: 5px;
  width: 5px;
  left: -20px;
  content: " ";
  background-color: #3ebfc1;
}

.double-stroke {
  max-width: 480px;
  padding: 20px 40px;
  position: relative;
  margin: 6px auto;
}
@media (min-width: 768px) {
  .double-stroke {
    max-width: inherit;
  }
}
.double-stroke:before {
  display: block;
  content: " ";
  border: 1px solid gray;
  border-radius: 10px;
  position: absolute;
  top: 3px;
  left: 3px;
  right: -3px;
  bottom: -3px;
  pointer-events: none;
}
.double-stroke:after {
  display: block;
  content: " ";
  border: 1px solid gray;
  border-radius: 10px;
  position: absolute;
  top: -3px;
  left: -3px;
  right: 3px;
  bottom: 3px;
  pointer-events: none;
}

.icon-link {
  text-transform: uppercase;
  font-weight: 600;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
}
.icon-link__icon {
  width: 60px;
  height: 60px;
  margin-right: 10px;
  object-fit: contain;
}
.icon-link a {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 1px;
}

.icon-list {
  display: grid;
  -ms-flex-align: center;
      align-items: center;
  grid-template-columns: 40px 1fr;
  grid-gap: 15px;
}
.icon-list p {
  margin: 0;
}
.icon-list span {
  color: #f3bd35;
  font-weight: 600;
}
.icon-list__title {
  margin-bottom: 3px;
}

.fact-slider {
  max-width: 650px;
  margin: 1rem auto 2rem;
}
.fact-slider div {
  font-size: 1.5rem;
  font-weight: 500;
}

.crm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 30px;
  padding-right: 30px;
  margin: 30px auto;
}
.crm-grid span {
  color: #808795;
  font-weight: 600;
  display: inline-block;
  padding-top: 5px;
}

.fundraising-block {
  color: #808795;
  font-weight: 600;
  max-width: 300px;
  text-align: center;
  margin: auto;
}
.fundraising-block__logos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 200px;
  grid-gap: 10px;
  -ms-flex-align: center;
      align-items: center;
  margin: auto;
}
.fundraising-block p {
  margin-top: 3px;
}

.gray-block {
  background-color: #FAF9F9;
  border-top: 1px solid gray;
  border-bottom: 1px solid gray;
}

.visualy-hidden {
  display: none;
}

.btn-round {
  display: inline-block;
  border-radius: 10px;
  color: white;
  font-weight: 600;
  padding: 1rem 2rem;
  transition: 300ms;
}

.dark-text {
  background: #242a30;
  padding: 1px 0px;
  color: white;
}

.hide-mobile {
  display: none;
}
@media only screen and (min-width: 48em) {
  .hide-mobile {
    display: block;
  }
}

.not-allowed:hover {
  cursor: not-allowed !important;
}