/* animate.css*/
@charset "UTF-8";

/*!
 * animate.css -https://daneden.github.io/animate.css/
 * Version - 3.7.2
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2019 Daniel Eden
 */

@-webkit-keyframes bounce {
  from,
  20%,
  53%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}

@keyframes bounce {
  from,
  20%,
  53%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  40%,
  43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }

  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}

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

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

  25%,
  75% {
    opacity: 0;
  }
}

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

  25%,
  75% {
    opacity: 0;
  }
}

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

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

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

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

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

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

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

@-webkit-keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

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

@-webkit-keyframes shake {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}

@keyframes shake {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}

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

@-webkit-keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }

  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }

  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }

  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }

  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }

  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }

  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }

  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }

  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

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

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

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

@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }

  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }

  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

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

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes wobble {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes wobble {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

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

@-webkit-keyframes jello {
  from,
  11.1%,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }

  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }

  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }

  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }

  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }

  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }

  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}

@keyframes jello {
  from,
  11.1%,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }

  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }

  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }

  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }

  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }

  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }

  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}

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

@-webkit-keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }

  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.heartBeat {
  -webkit-animation-name: heartBeat;
  animation-name: heartBeat;
  -webkit-animation-duration: 1.3s;
  animation-duration: 1.3s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

@-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) scale3d(1, 1, 1) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) scale3d(1, 1, 1) 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) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) scale3d(1, 1, 1) 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) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  to {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

@keyframes flip {
  from {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) scale3d(1, 1, 1) 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) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) scale3d(1, 1, 1) 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) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  to {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -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);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@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);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

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

@-webkit-keyframes lightSpeedOut {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}

@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}

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

@-webkit-keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

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

@-webkit-keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

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

@-webkit-keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

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

@-webkit-keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

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

@-webkit-keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

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

@-webkit-keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}

@keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}

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

@-webkit-keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}

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

@-webkit-keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

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

@-webkit-keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

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

@-webkit-keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}

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

@-webkit-keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%,
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40%,
  80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}

@keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%,
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40%,
  80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}

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

@-webkit-keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }

  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }

  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }

  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }

  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

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

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

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

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes rollOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}

@keyframes rollOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}

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

@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }
}

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

@-webkit-keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

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

@-webkit-keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

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

@-webkit-keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

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

@-webkit-keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

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

@-webkit-keyframes zoomOut {
  from {
    opacity: 1;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  to {
    opacity: 0;
  }
}

@keyframes zoomOut {
  from {
    opacity: 1;
  }

  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  to {
    opacity: 0;
  }
}

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

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

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

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}

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

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }

  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}

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

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}

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

@-webkit-keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

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

@-webkit-keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

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

@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

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

@-webkit-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

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

@-webkit-keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

@keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

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

@-webkit-keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

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

@-webkit-keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

@keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

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

@-webkit-keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

@keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

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

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

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

.animated.delay-1s {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.animated.delay-2s {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.animated.delay-3s {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}

.animated.delay-4s {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}

.animated.delay-5s {
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
}

.animated.fast {
  -webkit-animation-duration: 800ms;
  animation-duration: 800ms;
}

.animated.faster {
  -webkit-animation-duration: 500ms;
  animation-duration: 500ms;
}

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

.animated.slower {
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
}

@media (print), (prefers-reduced-motion: reduce) {
  .animated {
    -webkit-animation-duration: 1ms !important;
    animation-duration: 1ms !important;
    -webkit-transition-duration: 1ms !important;
    transition-duration: 1ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
  }
}


@charset "UTF-8";
/* HTML5 Boilerplate
 * ==|== normalize.css ==========================================================
 */
article, aside, details, figcaption, figure, footer, header, hgroup, nav, section {
  display: block; }

audio, canvas, video {
  display: inline-block;
  *display: inline;
  *zoom: 1; }

audio:not([controls]) {
  display: none; }

[hidden] {
  display: none; }

html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%; }

body {
  margin: 0;
  font-size: 13px;
  line-height: 1.231; }

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

abbr[title] {
  border-bottom: 1px dotted; }

b, strong {
  font-weight: bold; }

blockquote {
  margin: 1em 40px; }

dfn {
  font-style: italic; }

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0; }

ins {
  background: #ff9;
  color: #000;
  text-decoration: none; }

mark {
  background: #ff0;
  color: #000;
  font-style: italic;
  font-weight: bold; }

pre, code, kbd, samp {
  font-family: monospace, monospace;
  _font-family: 'courier new', monospace;
  font-size: 1em; }

pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word; }

q {
  quotes: none; }

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

small {
  font-size: 85%; }

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

ul, ol {
  margin: 0;
  padding: 0; }

dd {
  margin: 0 0 0 40px; }

nav ul, nav ol {
  list-style: none;
  list-style-image: none;
  margin: 0;
  padding: 0; }

img {
  border: 0;
  -ms-interpolation-mode: bicubic;
  vertical-align: middle; }

svg:not(:root) {
  overflow: hidden; }

figure {
  margin: 0; }

form {
  margin: 0; }

fieldset {
  border: 0;
  margin: 0;
  padding: 0; }

label {
  cursor: pointer; }

legend {
  border: 0;
  *margin-left: -7px;
  padding: 0; }

button, input, select, textarea {
  font-size: 100%;
  margin: 0;
  vertical-align: baseline;
  *vertical-align: middle; }

button, input {
  line-height: normal;
  *overflow: visible; }

table button, table input {
  *overflow: auto; }

button, input[type="button"], input[type="reset"], input[type="submit"] {
  cursor: pointer;
  -webkit-appearance: button; }

input[type="checkbox"], input[type="radio"] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

input[type="search"] {
  -webkit-appearance: textfield;
  -webkit-box-sizing: content-box;
  box-sizing: content-box; }

input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

button::-moz-focus-inner, input::-moz-focus-inner {
  border: 0;
  padding: 0; }

textarea {
  overflow: auto;
  vertical-align: top;
  resize: vertical; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

td {
  vertical-align: top; }

/* ==|== non-semantic helper classes ======================================== */
.ir {
  display: block;
  border: 0;
  text-indent: -999em;
  overflow: hidden;
  background-color: transparent;
  background-repeat: no-repeat;
  text-align: left;
  direction: ltr; }

.ir br {
  display: none; }

.hidden {
  display: none !important;
  visibility: hidden; }

.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px; }

.visuallyhidden.focusable:active, .visuallyhidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto; }

.invisible {
  visibility: hidden; }

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent; }

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

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

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

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

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

/* Slider */
.slick-loading .slick-list {
  background: #fff url("./ajax-loader.gif") center center no-repeat; }

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

/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none; }
  .slick-prev:hover, .slick-prev:focus,
  .slick-next:hover,
  .slick-next:focus {
    outline: none;
    background: transparent;
    color: transparent; }
    .slick-prev:hover:before, .slick-prev:focus:before,
    .slick-next:hover:before,
    .slick-next:focus:before {
      opacity: 1; }
  .slick-prev.slick-disabled:before,
  .slick-next.slick-disabled:before {
    opacity: 0.25; }
  .slick-prev:before,
  .slick-next:before {
    font-family: "slick";
    font-size: 20px;
    line-height: 1;
    color: white;
    opacity: 0.75;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; }

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

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

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

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%; }
  .slick-dots li {
    position: relative;
    display: inline-block;
    height: 20px;
    width: 20px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer; }
    .slick-dots li button {
      border: 0;
      background: transparent;
      display: block;
      height: 20px;
      width: 20px;
      outline: none;
      line-height: 0px;
      font-size: 0px;
      color: transparent;
      padding: 5px;
      cursor: pointer; }
      .slick-dots li button:hover, .slick-dots li button:focus {
        outline: none; }
        .slick-dots li button:hover:before, .slick-dots li button:focus:before {
          opacity: 1; }
      .slick-dots li button:before {
        position: absolute;
        top: 0;
        left: 0;
        content: "•";
        width: 20px;
        height: 20px;
        font-family: "slick";
        font-size: 6px;
        line-height: 20px;
        text-align: center;
        color: black;
        opacity: 0.25;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale; }
    .slick-dots li.slick-active button:before {
      color: black;
      opacity: 0.75; }

/**
* Lato Light
**/
@font-face {
  font-family: 'Lato';
  src: url("../fonts/Lato/Lato-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: 300; }

/**
* Lato Regular / Medium
**/
@font-face {
  font-family: 'Lato';
  src: url("../fonts/Lato/Lato-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: 400; }

/**
* Lato Bold
**/
@font-face {
  font-family: 'Lato';
  src: url("../fonts/Lato/Lato-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: 700; }

/**
* Lato Black
**/
@font-face {
  font-family: 'Lato';
  src: url("../fonts/Lato/Lato-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: 900; }

/**
* Manrope Extra-Light
**/
@font-face {
  font-family: 'Manrope';
  src: url("../fonts/Manrope/Manrope-ExtraLight.ttf") format("truetype");
  font-weight: 200;
  font-style: normal; }

/**
* Manrope Light
**/
@font-face {
  font-family: 'Manrope';
  src: url("../fonts/Manrope/Manrope-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal; }

/**
* Manrope Regular
**/
@font-face {
  font-family: 'Manrope';
  src: url("../fonts/Manrope/Manrope-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal; }

/**
* Manrope Medium
**/
@font-face {
  font-family: 'Manrope';
  src: url("../fonts/Manrope/Manrope-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal; }

/**
* Manrope Semi-Bold
**/
@font-face {
  font-family: 'Manrope';
  src: url("../fonts/Manrope/Manrope-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal; }

/**
* Manrope Bold
**/
@font-face {
  font-family: 'Manrope';
  src: url("../fonts/Manrope/Manrope-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal; }

/**
* Manrope Extra-Bold
**/
@font-face {
  font-family: 'Manrope';
  src: url("../fonts/Manrope/Manrope-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal; }

h1,
h2,
h3,
h4,
h5 {
  font-family: 'Baloo 2', cursive;
  font-weight: 600;
  line-height: 5rem;
  margin: 0;
  text-align: left; }

h1,
.heading-1,
h2,
.heading-2 {
  font-size: 4.2rem;
  color: #2b211e; }
  @media (max-width: 1439px) {
    h1,
    .heading-1,
    h2,
    .heading-2 {
      font-size: 4rem;
      line-height: 5.2rem; } }
  @media (max-width: 1439px) {
    h1,
    .heading-1,
    h2,
    .heading-2 {
      font-size: 3rem;
      line-height: 3.5rem; } }
  @media (max-width: 767px) {
    h1,
    .heading-1,
    h2,
    .heading-2 {
      font-size: 2.5rem;
      line-height: 3rem; } }

h1,
.heading-1 {
  margin-top: 10rem; }
  @media (max-width: 767px) {
    h1,
    .heading-1 {
      margin-top: 3rem; } }

h3,
.heading-3 {
  font-size: 2.4rem;
  line-height: 2.9rem;
  color: #2b211e;
  margin: 40px 0 30px; }

h4,
.heading-4 {
  font-size: 1.8rem;
  line-height: 2.1rem;
  color: #2b211e; }

h5,
.heading-5 {
  font-family: 'Monrope', sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 2.4rem;
  color: #d92332;
  margin-bottom: 10px; }

b,
strong {
  font-weight: 700; }

p,
.text,
ol li,
ul li {
  font-family: 'Manrope';
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2.4rem;
  color: #333;
  text-align: left; }
  @media (max-width: 1439px) {
    p,
    .text,
    ol li,
    ul li {
      font-size: 1.6rem;
      line-height: 2.8rem; } }

p {
  margin: 0 0 20px; }

p.info,
div.info p {
  font-family: 'Baloo 2', cursive;
  font-weight: 600;
  font-size: 2rem;
  line-height: 2.4rem;
  color: #d92332;
  margin: 3rem 0; }
  @media (max-width: 1439px) {
    p.info,
    div.info p {
      font-size: 1.8rem;
      line-height: 2.2rem; } }
  @media (max-width: 1023px) {
    p.info,
    div.info p {
      font-size: 1.6rem;
      line-height: 2rem; } }

.white {
  color: #ffffff !important; }

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

/*.pt-60 {
    padding-top: 60px;

    @include max-mobile() {
        padding-top: 40px;
    }
}

.pt-40 {
    padding-top: 40px;

    @include max-mobile() {
        padding-top: 30px;
    }
}

.pb-30 {
    padding-bottom: 30px;

    @include max-mobile() {
        padding-bottom: 20px;
    }
}

.mb-20 {
    padding-bottom: 20px;
}

.mb-10 {
    margin-bottom: 10px;
}
*/
.mt-100 {
  margin-top: 100px; }
  @media (max-width: 767px) {
    .mt-100 {
      margin-top: 60px; } }

.mt-60 {
  margin-top: 60px; }

.mt-40 {
  margin-top: 40px; }

.mb-30 {
  margin-bottom: 30px; }

.mh-56 {
  margin-right: 56px;
  margin-left: 56px; }
  @media (max-width: 767px) {
    .mh-56 {
      margin-right: auto;
      margin-left: auto; } }

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

* {
  outline: none !important; }

html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  height: 100%; }

body {
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  background: #f5f6f7;
  color: #2b211e;
  max-width: unset;
  min-width: 100vw;
  overflow-x: hidden; }

a {
  color: #2b211e;
  text-decoration: none; }
  a:hover {
    text-decoration: none !important; }
  a:visited {
    color: #2b211e; }

::-webkit-scrollbar {
  width: .25rem; }

::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px transparent;
  box-shadow: inset 0 0 6px transparent; }

::-webkit-scrollbar-thumb {
  background-color: darkgrey;
  outline: 1px solid slategrey; }

::-webkit-scrollbar {
  width: .25rem;
  height: .25rem; }

::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px transparent;
  box-shadow: inset 0 0 6px transparent; }

::-webkit-scrollbar-thumb {
  background-color: darkgrey;
  outline: 1px solid slategrey; }

img {
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  width: 100%;
  border-radius: 5px; }

ol li, ul li {
  margin-bottom: 30px; }

ul {
  padding-left: 0; }
  ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none; }
    ul li::before {
      content: '\2022';
      display: block;
      height: 100%;
      font-size: 18px;
      color: #bdbdbd;
      padding-right: 10px; }

blockquote,
blockquote p {
  font-family: 'Baloo 2', cursive;
  font-weight: 600;
  font-size: 2.4rem;
  line-height: 2.9rem;
  margin-top: 60px;
  margin-left: 0; }

.d-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }

.flex-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column; }

.flex-wrap {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }

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

.datepicker {
  z-index: 5;
  -webkit-transition: .4s;
  transition: .4s; }
  @media (min-width: 500px) {
    .datepicker {
      width: 350px; } }
  .datepicker--pointer {
    display: none; }
  .datepicker--day-name {
    font-family: 'Manrope', sans-serif;
    font-size: 1.2rem;
    line-height: 1.5rem;
    letter-spacing: 0.4px;
    text-transform: capitalize;
    color: rgba(0, 0, 0, 0.6); }
  .datepicker--cell.datepicker--cell-day {
    font-size: 1.6rem;
    line-height: 2.4rem;
    letter-spacing: 0.15px;
    color: rgba(0, 0, 0, 0.87); }
    @media (min-width: 500px) {
      .datepicker--cell.datepicker--cell-day {
        height: 45px; } }
    .datepicker--cell.datepicker--cell-day.-current- {
      color: #c5d932; }
    .datepicker--cell.datepicker--cell-day.-disabled- {
      color: #828282; }
  .datepicker--cell.-selected-, .datepicker--cell.-selected-.-current- {
    color: #ffffff;
    border-radius: 50%;
    background: #c5d932; }
  .datepicker--content {
    padding: 15px;
    max-height: 290px;
    overflow-y: hidden; }
    @media (max-width: 499px) {
      .datepicker--content {
        max-height: 210px; } }
  .datepicker--nav {
    padding: 10px;
    border-bottom: 0; }
  .datepicker--nav-title {
    font-weight: 500;
    font-size: 1.4rem;
    line-height: 2.1rem;
    letter-spacing: 0.1px;
    color: rgba(0, 0, 0, 0.87); }
    .datepicker--nav-title i {
      color: rgba(0, 0, 0, 0.87); }
  .datepicker--nav-action {
    -webkit-transform: scale(0.8);
    transform: scale(0.8); }
  .datepicker--cell.datepicker--cell-day.hasPosts:not(.-other-month-)::after {
    content: '\2022';
    position: absolute;
    bottom: -3px;
    color: #d92332; }
    @media (max-width: 499px) {
      .datepicker--cell.datepicker--cell-day.hasPosts:not(.-other-month-)::after {
        bottom: -8px; } }
  .datepicker--cell-day.-other-month-:nth-of-type(n+20) {
    display: none; }

.l-analitics {
  margin-top: 80px;
  margin-bottom: 60px; }
  @media (max-width: 767px) {
    .l-analitics {
      margin-bottom: 30px; } }
  .l-analitics p > a {
    font-weight: 700;
    border-bottom: 2px solid #c5d932; }
  .l-analitics table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 10px;
    font-weight: 500; }
    @media (max-width: 767px) {
      .l-analitics table thead {
        display: none; } }
    .l-analitics table thead th {
      text-align: left;
      color: #828282;
      padding: 10px; }
      .l-analitics table thead th:nth-of-type(1) {
        padding-left: 30px; }
    .l-analitics table tbody tr {
      background: #ffffff; }
      @media (max-width: 767px) {
        .l-analitics table tbody tr {
          display: block;
          margin-bottom: 10px; } }
      .l-analitics table tbody tr td {
        padding: 10px; }
        @media (max-width: 767px) {
          .l-analitics table tbody tr td {
            padding: 10px 20px; } }
        @media (max-width: 767px) {
          .l-analitics table tbody tr td {
            display: block; } }
        @media (max-width: 767px) {
          .l-analitics table tbody tr td::before {
            content: attr(aria-label) ": "; } }
        .l-analitics table tbody tr td:nth-of-type(1) {
          padding-left: 30px;
          border-bottom-left-radius: 5px;
          border-top-left-radius: 5px; }
          @media (max-width: 767px) {
            .l-analitics table tbody tr td:nth-of-type(1) {
              padding-left: 20px; } }
        .l-analitics table tbody tr td:nth-of-type(3) {
          font-weight: 700; }
        .l-analitics table tbody tr td:nth-last-of-type(1) {
          min-width: 120px;
          border-bottom-right-radius: 5px;
          border-top-right-radius: 5px; }

.l-contact {
  margin-top: 80px;
  margin-bottom: 60px; }
  @media (max-width: 767px) {
    .l-contact {
      margin-bottom: 30px; } }
  .l-contact .heading-1 {
    text-transform: capitalize; }
  .l-contact .heading-5 {
    font-size: 2rem; }
  .l-contact .acf-map {
    height: 300px; }
  .l-contact form label {
    color: #828282; }
  .l-contact form input,
  .l-contact form textarea {
    width: 100%;
    max-width: 408px;
    padding: 10px;
    margin-top: 10px;
    border-color: #e0e0e0;
    border-radius: 5px; }
  .l-contact form textarea {
    resize: none; }
  .l-contact form textarea:focus,
  .l-contact form input:focus {
    border-color: #c5d932; }
  .l-contact form .c-button {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    line-height: 1.8rem;
    color: #ffffff;
    padding: 14px 40px;
    margin: 0;
    border-radius: 30px;
    background: #8c1b24;
    opacity: 0.3;
    -webkit-transition: .3s;
    transition: .3s; }
    .l-contact form .c-button:hover, .l-contact form .c-button:focus, .l-contact form .c-button:active {
      opacity: 1; }

.l-facts {
  margin-top: 80px;
  margin-bottom: 60px; }
  @media (max-width: 767px) {
    .l-facts {
      margin-bottom: 30px; } }
  .l-facts .flex-wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
  .l-facts .heading-2 {
    min-width: 100%;
    font-weight: 600;
    font-size: 2rem;
    line-height: 2.4rem;
    text-align: center;
    margin-bottom: 30px; }
  .l-facts .circle {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center; }
    @media (max-width: 767px) {
      .l-facts .circle {
        width: 100% !important;
        margin: 0 auto 30px; } }
    .l-facts .circle p {
      font-size: 1.6rem;
      line-height: 1.6rem;
      font-weight: 600;
      margin-bottom: 0; }
      .l-facts .circle p strong {
        font-size: 2rem;
        line-height: 2.7rem;
        font-weight: 700; }
    .l-facts .circle::before {
      content: '';
      position: absolute;
      width: 100%;
      height: 100%;
      border-radius: 50%; }
    .l-facts .circle-big {
      width: 53%; }
      @media (max-width: 767px) {
        .l-facts .circle-big {
          max-width: 560px; } }
      @media (min-width: 500px) {
        .l-facts .circle-big > div {
          -webkit-transform: scale(1.3);
          transform: scale(1.3); } }
      .l-facts .circle-big:nth-of-type(1) {
        margin-bottom: 80px; }
        @media (max-width: 767px) {
          .l-facts .circle-big:nth-of-type(1) {
            margin-bottom: 30px; } }
      .l-facts .circle-big .d-flex {
        max-width: 250px;
        margin-bottom: 15px; }
    .l-facts .circle-medium {
      width: 38.6%; }
      @media (max-width: 767px) {
        .l-facts .circle-medium {
          width: 100%;
          max-width: 408px; } }
      .l-facts .circle-medium:nth-last-of-type(1) {
        margin: 0 auto; }
        .l-facts .circle-medium:nth-last-of-type(1) .heading-3 {
          font-size: 48px; }
      .l-facts .circle-medium .d-flex {
        max-width: 250px; }
    .l-facts .circle-big .heading-3, .l-facts .circle-medium .heading-3 {
      font-size: 3.6rem;
      line-height: 4.3rem;
      text-align: center;
      margin-top: 0; }
    .l-facts .circle-big .circle__icon, .l-facts .circle-medium .circle__icon {
      min-width: 50px;
      height: 50px;
      margin-right: 20px; }
    .l-facts .circle-small {
      width: 30.3%;
      margin-bottom: 60px; }
      @media (max-width: 767px) {
        .l-facts .circle-small {
          max-width: 365px; } }
      @media (max-width: 413px) {
        .l-facts .circle-small {
          max-width: 360px; } }
      .l-facts .circle-small .circle__icon {
        width: 90px;
        height: 90px; }
  .l-facts .c-container-sidebar {
    margin-right: auto;
    margin-left: auto; }
  .l-facts p > a {
    font-weight: 700;
    border-bottom: 2px solid #c5d932; }
  .l-facts a > img {
    width: auto; }
  .l-facts table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 10px;
    font-weight: 500; }
    @media (max-width: 767px) {
      .l-facts table thead {
        display: none; } }
    .l-facts table thead th {
      text-align: left;
      color: #828282;
      padding: 10px; }
      .l-facts table thead th:nth-of-type(1) {
        padding-left: 30px; }
    .l-facts table tbody tr {
      background: #ffffff; }
      @media (max-width: 767px) {
        .l-facts table tbody tr {
          display: block;
          margin-bottom: 10px; } }
      .l-facts table tbody tr td {
        padding: 10px; }
        @media (max-width: 767px) {
          .l-facts table tbody tr td {
            padding: 10px 20px; } }
        @media (max-width: 767px) {
          .l-facts table tbody tr td {
            display: block; } }
        @media (max-width: 767px) {
          .l-facts table tbody tr td::before {
            content: attr(aria-label) ": "; } }
        .l-facts table tbody tr td:nth-of-type(1) {
          padding-left: 30px;
          border-bottom-left-radius: 5px;
          border-top-left-radius: 5px; }
          @media (max-width: 767px) {
            .l-facts table tbody tr td:nth-of-type(1) {
              padding-left: 20px; } }
        .l-facts table tbody tr td:nth-of-type(3) {
          font-weight: 700; }
        .l-facts table tbody tr td:nth-last-of-type(1) {
          min-width: 120px;
          border-bottom-right-radius: 5px;
          border-top-right-radius: 5px; }

.l-home {
  position: relative;
  margin-top: 80px;
  background: #f7f7f7; }
  .l-home .c-container {
    max-width: 116.2rem;
    margin: 0 auto; }
    @media (max-width: 1199px) {
      .l-home .c-container {
        max-width: 95%;
        margin: 0 auto; } }
    @media (max-width: 767px) {
      .l-home .c-container {
        max-width: 100%;
        padding: 0 20px;
        margin: 0 auto; } }
  @media (max-width: 767px) {
    .l-home .d-flex.justify-between {
      -webkit-box-orient: vertical !important;
      -webkit-box-direction: normal !important;
      -ms-flex-direction: column !important;
      flex-direction: column !important; } }
  .l-home .info {
    font-size: 3.8rem;
    line-height: 4.6rem;
    text-align: center;
    color: #8c1b24;
    margin: 12rem auto 7rem; }
    @media (max-width: 767px) {
      .l-home .info {
        font-size: 2.8rem;
        line-height: 3.2rem;
        margin: 6rem auto 3rem; } }
  .l-home .c-button:hover, .l-home .c-button:focus {
    border: 2px solid #8c1b24; }
  .l-home .page__block {
    width: calc((100% - 60px) / 3);
    padding: 30px;
    background: #ffffff;
    border-radius: 5px;
    /*@include max-tablet() {
            width: calc(50% - 10px);
            margin-bottom: 20px;
        }*/ }
    .l-home .page__block .heading-4 {
      margin-bottom: 20px; }
    .l-home .page__block p {
      font-size: 1.4rem;
      line-height: 1.8rem;
      margin-bottom: 0; }
    @media (max-width: 767px) {
      .l-home .page__block {
        width: 100%;
        margin-bottom: 20px; } }

.parallax {
  position: relative;
  z-index: 10; }
  .parallax__layer {
    height: 1150px;
    width: auto; }
    @media (max-width: 767px) {
      .parallax__layer {
        display: none; } }
    .parallax__layer--back1 {
      z-index: 2;
      position: absolute;
      left: 0;
      top: -100px; }
      .parallax__layer--back1 img {
        position: relative;
        top: -30px; }
    .parallax__layer--back1r {
      z-index: 2;
      position: absolute;
      right: 0;
      top: -100px; }
      .parallax__layer--back1r img {
        position: relative;
        top: -30px;
        right: -60px; }
    .parallax__layer--back2 {
      z-index: 2;
      position: absolute;
      left: 0;
      top: 500px; }
    .parallax__layer--back2r {
      z-index: 2;
      position: absolute;
      right: 0;
      top: 500px; }
    .parallax__layer--back3 {
      z-index: 1;
      position: absolute;
      left: 0;
      top: 1000px; }
    .parallax__layer--back3r {
      z-index: 1;
      position: absolute;
      right: 0;
      top: 1000px; }

.l-members {
  margin-top: 80px;
  margin-bottom: 60px; }
  @media (max-width: 767px) {
    .l-members {
      margin-bottom: 30px; } }
  .l-members .c-container {
    width: 100vw; }
  .l-members .d-flex {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
  .l-members .heading-1,
  .l-members .heading-3 {
    width: 100%; }
  .l-members .member {
    width: calc(50% - 15px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 20px;
    margin-bottom: 30px;
    background: #ffffff;
    border-radius: 5px; }
    @media (max-width: 1023px) {
      .l-members .member {
        width: 100%; } }
    @media (max-width: 413px) {
      .l-members .member {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column; } }
    .l-members .member-small {
      width: calc((100% - 60px) / 3); }
      @media (max-width: 767px) {
        .l-members .member-small {
          width: calc(50% - 15px); } }
      @media (max-width: 413px) {
        .l-members .member-small {
          width: 100%; } }
      .l-members .member-small a {
        width: 100%;
        max-width: 200px;
        height: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        margin: 0 auto; }
      .l-members .member-small:nth-last-of-type(1) {
        margin-right: auto;
        margin-left: 30px; }
    .l-members .member__website {
      display: block;
      width: 150px;
      min-width: 150px;
      height: 160px; }
    .l-members .member__info {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      justify-content: space-between;
      margin-left: 25px; }
      @media (max-width: 1023px) {
        .l-members .member__info {
          margin-left: 15px; } }
      @media (max-width: 413px) {
        .l-members .member__info {
          margin: 10px 0 0 0; } }
    .l-members .member__title {
      font-family: 'Baloo 2', cursive;
      font-size: 2rem;
      line-height: 2.4rem;
      font-weight: 600;
      margin-bottom: 10px; }
    .l-members .member__name {
      font-family: 'Baloo 2', cursive;
      font-size: 1.6rem;
      line-height: 2.4rem;
      font-weight: 700;
      color: #8c1b24; }
    .l-members .member__address {
      font-size: 1.6rem;
      line-height: 2.4rem;
      font-weight: 500;
      color: #333;
      margin-bottom: 10px; }
    .l-members .member__contact {
      color: #828282; }
      .l-members .member__contact a {
        display: block;
        margin-top: 5px; }

.l-news {
  margin-top: 80px;
  margin-bottom: 60px; }
  @media (max-width: 767px) {
    .l-news {
      margin-bottom: 30px; } }
  .l-news .c-container {
    max-width: 116.2rem; }
    @media (max-width: 1199px) {
      .l-news .c-container {
        max-width: 95%;
        margin: 0 auto; } }
    @media (max-width: 767px) {
      .l-news .c-container {
        max-width: 100%;
        padding: 0 20px;
        margin: 0 auto; } }
  .l-news .news {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 30px;
    margin-bottom: 30px;
    background: #ffffff;
    border-radius: 5px; }
    @media (max-width: 767px) {
      .l-news .news {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse; } }
    .l-news .news > div {
      margin-right: 20px; }
    .l-news .news img {
      min-width: 162px;
      max-width: 162px;
      height: 100%; }
      @media (max-width: 767px) {
        .l-news .news img {
          min-height: 120px;
          width: 100%;
          margin-left: 0;
          margin-bottom: 20px; } }
    .l-news .news__title {
      font-family: 'Baloo 2', cursive;
      font-size: 2rem;
      line-height: 2.4rem;
      font-weight: 600;
      margin: 15px 0; }
    .l-news .news__meta a::after {
      content: '\2022';
      display: inline-block;
      font-size: 18px;
      color: #bdbdbd;
      padding: 0 5px; }
    .l-news .news__meta a:nth-last-of-type(1)::after {
      display: none; }
    .l-news .news__meta a {
      display: inline-block;
      color: #828282; }
    .l-news .news.special {
      background: #d92332; }
      .l-news .news.special .news__title a {
        color: #ffffff; }
      .l-news .news.special .news__text p,
      .l-news .news.special .news__meta a {
        color: #f2f2f2; }
      .l-news .news.special .news__meta a:nth-of-type(2) {
        font-weight: 700; }
      .l-news .news.special .news__meta a:nth-of-type(1)::after {
        color: #f2f2f2; }
    .l-news .news__twitter#ctf {
      margin-top: 100px;
      overflow-x: hidden; }
      @media (max-width: 413px) {
        .l-news .news__twitter#ctf {
          height: 325px !important; } }
      .l-news .news__twitter#ctf .slick-slider .slick-list {
        padding: 0 56px; }
        @media (max-width: 767px) {
          .l-news .news__twitter#ctf .slick-slider .slick-list {
            padding: 0 40px; } }
      .l-news .news__twitter#ctf .slick-slider .slick-track,
      .l-news .news__twitter#ctf .slick-slider .slick-list {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        margin: 0 -54px 0 -18px; }
      .l-news .news__twitter#ctf .ctf-item {
        position: relative;
        height: 100%;
        max-height: 260px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        padding: 20px 20px 10px;
        margin: 0 36px;
        border-radius: 4px;
        border: 1px solid #E1E8ED;
        -webkit-box-sizing: border-box;
        box-sizing: border-box; }
        @media (max-width: 413px) {
          .l-news .news__twitter#ctf .ctf-item {
            padding: 10px; } }
        .l-news .news__twitter#ctf .ctf-item .ctf-corner-logo {
          margin-top: -45px; }
        .l-news .news__twitter#ctf .ctf-item .ctf-author-screenname {
          display: block;
          width: 100%;
          color: #697882 !important; }
        .l-news .news__twitter#ctf .ctf-item .ctf-tweet-meta {
          position: absolute;
          bottom: 35px;
          left: 16px; }
          @media (max-width: 338px) {
            .l-news .news__twitter#ctf .ctf-item .ctf-tweet-meta {
              bottom: 55px; } }
          .l-news .news__twitter#ctf .ctf-item .ctf-tweet-meta a {
            color: #697882 !important; }
        .l-news .news__twitter#ctf .ctf-item .ctf-tweet-actions,
        .l-news .news__twitter#ctf .ctf-item .ctf-tweet-content {
          margin-left: 0; }
        .l-news .news__twitter#ctf .ctf-item .ctf-tweet-content {
          margin-bottom: 20px; }
        .l-news .news__twitter#ctf .ctf-item .ctf-screename-sep,
        .l-news .news__twitter#ctf .ctf-item .ctf-reply,
        .l-news .news__twitter#ctf .ctf-item .ctf-retweet {
          display: none; }
      .l-news .news__twitter#ctf ul li::before {
        content: ''; }
      .l-news .news__twitter#ctf .slick-dots {
        bottom: -60px; }
        .l-news .news__twitter#ctf .slick-dots li button:before {
          font-size: 25px;
          margin-left: -10px;
          color: #ffffff;
          opacity: 1; }
        .l-news .news__twitter#ctf .slick-dots li.slick-active button:before {
          color: #c5d932;
          opacity: 1; }
        .l-news .news__twitter#ctf .slick-dots li:nth-of-type(1) button:before {
          margin-left: 0; }
      .l-news .news__twitter#ctf .slick-prev,
      .l-news .news__twitter#ctf .slick-next {
        height: 32px;
        width: 32px;
        background: url(../img/angle.svg) center no-repeat;
        border: 1px solid #E0E0E0;
        border-radius: 50%; }
        .l-news .news__twitter#ctf .slick-prev:hover, .l-news .news__twitter#ctf .slick-prev:active,
        .l-news .news__twitter#ctf .slick-next:hover,
        .l-news .news__twitter#ctf .slick-next:active {
          background-color: #c5d932;
          border: 1px solid #c5d932; }
        .l-news .news__twitter#ctf .slick-prev::before,
        .l-news .news__twitter#ctf .slick-next::before {
          content: ''; }
      .l-news .news__twitter#ctf .slick-next {
        right: 0;
        -webkit-transform: rotate(180deg) translate(0, 50%);
        transform: rotate(180deg) translate(0, 50%); }
      .l-news .news__twitter#ctf .slick-prev {
        left: 0;
        z-index: 10; }
  .l-news ::-webkit-scrollbar {
    height: 0 !important; }
  .l-news .c-button.c-button-brown {
    color: #ffffff;
    margin: 0 auto 0 0;
    background: #8c1b24; }
  .l-news .filter {
    padding: 30px;
    margin-bottom: 60px;
    border: 2px solid #EBEBEB;
    border-radius: 5px;
    /*@include max-mobile() {
            flex-direction: column;
        }*/ }
    .l-news .filter__title {
      color: #333;
      font-weight: 700;
      margin-bottom: 20px; }
    .l-news .filter .d-flex .d-flex {
      -ms-flex-wrap: wrap;
      flex-wrap: wrap; }
    .l-news .filter form {
      width: 100%;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap; }
      @media (max-width: 767px) {
        .l-news .filter form {
          margin-top: 20px;
          margin-left: 0; } }
      .l-news .filter form span {
        display: block;
        min-width: 35px;
        margin: 7px 20px 0 0; }
      .l-news .filter form input[type=checkbox],
      .l-news .filter form input[type=radio] {
        opacity: 0;
        position: absolute; }
      .l-news .filter form .c-button {
        position: relative;
        font-weight: 500;
        text-transform: capitalize;
        letter-spacing: 0vw;
        color: #8c1b24;
        padding: 5px 20px;
        margin: 0 25px 20px 0;
        border-radius: 17px;
        border: 2px solid transparent; }
        .l-news .filter form .c-button.category {
          color: #c5d932; }
        .l-news .filter form .c-button.special {
          font-weight: 700;
          color: #d92332; }
        .l-news .filter form .c-button-reset {
          color: #bdbdbd;
          border: 2px solid #ebebeb;
          background: transparent; }
      .l-news .filter form .date {
        max-width: 111px;
        background: #ffffff url("../img/calendar.svg") 20px center no-repeat; }
        .l-news .filter form .date.hideIcon {
          background: #ffffff; }
      .l-news .filter form .date::-webkit-input-placeholder {
        text-align: right;
        color: #8c1b24;
        padding-left: 32px; }
      .l-news .filter form .date::-moz-placeholder {
        text-align: right;
        color: #8c1b24;
        padding-left: 32px; }
      .l-news .filter form .date:-ms-input-placeholder {
        text-align: right;
        color: #8c1b24;
        padding-left: 32px; }
      .l-news .filter form .date::-ms-input-placeholder {
        text-align: right;
        color: #8c1b24;
        padding-left: 32px; }
      .l-news .filter form .date::placeholder {
        text-align: right;
        color: #8c1b24;
        padding-left: 32px; }
      .l-news .filter form input[type=checkbox]:checked + label,
      .l-news .filter form input[type=radio]:checked + label {
        color: #ffffff;
        background: #8c1b24;
        opacity: 1; }
  .l-news .searchandfilter {
    margin: 30px 0 60px; }
    .l-news .searchandfilter ul {
      width: 100%;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      justify-content: space-between;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center; }
    .l-news .searchandfilter li::before {
      display: none; }
    .l-news .searchandfilter li:nth-of-type(1) {
      -webkit-box-flex: 2;
      -ms-flex-positive: 2;
      flex-grow: 2; }
    .l-news .searchandfilter input[type=text] {
      width: 100%;
      font-size: 1.6rem;
      line-height: 2.4rem;
      color: #2b211e;
      padding: 9px 48px;
      border: none;
      border-radius: 10px;
      background: #ffffff url("../img/search.svg") 15px center no-repeat; }
    .l-news .searchandfilter input[type=submit] {
      font-size: 1.2rem;
      line-height: 1.8rem;
      font-weight: 800;
      letter-spacing: 0.15em;
      color: #ffffff;
      text-transform: uppercase;
      padding: 14px 40px;
      border: none;
      border-radius: 30px;
      background: #8c1b24; }

.l-page {
  width: 100vw;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #f2f2f2 url("../img/page_bg.svg") center 220px no-repeat;
  background-attachment: fixed; }

.l-search {
  margin-top: 80px; }
  .l-search .c-container {
    max-width: 105.6rem; }
    @media (max-width: 1199px) {
      .l-search .c-container {
        max-width: 95%;
        margin: 0 auto; } }
    @media (max-width: 767px) {
      .l-search .c-container {
        max-width: 100%;
        padding: 0 20px;
        margin: 0 auto; } }

.l-simple {
  margin-top: 80px;
  margin-bottom: 60px; }
  @media (max-width: 767px) {
    .l-simple {
      margin-bottom: 30px; } }
  .l-simple .d-flex {
    position: relative; }
  @media (max-width: 767px) {
    .l-simple .d-flex.justify-between {
      -webkit-box-orient: vertical;
      -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
      flex-direction: column-reverse; } }
  .l-simple .c-container-sidebar {
    margin-left: 25px; }
    @media (max-width: 767px) {
      .l-simple .c-container-sidebar {
        margin-left: 0; } }
  .l-simple .img-cover {
    max-height: 500px; }
  .l-simple ol {
    counter-reset: item;
    list-style-type: none; }
    .l-simple ol li {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex; }
    .l-simple ol li:before {
      content: counter(item) " ";
      counter-increment: item;
      display: block;
      padding-right: 10px;
      color: #bdbdbd; }
  .l-simple ul li {
    padding: 0;
    margin-bottom: 0; }
  .l-simple .more {
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 2px 0;
    background: none;
    border: none;
    border-radius: 0;
    outline: none; }
  .l-simple .hidden-block {
    display: none; }
  .l-simple .show {
    display: block;
    margin-bottom: 20px; }
  .l-simple p > a,
  .l-simple .more {
    font-weight: 700;
    border-bottom: 2px solid #c5d932;
    color: #2b211e; }
  .l-simple .block-dates .d-flex {
    padding-left: 32px;
    border-left: 2px solid #d92332; }
    .l-simple .block-dates .d-flex:nth-last-of-type(1) {
      top: -12px;
      border-color: transparent; }
  .l-simple .block-dates .heading-3 {
    position: relative;
    padding: 40px 0 30px 32px;
    margin: 0;
    border-left: 2px solid #d92332; }
    .l-simple .block-dates .heading-3::before {
      content: '';
      position: absolute;
      top: 43px;
      left: -12px;
      display: inline-block;
      width: 20px;
      height: 20px;
      background: url("../img/icon.svg") no-repeat; }
    .l-simple .block-dates .heading-3:nth-of-type(1) {
      padding-top: 0;
      margin-top: 40px; }
      .l-simple .block-dates .heading-3:nth-of-type(1)::before {
        top: 0px; }
  .l-simple .block-dates .heading-5 {
    position: relative;
    padding: 0 0 10px 32px;
    margin: 0;
    border-left: 2px solid #d92332; }
    .l-simple .block-dates .heading-5::before {
      content: '';
      position: absolute;
      top: 4px;
      left: -9px;
      display: inline-block;
      width: 16px;
      height: 16px;
      border: 2px solid #d92332;
      border-radius: 50%;
      background: #ffffff; }
  .l-simple .block-dates .date {
    position: absolute;
    top: 5px;
    left: 44px;
    font-weight: 700;
    color: #bdbdbd; }
    .l-simple .block-dates .date::before {
      content: '';
      position: absolute;
      top: 5px;
      left: -48px;
      display: inline-block;
      width: 44px;
      height: 8px;
      background: url("../img/icon-date.svg") no-repeat; }
  .l-simple .block-dates .date + p {
    padding-left: 55px; }

.l-single ul li {
  margin-bottom: 30px; }

.l-single .c-container {
  max-width: 116.2rem; }

.l-single .info {
  margin-left: 56px; }
  @media (max-width: 767px) {
    .l-single .info {
      margin-left: 0; } }

.l-single .post__image img {
		width: 100%;
		height: 100%;
		max-height: 50rem;
		object-fit: cover;
		object-position: center;
	}
	
.l-single	img {
		width: auto;
		height: auto;
	}

.l-single .post-meta {
  margin-top: 30px; }
  .l-single .post-meta a {
    display: inline-block;
    color: #828282; }
    .l-single .post-meta a::after {
      content: '\2022';
      display: inline-block;
      font-size: 18px;
      color: #bdbdbd;
      padding: 0 5px; }
    .l-single .post-meta a:nth-last-of-type(1)::after {
      content: ''; }

.l-team {
  margin-top: 80px;
  margin-bottom: 60px; }
  @media (max-width: 767px) {
    .l-team {
      margin-bottom: 30px; } }
  .l-team .d-flex {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
  .l-team .team {
    width: calc(50% - 28px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 30px;
    margin-bottom: 30px;
    background: #ffffff;
    border-radius: 5px; }
    @media (max-width: 1023px) {
      .l-team .team {
        width: calc(50% - 15px);
        padding: 20px; } }
    @media (max-width: 767px) {
      .l-team .team {
        width: 100%; } }
    @media (max-width: 413px) {
      .l-team .team {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column; } }
    .l-team .team img {
      height: 100%;
      max-width: 160px; }
      @media (max-width: 1023px) {
        .l-team .team img {
          max-width: 110px; } }
    .l-team .team__info {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      justify-content: space-between;
      margin-left: 25px; }
      @media (max-width: 1023px) {
        .l-team .team__info {
          margin-left: 15px; } }
      @media (max-width: 413px) {
        .l-team .team__info {
          margin: 10px 0 0 0; } }
    .l-team .team__name {
      font-family: 'Baloo 2', cursive;
      font-size: 2rem;
      line-height: 2.4rem;
      font-weight: 600;
      margin-bottom: 15px; }
    .l-team .team__occupation {
      font-family: 'Baloo 2', cursive;
      font-size: 1.6rem;
      line-height: 2.4rem;
      font-weight: 700;
      color: #8c1b24; }
    .l-team .team__contact {
      color: #828282; }
      .l-team .team__contact a {
        display: block;
        margin-top: 5px; }

.c-button {
  display: block;
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  font-family: 'Manrope', sans-serif;
  font-size: 1.2rem;
  line-height: 1.8rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  color: #2b211e;
  white-space: nowrap;
  text-transform: uppercase;
  padding: 12px 38px;
  margin: 0 auto;
  background: #ffffff;
  border: 2px solid #ffffff;
  border-radius: 3rem;
  -webkit-transition: .4s;
  transition: .4s; }

.c-container {
  width: 100vw;
  max-width: 105.6rem; }
  @media (max-width: 1199px) {
    .c-container {
      max-width: 95%;
      margin: 0 auto; } }
  @media (max-width: 767px) {
    .c-container {
      max-width: 100%;
      padding: 0 20px;
      margin: 0 auto; } }
  .c-container-small {
    max-width: 62.5rem;
    margin-left: 0;
    margin-right: auto; }
  .c-container-sidebar {
    width: 100%;
    max-width: 40.1rem; }

@-webkit-keyframes FooterGreen {
  0% {
    background-position-x: 0; }
  100% {
    background-position-x: -1920px; } }

@keyframes FooterGreen {
  0% {
    background-position-x: 0; }
  100% {
    background-position-x: -1920px; } }

@-webkit-keyframes FooterRed {
  0% {
    background-position-x: 0; }
  100% {
    background-position-x: -1920px; } }

@keyframes FooterRed {
  0% {
    background-position-x: 0; }
  100% {
    background-position-x: -1920px; } }

@-webkit-keyframes FooterBrown {
  0% {
    background-position-x: 0; }
  100% {
    background-position-x: 1922px; } }

@keyframes FooterBrown {
  0% {
    background-position-x: 0; }
  100% {
    background-position-x: 1922px; } }

.c-footer {
  position: relative;
  width: 100vw;
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 500;
  color: #ffffff;
  padding: 200px 0 20px; }
  @media (min-width: 1920px) {
    .c-footer {
      background-size: 100% auto; } }
  @media (max-width: 767px) {
    .c-footer {
      padding-top: 120px; } }
  @media (max-width: 413px) {
    .c-footer {
      background-size: auto 120%, auto 120%, auto 120%; } }
  .c-footer__bg {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -2;
    width: 3000px;
    background-repeat: repeat-x;
    background-size: auto 100%;
    will-change: background-position, animation;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
    .c-footer__bg-1 {
      background-image: url("../img/footer-green.svg");
      -webkit-animation: FooterGreen 8s linear infinite;
      animation: FooterGreen 8s linear infinite;
      height: 365px; }
    .c-footer__bg-2 {
      background-image: url("../img/footer-brown.svg");
      background-size: auto calc(100% + 2px);
      -webkit-animation: FooterBrown 9s linear infinite;
      animation: FooterBrown 9s linear infinite;
      height: 335px; }
    .c-footer__bg-3 {
      background-image: url("../img/footer-red.svg");
      -webkit-animation: FooterRed 11s linear infinite;
      animation: FooterRed 11s linear infinite;
      height: 310px; }
  .c-footer__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    max-width: 105.6rem;
    margin: 0 auto; }
    @media (max-width: 1199px) {
      .c-footer__container {
        max-width: 95%; } }
    @media (max-width: 850px) {
      .c-footer__container {
        max-width: 100%;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        padding: 0 20px; } }
    .c-footer__container .align-end {
      -webkit-box-align: end;
      -ms-flex-align: end;
      align-items: flex-end; }
      @media (max-width: 850px) {
        .c-footer__container .align-end {
          -webkit-box-align: start;
          -ms-flex-align: start;
          align-items: flex-start; } }
  .c-footer__info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    max-width: 540px; }
  .c-footer__logo {
    margin-bottom: 20px; }
    .c-footer__logo img {
      width: 182px; }
  @media (max-width: 767px) {
    .c-footer__contact {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column; } }
  .c-footer__contact a {
    color: #ffffff; }
  .c-footer__menu {
    margin-top: 30px; }
    @media (max-width: 767px) {
      .c-footer__menu {
        margin-top: 20px; } }
    .c-footer__menu a {
      font-weight: 700;
      text-transform: capitalize;
      color: #ffffff; }
      .c-footer__menu a:nth-of-type(1)::after {
        content: '|';
        display: inline-block;
        padding: 0 7px; }
  .c-footer__social {
    margin-top: 40px; }
    @media (max-width: 767px) {
      .c-footer__social {
        margin-top: 20px; } }
    .c-footer__social a:nth-last-of-type(1) {
      margin-left: 8px; }
    .c-footer__social img {
      width: 30px;
      height: 30px; }
  .c-footer__powered {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; }
    .c-footer__powered a {
      margin: 10px 0 0; }
    .c-footer__powered img {
      height: 14px;
      width: auto; }

.c-full {
  padding: 5.4rem 0 11.2rem;
  background: #f2f2f2; }

header {
  position: fixed;
  z-index: 20;
  width: 100vw;
  min-height: 80px;
  background: url("../img/header.png") center no-repeat;
  -webkit-transition: .3s;
  transition: .3s; }
  @media (min-width: 1920px) {
    header {
      background-size: 100% auto; } }
  header.open {
    background-size: cover;
    background-position: center left; }

.c-header {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 18px 11%;
  margin: 0 auto;
  -webkit-transition: .3s;
  transition: .3s; }
  @media (max-width: 1439px) {
    .c-header {
      padding: 18px 8%; } }
  @media (max-width: 1199px) {
    .c-header {
      max-width: 95%;
      padding: 18px 0; } }
  @media (max-width: 767px) {
    .c-header {
      max-width: 100%;
      padding: 18px 20px; } }
  .c-header.open {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start; }
  .c-header__logo {
    padding: 10px 0; }
    @media (max-width: 413px) {
      .c-header__logo {
        position: absolute;
        top: 20px;
        max-width: 150px; } }
  .c-header__menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-transition: .3s;
    transition: .3s; }
    @media (max-width: 1023px) {
      .c-header__menu {
        display: none; } }
    .c-header__menu.open {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      margin-top: 50px; }
      @media (max-width: 413px) {
        .c-header__menu.open {
          margin: 50px auto 0; } }
      @media (max-width: 1023px) {
        .c-header__menu.open div.menu-item {
          margin: 5px 0; } }
      .c-header__menu.open div.menu-item a {
        white-space: nowrap; }
      .c-header__menu.open .menu-item-has-children:hover ul,
      .c-header__menu.open .menu-item-has-children:active ul {
        padding: 20px; }
    .c-header__menu div.menu-item {
      list-style: none;
      margin: 0 2.2rem;
      -ms-flex-item-align: center;
      align-self: center; }
      @media (max-width: 1439px) {
        .c-header__menu div.menu-item {
          margin: 0 1.5rem; } }
      @media (max-width: 1199px) {
        .c-header__menu div.menu-item {
          margin: 0 1rem; } }
      .c-header__menu div.menu-item a {
        font-weight: 800;
        font-size: 1.2rem;
        line-height: 1.9rem;
        letter-spacing: 0.15em;
        text-transform: uppercase;
        color: #ffffff; }
      .c-header__menu div.menu-item > a {
        padding: 20px 0; }
    .c-header__menu > div.menu-item {
      border-bottom: 2px solid transparent; }
      .c-header__menu > div.menu-item:hover, .c-header__menu > div.menu-item:active {
        border-bottom: 2px solid #c5d932; }
    .c-header__menu .menu-item-has-children {
      position: relative;
      -webkit-transition: .3s;
      transition: .3s; }
      .c-header__menu .menu-item-has-children ul {
        display: none;
        -webkit-transition: .3s;
        transition: .3s; }
      .c-header__menu .menu-item-has-children .wrapper {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center; }
    .c-header__menu .menu-item-has-children:hover ul,
    .c-header__menu .menu-item-has-children:active ul {
      display: block;
      position: absolute;
      top: 30px;
      z-index: 10;
      padding: 40px;
      background: #ffffff;
      border-radius: 5px;
      -webkit-box-sizing: border-box;
      box-sizing: border-box; }
      .c-header__menu .menu-item-has-children:hover ul li,
      .c-header__menu .menu-item-has-children:active ul li {
        width: -webkit-max-content;
        width: -moz-max-content;
        width: max-content;
        max-width: 100%;
        margin-bottom: 15px; }
        .c-header__menu .menu-item-has-children:hover ul li:nth-last-of-type(1),
        .c-header__menu .menu-item-has-children:active ul li:nth-last-of-type(1) {
          margin-bottom: 0; }
        .c-header__menu .menu-item-has-children:hover ul li::before,
        .c-header__menu .menu-item-has-children:active ul li::before {
          display: none; }
        .c-header__menu .menu-item-has-children:hover ul li a,
        .c-header__menu .menu-item-has-children:active ul li a {
          font-size: 1rem;
          line-height: 1.6rem;
          color: #2b211e; }
          .c-header__menu .menu-item-has-children:hover ul li a:hover, .c-header__menu .menu-item-has-children:hover ul li a:focus, .c-header__menu .menu-item-has-children:hover ul li a:active,
          .c-header__menu .menu-item-has-children:active ul li a:hover,
          .c-header__menu .menu-item-has-children:active ul li a:focus,
          .c-header__menu .menu-item-has-children:active ul li a:active {
            color: #c5d932; }
  .c-header__buttons {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; }
    @media (max-width: 413px) {
      .c-header__buttons {
        position: absolute;
        top: 25px;
        right: 20px; } }
    @media (min-width: 1024px) {
      .c-header__buttons.close {
        width: 118px;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end; } }
  .c-header__login {
    max-width: 70px;
    font-weight: 800;
    font-size: 1.2rem;
    line-height: 1.4rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-align: center;
    color: #ffffff;
    margin-left: 20px; }
    .c-header__login span {
      color: #ffffff; }
    .c-header__login svg.mobile {
      display: none; }
    @media (max-width: 1023px) {
      .c-header__login {
        margin: 0 15px; } }
    @media (max-width: 413px) {
      .c-header__login {
        margin: 0 10px; }
        .c-header__login span {
          display: none; }
        .c-header__login svg.mobile {
          display: block; } }
  .c-header__search {
    padding: 0;
    border: none;
    background: none; }
    @media (max-width: 413px) {
      .c-header__search {
        margin-left: 8px; } }
    .c-header__search.close {
      position: absolute;
      top: 3px;
      right: 95px;
      z-index: 30;
      width: 30px;
      height: 100%;
      background: url("../img/close.svg") no-repeat; }
      .c-header__search.close svg {
        opacity: 0; }
      @media (max-width: 1023px) {
        .c-header__search.close {
          right: 135px; } }
      @media (max-width: 413px) {
        .c-header__search.close {
          right: 75px; } }
    .c-header__search-form {
      position: absolute;
      top: -5px;
      right: 90px;
      display: none;
      -webkit-box-sizing: border-box;
      box-sizing: border-box; }
      .c-header__search-form.show-form {
        display: block; }
        @media (max-width: 1023px) {
          .c-header__search-form.show-form {
            right: 130px; } }
        @media (max-width: 413px) {
          .c-header__search-form.show-form {
            right: 70px; } }
      .c-header__search-form li {
        padding: 0; }
        .c-header__search-form li::before {
          display: none; }
      .c-header__search-form input {
        max-width: 258px;
        padding: 9px 48px;
        border: 2px solid #c5d932;
        background: #ffffff url("../img/search.svg") 15px center no-repeat; }
        @media (max-width: 413px) {
          .c-header__search-form input {
            max-width: 200px; } }
      .c-header__search-form input[type=submit] {
        display: none; }
  .c-header__menuBtn {
    display: none;
    background: none;
    border: none;
    padding: 0; }
    @media (max-width: 1023px) {
      .c-header__menuBtn {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end; } }
    .c-header__menuBtn span {
      width: 26px;
      height: 2px;
      background: #ffffff;
      display: block;
      margin-bottom: 6px;
      -webkit-transition: all .2s linear;
      transition: all .2s linear; }
      .c-header__menuBtn span:last-child {
        margin-bottom: 0; }
    .c-header__menuBtn.close span:nth-of-type(1) {
      -webkit-transform: translate(0, 8px) rotate(-45deg);
      transform: translate(0, 8px) rotate(-45deg); }
    .c-header__menuBtn.close span:nth-of-type(2) {
      width: 0; }
    .c-header__menuBtn.close span:nth-last-of-type(1) {
      -webkit-transform: translate(0, -8px) rotate(45deg);
      transform: translate(0, -8px) rotate(45deg); }

@-webkit-keyframes chocolate {
  0% {
    -webkit-transform: rotate(-12deg);
    transform: rotate(-12deg);
    top: 16px;
    right: -2px; }
  100% {
    -webkit-transform: rotate(-1deg);
    transform: rotate(-1deg);
    top: 16px;
    right: -34px; } }

@keyframes chocolate {
  0% {
    -webkit-transform: rotate(-12deg);
    transform: rotate(-12deg);
    top: 16px;
    right: -2px; }
  100% {
    -webkit-transform: rotate(-1deg);
    transform: rotate(-1deg);
    top: 16px;
    right: -34px; } }

@-webkit-keyframes chocolateBack {
  0% {
    -webkit-transform: rotate(-1deg);
    transform: rotate(-1deg);
    top: 16px;
    right: -34px; }
  100% {
    -webkit-transform: rotate(-12deg);
    transform: rotate(-12deg);
    top: 16px;
    right: -2px; } }

@keyframes chocolateBack {
  0% {
    -webkit-transform: rotate(-1deg);
    transform: rotate(-1deg);
    top: 16px;
    right: -34px; }
  100% {
    -webkit-transform: rotate(-12deg);
    transform: rotate(-12deg);
    top: 16px;
    right: -2px; } }

.c-hero {
  position: relative;
  height: 500px;
  width: 100vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  padding-bottom: 45px;
  background: none; }
  @media (max-width: 1023px) {
    .c-hero {
      height: auto; } }
  @media (max-width: 767px) {
    .c-hero {
      padding: 0 20px;
      margin: 40px auto; } }
  .c-hero .c-button {
    position: absolute;
    top: calc(50% - 100px);
    left: calc(50% - 100px);
    min-width: 200px; }
  .c-hero-1 img {
    display: block;
    margin: 0 auto;
    -webkit-transform: translateY(18px);
    transform: translateY(18px);
    -webkit-transition: .3s;
    transition: .3s; }
  .c-hero-1 img.piece {
    position: absolute;
    right: -2px;
    top: -2px;
    z-index: 10;
    -webkit-transform: rotate(-12deg);
    transform: rotate(-12deg); }
  .c-hero-1 .c-button {
    top: calc(50% - 60px);
    z-index: 40;
    background: #8c1b24;
    border: 2px solid #8c1b24; }
    .c-hero-1 .c-button:hover, .c-hero-1 .c-button:focus, .c-hero-1 .c-button:active {
      background: #f7f7f7;
      border: 2px solid #8c1b24;
      color: #8c1b24 !important; }
  .c-hero-2 img {
    display: block;
    max-width: 350px;
    margin: 0 auto;
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
    -webkit-transition: .3s;
    transition: .3s; }
    @media (max-width: 500px) {
      .c-hero-2 img {
        max-width: 70%; } }
  .c-hero-2 .c-button {
    background: #d92332;
    border: 2px solid #d92332; }
    .c-hero-2 .c-button:hover, .c-hero-2 .c-button:focus, .c-hero-2 .c-button:active {
      background: #f7f7f7;
      border: 2px solid #d92332;
      color: #d92332 !important; }
  .c-hero-3 img {
    display: block;
    -webkit-transform: rotate(-30deg) scale(1.2);
    transform: rotate(-30deg) scale(1.2); }
  .c-hero-3 .c-button {
    background: #c5d932;
    border: 2px solid #c5d932; }
    .c-hero-3 .c-button:hover, .c-hero-3 .c-button:focus, .c-hero-3 .c-button:active {
      background: #f7f7f7;
      border: 2px solid #c5d932;
      color: #c5d932 !important; }
  .c-hero__content {
    position: relative;
    max-width: 600px; }
    @media (max-width: 1023px) {
      .c-hero__content {
        max-width: 500px; } }
    .c-hero__content .c-hero__image-hover1,
    .c-hero__content .c-hero__image-hover {
      display: none; }
    .c-hero__content .piece-anim {
      -webkit-animation: chocolate .5s;
      animation: chocolate .5s;
      -webkit-animation-fill-mode: forwards;
      animation-fill-mode: forwards; }
    .c-hero__content .piece-back {
      -webkit-animation: chocolateBack .5s;
      animation: chocolateBack .5s;
      -webkit-animation-fill-mode: forwards;
      animation-fill-mode: forwards; }
    .c-hero__content p {
      text-align: center;
      margin: 30px auto; }
    .c-hero__content:hover .c-hero__image-hover1 {
      display: block; }
    .c-hero__content:hover .c-hero__image {
      display: none; }

.c-link {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 5px;
  background: #f5f6f7;
  -webkit-transition: .4s;
  transition: .4s; }
  .c-link svg {
    min-width: 28px; }
  .c-link a {
    font-weight: 600;
    padding-left: 20px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis; }
  .c-link:hover.simple {
    background: #f2994a; }
  .c-link:hover.attachment {
    background: #8c1b24; }
  .c-link:hover.simple2 {
    background: #c5d932; }
  .c-link:hover svg {
    stroke: white !important; }
  .c-link:hover a {
    color: #ffffff; }

.c-news {
  height: calc(100% + 80px);
  margin-top: 60px;
  margin-bottom: 90px;
  overflow-x: hidden; }
  @media (max-width: 767px) {
    .c-news {
      margin-top: 0; } }
  .c-news img {
    min-height: 179px;
    min-width: 200px;
    width: 100%;
    margin-bottom: 20px; }
    @media (max-width: 767px) {
      .c-news img {
        min-width: 100%; } }
  .c-news__slider {
    margin-bottom: 80px !important; }
    .c-news__slider .slick-list {
      padding: 0 56px; }
      @media (max-width: 767px) {
        .c-news__slider .slick-list {
          padding: 20px 40px 10px; } }
    .c-news__slider .slick-track,
    .c-news__slider .slick-list {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      margin: 0 -54px 0 -18px; }
    .c-news__slider ul li::before {
      content: ''; }
    .c-news__slider .slick-dots {
      bottom: -60px; }
      .c-news__slider .slick-dots li button:before {
        font-size: 25px;
        margin-left: -10px;
        color: #ffffff;
        opacity: 1; }
      .c-news__slider .slick-dots li.slick-active button:before {
        color: #c5d932;
        opacity: 1; }
      .c-news__slider .slick-dots li:nth-of-type(1) button:before {
        margin-left: 0; }
    .c-news__slider .slick-prev,
    .c-news__slider .slick-next {
      height: 32px;
      width: 32px;
      background: url(../img/angle.svg) center no-repeat;
      border: 1px solid #E0E0E0;
      border-radius: 50%; }
      .c-news__slider .slick-prev:hover, .c-news__slider .slick-prev:active,
      .c-news__slider .slick-next:hover,
      .c-news__slider .slick-next:active {
        background-color: #c5d932;
        border: 1px solid #c5d932; }
      .c-news__slider .slick-prev::before,
      .c-news__slider .slick-next::before {
        content: ''; }
    .c-news__slider .slick-next {
      right: 0;
      -webkit-transform: rotate(180deg) translate(0, 50%);
      transform: rotate(180deg) translate(0, 50%); }
    .c-news__slider .slick-prev {
      left: 0;
      z-index: 10; }
  .c-news__item {
    padding: 3rem;
    margin: 0 36px;
    background: #ffffff;
    border-radius: 5px;
    border: 1px solid transparent; }
    @media (max-width: 767px) {
      .c-news__item {
        padding: 1.5rem; } }
  .c-news__date {
    margin: 20px 0; }
    .c-news__date a {
      font-weight: 600;
      font-size: 1.2rem;
      line-height: 1.2rem;
      color: #828282;
      text-align: left; }
  .c-news__text p {
    font-family: 'Manrope';
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.8rem;
    color: #2b211e;
    text-align: left;
    margin: 0; }
    @media (max-width: 1439px) {
      .c-news__text p {
        font-size: 1.6rem;
        line-height: 2.8rem; } }

.c-preloader {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  width: 100vw;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #edf3f5;
  -webkit-transition: all .7s ease-in-out;
  transition: all .7s ease-in-out; }
  .c-preloader--hidden {
    opacity: .7;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%); }
  .c-preloader__logo {
    width: 6rem;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: 0.2s cubic-bezier(0.25, 0.1, 0.25, 1);
    transition: 0.2s cubic-bezier(0.25, 0.1, 0.25, 1);
    margin-bottom: 1rem; }
    .c-preloader__logo--pulse {
      -webkit-animation: pulseLogo .75s infinite;
      animation: pulseLogo .75s infinite;
      -webkit-transform: translateY(-100%);
      transform: translateY(-100%); }
  .c-preloader__name {
    font-family: 'EB Garamond';
    font-weight: 700;
    font-size: 3rem;
    color: #828282;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    .c-preloader__name span {
      padding: 0 .15rem;
      display: block; }

@-webkit-keyframes pulseLogo {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1); }
  50% {
    -webkit-transform: scale(1.15);
    transform: scale(1.15); }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1); } }

@keyframes pulseLogo {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1); }
  50% {
    -webkit-transform: scale(1.15);
    transform: scale(1.15); }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1); } }

.cookie-notice-container {
	display: flex !important;
	justify-content: center;
}

.cli-bar-container {
	max-width: 105.6rem;
}
.cli-bar-message {
	display: flex;
	align-items: center;
}

.cli_settings_button {
	display: none
}

.cookie-notice-container .cn-text-container {
	display: flex;
	align-items: center;
	margin-bottom: 0;
}

.cn-text-container::before,
.cli-bar-message::before {
	content: "";
	display: block;
	width: 70px;
	height: 21px;
	margin-right: 5px;
	background: url('http://caobisco.eu/wp-content/uploads/2021/06/coockies.png') center / 21px no-repeat;
}
/*# sourceMappingURL=style.css.map */
