/* Color palette */
/* Basic colors */
/* Primary brand colors */
/* Secondary colors */
/* x shades of gray */
/* Context colors */
/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.7.0
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2018 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) {
  .animated {
    -webkit-animation: unset !important;
    animation: unset !important;
    -webkit-transition: none !important;
    transition: none !important;
  }
}
/*! normalize.css v3.0.0 | MIT License | git.io/normalize */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-family: sans-serif; /* 1 */
  -ms-text-size-adjust: 100%; /* 2 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/**
 * Remove default margin.
 */
body {
  margin: 0;
}

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined in IE 8/9.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9.
 * Hide the `template` element in IE, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none;
}

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background: transparent;
}

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9, Safari 5, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari 5, and Chrome.
 */
/**
 * Address styling not present in Safari 5 and Chrome.
 */
dfn {
  font-style: italic;
}

/**
 * Address styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000;
}

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%;
}

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

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9.
 */
img {
  border: 0;
}

/**
 * Correct overflow displayed oddly in IE 9.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari 5.
 */
figure {
  margin: 1em 40px;
}

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit; /* 1 */
  font: inherit; /* 2 */
  margin: 0; /* 3 */
}

/**
 * Address `overflow` set to `hidden` in IE 8/9/10.
 */
button {
  overflow: visible;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8+, and Opera
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button; /* 2 */
  cursor: pointer; /* 3 */
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal;
}

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type=checkbox],
input[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
 *    (include `-moz` to future-proof).
 */
input[type=search] {
  -webkit-appearance: textfield; /* 1 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box; /* 2 */
  box-sizing: content-box;
}

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0; /* 1 */
  padding: 0; /* 2 */
}

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

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

img {
  max-width: 100%;
}

/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  padding: 2px 2px;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}
.hamburger:hover {
  opacity: 0.7;
}
.hamburger.is-active:hover {
  opacity: 0.7;
}
.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
  background-color: rgb(255, 255, 255);
}

.hamburger-box {
  width: 28px;
  height: 28px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
}
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 28px;
  height: 4px;
  background-color: rgb(255, 255, 255);
  border-radius: 0px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}
.hamburger-inner::before, .hamburger-inner::after {
  content: "";
  display: block;
}
.hamburger-inner::before {
  top: -12px;
}
.hamburger-inner::after {
  bottom: -12px;
}

/*@import "types/3dx";
@import "types/3dx-r";
@import "types/3dy";
@import "types/3dy-r";
@import "types/3dxy";
@import "types/3dxy-r";
@import "types/arrow";
@import "types/arrow-r";
@import "types/arrowalt";
@import "types/arrowalt-r";
@import "types/arrowturn";
@import "types/arrowturn-r";
@import "types/boring";
@import "types/collapse";
@import "types/collapse-r";
@import "types/elastic";
@import "types/elastic-r";
@import "types/emphatic";
@import "types/emphatic-r";
@import "types/minus";
@import "types/slider";
@import "types/slider-r";
@import "types/spin";
@import "types/spin-r";
@import "types/spring";
@import "types/spring-r";
@import "types/stand";
@import "types/stand-r";
@import "types/squeeze";
@import "types/vortex";
@import "types/vortex-r";*/
/*
 * Squeeze
 */
.hamburger--squeeze .hamburger-inner {
  transition-duration: 0.075s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--squeeze .hamburger-inner::before {
  transition: top 0.075s 0.12s ease, opacity 0.075s ease;
}
.hamburger--squeeze .hamburger-inner::after {
  transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--squeeze.is-active .hamburger-inner {
  transform: rotate(45deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--squeeze.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.075s ease, opacity 0.075s 0.12s ease;
}
.hamburger--squeeze.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

html,
body {
  min-height: 100vh;
}

html {
  background: #0f0f0f;
  font-size: 62.5%;
  -webkit-overflow-scrolling: touch;
  -webkit-tap-highlight-color: rgba(66, 229, 154, 0.6);
  color: rgb(255, 255, 255);
  margin: 0;
  padding: 0;
  width: 100%;
}

@media (max-width: 1023px) {
  html[class] {
    margin-top: 0 !important;
  }
}

body {
  margin: 0px;
  width: 100%;
  padding: 0;
  min-width: 320px;
  background: #0f0f0f;
  position: relative;
  display: flex;
  flex-direction: column;
  letter-spacing: 0.02em;
}
body.nav_open {
  overflow: hidden;
}

.site-main {
  flex: 1 0 auto;
  max-width: 100%;
  overflow: hidden;
}

.visually-hidden, .subscribe #field_3_1 label, .screen-reader-text {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap; /* added line */
}

*:focus:not(CybotCookiebotDialog) {
  outline: -webkit-focus-ring-color auto 5px;
}

[data-whatintent=mouse] *:not(input, #CybotCookiebotDialog):focus {
  outline: none !important;
  background-color: inherit !important;
}

* {
  box-sizing: border-box;
}

@media (max-width: 1023px) {
  #wpadminbar {
    display: none !important;
  }
}

@media (max-width: 1279px) {
  .hide-in-mobile {
    display: none !important;
  }
}

@media (max-width: 1279px) {
  .show-in-mobile {
    display: block !important;
  }
}

@media (min-width: 1280px) {
  .hide-in-desktop {
    display: none !important;
  }
}

@media (min-width: 1280px) {
  .show-in-desktop {
    display: block !important;
  }
}

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: "Poppins", sans-serif;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  line-height: 16px;
  color: rgb(255, 255, 255);
  margin-top: 0;
  /*::selection {
  	background: $color-selection-background; // Safari
  	color: $color-selection-font;
  }
  ::-moz-selection {
  	background: $color-selection-background; // Firefox
  	color: $color-selection-font;
  }*/
}

a {
  color: #42e59a;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

p a {
  text-decoration: underline;
}

strong {
  font-size: inherit;
  line-height: inherit;
  font-weight: bold;
}

h1, h2, h3, h4, h5, h6 {
  font-style: normal;
  font-weight: normal;
  margin-top: 0;
  font-family: "Poppins", sans-serif;
  color: rgb(255, 255, 255);
}

blockquote {
  font-style: normal;
  position: relative;
  padding-top: 24px;
}

.article-content h1 {
  font-size: 20px;
  line-height: 20px;
  margin-bottom: 16px;
  position: relative;
  padding-bottom: 12px;
  font-weight: bold;
}
@media (min-width: 1024px) {
  .article-content h1 {
    font-size: 32px;
    line-height: 40px;
  }
}
.article-content h1:after {
  content: "";
  height: 2px;
  width: 100%;
  max-width: 374px;
  background-color: rgb(255, 255, 255);
  position: absolute;
  left: 0;
  bottom: 0;
}
.article-content a {
  color: #42e59a;
}
.article-content iframe {
  max-width: 100%;
}
.article-content h2 {
  font-size: 30px;
  line-height: 40px;
  margin-bottom: 32px;
  margin-top: 32px;
  font-weight: 500;
}
.article-content p,
.article-content li {
  font-size: 20px;
  line-height: 24px;
  margin-top: 24px;
  margin-bottom: 24px;
}
.article-content p.wp-caption-text {
  margin-top: 8px;
  font-size: 16px;
  line-height: 24px;
  font-family: "Poppins", sans-serif;
}
@media (min-width: 1024px) {
  .article-content {
    grid-column: 2/span 10;
    padding-left: 0;
    padding-right: 0;
  }
}
.article-content blockquote {
  margin-left: 16px;
  margin-right: 0;
  font-family: "Poppins", sans-serif;
  margin-top: 40px;
  padding-top: 0;
  border-left: 2px solid #007b94;
}
@media (min-width: 1024px) {
  .article-content blockquote {
    margin-left: 32px;
    font-size: 40px;
    line-height: 56px;
  }
}
.article-content blockquote p {
  padding-left: 16px;
}
@media (min-width: 1024px) {
  .article-content blockquote p {
    font-size: 40px;
    line-height: 56px;
  }
}

.btn {
  color: #0f0f0f;
  height: 56px;
  border: 0 none;
  line-height: 56px;
  border-radius: 28px;
  padding-left: 28px;
  padding-right: 28px;
  font-size: 16px;
  display: inline-block;
  transition: background-color 0.15s ease;
  font-weight: 700;
  background-color: #42e59a;
}
.btn:focus {
  outline: 4px solid rgb(66, 229, 154);
  outline-offset: 2px;
  background-color: rgba(66, 229, 154, 0.3);
}
.btn:hover {
  text-decoration: none;
  background-color: #faf9f0;
}
.btn:focus {
  text-decoration: none;
  background-color: #faf9f0;
}
.btn[disabled] {
  background-color: #a2a2a2;
  cursor: default;
}

.icon-button {
  border: 0 none;
  background: transparent;
  padding: 0;
}
.icon-button svg {
  width: 100%;
  height: 100%;
}

.h5vp_video_playlist .listwithposter li a .svg {
  background: #d60e4d !important;
  transition: all 0.3s ease;
}

.h5vp_video_playlist .listwithposter li a:hover .svg {
  background: #a50a3b !important;
}

input[type=text],
input[type=password],
input[type=email],
input[type=number] {
  line-height: 30px;
  border: 1px solid #121212;
  border-radius: 4px;
  padding-left: 15px;
  padding-right: 15px;
  font-size: 16px;
  padding-top: 0;
  padding-bottom: 0;
  color: #121212;
  display: block;
  width: 100%;
}
input[type=text]:focus, input[type=text]:hover,
input[type=password]:focus,
input[type=password]:hover,
input[type=email]:focus,
input[type=email]:hover,
input[type=number]:focus,
input[type=number]:hover {
  background-color: rgb(255, 255, 255);
  border-color: #0f0f0f;
  line-height: 28px;
  border-width: 2px;
  outline: none;
  padding-left: 14px;
}
input[type=text]:disabled, input[type=text][readonly],
input[type=password]:disabled,
input[type=password][readonly],
input[type=email]:disabled,
input[type=email][readonly],
input[type=number]:disabled,
input[type=number][readonly] {
  cursor: default;
  background-color: #efefef;
  border-color: #d1d1d1;
  border-width: 1px;
  padding-left: 15px;
  line-height: 30px;
}
input[type=text]:disabled:focus, input[type=text]:disabled:hover, input[type=text][readonly]:focus, input[type=text][readonly]:hover,
input[type=password]:disabled:focus,
input[type=password]:disabled:hover,
input[type=password][readonly]:focus,
input[type=password][readonly]:hover,
input[type=email]:disabled:focus,
input[type=email]:disabled:hover,
input[type=email][readonly]:focus,
input[type=email][readonly]:hover,
input[type=number]:disabled:focus,
input[type=number]:disabled:hover,
input[type=number][readonly]:focus,
input[type=number][readonly]:hover {
  cursor: default;
  background-color: #efefef;
  border-color: #d1d1d1;
  border-width: 1px;
  padding-left: 15px;
  line-height: 30px;
}
input[type=text]:disabled:hover, input[type=text][readonly]:hover,
input[type=password]:disabled:hover,
input[type=password][readonly]:hover,
input[type=email]:disabled:hover,
input[type=email][readonly]:hover,
input[type=number]:disabled:hover,
input[type=number][readonly]:hover {
  line-height: 30px;
}

.lianamailer {
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.lianamailer a:focus {
  outline: 1px solid rgb(66, 229, 154);
  outline-offset: 1px;
  background-color: rgba(66, 229, 154, 0.2);
}
.lianamailer label {
  margin-bottom: 8px;
  display: block;
}
.lianamailer input[type=text]:focus,
.lianamailer input[type=password]:focus,
.lianamailer input[type=email]:focus,
.lianamailer input[type=number]:focus {
  outline: 4px solid rgb(66, 229, 154);
  outline-offset: 2px;
  background-color: rgba(66, 229, 154, 0.3);
}
.lianamailer .lianamailer-formfield {
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .lianamailer .lianamailer-formfield {
    margin-bottom: 32px;
  }
}
.lianamailer .lianamailer-formfield-consents {
  padding-left: 32px;
  position: relative;
}
.lianamailer .lianamailer-formfield-consents input[type=checkbox] {
  position: absolute;
  left: 0;
  top: 4px;
}
.lianamailer input[type=checkbox] {
  opacity: 0;
  margin: 0 !important;
  padding: 0;
  width: 32px !important;
  height: 32px !important;
  display: block !important;
  position: absolute;
  top: 0;
  left: 0;
  cursor: pointer;
}
.lianamailer input[type=checkbox] + label {
  padding-left: 40px;
  line-height: 32px;
  cursor: pointer;
  display: inline-block;
}
.lianamailer input[type=checkbox] + label:before {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  background: rgb(255, 255, 255);
  border-radius: 4px;
  border: 1px solid #121212;
  position: absolute;
  left: 0;
  top: 0;
  transition: background-color 0.15s ease;
}
.lianamailer input[type=checkbox] + label:after {
  content: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAzMiAzMiI+PHBhdGggZD0iTTEzLDI1LjcxYTEuMzUsMS4zNSwwLDAsMS0xLjg4LDBsLTcuNS03LjVhMiwyLDAsMCwxLDAtMi44MmwuOTQtLjk0YTIsMiwwLDAsMSwyLjgyLDBMMTIsMTkuMTMsMjQuNjYsNi40OWEyLDIsMCwwLDEsMi44MiwwbC45NC45NGEyLDIsMCwwLDEsMCwyLjgxWiIgc3R5bGU9ImZpbGw6cmdiKDI1NSwyNTUsMjU1KSIvPjwvc3ZnPg==");
  display: block;
  width: 26px;
  height: 26px;
  border-radius: 4px;
  position: absolute;
  left: 3px;
  top: 3px;
  transition: opacity 0.15s ease;
  opacity: 0;
}
.lianamailer input[type=checkbox]:focus + label:before {
  outline: 4px solid rgb(222, 184, 135);
  outline-offset: 2px;
  background-color: #9edbff;
}
.lianamailer input[type=checkbox]:hover + label:before {
  background-color: #9edbff;
}
.lianamailer input[type=checkbox]:checked + label:before {
  background-color: #00649e;
}
.lianamailer input[type=checkbox]:checked + label:after {
  opacity: 1;
}
.lianamailer input[type=checkbox]:checked:hover + label:before {
  background-color: #05a3ff;
}
.lianamailer input[type=checkbox]:disabled + label {
  cursor: default;
}
.lianamailer input[type=checkbox]:disabled + label:before {
  background-color: #efefef !important;
  border-color: #d1d1d1 !important;
}
.lianamailer input[type=checkbox]:disabled + label:after {
  opacity: 0;
}
.lianamailer .lianamailer-formfield-error {
  border: solid 1px #e13000;
  padding: 24px;
  border-radius: 4px;
}
.lianamailer button {
  color: #0f0f0f;
  height: 56px;
  border: 0 none;
  line-height: 56px;
  border-radius: 28px;
  padding-left: 28px;
  padding-right: 28px;
  font-size: 16px;
  display: inline-block;
  transition: background-color 0.15s ease;
  font-weight: 700;
  background-color: #42e59a;
}
.lianamailer button:focus {
  outline: 4px solid rgb(66, 229, 154);
  outline-offset: 2px;
  background-color: rgba(66, 229, 154, 0.3);
}
.lianamailer button:hover {
  text-decoration: none;
  background-color: #faf9f0;
}
.lianamailer button:focus {
  text-decoration: none;
  background-color: #faf9f0;
}
.lianamailer button[disabled] {
  background-color: #a2a2a2;
  cursor: default;
}

.gform_wrapper .gform_title {
  text-transform: uppercase;
  font-size: 18px;
  line-height: 24px;
  font-weight: 600;
}
.gform_wrapper .gform_description {
  display: block;
  margin-bottom: 32px;
}
.gform_wrapper a:focus {
  outline: 1px solid rgb(66, 229, 154);
  outline-offset: 1px;
  background-color: rgba(66, 229, 154, 0.2);
}
.gform_wrapper div.validation_error {
  text-align: left;
  color: #e13000;
  margin-bottom: 24px;
}
.gform_wrapper ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.gform_wrapper li {
  position: relative;
}
.gform_wrapper .gfield {
  margin-bottom: 16px;
}
.gform_wrapper .gfield.hidden_label .gfield_label {
  display: none;
}
.gform_wrapper .gfield_error input,
.gform_wrapper .gfield_error textarea {
  border-color: #e13000;
  border-width: 2px;
}
.gform_wrapper .gfield_label {
  margin-bottom: 8px;
  display: block;
}
.gform_wrapper .gfield_label span.gfield_required {
  color: #e13000;
}
.gform_wrapper .gform_ajax_spinner {
  display: inline-block;
  vertical-align: bottom;
  margin-left: 16px;
}
.gform_wrapper .ginput_complex.ginput_container_password {
  margin-bottom: 24px;
}
.gform_wrapper .ginput_complex.ginput_container_password .ginput_left,
.gform_wrapper .ginput_complex.ginput_container_password .ginput_right {
  display: block;
}
.gform_wrapper .ginput_complex.ginput_container_password .ginput_left input,
.gform_wrapper .ginput_complex.ginput_container_password .ginput_right input {
  margin-bottom: 8px;
}
.gform_wrapper .ginput_complex.ginput_container_password .ginput_left {
  margin-bottom: 8px;
}
@media (min-width: 640px) {
  .gform_wrapper .ginput_complex.ginput_container_password {
    display: flex;
    justify-content: space-between;
  }
  .gform_wrapper .ginput_complex.ginput_container_password .ginput_left,
  .gform_wrapper .ginput_complex.ginput_container_password .ginput_right {
    width: calc(50% - 8px);
  }
  .gform_wrapper .ginput_complex.ginput_container_password input {
    margin-bottom: 8px;
  }
}
.gform_wrapper .ginput_complex.ginput_container_password .gf_clear_complex {
  display: none;
}
.gform_wrapper .ginput_container_checkbox {
  position: relative;
  margin-top: 24px;
}
.gform_wrapper .ginput_container_checkbox li {
  line-height: 32px;
  overflow: visible;
}
.gform_wrapper .ginput_container_checkbox input[type=checkbox] {
  opacity: 0;
  margin: 0 !important;
  padding: 0;
  width: 32px !important;
  height: 32px !important;
  display: block !important;
  position: absolute;
  top: 0;
  left: 0;
  cursor: pointer;
}
.gform_wrapper .ginput_container_checkbox input[type=checkbox] + label {
  padding-left: 40px;
  line-height: 32px;
  cursor: pointer;
  display: inline-block;
}
.gform_wrapper .ginput_container_checkbox input[type=checkbox] + label:before {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  background: rgb(255, 255, 255);
  border-radius: 4px;
  border: 1px solid #121212;
  position: absolute;
  left: 0;
  top: 0;
  transition: background-color 0.15s ease;
}
.gform_wrapper .ginput_container_checkbox input[type=checkbox] + label:after {
  content: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAzMiAzMiI+PHBhdGggZD0iTTEzLDI1LjcxYTEuMzUsMS4zNSwwLDAsMS0xLjg4LDBsLTcuNS03LjVhMiwyLDAsMCwxLDAtMi44MmwuOTQtLjk0YTIsMiwwLDAsMSwyLjgyLDBMMTIsMTkuMTMsMjQuNjYsNi40OWEyLDIsMCwwLDEsMi44MiwwbC45NC45NGEyLDIsMCwwLDEsMCwyLjgxWiIgc3R5bGU9ImZpbGw6cmdiKDI1NSwyNTUsMjU1KSIvPjwvc3ZnPg==");
  display: block;
  width: 26px;
  height: 26px;
  border-radius: 4px;
  position: absolute;
  left: 3px;
  top: 3px;
  transition: opacity 0.15s ease;
  opacity: 0;
}
.gform_wrapper .ginput_container_checkbox input[type=checkbox]:focus + label:before {
  outline: 4px solid rgb(222, 184, 135);
  outline-offset: 2px;
  background-color: white;
}
[data-whatintent=mouse] .gform_wrapper .ginput_container_checkbox input[type=checkbox]:focus + label:before {
  outline: none !important;
}

.gform_wrapper .ginput_container_checkbox input[type=checkbox]:hover + label:before {
  background-color: white;
}
.gform_wrapper .ginput_container_checkbox input[type=checkbox]:checked + label:before {
  background-color: #42e59a;
}
.gform_wrapper .ginput_container_checkbox input[type=checkbox]:checked + label:after {
  opacity: 1;
}
.gform_wrapper .ginput_container_checkbox input[type=checkbox]:checked:hover + label:before {
  background-color: #9cf1ca;
}
.gform_wrapper .ginput_container_checkbox input[type=checkbox]:disabled + label {
  cursor: default;
}
.gform_wrapper .ginput_container_checkbox input[type=checkbox]:disabled + label:before {
  background-color: #efefef !important;
  border-color: #d1d1d1 !important;
}
.gform_wrapper .ginput_container_checkbox input[type=checkbox]:disabled + label:after {
  opacity: 0;
}
.gform_wrapper input[type=submit] {
  color: #0f0f0f;
  height: 56px;
  border: 0 none;
  line-height: 56px;
  border-radius: 28px;
  padding-left: 28px;
  padding-right: 28px;
  font-size: 16px;
  display: inline-block;
  transition: background-color 0.15s ease;
  font-weight: 700;
  background-color: #42e59a;
}
.gform_wrapper input[type=submit]:focus {
  outline: 4px solid rgb(66, 229, 154);
  outline-offset: 2px;
  background-color: rgba(66, 229, 154, 0.3);
}
.gform_wrapper input[type=submit]:hover {
  text-decoration: none;
  background-color: #faf9f0;
}
.gform_wrapper input[type=submit]:focus {
  text-decoration: none;
  background-color: #faf9f0;
}
.gform_wrapper input[type=submit][disabled] {
  background-color: #a2a2a2;
  cursor: default;
}
.gform_wrapper .gfield_consent_description {
  display: none;
}
.gform_wrapper .gfield_label_before_complex {
  font-weight: 600;
}
.gform_wrapper .title-strong > label {
  font-weight: 600;
}
.gform_wrapper .gfield_password_strength {
  padding: 8px;
  text-align: center;
}
.gform_wrapper .ginput_container_password {
  position: relative;
}
.gform_wrapper .ginput_container_password button {
  background-color: transparent;
  width: 32px;
  height: 32px;
  border: 0 none;
  position: absolute;
  right: 0;
  top: 0;
}

.gfield_description {
  font-size: 16px;
  line-height: 24px;
}
.gfield_description.validation_message {
  margin-top: 4px;
  margin-bottom: 4px;
  color: #e13000;
  font-size: 14px;
}

.eo-overlay {
  background: rgba(18, 18, 18, 0.7);
  z-index: 999999;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  color: #121212;
  -webkit-overflow-scrolling: touch;
  overflow-y: auto;
}
.eo-overlay h2, .eo-overlay h3, .eo-overlay h4, .eo-overlay h5, .eo-overlay h6 {
  color: #121212;
}
.eo-overlay__box {
  position: relative;
}
.eo-overlay__close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 32px;
  height: 32px;
  color: #121212;
  background-color: transparent;
  border: 0 none;
  padding: 0;
  font-size: 30px;
  transition: color 0.15s ease, transform 0.15s ease;
}
[data-whatinput=initial] .eo-overlay__close:hover {
  color: #00649e;
  transform: rotate(270deg);
}

[data-whatinput=keyboard][data-whatintent=mouse] .eo-overlay__close:hover {
  color: #00649e;
  transform: rotate(270deg);
}

[data-whatinput=mouse] .eo-overlay__close:hover {
  color: #00649e;
  transform: rotate(270deg);
}

.eo-overlay__close:focus {
  outline: 4px solid rgb(66, 229, 154);
  outline-offset: 2px;
  background-color: rgba(66, 229, 154, 0.3);
}

a.skip-to-content {
  left: -999px;
  position: absolute;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: -999;
}
a.skip-to-content:focus {
  width: auto;
  z-index: 99999;
  top: 8px;
  left: 16px;
  display: inline-block;
  color: #007b94;
  overflow: visible;
  outline: 4px solid rgb(222, 184, 135);
  outline-offset: 2px;
  background-color: rgb(255, 255, 255);
  height: 32px;
  line-height: 32px;
  padding-left: 16px;
  padding-right: 16px;
}
@media (min-width: 640px) {
  a.skip-to-content:focus {
    height: 40px;
    top: 16px;
    left: 24px;
    line-height: 40px;
  }
}
[data-whatintent=mouse] a.skip-to-content:focus {
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: -999;
}

.basic-content {
  margin-top: 64px;
  margin-bottom: 64px;
  margin-left: 0;
  margin-right: 0;
  max-width: 1656px;
}
@media (min-width: 768px) {
  .basic-content {
    margin-left: auto;
    margin-right: auto;
  }
}
.basic-content__wrapper {
  padding-left: 16px;
  padding-right: 16px;
}
@media (min-width: 768px) {
  .basic-content__wrapper {
    padding-left: 6.875vw;
    padding-right: 6.875vw;
  }
}

.collection {
  margin: 32px 0;
  padding-left: 16px;
  padding-right: 16px;
}
@media (min-width: 768px) {
  .collection {
    padding-left: 6.875vw;
    padding-right: 6.875vw;
  }
}
@media (min-width: 640px) {
  .collection {
    margin: 64px 0;
  }
}
@media (min-width: 1280px) {
  .collection {
    margin: 96px 0;
  }
}
.collection__wrapper {
  margin-left: 0;
  margin-right: 0;
  max-width: 1656px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: auto;
  grid-column-gap: 16px;
  grid-auto-columns: 1fr;
  padding-bottom: 32px;
  max-width: 1656px;
  padding-top: 16px;
}
@media (min-width: 768px) {
  .collection__wrapper {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 768px) {
  .collection__wrapper {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-column-gap: 24px;
  }
}
.collection__title-wrapper {
  grid-column: 1/span 4;
  margin-bottom: 40px;
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .collection__title-wrapper {
    grid-column: 1/span 12;
    margin-bottom: 56px;
  }
}
@media (min-width: 768px) {
  .collection__title-wrapper {
    padding: 0;
  }
}
.collection__see-all-link {
  font-size: 20px;
  line-height: 32px;
  text-underline-offset: 6px;
  background: #0f0f0f;
  z-index: 1;
  flex-grow: 3;
}
@media (min-width: 1024px) {
  .collection__see-all-link {
    font-size: 24px;
  }
}
.collection__see-all-link:focus {
  outline: 1px solid rgb(66, 229, 154);
  outline-offset: 1px;
  background-color: rgba(66, 229, 154, 0.2);
}
.collection__title {
  font-size: 20px;
  line-height: 32px;
  margin-right: 32px;
  margin-bottom: 0;
  font-weight: bold;
  position: relative;
}
@media (min-width: 1024px) {
  .collection__title {
    font-size: 24px;
  }
}
.collection__title:after {
  content: "";
  height: 1px;
  width: 100%;
  max-width: 374px;
  background-color: rgb(255, 255, 255);
  position: absolute;
  left: 0;
  bottom: -12px;
}
.collection__list-item-title {
  font-size: 22px;
  line-height: 24px;
  margin-bottom: 16px;
  color: rgb(255, 255, 255);
}
.collection__list {
  grid-column: 1/span 4;
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-row-gap: 16px;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  grid-auto-rows: auto;
  column-gap: 16px;
  row-gap: 32px;
  grid-auto-columns: 1fr;
}
@media (min-width: 540px) {
  .collection__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 768px) {
  .collection__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-column: 1/span 12;
    column-gap: 24px;
    row-gap: 48px;
  }
}
@media (min-width: 1024px) {
  .collection__list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media (min-width: 1600px) {
  .collection__list {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}
.collection__list--layout_1 .single-lift-wrapper {
  min-height: 220px;
}
@media (min-width: 768px) {
  .collection__list--layout_1 .single-lift-wrapper {
    min-height: 282px;
  }
}
@media (min-width: 1280px) {
  .collection__list--layout_1 .single-lift-wrapper {
    min-height: 384px;
  }
}
.collection__list--layout_1 .single-lift-wrapper .single-lift {
  min-height: 220px;
}
@media (min-width: 768px) {
  .collection__list--layout_1 .single-lift-wrapper .single-lift {
    min-height: 282px;
  }
}
@media (min-width: 1280px) {
  .collection__list--layout_1 .single-lift-wrapper .single-lift {
    min-height: 384px;
  }
}
.collection__list--layout_2 .single-lift-wrapper, .collection__list--layout_3 .single-lift-wrapper {
  min-height: 220px;
}
@media (min-width: 1280px) {
  .collection__list--layout_2 .single-lift-wrapper, .collection__list--layout_3 .single-lift-wrapper {
    min-height: 282px;
  }
}
.collection__list--layout_2 .single-lift-wrapper .single-lift, .collection__list--layout_3 .single-lift-wrapper .single-lift {
  min-height: 220px;
}
@media (min-width: 1280px) {
  .collection__list--layout_2 .single-lift-wrapper .single-lift, .collection__list--layout_3 .single-lift-wrapper .single-lift {
    min-height: 282px;
  }
}
@media (min-width: 540px) {
  .collection__list--layout_2 .single-lift-wrapper:nth-child(2), .collection__list--layout_3 .single-lift-wrapper:nth-child(2) {
    grid-column: auto/span 2;
  }
}
@media (min-width: 768px) {
  .collection__list--layout_2 .single-lift-wrapper:nth-child(2) .single-lift, .collection__list--layout_3 .single-lift-wrapper:nth-child(2) .single-lift {
    min-height: 100%;
  }
}
@media (min-width: 1280px) {
  .collection__list--layout_2 .single-lift-wrapper:nth-child(2) .single-lift, .collection__list--layout_3 .single-lift-wrapper:nth-child(2) .single-lift {
    min-height: 100%;
  }
}
.collection__list--layout_2 .single-lift-wrapper:nth-child(2) {
  min-height: 100%;
}
@media (min-width: 768px) {
  .collection__list--layout_2 .single-lift-wrapper:nth-child(2) {
    grid-column: 1/span 2;
    grid-row: 1/span 2;
  }
}
.collection__list--layout_3 .collection__list-item {
  background: #d60e4d;
}
@media (min-width: 768px) {
  .collection__list--layout_3 .collection__list-item {
    grid-column: 1/span 2;
    grid-row: 3/span 1;
  }
}
@media (min-width: 768px) {
  .collection__list--layout_3 .single-lift-wrapper:nth-child(2) {
    grid-column: 3/span 2;
    grid-row: 2/span 2;
  }
}
.collection__list--layout_4 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (min-width: 768px) {
  .collection__list--layout_4 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (min-width: 1280px) {
  .collection__list--layout_4 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}
.collection__list-item {
  min-height: 240px;
  background: #007b94;
  grid-column: 1/span 1;
  padding: 32px 16px 24px 16px;
  font-size: 18px;
  line-height: 24px;
}
@media (min-width: 540px) {
  .collection__list-item {
    grid-column: 1/span 2;
  }
}
@media (min-width: 768px) {
  .collection__list-item {
    grid-column: 3/span 2;
    grid-row: 1/span 1;
  }
}
.collection__list .single-lift-wrapper {
  grid-column: auto/span 1;
}
@media (min-width: 540px) {
  .collection__list .single-lift-wrapper {
    grid-column: auto/span 1;
  }
}

.hero {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  background-size: cover;
  background-position: center;
  display: flex;
  padding-left: 16px;
  padding-right: 16px;
}
@media (min-width: 768px) {
  .hero {
    padding-left: 6.875vw;
    padding-right: 6.875vw;
  }
}
@media (min-width: 640px) {
  .hero {
    min-height: 60vh;
  }
}
.hero__wrapper {
  max-width: 1656px;
  padding-top: 40px;
  padding-bottom: 48px;
  width: 100%;
}
.hero__title {
  font-size: 20px;
  line-height: 24px;
  position: relative;
  font-weight: bold;
  max-width: 32ch;
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .hero__title {
    font-size: 32px;
    line-height: 40px;
  }
}
.hero__title:after {
  content: "";
  height: 2px;
  width: 100%;
  max-width: 374px;
  background-color: rgb(255, 255, 255);
  position: absolute;
  left: 0;
  bottom: -12px;
}
@media (min-width: 1024px) {
  .home .hero .hero__title {
    max-width: 10ch;
    font-size: 60px;
    line-height: 68px;
  }
}
@media (min-width: 1280px) {
  .home .hero .hero__title {
    font-size: 90px;
    line-height: 98px;
  }
}
.home .hero .hero__title:after {
  bottom: -24px;
}
.hero__text {
  font-size: 16px;
  line-height: 1.5;
  margin-top: 8px;
  margin-bottom: 24px;
  max-width: 60ch;
  padding-bottom: 12px;
  margin-top: 32px;
}
@media (min-width: 640px) {
  .hero__text {
    font-size: 18px;
  }
}
.home .hero .hero__text {
  font-weight: bold;
}
@media (min-width: 1024px) {
  .home .hero .hero__text {
    font-size: 22px;
  }
}
@media (min-width: 1280px) {
  .home .hero .hero__text {
    font-size: 24px;
  }
}
.herovideo {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  background-size: cover;
  background-position: center;
  display: flex;
  position: relative;
  padding-left: 16px;
  padding-right: 16px;
}
@media (min-width: 768px) {
  .herovideo {
    padding-left: 6.875vw;
    padding-right: 6.875vw;
  }
}
@media (max-width: 639px) {
  .herovideo {
    background: transparent !important;
  }
}
@media (min-width: 640px) {
  .herovideo {
    min-height: 60vh;
  }
}
.herovideo__video {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.herovideo__wrapper {
  max-width: 1656px;
  padding-top: 40px;
  padding-bottom: 48px;
  width: 100%;
  position: relative;
}
.herovideo__title {
  font-size: 32px;
  line-height: 24px;
  position: relative;
  font-weight: bold;
  max-width: 32ch;
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .herovideo__title {
    font-size: 32px;
    line-height: 40px;
  }
}
.herovideo__title:after {
  content: "";
  height: 2px;
  width: 100%;
  max-width: 374px;
  background-color: rgb(255, 255, 255);
  position: absolute;
  left: 0;
  bottom: -12px;
}
@media (min-width: 1024px) {
  .home .herovideo .herovideo__title {
    max-width: 10ch;
    font-size: 60px;
    line-height: 68px;
  }
}
@media (min-width: 1280px) {
  .home .herovideo .herovideo__title {
    font-size: 90px;
    line-height: 98px;
  }
}
.home .herovideo .herovideo__title:after {
  bottom: -24px;
}
.herovideo__text {
  font-size: 16px;
  line-height: 1.5;
  margin-top: 8px;
  margin-bottom: 24px;
  max-width: 60ch;
  padding-bottom: 12px;
  margin-top: 32px;
}
@media (min-width: 640px) {
  .herovideo__text {
    font-size: 18px;
  }
}
.home .herovideo .herovideo__text {
  font-weight: bold;
}
@media (min-width: 1024px) {
  .home .herovideo .herovideo__text {
    font-size: 22px;
  }
}
@media (min-width: 1280px) {
  .home .herovideo .herovideo__text {
    font-size: 24px;
  }
}
.plain-html {
  margin-top: 32px;
}
.plain-html__wrapper {
  margin-left: 0;
  margin-right: 0;
  max-width: 1656px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: auto;
  grid-column-gap: 16px;
  grid-auto-columns: 1fr;
  padding-bottom: 32px;
  max-width: 1656px;
  padding-top: 16px;
  padding-left: 16px;
  padding-right: 16px;
  background: rgb(255, 255, 255);
  color: #0f0f0f;
}
@media (min-width: 768px) {
  .plain-html__wrapper {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 768px) {
  .plain-html__wrapper {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-column-gap: 24px;
  }
}
@media (min-width: 768px) {
  .plain-html__wrapper {
    padding: 40px 32px 56px 32px;
  }
}
.plain-html h1,
.plain-html h2 {
  font-size: 30px;
  line-height: 40px;
  margin-bottom: 24px;
  max-width: 1656px;
  color: #0f0f0f;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 540px) {
  .plain-html h1,
  .plain-html h2 {
    margin-bottom: 48px;
  }
}
@media (min-width: 1024px) {
  .plain-html h1,
  .plain-html h2 {
    font-size: 56px;
    line-height: 72px;
    margin-bottom: 72px;
  }
}
.plain-html__content-wrapper {
  grid-column: 1/span 4;
}
@media (min-width: 768px) {
  .plain-html__content-wrapper {
    grid-column: 2/span 10;
  }
}

.suggestion_collection {
  margin: 32px 0;
  padding-left: 16px;
  padding-right: 16px;
}
@media (min-width: 768px) {
  .suggestion_collection {
    padding-left: 6.875vw;
    padding-right: 6.875vw;
  }
}
@media (min-width: 640px) {
  .suggestion_collection {
    margin: 64px 0;
  }
}
@media (min-width: 1280px) {
  .suggestion_collection {
    margin: 96px 0;
  }
}
.suggestion_collection__wrapper {
  margin-left: 0;
  margin-right: 0;
  max-width: 1656px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: auto;
  grid-column-gap: 16px;
  grid-auto-columns: 1fr;
  padding-bottom: 32px;
  max-width: 1656px;
  padding-top: 16px;
}
@media (min-width: 768px) {
  .suggestion_collection__wrapper {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 768px) {
  .suggestion_collection__wrapper {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-column-gap: 24px;
  }
}
.suggestion_collection__title-wrapper {
  grid-column: 1/span 4;
  margin-bottom: 40px;
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .suggestion_collection__title-wrapper {
    grid-column: 1/span 12;
    margin-bottom: 56px;
  }
}
@media (min-width: 768px) {
  .suggestion_collection__title-wrapper {
    padding: 0;
  }
}
.suggestion_collection__see-all-link {
  font-size: 22px;
  line-height: 32px;
}
.suggestion_collection__see-all-link:focus {
  outline: 1px solid rgb(66, 229, 154);
  outline-offset: 1px;
  background-color: rgba(66, 229, 154, 0.2);
}
.suggestion_collection__title {
  font-size: 20px;
  line-height: 32px;
  margin-right: 32px;
  margin-bottom: 0;
  font-weight: bold;
  position: relative;
}
@media (min-width: 1024px) {
  .suggestion_collection__title {
    font-size: 24px;
    line-height: 32px;
  }
}
.suggestion_collection__title:after {
  content: "";
  height: 1px;
  width: 100%;
  max-width: 374px;
  background-color: rgb(255, 255, 255);
  position: absolute;
  left: 0;
  bottom: -12px;
}
.suggestion_collection__list-item-title {
  font-size: 22px;
  line-height: 24px;
  margin-bottom: 16px;
  color: rgb(255, 255, 255);
}
.suggestion_collection__list {
  grid-column: 1/span 4;
  list-style-type: none;
  padding: 0;
  display: grid;
  grid-row-gap: 16px;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  grid-auto-rows: auto;
  grid-column-gap: 16px;
  grid-auto-columns: 1fr;
}
@media (min-width: 540px) {
  .suggestion_collection__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 768px) {
  .suggestion_collection__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-column: 1/span 12;
    grid-gap: 24px;
  }
}
@media (min-width: 1024px) {
  .suggestion_collection__list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media (min-width: 1600px) {
  .suggestion_collection__list {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}
.suggestion_collection__list .single-lift {
  height: 100%;
}
.suggestion_collection__list--layout_1 .single-lift-wrapper {
  min-height: 220px;
}
@media (min-width: 768px) {
  .suggestion_collection__list--layout_1 .single-lift-wrapper {
    min-height: 282px;
  }
}
@media (min-width: 1280px) {
  .suggestion_collection__list--layout_1 .single-lift-wrapper {
    min-height: 384px;
  }
}
.suggestion_collection__list--layout_1 .single-lift-wrapper .single-lift {
  min-height: 220px;
}
@media (min-width: 768px) {
  .suggestion_collection__list--layout_1 .single-lift-wrapper .single-lift {
    min-height: 282px;
  }
}
@media (min-width: 1280px) {
  .suggestion_collection__list--layout_1 .single-lift-wrapper .single-lift {
    min-height: 384px;
  }
}
.suggestion_collection__list--layout_2 .single-lift-wrapper, .suggestion_collection__list--layout_3 .single-lift-wrapper {
  min-height: 220px;
}
@media (min-width: 1280px) {
  .suggestion_collection__list--layout_2 .single-lift-wrapper, .suggestion_collection__list--layout_3 .single-lift-wrapper {
    min-height: 282px;
  }
}
.suggestion_collection__list--layout_2 .single-lift-wrapper .single-lift, .suggestion_collection__list--layout_3 .single-lift-wrapper .single-lift {
  min-height: 220px;
}
@media (min-width: 1280px) {
  .suggestion_collection__list--layout_2 .single-lift-wrapper .single-lift, .suggestion_collection__list--layout_3 .single-lift-wrapper .single-lift {
    min-height: 282px;
  }
}
@media (min-width: 540px) {
  .suggestion_collection__list--layout_2 .single-lift-wrapper:nth-child(2), .suggestion_collection__list--layout_3 .single-lift-wrapper:nth-child(2) {
    grid-column: auto/span 2;
  }
}
@media (min-width: 768px) {
  .suggestion_collection__list--layout_2 .single-lift-wrapper:nth-child(2) .single-lift, .suggestion_collection__list--layout_3 .single-lift-wrapper:nth-child(2) .single-lift {
    min-height: 100%;
  }
}
@media (min-width: 1280px) {
  .suggestion_collection__list--layout_2 .single-lift-wrapper:nth-child(2) .single-lift, .suggestion_collection__list--layout_3 .single-lift-wrapper:nth-child(2) .single-lift {
    min-height: 100%;
  }
}
.suggestion_collection__list--layout_2 .single-lift-wrapper:nth-child(2) {
  min-height: 100%;
}
@media (min-width: 768px) {
  .suggestion_collection__list--layout_2 .single-lift-wrapper:nth-child(2) {
    grid-column: 1/span 2;
    grid-row: 1/span 2;
  }
}
.suggestion_collection__list--layout_3 .collection__list-item {
  background: #d60e4d;
}
@media (min-width: 768px) {
  .suggestion_collection__list--layout_3 .collection__list-item {
    grid-column: 1/span 2;
    grid-row: 3/span 1;
  }
}
@media (min-width: 768px) {
  .suggestion_collection__list--layout_3 .single-lift-wrapper:nth-child(2) {
    grid-column: 3/span 2;
    grid-row: 2/span 2;
  }
}
.suggestion_collection__list--layout_4 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (min-width: 768px) {
  .suggestion_collection__list--layout_4 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (min-width: 1280px) {
  .suggestion_collection__list--layout_4 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}
.suggestion_collection__list-item {
  min-height: 240px;
  background: #007b94;
  grid-column: 1/span 1;
  padding: 32px 16px 24px 16px;
  font-size: 18px;
  line-height: 24px;
}
@media (min-width: 540px) {
  .suggestion_collection__list-item {
    grid-column: 1/span 2;
  }
}
@media (min-width: 768px) {
  .suggestion_collection__list-item {
    grid-column: 3/span 2;
    grid-row: 1/span 1;
  }
}
.suggestion_collection__list .single-lift-wrapper {
  grid-column: auto/span 1;
}
@media (min-width: 540px) {
  .suggestion_collection__list .single-lift-wrapper {
    grid-column: auto/span 1;
  }
}

.video-playlist {
  margin-top: 32px;
  padding-left: 16px;
  padding-right: 16px;
}
@media (min-width: 768px) {
  .video-playlist {
    padding-left: 6.875vw;
    padding-right: 6.875vw;
  }
}
.video-playlist__wrapper {
  margin-left: 0;
  margin-right: 0;
  max-width: 1656px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: auto;
  grid-column-gap: 16px;
  grid-auto-columns: 1fr;
  padding-bottom: 32px;
  max-width: 1656px;
  padding-top: 16px;
}
@media (min-width: 768px) {
  .video-playlist__wrapper {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 768px) {
  .video-playlist__wrapper {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-column-gap: 24px;
  }
}
.video-playlist__title-wrapper {
  grid-column: 1/span 4;
  margin-bottom: 32px;
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .video-playlist__title-wrapper {
    grid-column: 1/span 12;
    margin-bottom: 56px;
  }
}
@media (min-width: 768px) {
  .video-playlist__title-wrapper {
    padding: 0;
  }
}
.video-playlist__title {
  font-size: 20px;
  line-height: 32px;
  margin-right: 32px;
  margin-bottom: 0;
  font-weight: bold;
  position: relative;
}
@media (min-width: 1024px) {
  .video-playlist__title {
    font-size: 24px;
    line-height: 32px;
  }
}
.video-playlist__title:after {
  content: "";
  height: 1px;
  width: 100%;
  max-width: 374px;
  background-color: rgb(255, 255, 255);
  position: absolute;
  left: 0;
  bottom: -12px;
}
.video-playlist__shortcode-wrapper {
  grid-column: 1/span 4;
}
@media (min-width: 768px) {
  .video-playlist__shortcode-wrapper {
    grid-column: 1/span 12;
  }
}
.video-playlist .plyr {
  margin-bottom: 8px;
}
.video-playlist .h5vp_video_playlist .listwithposter li {
  overflow: hidden;
}

.archive {
  /*&__list-item {
  	grid-column: 1 / span 8;
  	margin-bottom: 40px;

  	@include breakpoint($mobile-large) {
  		grid-column: span 4;
  	}

  	@include breakpoint($tablet) {
  		grid-column: span 5;
  		margin-bottom: 88px;
  	}
  }*/
}
.archive:not(body) {
  margin-bottom: 80px;
}
main .archive {
  padding-top: 0;
}
@media (min-width: 768px) {
  main .archive {
    padding-top: 0;
  }
}

.search main .archive {
  padding-top: 32px;
}
@media (min-width: 768px) {
  .search main .archive {
    padding-top: 72px;
  }
}

.archive__wrapper {
  margin-left: 0;
  margin-right: 0;
  max-width: 1656px;
  padding-left: 16px;
  padding-right: 16px;
  max-width: 100%;
  padding-bottom: 32px;
  margin-bottom: 56px;
  padding-top: 32px;
}
@media (min-width: 768px) {
  .archive__wrapper {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 768px) {
  .archive__wrapper {
    padding-left: 6.875vw;
    padding-right: 6.875vw;
  }
}
@media (min-width: 768px) {
  .archive__wrapper {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 88px;
    padding-top: 72px;
    padding-bottom: 56px;
  }
}
.archive__image-wrapper {
  display: block;
  height: 240px;
  max-width: 100%;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 32px;
}
@media (min-width: 768px) {
  .archive__image-wrapper {
    margin-bottom: 56px;
  }
}
.archive__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.archive__title-wrapper {
  margin-left: 0;
  margin-right: 0;
  max-width: 1656px;
  padding-left: 16px;
  padding-right: 16px;
  max-width: 100%;
  padding-top: 32px;
}
@media (min-width: 768px) {
  .archive__title-wrapper {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 768px) {
  .archive__title-wrapper {
    padding-left: 6.875vw;
    padding-right: 6.875vw;
  }
}
@media (min-width: 768px) {
  .archive__title-wrapper {
    padding-top: 72px;
  }
}
.archive__title-content-wrapper {
  margin-left: auto;
  margin-right: auto;
  max-width: 1656px;
  width: 100%;
  margin-bottom: 56px;
}
.archive__title {
  grid-column: 1/span 4;
  font-size: 20px;
  line-height: 20px;
  font-weight: bold;
  margin-bottom: 24px;
  max-width: 1656px;
  position: relative;
}
@media (min-width: 768px) {
  .archive__title {
    padding: 0;
    grid-column: 2/span 10;
  }
}
@media (min-width: 1024px) {
  .archive__title {
    grid-column: 1/span 12;
    font-size: 32px;
    line-height: 40px;
  }
}
.archive__title:after {
  display: none;
  content: "";
  height: 1px;
  width: 70%;
  max-width: 374px;
  background-color: rgb(255, 255, 255);
  position: absolute;
  left: 0;
  bottom: -12px;
}
@media (min-width: 768px) {
  .archive__title:after {
    display: block;
  }
}
.archive__text {
  grid-column: 1/span 4;
  font-size: 16px;
  line-height: 24px;
  margin-top: 8px;
  margin-bottom: 24px;
  max-width: 60ch;
}
@media (min-width: 768px) {
  .archive__text {
    font-size: 18px;
    grid-column: 1/span 12;
  }
}
@media (min-width: 1024px) {
  .archive__text {
    grid-column: 1/span 12;
  }
}
.archive__featured-tags {
  list-style-type: none;
  padding: 0;
  margin: 0;
  grid-column: 1/span 4;
}
@media (min-width: 768px) {
  .archive__featured-tags {
    grid-column: 1/span 12;
  }
}
@media (min-width: 1280px) {
  .archive__featured-tags {
    padding: 0;
  }
}
.archive__featured-tag {
  display: inline-block;
  margin-right: 12px;
  margin-bottom: 8px;
}
.archive__featured-tag-link {
  line-height: 38px;
  border: 1px solid rgb(255, 255, 255);
  padding-left: 16px;
  padding-right: 16px;
  font-size: 18px;
  color: rgb(255, 255, 255);
  border-radius: 8px;
  display: block;
}
.archive__list {
  max-width: 1656px;
  list-style-type: none;
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  grid-auto-rows: auto;
  column-gap: 16px;
  row-gap: 32px;
  margin-bottom: 40px;
}
@media (min-width: 540px) {
  .archive__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 768px) {
  .archive__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-column: 1/span 12;
  }
}
@media (min-width: 1280px) {
  .archive__list {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    column-gap: 24px;
    row-gap: 48px;
  }
}
@media (min-width: 768px) {
  .archive .single-lift {
    min-height: 282px;
  }
}
.archive .single-lift-wrapper {
  grid-column: auto/span 1;
}
@media (min-width: 540px) {
  .archive .single-lift-wrapper {
    grid-column: auto/span 1;
  }
}
.archive__image {
  max-height: 360px;
  width: 100%;
  object-fit: cover;
  object-position: center center;
  max-width: 100%;
}
.archive .pagination {
  grid-column: 1/span 4;
}
@media (min-width: 768px) {
  .archive .pagination {
    grid-column: 2/span 10;
  }
}

.pagination {
  padding-left: 16px;
  padding-right: 16px;
}
@media (min-width: 540px) {
  .pagination {
    padding-left: 32px;
    padding-right: 32px;
  }
}
@media (min-width: 768px) {
  .pagination {
    padding-left: 0;
    padding-right: 0;
  }
}
.pagination .nav-links {
  display: flex;
  width: min-content;
  margin: 0 auto;
}
.pagination .page-numbers {
  font-weight: 700;
  display: block;
  font-size: 14px;
  line-height: 16px;
}
.pagination .page-numbers:not(.prev):not(.next) {
  padding-left: 4px;
  padding-right: 4px;
}
@media (min-width: 768px) {
  .pagination .page-numbers:not(.prev):not(.next) {
    padding-left: 8px;
    padding-right: 8px;
  }
}
.pagination a {
  color: #42e59a;
  position: relative;
}
.pagination a::before {
  content: "";
  display: block;
  position: absolute;
  bottom: -8px;
  left: 0;
  height: 2px;
  width: 100%;
  background-color: #42e59a;
  transform-origin: center top;
  transform: scale(0, 1);
  transition: transform 0.2s cubic-bezier(0.22, 0.48, 0, 0.71);
  will-change: transform;
}
.pagination a:active::before {
  background-color: #42e59a;
}
.pagination a:hover::before, .pagination a:focus::before, .pagination a.-active::before {
  transform-origin: center top;
  transform: scale(1.1, 1);
}
.pagination a:hover {
  text-decoration: none;
}
.pagination .prev[aria-hidden],
.pagination .next[aria-hidden] {
  opacity: 0.35;
}
@media (min-width: 768px) {
  .pagination .prev,
  .pagination .next {
    letter-spacing: 1px;
  }
}
.pagination .prev {
  margin-right: 32px;
}
@media (min-width: 768px) {
  .pagination .prev {
    margin-right: 40px;
  }
}
.pagination .next {
  margin-left: 32px;
}
@media (min-width: 768px) {
  .pagination .next {
    margin-left: 40px;
  }
}

.archive-kouluttaja:not(body) {
  margin-bottom: 80px;
}
.archive-kouluttaja__wrapper {
  margin-left: 0;
  margin-right: 0;
  max-width: 1656px;
  padding-left: 16px;
  padding-right: 16px;
  padding-bottom: 32px;
  margin-bottom: 56px;
  padding-top: 32px;
  max-width: 100%;
}
@media (min-width: 768px) {
  .archive-kouluttaja__wrapper {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 768px) {
  .archive-kouluttaja__wrapper {
    padding-left: 6.875vw;
    padding-right: 6.875vw;
  }
}
@media (min-width: 768px) {
  .archive-kouluttaja__wrapper {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 88px;
    padding-top: 72px;
  }
}
.archive-kouluttaja__title-content-wrapper {
  margin-left: auto;
  margin-right: auto;
  max-width: 1656px;
  width: 100%;
  margin-bottom: 32px;
}
@media (min-width: 768px) {
  .archive-kouluttaja__title-content-wrapper {
    margin-bottom: 56px;
  }
}
.archive-kouluttaja__title {
  grid-column: 1/span 4;
  font-size: 20px;
  line-height: 20px;
  font-weight: bold;
  margin-bottom: 24px;
  max-width: 300px;
  position: relative;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 540px) {
  .archive-kouluttaja__title {
    max-width: 1656px;
    margin-left: 0;
    margin-right: 0;
  }
}
@media (min-width: 768px) {
  .archive-kouluttaja__title {
    padding: 0;
    grid-column: 2/span 10;
  }
}
@media (min-width: 1024px) {
  .archive-kouluttaja__title {
    grid-column: 1/span 12;
    font-size: 32px;
    line-height: 40px;
  }
}
.archive-kouluttaja__title:after {
  content: "";
  height: 1px;
  width: 70%;
  max-width: 374px;
  background-color: rgb(255, 255, 255);
  position: absolute;
  left: 0;
  bottom: -12px;
}
.archive-kouluttaja__text {
  grid-column: 1/span 4;
  font-size: 16px;
  line-height: 24px;
  margin-top: 8px;
  margin-bottom: 24px;
  max-width: 60ch;
}
@media (min-width: 768px) {
  .archive-kouluttaja__text {
    font-size: 18px;
    grid-column: 1/span 12;
  }
}
@media (min-width: 1024px) {
  .archive-kouluttaja__text {
    grid-column: 1/span 12;
  }
}
.archive-kouluttaja__list {
  list-style-type: none;
  margin: 0;
  padding: 0;
  grid-column: 1/span 4;
  max-width: 300px;
  width: 100%;
  display: grid;
  flex-wrap: wrap;
  margin-left: auto;
  margin-right: auto;
  justify-content: space-between;
  column-gap: 16px;
  row-gap: 32px;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  margin-bottom: 40px;
}
@media (min-width: 540px) {
  .archive-kouluttaja__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 1656px;
  }
}
@media (min-width: 768px) {
  .archive-kouluttaja__list {
    column-gap: 40px;
  }
}
@media (min-width: 1024px) {
  .archive-kouluttaja__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 64px;
    margin-bottom: 56px;
  }
}
@media (min-width: 1280px) {
  .archive-kouluttaja__list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    column-gap: clamp(64px, 6.7vw, 128px);
    row-gap: 64px;
  }
}

.kouluttaja-lift {
  display: block;
  text-decoration: none;
}
@media (min-width: 640px) {
  .kouluttaja-lift {
    width: auto;
  }
}
.kouluttaja-lift:focus {
  outline: 4px solid rgb(66, 229, 154);
  outline-offset: 2px;
  background-color: rgba(66, 229, 154, 0.3);
}
.kouluttaja-lift:hover {
  text-decoration: none;
}
[data-whatinput=keyboard][data-whatintent=mouse] .kouluttaja-lift:hover .kouluttaja-lift__image {
  border-color: #42e59a;
}

[data-whatinput=mouse] .kouluttaja-lift:hover .kouluttaja-lift__image {
  border-color: #42e59a;
}

[data-whatinput=initial] .kouluttaja-lift:hover .kouluttaja-lift__image {
  border-color: #42e59a;
}

.kouluttaja-lift__wrapper {
  display: inline-block;
}
@media (min-width: 640px) {
  .kouluttaja-lift__wrapper {
    width: 100%;
    display: block;
  }
}
.kouluttaja-lift__image {
  display: block;
  border-radius: 8px;
  margin-bottom: 16px;
  border: 2px solid transparent;
  transition: all 0.2s ease;
}
@media (min-width: 640px) {
  .kouluttaja-lift__image {
    width: 100%;
    height: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
  }
}
.kouluttaja-lift__title {
  font-size: 16px;
  line-height: 24px;
  font-weight: bold;
  margin-bottom: 0;
}
.kouluttaja-lift__contact {
  font-size: 16px;
  line-height: 24px;
  margin: 8px 0 0;
}
.kouluttaja-lift__contact span {
  display: block;
}

.tmpl-course-completed .background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 320px;
  background-color: transparent;
  background-position: center bottom;
  background-size: cover;
  display: none;
}
@media (min-width: 1024px) {
  .tmpl-course-completed .background {
    display: block;
  }
}

.course-completed__wrapper {
  margin-left: 0;
  margin-right: 0;
  max-width: 1656px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: auto;
  grid-column-gap: 16px;
  grid-auto-columns: 1fr;
  position: relative;
  padding-top: 16px;
  padding-left: 16px;
  padding-right: 16px;
  padding-bottom: 32px;
  max-width: 1000px;
  margin-bottom: 56px;
  background-color: rgb(255, 255, 255);
  color: #0f0f0f;
}
@media (min-width: 768px) {
  .course-completed__wrapper {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 768px) {
  .course-completed__wrapper {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-column-gap: 24px;
  }
}
@media (min-width: 768px) {
  .course-completed__wrapper {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 88px;
    padding-top: 72px;
    padding-bottom: 56px;
  }
}
@media (min-width: 1024px) {
  .course-completed__wrapper {
    padding-right: 24px;
    padding-left: 24px;
    margin-top: 120px;
  }
}
.course-completed__title {
  color: #0f0f0f;
  grid-column: 1/span 4;
  font-size: 30px;
  line-height: 40px;
  margin-bottom: 32px;
  margin-top: 32px;
  font-weight: 500;
}
@media (min-width: 768px) {
  .course-completed__title {
    grid-column: 2/span 10;
  }
}
@media (min-width: 1024px) {
  .course-completed__title {
    grid-column: 3/span 8;
  }
}
.course-completed__content {
  grid-column: 1/span 4;
}
@media (min-width: 768px) {
  .course-completed__content {
    grid-column: 2/span 10;
  }
}
@media (min-width: 1024px) {
  .course-completed__content {
    grid-column: 3/span 8;
  }
}
.course-completed__content > p {
  font-family: "Poppins", sans-serif;
  word-break: break-word;
  font-size: 20px;
  line-height: 24px;
  margin-top: 24px;
  margin-bottom: 24px;
}

.tmpl-error404 .background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 320px;
  background: transparent url(../img/error404-opt.jpg) center;
  background-size: cover;
  display: none;
}
@media (min-width: 1024px) {
  .tmpl-error404 .background {
    display: block;
  }
}

.error404__wrapper {
  margin-left: 0;
  margin-right: 0;
  max-width: 1656px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: auto;
  grid-column-gap: 16px;
  grid-auto-columns: 1fr;
  padding-bottom: 32px;
  max-width: 1656px;
  margin-bottom: 56px;
  padding-top: 32px;
}
@media (min-width: 768px) {
  .error404__wrapper {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 768px) {
  .error404__wrapper {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-column-gap: 24px;
  }
}
@media (min-width: 768px) {
  .error404__wrapper {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 88px;
    padding-top: 72px;
    padding-bottom: 56px;
  }
}
@media (min-width: 1024px) {
  .error404__wrapper {
    padding-top: 320px;
    padding-left: 24px;
    padding-right: 24px;
  }
}
.error404__title {
  grid-column: 1/span 4;
  font-size: 30px;
  line-height: 40px;
  margin-bottom: 24px;
  max-width: 1656px;
  padding-left: 16px;
  padding-right: 16px;
}
@media (min-width: 540px) {
  .error404__title {
    padding-left: 32px;
    padding-right: 32px;
  }
}
@media (min-width: 768px) {
  .error404__title {
    padding: 0;
    grid-column: 2/span 10;
  }
}
@media (min-width: 1024px) {
  .error404__title {
    grid-column: 1/span 12;
    font-size: 56px;
    line-height: 72px;
  }
}
.error404__text {
  grid-column: 1/span 4;
  margin-top: 0;
  margin-bottom: 32px;
  padding-left: 16px;
  padding-right: 16px;
}
@media (min-width: 540px) {
  .error404__text {
    padding-left: 32px;
    padding-right: 32px;
  }
}
@media (min-width: 768px) {
  .error404__text {
    padding: 0;
    grid-column: 2/span 10;
  }
}
@media (min-width: 1024px) {
  .error404__text {
    grid-column: 1/span 12;
    font-size: 28px;
    line-height: 32px;
    margin-bottom: 64px;
  }
}

.subscribe {
  background-color: rgb(255, 255, 255);
  color: #0f0f0f;
  border-radius: 8px;
  padding-left: 16px;
  padding-right: 16px;
}
@media (min-width: 768px) {
  .subscribe {
    padding-left: 6.875vw;
    padding-right: 6.875vw;
  }
}
.subscribe a {
  color: #0f0f0f;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: all 0.2s ease;
}
.subscribe a:hover {
  color: #0f0f0f;
  text-underline-offset: 2px;
}
.subscribe-wrapper {
  padding: 64px 0 64px 0;
  max-width: 720px;
  margin: 0 auto;
}
.subscribe__newsletter-text {
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 32px;
}
.subscribe__newsletter-title {
  color: #0f0f0f;
  font-size: 28px;
  line-height: 32px;
  margin-bottom: 32px;
  text-align: center;
  font-weight: bold;
}
@media (min-width: 1024px) {
  .subscribe__newsletter-title {
    font-size: 40px;
    line-height: 48px;
  }
}
.subscribe input[type=text],
.subscribe input[type=password],
.subscribe input[type=email],
.subscribe input[type=number] {
  height: 52px;
  line-height: 52px;
  font-size: 16px;
  border-radius: 26px;
  border: 2px solid #0f0f0f;
  padding-left: 32px;
  padding-right: 32px;
}
.subscribe .gform_footer {
  text-align: center;
}
.subscribe .gform_button.button {
  border: 2px solid #0f0f0f;
  line-height: 52px;
}
.subscribe .gfield_description {
  margin-top: 40px;
}
.subscribe .gform_wrapper .ginput_container_checkbox input[type=checkbox] + label {
  line-height: 20px;
}
.subscribe .gform_confirmation_wrapper {
  text-align: center;
}

.footer {
  padding-top: 32px;
  padding-bottom: 40px;
  padding-left: 16px;
  padding-right: 16px;
  background-color: #0f0f0f;
  color: rgb(255, 255, 255);
  /*&__wrapper-newsletter {
  	.gform_wrapper {
  		margin-top: 0;
  		padding-top: 4px;

  		input[type="text"] {
  			width: 100% !important;

  			@include focus();

  			&:focus {
  				background-color: $color-white;
  			}
  		}

  		form ul li.gfield {
  		}
  	}
  }*/
}
@media (min-width: 768px) {
  .footer {
    padding-left: 6.875vw;
    padding-right: 6.875vw;
  }
}
@media (min-width: 1024px) {
  .footer {
    padding-top: 96px;
    padding-bottom: 48px;
  }
}
.footer ul {
  list-style-type: none;
  padding-left: 0;
}
.footer__wrapper {
  max-width: 1656px;
  margin-left: auto;
  margin-right: auto;
}
.footer__wrapper-contact {
  margin-bottom: 32px;
}
@media (min-width: 640px) {
  .footer__wrapper-contact {
    padding-top: 6px;
  }
}
.footer__wrapper-contact p {
  margin-top: 0;
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 32px;
}
.footer__wrapper-contact p a {
  text-decoration: none;
}
.footer__wrapper-contact p a:focus {
  outline: 1px solid rgb(66, 229, 154);
  outline-offset: 1px;
  background-color: rgba(66, 229, 154, 0.2);
}
.footer__wrapper-contact p a:hover {
  text-decoration: underline;
}
.footer__wrapper-contact .logout {
  margin-top: 40px;
  display: inline-block;
}
.footer__navigation-list {
  margin-top: 120px;
}
@media (min-width: 1024px) {
  .footer__navigation-list {
    margin-top: 208px;
    display: flex;
    justify-content: space-between;
  }
}
.footer__navigation-list-item {
  display: block;
}
.footer__navigation-list-link {
  display: inline-block;
  font-size: 16px;
  line-height: 24px;
  margin-top: 4px;
  margin-bottom: 4px;
  color: rgb(255, 255, 255);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer__navigation-list-link:focus {
  outline: 4px solid rgb(66, 229, 154);
  outline-offset: 2px;
  background-color: rgba(66, 229, 154, 0.3);
}
.footer__navigation-list-link:hover {
  text-decoration: none;
  color: #42e59a;
}
.footer__navigation-heading {
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.footer__address {
  font-size: 16px;
  line-height: 24px;
}
.footer__address p {
  margin: 0;
}
.footer__address a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer__address a:hover {
  color: #42e59a;
  text-decoration: none;
}
.footer__navigation-somelist {
  margin-bottom: 48px;
}
.footer__navigation-somelist-item {
  display: inline-block;
  margin-right: 12px;
}
.footer__navigation-somelist-link {
  display: block;
}
.footer__navigation-somelist-link:focus {
  outline: 4px solid rgb(66, 229, 154);
  outline-offset: 2px;
  background-color: rgba(66, 229, 154, 0.3);
}

.forgot-password-page {
  border-radius: 4px;
  padding: 32px;
  max-width: 480px;
  width: 100%;
  margin-top: 32px;
  margin-bottom: 32px;
  margin-right: auto;
  margin-left: auto;
}
.forgot-password-page .gform_title, .forgot-password-page__heading {
  text-align: center;
  font-size: 26px;
  line-height: 32px;
  margin-bottom: 32px;
}
.forgot-password-page .gform_description, .forgot-password-page__description {
  margin-bottom: 32px;
  display: block;
  font-size: 16px;
  line-height: 24px;
}
.forgot-password-page .gf_login_links {
  margin-top: 32px;
  display: flex;
}
.forgot-password-page .gf_login_links br {
  display: none;
}
.forgot-password-page .gf_login_links a {
  margin-right: 16px;
}
.forgot-password-page .gf_login_links a:focus {
  outline: 1px solid rgb(66, 229, 154);
  outline-offset: 1px;
  background-color: rgba(66, 229, 154, 0.2);
}
.forgot-password-page input {
  width: 100%;
  margin-bottom: 8px;
}

.header {
  font-size: 13px;
  height: 64px;
  display: block;
  background-color: #0f0f0f;
  z-index: 9999;
}
@media (min-width: 1024px) {
  .header {
    height: 114px;
  }
}
.header ul {
  list-style-type: none;
}
.header a {
  text-decoration: none;
}
.header__wrapper {
  background-color: #0f0f0f;
  display: flex;
  width: 100%;
  flex-wrap: nowrap;
  position: fixed;
  height: 64px;
  padding: 16px;
  max-width: 1920px;
  align-items: center;
}
@media (min-width: 1024px) {
  .header__wrapper {
    height: 114px;
    padding: 48px 0 36px 0;
  }
}
@media (min-width: 1920px) {
  .header__wrapper {
    margin-left: 50%;
    transform: translateX(-50%);
  }
  .header__wrapper:before, .header__wrapper:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    height: 114px;
    background-color: #0f0f0f;
  }
  .header__wrapper:before {
    width: 50vw;
    right: 99%;
  }
  .header__wrapper:after {
    width: 50vw;
    left: 99%;
  }
}
.header__search-container {
  position: relative;
  display: flex;
  flex-grow: 2;
  max-width: 1656px;
  margin-left: 32px;
  margin-right: 32px;
}
@media (min-width: 1024px) {
  .header__search-container {
    margin-right: 48px;
  }
}
@media (min-width: 1280px) {
  .header__search-container {
    margin-left: 0;
  }
}
.header__homelink-wrapper {
  height: 32px;
}
@media (min-width: 1024px) {
  .header__homelink-wrapper {
    display: flex;
    justify-content: center;
    width: 6.875vw;
    padding-left: 32px;
    max-width: 132px;
  }
}
.header__homelink {
  display: inline-block;
  height: 32px;
  flex-grow: 0;
  flex-shrink: 0;
}
.header__homelink path {
  transition: fill 0.15s ease;
}
[data-whatinput=initial] .header__homelink:hover path,
[data-whatinput=initial] .header__homelink:hover polygon {
  fill: #42e59a;
}

[data-whatinput=keyboard][data-whatintent=mouse] .header__homelink:hover path,
[data-whatinput=keyboard][data-whatintent=mouse] .header__homelink:hover polygon {
  fill: #42e59a;
}

[data-whatinput=mouse] .header__homelink:hover path,
[data-whatinput=mouse] .header__homelink:hover polygon {
  fill: #42e59a;
}

.header__homelink:focus {
  outline: 4px solid rgb(66, 229, 154);
  outline-offset: 2px;
  background-color: rgba(66, 229, 154, 0.3);
}
@media (min-width: 1024px) {
  .header__homelink {
    height: 32px;
  }
  .header__homelink .icon-eoppiva {
    height: 32px;
    width: auto;
  }
}
.header__page-menu {
  margin: 0;
  padding: 0;
  margin-right: auto;
}
.header__page-menu-list-item {
  display: inline-block;
  margin-right: 20px;
  color: #fff;
}
.header__language-menu {
  display: flex;
  gap: 10px;
  padding: 0px;
}
.header__language-menu-list-item:not(:first-child):before {
  content: "/";
  display: inline-block;
  margin-right: 5px;
}
.header__language-menu-list-item--active .header__language-menu-link-title {
  font-weight: bold;
  color: #fff;
}
.header__language-menu-link-title {
  color: #ccc;
  text-transform: uppercase;
}
.header__language-menu-link-title:hover {
  color: #fff;
}
.header__search-button {
  display: block;
  width: 24px;
  height: 24px;
}
.header__search-button:focus {
  outline: 4px solid rgb(66, 229, 154);
  outline-offset: 2px;
  background-color: rgba(66, 229, 154, 0.3);
}
.header__search-button path {
  transition: fill 0.15s ease;
}
[data-whatinput=initial] .header__search-button:hover path,
[data-whatinput=initial] .header__search-button:hover polygon {
  fill: #42e59a;
}

[data-whatinput=keyboard][data-whatintent=mouse] .header__search-button:hover path,
[data-whatinput=keyboard][data-whatintent=mouse] .header__search-button:hover polygon {
  fill: #42e59a;
}

[data-whatinput=mouse] .header__search-button:hover path,
[data-whatinput=mouse] .header__search-button:hover polygon {
  fill: #42e59a;
}

@media (min-width: 1024px) {
  .header__search-button {
    height: 26px;
    width: 26px;
    padding: 3px;
    box-sizing: content-box;
  }
}
.header__search-wrapper-desktop {
  flex-grow: 1;
  margin-left: 32px;
  padding-right: 8px;
  position: relative;
  flex-grow: 0;
  position: static;
  padding-right: 0;
}
@media (min-width: 1024px) {
  .header__search-wrapper-desktop {
    margin-left: 48px;
  }
}
.header__search-wrapper-desktop.search-open button.search path.search {
  opacity: 0;
}
.header__search-wrapper-desktop.search-open button.search path.close {
  opacity: 1;
}
.header__search-input-desktop[type=text] {
  border: 0 none;
  padding: 0;
  position: absolute;
  right: 0;
  width: 0;
  top: -4px;
  line-height: 32px;
  border-radius: 4px;
  font-size: 16px;
  transition: width 0.15s ease-out, padding 0.15s ease;
  border: 0 none;
}
.header__search-input-desktop[type=text]:focus {
  outline: 4px solid rgb(66, 229, 154);
  outline-offset: 2px;
  background-color: rgba(66, 229, 154, 0.3);
}
.header__search-input-desktop[type=text]:focus {
  line-height: 32px;
  border: 0 none;
  background-color: rgb(255, 255, 255);
}
@media (min-width: 1024px) {
  .header__search-input-desktop[type=text]:focus {
    line-height: 40px;
  }
}
@media (min-width: 1024px) {
  .header__search-input-desktop[type=text] {
    top: 0;
    line-height: 40px;
  }
}
.search-open .header__search-input-desktop[type=text] {
  width: 100%;
  padding: 0 16px;
}

.header__page-menu-link {
  color: #fff;
  line-height: 32px;
  font-size: 16px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  display: block;
  height: 32px;
  font-weight: bold;
  position: relative;
  transition-property: color;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}
.header__page-menu-link:focus {
  outline: 4px solid rgb(66, 229, 154);
  outline-offset: 2px;
  background-color: rgba(66, 229, 154, 0.3);
}
.header__page-menu-link:before {
  content: "";
  position: absolute;
  background-color: #42e59a;
  transition-property: left, right;
  transition-duration: 0.15s;
  transition-timing-function: ease;
  height: 2px;
  bottom: 0;
  left: 51%;
  right: 51%;
}
[data-whatinput=keyboard][data-whatintent=mouse] .header__page-menu-link:hover {
  color: #66eaad;
}
[data-whatinput=keyboard][data-whatintent=mouse] .header__page-menu-link:hover:before {
  left: -2px;
  right: -2px;
}

[data-whatinput=mouse] .header__page-menu-link:hover {
  color: #66eaad;
}
[data-whatinput=mouse] .header__page-menu-link:hover:before {
  left: -2px;
  right: -2px;
}

[data-whatinput=initial] .header__page-menu-link:hover {
  color: #66eaad;
}
[data-whatinput=initial] .header__page-menu-link:hover:before {
  left: -2px;
  right: -2px;
}

.header__profilelink {
  display: inline-flex;
  height: 24px;
  width: 24px;
  flex-grow: 0;
  flex-shrink: 0;
  margin-left: 32px;
}
.header__profilelink svg {
  width: 100%;
  height: 100%;
}
@media (min-width: 1024px) {
  .header__profilelink {
    height: 26px;
    width: 26px;
    padding: 3px;
    box-sizing: content-box;
    margin-left: 48px;
  }
  .header__profilelink .icon-profile {
    width: auto;
  }
}
.header__profilelink:hover .header__profilelink-text {
  color: #007ec7;
}
.header__profilelink path {
  transition: fill 0.15s ease;
}
[data-whatinput=initial] .header__profilelink:hover path,
[data-whatinput=initial] .header__profilelink:hover polygon {
  fill: #42e59a;
}

[data-whatinput=keyboard][data-whatintent=mouse] .header__profilelink:hover path,
[data-whatinput=keyboard][data-whatintent=mouse] .header__profilelink:hover polygon {
  fill: #42e59a;
}

[data-whatinput=mouse] .header__profilelink:hover path,
[data-whatinput=mouse] .header__profilelink:hover polygon {
  fill: #42e59a;
}

.header__profilelink:focus {
  outline: 4px solid rgb(66, 229, 154);
  outline-offset: 2px;
  background-color: rgba(66, 229, 154, 0.3);
}
.header__navigation {
  width: 100%;
  flex-shrink: 0;
  background-color: #0f0f0f;
  color: #0f0f0f;
  opacity: 0;
  height: 0;
  overflow: hidden;
  position: fixed;
  top: 64px;
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 24px;
  padding-bottom: 80px;
}
@media (min-width: 1024px) {
  .header__navigation {
    padding-left: 16px;
    padding-right: 16px;
    top: 114px;
    padding-top: 48px;
    padding-bottom: 40px;
  }
}
@media (min-width: 1024px) and (min-width: 768px) {
  .header__navigation {
    padding-left: 6.875vw;
    padding-right: 6.875vw;
  }
}
@media (min-width: 1024px) {
  .admin-bar .header__navigation {
    top: 104px;
    overflow-y: scroll;
  }
}

body:not(.nav_open) .header__navigation {
  padding: 0;
}
body:not(.nav_open) .header__navigation > * {
  display: none;
}

body.nav_open .header__navigation {
  transition: height 0.4s ease, opacity 0.4s ease;
  height: calc(100vh - 64px);
  opacity: 1;
  overflow: scroll;
  display: block;
}
@media (min-width: 1024px) {
  body.nav_open .header__navigation {
    height: calc(100vh - 114px);
  }
}

@media (min-width: 1024px) {
  body.nav_open.admin-bar .header__navigation {
    height: calc(100vh - 104px);
  }
}

.header__navigation-list {
  padding: 0;
  margin: 0;
  margin-bottom: 16px;
  max-width: 1656px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-wrap: wrap;
  row-gap: 16px;
  padding-bottom: 32px;
}
@media (min-width: 640px) {
  .header__navigation-list {
    column-gap: 4%;
  }
}
@media (min-width: 1024px) {
  .header__navigation-list {
    column-gap: 5%;
  }
}
@media (min-width: 1024px) {
  .header__navigation-list {
    column-gap: 4%;
  }
}
.header__navigation-list-item {
  display: flex;
  flex-direction: column;
  margin-bottom: 8px;
  width: 100%;
}
@media (min-width: 1280px) {
  .header__navigation-list-item.page-menu {
    display: none;
  }
}
@media (min-width: 640px) {
  .header__navigation-list-item {
    margin-bottom: 0;
    width: 48%;
  }
}
@media (min-width: 1024px) {
  .header__navigation-list-item {
    width: 30%;
  }
}
@media (min-width: 1600px) {
  .header__navigation-list-item {
    width: 22%;
  }
}
.header__navigation-list-item-heading {
  display: flex;
  justify-content: space-between;
  padding-bottom: 8px;
  border-bottom: 1px solid rgb(255, 255, 255);
  gap: 32px;
}
.header__navigation-list-item-title {
  color: rgb(255, 255, 255);
  font-size: 24px;
  line-height: 32px;
  font-weight: bold;
  margin: 0;
}
.header__navigation-list-item-mobi-wrapper {
  display: none;
  flex-direction: column;
  margin-bottom: 8px;
  width: 100%;
  position: relative;
}
@media (min-width: 640px) {
  .header__navigation-list-item-mobi-wrapper {
    display: flex;
  }
}
.header__navigation-list-item.open .header__navigation-list-item-mobi-wrapper {
  display: flex;
}
.header__navigation-icon-link-icon {
  width: 100%;
  height: auto;
}
.header__navigation-icon-link-title {
  display: block;
  font-size: 12px;
  line-height: 16px;
  word-wrap: break-word;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
}
@media (min-width: 375px) {
  .header__navigation-icon-link-title {
    font-size: 16px;
    line-height: 20px;
  }
}
@media (min-width: 640px) {
  .header__navigation-icon-link-title {
    font-size: 24px;
    line-height: 32px;
  }
}
.header__navigation-link {
  font-size: 18px;
  line-height: 24px;
  display: inline-block;
  color: rgb(255, 255, 255);
  width: 100%;
  margin-top: 0;
}
.header__navigation-link:focus {
  outline: 4px solid rgb(66, 229, 154);
  outline-offset: 2px;
  background-color: rgba(66, 229, 154, 0.3);
}
@media (min-width: 1280px) {
  .header__navigation-link {
    margin-top: 0;
  }
}
.header__navigation-link-sub {
  position: relative;
  transition-property: color;
  transition-duration: 0.15s;
  transition-timing-function: ease;
  border-bottom: 0 none;
  width: fit-content;
  padding: 0;
  margin: 32px 0 8px 0;
  font-weight: bold;
  font-size: 16px;
  line-height: 24px;
}
.header__navigation-link-sub:before {
  content: "";
  position: absolute;
  background-color: #42e59a;
  transition-property: left, right;
  transition-duration: 0.15s;
  transition-timing-function: ease;
  height: 2px;
  bottom: -4px;
  left: 0;
  right: 101%;
}
[data-whatinput=keyboard][data-whatintent=mouse] .header__navigation-link-sub:hover {
  color: #66eaad;
}
[data-whatinput=keyboard][data-whatintent=mouse] .header__navigation-link-sub:hover:before {
  left: 0;
  right: 0;
}

[data-whatinput=mouse] .header__navigation-link-sub:hover {
  color: #66eaad;
}
[data-whatinput=mouse] .header__navigation-link-sub:hover:before {
  left: 0;
  right: 0;
}

[data-whatinput=initial] .header__navigation-link-sub:hover {
  color: #66eaad;
}
[data-whatinput=initial] .header__navigation-link-sub:hover:before {
  left: 0;
  right: 0;
}

@media (min-width: 640px) {
  .header__navigation-link-sub {
    font-size: 18px;
  }
}
.header__navigation-link-sub + .header__navigation-link-sub {
  margin-top: 8px;
}
.header__navigation-link-sub-sub {
  position: relative;
  transition-property: color;
  transition-duration: 0.15s;
  transition-timing-function: ease;
  border-bottom: 0 none;
  width: fit-content;
  padding: 0;
  margin: 4px 0;
  color: #c6c6c6;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
}
.header__navigation-link-sub-sub:before {
  content: "";
  position: absolute;
  background-color: #42e59a;
  transition-property: left, right;
  transition-duration: 0.15s;
  transition-timing-function: ease;
  height: 2px;
  bottom: -4px;
  left: 0;
  right: 101%;
}
[data-whatinput=keyboard][data-whatintent=mouse] .header__navigation-link-sub-sub:hover {
  color: #66eaad;
}
[data-whatinput=keyboard][data-whatintent=mouse] .header__navigation-link-sub-sub:hover:before {
  left: 0;
  right: 0;
}

[data-whatinput=mouse] .header__navigation-link-sub-sub:hover {
  color: #66eaad;
}
[data-whatinput=mouse] .header__navigation-link-sub-sub:hover:before {
  left: 0;
  right: 0;
}

[data-whatinput=initial] .header__navigation-link-sub-sub:hover {
  color: #66eaad;
}
[data-whatinput=initial] .header__navigation-link-sub-sub:hover:before {
  left: 0;
  right: 0;
}

.header__navigation-link-title {
  color: inherit;
}
.header__navigation-link-title--strong {
  font-weight: bold;
}
.header__navigation-link:hover {
  color: #42e59a;
}
.header__navigation-togglebutton {
  background-color: transparent;
  border: 0 none;
  width: 32px;
  height: 32px;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.header__navigation-togglebutton path {
  transition: fill 0.15s ease;
}
[data-whatinput=initial] .header__navigation-togglebutton:hover path,
[data-whatinput=initial] .header__navigation-togglebutton:hover polygon {
  fill: #42e59a;
}

[data-whatinput=keyboard][data-whatintent=mouse] .header__navigation-togglebutton:hover path,
[data-whatinput=keyboard][data-whatintent=mouse] .header__navigation-togglebutton:hover polygon {
  fill: #42e59a;
}

[data-whatinput=mouse] .header__navigation-togglebutton:hover path,
[data-whatinput=mouse] .header__navigation-togglebutton:hover polygon {
  fill: #42e59a;
}

.header__navigation-togglebutton:focus {
  outline: 4px solid rgb(66, 229, 154);
  outline-offset: 2px;
  background-color: rgba(66, 229, 154, 0.3);
}
.header__navigation-togglebutton:before {
  content: "";
  width: calc(100vw - 32px);
  height: 32px;
  right: 16px;
  background: transparent;
  position: absolute;
}
.header__navigation-togglebutton[aria-expanded=true] svg {
  rotate: 180deg;
}
@media (min-width: 640px) {
  .header__navigation-togglebutton {
    display: none;
  }
}
.header__navigation-iconlink {
  display: block;
  height: 100%;
}
.header__navigation-iconlink:focus {
  outline: 4px solid rgb(66, 229, 154);
  outline-offset: 2px;
  background-color: rgba(66, 229, 154, 0.3);
}
.header__navigation-icon-links {
  padding: 0;
  display: flex;
  justify-content: space-between;
  text-align: center;
  max-width: 608px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 24px;
}
.header__navigation-icon-links-item {
  width: 20%;
  position: relative;
  transition-property: color;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}
.header__navigation-icon-links-item:before {
  content: "";
  position: absolute;
  background-color: #00649e;
  transition-property: left, right;
  transition-duration: 0.15s;
  transition-timing-function: ease;
  height: 4px;
  bottom: -4px;
  left: 51%;
  right: 51%;
}
[data-whatinput=keyboard][data-whatintent=mouse] .header__navigation-icon-links-item:hover {
  color: #007ec7;
}
[data-whatinput=keyboard][data-whatintent=mouse] .header__navigation-icon-links-item:hover:before {
  left: -4px;
  right: -4px;
}

[data-whatinput=mouse] .header__navigation-icon-links-item:hover {
  color: #007ec7;
}
[data-whatinput=mouse] .header__navigation-icon-links-item:hover:before {
  left: -4px;
  right: -4px;
}

[data-whatinput=initial] .header__navigation-icon-links-item:hover {
  color: #007ec7;
}
[data-whatinput=initial] .header__navigation-icon-links-item:hover:before {
  left: -4px;
  right: -4px;
}

.header__navigation-heading {
  font-size: 20px;
  line-height: 24px;
  margin-bottom: 16px;
  margin-top: 32px;
  max-width: 740px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 32px;
}
@media (min-width: 640px) {
  .header__navigation-heading {
    font-size: 32px;
    line-height: 40px;
  }
}
@media (min-width: 1280px) {
  .header__navigation-heading {
    margin-top: 0;
  }
}
.header__navigation-heading--main-title {
  margin-top: 0;
  margin-bottom: 32px;
}
.header__togglebutton-wrapper {
  height: 24px;
}
@media (min-width: 1024px) {
  .header__togglebutton-wrapper {
    width: 6.875%;
    height: 32px;
  }
}
.header__togglebutton {
  height: 24px;
  width: auto;
  display: block;
  background: transparent;
  border: 0 none;
  padding: 0;
  aspect-ratio: 63/32;
}
.header__togglebutton svg {
  width: 100%;
  height: 100%;
}
.header__togglebutton svg .close {
  display: none;
}
@media (min-width: 1024px) {
  .header__togglebutton {
    height: 26px;
    padding: 3px;
    box-sizing: content-box;
  }
}
body.nav_open .header__togglebutton svg .close {
  display: block;
}
body.nav_open .header__togglebutton svg .burger {
  display: none;
}

@media (min-width: 1024px) {
  .header__togglebutton {
    height: 26px;
    padding-top: 3px;
    padding-bottom: 3px;
    box-sizing: content-box;
  }
}
.header__togglebutton path {
  transition: fill 0.15s ease;
}
[data-whatinput=initial] .header__togglebutton:hover path,
[data-whatinput=initial] .header__togglebutton:hover polygon {
  fill: #42e59a;
}

[data-whatinput=keyboard][data-whatintent=mouse] .header__togglebutton:hover path,
[data-whatinput=keyboard][data-whatintent=mouse] .header__togglebutton:hover polygon {
  fill: #42e59a;
}

[data-whatinput=mouse] .header__togglebutton:hover path,
[data-whatinput=mouse] .header__togglebutton:hover polygon {
  fill: #42e59a;
}

.header__togglebutton:focus {
  outline: 4px solid rgb(66, 229, 154);
  outline-offset: 2px;
  background-color: rgba(66, 229, 154, 0.3);
}
.header__search {
  width: 100%;
}
.header__search-wrapper {
  position: relative;
  margin-top: 24px;
  margin-bottom: 32px;
  max-width: 608px;
  margin-left: auto;
  margin-right: auto;
}
.header__search-submit {
  position: absolute;
  height: 32px;
  right: 0;
  top: 0;
  background-color: #121212;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  width: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 0 none;
}
.header__search-submit:focus {
  outline: 4px solid rgb(66, 229, 154);
  outline-offset: 2px;
  background-color: rgba(66, 229, 154, 0.3);
}
.header__search-submit:focus {
  background-color: #121212;
}
.header__search-submit .icon-search {
  width: 16px;
  height: 16px;
}
.header__search-submit .icon-search path {
  fill: rgb(255, 255, 255);
}
.header__search-input {
  padding-right: 72px;
  width: 100%;
}

.modal-login {
  border-radius: 4px;
  padding: 32px;
  max-width: 480px;
  width: 100%;
  margin-top: 32px;
  margin-bottom: 32px;
  margin-right: auto;
  margin-left: auto;
  background-color: rgb(255, 255, 255);
}
.modal-login .gform_title, .modal-login__heading {
  text-align: center;
  font-size: 26px;
  line-height: 32px;
  margin-bottom: 32px;
}
.modal-login .gform_description, .modal-login__description {
  margin-bottom: 32px;
  display: block;
  font-size: 16px;
  line-height: 24px;
}
.modal-login .gf_login_links {
  margin-top: 32px;
  display: flex;
}
.modal-login .gf_login_links br {
  display: none;
}
.modal-login .gf_login_links a {
  margin-right: 16px;
}
.modal-login .gf_login_links a:focus {
  outline: 1px solid rgb(66, 229, 154);
  outline-offset: 1px;
  background-color: rgba(66, 229, 154, 0.2);
}
.modal-login input {
  width: 100%;
  margin-bottom: 8px;
}

body.page-template-tmpl-forgot-password {
  background-color: #0f0f0f;
  color: rgb(255, 255, 255);
}
body.page-template-tmpl-forgot-password h1,
body.page-template-tmpl-forgot-password h2,
body.page-template-tmpl-forgot-password h3,
body.page-template-tmpl-forgot-password h4,
body.page-template-tmpl-forgot-password h5,
body.page-template-tmpl-forgot-password h6 {
  color: rgb(255, 255, 255);
}

.login-page {
  border-radius: 4px;
  padding: 32px;
  max-width: 480px;
  width: 100%;
  margin-top: 32px;
  margin-bottom: 32px;
  margin-right: auto;
  margin-left: auto;
}
.login-page .gform_title, .login-page__heading {
  text-align: center;
  font-size: 26px;
  line-height: 32px;
  margin-bottom: 32px;
}
.login-page .gform_description, .login-page__description {
  margin-bottom: 32px;
  display: block;
  font-size: 16px;
  line-height: 24px;
}
.login-page .gf_login_links {
  margin-top: 32px;
  display: flex;
}
.login-page .gf_login_links br {
  display: none;
}
.login-page .gf_login_links a {
  margin-right: 16px;
}
.login-page .gf_login_links a:focus {
  outline: 1px solid rgb(66, 229, 154);
  outline-offset: 1px;
  background-color: rgba(66, 229, 154, 0.2);
}
.login-page input {
  width: 100%;
  margin-bottom: 8px;
}

.profile {
  padding-left: 16px;
  padding-right: 16px;
  padding-bottom: 40px;
  padding-top: 56px;
}
.profile__wrapper {
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.profile__title {
  font-size: 32px;
  line-height: 40px;
}
.profile__title .icon {
  margin-right: 16px;
}
.profile__title svg path {
  fill: #42e59a;
}
.profile__courses-list {
  list-style-type: none;
  padding-left: 0;
  margin: 0;
}
.profile__course {
  padding: 16px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.profile__course:nth-child(2n-1) {
  background: #333333;
}
.profile__courses {
  margin-bottom: 24px;
}
@media (min-width: 1024px) {
  .profile__courses {
    margin-bottom: 64px;
  }
}
.profile__update-title svg path {
  fill: rgb(255, 255, 255);
}
.profile__course-title {
  width: 100%;
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
}
.profile__update-title {
  font-size: 32px;
  line-height: 40px;
}
.profile__update-title .icon {
  margin-right: 16px;
}
.profile .ginput_container_checkbox {
  margin-bottom: 32px;
}
.profile .ginput_container_checkbox .gfield {
  margin-top: 8px;
  margin-bottom: 8px;
}
.profile .ginput_container_checkbox .gfield_checkbox {
  display: grid;
  grid-row-gap: 8px;
}
@media (min-width: 640px) {
  .profile .ginput_container_checkbox .gfield_checkbox {
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 16px;
  }
}
.profile__logout-wrapper {
  margin-top: 40px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

body.page-template-tmpl-profile {
  background-color: #0f0f0f;
  color: rgb(255, 255, 255);
}
body.page-template-tmpl-profile h1,
body.page-template-tmpl-profile h2,
body.page-template-tmpl-profile h3,
body.page-template-tmpl-profile h4,
body.page-template-tmpl-profile h5,
body.page-template-tmpl-profile h6 {
  color: rgb(255, 255, 255);
}

body.page-template-tmpl-register {
  background: rgb(255, 255, 255);
  color: #121212;
}

.register {
  padding-left: 16px;
  padding-right: 16px;
  padding-bottom: 40px;
  padding-top: 56px;
}
.register .gform_title {
  color: #121212;
}
.register__wrapper {
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

body.page-template-tmpl-reset-password {
  background-color: #0f0f0f;
  color: rgb(255, 255, 255);
}

.reset-password-page {
  border-radius: 4px;
  padding: 32px;
  max-width: 480px;
  width: 100%;
  margin-top: 32px;
  margin-bottom: 32px;
  margin-right: auto;
  margin-left: auto;
  background-color: #0f0f0f;
}
.reset-password-page .gform_title, .reset-password-page__heading {
  text-align: center;
  font-size: 26px;
  line-height: 32px;
  margin-bottom: 32px;
}
.reset-password-page .gform_description, .reset-password-page__description {
  margin-bottom: 32px;
  display: block;
  font-size: 16px;
  line-height: 24px;
}
.reset-password-page .gf_login_links {
  margin-top: 32px;
  display: flex;
}
.reset-password-page .gf_login_links br {
  display: none;
}
.reset-password-page .gf_login_links a {
  margin-right: 16px;
}
.reset-password-page .gf_login_links a:focus {
  outline: 1px solid rgb(66, 229, 154);
  outline-offset: 1px;
  background-color: rgba(66, 229, 154, 0.2);
}
.reset-password-page input {
  width: 100%;
  margin-bottom: 8px;
}

.page-template-tmpl-article .tmpl-single .tmpl-single__wrapper {
  margin-top: 0;
}

@media (min-width: 1024px) {
  .tmpl-single {
    padding-bottom: 104px;
  }
}
.tmpl-single__content-wrapper {
  padding-left: 16px;
  padding-right: 16px;
}
@media (min-width: 768px) {
  .tmpl-single__content-wrapper {
    padding-left: 6.875vw;
    padding-right: 6.875vw;
  }
}
.tmpl-single__wrapper {
  padding-top: 48px;
  padding-bottom: 48px;
  position: relative;
  max-width: 1656px;
  margin-left: auto;
  margin-right: auto;
  color: rgb(255, 255, 255);
}
@media (min-width: 1024px) {
  .tmpl-single__wrapper {
    padding-bottom: 128px;
  }
}
.tmpl-single__wrapper:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100vw;
  left: 50%;
  transform: translateX(-50%);
  background-color: #0f0f0f;
  z-index: -1;
}
.tmpl-single__header {
  padding-left: 16px;
  padding-right: 16px;
  margin-bottom: 24px;
  max-width: 728px;
  margin-left: auto;
  margin-right: auto;
  grid-column: 1/span 4;
}
@media (min-width: 1024px) {
  .tmpl-single__header {
    grid-column: 2/span 10;
    margin-bottom: 32px;
    padding-left: 0;
    padding-right: 0;
  }
}
.tmpl-single__header-meta {
  width: 100%;
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 16px;
  color: #42e59a;
}
@media (min-width: 1024px) {
  .tmpl-single__header-meta {
    font-size: 18px;
  }
}
.tmpl-single__header-category {
  align-items: center;
  display: inline-block;
}
.tmpl-single__header-date {
  display: inline-block;
}
.tmpl-single__pageheading {
  font-size: 24px;
  line-height: 32px;
  color: rgb(255, 255, 255);
}
@media (min-width: 1024px) {
  .tmpl-single__pageheading {
    font-size: 40px;
    line-height: 48px;
    margin-bottom: 48px;
  }
}
.tmpl-single__image-wrapper {
  display: block;
  height: 240px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.tmpl-single__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.tmpl-single__content {
  grid-column: 1/span 4;
  padding-left: 16px;
  padding-right: 16px;
  max-width: 728px;
  margin-right: auto;
  margin-left: auto;
  font-family: "Poppins", sans-serif;
  word-break: break-word;
}
.tmpl-single__content .dark-block {
  margin-left: -16px;
  margin-right: -16px;
}
@media (min-width: 808px) {
  .tmpl-single__content .dark-block {
    width: 808px;
    margin-left: -104px;
    margin-right: 0;
    padding-left: 104px;
    padding-right: 104px;
  }
}
.tmpl-single__content .contains-video {
  margin-top: 64px;
  margin-bottom: 48px;
}
@media (min-width: 808px) {
  .tmpl-single__content .contains-video {
    margin-bottom: 64px;
    width: 808px;
    margin-left: -104px;
  }
}
.tmpl-single__content .wp-caption {
  max-width: 100%;
}
.tmpl-single__content img {
  max-width: 100%;
  height: auto;
}
.tmpl-single__content p.content-intro {
  font-size: 22px;
  line-height: 28px;
  font-weight: 600;
  margin-bottom: 28px;
}
.tmpl-single__author {
  max-width: 728px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
  display: flex;
  margin-bottom: 64px;
}
.tmpl-single__author-image {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  margin-right: 16px;
}
@media (min-width: 540px) {
  .tmpl-single__author-image {
    width: 192px;
    height: 192px;
  }
}
.tmpl-single__author-details-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.tmpl-single__author-detail {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  line-height: 24px;
}
.tmpl-single__author-details-title, .tmpl-single__author-details-name {
  font-size: 20px;
  font-weight: 600;
}
.tmpl-single__author-details-name {
  margin-bottom: 8px;
}
.tmpl-single__author-details-link {
  color: rgb(255, 255, 255);
  transition: color 0.2s ease;
}
.tmpl-single__author-details-link:hover {
  color: #42e59a;
}
.tmpl-single__post-tags {
  list-style-type: none;
  padding: 0;
  margin: 0;
  margin-bottom: 24px;
  max-width: 728px;
  margin-left: auto;
  margin-right: auto;
}
.tmpl-single__post-tag {
  display: inline-block;
  margin-right: 16px;
  margin-bottom: 16px;
}
.tmpl-single__post-tag-link {
  display: inline-block;
  color: rgb(255, 255, 255);
  background-color: #0f0f0f;
  border: 1px solid #42e59a;
  border-radius: 17px;
  line-height: 34px;
  padding-left: 16px;
  padding-right: 16px;
  font-size: 14px;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.tmpl-single__post-tag-link:focus {
  outline: 4px solid rgb(66, 229, 154);
  outline-offset: 2px;
  background-color: rgba(66, 229, 154, 0.3);
}
.tmpl-single__post-tag-link:hover {
  text-decoration: none;
  background-color: #42e59a;
  color: #0f0f0f;
}
.tmpl-single__related-posts-wrapper {
  margin-top: 64px;
}
.tmpl-single__related-posts {
  grid-column: 1/span 4;
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-row-gap: 16px;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  grid-auto-rows: auto;
  column-gap: 16px;
  row-gap: 32px;
  grid-auto-columns: 1fr;
}
@media (min-width: 540px) {
  .tmpl-single__related-posts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 768px) {
  .tmpl-single__related-posts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-column: 1/span 12;
    column-gap: 24px;
    row-gap: 48px;
  }
}
@media (min-width: 1024px) {
  .tmpl-single__related-posts {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media (min-width: 1600px) {
  .tmpl-single__related-posts {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}
.tmpl-single__related-posts-title {
  font-size: 20px;
  line-height: 32px;
  margin-right: 32px;
  margin-bottom: 0;
  font-weight: bold;
  position: relative;
  margin-bottom: 56px;
}
@media (min-width: 1024px) {
  .tmpl-single__related-posts-title {
    font-size: 24px;
    line-height: 32px;
  }
}
.tmpl-single__related-posts-title:after {
  content: "";
  height: 1px;
  width: 100%;
  max-width: 374px;
  background-color: rgb(255, 255, 255);
  position: absolute;
  left: 0;
  bottom: -12px;
}
.single-kokoelma:not(body) {
  margin-bottom: 80px;
}
main .single-kokoelma {
  padding-top: 0;
}
@media (min-width: 768px) {
  main .single-kokoelma {
    padding-top: 0;
  }
}

.single-kokoelma__wrapper {
  margin-left: 0;
  margin-right: 0;
  max-width: 1656px;
  padding-left: 16px;
  padding-right: 16px;
  max-width: 100%;
  padding-bottom: 32px;
  margin-bottom: 56px;
  padding-top: 32px;
}
@media (min-width: 768px) {
  .single-kokoelma__wrapper {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 768px) {
  .single-kokoelma__wrapper {
    padding-left: 6.875vw;
    padding-right: 6.875vw;
  }
}
@media (min-width: 768px) {
  .single-kokoelma__wrapper {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 88px;
    padding-top: 72px;
    padding-bottom: 56px;
  }
}
.single-kokoelma__image-wrapper {
  display: block;
  height: 240px;
  max-width: 100%;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 24px;
}
.single-kokoelma__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.single-kokoelma__title-wrapper {
  margin-left: 0;
  margin-right: 0;
  max-width: 1656px;
  padding-left: 16px;
  padding-right: 16px;
  max-width: 100%;
  padding-top: 32px;
}
@media (min-width: 768px) {
  .single-kokoelma__title-wrapper {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 768px) {
  .single-kokoelma__title-wrapper {
    padding-left: 6.875vw;
    padding-right: 6.875vw;
  }
}
@media (min-width: 768px) {
  .single-kokoelma__title-wrapper {
    padding-top: 72px;
  }
}
.single-kokoelma__title {
  grid-column: 1/span 4;
  font-size: 20px;
  line-height: 20px;
  font-weight: bold;
  max-width: 1656px;
  width: 100%;
  margin: 0 auto 24px;
  position: relative;
}
@media (min-width: 768px) {
  .single-kokoelma__title {
    padding: 0;
    grid-column: 2/span 10;
  }
}
@media (min-width: 1024px) {
  .single-kokoelma__title {
    grid-column: 1/span 12;
    font-size: 32px;
    line-height: 40px;
  }
}
.single-kokoelma__title:after {
  display: none;
  content: "";
  height: 1px;
  width: 70%;
  max-width: 374px;
  background-color: rgb(255, 255, 255);
  position: absolute;
  left: 0;
  bottom: -12px;
}
@media (min-width: 768px) {
  .single-kokoelma__title:after {
    display: block;
  }
}
.single-kokoelma__content {
  grid-column: 1/span 4;
  font-size: 16px;
  line-height: 24px;
  margin-top: 8px;
  margin-bottom: 24px;
  max-width: 1656px;
  width: 100%;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .single-kokoelma__content {
    font-size: 18px;
    grid-column: 1/span 12;
  }
}
@media (min-width: 1024px) {
  .single-kokoelma__content {
    grid-column: 1/span 12;
  }
}
.single-kokoelma__content * {
  max-width: 60ch;
}
.single-kokoelma__list {
  max-width: 1656px;
  list-style-type: none;
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  grid-auto-rows: auto;
  column-gap: 16px;
  row-gap: 32px;
  margin-bottom: 40px;
}
@media (min-width: 540px) {
  .single-kokoelma__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 768px) {
  .single-kokoelma__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-column: 1/span 12;
  }
}
@media (min-width: 1280px) {
  .single-kokoelma__list {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    column-gap: 24px;
    row-gap: 48px;
  }
}
.single-kokoelma__image {
  max-height: 360px;
  width: 100%;
  object-fit: cover;
  object-position: center center;
  max-width: 100%;
}
.single-kokoelma .pagination {
  grid-column: 1/span 4;
}
@media (min-width: 768px) {
  .single-kokoelma .pagination {
    grid-column: 2/span 10;
  }
}

.tmpl-single-kouluttaja {
  padding-left: 16px;
  padding-right: 16px;
}
@media (min-width: 768px) {
  .tmpl-single-kouluttaja {
    padding-left: 6.875vw;
    padding-right: 6.875vw;
  }
}
@media (min-width: 1024px) {
  .tmpl-single-kouluttaja {
    padding-bottom: 104px;
  }
}
.tmpl-single-kouluttaja__wrapper {
  margin-left: 0;
  margin-right: 0;
  max-width: 1656px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: auto;
  grid-column-gap: 16px;
  grid-auto-columns: 1fr;
  background-color: #0f0f0f;
  padding-top: 48px;
  padding-bottom: 48px;
  position: relative;
  max-width: 1656px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 8px;
  color: rgb(255, 255, 255);
}
@media (min-width: 768px) {
  .tmpl-single-kouluttaja__wrapper {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 768px) {
  .tmpl-single-kouluttaja__wrapper {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-column-gap: 24px;
  }
}
@media (min-width: 1024px) {
  .tmpl-single-kouluttaja__wrapper {
    padding-bottom: 64px;
    margin-top: 32px;
  }
}
.tmpl-single-kouluttaja__pageheading {
  font-size: 24px;
  line-height: 32px;
}
@media (min-width: 1024px) {
  .tmpl-single-kouluttaja__pageheading {
    font-size: 40px;
    line-height: 48px;
    margin-bottom: 48px;
  }
}
.tmpl-single-kouluttaja__image-wrapper {
  display: block;
  height: 240px;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
}
.tmpl-single-kouluttaja__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.tmpl-single-kouluttaja__content {
  grid-column: 1/span 4;
  font-size: 16px;
  line-height: 20px;
  margin-right: auto;
  margin-left: auto;
  font-family: "Poppins", sans-serif;
  word-break: break-word;
}
@media (min-width: 540px) {
  .tmpl-single-kouluttaja__content {
    font-size: 18px;
    line-height: 24px;
  }
}
@media (min-width: 768px) {
  .tmpl-single-kouluttaja__content {
    font-size: 20px;
  }
}
.tmpl-single-kouluttaja__content p,
.tmpl-single-kouluttaja__content li {
  margin-top: 20px;
  margin-bottom: 20px;
}
.tmpl-single-kouluttaja__author {
  max-width: 880px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
  margin-bottom: 64px;
  grid-column: 1/span 4;
  display: flex;
}
@media (min-width: 768px) {
  .tmpl-single-kouluttaja__author {
    padding-left: 0;
    padding-right: 0;
    grid-column: 2/span 10;
  }
}
.tmpl-single-kouluttaja__author-image {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  margin-right: 24px;
  margin-bottom: 16px;
}
@media (min-width: 540px) {
  .tmpl-single-kouluttaja__author-image {
    width: 120px;
    height: 120px;
  }
}
@media (min-width: 768px) {
  .tmpl-single-kouluttaja__author-image {
    width: 192px;
    height: 192px;
    margin-right: 40px;
    margin-bottom: 24px;
  }
}
@media (min-width: 1024px) {
  .tmpl-single-kouluttaja__author-image {
    width: 228px;
    height: 228px;
  }
}
.tmpl-single-kouluttaja__author-name {
  font-size: 28px;
  line-height: 32px;
  margin-bottom: 24px;
}
@media (min-width: 1024px) {
  .tmpl-single-kouluttaja__author-name {
    font-size: 40px;
    line-height: 48px;
  }
}
.tmpl-single-kouluttaja__author-contact-wrapper:empty {
  display: none;
}
.tmpl-single-kouluttaja__author-detail {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  line-height: 24px;
}
.tmpl-single-kouluttaja__author-details-title, .tmpl-single-kouluttaja__author-details-name {
  font-size: 20px;
  font-weight: 600;
}
.tmpl-single-kouluttaja__author-details-name {
  margin-bottom: 8px;
}
.tmpl-single-kouluttaja__author-contact-link {
  display: inline-block;
  margin-right: 12px;
}
.tmpl-single-kouluttaja__author-contact-link path {
  fill: rgb(255, 255, 255);
  transition: fill 0.2s ease;
}
.tmpl-single-kouluttaja__author-contact-link:hover {
  text-decoration: none;
}
.tmpl-single-kouluttaja__author-contact-link:hover path {
  fill: #42e59a;
}
.tmpl-single-kouluttaja__author-contact-link:focus {
  outline: 4px solid rgb(66, 229, 154);
  outline-offset: 2px;
  background-color: rgba(66, 229, 154, 0.3);
}
.tmpl-single-kouluttaja__related-posts-wrapper {
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
  margin-bottom: 64px;
  grid-column: 1/span 4;
  width: 100%;
}
@media (min-width: 768px) {
  .tmpl-single-kouluttaja__related-posts-wrapper {
    padding-left: 0;
    padding-right: 0;
    grid-column: 2/span 10;
  }
}
.tmpl-single-kouluttaja__related-posts {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  grid-auto-rows: auto;
  grid-column-gap: 16px;
  grid-row-gap: 32px;
  grid-auto-columns: 1fr;
  padding: 0;
  margin: 0;
  list-style-type: none;
}
@media (min-width: 540px) {
  .tmpl-single-kouluttaja__related-posts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 768px) {
  .tmpl-single-kouluttaja__related-posts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-column: 1/span 12;
  }
}
@media (min-width: 1280px) {
  .tmpl-single-kouluttaja__related-posts {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    column-gap: 24px;
    row-gap: 48px;
  }
}
.tmpl-single-kouluttaja__related-posts .single-lift-wrapper {
  grid-column: auto/span 1;
}
.tmpl-single-kouluttaja__related-posts .single-lift__title {
  font-size: 14px;
  line-height: 20px;
}
.tmpl-single-kouluttaja__related-posts .single-lift {
  min-height: 220px;
}
.tmpl-single-kouluttaja__related-posts-title {
  font-size: 20px;
  line-height: 32px;
  margin-right: 32px;
  margin-bottom: 56px;
  font-weight: bold;
  position: relative;
  grid-column: 1/span 12;
}
@media (min-width: 1024px) {
  .tmpl-single-kouluttaja__related-posts-title {
    font-size: 24px;
    line-height: 32px;
  }
}
.tmpl-single-kouluttaja__related-posts-title:after {
  content: "";
  height: 1px;
  width: 100%;
  max-width: 374px;
  background-color: rgb(255, 255, 255);
  position: absolute;
  left: 0;
  bottom: -12px;
}
.tmpl-single-kouluttaja .single-lift:hover .single-lift__title {
  text-decoration-color: rgb(255, 255, 255);
}
.tmpl-single-kouluttaja .single-lift__title {
  text-decoration-color: #0f0f0f;
}
.single-lift {
  background-size: cover;
  background-position: center;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  container-type: inline-size;
}
.single-lift:focus {
  outline: 4px solid rgb(66, 229, 154);
  outline-offset: 2px;
  background-color: rgba(66, 229, 154, 0.3);
}
.single-lift:hover {
  text-decoration: none;
}
.single-lift:hover .single-lift__img {
  scale: 1.05;
}
.single-lift:hover .single-lift__title {
  text-decoration-color: rgb(255, 255, 255);
  text-underline-offset: 2px;
}
@media (min-width: 540px) {
  .single-lift {
    min-height: 240px;
  }
}
.single-lift-wrapper .tag-link {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 100%;
}
@container (min-width: 230px) {}
.single-lift__title {
  position: relative;
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 0;
  color: rgb(255, 255, 255);
  text-decoration: none;
  word-wrap: break-word;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: #0f0f0f;
  text-underline-offset: 4px;
  transition: all 0.3s ease;
}
@media (min-width: 540px) {
  .single-lift__title {
    height: 40px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
}
.single-lift__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform-origin: 50% 50%;
  transition: opacity 400ms, scale 0.9s ease-in-out, rotate 0.7s ease-in !important;
  aspect-ratio: 16/9;
}
@media (min-width: 540px) {
  .single-lift__img {
    aspect-ratio: 312/384;
  }
}
.single-lift__img-wrapper {
  width: 100%;
  aspect-ratio: 16/9;
  height: auto;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 24px;
}
@media (min-width: 540px) {
  .single-lift__img-wrapper {
    aspect-ratio: 312/384;
  }
}
.single-lift__excerpt {
  color: #c6c6c6;
  font-size: 14px;
  line-height: 20px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
@media (min-width: 540px) {
  .single-lift__excerpt {
    height: 40px;
  }
}
.single-lift__details {
  display: block;
  position: relative;
  text-decoration: none;
  color: rgb(255, 255, 255);
  font-size: 11px;
  line-height: 16px;
}

.single-lift-wrapper {
  grid-column: auto/span 1;
  position: relative;
  grid-column: auto/span 1;
}
@media (min-width: 540px) {
  .single-lift-wrapper {
    grid-column: auto/span 1;
  }
}

.single-koulutus .background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 280px;
  background-size: cover;
  background-position: center;
  display: block;
}
.single-koulutus .background:after {
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  background: linear-gradient(180deg, rgba(15, 15, 15, 0) 0%, rgba(15, 15, 15, 0) 45%, rgba(15, 15, 15, 0.4094231443) 60%, rgba(15, 15, 15, 0.9528405112) 91%, rgb(15, 15, 15) 100%);
}

.koulutus {
  position: relative;
  padding-left: 16px;
  padding-right: 16px;
}
@media (min-width: 768px) {
  .koulutus {
    padding-left: 6.875vw;
    padding-right: 6.875vw;
  }
}
.koulutus__wrapper {
  margin-left: 0;
  margin-right: 0;
  max-width: 1656px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: auto;
  grid-column-gap: 16px;
  grid-auto-columns: 1fr;
  padding-top: 72px;
  padding-bottom: 32px;
  max-width: 1656px;
  margin-bottom: 56px;
}
@media (min-width: 768px) {
  .koulutus__wrapper {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 768px) {
  .koulutus__wrapper {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-column-gap: 24px;
  }
}
@media (min-width: 768px) {
  .koulutus__wrapper {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 88px;
    padding-top: 144px;
    padding-bottom: 56px;
  }
}
.koulutus__heading {
  grid-column: 1/span 4;
}
@media (min-width: 768px) {
  .koulutus__heading {
    grid-column: 1/span 8;
    display: none;
  }
}
.koulutus__heading-desktop {
  display: none;
}
@media (min-width: 768px) {
  .koulutus__heading-desktop {
    display: block;
    margin-bottom: 36px;
  }
}
.koulutus__title {
  font-size: 20px;
  line-height: 20px;
  margin-bottom: 16px;
  position: relative;
  padding-bottom: 12px;
  font-weight: bold;
}
@media (min-width: 1024px) {
  .koulutus__title {
    font-size: 32px;
    line-height: 40px;
  }
}
.koulutus__title:after {
  content: "";
  height: 2px;
  width: 100%;
  max-width: 374px;
  background-color: rgb(255, 255, 255);
  position: absolute;
  left: 0;
  bottom: 0;
}
.koulutus__producers, .koulutus__languages {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 40px;
}
@media (min-width: 1024px) {
  .koulutus__producers, .koulutus__languages {
    margin-bottom: 56px;
  }
}
.koulutus__main-content {
  grid-column: 1/span 4;
}
@media (min-width: 768px) {
  .koulutus__main-content {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-column-gap: 24px;
    grid-column: 1/span 12;
    display: grid;
  }
}
.koulutus__main-content-column {
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .koulutus__main-content-column {
    grid-column: 7/span 6;
    margin-bottom: 104px;
    grid-row: 1;
  }
}
@media (min-width: 768px) {
  .koulutus__main-content-column + .koulutus__main-content-column {
    grid-column: 1/span 6;
    margin-bottom: 104px;
  }
}
.koulutus__video-wrapper {
  margin-top: 16px;
  margin-bottom: 32px;
}
.koulutus__video-wrapper iframe {
  max-width: 100%;
}
@media (min-width: 768px) {
  .koulutus__video-wrapper {
    grid-column: 1/span 6;
    margin-top: 0;
  }
  .koulutus__video-wrapper iframe {
    width: 100%;
    aspect-ratio: 16/9;
    height: auto;
  }
}
.koulutus__contents-list {
  padding-left: 22px;
  margin-top: 16px;
  margin-bottom: 40px;
  font-size: 16px;
  line-height: 24px;
}
@media (min-width: 768px) {
  .koulutus__contents-list {
    margin-bottom: 0;
  }
}
.koulutus__contents-list-item {
  margin-bottom: 24px;
  max-width: 58ch;
}
.koulutus__contents-title {
  font-size: 20px;
  line-height: 32px;
  margin-right: 32px;
  margin-bottom: 16px;
  font-weight: bold;
  position: relative;
}
.koulutus__contents-title.button {
  background: transparent;
  border: 0 none;
  color: inherit;
  padding: 0;
  width: 100%;
  border-bottom: solid 1px white;
  display: flex;
  justify-content: space-between;
  padding-bottom: 4px;
  transition: color 0.15s ease;
}
.koulutus__contents-title.button:focus {
  outline: 4px solid rgb(66, 229, 154);
  outline-offset: 2px;
  background-color: rgba(66, 229, 154, 0.3);
}
.koulutus__contents-title.button svg polygon {
  transition: fill 0.15s ease;
}
.koulutus__contents-title.button:hover {
  color: #42e59a;
}
.koulutus__contents-title.button:hover svg polygon {
  fill: #42e59a;
}
.koulutus__contents-title.button .icon {
  line-height: inherit;
  font-size: 32px;
}
.koulutus__contents-title.button.open .icon {
  transform: scaleY(-1);
}
.koulutus__intro {
  margin-top: 0;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 32px;
  max-width: 60ch;
}
.koulutus__start-course {
  text-transform: uppercase;
  margin-right: 16px;
  margin-bottom: 16px;
}
@media (min-width: 1024px) {
  .koulutus__start-course {
    margin-bottom: 24px;
  }
}
.koulutus .btn.save-course {
  margin-bottom: 16px;
  background: #fff;
}
.koulutus .btn.save-course:hover {
  background-color: #42e59a;
}
@media (min-width: 1024px) {
  .koulutus .btn.save-course {
    margin-bottom: 24px;
  }
}
.koulutus__types-list {
  list-style-type: none;
  padding: 0;
  margin: 0 0 40px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
@media (min-width: 1024px) {
  .koulutus__types-list {
    margin-bottom: 56px;
  }
}
.koulutus__types-list-item {
  display: inline-block;
}
.koulutus__instructors {
  list-style-type: none;
  padding: 0;
  margin: 0 0 64px 0;
}
@media (min-width: 768px) {
  .koulutus__instructors {
    grid-column: 1/span 12;
  }
}
.koulutus__instructors-title {
  font-size: 20px;
  line-height: 32px;
  margin-right: 32px;
  margin-bottom: 56px;
  font-weight: bold;
  position: relative;
  grid-column: 1/span 12;
}
@media (min-width: 1024px) {
  .koulutus__instructors-title {
    font-size: 24px;
    line-height: 32px;
  }
}
.koulutus__instructors-title:after {
  content: "";
  height: 1px;
  width: 100%;
  max-width: 374px;
  background-color: rgb(255, 255, 255);
  position: absolute;
  left: 0;
  bottom: -12px;
}
.koulutus__instructors-list {
  padding: 0;
  margin: 0;
  margin-bottom: 56px;
  width: 100%;
  display: grid;
  flex-wrap: wrap;
  margin-left: auto;
  margin-right: auto;
  justify-content: space-between;
  column-gap: 16px;
  row-gap: 32px;
  grid-column: 1/span 4;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .koulutus__instructors-list {
    grid-column: 1/span 12;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 40px;
  }
}
@media (min-width: 1024px) {
  .koulutus__instructors-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 64px;
    margin-bottom: 56px;
  }
}
@media (min-width: 1280px) {
  .koulutus__instructors-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    column-gap: clamp(64px, 6.7vw, 128px);
    row-gap: 64px;
  }
}
.koulutus__instructor {
  width: 120px;
  display: inline-block;
  margin-right: 28px;
  margin-bottom: 24px;
  vertical-align: top;
}
.koulutus__instructor-link {
  color: rgb(255, 255, 255);
  text-align: center;
}
.koulutus__instructor-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: block;
  margin-bottom: 16px;
}
.koulutus__instructor-name {
  display: block;
  font-size: 16px;
  line-height: 20px;
  margin-top: auto;
}
.koulutus__related-content {
  grid-column: 1/span 4;
}
@media (min-width: 768px) {
  .koulutus__related-content {
    grid-column: 1/span 12;
  }
}
.koulutus__related-content-title {
  font-size: 20px;
  line-height: 32px;
  margin-right: 32px;
  margin-bottom: 56px;
  font-weight: bold;
  position: relative;
  grid-column: 1/span 12;
}
@media (min-width: 1024px) {
  .koulutus__related-content-title {
    font-size: 24px;
    line-height: 32px;
  }
}
.koulutus__related-content-title:after {
  content: "";
  height: 1px;
  width: 100%;
  max-width: 374px;
  background-color: rgb(255, 255, 255);
  position: absolute;
  left: 0;
  bottom: -12px;
}
.koulutus__related-content-list {
  list-style-type: none;
  padding: 0;
  margin-top: 0;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  grid-auto-rows: auto;
  column-gap: 16px;
  row-gap: 32px;
  grid-auto-columns: 1fr;
}
@media (min-width: 540px) {
  .koulutus__related-content-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 768px) {
  .koulutus__related-content-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-column: 1/span 12;
  }
}
@media (min-width: 1280px) {
  .koulutus__related-content-list {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    column-gap: 24px;
    row-gap: 48px;
  }
}
.koulutus__related-content-list .single-lift-wrapper {
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .koulutus__related-content-list .single-lift-wrapper {
    grid-column: auto/span 1;
  }
}
@media (min-width: 1024px) {
  .koulutus__related-content-list .single-lift-wrapper {
    min-height: 282px;
  }
}
@media (min-width: 1024px) {
  .koulutus__related-content-list .single-lift {
    min-height: 282px;
  }
}

.koulutus-v2 {
  position: relative;
}
.koulutus-v2__wrapper {
  margin-left: 0;
  margin-right: 0;
  max-width: 1656px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: auto;
  grid-column-gap: 16px;
  grid-auto-columns: 1fr;
  padding-left: 16px;
  padding-right: 16px;
  max-width: 100%;
  padding-top: 0;
  padding-bottom: 32px;
  margin-bottom: 56px;
}
@media (min-width: 768px) {
  .koulutus-v2__wrapper {
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 768px) {
  .koulutus-v2__wrapper {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-column-gap: 24px;
  }
}
@media (min-width: 768px) {
  .koulutus-v2__wrapper {
    padding-left: 6.875vw;
    padding-right: 6.875vw;
  }
}
@media (min-width: 768px) {
  .koulutus-v2__wrapper {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 88px;
    padding-bottom: 56px;
  }
}
@media (min-width: 1024px) {
  .koulutus-v2__wrapper {
    grid-column-gap: 36px;
  }
}
.koulutus-v2__heading {
  grid-column: 1/span 4;
}
@media (min-width: 768px) {
  .koulutus-v2__heading {
    grid-column: 1/span 8;
  }
}
.koulutus-v2__title {
  font-size: 20px;
  line-height: 20px;
  margin-bottom: 16px;
  position: relative;
  padding-bottom: 12px;
  font-weight: bold;
}
@media (min-width: 1024px) {
  .koulutus-v2__title {
    font-size: 32px;
    line-height: 40px;
  }
}
.koulutus-v2__title:after {
  content: "";
  height: 2px;
  width: 100%;
  max-width: 374px;
  background-color: rgb(255, 255, 255);
  position: absolute;
  left: 0;
  bottom: 0;
}
.koulutus-v2__producers, .koulutus-v2__languages {
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 40px;
}
@media (min-width: 1024px) {
  .koulutus-v2__producers, .koulutus-v2__languages {
    margin-bottom: 56px;
  }
}
.koulutus-v2__main-content {
  grid-column: 1/span 4;
  max-width: 1656px;
  margin: 0 auto;
  width: 100%;
}
@media (min-width: 768px) {
  .koulutus-v2__main-content {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-column-gap: 24px;
    grid-column: 1/span 12;
    display: grid;
  }
}
.koulutus-v2__main-content-column {
  padding-top: 40px;
  max-width: 588px;
  width: 100%;
  position: relative;
}
@media (min-width: 768px) {
  .koulutus-v2__main-content-column {
    grid-column: 1/span 6;
    grid-row: 1;
    margin-bottom: 64px;
  }
}
@media (min-width: 1024px) {
  .koulutus-v2__main-content-column {
    padding-top: 48px;
  }
}
@media (min-width: 1280px) {
  .koulutus-v2__main-content-column {
    padding-top: 56px;
  }
}
.koulutus-v2__main-content-column--no-padding {
  max-width: none;
  padding: 0 !important;
  position: relative;
}
@media (min-width: 768px) {
  .koulutus-v2__main-content-column--no-padding {
    grid-column: 5/span 8;
    width: calc(100% + 6.875vw);
  }
}
@media (min-width: 1830px) {
  .koulutus-v2__main-content-column--no-padding {
    width: 100%;
  }
}
.koulutus-v2__main-content-column--no-padding:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 15, 15, 0) 0%, rgba(15, 15, 15, 0) 43%, rgba(15, 15, 15, 0.4094231443) 78%, rgba(15, 15, 15, 0.9528405112) 91%, rgb(15, 15, 15) 100%);
}
@media (min-width: 768px) {
  .koulutus-v2__main-content-column--no-padding:after {
    background: linear-gradient(180deg, rgba(15, 15, 15, 0) 0%, rgba(15, 15, 15, 0) 43%, rgba(15, 15, 15, 0.1) 60%, rgba(15, 15, 15, 0.95) 94%, rgb(15, 15, 15) 100%), linear-gradient(90deg, rgb(15, 15, 15) 2%, rgba(15, 15, 15, 0.9) 7%, rgba(15, 15, 15, 0.5) 19%, rgba(255, 0, 0, 0) 40%);
  }
}
@media (min-width: 768px) {
  .koulutus-v2__image {
    object-fit: cover;
    height: 100%;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
}
.koulutus-v2__contents-list {
  padding-left: 22px;
  margin-top: 16px;
  margin-bottom: 40px;
  font-size: 16px;
  line-height: 24px;
}
.koulutus-v2__contents-list-item {
  margin-bottom: 24px;
  max-width: 58ch;
}
.koulutus-v2__contents-title {
  font-size: 20px;
  line-height: 32px;
  margin-right: 32px;
  margin-bottom: 16px;
  font-weight: bold;
  position: relative;
}
.koulutus-v2__contents-title.button {
  background: transparent;
  border: 0 none;
  color: inherit;
  padding: 0;
  width: 100%;
  border-bottom: solid 1px white;
  display: flex;
  justify-content: space-between;
  padding-bottom: 4px;
  transition: color 0.15s ease;
}
.koulutus-v2__contents-title.button:focus {
  outline: 4px solid rgb(66, 229, 154);
  outline-offset: 2px;
  background-color: rgba(66, 229, 154, 0.3);
}
.koulutus-v2__contents-title.button svg polygon {
  transition: fill 0.15s ease;
}
.koulutus-v2__contents-title.button:hover {
  color: #42e59a;
}
.koulutus-v2__contents-title.button:hover svg polygon {
  fill: #42e59a;
}
.koulutus-v2__contents-title.button .icon {
  line-height: inherit;
  font-size: 32px;
}
.koulutus-v2__contents-title.button.open .icon {
  transform: scaleY(-1);
}
.koulutus-v2__intro {
  margin-top: 0;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 40px;
  max-width: 60ch;
}
.koulutus-v2__start-course {
  margin-right: 16px;
  margin-bottom: 16px;
  text-transform: uppercase;
}
@media (min-width: 1024px) {
  .koulutus-v2__start-course {
    margin-bottom: 24px;
  }
}
.koulutus-v2 .btn.save-course {
  margin-bottom: 16px;
  background: #fff;
}
.koulutus-v2 .btn.save-course:hover {
  background-color: #42e59a;
}
@media (min-width: 1024px) {
  .koulutus-v2 .btn.save-course {
    margin-bottom: 24px;
  }
}
.koulutus-v2__types-list {
  list-style-type: none;
  padding: 0;
  margin: 0 0 40px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
@media (min-width: 1024px) {
  .koulutus-v2__types-list {
    margin-bottom: 56px;
  }
}
.koulutus-v2__types-list-item {
  display: inline-block;
}
.koulutus-v2__instructors {
  list-style-type: none;
  padding: 0;
  margin: 0 0 64px 0;
}
@media (min-width: 768px) {
  .koulutus-v2__instructors {
    grid-column: 1/span 12;
  }
}
.koulutus-v2__instructors-title {
  font-size: 20px;
  line-height: 32px;
  margin-right: 32px;
  margin-bottom: 56px;
  font-weight: bold;
  position: relative;
  grid-column: 1/span 12;
}
@media (min-width: 1024px) {
  .koulutus-v2__instructors-title {
    font-size: 24px;
    line-height: 32px;
  }
}
.koulutus-v2__instructors-title:after {
  content: "";
  height: 1px;
  width: 100%;
  max-width: 374px;
  background-color: rgb(255, 255, 255);
  position: absolute;
  left: 0;
  bottom: -12px;
}
.koulutus-v2__instructors-list {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  padding: 0;
  margin: 0;
  grid-column: 1/span 12;
  row-gap: 16px;
  column-gap: 32px;
  margin-bottom: 56px;
}
.koulutus-v2__instructors-list .kouluttaja-lift__wrapper {
  grid-column: auto/span 3;
}
.koulutus-v2__instructor {
  width: 120px;
  display: inline-block;
  margin-right: 28px;
  margin-bottom: 24px;
  vertical-align: top;
}
.koulutus-v2__instructor-link {
  color: rgb(255, 255, 255);
  text-align: center;
}
.koulutus-v2__instructor-image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: block;
  margin-bottom: 16px;
}
.koulutus-v2__instructor-name {
  display: block;
  font-size: 16px;
  line-height: 20px;
  margin-top: auto;
}
.koulutus-v2__related-content {
  grid-column: 1/span 4;
  max-width: 1656px;
  margin: 0 auto;
  width: 100%;
}
@media (min-width: 768px) {
  .koulutus-v2__related-content {
    grid-column: 1/span 12;
  }
}
.koulutus-v2__related-content-title {
  font-size: 20px;
  line-height: 32px;
  margin-right: 32px;
  margin-bottom: 56px;
  font-weight: bold;
  position: relative;
  grid-column: 1/span 12;
}
@media (min-width: 1024px) {
  .koulutus-v2__related-content-title {
    font-size: 24px;
    line-height: 32px;
  }
}
.koulutus-v2__related-content-title:after {
  content: "";
  height: 1px;
  width: 100%;
  max-width: 374px;
  background-color: rgb(255, 255, 255);
  position: absolute;
  left: 0;
  bottom: -12px;
}
.koulutus-v2__related-content-list {
  list-style-type: none;
  padding: 0;
  margin-top: 0;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  grid-auto-rows: auto;
  column-gap: 16px;
  row-gap: 32px;
  grid-auto-columns: 1fr;
}
@media (min-width: 540px) {
  .koulutus-v2__related-content-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 768px) {
  .koulutus-v2__related-content-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-column: 1/span 12;
  }
}
@media (min-width: 1280px) {
  .koulutus-v2__related-content-list {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    column-gap: 24px;
    row-gap: 48px;
  }
}
.koulutus-v2__related-content-list .single-lift-wrapper {
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .koulutus-v2__related-content-list .single-lift-wrapper {
    grid-column: auto/span 1;
  }
}
@media (min-width: 1024px) {
  .koulutus-v2__related-content-list .single-lift-wrapper {
    min-height: 282px;
  }
}
@media (min-width: 1024px) {
  .koulutus-v2__related-content-list .single-lift {
    min-height: 282px;
  }
}

.icon-eoppiva-path {
  fill: rgb(255, 255, 255);
}

.icon-facebook path {
  fill: rgb(255, 255, 255);
}

.icon-linkedin path {
  fill: rgb(255, 255, 255);
}

.icon-instagram path {
  fill: rgb(255, 255, 255);
}

.icon-kannu path {
  fill: rgb(255, 255, 255);
}

.icon-profile-path {
  fill: rgb(255, 255, 255);
}

.icon-search-thick-path {
  fill: rgb(255, 255, 255);
}

.icon-twitter path {
  fill: rgb(255, 255, 255);
}

.icon-user path {
  fill: #121212;
}

.tag-link {
  display: inline-block;
  color: rgb(255, 255, 255);
  background-color: #0f0f0f;
  border: 1px solid #42e59a;
  border-radius: 17px;
  line-height: 34px;
  padding-left: 16px;
  padding-right: 16px;
  font-size: 14px;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.tag-link:focus {
  outline: 4px solid rgb(66, 229, 154);
  outline-offset: 2px;
  background-color: rgba(66, 229, 154, 0.3);
}
.tag-link:hover {
  text-decoration: none;
  background-color: #42e59a;
  color: #0f0f0f;
}
