/* Animate.css */
/* Animate.css */
@charset "UTF-8";
/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.2
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2018 Daniel Eden
 */
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
@-webkit-keyframes bounce {
  from,
  20%,
  53%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
@keyframes bounce {
  from,
  20%,
  53%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}
@-webkit-keyframes flash {
  from,
  50%,
  to {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}
@keyframes flash {
  from,
  50%,
  to {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}
.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}
@-webkit-keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}
@-webkit-keyframes shake {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
@keyframes shake {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}
@-webkit-keyframes headShake {
  0% {
    -webkit-transform: translatex(0);
    transform: translatex(0);
  }
  6.5% {
    -webkit-transform: translatex(-6px) rotatey(-9deg);
    transform: translatex(-6px) rotatey(-9deg);
  }
  18.5% {
    -webkit-transform: translatex(5px) rotatey(7deg);
    transform: translatex(5px) rotatey(7deg);
  }
  31.5% {
    -webkit-transform: translatex(-3px) rotatey(-5deg);
    transform: translatex(-3px) rotatey(-5deg);
  }
  43.5% {
    -webkit-transform: translatex(2px) rotatey(3deg);
    transform: translatex(2px) rotatey(3deg);
  }
  50% {
    -webkit-transform: translatex(0);
    transform: translatex(0);
  }
}
@keyframes headShake {
  0% {
    -webkit-transform: translatex(0);
    transform: translatex(0);
  }
  6.5% {
    -webkit-transform: translatex(-6px) rotatey(-9deg);
    transform: translatex(-6px) rotatey(-9deg);
  }
  18.5% {
    -webkit-transform: translatex(5px) rotatey(7deg);
    transform: translatex(5px) rotatey(7deg);
  }
  31.5% {
    -webkit-transform: translatex(-3px) rotatey(-5deg);
    transform: translatex(-3px) rotatey(-5deg);
  }
  43.5% {
    -webkit-transform: translatex(2px) rotatey(3deg);
    transform: translatex(2px) rotatey(3deg);
  }
  50% {
    -webkit-transform: translatex(0);
    transform: translatex(0);
  }
}
.headShake {
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: headShake;
  animation-name: headShake;
}
@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}
@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes wobble {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}
@-webkit-keyframes jello {
  from,
  11.1%,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  22.2% {
    -webkit-transform: skewx(-12.5deg) skewy(-12.5deg);
    transform: skewx(-12.5deg) skewy(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewx(6.25deg) skewy(6.25deg);
    transform: skewx(6.25deg) skewy(6.25deg);
  }
  44.4% {
    -webkit-transform: skewx(-3.125deg) skewy(-3.125deg);
    transform: skewx(-3.125deg) skewy(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewx(1.5625deg) skewy(1.5625deg);
    transform: skewx(1.5625deg) skewy(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewx(-0.78125deg) skewy(-0.78125deg);
    transform: skewx(-0.78125deg) skewy(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewx(0.390625deg) skewy(0.390625deg);
    transform: skewx(0.390625deg) skewy(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewx(-0.1953125deg) skewy(-0.1953125deg);
    transform: skewx(-0.1953125deg) skewy(-0.1953125deg);
  }
}
@keyframes jello {
  from,
  11.1%,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  22.2% {
    -webkit-transform: skewx(-12.5deg) skewy(-12.5deg);
    transform: skewx(-12.5deg) skewy(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewx(6.25deg) skewy(6.25deg);
    transform: skewx(6.25deg) skewy(6.25deg);
  }
  44.4% {
    -webkit-transform: skewx(-3.125deg) skewy(-3.125deg);
    transform: skewx(-3.125deg) skewy(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewx(1.5625deg) skewy(1.5625deg);
    transform: skewx(1.5625deg) skewy(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewx(-0.78125deg) skewy(-0.78125deg);
    transform: skewx(-0.78125deg) skewy(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewx(0.390625deg) skewy(0.390625deg);
    transform: skewx(0.390625deg) skewy(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewx(-0.1953125deg) skewy(-0.1953125deg);
    transform: skewx(-0.1953125deg) skewy(-0.1953125deg);
  }
}
.jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  transform-origin: center;
}
@-webkit-keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.bounceIn {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}
@-webkit-keyframes bounceInDown {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInDown {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}
@-webkit-keyframes bounceInLeft {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInLeft {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}
@-webkit-keyframes bounceInRight {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInRight {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}
@-webkit-keyframes bounceInUp {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInUp {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}
@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%,
  55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%,
  55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.bounceOut {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}
@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}
@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}
@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}
@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}
@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}
@-webkit-keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}
@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}
@-webkit-keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}
@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}
@-webkit-keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}
@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}
@-webkit-keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}
@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}
@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}
@-webkit-keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}
@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}
@-webkit-keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}
@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}
@-webkit-keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}
@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}
@-webkit-keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}
@-webkit-keyframes flip {
  from {
    -webkit-transform: perspective(400px) 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-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}
@-webkit-keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
.flipOutY {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}
@-webkit-keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewx(-30deg);
    transform: translate3d(100%, 0, 0) skewx(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewx(20deg);
    transform: skewx(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewx(-5deg);
    transform: skewx(-5deg);
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}
@-webkit-keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewx(30deg);
    transform: translate3d(100%, 0, 0) skewx(30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewx(30deg);
    transform: translate3d(100%, 0, 0) skewx(30deg);
    opacity: 0;
  }
}
.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}
@-webkit-keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}
@-webkit-keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}
@-webkit-keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}
@-webkit-keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}
@-webkit-keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}
@-webkit-keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
@keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}
@-webkit-keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}
@-webkit-keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}
@-webkit-keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}
@-webkit-keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}
@-webkit-keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%,
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%,
  80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
@keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%,
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%,
  80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-name: hinge;
  animation-name: hinge;
}
@-webkit-keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }
  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }
  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.jackInTheBox {
  -webkit-animation-name: jackInTheBox;
  animation-name: jackInTheBox;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
@keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}
@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}
@-webkit-keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}
@-webkit-keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}
@-webkit-keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}
@-webkit-keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}
@-webkit-keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
@keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}
@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
}
@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}
.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
}
@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}
.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
}
@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
}
@-webkit-keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}
@-webkit-keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}
@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}
@-webkit-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}
@-webkit-keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}
@-webkit-keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}
@-webkit-keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}
@-webkit-keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}
/* Theme based Variables */
/* Usefull Mixins */
@font-face {
  font-family: 'Avenir-Black';
  src: url('../fonts/Avenir-Black/Avenir-Black.eot');
  src: url('../fonts/Avenir-Black/Avenir-Black.woff2') format('woff2'), url('../fonts/Avenir-Black/Avenir-Black.woff') format('woff'), url('../fonts/Avenir-Black/Avenir-Black.ttf') format('truetype'), url('../fonts/Avenir-Black/Avenir-Black.eot?#iefix') format('embedded-opentype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Avenir-Heavy';
  src: url('../fonts/Avenir-Heavy/Avenir-Heavy.eot');
  src: url('../fonts/Avenir-Heavy/Avenir-Heavy.woff2') format('woff2'), url('../fonts/Avenir-Heavy/Avenir-Heavy.woff') format('woff'), url('../fonts/Avenir-Heavy/Avenir-Heavy.ttf') format('truetype'), url('../fonts/Avenir-Heavy/Avenir-Heavy.eot?#iefix') format('embedded-opentype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Avenir-Light';
  src: url('../fonts/Avenir-Light/Avenir-Light.eot');
  src: url('../fonts/Avenir-Light/Avenir-Light.woff2') format('woff2'), url('../fonts/Avenir-Light/Avenir-Light.woff') format('woff'), url('../fonts/Avenir-Light/Avenir-Light.ttf') format('truetype'), url('../fonts/Avenir-Light/Avenir-Light.eot?#iefix') format('embedded-opentype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Avenir LT 45 Book';
  src: url('../fonts/AvenirLT-Book/Avenir LT 45 Book.eot');
  src: url('../fonts/AvenirLT-Book/Avenir LT 45 Book.woff2') format('woff2'), url('../fonts/AvenirLT-Book/Avenir LT 45 Book.eot?#iefix') format('embedded-opentype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'AvenirLT-Book';
  src: url('../fonts/AvenirLT-Book/AvenirLT-Book.woff') format('woff'), url('../fonts/AvenirLT-Book/AvenirLT-Book.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Avenir LT 35 Light';
  src: url('../fonts/AvenirLT-Light/Avenir LT 35 Light.eot');
  src: url('../fonts/AvenirLT-Light/Avenir LT 35 Light.woff2') format('woff2'), url('../fonts/AvenirLT-Light/Avenir LT 35 Light.eot?#iefix') format('embedded-opentype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'AvenirLT-Light';
  src: url('../fonts/AvenirLT-Light/AvenirLT-Light.woff') format('woff'), url('../fonts/AvenirLT-Light/AvenirLT-Light.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Avenir LT 35 Light Oblique';
  src: url('../fonts/AvenirLT-LightOblique/Avenir LT 35 Light Oblique.eot');
  src: url('../fonts/AvenirLT-LightOblique/Avenir LT 35 Light Oblique.woff2') format('woff2'), url('../fonts/AvenirLT-LightOblique/Avenir LT 35 Light Oblique.eot?#iefix') format('embedded-opentype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'AvenirLT-LightOblique';
  src: url('../fonts/AvenirLT-LightOblique/AvenirLT-LightOblique.woff') format('woff'), url('../fonts/AvenirLT-LightOblique/AvenirLT-LightOblique.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Montserrat-Light';
  src: url('../fonts/Montserrat-Light/Montserrat-Light.eot');
  src: url('../fonts/Montserrat-Light/Montserrat-Light.woff2') format('woff2'), url('../fonts/Montserrat-Light/Montserrat-Light.woff') format('woff'), url('../fonts/Montserrat-Light/Montserrat-Light.ttf') format('truetype'), url('../fonts/Montserrat-Light/Montserrat-Light.eot?#iefix') format('embedded-opentype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'PlayfairDisplay-Bold';
  src: url('../fonts/PlayfairDisplay-Bold/PlayfairDisplay-Bold.eot');
  src: url('../fonts/PlayfairDisplay-Bold/PlayfairDisplay-Bold.woff') format('woff'), url('../fonts/PlayfairDisplay-Bold/PlayfairDisplay-Bold.woff2') format('woff2'), url('../fonts/PlayfairDisplay-Bold/PlayfairDisplay-Bold.ttf') format('truetype'), url('../fonts/PlayfairDisplay-Bold/PlayfairDisplay-Bold.eot?#iefix') format('embedded-opentype');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Roboto-Light";
  src: url("../fonts/roboto/Roboto-Light.eot?") format("eot"), url("../fonts/roboto/Roboto-Light.woff") format("woff"), url("../fonts/roboto/Roboto-Light.ttf") format("truetype"), url("../fonts/roboto/Roboto-Light.svg#Roboto-Light") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Roboto-Bold";
  src: url("../fonts/roboto/Roboto-Bold.eot?") format("eot"), url("../fonts/roboto/Roboto-Bold.woff") format("woff"), url("../fonts/roboto/Roboto-Bold.ttf") format("truetype"), url("../fonts/roboto/Roboto-Bold.svg#Roboto-Bold") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Roboto-Regular";
  src: url("../fonts/roboto/Roboto-Regular.eot?") format("eot"), url("../fonts/roboto/Roboto-Regular.woff") format("woff"), url("../fonts/roboto/Roboto-Regular.ttf") format("truetype"), url("../fonts/roboto/Roboto-Regular.svg#Roboto-Regular") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Roboto-Medium";
  src: url("../fonts/roboto/Roboto-Medium.eot?") format("eot"), url("../fonts/roboto/Roboto-Medium.woff") format("woff"), url("../fonts/roboto/Roboto-Medium.ttf") format("truetype"), url("../fonts/roboto/Roboto-Medium.svg#Roboto-Meduim") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* Fonts */
body {
  font-family: "Avenir-Light";
}
.pad-top-xs {
  padding-top: 25px;
}
@media only screen and (max-width: 767px) {
  .pad-top-xs {
    padding-top: 10px;
  }
}
.pad-top-sm {
  padding-top: 50px;
}
@media only screen and (max-width: 767px) {
  .pad-top-sm {
    padding-top: 25px;
  }
}
.pad-top-md {
  padding-top: 75px;
}
@media only screen and (max-width: 767px) {
  .pad-top-md {
    padding-top: 30px;
  }
}
.pad-top-lg {
  padding-top: 100px;
}
@media only screen and (max-width: 767px) {
  .pad-top-lg {
    padding-top: 50px;
  }
}
.pad-bottom-xs {
  padding-bottom: 25px;
}
@media only screen and (max-width: 767px) {
  .pad-bottom-xs {
    padding-bottom: 10px;
  }
}
.pad-bottom-sm {
  padding-bottom: 50px;
}
@media only screen and (max-width: 767px) {
  .pad-bottom-sm {
    padding-bottom: 25px;
  }
}
.pad-bottom-md {
  padding-bottom: 75px;
}
@media only screen and (max-width: 767px) {
  .pad-bottom-md {
    padding-bottom: 30px;
  }
}
.pad-bottom-lg {
  padding-bottom: 100px;
}
@media only screen and (max-width: 767px) {
  .pad-bottom-lg {
    padding-bottom: 50px;
  }
}
.full-width {
  width: 100%;
}
/*.ty-fullwidth{ }
.ty-fullwidth p{     font-size: 2rem;
    line-height: 2.5rem;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -khtml-font-smoothing: antialiased;
    -apple-font-smoothing: antialiased;
    font-smooth: always;
    text-rendering: optimizelegibility;}*/
@keyframes rotateFall {
  0% {
    transform: rotatez(0deg);
  }
  20% {
    transform: rotatez(10deg);
    animation-timing-function: ease-out;
  }
  40% {
    transform: rotatez(17deg);
  }
  60% {
    transform: rotatez(16deg);
  }
  100% {
    transform: translatey(100%) rotatez(17deg);
  }
}
/* slide in from the bottom */
@keyframes slideOutLeft {
  to {
    transform: translatex(-100%);
  }
}
/* rotate out newspaper */
@keyframes rotateOutNewspaper {
  to {
    transform: translatez(-3000px) rotatez(360deg);
    opacity: 0;
  }
}
/* entering animations --------------------------------------- */
/* scale up */
@keyframes scaleUp {
  from {
    opacity: 0.3;
    -webkit-transform: scale(0.8);
  }
}
/* slide in from the right */
@keyframes slideInRight {
  from {
    transform: translatex(100%);
  }
  to {
    transform: translatex(0);
  }
}
/* slide in from the bottom */
@keyframes slideInUp {
  from {
    transform: translatey(100%);
  }
  to {
    transform: translatey(0);
  }
}
/*.ng-enter           { animation: scaleUp 0.5s both ease-in; z-index: 8888; }
    .ng-leave           { animation: rotateFall 0.5s both ease-in; z-index: 9999; }*/
.spacer5 {
  height: 5px;
  display: block;
  width: 100%;
}
.spacer10 {
  height: 10px;
  display: block;
  width: 100%;
}
.spacer20 {
  height: 20px;
  display: block;
  width: 100%;
}
.spacer30 {
  height: 30px;
  display: block;
  width: 100%;
}
.spacer40 {
  height: 40px;
  display: block;
  width: 100%;
}
.spacer50 {
  height: 50px;
  display: block;
  width: 100%;
}
.spacer100 {
  height: 100px;
  display: block;
  width: 100%;
}
.flex-row {
  display: webkit-flex;
  display: flex;
}
.flex-col {
  display: webkit-flex;
  display: flex;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
  -ms-flex-align: center;
}
.btn-eft {
  border: 2px solid #fff;
  color: #fff;
  overflow: hidden;
  font-family: inherit;
  font-size: inherit;
  background: none;
  cursor: pointer;
  padding: 16px 40px;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: 700;
  outline: none;
  position: relative;
  min-width: 250px;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  font-family: "PlayfairDisplay-Bold";
  border-radius: 0px;
}
.btn-eft:after {
  content: '';
  position: absolute;
  z-index: -1;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.btn-eft:focus {
  color: #FFF;
}
.button-effect1:after {
  /*width: 100%;
	    height: 0;
	    opacity: 0;
	    top: 50%;
	    left: 50%;
	    background: #fff;
	    .transform(translateX(-50%) translateY(-50%) rotate(45deg));
	    transform: translateX(-50%) translateY(-50%) rotate(45deg);*/

  width: 0%;
  height: 100%;
  top: 0;
  left: 0;
  background: #fff;
}
.button-effect1:hover:after {
  /*height: 280%;
    		opacity: 1;*/

  width: 100%;
}
.button-effect-down:after {
  width: 100%;
  height: 0;
  top: 0;
  left: 0;
  background: #fff;
}
.button-effect-down:hover:after {
  height: 100%;
}
.burger-icon {
  width: 30px;
  height: 30px;
  position: relative;
  margin: 10px auto;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
}
.burger-icon span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #FFF;
  opacity: 1;
  right: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
.black-overly .burger-icon span {
  background: #000;
}
.burger-icon:hover span:nth-child(1) {
  width: 50%;
  transition: 0.25s ease-in-out;
}
.burger-icon:hover span:nth-child(2),
.burger-icon:hover span:nth-child(3) {
  width: 70%;
  transition: 0.25s ease-in-out;
}
.burger-icon:hover span:nth-child(4) {
  width: 100%;
  transition: 0.25s ease-in-out;
}
.burger-icon.open:hover span {
  width: 100%;
  transition: 0.25s ease-in-out;
}
.burger-icon span:nth-child(1) {
  top: 0px;
}
.burger-icon span:nth-child(2),
.burger-icon span:nth-child(3) {
  top: 10px;
}
.burger-icon span:nth-child(4) {
  top: 20px;
}
.burger-icon.open span:nth-child(1) {
  top: 18px;
  width: 0%;
  left: 50%;
  display: none;
}
.burger-icon.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.burger-icon.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.burger-icon.open span:nth-child(4) {
  top: 18px;
  width: 0%;
  /*left: 50%;*/

  display: none;
}
/*
* Loading circle
*/
/* LandScape Mode*/
.landscapemode {
  display: none;
  z-index: 105;
}
@media screen and (min-width: 450px) and (max-width: 767px) and (orientation: landscape) {
  .landscapemode {
    display: block;
    height: 100%;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: #ff5b4a;
  }
  .landscapemode .text-wrapper {
    position: absolute;
    top: 50%;
    width: 100%;
  }
  .landscapemode .text-wrapper p {
    color: #FFF;
    text-align: center;
  }
}
.load_circle_wrapper {
  position: absolute;
  width: 100%;
  text-align: center;
  top: 43%;
  z-index: 1002;
}
/**********************
6 - Loading animations
***********************/
.loading_spinner {
  width: 100%;
  text-align: center;
  /*margin-top: 60px;*/
}
@media only screen and (max-width: 767px) {
  .loading_spinner img {
    width: 50px;
  }
}
.loading {
  box-sizing: border-box;
  position: relative;
  display: inline-block;
  padding: 0.5em;
  vertical-align: middle;
  text-align: center;
  background-color: transparent;
  border: 5px solid transparent;
  border-top-color: #ff5b4a;
  border-bottom-color: #ff5b4a;
  border-radius: 50%;
}
.outer {
  -webkit-animation: spin 1s infinite;
  -moz-animation: spin 1s infinite;
  -ms-animation: spin 1s infinite;
  -o-animation: spin 1s infinite;
  animation: spin 1s infinite;
}
.inner {
  -webkit-animation: spin 1s infinite;
  -moz-animation: spin 1s infinite;
  -ms-animation: spin 1s infinite;
  -o-animation: spin 1s infinite;
  animation: spin 1s infinite;
}
@-webkit-keyframes spin {
  100% {
    -webkit-transform: rotatez(360deg);
  }
}
@-moz-keyframes spin {
  100% {
    -moz-transform: rotatez(360deg);
  }
}
@-o-keyframes spin {
  100% {
    -moz-transform: rotatez(360deg);
  }
}
@keyframes spin {
  100% {
    transform: rotatez(360deg);
  }
}
/*
*Menu Slide
*/
/* Start of menu slide */
.menu-slide {
  background: #ff5b4a;
  height: 100%;
  position: fixed;
  width: 100%;
  z-index: 102;
}
@media only screen and (max-width: 767px) {
  .menu-slide {
    height: 110vh;
  }
}
@media only screen and (max-width: 767px) {
  
}
.menu-mainmenu-container {
  display: table;
  width: 100%;
  height: 100vh;
}
@media only screen and (max-width: 767px) {
  .menu-mainmenu-container {
    padding-top: 60px;
  }
}
.menu-mainmenu-container .mainmenu-cont {
  width: 100%;
  -webkit-transform: translatey(5%);
  -moz-transform: translatey(5%);
  transform: translatey(5%);
  display: table-cell;
  vertical-align: middle;
}
@media only screen and (max-width: 767px) {
  .menu-mainmenu-container .mainmenu-cont .flex-row {
    display: block;
  }
}
.menu-mainmenu-container .mainmenu-cont .flex-row .flex-col {
  -webkit-align-items: flex-end;
  -moz-align-items: flex-end;
  -ms-align-items: flex-end;
  -o-align-items: flex-end;
  align-items: flex-end;
  -ms-flex-align: flex-end;
}
.menu-mainmenu-container .mainmenu-cont .flex-row .flex-col menu {
  padding-left: 0px;
}
@media only screen and (max-width: 767px) {
  .menu-wraps {
    padding-left: 15px;
  }
}
@media (min-width: 1400px) {
  .menu-wraps ul .ng-scope li {
    padding-bottom: 0;
  }
}
.menu-wraps ul li {
  padding: 10px 0px;
  display: block;
}
@media only screen and (max-width: 480px) {
  .menu-wraps ul li {
    padding: 8px 0px;
  }
}
@media only screen and (min-width: 768px) {
  .menu-wraps ul li {
    padding: 30px 0px;
  }
}
@media (min-width: 1200px) {
  .menu-wraps ul li {
    padding: 40px 0px;
  }
}
@media (min-width: 1400px) {
  .menu-wraps ul li {
    padding: 50px 0px;
  }
}
@media (min-width: 1850px) {
  .menu-wraps ul li {
    padding: 50px 0px;
  }
}
.menu-wraps ul li a {
  font-family: "Avenir-Black";
  font-size: 22px;
  color: #17171c;
  text-decoration: none;
}
@media only screen and (max-width: 767px) {
  .menu-wraps ul li a {
    font-size: 20px;
  }
}
@media (min-width: 1200px) {
  .menu-wraps ul li a {
    font-size: 30px;
    letter-spacing: 4px;
  }
}
@media (min-width: 1400px) {
  .menu-wraps ul li a {
    font-size: 35px;
  }
}
@media (min-width: 1850px) {
  .menu-wraps ul li a {
    font-size: 45px;
  }
}
.menu-wraps ul li a span {
  position: relative;
}
.menu-wraps ul li a span::before {
  display: inline-block;
  content: "";
  width: 2rem;
  margin: 0.2rem 1rem;
  transition: 1s all ease;
  margin-left: 0px;
  transform: translatey(-0.4rem);
  border-top: 4px solid #17171c;
}
@media smartphone {
  .menu-wraps ul li a span::before {
    transform: translatey(-0.2rem);
    border-top: 4px solid #17171c;
  }
}
@media tablet {
  .menu-wraps ul li a span::before {
    transform: translatey(-0.6rem);
    border-top: 6px solid #17171c;
  }
}
@media (min-width: 1400px) {
  .menu-wraps ul li a span::before {
    border-top: 6px solid #17171c;
    transform: translatey(-0.8rem);
    width: 2rem;
  }
}
@media only screen and (max-width: 767px) {
  .menu-wraps ul li a span::before {
    transform: translatey(-0.2rem);
    border-top: 4px solid #17171c;
  }
}
.menu-wraps ul li a:hover {
  color: #FFF;
}
.menu-wraps ul li a:hover span:before {
  border-top: 4px solid #FFF;
  width: 3rem;
}
@media (min-width: 1200px) {
  .menu-wraps ul li a:hover span:before {
    border-top: 6px solid #FFF;
    width: 4rem;
  }
}
@media only screen and (min-width: 768px) {
  .menu-wraps ul li:last-child {
    padding-bottom: 0px;
  }
}
.menu-wraps ul .active a {
  color: #FFF;
}
.menu-wraps ul .active a span:before {
  border-top: 4px solid #FFF;
  width: 3rem;
}
@media (min-width: 1200px) {
  .menu-wraps ul .active a span:before {
    border-top: 6px solid #FFF;
    width: 4rem;
  }
}
.menu-contact,
.contact_section {
  text-align: right;
  width: 100%;
  margin-bottom: 10px;
}
@media only screen and (max-width: 767px) {
  .menu-contact,
  .contact_section {
    text-align: left;
    padding-left: 15px;
  }
}
@media (min-width: 1850px) {
  .menu-contact,
  .contact_section {
    margin-bottom: 10px;
  }
}
.menu-contact p,
.contact_section p {
  color: #FFF;
}
.menu-contact p a,
.contact_section p a {
  color: #FFF;
}
.menu-contact .socialone ul,
.contact_section .socialone ul {
  float: right;
  position: relative;
  margin-top: -40px;
  /*margin-right: 10px;*/

}
@media only screen and (max-width: 767px) {
  .menu-contact .socialone ul,
  .contact_section .socialone ul {
    padding-left: 0px;
    float: left;
    margin-top: 0px;
    padding: 20px 0;
  }
}
@media (min-width: 1200px) {
  .menu-contact .socialone ul,
  .contact_section .socialone ul {
    margin-right: 0px;
  }
}
.menu-contact .socialone ul li,
.contact_section .socialone ul li {
  list-style: none;
  margin-bottom: 5px;
  display: inline-block;
  margin-left: 10px;
}
@media only screen and (max-width: 767px) {
  .menu-contact .socialone ul li,
  .contact_section .socialone ul li {
    display: inline-block;
    margin-right: 15px;
    margin-left: 0px;
  }
}
@media (min-width: 1200px) {
  .menu-contact .socialone ul li,
  .contact_section .socialone ul li {
    margin-bottom: 10px;
    display: block;
    margin-left: 0px;
  }
}
@media (min-width: 1850px) {
  .menu-contact .socialone ul li,
  .contact_section .socialone ul li {
    margin-bottom: 20px;
  }
}
.menu-contact .socialone ul li:hover .soc-icon svg .st0,
.contact_section .socialone ul li:hover .soc-icon svg .st0 {
  fill: #ffffff;
}
.menu-contact .socialone ul li .soc-icon,
.contact_section .socialone ul li .soc-icon {
  width: 20px;
}
.menu-contact .socialone ul li .soc-icon svg .st0,
.contact_section .socialone ul li .soc-icon svg .st0 {
  fill: #17171c;
}
.menu-contact .socialone:hover ul,
.contact_section .socialone:hover ul {
  position: relative;
}
p.p-address {
  font-family: "Avenir-Light" !important;
}
@media only screen and (min-width: 768px) {
  p.p-address {
    font-size: 12px !important;
    line-height: 1.45!important;
  }
}
@media (min-width: 1200px) {
  p.p-address {
    font-size: 14px!important;
  }
}
@media (min-width: 1400px) {
  p.p-address {
    font-size: 15px!important;
  }
}
.p-phoneno,
.p-email {
  font-family: "Avenir-Black" !important;
}
@media only screen and (max-width: 480px) {
  .p-phoneno,
  .p-email {
    margin-bottom: 4px;
  }
}
@media (min-width: 1200px) {
  .p-phoneno,
  .p-email {
    font-size: 20px!important;
  }
}
.p-phoneno a[href^="tel"],
.p-email a[href^="tel"] {
  color: inherit;
  text-decoration: none;
}
.p-phoneno a,
.p-email a {
  text-decoration: none!important;
}
@media (min-width: 1200px) {
  .p-email {
    font-size: 15px!important;
  }
}
.p-phoneno a[href^="tel"] {
  color: inherit;
  text-decoration: none;
}
.address-box .nav-tabs {
  border: none;
}
.address-box .nav-tabs li {
  background: transparent;
  color: #17171c;
  font-family: "Avenir-Black";
  border: none;
}
@media only screen and (max-width: 767px) {
  .address-box .nav-tabs li {
    float: left;
  }
}
.address-box .nav-tabs li a {
  color: #17171c;
  background: transparent;
  border: none;
  -webkit-transition: 0.4s all ease;
  -moz-transition: 0.4s all ease;
  -ms-transition: 0.4s all ease;
  -o-transition: 0.4s all ease;
}
.address-box .nav-tabs li a:hover {
  background-color: transparent;
  border: none;
  color: #FFF;
}
.address-box .nav-tabs li a:focus {
  background-color: transparent;
  border: none;
  color: #FFF;
}
@media only screen and (max-width: 767px) {
  .address-box .nav-tabs li a:first-child {
    padding-left: 0;
  }
}
@media only screen and (min-width: 768px) {
  
}
@media only screen and (min-width: 992px) {
  .address-box .nav-tabs li a {
    font-size: 18px;
  }
}
@media (min-width: 1400px) {
  .address-box .nav-tabs li a {
    font-size: 23px;
  }
}
.address-box .nav-tabs .active a {
  background-color: transparent;
  border: none;
  color: #FFF;
}
.address-box .nav-tabs  > li:active {
  color: #FFF;
}
.address-box .tab-content {
  height: 60px;
  overflow: hidden;
}
@media (min-width: 1200px) {
  .address-box .tab-content {
    height: 50px;
  }
}
@media (min-width: 1400px) {
  .address-box .tab-content {
    height: 60px;
  }
}
/* End of menu slide */
/*scrollbar*/
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  /*  background-color: #b46868;
the new scrollbar will have a flat appearance with the set background color */

  background: white;
}
::-webkit-scrollbar-thumb {
  background-color: #F44336;
}
/* this will style the thumb, ignoring the track */
::-webkit-scrollbar-button {
  background-color: rgba(23, 23, 28, 0.9);
}
/* optionally, you can style the top and the bottom buttons (left and right for horizontal bars) */
::-webkit-scrollbar-corner {
  background-color: transparent;
}
/*  Media Query Setup  */
/* Coding starts */
/* Topbar */
.cs-topbar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  clip: rect(auto, auto, auto, auto);
  clip-path: rect(auto, auto, auto, auto);
  -webkit-transition: all 0.7s ease-in-out;
  -moz-transition: all 0.7s ease-in-out;
  -ms-transition: all 0.7s ease-in-out;
  -o-transition: all 0.7s ease-in-out;
}
@media only screen and (max-width: 767px) {
  .cs-topbar {
    position: fixed!important;
    height: 75px;
    z-index: 105;
  }
}
.cs-topbar .button-main-logo {
  display: block;
  position: fixed;
  top: 50px;
  left: 50px;
  width: 60px;
  height: 60px;
  z-index: 102;
  overflow: hidden;
  -webkit-transition: all 1s ease-in-out;
  -moz-transition: all 1s ease-in-out;
  -ms-transition: all 1s ease-in-out;
  -o-transition: all 1s ease-in-out;
}
@media only screen and (max-width: 767px) {
  .cs-topbar .button-main-logo {
    top: 12px;
    left: 20px;
    width: 50px!important;
  }
}
@media (min-width: 1400px) {
  .cs-topbar .button-main-logo {
    top: 50px;
    left: 50px;
  }
}
@media only screen and (max-width: 480px) {
  .cs-topbar .button-main-logo {
    width: 50px!important;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1199px) and (min-height: 1024px) and (max-height: 1366px) {
  .cs-topbar .button-main-logo {
    width: 50px!important;
  }
}
.cs-topbar .button-main-logo img {
  min-width: 200px;
}
@media only screen and (max-width: 767px) {
  .cs-topbar .button-main-logo img {
    min-width: 170px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1199px) and (min-height: 1024px) and (max-height: 1366px) {
  .cs-topbar .button-main-logo img {
    min-width: 170px;
  }
}
.cs-topbar .button-main-menu {
  display: block;
  position: fixed;
  top: 50px;
  right: 50px;
  width: 50px;
  height: 40px;
  z-index: 102;
  cursor: pointer;
  overflow: hidden;
  -webkit-transition: all 1s ease-in-out;
  -moz-transition: all 1s ease-in-out;
  -ms-transition: all 1s ease-in-out;
  -o-transition: all 1s ease-in-out;
}
@media (min-width: 1400px) {
  .cs-topbar .button-main-menu {
    top: 50px;
    right: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .cs-topbar .button-main-menu {
    top: 17px;
    right: 20px;
  }
}
.cs-topbar .button-brief {
  display: block;
  position: fixed;
  bottom: 50px;
  left: 85px;
  z-index: 101;
  color: #FFF;
  font-family: "Avenir-Heavy";
  font-size: 12px;
  letter-spacing: 3.4px;
  text-decoration: none;
  -webkit-transition: all 0.15s ease-out;
  -moz-transition: all 0.15s ease-out;
  -ms-transition: all 0.15s ease-out;
  -o-transition: all 0.15s ease-out;
}
@media (min-width: 1850px) {
  .cs-topbar .button-brief {
    /*bottom: 90px;
  	    	left: 9%;*/
  
    bottom: 50px;
    left: 80px;
  }
}
.cs-topbar .button-brief:before {
  border-top-color: #fff;
  position: absolute;
  left: -28px;
  top: 7px;
  border-top: 1px solid #fff;
  width: 22px;
  content: "";
}
.cs-topbar .button-brief:hover {
  left: 90px;
}
@media (min-width: 1850px) {
  .cs-topbar .button-brief:hover {
    left: 100px;
  }
}
.cs-topbar .button-followus {
  position: absolute;
}
.cs-topbar .button-followus span {
  color: #ffffff;
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  transform: rotate(-90deg);
  transform: rotate(-90deg);
  transform-origin: left top;
  text-align: left;
  -webkit-transition: all 0.15s ease-out;
  -moz-transition: all 0.15s ease-out;
  -ms-transition: all 0.15s ease-out;
  -o-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
  position: fixed;
  display: block;
  z-index: 101;
  bottom: 20px;
  right: -60px;
  font-family: "Avenir-Heavy";
  font-size: 12px;
  letter-spacing: 3.4px;
  padding: 10px 0px;
}
@media (min-width: 1400px) {
  .cs-topbar .button-followus span {
    bottom: 20px;
    right: -60px;
  }
}
@media only screen and (max-width: 480px) {
  .cs-topbar .button-followus span {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .cs-details .cs-topbar {
    display: none;
  }
}
.body-caselist .cs-topbar,
.body-about .cs-topbar {
  position: relative;
}
@media only screen and (max-width: 767px) {
  .body-caselist .cs-topbar,
  .body-about .cs-topbar {
    position: fixed;
  }
}
@media only screen and (max-width: 767px) {
  .body-home .cs-topbar {
    height: 95px;
  }
}
.body-home .cs-topbar .button-main-logo {
  -webkit-transition: all 1s ease-in-out;
  -moz-transition: all 1s ease-in-out;
  -ms-transition: all 1s ease-in-out;
  -o-transition: all 1s ease-in-out;
  top: 55px;
  left: 60px;
}
@media (min-width: 1400px) {
  .body-home .cs-topbar .button-main-logo {
    top: 100px;
    left: 7%;
  }
}
@media (min-width: 1850px) {
  .body-home .cs-topbar .button-main-logo {
    top: 120px;
    left: 7%;
  }
}
@media only screen and (max-width: 767px) {
  .body-home .cs-topbar .button-main-logo {
    left: 38px;
    top: 44px;
    overflow: hidden;
  }
}
.body-home .cs-topbar .button-main-menu {
  -webkit-transition: all 1s ease-in-out;
  -moz-transition: all 1s ease-in-out;
  -ms-transition: all 1s ease-in-out;
  -o-transition: all 1s ease-in-out;
}
@media (min-width: 1400px) {
  .body-home .cs-topbar .button-main-menu {
    top: 100px;
    right: 7%;
  }
}
@media (min-width: 1850px) {
  .body-home .cs-topbar .button-main-menu {
    top: 120px;
    right: 7%;
  }
}
@media only screen and (max-width: 767px) {
  .body-home .cs-topbar .button-main-menu {
    right: 40px;
    top: 40px;
  }
}
@media only screen and (max-width: 480px) {
  .body-home .cs-topbar .button-main-menu {
    right: 40px;
    top: 45px;
  }
}
.body-home .cs-topbar .button-brief {
  -webkit-transition: all 1s ease-in-out;
  -moz-transition: all 1s ease-in-out;
  -ms-transition: all 1s ease-in-out;
  -o-transition: all 1s ease-in-out;
  bottom: 75px;
  left: 105px;
}
@media only screen and (min-width: 768px) {
  .body-home .cs-topbar .button-brief {
    bottom: 60px;
    left: 90px;
  }
}
@media (min-width: 1400px) {
  .body-home .cs-topbar .button-brief {
    bottom: 110px;
    left: 145px;
  }
}
@media (min-width: 1850px) {
  .body-home .cs-topbar .button-brief {
    bottom: 115px;
    left: 9%;
  }
}
.body-home .cs-topbar .button-followus span {
  bottom: 40px;
  right: -45px;
}
@media only screen and (min-width: 768px) {
  .body-home .cs-topbar .button-followus span {
    bottom: 30px;
    right: -62px;
  }
}
@media (min-width: 1400px) {
  .body-home .cs-topbar .button-followus span {
    bottom: 70px;
    right: -6px;
  }
}
@media (min-width: 1850px) {
  .body-home .cs-topbar .button-followus span {
    right: 18px;
  }
}
@media only screen and (max-width: 767px) {
  .cs-topbar.topbaractive {
    background: #17171c;
    -webkit-transition: all 1s ease-in-out;
    -moz-transition: all 1s ease-in-out;
    -ms-transition: all 1s ease-in-out;
    -o-transition: all 1s ease-in-out;
  }
}
@media only screen and (max-width: 767px) {
  .body-home .cs-topbar.topbaractive {
    background: transparent;
  }
}
.brief-open .button-main-menu {
  display: none;
}
.body-home {
  height: 100vh!important;
}
@media only screen and (max-width: 767px) {
  .body-home {
    height: 200vh!important;
  }
}
.page-wrapper {
  /*min-height:1250px;*/

}
.cs-header-container {
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .cs-header-container .case-mb-blackcover {
    position: absolute;
    background: #0000006e;
    top: 0;
    height: 100vh;
    width: 100vw;
    z-index: 100;
  }
}
/*.cs-content-container .cs-topbar{position: relative;}*/
.cs-banner .cs-head-list {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  margin: 0px;
  padding: 0px;
}
.cs-banner .cs-head-list .cs-head-list-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: inline-block;
  background-position: center top;
}
@media only screen and (max-width: 767px) {
  .cs-banner .cs-head-list .cs-head-list-item {
    background-position: center!important;
  }
}
@media only screen and (min-width: 768px) {
  .cs-banner .cs-head-list .cs-head-list-item {
    background-position: center top!important;
  }
}
@media (min-width: 1850px) {
  .cs-banner .cs-head-list .cs-head-list-item {
    background-position: center right!important;
  }
}
.cs-banner .cs-head-list .cs-head-list-item .cs-head-licover {
  position: absolute;
  left: 0;
  height: 100%;
  width: 100%;
  color: #fff;
}
.cs-head-row {
  height: 100%;
  max-height: 1440px;
  margin: 0 auto;
}
.cs-head-row .cs-head-licover-coln {
  height: 100%;
  margin-left: 19.9%;
}
@media (min-width: 1850px) {
  .cs-head-row .cs-head-licover-coln {
    margin-left: 18.6%;
  }
}
@media only screen and (max-width: 767px) {
  .cs-head-row .cs-head-licover-coln {
    margin-left: 8.9%;
    margin-right: 8.9%;
  }
}
.cs-head-row .cs-head-licover-coln .cs-head-table {
  display: table;
  width: 100%;
  height: 100%;
}
.cs-head-row .cs-head-licover-coln .cs-head-table .cs-head-table-cell {
  display: table-cell;
  vertical-align: middle;
}
.cs-head-row .cs-head-licover-coln .cs-head-table .cs-head-table-cell .cs-head-type {
  position: relative;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: .3125rem;
  line-height: 1;
  font-family: "Avenir-Light";
}
@media only screen and (max-width: 767px) {
  .cs-head-row .cs-head-licover-coln .cs-head-table .cs-head-table-cell .cs-head-type {
    font-size: 9px;
    letter-spacing: 1.5px;
  }
}
@media (min-width: 1400px) {
  .cs-head-row .cs-head-licover-coln .cs-head-table .cs-head-table-cell .cs-head-type {
    font-size: 15px;
  }
}
@media (min-width: 1850px) {
  .cs-head-row .cs-head-licover-coln .cs-head-table .cs-head-table-cell .cs-head-type {
    font-size: 20px;
  }
}
.cs-head-row .cs-head-licover-coln .cs-head-table .cs-head-table-cell .cs-head-type .cs-head-type-label {
  display: inline-block;
  margin-right: 10px;
  position: relative;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  color: inherit;
  font-family: 'Avenir-Heavy';
  line-height: 1.2;
  max-width: 300px;
}
@media only screen and (max-width: 767px) {
  .cs-head-row .cs-head-licover-coln .cs-head-table .cs-head-table-cell .cs-head-type .cs-head-type-label {
    margin-right: 0px;
  }
}
@media (min-width: 1400px) {
  .cs-head-row .cs-head-licover-coln .cs-head-table .cs-head-table-cell .cs-head-type .cs-head-type-label {
    font-size: 20px;
    max-width: 400px;
  }
}
.cs-head-row .cs-head-licover-coln .cs-head-table .cs-head-table-cell .cs-head-type .cs-head-type-line {
  position: relative;
  display: inline-block;
  left: 0;
  top: -2px;
  height: 2px;
  width: 10px;
  background: #fff;
  border: none;
  -webkit-transform-origin: left top;
  -moz-transform-origin: left top;
  -ms-transform-origin: left top;
  -o-transform-origin: left top;
  transform-origin: left top;
  margin-right: 10px;
}
@media (min-width: 1400px) {
  .cs-head-row .cs-head-licover-coln .cs-head-table .cs-head-table-cell .cs-head-type .cs-head-type-line {
    top: -5px;
  }
}
@media only screen and (max-width: 767px) {
  .cs-head-row .cs-head-licover-coln .cs-head-table .cs-head-table-cell .cs-head-type .cs-head-type-line {
    margin-right: 5px;
  }
}
.cs-head-row .cs-head-licover-coln .cs-head-table .cs-head-table-cell .cs-tagline {
  margin: 32px 0;
  font-size: 4.5rem;
  line-height: 1.1;
  letter-spacing: 2px;
  font-family: "Avenir-Black";
  width: 280px;
}
@media only screen and (max-width: 767px) {
  .cs-head-row .cs-head-licover-coln .cs-head-table .cs-head-table-cell .cs-tagline {
    font-size: 32px;
  }
}
@media only screen and (min-width: 768px) {
  .cs-head-row .cs-head-licover-coln .cs-head-table .cs-head-table-cell .cs-tagline {
    width: 380px;
  }
}
@media (min-width: 1400px) {
  .cs-head-row .cs-head-licover-coln .cs-head-table .cs-head-table-cell .cs-tagline {
    font-size: 60px;
    margin: 80px 0;
    width: 492px;
  }
}
@media (min-width: 1850px) {
  .cs-head-row .cs-head-licover-coln .cs-head-table .cs-head-table-cell .cs-tagline {
    font-size: 75px;
    width: 610px;
  }
}
.cs-head-row .cs-head-licover-coln .cs-head-table .cs-head-table-cell .cs-button-arrow {
  z-index: 100;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .cs-head-row .cs-head-licover-coln .cs-head-table .cs-head-table-cell .cs-button-arrow {
    font-size: 11px;
    border: 1px solid #FFF;
    min-width: auto;
    padding: 12px 15px;
  }
}
@media (min-width: 1200px) {
  .cs-head-row .cs-head-licover-coln .cs-head-table .cs-head-table-cell .cs-button-arrow {
    font-size: 15px;
    letter-spacing: 8px;
    padding: 20px 30px;
  }
}
@media (min-width: 1850px) {
  .cs-head-row .cs-head-licover-coln .cs-head-table .cs-head-table-cell .cs-button-arrow {
    letter-spacing: 8px;
    padding: 30px 30px;
  }
}
.cs-btnswitchcase {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  height: 80%;
  width: 35%;
  overflow: hidden;
  margin: auto 0;
  color: #fff;
  text-transform: uppercase;
  line-height: 20px;
  letter-spacing: .3125rem;
  cursor: pointer;
}
.cs-btnswitchcase:focus {
  color: #FFF;
}
.cs-btnswitchcase:hover .cs-inner-btnswitchcase {
  color: #FFF;
}
@media only screen and (max-width: 767px) {
  .cs-btnswitchcase {
    opacity: 1!important;
    -webkit-transform: matrix(1, 0, 0, 1, 0, 0) !important;
    -moz-transform: matrix(1, 0, 0, 1, 0, 0) !important;
    -ms-transform: matrix(1, 0, 0, 1, 0, 0) !important;
    -o-transform: matrix(1, 0, 0, 1, 0, 0) !important;
    transform: matrix(1, 0, 0, 1, 0, 0) !important;
    bottom: 20px;
  }
}
@media only screen and (max-width: 480px) {
  .cs-btnswitchcase {
    height: 25%;
    top: 75%;
  }
}
@media (min-width: 1400px) {
  .cs-btnswitchcase {
    width: 30%;
  }
}
.cs-btnswitchcase .cs-inner-btnswitchcase {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 240px;
  height: 18px;
  margin: auto 0;
}
.cs-btnswitchcase .cs-inner-btnswitchcase:focus {
  color: #FFF;
}
@media only screen and (max-width: 480px) {
  .cs-btnswitchcase .cs-inner-btnswitchcase {
    height: 65px;
  }
}
@media only screen and (max-width: 767px) {
  .cs-btnswitchcase .cs-inner-btnswitchcase {
    opacity: 1!important;
    top: auto;
    overflow: inherit;
    -webkit-transform: matrix(1, 0, 0, 1, 0, 0) !important;
    -moz-transform: matrix(1, 0, 0, 1, 0, 0) !important;
    -ms-transform: matrix(1, 0, 0, 1, 0, 0) !important;
    -o-transform: matrix(1, 0, 0, 1, 0, 0) !important;
    transform: matrix(1, 0, 0, 1, 0, 0) !important;
  }
}
.cs-btnswitchcase .cs-inner-btnswitchcase .cs-btnswitchcase-icon {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
}
.cs-btnswitchcase .cs-inner-btnswitchcase .cs-btnswitchcase-label {
  display: block;
  position: absolute;
  width: 185px;
  height: 18px;
  line-height: 21px;
  letter-spacing: 3.4px;
  font-family: "Avenir-Heavy";
  font-size: 12px;
}
.cs-btnswitchcase .cs-inner-btnswitchcase .cs-btnswitchcase-labelnext {
  right: 90px;
  text-align: right;
}
@media only screen and (max-width: 767px) {
  .cs-btnswitchcase .cs-inner-btnswitchcase .cs-btnswitchcase-labelnext {
    right: 55px;
    font-size: 9px;
    letter-spacing: 2px;
    opacity: 1!important;
    -webkit-transform: matrix(1, 0, 0, 1, 0, 0) !important;
    -moz-transform: matrix(1, 0, 0, 1, 0, 0) !important;
    -ms-transform: matrix(1, 0, 0, 1, 0, 0) !important;
    -o-transform: matrix(1, 0, 0, 1, 0, 0) !important;
    transform: matrix(1, 0, 0, 1, 0, 0) !important;
  }
}
@media only screen and (max-width: 480px) {
  .cs-btnswitchcase .cs-inner-btnswitchcase .cs-btnswitchcase-labelnext {
    letter-spacing: 2px;
    opacity: 1!important;
    top: 0px;
    right: -14px;
    transform: matrix(1, 0, 0, 1, -40, 0) !important;
  }
}
.cs-btnswitchcase .cs-inner-btnswitchcase .cs-btnswitchcase-labelprev {
  left: 90px;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  .cs-btnswitchcase .cs-inner-btnswitchcase .cs-btnswitchcase-labelprev {
    left: 55px;
    font-size: 9px;
    letter-spacing: 2px;
    opacity: 1!important;
    -webkit-transform: matrix(1, 0, 0, 1, 0, 0) !important;
    -moz-transform: matrix(1, 0, 0, 1, 0, 0) !important;
    -ms-transform: matrix(1, 0, 0, 1, 0, 0) !important;
    -o-transform: matrix(1, 0, 0, 1, 0, 0) !important;
    transform: matrix(1, 0, 0, 1, 0, 0) !important;
  }
}
@media only screen and (max-width: 480px) {
  .cs-btnswitchcase .cs-inner-btnswitchcase .cs-btnswitchcase-labelprev {
    letter-spacing: 2px;
    opacity: 1!important;
    top: 0px;
    left: -14px;
    transform: matrix(1, 0, 0, 1, 40, 0) !important;
  }
}
.cs-btnswitchcase .cs-inner-btnswitchcase .arrow-right,
.cs-btnswitchcase .cs-inner-btnswitchcase .arrow-left {
  width: 30px;
  height: 12px;
  border: none;
  background: url(../img/icons/white-arrow-right.png);
  background-size: contain;
  background-repeat: no-repeat;
}
.cs-btnswitchcase .cs-inner-btnswitchcase .arrow-right {
  right: 21px;
}
@media (min-width: 1200px) {
  .cs-btnswitchcase .cs-inner-btnswitchcase .arrow-right {
    right: 60px;
  }
}
.cs-btnswitchcase .cs-inner-btnswitchcase .arrow-left {
  background: url(../img/icons/white-arrow-left.png);
  background-size: contain;
  background-repeat: no-repeat;
  left: 21px;
}
@media (min-width: 1200px) {
  .cs-btnswitchcase .cs-inner-btnswitchcase .arrow-left {
    left: 60px;
  }
}
@media only screen and (min-width: 768px) {
  .cs-btnprev {
    width: 20%;
  }
}
.cs-btnprev,
.cs-inner-btnprev {
  left: 0;
}
.cs-btnnext,
.cs-inner-btnnext {
  right: 0;
}
/*.cs-item-alok{
	background: url('../img/banner/book-mockup-1.jpg');
	background-size: contain;
	background-repeat: no-repeat;
	background-color: rgb(104, 31, 84);
	@media @large{
		background-size: cover;
	}
}*/
.cs-content-container {
  position: relative;
}
@media only screen and (max-width: 480px) {
  .cs-content-container .cs-details {
    margin-top: -55px;
    padding-top: 50px;
  }
}
@media only screen and (max-width: 480px) {
  .cs-content-container .cs-details .container-one.caselist-view {
    width: 100%;
    padding: 0px;
  }
}
@media only screen and (max-width: 480px) {
  .cs-content-container .cs-details .container-one.caselist-view .row {
    margin: 0px;
  }
}
@media only screen and (max-width: 480px) {
  .cs-content-container .cs-details .container-one.caselist-view .row .col-sm-12 {
    padding: 0;
  }
}
@media only screen and (max-width: 480px) {
  .cs-content-container .cs-details .container-one.caselist-view .row .col-sm-12 .minicarousel {
    min-height: 200px;
    max-height: 250px;
    overflow: hidden;
  }
}
.cs-content-container .cs-details .container-one.caselist-view .row .col-sm-12 .c-nav {
  margin: 40px 0;
  position: relative;
  text-align: center;
  margin-top: 0px;
}
@media only screen and (min-width: 992px) {
  .cs-content-container .cs-details .container-one.caselist-view .row .col-sm-12 .c-nav {
    margin-bottom: 70px;
  }
}
.cs-content-container .cs-details .container-one.caselist-view .row .col-sm-12 .c-nav a.c-nav-left,
.cs-content-container .cs-details .container-one.caselist-view .row .col-sm-12 .c-nav a.c-nav-all,
.cs-content-container .cs-details .container-one.caselist-view .row .col-sm-12 .c-nav a.c-nav-right {
  display: inline-block;
  height: 60px;
  font-size: 14px;
  line-height: 55px;
  padding: 0 25px;
  border: 2px solid #808080;
  background: white;
  color: #808080;
  font-family: "PlayfairDisplay-Bold";
  overflow: hidden;
  vertical-align: middle;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 2px;
  min-width: 100px;
  -webkit-transition: all 100ms linear 0ms;
  -moz-transition: all 100ms linear 0ms;
  -ms-transition: all 100ms linear 0ms;
  -o-transition: all 100ms linear 0ms;
}
.cs-content-container .cs-details .container-one.caselist-view .row .col-sm-12 .c-nav a.c-nav-left:hover,
.cs-content-container .cs-details .container-one.caselist-view .row .col-sm-12 .c-nav a.c-nav-all:hover,
.cs-content-container .cs-details .container-one.caselist-view .row .col-sm-12 .c-nav a.c-nav-right:hover {
  text-decoration: none;
  background: #ff5851;
  color: #FFF;
  border-color: #ff5851;
}
@media only screen and (min-width: 768px) {
  .cs-content-container .cs-details .container-one.caselist-view .row .col-sm-12 .c-nav a.c-nav-left,
  .cs-content-container .cs-details .container-one.caselist-view .row .col-sm-12 .c-nav a.c-nav-all,
  .cs-content-container .cs-details .container-one.caselist-view .row .col-sm-12 .c-nav a.c-nav-right {
    min-width: 150px;
  }
}
@media only screen and (min-width: 992px) {
  .cs-content-container .cs-details .container-one.caselist-view .row .col-sm-12 .c-nav a.c-nav-left,
  .cs-content-container .cs-details .container-one.caselist-view .row .col-sm-12 .c-nav a.c-nav-all,
  .cs-content-container .cs-details .container-one.caselist-view .row .col-sm-12 .c-nav a.c-nav-right {
    font-size: 14px;
    line-height: 56px;
    letter-spacing: 3px;
  }
}
@media (min-width: 1400px) {
  .cs-content-container .cs-details .container-one.caselist-view .row .col-sm-12 .c-nav a.c-nav-left,
  .cs-content-container .cs-details .container-one.caselist-view .row .col-sm-12 .c-nav a.c-nav-all,
  .cs-content-container .cs-details .container-one.caselist-view .row .col-sm-12 .c-nav a.c-nav-right {
    font-size: 16px;
  }
}
.cs-content-container .cs-details .container-one.caselist-view .row .col-sm-12 .c-nav a.c-nav-left:focus,
.cs-content-container .cs-details .container-one.caselist-view .row .col-sm-12 .c-nav a.c-nav-all:focus,
.cs-content-container .cs-details .container-one.caselist-view .row .col-sm-12 .c-nav a.c-nav-right:focus {
  text-decoration: none;
}
.cs-content-container .cs-details .container-one.caselist-view .row .col-sm-12 .c-nav a.c-nav-left {
  left: 0;
  position: absolute;
  top: 0;
  width: 17.8571428571%;
  text-indent: -9999px;
}
@media only screen and (min-width: 768px) {
  .cs-content-container .cs-details .container-one.caselist-view .row .col-sm-12 .c-nav a.c-nav-left {
    text-indent: 0;
  }
}
@media only screen and (max-width: 767px) {
  .cs-content-container .cs-details .container-one.caselist-view .row .col-sm-12 .c-nav a.c-nav-left:before {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
    margin: -6px auto 0;
    width: 30px;
    height: 12px;
    background: url(../img/icons/black-arrow-left.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-size: auto;
  }
}
.cs-content-container .cs-details .container-one.caselist-view .row .col-sm-12 .c-nav a.c-nav-all {
  padding-right: 45px;
  padding-left: 45px;
}
@media only screen and (min-width: 768px) {
  
}
.cs-content-container .cs-details .container-one.caselist-view .row .col-sm-12 .c-nav a.c-nav-right {
  right: 0;
  position: absolute;
  top: 0;
  width: 17.8571428571%;
  text-indent: -9999px;
}
@media only screen and (min-width: 768px) {
  .cs-content-container .cs-details .container-one.caselist-view .row .col-sm-12 .c-nav a.c-nav-right {
    text-indent: 0;
  }
}
@media only screen and (max-width: 767px) {
  .cs-content-container .cs-details .container-one.caselist-view .row .col-sm-12 .c-nav a.c-nav-right:before {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
    margin: -6px auto 0;
    width: 30px;
    height: 12px;
    background: url(../img/icons/black-arrow-right.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-size: auto;
  }
}
@media only screen and (max-width: 480px) {
  .cs-content-container .cs-details .container-one.caselist-view .row .content-format {
    width: 90%;
    margin: 0 auto;
    padding-right: 15px;
    padding-left: 15px;
  }
}
.cs-content-container .cs-details .top-cs-spacer {
  width: 100%;
  position: relative;
  display: block;
  height: 50px;
}
@media only screen and (min-width: 768px) {
  .cs-content-container .cs-details .top-cs-spacer {
    height: 100px;
  }
}
@media (min-width: 1200px) {
  .cs-content-container .cs-details .top-cs-spacer {
    height: 150px;
  }
}
.cs-content-container .cs-details .c-section {
  padding-bottom: 50px;
}
@media (min-width: 1200px) {
  .cs-content-container .cs-details .c-section {
    padding-bottom: 80px;
  }
}
@media (min-width: 1400px) {
  .cs-content-container .cs-details .c-section {
    padding-bottom: 100px;
  }
}
@media only screen and (max-width: 767px) {
  .cs-content-container .cs-details .c-section {
    opacity: 1!important;
    transform: translatey(0px);
  }
}
.cs-content-container .cs-details .c-section p {
  margin-bottom: 0px;
}
.cs-content-container .cs-details .c-section h4 {
  font-size: 18px;
  line-height: 22px;
  font-family: "Roboto-Bold";
  margin-top: 0px;
}
.cs-content-container .cs-details .c-section .vimeo-vid {
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .cs-content-container .cs-details .c-section .vimeo-vid {
    height: 400px;
  }
}
@media only screen and (max-width: 480px) {
  .cs-content-container .cs-details .c-section .vimeo-vid {
    height: 202px;
  }
}
@media only screen and (min-width: 768px) {
  .cs-content-container .cs-details .c-section .vimeo-vid {
    height: 325px;
  }
}
@media only screen and (min-width: 992px) {
  .cs-content-container .cs-details .c-section .vimeo-vid {
    height: 376px;
  }
}
@media (min-width: 1200px) {
  .cs-content-container .cs-details .c-section .vimeo-vid {
    height: 545px;
  }
}
@media (min-width: 1400px) {
  .cs-content-container .cs-details .c-section .vimeo-vid {
    height: 660px;
  }
}
.cs-content-container .cs-details .c-section .c-click-a {
  color: #ff5b4a;
}
.cs-content-container .cs-details .c-section .c-tags li {
  font-family: "Avenir-Heavy";
  font-size: 16px;
  line-height: 2.2;
}
@media (min-width: 1400px) {
  .cs-content-container .cs-details .c-section .c-tags li {
    font-size: 20px;
  }
}
.cs-content-container .cs-details .c-section .c-tags li a {
  color: #171717;
  pointer-events: none;
  cursor: default;
}
.cs-content-container .cs-details .no-imgadded {
  padding: 20%;
  background: #dcd;
}
@media (min-width: 1200px) {
  .cs-content-container .cs-details .no-imgadded {
    padding: 30%;
  }
}
@media (min-width: 1400px) {
  .cs-content-container .cs-details .no-imgadded {
    padding: 25%;
  }
}
.cs-content-container .cs-details p {
  font-size: 15px;
  line-height: 20px;
  font-family: "Roboto-Light";
}
@media (min-width: 1200px) {
  .cs-content-container .cs-details p {
    font-size: 18px;
    line-height: 22px;
  }
}
@media (min-width: 1400px) {
  .cs-content-container .cs-details p {
    font-size: 18px;
    line-height: 28px;
  }
}
.cs-content-container .cs-details h5 {
  font-size: 20px;
  line-height: 25px;
  font-family: "AvenirLT-Book";
}
@media (min-width: 1400px) {
  .cs-content-container .cs-details h5 {
    font-size: 25px;
    line-height: 30px;
  }
}
.cs-content-container .cs-details img {
  text-align: center;
}
.cs-content-container .cs-details .doxo .doxo-a {
  display: inline-block;
  width: 25%;
  vertical-align: middle;
}
@media (min-width: 1200px) {
  .cs-content-container .cs-details .doxo .doxo-a {
    width: 30%;
  }
}
.cs-content-container .cs-details .doxo .doxo-a img {
  max-width: 100%;
  width: 80px;
  vertical-align: middle;
}
.cs-content-container .cs-details .doxo .doxo-b {
  display: inline-block;
  width: 70%;
  vertical-align: top;
  padding-left: 10px;
}
@media (min-width: 1200px) {
  .cs-content-container .cs-details .doxo .doxo-b {
    width: 67%;
  }
}
.cs-content-container .cs-details .doxo h4 {
  color: #231F20;
  font-family: "Roboto-Bold";
  font-size: 18px;
  margin-bottom: 5px;
}
@media (min-width: 1200px) {
  .cs-content-container .cs-details .doxo h4 {
    font-size: 26px;
    margin-bottom: 10px;
  }
}
@media (min-width: 1400px) {
  .cs-content-container .cs-details .doxo h4 {
    font-size: 36px;
  }
}
.cs-content-container .cs-details .doxo h6 {
  color: #231f20;
  font-family: "Avenir-Light";
  font-size: 12px;
  margin-top: 0px;
}
@media (min-width: 1200px) {
  .cs-content-container .cs-details .doxo h6 {
    font-size: 18px;
    margin-top: 10px;
  }
}
@media (min-width: 1400px) {
  .cs-content-container .cs-details .doxo h6 {
    font-size: 24px;
  }
}
@media (min-width: 1400px) {
  .cs-content-container .cs-details .doxo h6 {
    font-size: 24px;
  }
}
@media (max-width: 1199px) {
  .cs-content-container .cs-details .doxo h6 {
    margin-bottom: 0px;
  }
}
/* Slider */
.case-section1 {
  height: 100vh;
  background: #000;
}
.link-basic {
  text-decoration: none;
  color: #333;
}
.link-basic:hover {
  color: #ff5b4a;
  text-decoration: none;
  -webkit-transition: 0.4s all ease;
  -moz-transition: 0.4s all ease;
  -ms-transition: 0.4s all ease;
  -o-transition: 0.4s all ease;
}
/* Loader Styles */
.page-loading-overlay {
  zoom: 1;
  filter: alpha(opacity=0);
  -webkit-opacity: 0;
  -moz-opacity: 0;
  opacity: 1;
  /* visibility: hidden; */
}
.page-loading-overlay {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  overflow: hidden;
  background: #fff;
  z-index: 1000;
  -webkit-perspective: 10000;
  -moz-perspective: 10000;
  perspective: 10000;
  -webkit-perspective: 10000px;
  -moz-perspective: 10000px;
  perspective: 10000px;
  zoom: 1;
  filter: alpha(opacity=100);
  -webkit-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
}
.page-loading-overlay.loaded,
.loader.loaded,
.load_circle_wrapper.loaded {
  zoom: 1;
  filter: alpha(opacity=0);
  -webkit-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 1s ease-in-out;
  -moz-transition: all 1s ease-in-out;
  -ms-transition: all 1s ease-in-out;
  -o-transition: all 1s ease-in-out;
}
.big {
  height: 16px;
  margin: 8px 0 0 0;
}
.red-cover {
  background: #ff5851;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: opacity 500ms cubic-bezier(1, 0, 0, 1) 0ms;
  -moz-transition: opacity 500ms cubic-bezier(1, 0, 0, 1) 0ms;
  -ms-transition: opacity 500ms cubic-bezier(1, 0, 0, 1) 0ms;
  -o-transition: opacity 500ms cubic-bezier(1, 0, 0, 1) 0ms;
  transition: opacity 500ms cubic-bezier(1, 0, 0, 1) 0ms;
  background: red;
  z-index: 11;
  opacity: 0;
  pointer-events: none;
}
.container-one {
  width: 90%;
  display: block;
  margin: 0 auto;
}
@media only screen and (min-width: 768px) {
  .container-one {
    width: 600px;
  }
}
@media only screen and (min-width: 992px) {
  .container-one {
    width: 700px;
  }
}
@media (min-width: 1200px) {
  .container-one {
    width: 1000px;
  }
}
@media (min-width: 1400px) {
  .container-one {
    width: 1200px;
  }
}
.downarrow-animation {
  -webkit-transition: opacity 0.25s linear;
  -moz-transition: opacity 0.25s linear;
  -ms-transition: opacity 0.25s linear;
  -o-transition: opacity 0.25s linear;
  -webkit-animation: bounce 5s infinite;
  animation: bounce 5s infinite;
  width: 15px;
  margin-top: -15px;
}
@-webkit-keyframes bounce {
  0%,
  50%,
  80%,
  100% {
    -webkit-transform: translatey(0);
  }
  40% {
    -webkit-transform: translatey(15px);
  }
  60% {
    -webkit-transform: translatey(10px);
  }
}
@keyframes bounce {
  0%,
  50%,
  80%,
  100% {
    -webkit-transform: translatey(0);
    transform: translatey(0);
  }
  40% {
    -webkit-transform: translatey(15px);
    transform: translatey(15px);
  }
  60% {
    -webkit-transform: translatey(10px);
    transform: translatey(10px);
  }
}
.button-followus ul {
  opacity: 0;
  position: absolute;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  margin-left: 125px;
  width: 185px;
  margin-top: -19px;
}
.button-followus ul li {
  transform: scale(1) rotate(90deg);
  transition-delay: 0.1s;
  display: inline-block;
  font-size: 14px;
  transition: all 0.4s ease-in-out;
  margin-left: 10px;
  position: absolute;
}
.button-followus ul li .soc-icon {
  width: 20px;
}
.button-followus ul li .soc-icon svg .st0 {
  fill: #FFF;
}
.button-followus .si-icover li {
  right: 120px;
  padding-right: 20px;
  padding-bottom: 20px;
  margin-left: 0px;
  margin-bottom: 0px;
}
.button-followus .si-icover li:nth-child(1) {
  right: 0px;
}
.button-followus .si-icover li:nth-child(2) {
  right: 40px;
}
.button-followus .si-icover li:nth-child(3) {
  right: 80px;
}
.button-followus .si-icover li:last-child {
  display: none!important;
}
.button-followus:hover ul {
  display: block;
  position: absolute;
  -webkit-transition: all 0.6s ease-in-out;
  -moz-transition: all 0.6s ease-in-out;
  -ms-transition: all 0.6s ease-in-out;
  -o-transition: all 0.6s ease-in-out;
}
.button-followus:hover ul li:hover {
  color: #ff5b4a;
}
.button-followus:hover ul li:hover svg .st0 {
  fill: #ff5b4a;
}
.button-followus:hover ul li:hover img {
  background: #ff5b4a;
}
.button-followus:hover ul li img {
  color: #ff5b4a;
}
.body-connect .button-followus,
.body-connect .button-brief {
  display: none;
}
.si-icover {
  margin-right: 0;
  float: right;
  position: relative;
  margin-top: -40px;
}
.si-icover li {
  margin-bottom: 10px;
  display: block;
  margin-left: 0;
  list-style: none;
}
.si-icover li a {
  background-color: transparent;
}
.si-icover li a .soc-icon {
  width: 20px;
}
.si-icover li a .soc-icon .st0 {
  -webkit-transition: 0.4s all ease;
  -moz-transition: 0.4s all ease;
  -ms-transition: 0.4s all ease;
  -o-transition: 0.4s all ease;
}
/* Start of footer */
.footer-container {
  background: #ff5851;
  padding: 40px 0px;
  z-index: 101;
  position: relative;
}
@media smartphone {
  .footer-container {
    padding: 25px 0px 15px 0px;
  }
}
@media only screen and (min-width: 768px) {
  .footer-container {
    padding: 70px 0;
  }
}
@media (min-width: 1200px) {
  .footer-container {
    padding: 120px 0;
  }
}
@media (min-width: 1850px) {
  .footer-container {
    padding: 165px 0;
  }
}
.footer-container .footer-left-blk h3 {
  margin-top: 0px;
}
.footer-container .footer-left-blk h3 a {
  color: #FFF;
  font-size: 30px;
  text-decoration: none;
  font-family: "Avenir-Black";
}
@media only screen and (max-width: 767px) {
  .footer-container .footer-left-blk h3 a {
    font-size: 22px;
  }
}
@media (min-width: 1850px) {
  .footer-container .footer-left-blk h3 a {
    font-size: 40px;
  }
}
.footer-container .footer-left-blk h3 a img {
  margin-top: -8px;
}
@media only screen and (max-width: 767px) {
  .footer-container .footer-left-blk h3 a img {
    width: 40px;
    margin-top: -7px;
  }
}
@media only screen and (min-width: 992px) {
  .footer-container .footer-left-blk .footer-menu {
    margin-top: -1px;
  }
}
@media (min-width: 1200px) {
  .footer-container .footer-left-blk .footer-menu {
    margin-top: 8px;
  }
}
@media (min-width: 1400px) {
  .footer-container .footer-left-blk .footer-menu {
    margin-top: 10px;
  }
}
@media (min-width: 1850px) {
  .footer-container .footer-left-blk .footer-menu {
    margin-top: 40px;
  }
}
.footer-container .footer-left-blk .footer-menu ul li {
  padding: 5px 0px;
}
@media (min-width: 1850px) {
  .footer-container .footer-left-blk .footer-menu ul li {
    padding: 10px 0px;
  }
}
.footer-container .footer-left-blk .footer-menu ul li a {
  font-family: "Avenir-Black";
  color: #17171c;
  font-size: 20px;
  -webkit-transition: 0.5s all ease;
  -moz-transition: 0.5s all ease;
  -ms-transition: 0.5s all ease;
  -o-transition: 0.5s all ease;
}
@media only screen and (max-width: 767px) {
  .footer-container .footer-left-blk .footer-menu ul li a {
    font-size: 13px;
  }
}
@media (min-width: 1850px) {
  .footer-container .footer-left-blk .footer-menu ul li a {
    font-size: 25px;
  }
}
.footer-container .footer-left-blk .footer-menu ul li a:hover {
  color: #FFF;
  text-decoration: none;
}
.footer-container .footer-right-blk {
  text-align: right;
}
@media smartphone {
  .footer-container .footer-right-blk {
    text-align: left;
  }
}
.footer-container .footer-right-blk .si-icover {
  margin-right: 0;
  float: right;
  position: absolute;
  bottom: -5px;
  right: 0;
}
@media only screen and (max-width: 767px) {
  .footer-container .footer-right-blk .si-icover {
    position: relative;
    margin-top: 6px;
    padding-left: 0px;
    margin-bottom: 27px;
  }
}
@media only screen and (max-width: 767px) {
  .footer-container .footer-right-blk .si-icover li {
    display: inline-block;
    margin-left: 10px;
  }
}
.footer-container .footer-right-blk .si-icover li a:hover .st0 {
  fill: #FFF;
  -webkit-transition: 0.32s all ease;
  -moz-transition: 0.32s all ease;
  -ms-transition: 0.32s all ease;
  -o-transition: 0.32s all ease;
}
.footer-container .footer-right-blk .ft-rt-contact {
  float: right;
  margin-right: 50px;
}
@media only screen and (max-width: 767px) {
  .footer-container .footer-right-blk .ft-rt-contact {
    float: right;
    margin-right: 0;
  }
}
@media only screen and (min-width: 768px) {
  .footer-container .footer-right-blk .ft-rt-contact {
    margin-top: 100px;
  }
}
@media (min-width: 1200px) {
  .footer-container .footer-right-blk .ft-rt-contact {
    margin-top: 95px;
  }
}
@media (min-width: 1400px) {
  .footer-container .footer-right-blk .ft-rt-contact {
    margin-top: 98px;
  }
}
@media (min-width: 1850px) {
  .footer-container .footer-right-blk .ft-rt-contact {
    margin-top: 150px;
  }
}
.footer-container .footer-right-blk .p-email a,
.footer-container .footer-right-blk .p-phoneno {
  color: #FFF;
  text-decoration: none;
}
@media (min-width: 1850px) {
  .footer-container .footer-right-blk .p-email a,
  .footer-container .footer-right-blk .p-phoneno {
    font-size: 25px;
  }
}
.footer-container .footer-right-blk .p-address {
  color: #FFF;
}
@media (min-width: 1850px) {
  .footer-container .footer-right-blk .p-address {
    font-size: 22px;
  }
}
@media (min-width: 1850px) {
  .footer-container .footer-right-blk .footer-address {
    margin-top: 40px;
  }
}
.body-home .footer-container,
.body-404 .footer-container {
  display: none;
}
/* End of footer *//* Home Page */
.front-container {
  position: relative;
  background: #f8f8f8;
  overflow: hidden;
  -webkit-transition: -webkit-transform 500ms cubic-bezier(1, 0, 0, 1) 0ms;
  -moz-transition: -moz-transform 500ms cubic-bezier(1, 0, 0, 1) 0ms;
  transition: transform 500ms cubic-bezier(1, 0, 0, 1) 0ms;
  pointer-events: all;
  min-height: 100vh;
}
.front-container .front-wrapper {
  position: relative;
  min-height: 100vh;
  z-index: 10;
  overflow: hidden;
  -webkit-transition: -webkit-transform 1000ms cubic-bezier(1, 0, 0, 1) 0ms, padding 500ms cubic-bezier(1, 0, 0, 1) 0ms;
  -moz-transition: -moz-transform 1000ms cubic-bezier(1, 0, 0, 1) 0ms, padding 500ms cubic-bezier(1, 0, 0, 1) 0ms;
  transition: transform 1000ms cubic-bezier(1, 0, 0, 1) 0ms, padding 500ms cubic-bezier(1, 0, 0, 1) 0ms;
}
.front-container .front-wrapper .front-cov {
  padding: 25px;
  height: 100vh;
  overflow: hidden;
}
@media (min-width: 1400px) {
  .front-container .front-wrapper .front-cov {
    padding: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .front-container .front-wrapper .front-cov {
    padding: 0px;
    height: 200vh;
  }
}
.front-container .front-wrapper .front-cov .hm-mobimg-wp {
  top: 0;
  left: 0;
  right: auto;
  bottom: auto;
  width: 100%;
  height: 100vh;
  position: absolute;
  z-index: auto;
}
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  
}
.front-container .front-wrapper .front-cov .hm-mobimg-wp .hm-mobimg {
  top: 0;
  left: 0;
  right: auto;
  bottom: auto;
  width: 100%;
  height: 100vh;
  position: fixed;
  z-index: 0;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
}
.front-container .front-wrapper .front-cov .hm-mobimg-wp .hm-mobimg img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
}
.front-container .front-wrapper .front-cov .sec2 .hm-mobimg-wp {
  top: 100vh;
}
.front-container .front-wrapper .front-section {
  float: left;
  width: 50%;
  height: 100%;
}
.front-container .front-wrapper .sec1 {
  background: #ff5b4a;
  /*&:hover .home-left-box{
		    	background: url(../img/home-left-illustration.png);
		    	background-size:cover;
		    	background-color: #ff5b4a;
		    	.transition(all 0.5s ease 0s);
		    }*/

}
@media only screen and (max-width: 767px) {
  .front-container .front-wrapper .sec1 {
    width: 100%!important;
    height: 50%!important;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1199px) and (min-height: 1024px) and (max-height: 1366px) {
  .front-container .front-wrapper .sec1 {
    width: 100%!important;
    height: 55%!important;
  }
}
.front-container .front-wrapper .sec1 .home-left-box {
  position: relative;
  bottom: 0;
  z-index: 0;
  height: 100%;
  -webkit-transform: translatex(0%);
  -moz-transform: translatex(0%);
  -ms-transform: translatex(0%);
  -o-transform: translatex(0%);
  transform: translatex(0%);
  transform: translatex(0%);
  -webkit-transition: all 0.5s ease 0s;
  -moz-transition: all 0.5s ease 0s;
  -ms-transition: all 0.5s ease 0s;
  -o-transition: all 0.5s ease 0s;
  background: url(../img/home-left-illustration.png);
  background-size: cover;
  background-color: #ff5b4a;
}
@media only screen and (max-width: 767px) {
  .front-container .front-wrapper .sec1 .home-left-box {
    background-attachment: fixed;
    background-position: center;
    z-index: 1;
    background: transparent;
  }
}
.front-container .front-wrapper .sec1 .home-left-box .home-left-cont {
  height: 100%;
  display: table;
  position: relative;
  width: 100%;
  background-color: rgba(255, 91, 74, 0.9);
  -webkit-transition: all 1.5s ease;
  -moz-transition: all 1.5s ease;
  -ms-transition: all 1.5s ease;
  -o-transition: all 1.5s ease;
}
@media only screen and (max-width: 767px) {
  .front-container .front-wrapper .sec1 .home-left-box .home-left-cont {
    background-color: transparent;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1199px) and (min-height: 1024px) and (max-height: 1366px) {
  .front-container .front-wrapper .sec1 .home-left-box .home-left-cont {
    background-color: transparent;
  }
}
.front-container .front-wrapper .sec1 .home-left-box .home-left-cont:hover {
  background-color: rgba(255, 91, 74, 0);
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
}
@media only screen and (max-width: 767px) {
  .front-container .front-wrapper .sec1 .home-left-box .home-left-cont:hover {
    background-color: transparent;
  }
}
.front-container .front-wrapper .sec1 .home-left-box .home-left-cont .home-arrow {
  top: 84vh;
  left: 0;
  position: absolute;
  width: 100%;
  text-align: center;
}
.front-container .front-wrapper .sec1 .home-left-box .home-left-cont .home-left-wrap {
  display: table-cell;
  vertical-align: middle;
}
.front-container .front-wrapper .sec1 .home-left-box .home-left-cont .home-left-wrap .home-left-wrapbox {
  /*left:15%;
		    				right:5%;*/

  margin: 0 auto;
  width: 80%;
  position: relative;
}
@media (min-width: 1200px) {
  .front-container .front-wrapper .sec1 .home-left-box .home-left-cont .home-left-wrap .home-left-wrapbox {
    margin-left: 100px;
  }
}
@media (min-width: 1400px) {
  .front-container .front-wrapper .sec1 .home-left-box .home-left-cont .home-left-wrap .home-left-wrapbox {
    margin-left: auto;
  }
}
@media only screen and (max-width: 767px) {
  .front-container .front-wrapper .sec1 .home-left-box .home-left-cont .home-left-wrap .home-left-wrapbox {
    max-width: 300px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1199px) and (min-height: 1024px) and (max-height: 1366px) {
  .front-container .front-wrapper .sec1 .home-left-box .home-left-cont .home-left-wrap .home-left-wrapbox {
    max-width: 330px;
  }
}
@media only screen and (max-width: 480px) {
  .front-container .front-wrapper .sec1 .home-left-box .home-left-cont .home-left-wrap .home-left-wrapbox {
    margin-left: 48px;
    margin-right: 48px;
    width: auto;
  }
}
.front-container .front-wrapper .sec1 .home-left-box .home-left-cont .home-left-wrap .home-left-wrapbox h2 {
  font-family: 'Avenir-Black';
  font-size: 40px;
  color: #FFF;
}
@media only screen and (max-width: 767px) {
  .front-container .front-wrapper .sec1 .home-left-box .home-left-cont .home-left-wrap .home-left-wrapbox h2 {
    font-size: 37px;
  }
}
@media (min-width: 1200px) {
  .front-container .front-wrapper .sec1 .home-left-box .home-left-cont .home-left-wrap .home-left-wrapbox h2 {
    font-size: 55px;
    line-height: 1;
  }
}
@media (min-width: 1400px) {
  .front-container .front-wrapper .sec1 .home-left-box .home-left-cont .home-left-wrap .home-left-wrapbox h2 {
    font-size: 60px;
  }
}
@media (min-width: 1850px) {
  .front-container .front-wrapper .sec1 .home-left-box .home-left-cont .home-left-wrap .home-left-wrapbox h2 {
    font-size: 90px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1199px) and (min-height: 1024px) and (max-height: 1366px) {
  .front-container .front-wrapper .sec1 .home-left-box .home-left-cont .home-left-wrap .home-left-wrapbox h2 {
    font-size: 44px;
    line-height: 1.2;
  }
}
.front-container .front-wrapper .sec1 .home-left-box .home-left-cont .home-left-wrap .home-left-wrapbox .home-btn-left {
  position: relative;
  text-transform: uppercase;
  margin-top: 20px;
}
@media only screen and (max-width: 767px) {
  .front-container .front-wrapper .sec1 .home-left-box .home-left-cont .home-left-wrap .home-left-wrapbox .home-btn-left {
    margin-top: 5px;
  }
}
@media (min-width: 1400px) {
  .front-container .front-wrapper .sec1 .home-left-box .home-left-cont .home-left-wrap .home-left-wrapbox .home-btn-left {
    margin-top: 45px;
  }
}
.front-container .front-wrapper .sec1 .home-left-box .home-left-cont .home-left-wrap .home-left-wrapbox .home-btn-left a:hover {
  color: #ff5b4a;
}
@media only screen and (max-width: 767px) {
  .front-container .front-wrapper .sec1 .home-left-box .home-left-cont .home-left-wrap .home-left-wrapbox .home-btn-left .btn-eft {
    padding: 10px 20px;
    min-width: 200px;
  }
}
@media (min-width: 1400px) {
  .front-container .front-wrapper .sec1 .home-left-box .home-left-cont .home-left-wrap .home-left-wrapbox .home-btn-left .btn-eft {
    font-size: 15px;
    padding: 25px;
  }
}
@media (min-width: 1850px) {
  .front-container .front-wrapper .sec1 .home-left-box .home-left-cont .home-left-wrap .home-left-wrapbox .home-btn-left .btn-eft {
    font-size: 15px;
    padding: 30px;
    min-width: 350px;
  }
}
.front-container .front-wrapper .sec2 {
  background: #17171c;
}
@media only screen and (max-width: 767px) {
  .front-container .front-wrapper .sec2 {
    width: 100%!important;
    height: 50%!important;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1199px) and (min-height: 1024px) and (max-height: 1366px) {
  .front-container .front-wrapper .sec2 {
    width: 100%!important;
    height: 45%!important;
  }
}
.front-container .front-wrapper .sec2 .home-right-box {
  position: relative;
  bottom: 0;
  z-index: 0;
  background: url(../img/home-right-illustration.png);
  background-size: cover;
  background-color: #17171c;
  -webkit-transition: transform 1000ms cubic-bezier(0.7, 0, 0.3, 1) 50ms;
  -moz-transition: transform 1000ms cubic-bezier(0.7, 0, 0.3, 1) 50ms;
  -ms-transition: transform 1000ms cubic-bezier(0.7, 0, 0.3, 1) 50ms;
  -o-transition: transform 1000ms cubic-bezier(0.7, 0, 0.3, 1) 50ms;
  height: 100%;
  -webkit-transform: translatex(0%);
  -moz-transform: translatex(0%);
  -ms-transform: translatex(0%);
  -o-transform: translatex(0%);
  transform: translatex(0%);
  transform: translatex(0%);
  -webkit-transition: transform 1000ms cubic-bezier(0.7, 0, 0.3, 1) 50ms;
  -moz-transition: transform 1000ms cubic-bezier(0.7, 0, 0.3, 1) 50ms;
  -ms-transition: transform 1000ms cubic-bezier(0.7, 0, 0.3, 1) 50ms;
  -o-transition: transform 1000ms cubic-bezier(0.7, 0, 0.3, 1) 50ms;
  transition: transform 1000ms cubic-bezier(0.7, 0, 0.3, 1) 50ms;
}
@media only screen and (max-width: 767px) {
  .front-container .front-wrapper .sec2 .home-right-box {
    background-attachment: fixed;
    background-position: center;
    z-index: 1;
    background: transparent;
  }
}
.front-container .front-wrapper .sec2 .home-right-box .home-right-cont {
  height: 100%;
  display: table;
  position: relative;
  width: 100%;
  background-color: rgba(23, 23, 28, 0.9);
  -webkit-transition: all 1.5s ease;
  -moz-transition: all 1.5s ease;
  -ms-transition: all 1.5s ease;
  -o-transition: all 1.5s ease;
}
@media only screen and (max-width: 767px) {
  .front-container .front-wrapper .sec2 .home-right-box .home-right-cont {
    background-color: transparent;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1199px) and (min-height: 1024px) and (max-height: 1366px) {
  .front-container .front-wrapper .sec2 .home-right-box .home-right-cont {
    background-color: transparent;
  }
}
.front-container .front-wrapper .sec2 .home-right-box .home-right-cont:hover {
  background-color: rgba(23, 23, 28, 0);
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
}
.front-container .front-wrapper .sec2 .home-right-box .home-right-cont .home-right-wrap {
  display: table-cell;
  vertical-align: middle;
}
.front-container .front-wrapper .sec2 .home-right-box .home-right-cont .home-right-wrap .home-right-wrapbox {
  /*left:15%;
		    				right:5%;*/

  margin: 0 auto;
  width: 80%;
  position: relative;
  max-width: 330px;
}
@media only screen and (max-width: 767px) {
  .front-container .front-wrapper .sec2 .home-right-box .home-right-cont .home-right-wrap .home-right-wrapbox {
    max-width: 300px;
  }
}
@media (min-width: 1200px) {
  .front-container .front-wrapper .sec2 .home-right-box .home-right-cont .home-right-wrap .home-right-wrapbox {
    max-width: 365px;
  }
}
@media (min-width: 1400px) {
  .front-container .front-wrapper .sec2 .home-right-box .home-right-cont .home-right-wrap .home-right-wrapbox {
    max-width: 400px;
  }
}
@media (min-width: 1850px) {
  .front-container .front-wrapper .sec2 .home-right-box .home-right-cont .home-right-wrap .home-right-wrapbox {
    max-width: 600px;
  }
}
@media only screen and (max-width: 480px) {
  .front-container .front-wrapper .sec2 .home-right-box .home-right-cont .home-right-wrap .home-right-wrapbox {
    margin-left: 48px;
    margin-right: 48px;
    width: auto;
  }
}
.front-container .front-wrapper .sec2 .home-right-box .home-right-cont .home-right-wrap .home-right-wrapbox h5 {
  font-family: 'Avenir-Light';
  font-size: 18px;
  color: #FFF;
}
@media only screen and (max-width: 767px) {
  .front-container .front-wrapper .sec2 .home-right-box .home-right-cont .home-right-wrap .home-right-wrapbox h5 {
    font-size: 18px;
    line-height: 22px;
  }
}
@media only screen and (min-width: 992px) {
  .front-container .front-wrapper .sec2 .home-right-box .home-right-cont .home-right-wrap .home-right-wrapbox h5 {
    font-size: 20px;
    line-height: 1.3;
  }
}
@media (min-width: 1200px) {
  .front-container .front-wrapper .sec2 .home-right-box .home-right-cont .home-right-wrap .home-right-wrapbox h5 {
    font-size: 22px;
    line-height: 1.3;
    margin-top: 33px;
    margin-bottom: 20px;
  }
}
@media (min-width: 1400px) {
  .front-container .front-wrapper .sec2 .home-right-box .home-right-cont .home-right-wrap .home-right-wrapbox h5 {
    font-size: 25px;
    line-height: 35px;
    margin-top: 35px;
    margin-bottom: 30px;
  }
}
@media (min-width: 1850px) {
  .front-container .front-wrapper .sec2 .home-right-box .home-right-cont .home-right-wrap .home-right-wrapbox h5 {
    font-size: 35px;
    line-height: 47px;
    margin-top: 35px;
    margin-bottom: 40px;
  }
}
.front-container .front-wrapper .sec2 .home-right-box .home-right-cont .home-right-wrap .home-right-wrapbox .home-btn-right {
  position: relative;
  text-transform: uppercase;
  margin-top: 20px;
}
@media only screen and (max-width: 767px) {
  .front-container .front-wrapper .sec2 .home-right-box .home-right-cont .home-right-wrap .home-right-wrapbox .home-btn-right {
    margin-top: 5px;
  }
}
@media (min-width: 1400px) {
  .front-container .front-wrapper .sec2 .home-right-box .home-right-cont .home-right-wrap .home-right-wrapbox .home-btn-right {
    margin-top: 25px;
  }
}
.front-container .front-wrapper .sec2 .home-right-box .home-right-cont .home-right-wrap .home-right-wrapbox .home-btn-right .btn-eft:hover,
.front-container .front-wrapper .sec2 .home-right-box .home-right-cont .home-right-wrap .home-right-wrapbox .home-btn-right .btn-eft:focus {
  color: #000;
}
@media only screen and (max-width: 767px) {
  .front-container .front-wrapper .sec2 .home-right-box .home-right-cont .home-right-wrap .home-right-wrapbox .home-btn-right .btn-eft {
    padding: 10px 20px;
    min-width: auto;
  }
}
@media (min-width: 1400px) {
  .front-container .front-wrapper .sec2 .home-right-box .home-right-cont .home-right-wrap .home-right-wrapbox .home-btn-right .btn-eft {
    font-size: 15px;
    padding: 25px;
  }
}
@media (min-width: 1850px) {
  .front-container .front-wrapper .sec2 .home-right-box .home-right-cont .home-right-wrap .home-right-wrapbox .home-btn-right .btn-eft {
    font-size: 15px;
    padding: 30px;
    min-width: 350px;
  }
}
.iamiphone .sec1 .hm-mobimg-wp {
  clip: auto;
}
.iamiphone .sec2 .home-right-box {
  background: url(../img/home-right-illustration.png) !important;
  background-size: cover!important;
}
.iamiphone .sec2 .hm-mobimg-wp {
  display: none!important;
  clip: auto;
}
.otherphone .front-container .sec1 .hm-mobimg-wp {
  clip: rect(0, auto, auto, 0);
  clip-path: inset(0px 0px 0px 0px);
  -webkit-background-clip: rect(0, auto, auto, 0);
  -moz-background-clip: rect(0, auto, auto, 0);
  -ms-background-clip: rect(0, auto, auto, 0);
  background-clip: rect(0, auto, auto, 0);
}
.otherphone .front-container .sec2 .home-right-box {
  /*background: url(../img/home-right-illustration.png);
				 background-size:cover;*/

}
.otherphone .front-container .sec2 .hm-mobimg-wp {
  display: block!important;
  clip: auto;
  clip: rect(0, auto, auto, 0);
  clip-path: inset(0px 0px 0px 0px);
  -webkit-background-clip: rect(0, auto, auto, 0);
  -moz-background-clip: rect(0, auto, auto, 0);
  -ms-background-clip: rect(0, auto, auto, 0);
  background-clip: rect(0, auto, auto, 0);
}
.about-wrapper {
  background: #17171c;
  min-height: 200vh;
}
.about-section1 {
  height: 100vh;
  position: relative;
  width: 100%;
}
.ab-sec-table {
  display: table;
  min-height: 100vh;
  width: 100%;
  height: 100vh;
  /* for Firefox  */

}
.ab-sec-table .ab-sec-table-cell {
  display: table-cell;
  vertical-align: middle;
}
.ab-sec-table .ab-sec-table-cell p {
  font-family: "Avenir-Light";
  font-size: 25px;
  color: #FFF;
  line-height: 30px;
}
@media (min-width: 1400px) {
  .ab-sec-table .ab-sec-table-cell p {
    font-size: 35px;
    line-height: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .ab-sec-table .ab-sec-table-cell p {
    font-size: 20px;
    line-height: 26px;
  }
}
.ab-sec-table .ab-sec-table-cell .ab-sec3-1box p {
  text-align: center;
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
}
.ab-sec-table .ab-sec-table-cell .btn {
  z-index: 101;
}
@media (min-width: 1400px) {
  .ab-sec-table .ab-sec-table-cell .btn {
    font-size: 20px;
  }
}
.ab-sec-table .ab-sec-table-cell .ab-c2 {
  font-size: 20px;
  line-height: 25px;
}
@media (min-width: 1400px) {
  .ab-sec-table .ab-sec-table-cell .ab-c2 {
    font-size: 25px;
    line-height: 30px;
  }
}
.abouth1 {
  font-family: "Avenir-Black";
  font-size: 35px;
  color: #FFF;
  margin-bottom: 20px;
}
@media only screen and (min-width: 992px) {
  .abouth1 {
    font-size: 45px;
    margin-bottom: 25px;
  }
}
@media (min-width: 1400px) {
  .abouth1 {
    font-size: 60px;
    margin-bottom: 25px;
  }
}
.abouth2 {
  font-family: "Avenir-Black";
  font-size: 20px;
  color: #FFF;
  margin-bottom: 20px;
}
@media only screen and (min-width: 992px) {
  .abouth2 {
    font-size: 25px;
    margin-bottom: 25px;
  }
}
@media (min-width: 1400px) {
  .abouth2 {
    font-size: 30px;
    margin-bottom: 25px;
  }
}
.logo-icons {
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 0px;
  padding-right: 5px;
}
@media only screen and (max-width: 480px) {
  .logo-icons {
    margin-bottom: 0px;
  }
}
@media (min-width: 1200px) {
  .logo-icons {
    padding-top: 20px;
  }
}
@media (min-width: 1400px) {
  .logo-icons {
    /*padding-top:40px;*/
  
  }
}
.logo-icons .logo-clien {
  position: relative;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .logo-icons .logo-clien {
    height: auto;
  }
}
@media only screen and (min-width: 768px) {
  .logo-icons .logo-clien {
    height: 58px;
  }
}
@media only screen and (min-width: 992px) {
  .logo-icons .logo-clien {
    height: 68px;
  }
}
@media (min-width: 1200px) {
  .logo-icons .logo-clien {
    height: 80px;
  }
}
@media (min-width: 1400px) {
  .logo-icons .logo-clien {
    height: 95px;
  }
}
@media (min-width: 1850px) {
  .logo-icons .logo-clien {
    height: 100px;
  }
}
.logo-icons .logo-clien img {
  position: absolute;
  left: 0;
  -webkit-transition: opacity 0.2s ease-in-out;
  -moz-transition: opacity 0.2s ease-in-out;
  -ms-transition: opacity 0.2s ease-in-out;
  -o-transition: opacity 0.2s ease-in-out;
}
@media (min-width: 1400px) {
  .logo-icons .logo-clien img {
    max-width: 210px;
  }
}
.logo-icons .logo-clien img.client-top {
  opacity: 1;
  z-index: 2;
}
@media only screen and (max-width: 767px) {
  
}
@media only screen and (max-width: 767px) {
  .logo-icons .logo-clien img.client-bottom {
    position: relative;
    opacity: 0;
  }
}
@media only screen and (min-width: 768px) {
  .logo-icons .logo-clien img.client-bottom {
    opacity: 0;
  }
}
.logo-icons .logo-clien:hover img.client-top {
  opacity: 0;
}
.logo-icons .logo-clien:hover img.client-bottom {
  opacity: 1;
}
.about-section2 {
  min-height: 100vh;
  position: relative;
  width: 100%;
  /*background:#020102;*/

  overflow: hidden;
}
.about-section3 {
  position: relative;
  width: 100%;
}
@media smartphone {
  .about-section3 {
    display: none;
  }
}
.about-section4 {
  min-height: 100vh;
  position: relative;
  width: 100%;
  background: #1e1e23;
}
.storytellers-bottom-space {
  height: 20px;
  width: 100%;
  position: relative;
  display: block;
}
@media (min-width: 1200px) {
  .storytellers-bottom-space {
    height: 25px;
  }
}
@media (min-width: 1400px) {
  .storytellers-bottom-space {
    height: 50px;
  }
}
/* */
@media only screen and (max-width: 767px) {
  .wc_services {
    width: 150%;
  }
}
.homehead {
  font-size: 30px;
  text-align: left;
  color: #FFF;
  line-height: 20px;
  font-weight: bold;
  line-height: 1.1;
  font-family: Avenir-Heavy;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .homehead {
    font-size: 48px;
  }
}
@media only screen and (max-width: 480px) {
  .homehead {
    font-size: 54px;
    line-height: 1.0;
  }
}
@media only screen and (min-width: 768px) {
  .homehead {
    font-size: 68px;
    width: 575px;
    line-height: 1.1;
  }
}
@media (min-width: 1200px) {
  .homehead {
    font-size: 84px;
    margin-bottom: 20px;
    width: 700px;
  }
}
@media (min-width: 1400px) {
  .homehead {
    margin-bottom: 50px;
    font-size: 98px;
    width: 820px;
  }
}
@media only screen and (max-width: 480px) {
  .homehead #js-rotation {
    display: block;
  }
}
.homehead #js-rotation .animated {
  /*dispaly:inline-block;
      animation-duration: 5.75s;*/

}
#ab-sec-video {
  position: absolute;
  /*right: 0;
  bottom: 0;
  min-width: 100%; 
  min-height: 100%;*/

}
.ab-sec-cont {
  position: absolute;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  color: #f1f1f1;
  width: 100%;
}
.about-arrow {
  top: 93vh;
  left: 0;
  position: absolute;
  width: 100%;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .about-arrow {
    top: 85vh;
  }
}
.about-section2 {
  background: url(../img/storyteller/bgedge.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 767px) {
  .about-section2 {
    background: url(../img/storyteller/bgmobile.jpg);
    background-size: cover;
    background-repeat: no-repeat;
  }
}
.cl-wrapper {
  background: #17171C;
}
.cl-section1 {
  position: relative;
  width: 100%;
  padding-top: 200px;
}
@media (min-width: 1850px) {
  .cl-section1 {
    padding-top: 250px;
  }
}
.cl-section1 h1 {
  font-family: "Avenir-Black";
  font-size: 35px;
  color: #FFF;
  margin-bottom: 20px;
}
@media only screen and (min-width: 992px) {
  .cl-section1 h1 {
    font-size: 45px;
    margin-bottom: 25px;
  }
}
@media (min-width: 1400px) {
  .cl-section1 h1 {
    font-size: 60px;
    margin-bottom: 25px;
  }
}
.cl-section2 {
  height: 100vh;
  position: relative;
  width: 100%;
}
.cl-content-wrap {
  position: absolute;
  margin-left: 30px;
  max-width: 300px;
  z-index: 1;
}
@media only screen and (max-width: 480px) {
  .cl-content-wrap {
    text-align: center;
    width: 100%;
    max-width: 100%;
    margin-left: 0px;
  }
}
@media only screen and (min-width: 768px) {
  .cl-content-wrap {
    margin-left: 65px;
  }
}
@media (min-width: 1200px) {
  .cl-content-wrap {
    max-width: 340px;
  }
}
@media (min-width: 1400px) {
  .cl-content-wrap {
    margin-left: 108px;
  }
}
.cl-content-wrap .cslist-headtext {
  color: #FFF;
  margin-top: 50px;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: .3125rem;
  line-height: 1.4;
  font-family: "Avenir-Light";
  max-width: 280px;
}
@media only screen and (max-width: 767px) {
  
}
@media only screen and (max-width: 480px) {
  .cl-content-wrap .cslist-headtext {
    max-width: 100%;
    font-size: 10px;
    padding: 0 10%;
    margin-top: 60px;
    margin-bottom: 0px;
  }
}
@media only screen and (min-width: 768px) {
  .cl-content-wrap .cslist-headtext {
    margin-top: 60px;
  }
}
@media (min-width: 1200px) {
  .cl-content-wrap .cslist-headtext {
    font-size: 15px;
    max-width: 305px;
    margin-top: 65px;
  }
}
@media (min-width: 1400px) {
  .cl-content-wrap .cslist-headtext {
    margin-top: 100px;
  }
}
.cl-content-wrap .cslist-tagline {
  color: #FFF;
  font-family: "Avenir-Black";
  margin-top: 20px;
  font-size: 40px;
  max-width: 380px;
}
@media only screen and (max-width: 767px) {
  .cl-content-wrap .cslist-tagline {
    font-size: 22px;
  }
}
@media only screen and (max-width: 480px) {
  .cl-content-wrap .cslist-tagline {
    text-align: center;
    font-size: 25px;
    height: 125px;
    padding: 0 11%;
    min-width: 100%;
    /*vertical-align: middle;
        display: table-cell;
        width:100%;
        max-width: auto;*/
  
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
@media only screen and (max-width: 350px) {
  .cl-content-wrap .cslist-tagline {
    margin-top: 20px;
    margin-bottom: 0px;
  }
}
@media only screen and (min-width: 768px) {
  .cl-content-wrap .cslist-tagline {
    max-width: 250px;
    margin-top: 25px;
    line-height: 1.1;
    font-size: 32px;
  }
}
@media only screen and (min-width: 992px) {
  .cl-content-wrap .cslist-tagline {
    max-width: 305px;
    margin-top: 25px;
    line-height: 1.2;
    font-size: 38px;
  }
}
@media (min-width: 1200px) {
  .cl-content-wrap .cslist-tagline {
    font-size: 45px;
    max-width: 340px;
    margin-top: 60px;
    line-height: 1.2;
  }
}
@media (min-width: 1400px) {
  .cl-content-wrap .cslist-tagline {
    margin-top: 100px;
  }
}
.cl-content-wrap .cslist-button {
  margin-top: 20px;
}
.cl-content-wrap .cslist-button:hover {
  background: #FFF;
  -webkit-transition: 1s all ease;
  -moz-transition: 1s all ease;
  -ms-transition: 1s all ease;
  -o-transition: 1s all ease;
  color: #000;
}
@media only screen and (max-width: 767px) {
  .cl-content-wrap .cslist-button {
    margin-top: 20px;
    font-size: 16px;
    padding: 8px 20px;
    min-width: 170px;
  }
}
@media only screen and (max-width: 480px) {
  .cl-content-wrap .cslist-button {
    font-size: 10px;
    margin-top: 5px;
  }
}
@media only screen and (min-width: 768px) {
  .cl-content-wrap .cslist-button {
    margin-top: 20px;
    min-width: 180px;
    padding: 8px 20px;
  }
}
@media (min-width: 1200px) {
  .cl-content-wrap .cslist-button {
    margin-top: 35px;
    min-width: 250px;
    padding: 16px 40px;
  }
}
@media (min-width: 1400px) {
  .cl-content-wrap .cslist-button {
    margin-top: 35px;
  }
}
.cs-list-item {
  transform: translate(0);
}
@media only screen and (max-width: 767px) {
  .cs-list-item {
    opacity: 1!important;
    transform: translatey(0px) !important;
  }
}
@media only screen and (max-width: 480px) {
  .cs-list-item .cs-list-item-a {
    overflow: hidden;
    position: relative;
    height: 335px;
    display: block;
  }
}
.cs-list-item .cs-span-count {
  position: absolute;
  right: 20px;
  font-size: 35px;
  top: 5px;
  color: white;
  font-family: 'Avenir-Heavy';
  z-index: 1;
}
@media only screen and (max-width: 480px) {
  .cs-list-item .cs-span-count {
    top: 40px;
    right: -15px;
  }
}
@media only screen and (min-width: 768px) {
  .cs-list-item .cs-span-count {
    font-size: 50px;
    top: 40px;
  }
}
@media (min-width: 1200px) {
  .cs-list-item .cs-span-count {
    font-size: 60px;
    top: 33px;
  }
}
.cs-list-item > a img {
  transition: 1s all ease;
}
@media only screen and (max-width: 480px) {
  
}
.cs-list-item > a:hover img {
  /*animation-name:clpulse;
  animation-duration: 2s;
  animation-fill-mode:both;*/

  transition: 1s all ease;
}
@media only screen and (min-width: 768px) {
  .cs-list-item > a:hover img {
    transform: scale3d(1.05, 1.05, 1.05);
  }
}
@media only screen and (max-width: 767px) {
  .cs-list-item:nth-child(2):nth-child(3) {
    margin: 20% 0;
  }
}
@keyframes clpulse {
  0% {
    transform: scalex(1);
  }
  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    transform: scalex(1);
  }
}
.pulse {
  animation-name: clpulse;
}
/* Overlay style */
.work-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(103, 30, 83, 0.5);
}
/* Effects */
.work-overlay-scale {
  visibility: hidden;
  opacity: 0;
  -webkit-transform: scale(0.9);
  transform: scale(0.9);
  /*-webkit-transition: -webkit-transform 0.2s, opacity 0.2s, visibility 0s 0.2s;
  transition: transform 0.2s, opacity 0.2s, visibility 0s 0.2s;*/

  -webkit-transition: -webkit-transform 0.2s, visibility 0s 0.2s;
  transition: transform 0.2s, visibility 0s 0.2s;
}
.work-overlay-scale.open {
  visibility: visible;
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: -webkit-transform 0.4s, opacity 0.4s;
  transition: transform 0.4s, opacity 0.4s;
  z-index: 101;
}
.contact-wrapper {
  background: #000000;
  min-height: 100vh;
}
@media only screen and (max-width: 767px) {
  .contact-wrapper {
    padding-top: 150px;
    z-index: 106;
  }
}
.contact-section1 {
  height: 100vh;
  position: relative;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .contact-section1 {
    height: auto;
  }
}
.contact-sec-table {
  display: table;
  min-height: 100vh;
  width: 100%;
  padding-top: 100px;
}
@media only screen and (max-width: 767px) {
  .contact-sec-table {
    padding-top: 0px;
  }
}
.contact-sec-table .contact-sec-table-cell {
  display: table-cell;
  vertical-align: middle;
}
.contact_section,
.brief-contact {
  padding-left: 30px;
}
@media only screen and (max-width: 767px) {
  .contact_section,
  .brief-contact {
    padding-left: 0px;
  }
}
@media only screen and (min-width: 768px) {
  .contact_section,
  .brief-contact {
    padding-top: 50px;
  }
}
@media (min-width: 1200px) {
  .contact_section,
  .brief-contact {
    padding-top: 0px;
  }
}
.contact_section p,
.brief-contact p {
  font-family: "Avenir-Black";
  font-size: 12px;
}
@media (min-width: 1200px) {
  .contact_section p,
  .brief-contact p {
    font-size: 14px;
  }
}
@media (min-width: 1400px) {
  .contact_section p,
  .brief-contact p {
    font-size: 15px;
    line-height: 18px;
  }
}
.contact_section p.p-email,
.brief-contact p.p-email,
.contact_section .p.p-phoneno,
.brief-contact .p.p-phoneno {
  font-family: "Avenir-Black";
}
@media (min-width: 1400px) {
  .contact_section p.p-email,
  .brief-contact p.p-email,
  .contact_section .p.p-phoneno,
  .brief-contact .p.p-phoneno {
    font-size: 15px!important;
    line-height: 18px;
  }
}
@media only screen and (max-width: 767px) {
  .contact_section .socialone ul li,
  .brief-contact .socialone ul li {
    margin-left: 0px;
  }
}
.contact_section .socialone ul li:hover .soc-icon svg .st0,
.brief-contact .socialone ul li:hover .soc-icon svg .st0 {
  fill: #ff5b4a;
}
.contact_section .socialone ul li .soc-icon svg .st0,
.brief-contact .socialone ul li .soc-icon svg .st0 {
  fill: #FFFFFF;
}
.contact_section .socialone:hover ul,
.brief-contact .socialone:hover ul {
  position: relative;
}
@media only screen and (max-width: 767px) {
  .contact_section .address-box .nav-tabs li:first-child a,
  .brief-contact .address-box .nav-tabs li:first-child a {
    padding-left: 0px;
  }
}
.contact_section .address-box .nav-tabs li a,
.brief-contact .address-box .nav-tabs li a {
  font-size: 14px;
  padding: 10px 7px;
  color: #ffffff;
}
@media only screen and (min-width: 992px) {
  .contact_section .address-box .nav-tabs li a,
  .brief-contact .address-box .nav-tabs li a {
    padding: 12px 14px;
  }
}
@media (min-width: 1200px) {
  .contact_section .address-box .nav-tabs li a,
  .brief-contact .address-box .nav-tabs li a {
    font-size: 18px;
  }
}
@media (min-width: 1400px) {
  .contact_section .address-box .nav-tabs li a,
  .brief-contact .address-box .nav-tabs li a {
    font-size: 23px;
  }
}
.contact_section .address-box .nav-tabs .active a,
.brief-contact .address-box .nav-tabs .active a {
  color: #ff5851;
}
.contact-form {
  width: 100%;
}
@media (min-width: 1200px) {
  .contact-form .form-control {
    min-height: 45px;
  }
}
@media (min-width: 1400px) {
  .contact-form .form-control {
    margin-top: 15px;
    min-height: 45px;
  }
}
.contact-form input {
  font-size: 16px;
  color: #FFF;
  width: 100%;
  height: 34px;
  outline: 0;
  margin-bottom: 18px;
  border-radius: 0;
  background-color: #212121;
  padding: 2%;
  border: none;
  font-family: "Avenir-Light";
  -webkit-transition: 1s all ease;
  -moz-transition: 1s all ease;
  -ms-transition: 1s all ease;
  -o-transition: 1s all ease;
}
.contact-form input:focus {
  box-shadow: inset 0 0px 1px #ffffff, 0 0 1px #ffffff;
}
@media (min-width: 1400px) {
  .contact-form input {
    font-size: 18px;
  }
}
.contact-form button {
  width: 135px;
  height: 40px;
  border-radius: 0;
  background-color: #000000;
  box-shadow: none;
  margin-top: 18px;
  text-transform: uppercase;
  text-shadow: none;
  border: 1px solid #FFF;
  color: #FFF;
  font-family: "PlayfairDisplay-Bold";
  letter-spacing: 3px;
  font-size: 12px;
}
.contact-form button:hover {
  background-color: #FFF;
  color: #17171c;
}
.contact-form button:focus {
  outline: none;
}
.contact-form button[disabled]:hover {
  background-color: #ff5851;
  border-color: #ad0600;
}
.contact-form textarea {
  width: 100%;
  min-height: 90px;
  background-color: #212121;
  border: 0;
  border-radius: 0;
  font-size: 16px;
  color: #FFF;
  padding: 2%;
  -webkit-transition: 1s all ease;
  -moz-transition: 1s all ease;
  -ms-transition: 1s all ease;
  -o-transition: 1s all ease;
}
.contact-form textarea:focus {
  box-shadow: inset 0 0px 1px #ffffff, 0 0 1px #ffffff;
}
@media (min-width: 1400px) {
  .contact-form textarea {
    font-size: 18px;
  }
}
/* Brief Slide */
.brief-slide {
  background: #000000;
  height: 100%;
  position: fixed;
  width: 100%;
  z-index: 102;
}
@media only screen and (min-width: 768px) {
  .brief-contact {
    margin-bottom: 70px;
  }
}
@media (min-width: 1200px) {
  .brief-contact {
    margin-bottom: 10px;
  }
}
.button-main-brief {
  position: fixed;
  top: 50px;
  right: 60px;
  display: block;
  overflow: hidden;
  cursor: pointer;
  z-index: 100;
  -webkit-transition: all 1s ease-in-out;
  -moz-transition: all 1s ease-in-out;
  -ms-transition: all 1s ease-in-out;
  -o-transition: all 1s ease-in-out;
}
@media (min-width: 1400px) {
  .button-main-brief {
    top: 50px;
    right: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .button-main-brief {
    top: 17px;
    right: 20px;
  }
}
.body-home .button-main-brief {
  -webkit-transition: all 1s ease-in-out;
  -moz-transition: all 1s ease-in-out;
  -ms-transition: all 1s ease-in-out;
  -o-transition: all 1s ease-in-out;
}
@media (min-width: 1400px) {
  .body-home .button-main-brief {
    top: 100px;
    right: 7%;
  }
}
@media (min-width: 1850px) {
  .body-home .button-main-brief {
    top: 120px;
    right: 7%;
  }
}
@media only screen and (max-width: 767px) {
  .body-home .button-main-brief {
    right: 40px;
    top: 40px;
  }
}
@media only screen and (max-width: 480px) {
  .body-home .button-main-brief {
    right: 40px;
    top: 45px;
  }
}
.team-wrapper {
  background: #17171c;
  min-height: 100vh;
}
.team-box-item {
  border-radius: 50%;
  overflow: hidden;
  margin-top: 30px;
  position: relative;
}
.team-box-item span {
  position: absolute;
  top: 5px;
  bottom: 5px;
  left: 5px;
  right: 5px;
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.9);
  border-radius: 50%;
}
.particle-container .container {
  width: 100%;
  height: 100%;
  height: 100vh;
  overflow: hidden !important;
}
.particle-container h1 {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: bold;
  font-size: 90px;
  letter-spacing: 20px;
  text-transform: uppercase;
  text-align: center;
  color: #B5B5B5;
  margin: 0px;
  padding: 0px;
}
.particle-container h2 {
  font-family: "Source Sans Pro", sans-serif;
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 20px;
  text-transform: uppercase;
  text-align: center;
  color: #B5B5B5;
  line-height: 50px;
  padding: 0px;
  margin: 0px;
}
.particle-container h2 a {
  color: #B5B5B5;
  text-decoration: none;
  border-bottom: 5px solid #B5B5B5;
  margin: 0;
  padding: 0;
}
.particle-container h2 a span {
  letter-spacing: 0px !important;
  padding-right: 3px;
}
.particle-container h2 a:hover {
  color: #808080;
  border-bottom: 5px solid #808080;
}
.particle-container #scene ul {
  width: 100% !important;
  height: 100% !important;
  height: 100vh !important;
  overflow: hidden;
  position: relative;
}
.particle-container .text {
  position: relative;
  top: 50%;
  -webkit-transform: translatey(-50%) !important;
  -ms-transform: translatey(-50%) !important;
  transform: translatey(-50%) !important;
  z-index: 3;
  display: block;
}
canvas {
  display: block;
  vertical-align: bottom;
}
#particles-js {
  position: absolute;
  width: 100%;
  height: 100vh;
  /*background-image: url("");*/

  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
  top: 0;
}
.pc-wrapper {
  background-color: #17171c;
}
.minicarousel {
  position: relative;
  overflow: hidden;
  /* Number text (1/3 etc) */

}
.minicarousel ul {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
}
.minicarousel ul li img {
  width: 100%;
  margin-bottom: 0px!important;
}
.minicarousel .bt-mcbtn {
  position: absolute;
  top: 45%;
  color: #FFF;
  font-size: 25px;
}
@media only screen and (max-width: 767px) {
  .minicarousel .bt-mcbtn {
    font-size: 20px;
    top: 42%;
  }
}
@media only screen and (min-width: 768px) {
  .minicarousel .bt-mcbtn {
    font-size: 25px;
  }
}
@media (min-width: 1200px) {
  
}
@media (min-width: 1850px) {
  
}
.minicarousel .bt-mcbtn span {
  text-shadow: 1px 1px 0 rgba(1, 1, 1, 0.5), -1px -1px 0 rgba(1, 1, 1, 0.5), 1px -1px 0 rgba(1, 1, 1, 0.5), -1px 1px 0 rgba(1, 1, 1, 0.5), 1px 1px 0 rgba(1, 1, 1, 0.5);
}
.minicarousel .bt-left {
  left: 10px;
}
.minicarousel .bt-left .b-arrow-left {
  background: url("../img/left-ar.png");
  background-repeat: no-repeat;
  width: 30px;
  height: 45px;
  display: block;
  background-size: contain;
}
@media only screen and (max-width: 767px) {
  .minicarousel .bt-left .b-arrow-left {
    width: 20px;
  }
}
.minicarousel .bt-right {
  right: 10px;
}
.minicarousel .bt-right .b-arrow-right {
  background: url("../img/right-ar.png");
  background-repeat: no-repeat;
  width: 30px;
  height: 45px;
  display: block;
  background-size: contain;
}
@media only screen and (max-width: 767px) {
  .minicarousel .bt-right .b-arrow-right {
    width: 20px;
  }
}
.minicarousel .numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
  background: #ff585199;
  z-index: 2;
}
.ng-cloak {
  display: none;
}
@media only screen and (min-width: 768px) {
  .body-home {
    overflow-y: hidden!important;
  }
}
.morphext > .animated {
  display: inline-block;
}
/* Slider test

.minicarousel ul{position:relative;padding: 5px;
  width: 100%;
  margin: auto;
  min-height:200px;
  margin-top: 40px;}
.minicarousel ul li{position: absolute;
  top: 0;
  left: 0;
  box-shadow: 0px 0px 15px #999;
  }
.minicarousel ul li.ng-hide-add,
.minicarousel ul li.ng-hide-remove {
  -webkit-transition: all linear 0.5s;
  -moz-transition: all linear 0.5s;
  -o-transition: all linear 0.5s;
  transition: all linear 0.5s;
  display: block!important;
}
.minicarousel ul li.ng-hide-add.ng-hide-add-active,
.minicarousel ul li.ng-hide-remove {
  opacity: 0;
}
.minicarousel ul li.ng-hide-add,
.minicarousel ul li.ng-hide-remove.ng-hide-remove-active {
  opacity: 1;
}
*/
/* slider Directive*/
.pm-slider {
  position: relative;
  padding: 5px;
  width: 100%;
  margin: auto;
  margin-top: 40px;
  min-height: 250px;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .pm-slider {
    min-height: 300px;
  }
}
@media only screen and (max-width: 480px) {
  .pm-slider {
    min-height: 220px;
  }
}
@media only screen and (min-width: 768px) {
  .pm-slider {
    min-height: 320px;
  }
}
@media only screen and (min-width: 992px) {
  .pm-slider {
    min-height: 375px;
  }
}
@media (min-width: 1200px) {
  .pm-slider {
    min-height: 540px;
  }
}
@media (min-width: 1400px) {
  .pm-slider {
    min-height: 540px;
  }
}
.pm-slider .slide {
  position: absolute;
  top: 0;
  left: 0;
  box-shadow: 0px 0px 15px #999;
}
.pm-slider .arrows {
  position: initial;
}
.pm-slider .arrows .left-arrr {
  left: 10px;
  top: 45%;
  position: absolute;
}
.pm-slider .arrows .right-arrr {
  right: 10px;
  top: 45%;
  position: absolute;
}
.pm-slider .slider-img {
  width: 100%;
}
.pm-slider .arrows img {
  height: 32px;
}
.pm-slider .slide.ng-hide-add,
.pm-slider .slide.ng-hide-remove {
  -webkit-transition: all linear 0.5s;
  -moz-transition: all linear 0.5s;
  -o-transition: all linear 0.5s;
  transition: all linear 0.5s;
  display: block!important;
}
.pm-slider .slide.ng-hide-add.ng-hide-add-active,
.pm-slider .slide.ng-hide-remove {
  opacity: 0;
}
.pm-slider .slide.ng-hide-add,
.pm-slider .slide.ng-hide-remove.ng-hide-remove-active {
  opacity: 1;
}
