@charset "UTF-8";
@import url('https://fonts.googleapis.com/css?family=Rubik:300,400,500&subset=latin-ext');
.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;
}
@-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;
}
@-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;
}
@-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;
}
@-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;
}
.flip-clock-wrapper * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  backface-visibility: hidden;
}
.flip-clock-wrapper a {
  cursor: pointer;
  text-decoration: none;
  color: #ccc;
}
.flip-clock-wrapper a:hover {
  color: #fff;
}
.flip-clock-wrapper ul {
  list-style: none;
}
.flip-clock-wrapper.clearfix:before,
.flip-clock-wrapper.clearfix:after {
  content: " ";
  display: table;
}
.flip-clock-wrapper.clearfix:after {
  clear: both;
}
.flip-clock-wrapper.clearfix {
  *zoom: 1;
}
.flip-clock-wrapper {
  font: normal 11px "Helvetica Neue", Helvetica, sans-serif;
  -webkit-user-select: none;
}
.flip-clock-meridium {
  background: none !important;
  box-shadow: 0 0 0 !important;
  font-size: 36px !important;
}
.flip-clock-meridium a {
  color: #313333;
}
.flip-clock-wrapper {
  text-align: center;
  position: relative;
  width: 100%;
  margin: 1em;
}
.flip-clock-wrapper:before,
.flip-clock-wrapper:after {
  content: " ";
  display: table;
}
.flip-clock-wrapper:after {
  clear: both;
}
.flip-clock-wrapper ul {
  position: relative;
  float: left;
  margin: 3px;
  width: 27px;
  height: 40px;
  font-size: 33px;
  font-weight: bold;
  line-height: 39px;
  border-radius: 6px;
  background: #000;
}
.flip-clock-wrapper ul li {
  z-index: 1;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  line-height: 39px;
  text-decoration: none !important;
}
.flip-clock-wrapper ul li:first-child {
  z-index: 2;
}
.flip-clock-wrapper ul li a {
  display: block;
  height: 100%;
  -webkit-perspective: 100px;
  -moz-perspective: 100px;
  perspective: 100px;
  margin: 0 !important;
  overflow: visible !important;
  cursor: default !important;
}
.flip-clock-wrapper ul li a div {
  z-index: 1;
  position: absolute;
  left: 0;
  width: 100%;
  height: 50%;
  font-size: 33px;
  overflow: hidden;
  outline: 1px solid transparent;
}
.flip-clock-wrapper ul li a div .shadow {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.flip-clock-wrapper ul li a div.up {
  -webkit-transform-origin: 50% 100%;
  -moz-transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  -o-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
  top: 0;
  border-radius: 6px 6px 0px 0px;
}
.flip-clock-wrapper ul li a div.up:after {
  content: "";
  position: absolute;
  top: 19px;
  left: 0;
  z-index: 5;
  width: 100%;
  height: 3px;
  background-color: #000;
  background-color: rgba(255,255,255,0.4);
}
.flip-clock-wrapper ul li a div.down {
  -webkit-transform-origin: 50% 0;
  -moz-transform-origin: 50% 0;
  -ms-transform-origin: 50% 0;
  -o-transform-origin: 50% 0;
  transform-origin: 50% 0;
  bottom: 0;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
}
.flip-clock-wrapper ul li a div div.inn {
  position: absolute;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 200%;
  color: #fff;
  text-align: center;
  background: #a92358;
  background: -moz-linear-gradient(-45deg,#a92358 0%,#a9233e 100%);
  background: -webkit-linear-gradient(-45deg,#a92358 0%,#a9233e 100%);
  background: linear-gradient(135deg,#a92358 0%,#a9233e 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#a92358',endColorstr='#a9233e',GradientType=1);
  border-radius: 6px;
  font-size: 30px;
}
.flip-clock-wrapper ul li a div.up div.inn {
  top: 0;
}
.flip-clock-wrapper ul li a div.down div.inn {
  bottom: 0;
}
.flip-clock-wrapper ul.play li.flip-clock-before {
  z-index: 3;
}
.flip-clock-wrapper ul.play li.flip-clock-active {
  -webkit-animation: asd 0.5s 0.5s linear both;
  -moz-animation: asd 0.5s 0.5s linear both;
  animation: asd 0.5s 0.5s linear both;
  z-index: 5;
}
.flip-clock-divider {
  float: left;
  display: inline-block;
  position: relative;
  width: 10px;
  height: 40px;
}
.flip-clock-divider:first-child {
  width: 0;
}
.flip-clock-dot {
  display: none;
  background: #323434;
  width: 10px;
  height: 10px;
  position: absolute;
  border-radius: 50%;
  box-shadow: 0 0 5px rgba(0,0,0,0.5);
  left: 5px;
}
.flip-clock-divider .flip-clock-label {
  position: absolute;
  top: -1.5em;
  right: -48px;
  color: black;
  text-shadow: none;
}
.flip-clock-divider.days .flip-clock-label {
  left: 14px;
}
.flip-clock-divider.minutes .flip-clock-label {
  right: -51px;
}
.flip-clock-divider.seconds .flip-clock-label {
  right: -51px;
}
.flip-clock-dot.top {
  top: 30px;
}
.flip-clock-dot.bottom {
  bottom: 30px;
}
@-webkit-keyframes asd {
  0% {
    z-index: 2;
  }
  20% {
    z-index: 4;
  }
  100% {
    z-index: 4;
  }
}
@-moz-keyframes asd {
  0% {
    z-index: 2;
  }
  20% {
    z-index: 4;
  }
  100% {
    z-index: 4;
  }
}
@-o-keyframes asd {
  0% {
    z-index: 2;
  }
  20% {
    z-index: 4;
  }
  100% {
    z-index: 4;
  }
}
@keyframes asd {
  0% {
    z-index: 2;
  }
  20% {
    z-index: 4;
  }
  100% {
    z-index: 4;
  }
}
.flip-clock-wrapper ul.play li.flip-clock-active .down {
  z-index: 2;
  -webkit-animation: turn 0.5s 0.5s linear both;
  -moz-animation: turn 0.5s 0.5s linear both;
  animation: turn 0.5s 0.5s linear both;
}
@-webkit-keyframes turn {
  0% {
    -webkit-transform: rotateX(90deg);
  }
  100% {
    -webkit-transform: rotateX(0deg);
  }
}
@-moz-keyframes turn {
  0% {
    -moz-transform: rotateX(90deg);
  }
  100% {
    -moz-transform: rotateX(0deg);
  }
}
@-o-keyframes turn {
  0% {
    -o-transform: rotateX(90deg);
  }
  100% {
    -o-transform: rotateX(0deg);
  }
}
@keyframes turn {
  0% {
    transform: rotateX(90deg);
  }
  100% {
    transform: rotateX(0deg);
  }
}
.flip-clock-wrapper ul.play li.flip-clock-before .up {
  z-index: 2;
  -webkit-animation: turn2 0.5s linear both;
  -moz-animation: turn2 0.5s linear both;
  animation: turn2 0.5s linear both;
}
@-webkit-keyframes turn2 {
  0% {
    -webkit-transform: rotateX(0deg);
  }
  100% {
    -webkit-transform: rotateX(-90deg);
  }
}
@-moz-keyframes turn2 {
  0% {
    -moz-transform: rotateX(0deg);
  }
  100% {
    -moz-transform: rotateX(-90deg);
  }
}
@-o-keyframes turn2 {
  0% {
    -o-transform: rotateX(0deg);
  }
  100% {
    -o-transform: rotateX(-90deg);
  }
}
@keyframes turn2 {
  0% {
    transform: rotateX(0deg);
  }
  100% {
    transform: rotateX(-90deg);
  }
}
.flip-clock-wrapper ul li.flip-clock-active {
  z-index: 3;
}
.flip-clock-wrapper ul.play li.flip-clock-before .up .shadow {
  background: #a92358;
  background: -moz-linear-gradient(-45deg,#a92358 0%,#a9233e 100%);
  background: -webkit-linear-gradient(-45deg,#a92358 0%,#a9233e 100%);
  background: linear-gradient(135deg,#a92358 0%,#a9233e 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#a92358',endColorstr='#a9233e',GradientType=1);
  -webkit-animation: show 0.5s linear both;
  -moz-animation: show 0.5s linear both;
  animation: show 0.5s linear both;
}
.flip-clock-wrapper ul.play li.flip-clock-active .up .shadow {
  background: #a92358;
  background: -moz-linear-gradient(-45deg,#a92358 0%,#a9233e 100%);
  background: -webkit-linear-gradient(-45deg,#a92358 0%,#a9233e 100%);
  background: linear-gradient(135deg,#a92358 0%,#a9233e 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#a92358',endColorstr='#a9233e',GradientType=1);
  -webkit-animation: hide 0.5s 0.3s linear both;
  -moz-animation: hide 0.5s 0.3s linear both;
  animation: hide 0.5s 0.3s linear both;
}
.flip-clock-wrapper ul.play li.flip-clock-before .down .shadow {
  background: #a92358;
  background: -moz-linear-gradient(-45deg,#a92358 0%,#a9233e 100%);
  background: -webkit-linear-gradient(-45deg,#a92358 0%,#a9233e 100%);
  background: linear-gradient(135deg,#a92358 0%,#a9233e 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#a92358',endColorstr='#a9233e',GradientType=1);
  -webkit-animation: show 0.5s linear both;
  -moz-animation: show 0.5s linear both;
  animation: show 0.5s linear both;
}
.flip-clock-wrapper ul.play li.flip-clock-active .down .shadow {
  background: #a92358;
  background: -moz-linear-gradient(-45deg,#a92358 0%,#a9233e 100%);
  background: -webkit-linear-gradient(-45deg,#a92358 0%,#a9233e 100%);
  background: linear-gradient(135deg,#a92358 0%,#a9233e 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#a92358',endColorstr='#a9233e',GradientType=1);
  -webkit-animation: hide 0.5s 0.3s linear both;
  -moz-animation: hide 0.5s 0.3s linear both;
  animation: hide 0.5s 0.2s linear both;
}
@-webkit-keyframes show {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes show {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-o-keyframes show {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes show {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes hide {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-moz-keyframes hide {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-o-keyframes hide {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes hide {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@media (max-width: 991px) {
  .hide_on_lower {
    display: none !important;
  }
}
@media (min-width: 992px) {
  .hide_on_higher {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .hide_on_mobile {
    display: none;
  }
}
@media (min-width: 992px) {
  .hide_on_mobile {
    display: inherit;
  }
}
@media (min-width: 1200px) {
  .hide_on_mobile {
    display: inherit;
  }
}
@media (max-width: 719px) {
  .hide_on_mobile_xs {
    display: none !important;
  }
}
@media (min-width: 991px) {
  .hide_on_mobile_xs {
    display: inherit;
  }
}
@media (min-width: 992px) {
  .hide_on_mobile_xs {
    display: inherit;
  }
}
@media (min-width: 1200px) {
  .hide_on_mobile_xs {
    display: inherit;
  }
}
@media (max-width: 991px) {
  .show_on_mobile {
    display: block;
  }
}
@media (min-width: 992px) {
  .show_on_mobile {
    display: none;
  }
}
@media (min-width: 1200px) {
  .show_on_mobile {
    display: none;
  }
}
@media (max-width: 719px) {
  .show_on_mobile_xs {
    display: block;
  }
}
@media (min-width: 720px) {
  .show_on_mobile_xs {
    display: none;
  }
}
@media (min-width: 992px) {
  .show_on_mobile_xs {
    display: none;
  }
}
@media (min-width: 1200px) {
  .show_on_mobile_xs {
    display: none;
  }
}
@media (min-width: 992px) {
  .hide_on_desktop {
    display: none;
  }
}
@media (min-width: 1200px) {
  .hide_on_desktop {
    display: none;
  }
}
@media (max-width: 991px) {
  .center_content_on_mobile {
    text-align: center;
  }
}
.clearfix:before,
.clearfix:after {
  content: " ";
  display: table;
}
.clearfix:after {
  clear: both;
}
.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}
.container:before,
.container:after {
  content: " ";
  display: table;
}
.container:after {
  clear: both;
}
.container {
  width: 100%;
  max-width: 1300px;
}
.container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}
.container-fluid:before,
.container-fluid:after {
  content: " ";
  display: table;
}
.container-fluid:after {
  clear: both;
}
.row {
  margin-left: -15px;
  margin-right: -15px;
}
.row:before,
.row:after {
  content: " ";
  display: table;
}
.row:after {
  clear: both;
}
.col-xs-1,
.col-sm-1,
.col-md-1,
.col-lg-1,
.col-xs-2,
.col-sm-2,
.col-md-2,
.col-lg-2,
.col-xs-3,
.col-sm-3,
.col-md-3,
.col-lg-3,
.col-xs-4,
.col-sm-4,
.col-md-4,
.col-lg-4,
.col-xs-5,
.col-sm-5,
.col-md-5,
.col-lg-5,
.col-xs-6,
.col-sm-6,
.col-md-6,
.col-lg-6,
.col-xs-7,
.col-sm-7,
.col-md-7,
.col-lg-7,
.col-xs-8,
.col-sm-8,
.col-md-8,
.col-lg-8,
.col-xs-9,
.col-sm-9,
.col-md-9,
.col-lg-9,
.col-xs-10,
.col-sm-10,
.col-md-10,
.col-lg-10,
.col-xs-11,
.col-sm-11,
.col-md-11,
.col-lg-11,
.col-xs-12,
.col-sm-12,
.col-md-12,
.col-lg-12 {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}
.col-xs-1,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9,
.col-xs-10,
.col-xs-11,
.col-xs-12 {
  float: left;
}
.col-xs-12 {
  width: 100%;
}
.col-xs-11 {
  width: 91.66666667%;
}
.col-xs-10 {
  width: 83.33333333%;
}
.col-xs-9 {
  width: 75%;
}
.col-xs-8 {
  width: 66.66666667%;
}
.col-xs-7 {
  width: 58.33333333%;
}
.col-xs-6 {
  width: 50%;
}
.col-xs-5 {
  width: 41.66666667%;
}
.col-xs-4 {
  width: 33.33333333%;
}
.col-xs-3 {
  width: 25%;
}
.col-xs-2 {
  width: 16.66666667%;
}
.col-xs-1 {
  width: 8.33333333%;
}
.col-xs-pull-12 {
  right: 100%;
}
.col-xs-pull-11 {
  right: 91.66666667%;
}
.col-xs-pull-10 {
  right: 83.33333333%;
}
.col-xs-pull-9 {
  right: 75%;
}
.col-xs-pull-8 {
  right: 66.66666667%;
}
.col-xs-pull-7 {
  right: 58.33333333%;
}
.col-xs-pull-6 {
  right: 50%;
}
.col-xs-pull-5 {
  right: 41.66666667%;
}
.col-xs-pull-4 {
  right: 33.33333333%;
}
.col-xs-pull-3 {
  right: 25%;
}
.col-xs-pull-2 {
  right: 16.66666667%;
}
.col-xs-pull-1 {
  right: 8.33333333%;
}
.col-xs-pull-0 {
  right: auto;
}
.col-xs-push-12 {
  left: 100%;
}
.col-xs-push-11 {
  left: 91.66666667%;
}
.col-xs-push-10 {
  left: 83.33333333%;
}
.col-xs-push-9 {
  left: 75%;
}
.col-xs-push-8 {
  left: 66.66666667%;
}
.col-xs-push-7 {
  left: 58.33333333%;
}
.col-xs-push-6 {
  left: 50%;
}
.col-xs-push-5 {
  left: 41.66666667%;
}
.col-xs-push-4 {
  left: 33.33333333%;
}
.col-xs-push-3 {
  left: 25%;
}
.col-xs-push-2 {
  left: 16.66666667%;
}
.col-xs-push-1 {
  left: 8.33333333%;
}
.col-xs-push-0 {
  left: auto;
}
.col-xs-offset-12 {
  margin-left: 100%;
}
.col-xs-offset-11 {
  margin-left: 91.66666667%;
}
.col-xs-offset-10 {
  margin-left: 83.33333333%;
}
.col-xs-offset-9 {
  margin-left: 75%;
}
.col-xs-offset-8 {
  margin-left: 66.66666667%;
}
.col-xs-offset-7 {
  margin-left: 58.33333333%;
}
.col-xs-offset-6 {
  margin-left: 50%;
}
.col-xs-offset-5 {
  margin-left: 41.66666667%;
}
.col-xs-offset-4 {
  margin-left: 33.33333333%;
}
.col-xs-offset-3 {
  margin-left: 25%;
}
.col-xs-offset-2 {
  margin-left: 16.66666667%;
}
.col-xs-offset-1 {
  margin-left: 8.33333333%;
}
.col-xs-offset-0 {
  margin-left: 0%;
}
@media (min-width: 720px) {
  .col-sm-1,
  .col-sm-2,
  .col-sm-3,
  .col-sm-4,
  .col-sm-5,
  .col-sm-6,
  .col-sm-7,
  .col-sm-8,
  .col-sm-9,
  .col-sm-10,
  .col-sm-11,
  .col-sm-12 {
    float: left;
  }
  .col-sm-12 {
    width: 100%;
  }
  .col-sm-11 {
    width: 91.66666667%;
  }
  .col-sm-10 {
    width: 83.33333333%;
  }
  .col-sm-9 {
    width: 75%;
  }
  .col-sm-8 {
    width: 66.66666667%;
  }
  .col-sm-7 {
    width: 58.33333333%;
  }
  .col-sm-6 {
    width: 50%;
  }
  .col-sm-5 {
    width: 41.66666667%;
  }
  .col-sm-4 {
    width: 33.33333333%;
  }
  .col-sm-3 {
    width: 25%;
  }
  .col-sm-2 {
    width: 16.66666667%;
  }
  .col-sm-1 {
    width: 8.33333333%;
  }
  .col-sm-pull-12 {
    right: 100%;
  }
  .col-sm-pull-11 {
    right: 91.66666667%;
  }
  .col-sm-pull-10 {
    right: 83.33333333%;
  }
  .col-sm-pull-9 {
    right: 75%;
  }
  .col-sm-pull-8 {
    right: 66.66666667%;
  }
  .col-sm-pull-7 {
    right: 58.33333333%;
  }
  .col-sm-pull-6 {
    right: 50%;
  }
  .col-sm-pull-5 {
    right: 41.66666667%;
  }
  .col-sm-pull-4 {
    right: 33.33333333%;
  }
  .col-sm-pull-3 {
    right: 25%;
  }
  .col-sm-pull-2 {
    right: 16.66666667%;
  }
  .col-sm-pull-1 {
    right: 8.33333333%;
  }
  .col-sm-pull-0 {
    right: auto;
  }
  .col-sm-push-12 {
    left: 100%;
  }
  .col-sm-push-11 {
    left: 91.66666667%;
  }
  .col-sm-push-10 {
    left: 83.33333333%;
  }
  .col-sm-push-9 {
    left: 75%;
  }
  .col-sm-push-8 {
    left: 66.66666667%;
  }
  .col-sm-push-7 {
    left: 58.33333333%;
  }
  .col-sm-push-6 {
    left: 50%;
  }
  .col-sm-push-5 {
    left: 41.66666667%;
  }
  .col-sm-push-4 {
    left: 33.33333333%;
  }
  .col-sm-push-3 {
    left: 25%;
  }
  .col-sm-push-2 {
    left: 16.66666667%;
  }
  .col-sm-push-1 {
    left: 8.33333333%;
  }
  .col-sm-push-0 {
    left: auto;
  }
  .col-sm-offset-12 {
    margin-left: 100%;
  }
  .col-sm-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-sm-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-sm-offset-9 {
    margin-left: 75%;
  }
  .col-sm-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-sm-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-sm-offset-6 {
    margin-left: 50%;
  }
  .col-sm-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-sm-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-sm-offset-3 {
    margin-left: 25%;
  }
  .col-sm-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-sm-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-sm-offset-0 {
    margin-left: 0%;
  }
}
@media (min-width: 992px) {
  .col-md-1,
  .col-md-2,
  .col-md-3,
  .col-md-4,
  .col-md-5,
  .col-md-6,
  .col-md-7,
  .col-md-8,
  .col-md-9,
  .col-md-10,
  .col-md-11,
  .col-md-12 {
    float: left;
  }
  .col-md-12 {
    width: 100%;
  }
  .col-md-11 {
    width: 91.66666667%;
  }
  .col-md-10 {
    width: 83.33333333%;
  }
  .col-md-9 {
    width: 75%;
  }
  .col-md-8 {
    width: 66.66666667%;
  }
  .col-md-7 {
    width: 58.33333333%;
  }
  .col-md-6 {
    width: 50%;
  }
  .col-md-5 {
    width: 41.66666667%;
  }
  .col-md-4 {
    width: 33.33333333%;
  }
  .col-md-3 {
    width: 25%;
  }
  .col-md-2 {
    width: 16.66666667%;
  }
  .col-md-1 {
    width: 8.33333333%;
  }
  .col-md-pull-12 {
    right: 100%;
  }
  .col-md-pull-11 {
    right: 91.66666667%;
  }
  .col-md-pull-10 {
    right: 83.33333333%;
  }
  .col-md-pull-9 {
    right: 75%;
  }
  .col-md-pull-8 {
    right: 66.66666667%;
  }
  .col-md-pull-7 {
    right: 58.33333333%;
  }
  .col-md-pull-6 {
    right: 50%;
  }
  .col-md-pull-5 {
    right: 41.66666667%;
  }
  .col-md-pull-4 {
    right: 33.33333333%;
  }
  .col-md-pull-3 {
    right: 25%;
  }
  .col-md-pull-2 {
    right: 16.66666667%;
  }
  .col-md-pull-1 {
    right: 8.33333333%;
  }
  .col-md-pull-0 {
    right: auto;
  }
  .col-md-push-12 {
    left: 100%;
  }
  .col-md-push-11 {
    left: 91.66666667%;
  }
  .col-md-push-10 {
    left: 83.33333333%;
  }
  .col-md-push-9 {
    left: 75%;
  }
  .col-md-push-8 {
    left: 66.66666667%;
  }
  .col-md-push-7 {
    left: 58.33333333%;
  }
  .col-md-push-6 {
    left: 50%;
  }
  .col-md-push-5 {
    left: 41.66666667%;
  }
  .col-md-push-4 {
    left: 33.33333333%;
  }
  .col-md-push-3 {
    left: 25%;
  }
  .col-md-push-2 {
    left: 16.66666667%;
  }
  .col-md-push-1 {
    left: 8.33333333%;
  }
  .col-md-push-0 {
    left: auto;
  }
  .col-md-offset-12 {
    margin-left: 100%;
  }
  .col-md-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-md-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-md-offset-9 {
    margin-left: 75%;
  }
  .col-md-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-md-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-md-offset-6 {
    margin-left: 50%;
  }
  .col-md-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-md-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-md-offset-3 {
    margin-left: 25%;
  }
  .col-md-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-md-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-md-offset-0 {
    margin-left: 0%;
  }
}
@media (min-width: 1200px) {
  .col-lg-1,
  .col-lg-2,
  .col-lg-3,
  .col-lg-4,
  .col-lg-5,
  .col-lg-6,
  .col-lg-7,
  .col-lg-8,
  .col-lg-9,
  .col-lg-10,
  .col-lg-11,
  .col-lg-12 {
    float: left;
  }
  .col-lg-12 {
    width: 100%;
  }
  .col-lg-11 {
    width: 91.66666667%;
  }
  .col-lg-10 {
    width: 83.33333333%;
  }
  .col-lg-9 {
    width: 75%;
  }
  .col-lg-8 {
    width: 66.66666667%;
  }
  .col-lg-7 {
    width: 58.33333333%;
  }
  .col-lg-6 {
    width: 50%;
  }
  .col-lg-5 {
    width: 41.66666667%;
  }
  .col-lg-4 {
    width: 33.33333333%;
  }
  .col-lg-3 {
    width: 25%;
  }
  .col-lg-2 {
    width: 16.66666667%;
  }
  .col-lg-1 {
    width: 8.33333333%;
  }
  .col-lg-pull-12 {
    right: 100%;
  }
  .col-lg-pull-11 {
    right: 91.66666667%;
  }
  .col-lg-pull-10 {
    right: 83.33333333%;
  }
  .col-lg-pull-9 {
    right: 75%;
  }
  .col-lg-pull-8 {
    right: 66.66666667%;
  }
  .col-lg-pull-7 {
    right: 58.33333333%;
  }
  .col-lg-pull-6 {
    right: 50%;
  }
  .col-lg-pull-5 {
    right: 41.66666667%;
  }
  .col-lg-pull-4 {
    right: 33.33333333%;
  }
  .col-lg-pull-3 {
    right: 25%;
  }
  .col-lg-pull-2 {
    right: 16.66666667%;
  }
  .col-lg-pull-1 {
    right: 8.33333333%;
  }
  .col-lg-pull-0 {
    right: auto;
  }
  .col-lg-push-12 {
    left: 100%;
  }
  .col-lg-push-11 {
    left: 91.66666667%;
  }
  .col-lg-push-10 {
    left: 83.33333333%;
  }
  .col-lg-push-9 {
    left: 75%;
  }
  .col-lg-push-8 {
    left: 66.66666667%;
  }
  .col-lg-push-7 {
    left: 58.33333333%;
  }
  .col-lg-push-6 {
    left: 50%;
  }
  .col-lg-push-5 {
    left: 41.66666667%;
  }
  .col-lg-push-4 {
    left: 33.33333333%;
  }
  .col-lg-push-3 {
    left: 25%;
  }
  .col-lg-push-2 {
    left: 16.66666667%;
  }
  .col-lg-push-1 {
    left: 8.33333333%;
  }
  .col-lg-push-0 {
    left: auto;
  }
  .col-lg-offset-12 {
    margin-left: 100%;
  }
  .col-lg-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-lg-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-lg-offset-9 {
    margin-left: 75%;
  }
  .col-lg-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-lg-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-lg-offset-6 {
    margin-left: 50%;
  }
  .col-lg-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-lg-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-lg-offset-3 {
    margin-left: 25%;
  }
  .col-lg-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-lg-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-lg-offset-0 {
    margin-left: 0%;
  }
}
.center-block {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.pull-right {
  float: right !important;
}
.pull-left {
  float: left !important;
}
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}
audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}
audio:not([controls]) {
  display: none;
  height: 0;
}
[hidden],
template {
  display: none;
}
a {
  background-color: transparent;
}
a:active,
a:hover {
  outline: 0;
}
abbr[title] {
  border-bottom: 1px dotted;
}
b,
strong {
  font-weight: bold;
}
dfn {
  font-style: italic;
}
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
mark {
  background: #ff0;
  color: #000;
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
img {
  border: 0;
}
svg:not(:root) {
  overflow: hidden;
}
figure {
  margin: 1em 40px;
}
hr {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}
pre {
  overflow: auto;
}
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}
button {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}
button[disabled],
html input[disabled] {
  cursor: default;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
input {
  line-height: normal;
}
input[type="checkbox"],
input[type="radio"] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
input[type="search"] {
  -webkit-appearance: textfield;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}
legend {
  border: 0;
  padding: 0;
}
textarea {
  overflow: auto;
}
optgroup {
  font-weight: bold;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
td,
th {
  padding: 0;
}
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  font-size: 10px;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
}
input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
figure {
  margin: 0;
}
img {
  vertical-align: middle;
}
ul {
  list-style-type: none;
  margin: 0px;
  padding: 0px;
}
.gradient_1 {
  background: #a92358;
  background: -moz-linear-gradient(-45deg,#a92358 0%,#a9233e 100%);
  background: -webkit-linear-gradient(-45deg,#a92358 0%,#a9233e 100%);
  background: linear-gradient(135deg,#a92358 0%,#a9233e 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#a92358',endColorstr='#a9233e',GradientType=1);
}
.gradient_2 {
  background: #c93670;
  background: -moz-linear-gradient(-45deg,#c93670 0%,#a9233e 100%);
  background: -webkit-linear-gradient(-45deg,#c93670 0%,#a9233e 100%);
  background: linear-gradient(135deg,#c93670 0%,#a9233e 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#c93670',endColorstr='#a9233e',GradientType=1);
}
.gradient_text {
  background: #c93670;
  background: -moz-linear-gradient(-45deg,#c93670 0%,#a9233e 100%);
  background: -webkit-linear-gradient(-45deg,#c93670 0%,#a9233e 100%);
  background: linear-gradient(135deg,#c93670 0%,#a9233e 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#c93670',endColorstr='#a9233e',GradientType=1);
  display: inline-block;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
}
body,
html {
  height: 100%;
}
::selection {
  background: #a9233e;
  color: #fff;
}
a {
  text-decoration: none;
}
.container-wrapper {
  max-width: 1920px;
  margin-right: auto;
  margin-left: auto;
  position: relative;
}
.container-wrapper:before,
.container-wrapper:after {
  content: " ";
  display: table;
}
.container-wrapper:after {
  clear: both;
}
@media (min-width: 992px) {
  .pull-right:before,
  .pull-right:after {
    content: " ";
    display: table;
  }
  .pull-right:after {
    clear: both;
  }
  .pull-right > * {
    float: right;
  }
}
.btn {
  color: #444;
  font-size: 13px;
  font-family: 'Rubik', sans-serif;
  font-weight: 400;
  line-height: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  border: 0px;
  outline: none;
  padding: 15px 30px;
}
@media (max-width: 991px) {
  .btn {
    color: #444;
    font-size: 15px;
    font-family: 'Rubik', sans-serif;
    font-weight: 500;
    line-height: 15px;
    padding: 20px 30px;
    width: 100%;
  }
}
.btn:after {
  content: '>';
  margin-left: 10px;
}
.btn.btn-primary {
  color: #fff;
  background: #c93670;
  background: -moz-linear-gradient(-45deg,#c93670 0%,#a9233e 100%);
  background: -webkit-linear-gradient(-45deg,#c93670 0%,#a9233e 100%);
  background: linear-gradient(135deg,#c93670 0%,#a9233e 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#c93670',endColorstr='#a9233e',GradientType=1);
}
.btn > i {
  font-size: 24px;
  margin-right: 10px;
  vertical-align: middle;
  position: relative;
  top: -2px;
}
.btn > i.rotate {
  transform: rotate(-30deg);
}
.btn-secondary {
  color: #444;
  background: #fff;
  box-shadow: 0px 0px 20px rgba(0,0,0,0.2);
}
@keyframes client-image-translation {
  0% {
    transform: translateX(20px);
    opacity: 1;
  }
  80% {
    transform: translateX(0px);
    opacity: 1;
  }
}
@keyframes mouse-scroll {
  0% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(20px);
  }
}
@keyframes mouse-scroll-wheel {
  0% {
    transform: translateY(0px);
  }
  30% {
    transform: translateY(10px);
  }
}
@keyframes typedjsBlink {
  0% {
    opacity: 1;
  }
  70% {
    opacity: 0.0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes typedjsBlink {
  0% {
    opacity: 1;
  }
  70% {
    opacity: 0.0;
  }
  100% {
    opacity: 1;
  }
}
section.enter {
  position: relative;
  background-image: url(/img/enter.jpg);
  height: 100%;
  background-position-x: center;
  background-position-y: top;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 991px) {
  section.enter {
    text-align: center;
  }
}
section.enter .apple {
  position: absolute;
  top: 300px;
  left: 200px;
  bottom: 0px;
}
@media (max-width: 991px) {
  section.enter .apple {
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
  }
}
section.enter .text {
  color: #fff;
  font-size: 65px;
  font-family: 'Rubik', sans-serif;
  font-weight: 500;
  line-height: 65px;
}
@media (max-width: 991px) {
  section.enter .text {
    position: absolute;
    top: 50%;
    left: 0px;
    right: 0px;
    transform: translateY(-50%);
    text-align: center;
    color: #fff;
    font-size: 45px;
    font-family: 'Rubik', sans-serif;
    font-weight: 500;
    line-height: 55px;
  }
}
section.enter .text:after {
  visibility: visible;
  content: '|';
  color: #fff;
  display: inline-block;
  position: relative;
  font-weight: 500;
  margin-left: 0px;
  animation: typedjsBlink 0.5s infinite;
  -webkist-animation: typedjsBlink 0.5s infinite;
}
section.enter .cta {
  position: absolute;
  top: 500px;
  left: 200px;
}
@media (max-width: 991px) {
  section.enter .cta {
    position: absolute;
    top: auto;
    left: 0px;
    bottom: 20%;
    text-align: center;
    right: 0px;
  }
}
section.enter #mouse {
  position: absolute;
  bottom: 60px;
  left: calc(50% - 25px);
  width: 50px;
  animation: mouse-scroll ease 2.5s infinite;
}
@media (max-width: 991px) {
  section.enter #mouse {
    display: none;
  }
}
section.enter #mouse #mouse-scroll-wheel {
  animation: mouse-scroll-wheel ease 2.5s infinite;
}
section.claim {
  margin-top: 150px;
}
@media (max-width: 991px) {
  section.claim {
    margin-top: 0px;
  }
  section.claim .left {
    display: none;
  }
  section.claim .right {
    float: none;
    width: 100%;
  }
}
section.claim .image-apple {
  background: transparent url(/img/train.jpg);
  background-size: cover;
  background-position-y: -84px;
  background-position-x: right;
  background-repeat: no-repeat;
  height: 500px;
  position: relative;
  z-index: 1;
}
section.claim .text-apple {
  padding: 100px 80px;
  padding-left: 120px;
  transform: translate(-50px,-80px);
  z-index: -1;
  width: calc(100% + 50px);
  background: #a92358;
  background: -moz-linear-gradient(-45deg,#a92358 0%,#a9233e 100%);
  background: -webkit-linear-gradient(-45deg,#a92358 0%,#a9233e 100%);
  background: linear-gradient(135deg,#a92358 0%,#a9233e 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#a92358',endColorstr='#a9233e',GradientType=1);
}
@media (max-width: 991px) {
  section.claim .text-apple {
    padding: 40px 15px;
    transform: translate(0px,0px);
    width: 100%;
  }
}
section.relations {
  margin-top: 150px;
}
@media (max-width: 991px) {
  section.relations {
    margin-top: 60px;
  }
  section.relations .left {
    display: none;
  }
  section.relations .right {
    float: none;
    width: 100%;
  }
}
section.relations .image-apple {
  background: transparent url(/img/train.jpg);
  background-size: cover;
  background-position-y: -84px;
  background-position-x: right;
  background-repeat: no-repeat;
  height: 500px;
  position: relative;
  z-index: 1;
}
section.relations .text-apple {
  padding: 100px 80px;
  padding-left: 120px;
  transform: translate(-50px,-80px);
  z-index: -1;
  width: calc(100% + 50px);
  background: #a92358;
  background: -moz-linear-gradient(-45deg,#a92358 0%,#a9233e 100%);
  background: -webkit-linear-gradient(-45deg,#a92358 0%,#a9233e 100%);
  background: linear-gradient(135deg,#a92358 0%,#a9233e 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#a92358',endColorstr='#a9233e',GradientType=1);
}
@media (max-width: 991px) {
  section.relations .text-apple {
    padding: 40px 15px;
    transform: translate(0px,0px);
    width: 100%;
  }
}
section.market {
  background: url(/img/tell.jpg) no-repeat;
  background-size: auto;
  background-position: top -292px;
  min-height: 740px;
  margin-top: -40px;
  z-index: -1;
}
@media (min-width: 992px) {
  section.market {
    margin-top: 80px;
  }
}
section.market .text-apple {
  padding: 100px 50px;
  text-align: center;
}
@media (min-width: 992px) {
  section.market .text-apple {
    margin-left: 50%;
    margin-right: 60px;
    text-align: left;
  }
}
.subtitle {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 40px;
}
.subtitle h2.gradient {
  color: #fff;
  font-size: 50px;
  font-family: 'Rubik', sans-serif;
  font-weight: 500;
  line-height: 55px;
  background: #c93670;
  background: -moz-linear-gradient(-45deg,#c93670 0%,#a9233e 100%);
  background: -webkit-linear-gradient(-45deg,#c93670 0%,#a9233e 100%);
  background: linear-gradient(135deg,#c93670 0%,#a9233e 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#c93670',endColorstr='#a9233e',GradientType=1);
  display: inline-block;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
  margin: 0px;
}
@media (max-width: 991px) {
  .subtitle h2.gradient {
    color: #fff;
    font-size: 40px;
    font-family: 'Rubik', sans-serif;
    font-weight: 500;
    line-height: 45px;
  }
}
.subtitle .subtitle-upper {
  color: #444;
  font-size: 16px;
  font-family: 'Rubik', sans-serif;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.text-box-white {
  text-align: left;
  max-width: 500px;
}
@media (max-width: 991px) {
  .text-box-white {
    text-align: center;
    max-width: 100%;
  }
}
.text-box-white h2 {
  color: #fff;
  font-size: 40px;
  font-family: 'Rubik', sans-serif;
  font-weight: 500;
  line-height: 45px;
  margin: 0px;
}
@media (max-width: 991px) {
  .text-box-white h2 {
    color: #fff;
    font-size: 30px;
    font-family: 'Rubik', sans-serif;
    font-weight: 500;
    line-height: 35px;
  }
}
.text-box-white p {
  color: #fff;
  font-size: 17px;
  font-family: 'Rubik', sans-serif;
  font-weight: 400;
  line-height: 30px;
  margin: 0px;
  margin-top: 50px;
}
@media (max-width: 991px) {
  .text-box-white p {
    margin-top: 30px;
  }
}
.text-box-simple p {
  color: #444;
  font-size: 17px;
  font-family: 'Rubik', sans-serif;
  font-weight: 400;
  line-height: 30px;
  margin: 0px;
}
h3 {
  color: #444;
  font-size: 30px;
  font-family: 'Rubik', sans-serif;
  font-weight: 500;
  line-height: 33px;
  margin: 0;
}
@media (max-width: 991px) {
  h3 {
    color: #444;
    font-size: 23px;
    font-family: 'Rubik', sans-serif;
    font-weight: 500;
    line-height: 30px;
  }
}
.divider:before,
.divider:after {
  content: " ";
  display: table;
}
.divider:after {
  clear: both;
}
.divider .left {
  float: left;
  width: 50%;
}
.divider .right {
  float: left;
  width: 50%;
}
.shadow-angle {
  box-shadow: 10px 0px 20px rgba(0,0,0,0.15);
}
.shadow-down {
  box-shadow: 0px 10px 20px rgba(0,0,0,0.15);
}
.shadow-full {
  box-shadow: 0px 0px 20px rgba(0,0,0,0.15);
}
.shadow-full-heavy {
  box-shadow: 0px 0px 40px rgba(169,35,62,0.7);
}
section.works {
  z-index: 0;
  position: relative;
}
section.works .items {
  background: #fff;
}
section.works .items:before,
section.works .items:after {
  content: " ";
  display: table;
}
section.works .items:after {
  clear: both;
}
@media (max-width: 991px) {
  section.works .items {
    box-shadow: 0px 10px 20px rgba(0,0,0,0.15);
  }
}
section.works .item {
  float: left;
  width: 25%;
}
section.works .item > .item-inner {
  text-align: center;
  padding: 20px;
}
section.works .item > .item-inner > img {
  width: 70px;
}
section.works .item > .item-inner h3 {
  margin-top: 10px;
  margin-bottom: 15px;
}
section.works .item > .item-inner p {
  color: #444;
  font-size: 17px;
  font-family: 'Rubik', sans-serif;
  font-weight: 400;
  line-height: 25px;
}
@media (min-width: 992px) {
  section.works .item > .item-inner:hover {
    box-shadow: 0px 0px 20px rgba(0,0,0,0.15);
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
  }
}
@media (max-width: 991px) {
  section.works .item {
    width: 50%;
  }
  section.works .item:nth-child(2n+1) {
    clear: both;
  }
  section.works .item > .item-inner p {
    color: #444;
    font-size: 15px;
    font-family: 'Rubik', sans-serif;
    font-weight: 400;
    line-height: 20px;
  }
}
section.works .swiper-container {
  padding-bottom: 30px;
}
section.works .swiper-button-prev,
section.works .swiper-button-next {
  width: 50px;
  height: 50px;
  margin-top: -30px;
  outline: none;
}
section.works .swiper-button-prev {
  background: url(/img/arrow.svg) center center no-repeat;
  background-size: cover;
  transform: rotate(180deg);
  left: -50px;
  right: auto;
}
section.works .swiper-button-next {
  background: url(/img/arrow.svg) center center no-repeat;
  background-size: cover;
  right: -50px;
  left: auto;
}
section.works .swiper-pagination-bullet {
  width: 20px;
  height: 20px;
  background: #ddd;
  border-radius: 50px;
  opacity: 1;
  margin: 0 3px;
}
section.works .swiper-pagination-bullet-active {
  opacity: 1;
  background: #a92358;
}
section.show {
  margin-top: 80px;
  background: url(/img/show.jpg) no-repeat;
  background-size: auto;
  background-position: center -279px;
  z-index: -1;
  position: relative;
}
section.show .divider {
  padding-top: 200px;
  padding-bottom: 100px;
}
@media (min-width: 992px) {
  section.show .divider {
    padding: 200px 0px;
  }
}
section.show .text-apple-1 {
  background: #a92358;
  background: -moz-linear-gradient(-45deg,#a92358 0%,#a9233e 100%);
  background: -webkit-linear-gradient(-45deg,#a92358 0%,#a9233e 100%);
  background: linear-gradient(135deg,#a92358 0%,#a9233e 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#a92358',endColorstr='#a9233e',GradientType=1);
  margin: 40px 15px;
  padding: 40px 30px;
}
@media (min-width: 992px) {
  section.show .text-apple-1 {
    margin-top: 0px;
    padding: 50px 70px;
    z-index: -1;
    margin-left: 60px;
    transform: translate(0px,0px);
  }
}
section.show .text-apple-2 {
  background: #fff;
  box-shadow: 0px 0px 20px rgba(0,0,0,0.15);
  margin: 40px 15px;
  padding: 40px 30px;
  text-align: center;
}
@media (min-width: 992px) {
  section.show .text-apple-2 {
    text-align: left;
    padding: 50px 70px;
    z-index: 1;
    transform: translate(-50px,0px);
    z-index: -1;
    margin-right: 10px;
  }
}
@media (max-width: 991px) {
  section.show {
    margin-top: -40px;
  }
  section.show .divider .left {
    float: none;
    width: 100%;
  }
  section.show .divider .right {
    float: none;
    width: 100%;
  }
}
section.how {
  index: 0;
  position: relative;
}
section.how .items {
  background: #fff;
}
@media (max-width: 991px) {
  section.how .items {
    box-shadow: 0px 10px 20px rgba(0,0,0,0.15);
  }
}
section.how .item {
  position: relative;
  text-align: center;
  padding: 40px 40px;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
@media (min-width: 992px) {
  section.how .item {
    border: 1px solid #ddd;
  }
}
section.how .item .item_bg {
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  z-index: -1;
  background: #a92358;
  background: -moz-linear-gradient(-45deg,#a92358 0%,#a9233e 100%);
  background: -webkit-linear-gradient(-45deg,#a92358 0%,#a9233e 100%);
  background: linear-gradient(135deg,#a92358 0%,#a9233e 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#a92358',endColorstr='#a9233e',GradientType=1);
  opacity: 0;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
section.how .item > .image {
  height: 100px;
  position: relative;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
section.how .item > .image > img {
  width: 70px;
  position: absolute;
  transform: translateX(-50%);
}
section.how .item > .image > img.white {
  opacity: 0;
}
section.how .item h3 {
  margin-top: 10px;
  margin-bottom: 15px;
}
section.how .item > p {
  color: #444;
  font-size: 17px;
  font-family: 'Rubik', sans-serif;
  font-weight: 400;
  line-height: 25px;
}
@media (min-width: 992px) {
  section.how .item:hover {
    border: 1px solid transparent;
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
  }
  section.how .item:hover .item_bg {
    opacity: 1;
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
  }
  section.how .item:hover > .image img.color {
    opacity: 0;
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
  }
  section.how .item:hover > .image img.white {
    opacity: 1;
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
  }
  section.how .item:hover > .image {
    transform: translateY(-10px);
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
  }
  section.how .item:hover > h3,
  section.how .item:hover > p {
    color: #fff;
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
  }
}
section.how .swiper-container {
  padding-bottom: 30px;
}
section.how .swiper-button-prev,
section.how .swiper-button-next {
  width: 50px;
  height: 50px;
  margin-top: -30px;
  outline: none;
}
section.how .swiper-button-prev {
  background: url(/img/arrow.svg) center center no-repeat;
  background-size: cover;
  transform: rotate(180deg);
  left: -50px;
  right: auto;
}
section.how .swiper-button-next {
  background: url(/img/arrow.svg) center center no-repeat;
  background-size: cover;
  right: -50px;
  left: auto;
}
section.how .swiper-pagination-bullet {
  width: 20px;
  height: 20px;
  background: #ddd;
  border-radius: 50px;
  opacity: 1;
  margin: 0 3px;
}
section.how .swiper-pagination-bullet-active {
  opacity: 1;
  background: #a92358;
}
@media (max-width: 991px) {
  section.contact .divider .left {
    float: none;
    width: 100%;
  }
  section.contact .divider .right {
    float: none;
    width: 100%;
  }
}
section.contact .form-apple {
  padding: 0px 15px;
  margin-bottom: 40px;
}
@media (min-width: 992px) {
  section.contact .form-apple {
    padding: 0px;
    margin-bottom: 0px;
    margin-left: 60px;
    transform: translate(60px,0px);
  }
  section.contact .form-apple .subtitle {
    text-align: left;
    margin-bottom: 60px;
  }
}
section.contact .contact-info {
  background: #a92358;
  background: -moz-linear-gradient(-45deg,#a92358 0%,#a9233e 100%);
  background: -webkit-linear-gradient(-45deg,#a92358 0%,#a9233e 100%);
  background: linear-gradient(135deg,#a92358 0%,#a9233e 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#a92358',endColorstr='#a9233e',GradientType=1);
  padding: 60px 0px;
  text-align: center;
}
@media (min-width: 992px) {
  section.contact .contact-info {
    padding: 80px 0px;
    text-align: left;
    padding-left: 140px;
    margin-left: 120px;
    margin-bottom: 150px;
  }
}
section.contact .contact-info .item {
  position: relative;
  margin-bottom: 30px;
}
section.contact .contact-info .item > img {
  width: 40px;
}
@media (min-width: 992px) {
  section.contact .contact-info .item > img {
    position: absolute;
    left: -80px;
    top: 0px;
  }
}
section.contact .contact-info .item h4 {
  color: #fff;
  font-size: 23px;
  font-family: 'Rubik', sans-serif;
  font-weight: 500;
  line-height: 60px;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin: 0px;
}
section.contact .contact-info .item p {
  color: #fff;
  font-size: 15px;
  font-family: 'Rubik', sans-serif;
  font-weight: 400;
  line-height: 23px;
  margin: 0px;
}
section.contact .contact-info .item p > a {
  color: #fff;
  text-decoration: underline;
}
@media (max-width: 991px) {
  section.news .container {
    padding: 0px;
  }
  section.news .news-info {
    padding-bottom: 70px !important;
  }
  section.news .swiper-pagination {
    bottom: 100px;
  }
}
section.news .item .image img {
  width: 100%;
}
section.news .item .news-info {
  margin: 0px 20px;
  border: 1px solid #ddd;
  padding: 30px;
  background: #fff;
  transform: translate(0px,-30px);
  text-align: center;
  position: relative;
}
@media (max-width: 991px) {
  section.news .item .news-info {
    border: none;
    box-shadow: 0px 10px 20px rgba(0,0,0,0.15);
  }
}
section.news .item .news-info .item_bg {
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  z-index: -1;
  background: #a92358;
  background: -moz-linear-gradient(-45deg,#a92358 0%,#a9233e 100%);
  background: -webkit-linear-gradient(-45deg,#a92358 0%,#a9233e 100%);
  background: linear-gradient(135deg,#a92358 0%,#a9233e 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#a92358',endColorstr='#a9233e',GradientType=1);
  opacity: 0;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
section.news .item .news-info .date {
  color: #888;
  font-size: 15px;
  font-family: 'Rubik', sans-serif;
  font-weight: 300;
  line-height: 15px;
  margin-bottom: 15px;
}
section.news .item .news-info h3 {
  color: #444;
  font-size: 23px;
  font-family: 'Rubik', sans-serif;
  font-weight: 500;
  line-height: 30px;
  margin: 0;
  margin-bottom: 20px;
}
section.news .item .news-info p {
  color: #444;
  font-size: 15px;
  font-family: 'Rubik', sans-serif;
  font-weight: 300;
  line-height: 23px;
  margin: 0;
  margin-bottom: 20px;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
section.news .item .news-info a.btn {
  color: #a9233e;
  display: inline-block;
}
@media (max-width: 991px) {
  section.news .item .news-info a.btn {
    display: none;
  }
}
@media (min-width: 992px) {
  section.news .item:hover .news-info {
    border: 1px solid transparent;
  }
  section.news .item:hover .news-info > .date,
  section.news .item:hover .news-info > h3,
  section.news .item:hover .news-info > p {
    color: #fff;
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
  }
  section.news .item:hover .news-info a.btn {
    color: #444;
    background: #fff;
    box-shadow: 0px 0px 20px rgba(0,0,0,0.3);
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
  }
  section.news .item:hover .news-info p {
    margin-bottom: 30px;
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
  }
  section.news .item:hover .item_bg {
    opacity: 1;
    -webkit-transition: all 0.2s ease-out;
    -moz-transition: all 0.2s ease-out;
    -o-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
  }
}
section.news .swiper-container {
  padding-bottom: 30px;
}
section.news .swiper-button-prev,
section.news .swiper-button-next {
  width: 50px;
  height: 50px;
  margin-top: -30px;
  outline: none;
}
section.news .swiper-button-prev {
  background: url(/img/arrow.svg) center center no-repeat;
  background-size: cover;
  transform: rotate(180deg);
  left: -50px;
  right: auto;
}
section.news .swiper-button-next {
  background: url(/img/arrow.svg) center center no-repeat;
  background-size: cover;
  right: -50px;
  left: auto;
}
section.news .swiper-pagination-bullet {
  width: 20px;
  height: 20px;
  background: #ddd;
  border-radius: 50px;
  opacity: 1;
  margin: 0 3px;
}
section.news .swiper-pagination-bullet-active {
  opacity: 1;
  background: #a92358;
}
section.clients {
  background: #fff;
  margin: 0 auto;
  margin-top: -40px;
  width: calc(100% - 30px);
}
@media (min-width: 992px) {
  section.clients {
    width: calc(100% - 200px);
    margin-top: -150px;
  }
}
@media (max-width: 991px) {
  section.clients {
    box-shadow: 0px 10px 20px rgba(0,0,0,0.15);
  }
}
section.clients .item {
  padding: 60px 15px;
  display: inline-block;
}
@media (min-width: 992px) {
  section.clients .item {
    padding-top: 130px;
    padding-bottom: 40px;
  }
}
section.clients .item .item-inner {
  position: relative;
  text-align: center;
}
section.clients .item .item-inner:before,
section.clients .item .item-inner:after {
  content: " ";
  display: table;
}
section.clients .item .item-inner:after {
  clear: both;
}
@media (min-width: 992px) {
  section.clients .item .item-inner {
    margin: 0 auto;
    padding: 0px;
    width: 900px;
  }
}
section.clients .item .item-inner .person {
  float: none;
  display: inline-block;
  margin-top: 30px;
}
@media (min-width: 992px) {
  section.clients .item .item-inner .person {
    width: 50%;
    float: left;
    margin-top: 0px;
  }
}
section.clients .item .item-inner .person:before,
section.clients .item .item-inner .person:after {
  content: " ";
  display: table;
}
section.clients .item .item-inner .person:after {
  clear: both;
}
section.clients .item .item-inner .person .image {
  float: left;
  width: 200px;
  overflow: hidden;
  box-shadow: 0px 0px 20px rgba(0,0,0,0.15);
}
section.clients .item .item-inner .person .image img {
  width: 100%;
}
@media (max-width: 991px) {
  section.clients .item .item-inner .person .image {
    border-radius: 80px;
    width: 80px;
  }
}
section.clients .item .item-inner .person h3 {
  margin: 0px;
  float: left;
  width: calc(100% - 80px);
  padding: 20px 0px;
  padding-left: 20px;
  color: #a9233e;
  font-size: 18px;
  font-family: 'Rubik', sans-serif;
  font-weight: 500;
  line-height: 23px;
}
@media (min-width: 992px) {
  section.clients .item .item-inner .person h3 {
    margin-top: 46px;
    padding: 30px 40px;
    width: calc(100% - 200px);
    color: #a9233e;
    font-size: 23px;
    font-family: 'Rubik', sans-serif;
    font-weight: 500;
    line-height: 28px;
  }
}
section.clients .item .item-inner .person h3 > span {
  color: #444;
  font-size: 14px;
  font-family: 'Rubik', sans-serif;
  font-weight: 400;
  line-height: 25px;
  text-transform: uppercase;
  display: block;
}
section.clients .item .item-inner .text {
  float: none;
  width: 100%;
  text-align: center;
  color: #444;
  font-size: 20px;
  font-family: 'Rubik', sans-serif;
  font-weight: 300;
  line-height: 30px;
  margin: 0px;
  margin-top: 15px;
  position: relative;
}
@media (min-width: 992px) {
  section.clients .item .item-inner .text {
    width: 50%;
    float: right;
    text-align: left;
  }
}
section.clients .item .item-inner .text:before {
  content: ' ';
  background: url(/img/quote.svg) center center no-repeat;
  background-size: contain;
  position: absolute;
  top: -82px;
  left: 0px;
  width: 60px;
  height: 100px;
}
section.clients .swiper-button-prev,
section.clients .swiper-button-next {
  width: 30px;
  height: 30px;
  outline: none;
}
section.clients .swiper-button-prev {
  background: url(/img/arrow-2.svg) center center no-repeat;
  background-size: cover;
  transform: rotate(180deg);
  left: calc(50% + 0px);
  bottom: 0px;
  top: auto;
}
section.clients .swiper-button-next {
  background: url(/img/arrow-2.svg) center center no-repeat;
  background-size: cover;
  left: calc(50% + 40px);
  bottom: 0px;
  top: auto;
}
section.clients .swiper-pagination-bullet {
  width: 20px;
  height: 20px;
  background: #ddd;
  border-radius: 50px;
  opacity: 1;
  margin: 0 3px;
}
section.clients .swiper-pagination-bullet-active {
  opacity: 1;
  background: #a92358;
}
.swiper-pagination-bullet-styles .swiper-pagination-bullet {
  width: 20px;
  height: 20px;
  background: #ddd;
  border-radius: 50px;
  opacity: 1;
  margin: 0 3px;
}
.swiper-pagination-bullet-styles .swiper-pagination-bullet-active {
  opacity: 1;
  background: #a92358;
}
.swiper-custom-styles-type-1 .swiper-container {
  padding-bottom: 30px;
}
.swiper-custom-styles-type-1 .swiper-button-prev,
.swiper-custom-styles-type-1 .swiper-button-next {
  width: 50px;
  height: 50px;
  margin-top: -30px;
  outline: none;
}
.swiper-custom-styles-type-1 .swiper-button-prev {
  background: url(/img/arrow.svg) center center no-repeat;
  background-size: cover;
  transform: rotate(180deg);
  left: -50px;
  right: auto;
}
.swiper-custom-styles-type-1 .swiper-button-next {
  background: url(/img/arrow.svg) center center no-repeat;
  background-size: cover;
  right: -50px;
  left: auto;
}
.swiper-custom-styles-type-1 .swiper-pagination-bullet {
  width: 20px;
  height: 20px;
  background: #ddd;
  border-radius: 50px;
  opacity: 1;
  margin: 0 3px;
}
.swiper-custom-styles-type-1 .swiper-pagination-bullet-active {
  opacity: 1;
  background: #a92358;
}
.swiper-custom-styles-type-2 .swiper-button-prev,
.swiper-custom-styles-type-2 .swiper-button-next {
  width: 30px;
  height: 30px;
  outline: none;
}
.swiper-custom-styles-type-2 .swiper-button-prev {
  background: url(/img/arrow-2.svg) center center no-repeat;
  background-size: cover;
  transform: rotate(180deg);
  left: calc(50% + 0px);
  bottom: 0px;
  top: auto;
}
.swiper-custom-styles-type-2 .swiper-button-next {
  background: url(/img/arrow-2.svg) center center no-repeat;
  background-size: cover;
  left: calc(50% + 40px);
  bottom: 0px;
  top: auto;
}
.swiper-custom-styles-type-2 .swiper-pagination-bullet {
  width: 20px;
  height: 20px;
  background: #ddd;
  border-radius: 50px;
  opacity: 1;
  margin: 0 3px;
}
.swiper-custom-styles-type-2 .swiper-pagination-bullet-active {
  opacity: 1;
  background: #a92358;
}
.header .header-desktop {
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  z-index: 1000;
  height: 90px;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
@media (max-width: 991px) {
  .header .header-desktop {
    display: none;
  }
}
@media (min-width: 992px) {
  .header .header-desktop {
    display: inherit;
  }
}
@media (min-width: 1200px) {
  .header .header-desktop {
    display: inherit;
  }
}
.header .header-desktop .logo {
  float: left;
  width: 30%;
  height: 90px;
  position: relative;
}
.header .header-desktop .logo > img {
  position: absolute;
  top: 50%;
  left: 20px;
  width: 340px;
  transform: translateY(-50%);
}
.header .header-desktop .menu-main-menu-container {
  float: left;
  width: 40%;
  height: 90px;
}
.header .header-desktop .menu-main-menu-container > ul:before,
.header .header-desktop .menu-main-menu-container > ul:after {
  content: " ";
  display: table;
}
.header .header-desktop .menu-main-menu-container > ul:after {
  clear: both;
}
.header .header-desktop .menu-main-menu-container > ul > li {
  float: left;
  padding: 0px 10px;
  position: relative;
}
.header .header-desktop .menu-main-menu-container > ul > li > a {
  color: #fff;
  font-size: 16px;
  font-family: 'Rubik', sans-serif;
  font-weight: 400;
  line-height: 90px;
  text-transform: uppercase;
}
.header .header-desktop .social {
  float: left;
  width: 15%;
}
.header .header-desktop .social i {
  font-size: 25px;
  line-height: 90px;
  color: #fff;
  padding: 0px 10px;
}
.header .header-desktop .lang {
  float: left;
  width: 15%;
}
.header .header-desktop .lang .drop-down {
  padding: 10px 16px;
  margin-top: 24px;
  color: #fff;
  font-size: 13px;
  font-family: 'Rubik', sans-serif;
  font-weight: 300;
  line-height: 13px;
}
.header .header-desktop .lang .drop-down > ul > li > a {
  color: #333;
  font-size: 15px;
  font-family: 'Rubik', sans-serif;
  font-weight: 300;
  line-height: 15px;
}
.header .header-desktop .lang .drop-down i.zmdi-globe {
  font-size: 18px;
  color: #fff;
  margin-right: 10px;
}
.header .header-desktop .lang .drop-down i.zmdi-chevron-down {
  font-size: 20px;
  color: #fff;
  margin-left: 10px;
}
.header .header-desktop .logo img.logo_white {
  opacity: 1;
}
.header .header-desktop .logo img.logo_dark {
  opacity: 0;
}
.header .header-desktop.active {
  background: #fff;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  border: 1px solid #ddd;
}
.header .header-desktop.active .logo img.logo_white {
  opacity: 0;
}
.header .header-desktop.active .logo img.logo_dark {
  opacity: 1;
}
.header .header-desktop.active .menu a,
.header .header-desktop.active .social i,
.header .header-desktop.active .lang .drop-down,
.header .header-desktop.active .lang .drop-down i {
  color: #333;
}
.header .header-mobile {
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  z-index: 1000;
  height: 60px;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
@media (min-width: 992px) {
  .header .header-mobile {
    display: none;
  }
}
@media (min-width: 1200px) {
  .header .header-mobile {
    display: none;
  }
}
.header .header-mobile.active {
  background: #000;
}
.header .header-mobile .logo {
  float: left;
  width: calc(100% - 120px - 30px);
  max-width: 300px;
  height: 60px;
  position: relative;
  padding: 0px 15px;
}
.header .header-mobile .logo > img {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
}
.header .header-mobile .lang {
  display: block;
  float: right;
  width: 60px;
  color: #fff;
  font-size: 14px;
  font-family: 'Rubik', sans-serif;
  font-weight: 400;
  line-height: 60px;
}
.header .header-mobile .lang > i.zmdi-globe {
  font-size: 16px;
  color: #fff;
  margin-right: 5px;
  vertical-align: middle;
  top: -2px;
  position: relative;
}
.header .header-mobile .logo img.logo_white {
  opacity: 1;
}
.header .header-mobile .logo img.logo_dark {
  opacity: 0;
}
.header .header-mobile .menu-button {
  float: right;
  width: 60px;
  height: 60px;
  padding: 21px 15px;
  background: #a92358;
  background: -moz-linear-gradient(-45deg,#a92358 0%,#a9233e 100%);
  background: -webkit-linear-gradient(-45deg,#a92358 0%,#a9233e 100%);
  background: linear-gradient(135deg,#a92358 0%,#a9233e 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#a92358',endColorstr='#a9233e',GradientType=1);
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.header .header-mobile .menu-button .menu-icon-line {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #fff;
  margin-bottom: 4px;
  border-radius: 2px;
  -webkit-transition: transform 0.3s cubic-bezier(0.175,0.885,0.32,1.275) 0.1s, opacity 0.1s ease-in-out 0.1s;
  transition: transform 0.3s cubic-bezier(0.175,0.885,0.32,1.275) 0.1s, opacity 0.1s ease-in-out 0.1s;
  transform: translateZ(0);
}
.header .header-mobile .menu-button .menu-apple {
  position: fixed;
  top: 0px;
  right: 0px;
  z-index: -1;
  width: 60px;
  height: 60px;
  background: #7f1a2f;
  transform: scale(1);
  transform-origin: 50% 50%;
  border-radius: 60px;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.header .header-mobile .menu-button.menu-active {
  background: #a92358;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.header .header-mobile .menu-button.menu-active .menu-apple {
  transform: scale(20);
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.header .header-mobile .menu-button.menu-active > .menu-icon-line-1 {
  -webkit-transform: translateY(6px) rotateZ(-135deg);
  transform: translateY(6px) rotateZ(-135deg);
}
.header .header-mobile .menu-button.menu-active > .menu-icon-line-2 {
  opacity: 0;
}
.header .header-mobile .menu-button.menu-active > .menu-icon-line-3 {
  -webkit-transform: translateY(-7px) rotateZ(135deg);
  transform: translateY(-7px) rotateZ(135deg);
}
.header .header-mobile .menu-mobile-container {
  position: fixed;
  top: 0px;
  bottom: 0px;
  right: 0px;
  left: 0px;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  background: #c93670;
  background: -moz-linear-gradient(-45deg,#c93670 0%,#a9233e 100%);
  background: -webkit-linear-gradient(-45deg,#c93670 0%,#a9233e 100%);
  background: linear-gradient(135deg,#c93670 0%,#a9233e 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#c93670',endColorstr='#a9233e',GradientType=1);
}
.header .header-mobile .menu-mobile-container.menu-active {
  visibility: visible;
  opacity: 1;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.header .header-mobile .menu-mobile-container.menu-active .menu-main-menu-container > ul > li {
  transform: translate(0px,0px);
  opacity: 1;
  -webkit-transition: transform 0.3s cubic-bezier(0.175,0.885,0.32,1.275) 0.1s, opacity 0.1s ease-in-out 0.1s;
  transition: transform 0.3s cubic-bezier(0.175,0.885,0.32,1.275) 0.1s, opacity 0.1s ease-in-out 0.1s;
}
.header .header-mobile .menu-mobile-container.menu-active .menu-main-menu-container > ul > li:nth-child(1) {
  transition-delay: 0;
}
.header .header-mobile .menu-mobile-container.menu-active .menu-main-menu-container > ul > li:nth-child(2) {
  transition-delay: 0.03s;
}
.header .header-mobile .menu-mobile-container.menu-active .menu-main-menu-container > ul > li:nth-child(3) {
  transition-delay: 0.06s;
}
.header .header-mobile .menu-mobile-container.menu-active .menu-main-menu-container > ul > li:nth-child(4) {
  transition-delay: 0.09s;
}
.header .header-mobile .menu-mobile-container.menu-active .menu-main-menu-container > ul > li:nth-child(5) {
  transition-delay: 0.12s;
}
.header .header-mobile .menu-mobile-container.menu-active .social-buttons {
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  transition-delay: 0.3s;
  opacity: 1;
}
.header .header-mobile .menu-mobile-container .social-buttons {
  text-align: center;
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
}
.header .header-mobile .menu-mobile-container .menu-main-menu-container {
  text-align: center;
  margin-top: 30%;
}
.header .header-mobile .menu-mobile-container .menu-main-menu-container > ul {
  display: inline-block;
}
.header .header-mobile .menu-mobile-container .menu-main-menu-container > ul > li {
  position: relative;
  transform: translate(80px,-80px);
  opacity: 0;
}
.header .header-mobile .menu-mobile-container .menu-main-menu-container > ul > li > a {
  color: #fff;
  font-size: 25px;
  font-family: 'Rubik', sans-serif;
  font-weight: 400;
  line-height: 10vh;
  text-transform: uppercase;
}
.drop-down {
  position: relative;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  cursor: pointer;
  display: inline-block;
}
.drop-down i.zmdi-chevron-down {
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.drop-down ul {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  transform: scale(0);
  transform-origin: 100% 0;
  background: #fff;
  box-shadow: 0px 3px 5px rgba(0,0,0,0.1);
}
.drop-down ul > li {
  -webkit-transition: all 0.1s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}
.drop-down ul > li > a {
  color: #444;
  font-size: 15px;
  font-family: 'Rubik', sans-serif;
  font-weight: 400;
  line-height: 15px;
  padding: 10px 15px;
  display: block;
  -webkit-transition: transform 0.2s ease-in-out;
  -moz-transition: transform 0.2s ease-in-out;
  -o-transition: transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out;
}
.drop-down ul > li:hover {
  background-color: #a92358;
  -webkit-transition: all 0.1s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}
.drop-down ul > li:hover > a {
  color: #fff !important;
  -webkit-transition: transform 0.2s ease-in-out;
  -moz-transition: transform 0.2s ease-in-out;
  -o-transition: transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out;
  transform: translate(5px,0px);
}
.drop-down:hover i.zmdi-chevron-down {
  transform: rotate(180deg);
  transform-origin: 50% 50%;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.drop-down:hover ul {
  transform: scale(1);
}
footer {
  background: #f3f3f3;
  margin-top: 20px;
}
footer .footer-up {
  text-align: center;
}
footer .footer-up .menu-main-menu-container {
  margin: 60px 0px;
  text-align: center;
}
footer .footer-up .menu-main-menu-container ul {
  display: inline-block;
}
footer .footer-up .menu-main-menu-container ul:before,
footer .footer-up .menu-main-menu-container ul:after {
  content: " ";
  display: table;
}
footer .footer-up .menu-main-menu-container ul:after {
  clear: both;
}
footer .footer-up .menu-main-menu-container ul > li {
  float: left;
}
@media (max-width: 991px) {
  footer .footer-up .menu-main-menu-container ul > li {
    float: none;
  }
}
footer .footer-up .menu-main-menu-container ul > li > a {
  color: #444;
  font-size: 18px;
  font-family: 'Rubik', sans-serif;
  font-weight: 400;
  line-height: 23px;
  display: block;
  margin: 0px 20px;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
@media (max-width: 991px) {
  footer .footer-up .menu-main-menu-container ul > li > a {
    margin: 20px 0px;
    color: #444;
    font-size: 20px;
    font-family: 'Rubik', sans-serif;
    font-weight: 500;
    line-height: 28px;
  }
}
footer .footer-up .menu-main-menu-container ul > li > a:hover {
  color: #a9233e;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
footer .footer-up .social-buttons {
  margin: 40px 0px;
}
footer .footer-up p {
  color: #444;
  font-size: 13px;
  font-family: 'Rubik', sans-serif;
  font-weight: 400;
  line-height: 18px;
  margin: 40px 0px;
}
footer .footer-down {
  background: #a92358;
  background: -moz-linear-gradient(-45deg,#a92358 0%,#a9233e 100%);
  background: -webkit-linear-gradient(-45deg,#a92358 0%,#a9233e 100%);
  background: linear-gradient(135deg,#a92358 0%,#a9233e 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#a92358',endColorstr='#a9233e',GradientType=1);
  text-align: center;
  padding: 30px 0px;
}
footer .footer-down img {
  width: 340px;
  margin-bottom: 40px;
}
footer .footer-down p {
  color: #fff;
  font-size: 15px;
  font-family: 'Rubik', sans-serif;
  font-weight: 400;
  line-height: 18px;
  margin: 0px;
}
.social-buttons > .item {
  display: inline-block;
  margin-right: 10px;
  border-radius: 50%;
  cursor: pointer;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.social-buttons > .item.facebook {
  background-color: #3b5999;
}
.social-buttons > .item.twitter {
  background-color: #55acee;
}
.social-buttons > .item.youtube {
  background-color: #cd201f;
}
.social-buttons > .item:hover {
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  background-color: #a9233e;
}
.social-buttons > .item a i {
  font-size: 25px;
  color: #fff;
  width: 45px;
  height: 45px;
  padding-top: 10px;
}
.checkbox-custom {
  opacity: 0;
  position: absolute;
  height: 25px;
}
.checkbox-custom,
.checkbox-custom-label {
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
}
.checkbox-custom + .checkbox-custom-label:before {
  content: '';
  background: #fff;
  border: 1px solid #ddd;
  display: inline-block;
  vertical-align: middle;
  width: 22px;
  height: 22px;
  margin-right: 10px;
  text-align: center;
}
.checkbox-custom:checked + .checkbox-custom-label:before {
  content: "\f26b";
  font: normal normal normal 17px 'Material-Design-Iconic-Font';
  background: #a92358;
  border: 1px solid #a92358;
  color: #fff;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.checkbox-custom:focus + .checkbox-custom-label {
  outline: none;
}
.form .form-field {
  margin-bottom: 20px;
  position: relative;
}
.form .form-field:before,
.form .form-field:after {
  content: " ";
  display: table;
}
.form .form-field:after {
  clear: both;
}
.form .form-field label {
  display: block;
  margin-bottom: 5px;
  color: #444;
  font-size: 14px;
  font-family: 'Rubik', sans-serif;
  font-weight: 300;
  line-height: 23px;
}
.form .form-field select {
  width: 100%;
  outline: none;
  padding: 8px;
  background-color: #FFF;
  background-color: #fafafa;
  border: 1px solid #ddd;
  color: #444;
  font-size: 16px;
  font-family: normal;
  font-weight: 'Rubik', sans-serif;
  line-height: 20px;
}
.form .form-field select:focus {
  border-color: #a92358;
  background-color: #fff;
  -webkit-transition: all 0.1s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
  box-shadow: 0px 0px 5px rgba(0,0,0,0.1);
}
.form .form-field textarea,
.form .form-field input[type='text'],
.form .form-field input[type='password'],
.form .form-field input[type='number'] {
  width: 100%;
  outline: none;
  padding: 15px;
  background-color: #fff;
  border: 2px solid #fff;
  color: #444;
  font-size: 16px;
  font-family: 'Rubik', sans-serif;
  font-weight: 400;
  line-height: 23px;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
@media (max-width: 991px) {
  .form .form-field textarea,
  .form .form-field input[type='text'],
  .form .form-field input[type='password'],
  .form .form-field input[type='number'] {
    border: 2px solid #ddd;
  }
}
@media (min-width: 992px) {
  .form .form-field textarea,
  .form .form-field input[type='text'],
  .form .form-field input[type='password'],
  .form .form-field input[type='number'] {
    box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
  }
}
.form .form-field textarea:focus,
.form .form-field input[type='text']:focus,
.form .form-field input[type='password']:focus,
.form .form-field input[type='number']:focus {
  border-color: #a92358;
  background-color: #fff;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  box-shadow: 0px 0px 20px rgba(0,0,0,0.2);
}
.form .form-field textarea::-webkit-input-placeholder,
.form .form-field input[type='text']::-webkit-input-placeholder,
.form .form-field input[type='password']::-webkit-input-placeholder,
.form .form-field input[type='number']::-webkit-input-placeholder {
  color: #444;
  font-size: 13px;
  font-family: 'Rubik', sans-serif;
  font-weight: 400;
  line-height: 20px;
  text-transform: uppercase;
  letter-spacing: 3px;
}
.form .form-field textarea:-moz-placeholder,
.form .form-field input[type='text']:-moz-placeholder,
.form .form-field input[type='password']:-moz-placeholder,
.form .form-field input[type='number']:-moz-placeholder {
  color: #444;
  font-size: 13px;
  font-family: 'Rubik', sans-serif;
  font-weight: 400;
  line-height: 20px;
  text-transform: uppercase;
  letter-spacing: 3px;
}
.form .form-field textarea::-moz-placeholder,
.form .form-field input[type='text']::-moz-placeholder,
.form .form-field input[type='password']::-moz-placeholder,
.form .form-field input[type='number']::-moz-placeholder {
  color: #444;
  font-size: 13px;
  font-family: 'Rubik', sans-serif;
  font-weight: 400;
  line-height: 20px;
  text-transform: uppercase;
  letter-spacing: 3px;
}
.form .form-field textarea:-ms-input-placeholder,
.form .form-field input[type='text']:-ms-input-placeholder,
.form .form-field input[type='password']:-ms-input-placeholder,
.form .form-field input[type='number']:-ms-input-placeholder {
  color: #444;
  font-size: 13px;
  font-family: 'Rubik', sans-serif;
  font-weight: 400;
  line-height: 20px;
  text-transform: uppercase;
  letter-spacing: 3px;
}
.form .form-field input[type='file'] {
  color: #444;
  font-size: 14px;
  font-family: normal;
  font-weight: 'Rubik', sans-serif;
  line-height: 16px;
}
.form .form-field textarea {
  height: 150px;
}
.form .form-field input[type='checkbox'] {
  margin: 0px;
}
.form .form-field > label.invalid {
  position: absolute;
  top: 100%;
  left: 15px;
  margin-top: 8px;
  z-index: 100;
  font-size: 13px;
  color: #fff;
  background: #a9233e;
  padding: 4px 10px;
  border-radius: 3px;
  text-transform: none;
}
.form .form-field > label.invalid:before {
  content: ' ';
  position: absolute;
  width: 0;
  height: 0;
  top: -5px;
  left: 30px;
  margin-left: -5px;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #a9233e;
}
.form .form-field > label.invalid.invalid-info {
  background: ;
}
.form .form-field > label.invalid.invalid-info:before {
  border-bottom: 9px solid ;
}
section.page-test .test:hover .item_bg {
  opacity: 1;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
section.page-test .test:hover .btn {
  color: #444;
  background: #fff;
  box-shadow: 0px 0px 20px rgba(0,0,0,0.2);
}
section.page-test .test .item_bg {
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  z-index: -1;
  background: #a92358;
  background: -moz-linear-gradient(-45deg,#a92358 0%,#a9233e 100%);
  background: -webkit-linear-gradient(-45deg,#a92358 0%,#a9233e 100%);
  background: linear-gradient(135deg,#a92358 0%,#a9233e 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#a92358',endColorstr='#a9233e',GradientType=1);
  opacity: 0;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
#ajax-loader {
  position: fixed;
  left: 50%;
  top: 40%;
  width: 80px;
  margin-left: -40px;
  visibility: hidden;
  opacity: 0;
  z-index: 99999999;
  -webkit-transition: all 0.1s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
}
#ajax-loader.active {
  visibility: visible;
  opacity: 1;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
#ajax-loader .loader:not(:required) {
  border: 5px solid #a92358;
  background: #fff;
  border-radius: 80px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: inline-block;
  overflow: hidden;
  position: relative;
  text-indent: -9999px;
  width: 80px;
  height: 80px;
}
#ajax-loader .loader:not(:required)::before {
  -moz-animation: timer-loader 1250ms infinite linear;
  -webkit-animation: timer-loader 1250ms infinite linear;
  animation: timer-loader 1250ms infinite linear;
  -moz-transform-origin: 3px 3px;
  -ms-transform-origin: 3px 3px;
  -webkit-transform-origin: 3px 3px;
  transform-origin: 3px 3px;
  background: #c93670;
  background: -moz-linear-gradient(-45deg,#c93670 0%,#a9233e 100%);
  background: -webkit-linear-gradient(-45deg,#c93670 0%,#a9233e 100%);
  background: linear-gradient(135deg,#c93670 0%,#a9233e 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#c93670',endColorstr='#a9233e',GradientType=1);
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  content: '';
  display: block;
  position: absolute;
  width: 6px;
  height: 30px;
  left: 32px;
  top: 32px;
}
#ajax-loader .loader:not(:required)::after {
  -moz-animation: timer-loader 15000ms infinite linear;
  -webkit-animation: timer-loader 15000ms infinite linear;
  animation: timer-loader 15000ms infinite linear;
  -moz-transform-origin: 3px 3px;
  -ms-transform-origin: 3px 3px;
  -webkit-transform-origin: 3px 3px;
  transform-origin: 3px 3px;
  background: #c93670;
  background: -moz-linear-gradient(-45deg,#c93670 0%,#a9233e 100%);
  background: -webkit-linear-gradient(-45deg,#c93670 0%,#a9233e 100%);
  background: linear-gradient(135deg,#c93670 0%,#a9233e 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#c93670',endColorstr='#a9233e',GradientType=1);
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  content: '';
  display: block;
  position: absolute;
  width: 6px;
  height: 20px;
  left: 32px;
  top: 32px;
}
@-moz-keyframes timer-loader {
  0% {
    -moz-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes timer-loader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes timer-loader {
  0% {
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@media (max-width: 991px) {
  section.page-calendar .container {
    padding-left: 0px;
    padding-right: 0px;
  }
}
section.page-calendar .calendar_filter {
  text-align: center;
  margin-top: 20px;
}
@media (max-width: 991px) {
  section.page-calendar .calendar_filter {
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 10px;
  }
}
section.page-calendar .calendar_filter .term_item {
  color: #444;
  font-size: 14px;
  font-family: 'Rubik', sans-serif;
  font-weight: 400;
  line-height: 12px;
  padding: 13px 25px;
  border: 2px solid transparent;
  text-transform: uppercase;
  display: inline-block;
  cursor: pointer;
  border-radius: 25px;
  margin-right: 20px;
  margin-bottom: 10px;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  box-shadow: 0px 0px 20px rgba(0,0,0,0.15);
}
section.page-calendar .calendar_filter .term_item:hover,
section.page-calendar .calendar_filter .term_item.active {
  box-shadow: none;
  color: #a9233e;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  border-color: #a9233e;
}
section.page-calendar .calendar_list {
  margin: 60px 0px;
}
section.page-calendar .calendar_list .calendar_item {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-flow: row wrap;
  justify-content: flex-start;
  margin-bottom: 30px;
}
section.page-calendar .calendar_list .calendar_item:before,
section.page-calendar .calendar_list .calendar_item:after {
  content: " ";
  display: table;
}
section.page-calendar .calendar_list .calendar_item:after {
  clear: both;
}
@media (max-width: 991px) {
  section.page-calendar .calendar_list .calendar_item {
    display: block;
  }
}
section.page-calendar .calendar_list .calendar_item .calendar_item_left {
  float: left;
  width: 66%;
}
@media (max-width: 991px) {
  section.page-calendar .calendar_list .calendar_item .calendar_item_left {
    float: none;
    width: 100%;
    padding: 0 20px;
    margin-top: -30px;
  }
}
section.page-calendar .calendar_list .calendar_item .calendar_item_left .calendar_item_inner {
  border: solid 1px #ddd;
  margin: 25px 0px;
  margin-right: -40px;
  background: #fff;
  z-index: 0;
  padding: 35px;
  position: relative;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
@media (max-width: 991px) {
  section.page-calendar .calendar_list .calendar_item .calendar_item_left .calendar_item_inner {
    margin: 0px;
    padding: 35px;
  }
}
section.page-calendar .calendar_list .calendar_item .calendar_item_left .calendar_item_inner .item_bg {
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  top: 0;
  opacity: 0;
  z-index: -1;
  background: #a92358;
  background: -moz-linear-gradient(-45deg,#a92358 0%,#a9233e 100%);
  background: -webkit-linear-gradient(-45deg,#a92358 0%,#a9233e 100%);
  background: linear-gradient(135deg,#a92358 0%,#a9233e 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#a92358',endColorstr='#a9233e',GradientType=1);
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
section.page-calendar .calendar_list .calendar_item .calendar_item_left .calendar_item_inner .title {
  color: #444;
  font-size: 35px;
  font-family: 'Rubik', sans-serif;
  font-weight: 500;
  line-height: 40px;
  margin-left: 260px;
  min-height: 130px;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
@media (max-width: 991px) {
  section.page-calendar .calendar_list .calendar_item .calendar_item_left .calendar_item_inner .title {
    margin-left: 0px;
    margin-top: 30px;
    min-height: auto;
  }
}
section.page-calendar .calendar_list .calendar_item .calendar_item_left .calendar_item_inner .content p {
  color: #444;
  font-size: 15px;
  font-family: 'Rubik', sans-serif;
  font-weight: 400;
  line-height: 20px;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
section.page-calendar .calendar_list .calendar_item .calendar_item_left .calendar_item_inner .footer {
  margin-top: 30px;
}
section.page-calendar .calendar_list .calendar_item .calendar_item_left .calendar_item_inner .footer:before,
section.page-calendar .calendar_list .calendar_item .calendar_item_left .calendar_item_inner .footer:after {
  content: " ";
  display: table;
}
section.page-calendar .calendar_list .calendar_item .calendar_item_left .calendar_item_inner .footer:after {
  clear: both;
}
section.page-calendar .calendar_list .calendar_item .calendar_item_left .calendar_item_inner .footer.mobile {
  display: none;
}
@media (max-width: 991px) {
  section.page-calendar .calendar_list .calendar_item .calendar_item_left .calendar_item_inner .footer.mobile {
    display: block;
  }
}
section.page-calendar .calendar_list .calendar_item .calendar_item_left .calendar_item_inner .footer .left {
  float: left;
  margin-top: 15px;
}
@media (max-width: 991px) {
  section.page-calendar .calendar_list .calendar_item .calendar_item_left .calendar_item_inner .footer .left {
    float: none;
    text-align: center;
  }
  section.page-calendar .calendar_list .calendar_item .calendar_item_left .calendar_item_inner .footer .left .btn {
    display: inline-block;
  }
}
section.page-calendar .calendar_list .calendar_item .calendar_item_left .calendar_item_inner .footer .right {
  float: right;
}
@media (max-width: 991px) {
  section.page-calendar .calendar_list .calendar_item .calendar_item_left .calendar_item_inner .footer .right {
    display: none;
    text-align: left;
    float: none;
  }
  section.page-calendar .calendar_list .calendar_item .calendar_item_left .calendar_item_inner .footer .right.mobile {
    display: block;
  }
}
section.page-calendar .calendar_list .calendar_item .calendar_item_left .calendar_item_inner .footer .right .tax_market {
  color: #444;
  font-size: 15px;
  font-family: 'Rubik', sans-serif;
  font-weight: 500;
  line-height: 45px;
  text-transform: uppercase;
  display: inline-block;
  padding-right: 15px;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
section.page-calendar .calendar_list .calendar_item .calendar_item_left .calendar_item_inner .footer .right .tax_type {
  color: #444;
  font-size: 15px;
  font-family: 'Rubik', sans-serif;
  font-weight: 500;
  line-height: 45px;
  text-transform: uppercase;
  padding-left: 15px;
  border-left: 2px solid #a9233e;
  display: inline-block;
  color: #a9233e;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
section.page-calendar .calendar_list .calendar_item .calendar_item_left .calendar_item_inner .date {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 220px;
  height: 130px;
  background: #a92358;
  background: -moz-linear-gradient(-45deg,#a92358 0%,#a9233e 100%);
  background: -webkit-linear-gradient(-45deg,#a92358 0%,#a9233e 100%);
  background: linear-gradient(135deg,#a92358 0%,#a9233e 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#a92358',endColorstr='#a9233e',GradientType=1);
  border-radius: 0px 0px 25px 0px;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  text-align: center;
}
@media (max-width: 991px) {
  section.page-calendar .calendar_list .calendar_item .calendar_item_left .calendar_item_inner .date {
    position: static;
    margin-top: -35px;
    margin-left: -35px;
  }
}
section.page-calendar .calendar_list .calendar_item .calendar_item_left .calendar_item_inner .date .day {
  margin-top: 36.5px;
  display: inline-block;
  color: #fff;
  font-size: 57px;
  font-family: 'Rubik', sans-serif;
  font-weight: 400;
  line-height: 57px;
  margin-right: 10px;
}
section.page-calendar .calendar_list .calendar_item .calendar_item_left .calendar_item_inner .date .rest {
  text-align: left;
  text-transform: uppercase;
  display: inline-block;
  color: #fff;
  font-size: 18px;
  font-family: 'Rubik', sans-serif;
  font-weight: 400;
  line-height: 23px;
}
section.page-calendar .calendar_list .calendar_item .calendar_item_right {
  float: right;
  width: 34%;
  z-index: -1;
}
@media (max-width: 991px) {
  section.page-calendar .calendar_list .calendar_item .calendar_item_right {
    float: none;
    width: 100%;
    display: none;
  }
  section.page-calendar .calendar_list .calendar_item .calendar_item_right.mobile {
    display: block !important;
    width: 100%;
    height: 300px;
  }
}
section.page-calendar .calendar_list .calendar_item .calendar_item_right .counter_outer {
  padding: 25px;
  background: #fff;
  text-align: center;
  margin-top: 50px;
  margin-left: 30px;
  color: #444;
  font-size: 25px;
  font-family: 'Rubik', sans-serif;
  font-weight: 400;
  line-height: 25px;
}
section.page-calendar .calendar_list .calendar_item:hover .calendar_item_inner {
  border-color: transparent;
  box-shadow: 0px 0px 20px rgba(0,0,0,0.15);
}
section.page-calendar .calendar_list .calendar_item:hover .calendar_item_inner .title {
  color: #fff;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
section.page-calendar .calendar_list .calendar_item:hover .calendar_item_inner .content p {
  color: #fff;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
section.page-calendar .calendar_list .calendar_item:hover .calendar_item_inner .item_bg {
  opacity: 1;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
}
section.page-calendar .calendar_list .calendar_item:hover .calendar_item_inner .date {
  background: transparent;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
section.page-calendar .calendar_list .calendar_item:hover .calendar_item_inner .date .day {
  color: #fff;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
section.page-calendar .calendar_list .calendar_item:hover .calendar_item_inner .date .rest {
  color: #fff;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
section.page-calendar .calendar_list .calendar_item:hover .calendar_item_inner .btn {
  color: #444;
  background: #fff;
  box-shadow: 0px 0px 20px rgba(0,0,0,0.2);
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
section.page-calendar .calendar_list .calendar_item:hover .calendar_item_inner .footer .right .tax_type {
  color: #fff;
  border-left: 2px solid #fff;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
section.page-calendar .calendar_list .calendar_item:hover .calendar_item_inner .footer .right .tax_market {
  color: #fff;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
section.page-portfolio .portfolio_filter {
  text-align: center;
  margin-top: 20px;
}
section.page-portfolio .portfolio_filter .filter_market {
  margin-bottom: 20px;
}
section.page-portfolio .portfolio_filter .filter_market .term_item {
  color: #444;
  font-size: 14px;
  font-family: 'Rubik', sans-serif;
  font-weight: 400;
  line-height: 12px;
  padding: 13px 25px;
  border: 2px solid transparent;
  text-transform: uppercase;
  display: inline-block;
  cursor: pointer;
  border-radius: 25px;
  margin-right: 20px;
  margin-bottom: 10px;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  box-shadow: 0px 0px 20px rgba(0,0,0,0.15);
}
section.page-portfolio .portfolio_filter .filter_market .term_item:hover,
section.page-portfolio .portfolio_filter .filter_market .term_item.active {
  box-shadow: none;
  color: #a9233e;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  border-color: #a9233e;
}
section.page-portfolio .portfolio_filter .filter_type .term_item {
  color: #fff;
  font-size: 14px;
  font-family: 'Rubik', sans-serif;
  font-weight: 400;
  line-height: 12px;
  padding: 13px 25px;
  border: 2px solid transparent;
  text-transform: uppercase;
  display: inline-block;
  cursor: pointer;
  border-radius: 25px;
  margin-right: 20px;
  margin-bottom: 10px;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  background: #a92358;
  background: -moz-linear-gradient(-45deg,#a92358 0%,#a9233e 100%);
  background: -webkit-linear-gradient(-45deg,#a92358 0%,#a9233e 100%);
  background: linear-gradient(135deg,#a92358 0%,#a9233e 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#a92358',endColorstr='#a9233e',GradientType=1);
}
section.page-portfolio .portfolio_filter .filter_type .term_item:hover,
section.page-portfolio .portfolio_filter .filter_type .term_item.active {
  box-shadow: none;
  color: #a9233e;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  border-color: #a9233e;
  background: #fff;
}
section.page-portfolio .portfolio_list {
  margin: 60px 0px;
}
section.page-portfolio .portfolio_list .col-lg-4:nth-of-type(3n+1) {
  clear: both;
}
section.page-portfolio .portfolio_list .portfolio_item {
  position: relative;
  padding-bottom: 130px;
}
section.page-portfolio .portfolio_list .portfolio_item img {
  width: 100%;
  max-height: 325px;
}
section.page-portfolio .portfolio_list .portfolio_item .details {
  position: absolute;
  left: 25px;
  right: 25px;
  text-align: center;
  padding: 30px;
  padding-bottom: 50px;
  background: #fff;
  transform: translate(0px,-30px);
  overflow: hidden;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
section.page-portfolio .portfolio_list .portfolio_item .details .title {
  color: #444;
  font-size: 20px;
  font-family: 'Rubik', sans-serif;
  font-weight: 500;
  line-height: 24px;
}
section.page-portfolio .portfolio_list .portfolio_item .details .button {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translate(-93.5px,0);
  opacity: 0;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
section.page-portfolio .portfolio_list .portfolio_item .details .button .btn {
  color: #444;
  background: #fff;
  box-shadow: 0px 0px 20px rgba(0,0,0,0.3);
}
section.page-portfolio .portfolio_list .portfolio_item .details .item_bg {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  opacity: 0;
  z-index: -1;
  background: #a92358;
  background: -moz-linear-gradient(-45deg,#a92358 0%,#a9233e 100%);
  background: -webkit-linear-gradient(-45deg,#a92358 0%,#a9233e 100%);
  background: linear-gradient(135deg,#a92358 0%,#a9233e 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#a92358',endColorstr='#a9233e',GradientType=1);
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
section.page-portfolio .portfolio_list .portfolio_item:hover .details {
  transform: translate(0px,-100px);
  padding-bottom: 100px;
  box-shadow: 0px 0px 20px rgba(0,0,0,0.3);
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
section.page-portfolio .portfolio_list .portfolio_item:hover .details .item_bg {
  opacity: 1;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
section.page-portfolio .portfolio_list .portfolio_item:hover .details .title {
  color: #fff;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
section.page-portfolio .portfolio_list .portfolio_item:hover .details .button {
  bottom: 50px;
  opacity: 1;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.page-project .title_wrapper {
  width: 840px;
  margin-left: auto;
  margin-right: auto;
}
.page-project .title_wrapper .place {
  color: #444;
  font-size: 18px;
  font-family: 'Rubik', sans-serif;
  font-weight: 400;
  line-height: 20px;
  padding: 25px;
  padding-bottom: 30px;
  text-transform: uppercase;
  text-align: center;
  background: #fff;
  margin-bottom: -25px;
  position: relative;
  z-index: 1;
}
.page-project .main_pic {
  height: 550px;
}
.page-project .project_detail_outer {
  padding-bottom: 60px;
}
.page-project .project_spec:before,
.page-project .project_spec:after {
  content: " ";
  display: table;
}
.page-project .project_spec:after {
  clear: both;
}
.page-project .project_spec .numbers {
  margin-top: -45px;
  float: left;
}
.page-project .project_spec .numbers .number_outer {
  float: left;
  background: #fff;
  width: 190px;
  height: 145px;
  text-align: center;
  padding: 30px;
  margin-right: 20px;
  box-shadow: 0px 10px 20px rgba(0,0,0,0.15);
}
.page-project .project_spec .numbers .number_outer .number {
  background: #c93670;
  background: -moz-linear-gradient(-45deg,#c93670 0%,#a9233e 100%);
  background: -webkit-linear-gradient(-45deg,#c93670 0%,#a9233e 100%);
  background: linear-gradient(135deg,#c93670 0%,#a9233e 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#c93670',endColorstr='#a9233e',GradientType=1);
  display: inline-block;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
  color: #444;
  font-size: 50px;
  font-family: 'Rubik', sans-serif;
  font-weight: 400;
  line-height: 50px;
  margin-bottom: 10px;
}
.page-project .project_spec .numbers .number_outer .name {
  color: #444;
  font-size: 14px;
  font-family: 'Rubik', sans-serif;
  font-weight: 400;
  line-height: 18px;
  text-transform: uppercase;
}
.page-project .project_spec .right {
  float: right;
  margin-top: 45px;
  margin-right: 30px;
}
.page-project .project_spec .right .tax_market {
  color: #444;
  font-size: 15px;
  font-family: 'Rubik', sans-serif;
  font-weight: 500;
  line-height: 45px;
  text-transform: uppercase;
  display: inline-block;
  padding-right: 15px;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.page-project .project_spec .right .tax_type {
  color: #444;
  font-size: 15px;
  font-family: 'Rubik', sans-serif;
  font-weight: 500;
  line-height: 45px;
  text-transform: uppercase;
  padding-left: 15px;
  border-left: 2px solid #a9233e;
  display: inline-block;
  color: #a9233e;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.page-project .project_text {
  padding-top: 60px;
  padding-bottom: 20px;
  column-count: 2;
}
.page-project .project_text p {
  color: #444;
  font-size: 16px;
  font-family: 'Rubik', sans-serif;
  font-weight: 400;
  line-height: 22px;
}
.page-project .project_text p:first-child {
  margin-top: 0px;
}
.page-project .project_text strong p {
  font-weight: 500;
}
.similar_projects .swiper-container {
  padding-bottom: 30px;
}
.similar_projects .swiper-button-prev,
.similar_projects .swiper-button-next {
  width: 50px;
  height: 50px;
  margin-top: -30px;
  outline: none;
}
.similar_projects .swiper-button-prev {
  background: url(/img/arrow.svg) center center no-repeat;
  background-size: cover;
  transform: rotate(180deg);
  left: -50px;
  right: auto;
}
.similar_projects .swiper-button-next {
  background: url(/img/arrow.svg) center center no-repeat;
  background-size: cover;
  right: -50px;
  left: auto;
}
.similar_projects .swiper-pagination-bullet {
  width: 20px;
  height: 20px;
  background: #ddd;
  border-radius: 50px;
  opacity: 1;
  margin: 0 3px;
}
.similar_projects .swiper-pagination-bullet-active {
  opacity: 1;
  background: #a92358;
}
.similar_projects .subtitle {
  margin: 60px 0px;
}
.similar_projects .subtitle h2 {
  color: #444;
  font-size: 45px;
  font-family: 'Rubik', sans-serif;
  font-weight: 400;
  line-height: 45px;
  background: #c93670;
  background: -moz-linear-gradient(-45deg,#c93670 0%,#a9233e 100%);
  background: -webkit-linear-gradient(-45deg,#c93670 0%,#a9233e 100%);
  background: linear-gradient(135deg,#c93670 0%,#a9233e 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#c93670',endColorstr='#a9233e',GradientType=1);
  display: inline-block;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent;
}
.similar_projects .portfolio_item {
  position: relative;
  padding-bottom: 130px;
}
.similar_projects .portfolio_item img {
  width: 100%;
  max-height: 325px;
}
.similar_projects .portfolio_item .details {
  position: absolute;
  left: 25px;
  right: 25px;
  text-align: center;
  padding: 30px;
  padding-bottom: 50px;
  background: #fff;
  transform: translate(0px,-30px);
  overflow: hidden;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.similar_projects .portfolio_item .details .title {
  color: #444;
  font-size: 20px;
  font-family: 'Rubik', sans-serif;
  font-weight: 500;
  line-height: 24px;
}
.similar_projects .portfolio_item .details .button {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translate(-93.5px,0);
  opacity: 0;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.similar_projects .portfolio_item .details .button .btn {
  color: #444;
  background: #fff;
  box-shadow: 0px 0px 20px rgba(0,0,0,0.3);
}
.similar_projects .portfolio_item .details .item_bg {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  opacity: 0;
  z-index: -1;
  background: #a92358;
  background: -moz-linear-gradient(-45deg,#a92358 0%,#a9233e 100%);
  background: -webkit-linear-gradient(-45deg,#a92358 0%,#a9233e 100%);
  background: linear-gradient(135deg,#a92358 0%,#a9233e 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#a92358',endColorstr='#a9233e',GradientType=1);
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.similar_projects .portfolio_item:hover .details {
  transform: translate(0px,-100px);
  padding-bottom: 100px;
  box-shadow: 0px 0px 20px rgba(0,0,0,0.3);
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.similar_projects .portfolio_item:hover .details .item_bg {
  opacity: 1;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.similar_projects .portfolio_item:hover .details .title {
  color: #fff;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.similar_projects .portfolio_item:hover .details .button {
  bottom: 50px;
  opacity: 1;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 999999;
  background: rgba(255,255,255,0.8);
  text-align: center;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.modal.on {
  visibility: visible;
  opacity: 1;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.modal:before {
  display: inline-block;
  vertical-align: middle;
  content: " ";
  height: 100%;
}
.modal .modal-inner {
  display: inline-block;
  text-align: left;
  vertical-align: middle;
}
.modal .close {
  position: absolute;
  right: 0px;
  top: 0px;
  cursor: pointer;
  color: #fff;
  background: #2aaecd;
  text-align: center;
  font-size: 34px;
  width: 38px;
  height: 38px;
  opacity: 1;
  z-index: 9999999;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.modal .close.hide {
  display: none;
}
@media (max-width: 991px) {
  .modal-imageviewer .modal-inner {
    width: 100%;
  }
}
@media (min-width: 992px) {
  .modal-imageviewer .modal-inner {
    width: 840px;
  }
}
@media (min-width: 1200px) {
  .modal-imageviewer .modal-inner {
    width: 1040px;
  }
}
.modal-imageviewer .modal-content {
  position: relative;
  text-align: center;
}
.modal-imageviewer .modal-content .slide {
  position: relative;
}
.modal-imageviewer .modal-content img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}
.modal-imageviewer .close {
  position: absolute;
  right: -60px;
  top: 0px;
  cursor: pointer;
  color: #fff;
  background: #a92358;
  background: -moz-linear-gradient(-45deg,#a92358 0%,#a9233e 100%);
  background: -webkit-linear-gradient(-45deg,#a92358 0%,#a9233e 100%);
  background: linear-gradient(135deg,#a92358 0%,#a9233e 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#a92358',endColorstr='#a9233e',GradientType=1);
  text-align: center;
  font-size: 34px;
  width: 38px;
  height: 38px;
  opacity: 1;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  z-index: 9999999;
}
@media (max-width: 991px) {
  .modal-imageviewer .close {
    right: 0px;
  }
}
.modal-imageviewer .swiper-container {
  padding-bottom: 30px;
}
.modal-imageviewer .swiper-button-prev,
.modal-imageviewer .swiper-button-next {
  width: 50px;
  height: 50px;
  margin-top: -30px;
  outline: none;
}
.modal-imageviewer .swiper-button-prev {
  background: url(/img/arrow.svg) center center no-repeat;
  background-size: cover;
  transform: rotate(180deg);
  left: -50px;
  right: auto;
}
.modal-imageviewer .swiper-button-next {
  background: url(/img/arrow.svg) center center no-repeat;
  background-size: cover;
  right: -50px;
  left: auto;
}
.modal-imageviewer .swiper-pagination-bullet {
  width: 20px;
  height: 20px;
  background: #ddd;
  border-radius: 50px;
  opacity: 1;
  margin: 0 3px;
}
.modal-imageviewer .swiper-pagination-bullet-active {
  opacity: 1;
  background: #a92358;
}
.swiper-container {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}
.swiper-container-no-flexbox .swiper-slide {
  float: left;
}
.swiper-container-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}
.swiper-container-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0px,0,0);
  transform: translate3d(0px,0,0);
}
.swiper-container-multirow > .swiper-wrapper {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.swiper-container-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  margin: 0 auto;
}
.swiper-slide {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}
.swiper-invisible-blank-slide {
  visibility: hidden;
}
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}
.swiper-container-autoheight .swiper-wrapper {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  -o-transition-property: transform, height;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform;
}
.swiper-container-3d {
  -webkit-perspective: 1200px;
  perspective: 1200px;
}
.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-container-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear,right top,left top,from(rgba(0,0,0,0.5)),to(rgba(0,0,0,0)));
  background-image: -webkit-linear-gradient(right,rgba(0,0,0,0.5),rgba(0,0,0,0));
  background-image: -o-linear-gradient(right,rgba(0,0,0,0.5),rgba(0,0,0,0));
  background-image: linear-gradient(to left,rgba(0,0,0,0.5),rgba(0,0,0,0));
}
.swiper-container-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear,left top,right top,from(rgba(0,0,0,0.5)),to(rgba(0,0,0,0)));
  background-image: -webkit-linear-gradient(left,rgba(0,0,0,0.5),rgba(0,0,0,0));
  background-image: -o-linear-gradient(left,rgba(0,0,0,0.5),rgba(0,0,0,0));
  background-image: linear-gradient(to right,rgba(0,0,0,0.5),rgba(0,0,0,0));
}
.swiper-container-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear,left bottom,left top,from(rgba(0,0,0,0.5)),to(rgba(0,0,0,0)));
  background-image: -webkit-linear-gradient(bottom,rgba(0,0,0,0.5),rgba(0,0,0,0));
  background-image: -o-linear-gradient(bottom,rgba(0,0,0,0.5),rgba(0,0,0,0));
  background-image: linear-gradient(to top,rgba(0,0,0,0.5),rgba(0,0,0,0));
}
.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear,left top,left bottom,from(rgba(0,0,0,0.5)),to(rgba(0,0,0,0)));
  background-image: -webkit-linear-gradient(top,rgba(0,0,0,0.5),rgba(0,0,0,0));
  background-image: -o-linear-gradient(top,rgba(0,0,0,0.5),rgba(0,0,0,0));
  background-image: linear-gradient(to bottom,rgba(0,0,0,0.5),rgba(0,0,0,0));
}
.swiper-container-wp8-horizontal,
.swiper-container-wp8-horizontal > .swiper-wrapper {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}
.swiper-container-wp8-vertical,
.swiper-container-wp8-vertical > .swiper-wrapper {
  -ms-touch-action: pan-x;
  touch-action: pan-x;
}
.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: 27px;
  height: 44px;
  margin-top: -22px;
  z-index: 10;
  cursor: pointer;
  background-size: 27px 44px;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  -webkit-transition: all 0.2s ease-out;
  -moz-transition: all 0.2s ease-out;
  -o-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  pointer-events: none;
}
.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  left: 10px;
  right: auto;
}
.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  right: 10px;
  left: auto;
}
.swiper-button-prev.swiper-button-white,
.swiper-container-rtl .swiper-button-next.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-next.swiper-button-white,
.swiper-container-rtl .swiper-button-prev.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-prev.swiper-button-black,
.swiper-container-rtl .swiper-button-next.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-next.swiper-button-black,
.swiper-container-rtl .swiper-button-prev.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-lock {
  display: none;
}
.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 300ms opacity;
  -o-transition: 300ms opacity;
  transition: 300ms opacity;
  -webkit-transform: translate3d(0,0,0);
  transform: translate3d(0,0,0);
  z-index: 10;
}
.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 30px;
  left: 0;
  width: 100%;
}
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
  position: relative;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(0.66);
  -ms-transform: scale(0.66);
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(0.66);
  -ms-transform: scale(0.66);
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
}
.swiper-pagination-bullet {
  display: inline-block;
  width: 12px;
  height: 12px;
  background: #3ab9d7;
  opacity: 0.2;
  transform: rotate(45deg);
  border-radius: 2px;
}
button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}
.swiper-pagination-bullet-active {
  opacity: 1;
  background: #007aff;
}
.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0px,-50%,0);
  transform: translate3d(0px,-50%,0);
}
.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px 0;
  display: block;
}
.swiper-container-vertical > .swiper-pagination-bullets	.swiper-pagination-bullets-dynamic {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 8px;
}
.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  -webkit-transition: 200ms top, 200ms -webkit-transform;
  transition: 200ms top, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top, 200ms -webkit-transform;
}
.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
}
.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  white-space: nowrap;
}
.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms left, 200ms -webkit-transform;
  transition: 200ms left, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left, 200ms -webkit-transform;
}
.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms right, 200ms -webkit-transform;
  transition: 200ms right, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right, 200ms -webkit-transform;
}
.swiper-pagination-progressbar {
  background: rgba(0,0,0,0.25);
  position: absolute;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #007aff;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
}
.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
  -ms-transform-origin: right top;
  transform-origin: right top;
}
.swiper-container-horizontal > .swiper-pagination-progressbar,
.swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}
.swiper-container-vertical > .swiper-pagination-progressbar,
.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}
.swiper-pagination-white .swiper-pagination-bullet-active {
  background: #ffffff;
}
.swiper-pagination-progressbar.swiper-pagination-white {
  background: rgba(255,255,255,0.25);
}
.swiper-pagination-progressbar.swiper-pagination-white .swiper-pagination-progressbar-fill {
  background: #ffffff;
}
.swiper-pagination-black .swiper-pagination-bullet-active {
  background: #000000;
}
.swiper-pagination-progressbar.swiper-pagination-black {
  background: rgba(0,0,0,0.25);
}
.swiper-pagination-progressbar.swiper-pagination-black .swiper-pagination-progressbar-fill {
  background: #000000;
}
.swiper-pagination-lock {
  display: none;
}
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0,0,0,0.1);
}
.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}
.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}
.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0,0,0,0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}
.swiper-scrollbar-cursor-drag {
  cursor: move;
}
.swiper-scrollbar-lock {
  display: none;
}
.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}
.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.swiper-slide-zoomed {
  cursor: move;
}
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
  -ms-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s steps(12,end) infinite;
  animation: swiper-preloader-spin 1s steps(12,end) infinite;
}
.swiper-lazy-preloader:after {
  display: block;
  content: '';
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-position: 50%;
  background-size: 100%;
  background-repeat: no-repeat;
}
.swiper-lazy-preloader-white:after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
@-webkit-keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}
.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.swiper-container-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
}
.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-cube {
  overflow: visible;
}
.swiper-container-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}
.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-cube.swiper-container-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
  -ms-transform-origin: 100% 0;
  transform-origin: 100% 0;
}
.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}
.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
  z-index: 0;
}
.swiper-container-flip {
  overflow: visible;
}
.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}
.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.swiper-container-coverflow .swiper-wrapper {
  -ms-perspective: 1200px;
}
