@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Open+Sans");
html {
  box-sizing: border-box;
}

*,
*::after,
*::before {
  box-sizing: inherit;
}

#preload { display: none; }

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-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);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-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;
}

/* Icons */
@font-face {
  font-family: "slick";
  src: url("./fonts/slick.eot");
  font-weight: normal;
  font-style: normal;
}

/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover, .slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}

.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before, .slick-next:focus:before {
  opacity: 1;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}

.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}

[dir="rtl"] .slick-prev {
  left: auto;
  right: -25px;
}

.slick-prev:before {
  content: "←";
}

[dir="rtl"] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -25px;
}

[dir="rtl"] .slick-next {
  left: -25px;
  right: auto;
}

.slick-next:before {
  content: "→";
}

[dir="rtl"] .slick-next:before {
  content: "←";
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}

.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}

.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  text-align: center;
  color: black;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
  color: black;
  opacity: 0.75;
}

/*!
 * 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: 1.8s;
  animation-duration: 1.8s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

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

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

.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
}

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

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

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

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

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

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

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

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

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

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

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

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

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

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

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

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

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

.headShake {
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: headShake;
  animation-name: headShake;
}

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

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

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

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

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

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

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  from {
    -webkit-transform: none;
    transform: none;
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    -webkit-transform: none;
    transform: none;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}

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

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

.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}

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

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

.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}

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

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

.flipOutX {
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

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

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

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

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

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

.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

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

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

.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

@-webkit-keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    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, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    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, 0, 0);
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 80px, 0);
    transform: translate3d(0, 80px, 0);
  }
}

@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, 0 0);
    transform: translate3d(0, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 80px, 0);
    transform: translate3d(0, 80px, 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;
}

@-webkit-keyframes slideInUpArrow {
  from {
    -webkit-transform: translate3d(0, 80px, 0);
    transform: translate3d(0, 80px, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInUpArrow {
  from {
    -webkit-transform: translate3d(0, 80px, 0);
    transform: translate3d(0, 80px, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

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

/* =Reset
-------------------------------------------------------------- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
  border: 0;
  font-family: inherit;
  font-size: 100%;
  font-style: inherit;
  font-weight: inherit;
  margin: 0;
  outline: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  font-size: 62.5%;
  /* Corrects text resizing oddly in IE6/7 when body font-size is set using em units http://clagnut.com/blog/348/#c790 */
  overflow-y: scroll;
  /* Keeps page centred in all browsers regardless of content height */
  -webkit-text-size-adjust: 100%;
  /* Prevents iOS text size adjust after orientation change, without disabling user zoom */
  -ms-text-size-adjust: 100%;
  /* www.456bereastreet.com/archive/201012/controlling_text_size_in_safari_for_ios_without_disabling_user_zoom/ */
}

*,
*:before,
*:after {
  /* apply a natural box layout model to all elements; see http://www.paulirish.com/2012/box-sizing-border-box-ftw/ */
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  background: #ffffff;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section {
  display: block;
}

ol, ul {
  list-style: none;
}

table {
  /* tables still need 'cellspacing="0"' in the markup */
  border-collapse: separate;
  border-spacing: 0;
}

caption, th, td {
  font-weight: normal;
  text-align: left;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
}

blockquote, q {
  quotes: "" "";
}

a:focus {
  outline: thin dotted;
}

a:hover,
a:active {
  outline: 0;
}

a img {
  border: 0;
}

a {
  text-decoration: none;
}

.st-container {
  position: relative;
  width: 90%;
  max-width: 1080px;
  margin: auto;
  font-family: "arcabold";
}

.st-container a {
  -moz-transition: all 0.25s ease-out;
  -webkit-transition: all 0.25s ease-out;
  -i-transition: all 0.25s ease-out;
}

.st-container-feature {
  position: relative;
  width: 90%;
  max-width: 1080px;
  margin: auto;
  font-family: "arcabold";
    background-color: #eaeaea;
}

.st-container-feature a {
  -moz-transition: all 0.25s ease-out;
  -webkit-transition: all 0.25s ease-out;
  -i-transition: all 0.25s ease-out;
}

#lifestories, #collaboration, #shutterstock, #timeline {
  display: block;
  position: relative;
  top: -50px;
  visibility: hidden;
}

.st-anchor-animation {
  display: block;
  position: relative;
  top: -10px;
  visibility: hidden;
}

.fixed-anchor, .fixed-anchor-end {
  width: 1px;
  height: 1px;
}

.fade-animation-header, .fade-animation, .fade-animation2, .fade-animation3, .home-animation-js, .timeline-animation, .st-common-arrow, .st-timeline-bg {
  opacity: 0;
}

@media only screen and (max-width: 768px) {
  .header-animation {
    opacity: 0;
  }
}

@-webkit-keyframes floating {
  from {
    -webkit-transform: translate(0, 0px);
  }
  50% {
    -webkit-transform: translate(0, 15px);
  }
  to {
    -webkit-transform: translate(0, 0px);
  }
}

@-moz-keyframes floating {
  from {
    -moz-transform: translate(0, 0px);
  }
  50% {
    -moz-transform: translate(0, 15px);
  }
  to {
    -moz-transform: translate(0, 0px);
  }
}

@-keyframes floating {
  from {
    -moz-transform: translate(0, 0px);
  }
  50% {
    -moz-transform: translate(0, 15px);
  }
  to {
    -moz-transform: translate(0, 0px);
  }
}

@-webkit-keyframes openblock {
  from {
    height: 0;
  }
  to {
    height: 100%;
  }
}

@-moz-keyframes openblock {
  from {
    height: 0;
  }
  to {
    height: 100%;
  }
}

@-keyframes openblock {
  from {
    height: 0;
  }
  to {
    height: 100%;
  }
}

@font-face {
  font-family: mulilight;
  font-style: normal;
  font-weight: normal;
  src: url("../fonts/muli-light.eot?#iefix") format("embedded-opentype"), url("../fonts/muli-light.woff2") format("woff2"), url("../fonts/muli-light.woff") format("woff"), url("../fonts/muli-light.ttf") format("truetype"), url("../fonts/muli-light.svg#mulilight") format("svg");
}

@font-face {
  font-family: mulibold;
  font-style: normal;
  font-weight: normal;
  src: url("../fonts/muli-bold.eot?#iefix") format("embedded-opentype"), url("../fonts/muli-bold.woff2") format("woff2"), url("../fonts/muli-bold.woff") format("woff"), url("../fonts/muli-bold.ttf") format("truetype"), url("../fonts/muli-bold.svg#mulibold") format("svg");
}

@font-face {
  font-family: rubikmedium;
  font-style: normal;
  font-weight: normal;
  src: url("../fonts/rubik-medium.eot?#iefix") format("embedded-opentype"), url("../fonts/rubik-medium.woff2") format("woff2"), url("../fonts/rubik-medium.woff") format("woff"), url("../fonts/rubik-medium.ttf") format("truetype"), url("../fonts/rubik-medium.svg#rubikmedium") format("svg");
}

@font-face {
  font-family: arcabold;
  font-style: normal;
  font-weight: normal;
  src: url("../fonts/ArcaMajora3-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/ArcaMajora3-Bold.woff2") format("woff2"), url("../fonts/ArcaMajora3-Bold.woff") format("woff"), url("../fonts/ArcaMajora3-Bold.ttf") format("truetype"), url("../fonts/ArcaMajora3-Bold.svg#arcabold") format("svg");
}

@font-face {
  font-family: arcaheavy;
  font-style: normal;
  font-weight: normal;
  src: url("../fonts/ArcaMajora3-Heavy.eot?#iefix") format("embedded-opentype"), url("../fonts/ArcaMajora3-Heavy.woff2") format("woff2"), url("../fonts/ArcaMajora3-Heavy.woff") format("woff"), url("../fonts/ArcaMajora3-Heavy.ttf") format("truetype"), url("../fonts/ArcaMajora3-Heavy.svg#arcaheavy") format("svg");
}

@font-face {
  font-family: spartanbold;
  font-style: normal;
  font-weight: normal;
  src: url("../fonts/leaguespartan-bold.eot?#iefix") format("embedded-opentype"), url("../fonts/leaguespartan-bold.woff2") format("woff2"), url("../fonts/leaguespartan-bold.woff") format("woff"), url("../fonts/leaguespartan-bold.ttf") format("truetype"), url("../fonts/leaguespartan-bold.svg#spartanbold") format("svg");
}

.st-nav {
  position: fixed;
  width: 100%;
  height: auto;
  border-bottom: 1px solid white;
  z-index: 9999;
  -moz-transition: all 0.25s ease-out;
  -webkit-transition: all 0.25s ease-out;
  -i-transition: all 0.25s ease-out;
}

.st-nav .st-container {
  width: 100%;
  padding: 0 30px;
}

@media only screen and (max-width: 560px) {
  .st-nav .st-container {
    padding: 0 20px;
  }
}

.st-nav.sticky, .st-nav.mobile {
  border-bottom: 1px solid #cccccc !important;
  background-color: white !important;
}

.st-nav.sticky .st-nav-item .logo, .st-nav.mobile .st-nav-item .logo {
  background-image: url("../img/svg/ic_storyo_blue.svg") !important;
}

.st-nav.sticky .st-nav-item ul li a, .st-nav.mobile .st-nav-item ul li a {
  color: #414042 !important;
}

.st-nav.sticky .st-nav-item ul li a:hover, .st-nav.sticky .st-nav-item ul li a.menu-act, .st-nav.mobile .st-nav-item ul li a:hover, .st-nav.mobile .st-nav-item ul li a.menu-act {
  color: #004dff !important;
}

.st-nav.sticky .st-hamb span, .st-nav.mobile .st-hamb span {
  background: #414042 !important;
}

.st-nav.sticky .st-hamb span:before, .st-nav.sticky .st-hamb span:after, .st-nav.mobile .st-hamb span:before, .st-nav.mobile .st-hamb span:after {
  background: #414042 !important;
}

.st-nav.sticky .st-hamb .active span, .st-nav.mobile .st-hamb .active span {
  background-color: transparent !important;
}

.st-nav.normal {
  background-color: transparent;
}

.st-nav .st-nav-item {
  display: inline-block;
  vertical-align: middle;
  margin-left: -3px;
}

.st-nav .st-nav-item:first-of-type {
  width: 14%;
  text-align: left;
}

@media only screen and (max-width: 768px) {
  .st-nav .st-nav-item:first-of-type {
    width: 50%;
  }
}

.st-nav .st-nav-item:first-of-type a {
  display: block;
}

.st-nav .st-nav-item:first-of-type a:hover .logo {
  opacity: 0.6;
}

.st-nav .st-nav-item:first-of-type a .logo {
  width: 103px;
  height: 28px;
  background-image: url("../img/svg/ic_storyo.svg");
  background-repeat: no-repeat;
  background-size: contain;
  -moz-transition: all 0.25s ease-out;
  -webkit-transition: all 0.25s ease-out;
  -i-transition: all 0.25s ease-out;
}

.st-nav .st-nav-item:nth-child(2) {
  width: 86%;
  text-align: right;
}

@media only screen and (max-width: 768px) {
  .st-nav .st-nav-item:nth-child(2) {
    width: initial;
  }
}

@media only screen and (max-width: 768px) {
  .st-nav .st-nav-item ul {
    display: none;
    position: absolute;
    width: 100%;
    top: 55px;
    left: 0;
    text-align: center;
    background: white;
    border-bottom: 1px solid #cccccc;
  }
}

.st-nav .st-nav-item ul li {
  display: inline-block;
  margin: 0 16px;
}

@media only screen and (max-width: 860px) {
  .st-nav .st-nav-item ul li {
    margin: 0 12px;
  }
}

@media only screen and (max-width: 768px) {
  .st-nav .st-nav-item ul li {
    display: block;
    margin: auto auto 10px;
  }
}

@media only screen and (max-width: 768px) and (max-height: 460px) and (orientation: landscape) {
  .st-nav .st-nav-item ul li {
    display: inline-block;
    margin: auto 30px 10px !important;
  }
}

@media only screen and (max-width: 670px) and (max-height: 460px) and (orientation: landscape) {
  .st-nav .st-nav-item ul li {
    margin: auto 40px 10px !important;
  }
}

@media only screen and (max-width: 560px) and (max-height: 460px) and (orientation: landscape) {
  .st-nav .st-nav-item ul li {
    margin: auto 30px 10px !important;
  }
}

@media only screen and (max-width: 768px) {
  .st-nav .st-nav-item ul li:first-of-type a {
    padding: 32px 0 16px;
  }
}

.st-nav .st-nav-item ul li:last-of-type {
  margin-right: initial;
}

.st-nav .st-nav-item ul li a {
  display: block;
  font-family: "Open Sans", sans-serif;
  font-weight: 300;
  font-size: 14px;
  text-transform: uppercase;
  color: white;
  padding: 16px 0;
}

@media only screen and (max-width: 768px) {
  .st-nav .st-nav-item ul li a {
    color: #414042;
  }
}

.st-nav .st-nav-item ul li a:hover, .st-nav .st-nav-item ul li a.menu-act {
  color: #414042;
}

.st-hamb {
  display: none;
}

@media only screen and (max-width: 768px) {
  .st-hamb {
    display: inline-block;
    width: 50%;
    vertical-align: middle;
    margin: 10px 0;
    text-align: right;
  }
}

.st-hamb #nav-toggle {
  position: relative;
  display: inline-block;
  width: 32px;
  height: 32px;
  cursor: pointer;
  z-index: 9999;
}

.st-hamb #nav-toggle span {
  cursor: pointer;
  height: 2px;
  width: 24px;
  background: white;
  position: absolute;
  top: 15px;
  right: 5px;
  display: block;
  content: '';
  transition: all 500ms ease-in-out;
}

.st-hamb #nav-toggle span:before, .st-hamb #nav-toggle span:after {
  cursor: pointer;
  height: 2px;
  width: 24px;
  background: white;
  position: absolute;
  display: block;
  content: '';
  transition: all 500ms ease-in-out;
}

.st-hamb #nav-toggle span:before {
  top: -8px;
}

.st-hamb #nav-toggle span:after {
  bottom: -8px;
}

.st-hamb .active span {
  background-color: transparent !important;
}

.st-hamb .active span:before, .st-hamb .active span:after {
  top: 0 !important;
}

.st-hamb .active span:before {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
}

.st-hamb .active span:after {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
}

.st-header {
  position: relative;
  width: 100%;
  background-image: url("../img/header_bg.jpg");
  background-size: cover;
  background-position: top left;
  background-repeat: no-repeat;
  padding: 110px 0 350px;
  overflow: hidden;
}

@media only screen and (max-width: 1500px) and (max-height: 900px) {
  .st-header {
    padding: 110px 0 200px;
  }
}

@media only screen and (max-width: 1050px) {
  .st-header {
    padding: 110px 0 350px;
  }
}

@media only screen and (max-width: 768px) {
  .st-header {
    background-image: url("../img/header_bg_mobile.jpg");
    padding: 110px 0 0;
  }
}

@media only screen and (max-width: 560px) {
  .st-header {
    padding: 90px 0 0;
  }
}

.st-header .st-header-copy .st-header-title {
  font-family: "arcaheavy";
  font-size: 55px;
  color: #414042;
  margin-bottom: 50px;
}

@media only screen and (max-width: 768px) {
  .st-header .st-header-copy .st-header-title {
    font-size: 45px;
  }
}

@media only screen and (max-width: 560px) {
  .st-header .st-header-copy .st-header-title {
    font-size: 30px;
    margin-bottom: 30px;
  }
}

.st-header .st-header-copy .st-header-title span {
  font-size: 73px;
  text-transform: uppercase;
}

@media only screen and (max-width: 768px) {
  .st-header .st-header-copy .st-header-title span {
    font-size: 60px;
  }
}

@media only screen and (max-width: 560px) {
  .st-header .st-header-copy .st-header-title span {
    font-size: 42px;
  }
}

.st-header .st-header-copy .st-header-text {
  max-width: 550px;
  margin: auto auto 50px;
  font-family: "arcabold";
  font-size: 20px;
  line-height: 1.6;
  color: #414042;
}

@media only screen and (max-width: 768px) {
  .st-header .st-header-copy .st-header-text {
    font-size: 19px;
  }
}

@media only screen and (max-width: 560px) {
  .st-header .st-header-copy .st-header-text {
    font-size: 17px;
    line-height: 1.4;
  }
}

.st-header .st-header-copy .st-header-text span {
  font-family: "arcaheavy";
}

@media only screen and (max-width: 760px) {
  .st-header .st-header-copy .st-header-download {
    display: none;
  }
}

.st-header .st-header-copy .st-header-download p {
  font-family: "arcabold";
  font-size: 14px;
  color: #414042;
  margin-bottom: 14px;
}

.st-header .st-header-copy .st-header-download a:hover img {
  opacity: 0.7;
}

.st-header .st-header-copy .st-header-download a img {
  -moz-transition: all 0.25s ease-out;
  -webkit-transition: all 0.25s ease-out;
  -i-transition: all 0.25s ease-out;
}

.st-header .header-animation {
  position: absolute;
  right: 120px;
  bottom: -800px;
  margin-left: 30px;
  margin-top: 5px;
}

@media only screen and (max-width: 1500px) {
  .st-header .header-animation {
    right: 0;
  }
}

.st-header .header-animation.floating {
  animation-name: floating;
  -webkit-animation-name: floating;
  -moz-animation-name: floating;
  animation-duration: 5s;
  -webkit-animation-duration: 5s;
  -moz-animation-duration: 5s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
  -moz-animation-timing-function: ease-in-out;
}

@media only screen and (max-width: 1500px) and (max-height: 900px) {
  .st-header .header-animation {
    max-width: 24%;
  }
}

@media only screen and (max-height: 800px) {
  .st-header .header-animation {
    max-width: 24%;
  }
}

@media only screen and (max-width: 1060px) {
  .st-header .header-animation {
    max-width: 300px;
    width: 90%;
  }
}

@media only screen and (max-width: 768px) {
  .st-header .header-animation {
    position: relative;
    width: 70%;
    display: block;
    right: initial;
    bottom: initial;
    margin: 80px auto auto;
  }
}

@media only screen and (max-width: 560px) {
  .st-header .header-animation {
    width: 163px;
    margin: 160px auto auto;
  }
}

.st-home {
  position: relative;
  padding: 44px 0 0;
  background-color: white;
}

.st-home .st-home-copy .st-home-title {
  font-family: "arcabold";
  font-size: 25px;
  color: #414042;
  margin-bottom: 30px;
}

@media only screen and (max-width: 768px) {
  .st-home .st-home-copy .st-home-title {
    font-size: 23px;
  }
}

@media only screen and (max-width: 560px) {
  .st-home .st-home-copy .st-home-title {
    font-size: 20px;
  }
}

.st-home .st-home-copy .st-home-text {
  max-width: 750px;
  margin: auto;
  font-family: "mulilight";
  font-size: 18px;
  color: #58595b;
  line-height: 1.6;
}

.st-home-feature  {
    
  width: 100%;
  margin: auto;
  font-family: "mulilight";
  font-size: 18px;
  color: #58595b;
  line-height: 1.6;
    background-color: #eaeaea;
}

.st-home-feature-mobile  {
    display: none !important;
  width: 100%;
  margin: auto;
  font-family: "mulilight";
  font-size: 18px;
  color: #58595b;
  line-height: 1.6;
    background-color: #eaeaea;
}

@media only screen and (max-width: 830px) {
  .st-home-feature  {
    display: none !important;
      
  }
    
     .st-home-feature-mobile  {
    display: block !important;
      
  }
}

@media only screen and (max-width: 830px) {
  .st-home-feature .home-desktop .home-animation-text, .st-home .home-mobile .home-animation-text {
    height: 260px !important;
  }
}

@media only screen and (max-width: 560px) {
  .st-home .st-home-copy .st-home-text {
    font-size: 15px;
  }
}

.st-home .home-desktop, .st-home .home-mobile {
  position: relative;
  max-width: 1200px;
  margin: auto;
}

.st-home .home-desktop .home-animation, .st-home .home-mobile .home-animation {
  display: block;
  width: 100%;
}

@media only screen and (max-width: 768px) {
  .st-home .home-desktop .home-animation, .st-home .home-mobile .home-animation {
    width: initial;
    height: 337px !important;
  }
}

@media only screen and (max-width: 560px) {
  .st-home .home-desktop .home-animation, .st-home .home-mobile .home-animation {
    height: 260px !important;
  }
}

.st-home .home-desktop .home-animation-text, .st-home .home-mobile .home-animation-text {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
}

@media only screen and (max-width: 768px) {
  .st-home .home-desktop .home-animation-text, .st-home .home-mobile .home-animation-text {
    width: initial;
    height: 337px !important;
  }
}

@media only screen and (max-width: 560px) {
  .st-home .home-desktop .home-animation-text, .st-home .home-mobile .home-animation-text {
    height: 260px !important;
  }
}



.st-home .video-position {
  position: absolute;
  width: 199px;
  bottom: 58px;
  left: 358px;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}





.video-overlay-play-button {
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    padding: 10px calc(50% - 50px);
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    opacity: 0.95;
    cursor: pointer;
    background-image: linear-gradient(transparent, #000);
    transition: opacity 150ms;
}

.video-overlay-play-button:hover {
    opacity: 1;
}

.video-overlay-play-button.is-hidden {
    display: none;
}


@media only screen and (max-width: 1214px) {
  .st-home .video-position {
    width: 16.6vw;
    height: 1vw;
    bottom: 28.5vw;
    left: 29.85vw;
  }
}

@media only screen and (max-width: 950px) {
  .st-home .video-position {
      width: 16.55vw;
    left: 29.8vw;
  }
}

@media only screen and (max-width: 870px) {
  .st-home .video-position {
    width: 16.6vw;
    bottom: 28.8vw;
      left: 29.8vw;
  }
}

@media only screen and (max-width: 768px) {
  .st-home .video-position {
    width: 171px;
    height: initial;
    bottom: 39px;
    left: 226px;
  }
}

@media only screen and (max-width: 560px) {
  .st-home .video-position {
    width: 120px;
    bottom: 30px;
    left: 174px;
  }
}

.st-home .video-position .video-container {
  position: relative;
  overflow: hidden;
}

@media only screen and (max-width: 768px) {
  .st-home .video-position .video-container {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
    text-align: center;
    max-width: 152px;
    margin: auto;
  }
}

@media only screen and (max-width: 560px) {
  .st-home .video-position .video-container {
    max-width: 112px;
  }
}

.st-home .video-position .video-container video {
  width: 100%;
  height: 100%;
}

@media only screen and (max-width: 768px) {
  .st-home .video-position .video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}

.st-home .home-desktop {
  display: block;
}

@media only screen and (max-width: 768px) {
  .st-home .home-desktop {
    display: none;
  }
}

.st-home .home-mobile {
  position: relative;
  display: none;
}

.st-home .home-mobile .home-swipe {
  position: absolute;
  top: 14px;
  right: 15px;
  width: 20px;
  transition: 2s;
  -webkit-transition: 2s;
  -moz-transition: 2s;
  -webkit-animation: slide 1s infinite;
  -webkit-animation-delay: 1s;
  animation: slide 1.5s infinite;
  animation-delay: 1.5s;
}

@-webkit-keyframes slide {
  0% {
    right: 15px;
  }
  50% {
    right: 25px;
  }
  100% {
    right: 15px;
  }
}

@keyframes slide {
  0% {
    right: 15px;
  }
  50% {
    right: 25px;
  }
  100% {
    right: 15px;
  }
}

@media only screen and (max-width: 768px) {
  .st-home .home-mobile {
    display: block;
    margin-top: 30px;
    overflow: hidden;
    overflow-x: scroll !important;
  }
}

.st-stories .st-common-holder {
  background-image: url("../img/sitback_bg.jpg");
  z-index: 50;
}

@media only screen and (max-width: 768px) {
  .st-stories .st-common-holder {
    background-image: url("../img/sitback_bg_mobile.jpg");
  }
}

@media only screen and (max-width: 1500px) and (max-height: 900px) {
  .st-stories .st-common-holder .st-common-header {
    margin-bottom: 138px;
  }
}

@media only screen and (max-height: 800px) {
  .st-stories .st-common-holder .st-common-header {
    margin-bottom: 138px;
  }
}

@media only screen and (max-width: 1000px) {
  .st-stories .st-expandable-area .st-expandable-image {
    margin-top: 30px;
  }
}

.st-stories .st-expandable-area .st-expandable-slider-holder:before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #c1e1ea;
  z-index: -1;
}

.st-stories .st-expandable-area .st-expandable-slider-holder .st-expandable-slider {
  background-color: #c1e1ea;
}

@media only screen and (min-width: 769px) {
  .st-stories .st-expandable-area .st-expandable-slider-holder .st-expandable-slider .st-expandable-slide {
    width: 50%;
  }
}

.st-collaboration .st-common-holder .st-collaboration-bg-holder {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
}

.st-collaboration .st-common-holder .st-collaboration-bg-holder .st-collaboration-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/sunset_bg.jpg");
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  transition: all 20s ease;
  -moz-transition: all 20s ease;
  -ms-transition: all 20s ease;
  -webkit-transition: all 20s ease;
  -o-transition: all 20s ease;
}

@media only screen and (max-width: 768px) {
  .st-collaboration .st-common-holder .st-collaboration-bg-holder .st-collaboration-bg {
    background-image: url("../img/sunset_bg_mobile.jpg");
  }
}

.st-collaboration .st-common-holder .st-collaboration-bg-holder .st-collaboration-bg.scaled {
  transform: scale(1.1);
  -moz-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  -o-transform: scale(1.1);
  -ms-transform: scale(1.1);
  /* IE 9 */
  -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=1.1, M12=0, M21=0, M22=1.1, SizingMethod='auto expand')";
  /* IE8 */
  filter: progid:DXImageTransform.Microsoft.Matrix(M11=1.1, M12=0, M21=0, M22=1.1, SizingMethod='auto expand');
  /* IE6 and 7 */
}

.st-collaboration .st-common-holder .st-common-header {
  color: #414042;
}

@media only screen and (max-width: 1500px) and (max-height: 900px) {
  .st-collaboration .st-common-holder .st-common-header {
    margin-bottom: 124px;
  }
}

@media only screen and (max-height: 800px) {
  .st-collaboration .st-common-holder .st-common-header {
    margin-bottom: 124px;
  }
}

.st-collaboration .st-common-holder .st-common-content .st-common-items .st-common-item .st-common-do br {
  display: none;
}

@media only screen and (max-width: 400px) {
  .st-collaboration .st-common-holder .st-common-content .st-common-items .st-common-item .st-common-do br {
    display: block;
  }
}

.st-collaboration .st-expandable-area .st-expandable-copy {
  margin-bottom: 50px;
}

@media only screen and (max-width: 1500px) and (max-height: 900px) {
  .st-collaboration .st-expandable-area .st-expandable-copy {
    max-width: 595px;
  }
}

@media only screen and (max-height: 800px) {
  .st-collaboration .st-expandable-area .st-expandable-copy {
    max-width: 595px;
  }
}

.st-collaboration .st-expandable-area .st-expandable-slider-holder:before, .st-collaboration .st-expandable-area .st-expandable-slider-holder:after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  z-index: -1;
}

.st-collaboration .st-expandable-area .st-expandable-slider-holder:before {
  left: 0;
  background-color: #e8f4f7;
}

.st-collaboration .st-expandable-area .st-expandable-slider-holder:after {
  right: 0;
  background-color: #cae6ed;
}

@media only screen and (min-width: 769px) {
  .st-collaboration .st-expandable-area .st-expandable-slider-holder .st-expandable-slider2 .st-expandable-slide {
    width: 33.33%;
  }
}

.st-collaboration .st-expandable-area .st-expandable-slider-holder .st-expandable-slider2 .st-expandable-slide:nth-child(1) {
  background-color: #e8f4f7;
}

.st-collaboration .st-expandable-area .st-expandable-slider-holder .st-expandable-slider2 .st-expandable-slide:nth-child(2) {
  background-color: #daecf2;
}

.st-collaboration .st-expandable-area .st-expandable-slider-holder .st-expandable-slider2 .st-expandable-slide:nth-child(3) {
  background-color: #cae6ed;
}

@media only screen and (max-width: 1500px) and (max-height: 900px) {
  .st-shutterstock .st-common-holder .st-common-header {
    margin-bottom: 108px;
  }
}

@media only screen and (max-height: 800px) {
  .st-shutterstock .st-common-holder .st-common-header {
    margin-bottom: 108px;
  }
}

.st-shutterstock .st-expandable-area .st-expandable-copy {
  margin-bottom: 30px !important;
}

@media only screen and (max-width: 1500px) and (max-height: 900px) {
  .st-shutterstock .st-expandable-area .st-expandable-copy {
    max-width: 730px;
  }
}

@media only screen and (max-height: 800px) {
  .st-shutterstock .st-expandable-area .st-expandable-copy {
    max-width: 730px;
  }
}

.st-shutterstock .st-expandable-area .st-expandable-copy br {
  display: none;
}

@media only screen and (max-width: 1500px) and (max-height: 900px) {
  .st-shutterstock .st-expandable-area .st-expandable-copy br {
    display: block;
  }
}

@media only screen and (max-height: 800px) {
  .st-shutterstock .st-expandable-area .st-expandable-copy br {
    display: block;
  }
}

@media only screen and (max-width: 768px) {
  .st-shutterstock .st-expandable-area .st-expandable-copy br {
    display: none;
  }
}

.st-shutterstock .st-expandable-area .st-expandable-image {
  position: relative;
  padding: 160px 0 270px;
  margin: initial;
}

@media only screen and (max-width: 1500px) and (max-height: 900px) {
  .st-shutterstock .st-expandable-area .st-expandable-image {
    padding: 120px 0 270px;
  }
}

@media only screen and (max-height: 800px) {
  .st-shutterstock .st-expandable-area .st-expandable-image {
    padding: 120px 0 270px;
  }
}

@media only screen and (max-width: 900px) {
  .st-shutterstock .st-expandable-area .st-expandable-image {
    padding: 118px 0 180px;
  }
}

@media only screen and (max-width: 700px) {
  .st-shutterstock .st-expandable-area .st-expandable-image {
    padding: 90px 0 180px;
  }
}

@media only screen and (max-width: 560px) {
  .st-shutterstock .st-expandable-area .st-expandable-image {
    padding: 70px 0 160px;
  }
}

.st-shutterstock .st-expandable-area .st-expandable-image .st-smartphone {
  position: absolute;
  top: 70px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  z-index: 1;
}

@media only screen and (max-width: 1500px) and (max-height: 900px) {
  .st-shutterstock .st-expandable-area .st-expandable-image .st-smartphone {
    top: 40px;
  }
}

@media only screen and (max-height: 800px) {
  .st-shutterstock .st-expandable-area .st-expandable-image .st-smartphone {
    top: 40px;
  }
}

@media only screen and (max-width: 900px) {
  .st-shutterstock .st-expandable-area .st-expandable-image .st-smartphone {
    top: 50px;
    height: 430px;
  }
}

@media only screen and (max-width: 700px) {
  .st-shutterstock .st-expandable-area .st-expandable-image .st-smartphone {
    top: 30px;
    height: 350px;
  }
}

@media only screen and (max-width: 560px) {
  .st-shutterstock .st-expandable-area .st-expandable-image .st-smartphone {
    top: 20px;
  }
}

.st-shutterstock .st-expandable-area .st-expandable-image .shutterstock-slider .slick-prev, .st-shutterstock .st-expandable-area .st-expandable-image .shutterstock-slider .slick-next {
  width: 40%;
  height: 100%;
  z-index: 1;
}

@media only screen and (max-width: 760px) {
  .st-shutterstock .st-expandable-area .st-expandable-image .shutterstock-slider .slick-prev, .st-shutterstock .st-expandable-area .st-expandable-image .shutterstock-slider .slick-next {
    width: 35%;
  }
}

@media only screen and (max-width: 560px) {
  .st-shutterstock .st-expandable-area .st-expandable-image .shutterstock-slider .slick-prev, .st-shutterstock .st-expandable-area .st-expandable-image .shutterstock-slider .slick-next {
    width: 22%;
  }
}

.st-shutterstock .st-expandable-area .st-expandable-image .shutterstock-slider .slick-prev:before, .st-shutterstock .st-expandable-area .st-expandable-image .shutterstock-slider .slick-next:before {
  display: none;
}

.st-shutterstock .st-expandable-area .st-expandable-image .shutterstock-slider .slick-prev {
  left: 0;
}

.st-shutterstock .st-expandable-area .st-expandable-image .shutterstock-slider .slick-next {
  right: 0;
}

@media only screen and (min-width: 769px) {
  .st-shutterstock .st-expandable-area .st-expandable-image .shutterstock-slider .slick-slide video {
    display: none;
  }
  .st-shutterstock .st-expandable-area .st-expandable-image .shutterstock-slider .slick-slide img {
    display: block;
    width: 222px;
    height: 222px;
  }
}

@media only screen and (min-width: 769px) and (max-width: 900px) {
  .st-shutterstock .st-expandable-area .st-expandable-image .shutterstock-slider .slick-slide img {
    width: 170px;
    height: 170px;
  }
}

@media only screen and (min-width: 769px) {
  .st-shutterstock .st-expandable-area .st-expandable-image .shutterstock-slider .slick-slide.slick-current video {
    display: block;
  }
  .st-shutterstock .st-expandable-area .st-expandable-image .shutterstock-slider .slick-slide.slick-current img {
    display: none;
  }
}

.st-shutterstock .st-expandable-area .st-expandable-image .video-container {
  padding: 0 20px;
  text-align: center;
}

.st-shutterstock .st-expandable-area .st-expandable-image .video-container video {
  width: 222px;
  height: 222px;
}

@media only screen and (max-width: 900px) {
  .st-shutterstock .st-expandable-area .st-expandable-image .video-container video {
    width: 170px;
    height: 170px;
  }
}

@media only screen and (max-width: 768px) {
  .st-shutterstock .st-expandable-area .st-expandable-image .video-container video {
    display: none;
  }
}

.st-shutterstock .st-expandable-area .st-expandable-image .video-container img {
  display: none;
}

@media only screen and (max-width: 768px) {
  .st-shutterstock .st-expandable-area .st-expandable-image .video-container img {
    display: block;
    width: 170px;
    height: 170px;
  }
}

@media only screen and (max-width: 700px) {
  .st-shutterstock .st-expandable-area .st-expandable-image .video-container img {
    width: 140px;
    height: 140px;
  }
}

.st-timeline {
  overflow: hidden;
}

.st-timeline .st-container:first-of-type {
  margin-top: initial !important;
}

.st-timeline .st-common-holder {
  background-image: url("../img/timeline_bg.jpg");
}

@media only screen and (max-width: 768px) {
  .st-timeline .st-common-holder {
    background-image: url("../img/timeline_bg_mobile.jpg");
  }
}

@media only screen and (max-width: 1500px) and (max-height: 900px) {
  .st-timeline .st-common-holder .st-common-header {
    margin-bottom: 98px;
  }
}

@media only screen and (max-height: 800px) {
  .st-timeline .st-common-holder .st-common-header {
    margin-bottom: 98px;
  }
}

.st-timeline .st-common-holder .st-timeline-image {
  position: absolute;
  left: 50%;
  bottom: -16px;
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}

@media only screen and (max-width: 1500px) and (max-height: 900px) {
  .st-timeline .st-common-holder .st-timeline-image {
    max-height: 400px;
    bottom: 0;
  }
}

@media only screen and (max-height: 800px) {
  .st-timeline .st-common-holder .st-timeline-image {
    max-height: 400px;
    bottom: 0;
  }
}

@media only screen and (max-width: 768px) {
  .st-timeline .st-common-holder .st-timeline-image {
    max-height: 400px;
    bottom: 0;
  }
}

@media only screen and (max-width: 560px) {
  .st-timeline .st-common-holder .st-timeline-image {
    display: none;
  }
}

.st-timeline .st-common-holder .st-timeline-image img {
  display: block;
}

.st-timeline .st-expandable-area {
  position: relative;
  background-color: #f1f1f1;
  padding-bottom: 520px;
  margin-top: initial;
}

@media only screen and (max-width: 1500px) and (max-height: 900px) {
  .st-timeline .st-expandable-area {
    padding-bottom: 440px;
  }
}

@media only screen and (max-height: 800px) {
  .st-timeline .st-expandable-area {
    padding-bottom: 440px;
  }
}

@media only screen and (max-width: 768px) {
  .st-timeline .st-expandable-area {
    padding-bottom: 370px;
  }
}

@media only screen and (max-width: 560px) {
  .st-timeline .st-expandable-area {
    padding-bottom: 60%;
  }
}

.st-timeline .st-expandable-area .st-timeline-bg {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  -moz-transition: all 1.5s linear;
  -webkit-transition: all 1.5s linear;
  -i-transition: all 1.5s linear;
}

.st-timeline .st-expandable-area .st-expandable-copy {
  margin-top: 80px !important;
}

@media only screen and (max-width: 1500px) and (max-height: 900px) {
  .st-timeline .st-expandable-area .st-expandable-copy {
    max-width: 550px;
  }
}

@media only screen and (max-height: 800px) {
  .st-timeline .st-expandable-area .st-expandable-copy {
    max-width: 550px;
  }
}

@media only screen and (max-width: 560px) {
  .st-timeline .st-expandable-area .st-expandable-copy {
    margin-top: 60px !important;
  }
}

@media only screen and (max-width: 768px) {
  .st-timeline .st-expandable-area .st-expandable-copy .st-expandable-text br {
    display: none;
  }
}

.st-footer {
  margin: 65px auto 35px;
}

@media only screen and (max-width: 560px) {
  .st-footer {
    margin: 35px auto;
  }
}

.st-footer .st-footer-social {
  margin-bottom: 26px;
}

.st-footer .st-footer-social a {
  display: inline-block;
  vertical-align: middle;
  margin: 0 8px;
}

.st-footer .st-footer-social a:hover img {
  opacity: 0.7;
}

.st-footer .st-footer-social a img {
  -moz-transition: all 0.25s ease-out;
  -webkit-transition: all 0.25s ease-out;
  -i-transition: all 0.25s ease-out;
}

.st-footer .footer-back-top {
  display: table;
  margin: auto;
  cursor: pointer;
}

.st-footer .footer-back-top:hover img, .st-footer .footer-back-top:hover p {
  opacity: 0.7;
}

.st-footer .footer-back-top img, .st-footer .footer-back-top p {
  -moz-transition: all 0.25s ease-out;
  -webkit-transition: all 0.25s ease-out;
  -i-transition: all 0.25s ease-out;
}

.st-footer .footer-back-top img {
  margin-bottom: 10px;
}

.st-footer .footer-back-top p {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 13px;
  text-transform: uppercase;
  color: #414042;
}

.st-footer .footer-partners {
  border-top: 1px solid #cccccc;
  margin-top: 30px;
  padding-top: 30px;
}

.st-footer .footer-partners .footer-partners-item {
  display: inline-block;
  vertical-align: middle;
  margin: 0 6px;
}

@media only screen and (max-width: 768px) {
  .st-footer .footer-partners .footer-partners-item {
    width: 33.33%;
    margin: 0 0 20px -3px;
  }
}

@media only screen and (max-width: 560px) {
  .st-footer .footer-partners .footer-partners-item {
    width: 50%;
  }
}

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

@media only screen and (max-width: 760px) {
  .st-holder {
    margin-bottom: 63px;
  }
}

.st-common-holder {
  position: relative;
  width: 100%;
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  padding: 40px 0 16px;
  color: white;
}

@media only screen and (max-width: 560px) {
  .st-common-holder {
    padding: 30px 0 16px;
  }
}

.st-common-holder .st-common-header {
  margin-bottom: 220px;
}

@media only screen and (max-width: 768px) {
  .st-common-holder .st-common-header {
    margin-bottom: 140px !important;
  }
}

@media only screen and (max-width: 560px) {
  .st-common-holder .st-common-header {
    margin-bottom: 60px !important;
  }
}

.st-common-holder .st-common-header .st-common-subtitle {
  font-family: "arcabold";
  font-size: 18px;
  margin-bottom: 40px;
}

@media only screen and (max-width: 1500px) and (max-height: 900px) {
  .st-common-holder .st-common-header .st-common-subtitle {
    font-size: 16px;
    margin-bottom: 30px;
  }
}

@media only screen and (max-height: 800px) {
  .st-common-holder .st-common-header .st-common-subtitle {
    font-size: 16px;
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 560px) {
  .st-common-holder .st-common-header .st-common-subtitle {
    font-size: 16px;
    margin-bottom: 10px;
  }
}

.st-common-holder .st-common-header .st-common-title {
  font-family: "arcaheavy";
  font-size: 40px;
}

@media only screen and (max-width: 1500px) and (max-height: 900px) {
  .st-common-holder .st-common-header .st-common-title {
    font-size: 36px;
  }
}

@media only screen and (max-height: 800px) {
  .st-common-holder .st-common-header .st-common-title {
    font-size: 36px;
  }
}

@media only screen and (max-width: 768px) {
  .st-common-holder .st-common-header .st-common-title {
    font-size: 34px;
  }
}

@media only screen and (max-width: 560px) {
  .st-common-holder .st-common-header .st-common-title {
    font-size: 24px;
  }
}

.st-common-holder .st-common-content {
  position: relative;
  z-index: 2;
}

.st-common-holder .st-common-content .st-common-items {
  margin-bottom: 200px;
}

@media only screen and (max-width: 1500px) and (max-height: 900px) {
  .st-common-holder .st-common-content .st-common-items {
    margin-bottom: 100px;
  }
}

@media only screen and (max-height: 800px) {
  .st-common-holder .st-common-content .st-common-items {
    margin-bottom: 100px;
  }
}

@media only screen and (max-width: 768px) {
  .st-common-holder .st-common-content .st-common-items {
    margin-bottom: 140px;
  }
}

@media only screen and (max-width: 560px) {
  .st-common-holder .st-common-content .st-common-items {
    margin-bottom: 60px;
  }
}

.st-common-holder .st-common-content .st-common-items.st-three-items .st-common-item {
  width: 33.33%;
}

@media only screen and (max-width: 560px) {
  .st-common-holder .st-common-content .st-common-items.st-three-items .st-common-item:last-of-type {
    width: 100% !important;
    margin-top: 30px;
  }
}

.st-common-holder .st-common-content .st-common-items .st-common-item {
  display: inline-block;
  width: 50%;
  vertical-align: top;
  margin-left: -3px;
}

@media only screen and (max-width: 560px) {
  .st-common-holder .st-common-content .st-common-items .st-common-item {
    width: 50% !important;
  }
}

.st-common-holder .st-common-content .st-common-items .st-common-item .st-common-image {
  height: 80px;
  line-height: 60px;
}




.st-common-holder .st-common-content .st-common-items .st-common-item .st-common-do {
  font-family: "arcabold";
  font-size: 21px;
}

@media only screen and (max-width: 768px) {
  .st-common-holder .st-common-content .st-common-items .st-common-item .st-common-do {
    font-size: 20px;
  }
}

@media only screen and (max-width: 560px) {
  .st-common-holder .st-common-content .st-common-items .st-common-item .st-common-do {
    font-size: 16px;
  }
}

.st-common-holder .st-common-content .st-common-expand {
  min-height: 74px;
}

.st-common-holder .st-common-content .st-common-expand.active .st-common-expandt {
  visibility: hidden !important;
  opacity: 0 !important;
  -moz-transition: visibility 0.25s ease-out;
  -webkit-transition: visibility 0.25s ease-out;
  -i-transition: visibility 0.25s ease-out;
}

.st-common-holder .st-common-content .st-common-expand.active .st-common-arrow {
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
}

.st-common-holder .st-common-content .st-common-expand.active .st-common-arrow span {
  background-color: #cccccc !important;
  line-height: 52px !important;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -moz-transition: all 1s ease;
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

.st-common-holder .st-common-content .st-common-expand.active .st-common-arrow.fixed {
  position: fixed;
  top: 0;
  margin-left: 24px;
  opacity: 0.6 !important;
}

@media only screen and (max-width: 560px) {
  .st-common-holder .st-common-content .st-common-expand.active .st-common-arrow.fixed {
    margin-left: 20px;
  }
}

.st-common-holder .st-common-content .st-common-expand .st-expand-trigger {
  display: table;
  margin: auto;
  cursor: pointer;
  color: #30b1f9;
}

.st-common-holder .st-common-content .st-common-expand .st-expand-trigger:hover .st-common-expandt, .st-common-holder .st-common-content .st-common-expand .st-expand-trigger:hover .st-common-arrow {
  opacity: 0.8 !important;
  -moz-transition: all 0.25s ease-out;
  -webkit-transition: all 0.25s ease-out;
  -i-transition: all 0.25s ease-out;
}

.st-common-holder .st-common-content .st-common-expand .st-expand-trigger .st-common-expandt {
  font-family: "arcabold";
  font-size: 16px;
  margin-bottom: 16px;
}

@media only screen and (max-width: 560px) {
  .st-common-holder .st-common-content .st-common-expand .st-expand-trigger .st-common-expandt {
    font-size: 13px;
    margin-bottom: 10px;
  }
}

.st-common-holder .st-common-content .st-common-expand .st-expand-trigger .st-common-arrow {
  display: block;
  max-width: 38px;
  margin: auto;
  -webkit-animation-duration: 1.8s;
  animation-duration: 1.8s;
}

@media only screen and (max-width: 560px) {
  .st-common-holder .st-common-content .st-common-expand .st-expand-trigger .st-common-arrow {
    max-width: 31px;
  }
}

.st-common-holder .st-common-content .st-common-expand .st-expand-trigger .st-common-arrow span {
  display: block;
  width: 38px;
  height: 38px;
  margin: auto;
  background-color: #30b1f9;
  border-radius: 50px;
  line-height: 50px;
  -moz-transition: all 1s ease;
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

@media only screen and (max-width: 560px) {
  .st-common-holder .st-common-content .st-common-expand .st-expand-trigger .st-common-arrow span {
    width: 31px;
    height: 31px;
    line-height: 41px !important;
  }
}

.st-common-holder .st-common-content .st-common-expand .st-expand-trigger .st-common-arrow span img {
  width: 18px;
}

@media only screen and (max-width: 560px) {
  .st-common-holder .st-common-content .st-common-expand .st-expand-trigger .st-common-arrow span img {
    width: 15px;
  }
}

.st-common-holder .st-common-content .st-common-expand .st-expand-trigger .st-common-arrow.teste {
  bottom: -80px;
}

.st-expandable-area {
  overflow: hidden;
  display: none;
  width: 100%;
  background-color: #fff;
  text-align: left;
}

.st-expandable-area .st-container:first-of-type {
  margin-top: 70px;
}

@media only screen and (max-width: 560px) {
  .st-expandable-area .st-container:first-of-type {
    margin-top: 60px;
  }
}

.st-expandable-area .st-expandable-title {
  font-family: "arcaheavy";
  color: #58595b;
}

.st-expandable-area .st-expandable-text {
  font-family: "mulilight";
  line-height: 1.4;
}

@media only screen and (max-width: 768px) {
  .st-expandable-area .st-expandable-text {
    font-size: 19px !important;
  }
}

@media only screen and (max-width: 560px) {
  .st-expandable-area .st-expandable-text {
    font-size: 16px !important;
  }
}

.st-expandable-area .st-expandable-copy {
  max-width: 772px;
}

@media only screen and (max-width: 1500px) and (max-height: 900px) {
  .st-expandable-area .st-expandable-copy {
    max-width: 480px;
  }
}

@media only screen and (max-height: 800px) {
  .st-expandable-area .st-expandable-copy {
    max-width: 480px;
  }
}

.st-expandable-area .st-expandable-copy.st-expandable-center {
  margin: auto;
  text-align: center;
}

.st-expandable-area .st-expandable-copy .st-expandable-title {
  font-size: 25px;
  margin-bottom: 20px;
}

@media only screen and (max-width: 1500px) and (max-height: 900px) {
  .st-expandable-area .st-expandable-copy .st-expandable-title {
    font-size: 22px;
  }
}

@media only screen and (max-height: 800px) {
  .st-expandable-area .st-expandable-copy .st-expandable-title {
    font-size: 22px;
  }
}

@media only screen and (max-width: 768px) {
  .st-expandable-area .st-expandable-copy .st-expandable-title {
    font-size: 24px;
  }
}

@media only screen and (max-width: 560px) {
  .st-expandable-area .st-expandable-copy .st-expandable-title {
    font-size: 22px;
  }
}

.st-expandable-area .st-expandable-copy .st-expandable-text {
  font-size: 20px;
  margin-bottom: 30px;
}

@media only screen and (max-width: 1500px) and (max-height: 900px) {
  .st-expandable-area .st-expandable-copy .st-expandable-text {
    font-size: 16px;
  }
}

@media only screen and (max-height: 800px) {
  .st-expandable-area .st-expandable-copy .st-expandable-text {
    font-size: 16px;
  }
}

@media only screen and (max-width: 768px) {
  .st-expandable-area .st-expandable-copy .st-expandable-text {
    font-size: 19px !important;
  }
}

@media only screen and (max-width: 560px) {
  .st-expandable-area .st-expandable-copy .st-expandable-text {
    font-size: 16px !important;
  }
}

.st-expandable-area .st-expandable-copy .st-expandable-text:last-of-type {
  margin-bottom: initial;
}

.st-expandable-area .st-expandable-copy .st-expandable-big {
  font-family: "arcaheavy";
  font-size: 27px;
  line-height: 1.5;
  margin-top: 100px;
  color: #58595b;
}

@media only screen and (max-width: 1500px) and (max-height: 900px) {
  .st-expandable-area .st-expandable-copy .st-expandable-big {
    margin-top: 44px;
  }
}

@media only screen and (max-height: 800px) {
  .st-expandable-area .st-expandable-copy .st-expandable-big {
    margin-top: 44px;
  }
}

@media only screen and (max-width: 768px) {
  .st-expandable-area .st-expandable-copy .st-expandable-big {
    font-size: 25px;
    margin-top: 80px;
  }
}

@media only screen and (max-width: 560px) {
  .st-expandable-area .st-expandable-copy .st-expandable-big {
    max-width: 230px;
    font-size: 22px;
    margin: 50px auto auto;
  }
}

.st-expandable-area .st-expandable-image {
  margin-bottom: 30px;
  text-align: right;
}

@media only screen and (max-height: 800px) {
  .st-expandable-area .st-expandable-image {
    margin-top: -230px;
    margin-right: -200px;
    margin-bottom: 0px;
  }
}

@media only screen and (max-width: 1500px) and (max-height: 900px) {
  .st-expandable-area .st-expandable-image {
    margin-top: -230px;
    margin-right: -200px;
    margin-bottom: 0px;
  }
}

@media only screen and (max-width: 1450px) and (max-height: 900px) {
  .st-expandable-area .st-expandable-image {
    margin-right: -150px;
  }
}

@media only screen and (max-width: 1350px) and (max-height: 900px) {
  .st-expandable-area .st-expandable-image {
    margin-top: -170px;
    margin-right: -80px;
  }
}

@media only screen and (max-width: 1200px) and (max-height: 900px) {
  .st-expandable-area .st-expandable-image {
    margin-top: -120px;
    margin-right: -50px;
  }
}

@media only screen and (max-width: 1000px) {
  .st-expandable-area .st-expandable-image {
    margin: initial;
    margin-bottom: 30px;
  }
}

.st-expandable-area .st-expandable-image img {
  max-width: 100%;
}

@media only screen and (max-width: 1200px) and (max-height: 900px) {
  .st-expandable-area .st-expandable-image img {
    max-width: 80%;
  }
}

@media only screen and (max-width: 1000px) {
  .st-expandable-area .st-expandable-image img {
    max-width: 100%;
  }
}

.st-expandable-area .st-expandable-slider-holder {
  position: relative;
  z-index: 1;
}

.st-expandable-area .st-expandable-slider-holder .st-expandable-slider, .st-expandable-area .st-expandable-slider-holder .st-expandable-slider2 {
  width: 90%;
  max-width: 1080px;
  margin: auto;
}

@media only screen and (max-width: 1300px) {
  .st-expandable-area .st-expandable-slider-holder .st-expandable-slider, .st-expandable-area .st-expandable-slider-holder .st-expandable-slider2 {
    width: 100%;
    max-width: initial;
  }
}

.st-expandable-area .st-expandable-slider-holder .st-expandable-slider .st-expandable-slide, .st-expandable-area .st-expandable-slider-holder .st-expandable-slider2 .st-expandable-slide {
  padding-top: 40px;
  margin-bottom: -4px;
  text-align: center;
}

@media only screen and (min-width: 769px) {
  .st-expandable-area .st-expandable-slider-holder .st-expandable-slider .st-expandable-slide, .st-expandable-area .st-expandable-slider-holder .st-expandable-slider2 .st-expandable-slide {
    display: inline-block;
    margin-left: -3px;
    margin-bottom: -3px;
    padding-top: 70px;
  }
}

@media only screen and (max-width: 1500px) and (max-height: 900px) {
  .st-expandable-area .st-expandable-slider-holder .st-expandable-slider .st-expandable-slide, .st-expandable-area .st-expandable-slider-holder .st-expandable-slider2 .st-expandable-slide {
    padding-top: 30px;
  }
}

@media only screen and (max-height: 800px) {
  .st-expandable-area .st-expandable-slider-holder .st-expandable-slider .st-expandable-slide, .st-expandable-area .st-expandable-slider-holder .st-expandable-slider2 .st-expandable-slide {
    padding-top: 30px;
  }
}

.st-expandable-area .st-expandable-slider-holder .st-expandable-slider .st-expandable-slide img, .st-expandable-area .st-expandable-slider-holder .st-expandable-slider2 .st-expandable-slide img {
  display: block;
  max-width: 90%;
  margin: auto;
}

@media only screen and (max-width: 1500px) and (max-height: 900px) {
  .st-expandable-area .st-expandable-slider-holder .st-expandable-slider .st-expandable-slide img, .st-expandable-area .st-expandable-slider-holder .st-expandable-slider2 .st-expandable-slide img {
    max-height: 365px;
  }
}

@media only screen and (max-height: 800px) {
  .st-expandable-area .st-expandable-slider-holder .st-expandable-slider .st-expandable-slide img, .st-expandable-area .st-expandable-slider-holder .st-expandable-slider2 .st-expandable-slide img {
    max-height: 365px;
  }
}

@media only screen and (max-width: 1000px) {
  .st-expandable-area .st-expandable-slider-holder .st-expandable-slider .st-expandable-slide img, .st-expandable-area .st-expandable-slider-holder .st-expandable-slider2 .st-expandable-slide img {
    max-width: 200px;
    max-height: initial;
  }
}

@media only screen and (max-width: 768px) {
  .st-expandable-area .st-expandable-slider-holder .st-expandable-slider .st-expandable-slide img, .st-expandable-area .st-expandable-slider-holder .st-expandable-slider2 .st-expandable-slide img {
    max-width: 60%;
  }
}

.st-expandable-area .st-expandable-slider-holder .st-expandable-slider .slick-dots, .st-expandable-area .st-expandable-slider-holder .st-expandable-slider2 .slick-dots {
  bottom: 6px;
}

.st-expandable-area .st-expandable-slider-holder .st-expandable-slider .slick-dots li .slick-active button:before, .st-expandable-area .st-expandable-slider-holder .st-expandable-slider2 .slick-dots li .slick-active button:before {
  color: #004dff;
  opacity: 1;
}

.st-expandable-area .st-expandable-slider-holder .st-expandable-slider .slick-dots li button:before, .st-expandable-area .st-expandable-slider-holder .st-expandable-slider2 .slick-dots li button:before {
  font-size: 46px;
  color: #004dff;
}

.st-expandable-area .st-expandable-items {
  margin: 50px auto 60px;
}

@media only screen and (max-width: 560px) {
  .st-expandable-area .st-expandable-items {
    margin: 50px auto 40px;
  }
}

.st-expandable-area .st-expandable-items .st-expandable-item-wide {
  display: block;
  width: 100%;
}

.st-expandable-area .st-expandable-items .st-expandable-item-wide .st-expandable-title {
  max-width: 280px;
  font-size: 25px;
  margin-bottom: 20px;
}

@media only screen and (max-width: 1500px) and (max-height: 900px) {
  .st-expandable-area .st-expandable-items .st-expandable-item-wide .st-expandable-title {
    max-width: 280px;
    font-size: 22px;
  }
}

@media only screen and (max-height: 800px) {
  .st-expandable-area .st-expandable-items .st-expandable-item-wide .st-expandable-title {
    max-width: 280px;
    font-size: 22px;
  }
}

.st-expandable-area .st-expandable-items .st-expandable-item {
  display: inline-block;
  width: 50%;
  vertical-align: top;
  margin-left: -3px;
}

@media only screen and (max-width: 768px) {
  .st-expandable-area .st-expandable-items .st-expandable-item {
    display: block;
    width: 100%;
  }
}

.st-expandable-area .st-expandable-items .st-expandable-item:nth-child(2) .st-expandable-text {
  padding-right: 50px;
}

@media only screen and (max-width: 768px) {
  .st-expandable-area .st-expandable-items .st-expandable-item:nth-child(2) .st-expandable-text {
    padding-right: initial;
    margin-bottom: 20px;
  }
}

.st-expandable-area .st-expandable-items .st-expandable-item .st-expandable-text {
  font-size: 21px;
}

@media only screen and (max-width: 1500px) and (max-height: 900px) {
  .st-expandable-area .st-expandable-items .st-expandable-item .st-expandable-text {
    font-size: 16px;
  }
}

@media only screen and (max-height: 800px) {
  .st-expandable-area .st-expandable-items .st-expandable-item .st-expandable-text {
    font-size: 16px;
  }
}

@media only screen and (max-width: 1220px) {
  .st-expandable-area .st-expandable-items .st-expandable-item .st-expandable-text br {
    display: none;
  }
}

.st-app-download {
  display: none;
}

@media only screen and (max-width: 760px) {
  .st-app-download {
    display: block;
    position: fixed;
    width: 100%;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.7);
    text-align: center;
    padding: 8px 0;
    z-index: 9999;
  }
}

.st-app-download a {
  display: block;
}

.st-app-download a:hover img {
  opacity: 0.7;
}

.st-app-download a img {
  display: block;
  height: 40px;
  margin: auto;
  -moz-transition: all 0.25s ease-out;
  -webkit-transition: all 0.25s ease-out;
  -i-transition: all 0.25s ease-out;
}

a *:hover {
  text-decoration: none !important;
}



/*# sourceMappingURL=style.css.map */