@charset "UTF-8";/*!
 * animate.css - https://animate.style/
 * Version - 4.1.1
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2020 Animate.css
 */
:root {
  --animate-duration: 1s;
  --animate-delay: 1s;
  --animate-repeat: 1;
}
.animate__animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-duration: var(--animate-duration);
  animation-duration: var(--animate-duration);
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.animate__animated.animate__infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
.animate__animated.animate__repeat-1 {
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-iteration-count: var(--animate-repeat);
  animation-iteration-count: var(--animate-repeat);
}
.animate__animated.animate__repeat-2 {
  -webkit-animation-iteration-count: calc(1 * 2);
  animation-iteration-count: calc(1 * 2);
  -webkit-animation-iteration-count: calc(var(--animate-repeat) * 2);
  animation-iteration-count: calc(var(--animate-repeat) * 2);
}
.animate__animated.animate__repeat-3 {
  -webkit-animation-iteration-count: calc(1 * 3);
  animation-iteration-count: calc(1 * 3);
  -webkit-animation-iteration-count: calc(var(--animate-repeat) * 3);
  animation-iteration-count: calc(var(--animate-repeat) * 3);
}
.animate__animated.animate__delay-1s {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
  -webkit-animation-delay: var(--animate-delay);
  animation-delay: var(--animate-delay);
}
.animate__animated.animate__delay-2s {
  -webkit-animation-delay: calc(1s * 2);
  animation-delay: calc(1s * 2);
  -webkit-animation-delay: calc(var(--animate-delay) * 2);
  animation-delay: calc(var(--animate-delay) * 2);
}
.animate__animated.animate__delay-3s {
  -webkit-animation-delay: calc(1s * 3);
  animation-delay: calc(1s * 3);
  -webkit-animation-delay: calc(var(--animate-delay) * 3);
  animation-delay: calc(var(--animate-delay) * 3);
}
.animate__animated.animate__delay-4s {
  -webkit-animation-delay: calc(1s * 4);
  animation-delay: calc(1s * 4);
  -webkit-animation-delay: calc(var(--animate-delay) * 4);
  animation-delay: calc(var(--animate-delay) * 4);
}
.animate__animated.animate__delay-5s {
  -webkit-animation-delay: calc(1s * 5);
  animation-delay: calc(1s * 5);
  -webkit-animation-delay: calc(var(--animate-delay) * 5);
  animation-delay: calc(var(--animate-delay) * 5);
}
.animate__animated.animate__faster {
  -webkit-animation-duration: calc(1s / 2);
  animation-duration: calc(1s / 2);
  -webkit-animation-duration: calc(var(--animate-duration) / 2);
  animation-duration: calc(var(--animate-duration) / 2);
}
.animate__animated.animate__fast {
  -webkit-animation-duration: calc(1s * 0.8);
  animation-duration: calc(1s * 0.8);
  -webkit-animation-duration: calc(var(--animate-duration) * 0.8);
  animation-duration: calc(var(--animate-duration) * 0.8);
}
.animate__animated.animate__slow {
  -webkit-animation-duration: calc(1s * 2);
  animation-duration: calc(1s * 2);
  -webkit-animation-duration: calc(var(--animate-duration) * 2);
  animation-duration: calc(var(--animate-duration) * 2);
}
.animate__animated.animate__slower {
  -webkit-animation-duration: calc(1s * 3);
  animation-duration: calc(1s * 3);
  -webkit-animation-duration: calc(var(--animate-duration) * 3);
  animation-duration: calc(var(--animate-duration) * 3);
}
@media print, (prefers-reduced-motion: reduce) {
  .animate__animated {
    -webkit-animation-duration: 1ms !important;
    animation-duration: 1ms !important;
    -webkit-transition-duration: 1ms !important;
    transition-duration: 1ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
  }

  .animate__animated[class*='Out'] {
    opacity: 0;
  }
}
/* Attention seekers  */
@-webkit-keyframes bounce {
  from,
  20%,
  53%,
  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) scaleY(1.1);
    transform: translate3d(0, -30px, 0) scaleY(1.1);
  }

  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) scaleY(1.05);
    transform: translate3d(0, -15px, 0) scaleY(1.05);
  }

  80% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0) scaleY(0.95);
    transform: translate3d(0, 0, 0) scaleY(0.95);
  }

  90% {
    -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}
@keyframes bounce {
  from,
  20%,
  53%,
  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) scaleY(1.1);
    transform: translate3d(0, -30px, 0) scaleY(1.1);
  }

  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) scaleY(1.05);
    transform: translate3d(0, -15px, 0) scaleY(1.05);
  }

  80% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0) scaleY(0.95);
    transform: translate3d(0, 0, 0) scaleY(0.95);
  }

  90% {
    -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}
.animate__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;
  }
}
.animate__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);
  }
}
.animate__pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}
@-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);
  }
}
.animate__rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}
@-webkit-keyframes shakeX {
  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 shakeX {
  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);
  }
}
.animate__shakeX {
  -webkit-animation-name: shakeX;
  animation-name: shakeX;
}
@-webkit-keyframes shakeY {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

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

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
}
@keyframes shakeY {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

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

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
}
.animate__shakeY {
  -webkit-animation-name: shakeY;
  animation-name: shakeY;
}
@-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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__heartBeat {
  -webkit-animation-name: heartBeat;
  animation-name: heartBeat;
  -webkit-animation-duration: calc(1s * 1.3);
  animation-duration: calc(1s * 1.3);
  -webkit-animation-duration: calc(var(--animate-duration) * 1.3);
  animation-duration: calc(var(--animate-duration) * 1.3);
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}
/* Back entrances */
@-webkit-keyframes backInDown {
  0% {
    -webkit-transform: translateY(-1200px) scale(0.7);
    transform: translateY(-1200px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInDown {
  0% {
    -webkit-transform: translateY(-1200px) scale(0.7);
    transform: translateY(-1200px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInDown {
  -webkit-animation-name: backInDown;
  animation-name: backInDown;
}
@-webkit-keyframes backInLeft {
  0% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInLeft {
  0% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInLeft {
  -webkit-animation-name: backInLeft;
  animation-name: backInLeft;
}
@-webkit-keyframes backInRight {
  0% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInRight {
  0% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInRight {
  -webkit-animation-name: backInRight;
  animation-name: backInRight;
}
@-webkit-keyframes backInUp {
  0% {
    -webkit-transform: translateY(1200px) scale(0.7);
    transform: translateY(1200px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInUp {
  0% {
    -webkit-transform: translateY(1200px) scale(0.7);
    transform: translateY(1200px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInUp {
  -webkit-animation-name: backInUp;
  animation-name: backInUp;
}
/* Back exits */
@-webkit-keyframes backOutDown {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateY(700px) scale(0.7);
    transform: translateY(700px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutDown {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateY(700px) scale(0.7);
    transform: translateY(700px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutDown {
  -webkit-animation-name: backOutDown;
  animation-name: backOutDown;
}
@-webkit-keyframes backOutLeft {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutLeft {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutLeft {
  -webkit-animation-name: backOutLeft;
  animation-name: backOutLeft;
}
@-webkit-keyframes backOutRight {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutRight {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutRight {
  -webkit-animation-name: backOutRight;
  animation-name: backOutRight;
}
@-webkit-keyframes backOutUp {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateY(-700px) scale(0.7);
    transform: translateY(-700px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutUp {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateY(-700px) scale(0.7);
    transform: translateY(-700px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutUp {
  -webkit-animation-name: backOutUp;
  animation-name: backOutUp;
}
/* Bouncing entrances  */
@-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);
  }
}
.animate__bounceIn {
  -webkit-animation-duration: calc(1s * 0.75);
  animation-duration: calc(1s * 0.75);
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -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) scaleY(3);
    transform: translate3d(0, -3000px, 0) scaleY(3);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0) scaleY(0.9);
    transform: translate3d(0, 25px, 0) scaleY(0.9);
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.95);
    transform: translate3d(0, -10px, 0) scaleY(0.95);
  }

  90% {
    -webkit-transform: translate3d(0, 5px, 0) scaleY(0.985);
    transform: translate3d(0, 5px, 0) scaleY(0.985);
  }

  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) scaleY(3);
    transform: translate3d(0, -3000px, 0) scaleY(3);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0) scaleY(0.9);
    transform: translate3d(0, 25px, 0) scaleY(0.9);
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.95);
    transform: translate3d(0, -10px, 0) scaleY(0.95);
  }

  90% {
    -webkit-transform: translate3d(0, 5px, 0) scaleY(0.985);
    transform: translate3d(0, 5px, 0) scaleY(0.985);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__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) scaleX(3);
    transform: translate3d(-3000px, 0, 0) scaleX(3);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0) scaleX(1);
    transform: translate3d(25px, 0, 0) scaleX(1);
  }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0) scaleX(0.98);
    transform: translate3d(-10px, 0, 0) scaleX(0.98);
  }

  90% {
    -webkit-transform: translate3d(5px, 0, 0) scaleX(0.995);
    transform: translate3d(5px, 0, 0) scaleX(0.995);
  }

  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) scaleX(3);
    transform: translate3d(-3000px, 0, 0) scaleX(3);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0) scaleX(1);
    transform: translate3d(25px, 0, 0) scaleX(1);
  }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0) scaleX(0.98);
    transform: translate3d(-10px, 0, 0) scaleX(0.98);
  }

  90% {
    -webkit-transform: translate3d(5px, 0, 0) scaleX(0.995);
    transform: translate3d(5px, 0, 0) scaleX(0.995);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__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) scaleX(3);
    transform: translate3d(3000px, 0, 0) scaleX(3);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0) scaleX(1);
    transform: translate3d(-25px, 0, 0) scaleX(1);
  }

  75% {
    -webkit-transform: translate3d(10px, 0, 0) scaleX(0.98);
    transform: translate3d(10px, 0, 0) scaleX(0.98);
  }

  90% {
    -webkit-transform: translate3d(-5px, 0, 0) scaleX(0.995);
    transform: translate3d(-5px, 0, 0) scaleX(0.995);
  }

  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) scaleX(3);
    transform: translate3d(3000px, 0, 0) scaleX(3);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0) scaleX(1);
    transform: translate3d(-25px, 0, 0) scaleX(1);
  }

  75% {
    -webkit-transform: translate3d(10px, 0, 0) scaleX(0.98);
    transform: translate3d(10px, 0, 0) scaleX(0.98);
  }

  90% {
    -webkit-transform: translate3d(-5px, 0, 0) scaleX(0.995);
    transform: translate3d(-5px, 0, 0) scaleX(0.995);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__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) scaleY(5);
    transform: translate3d(0, 3000px, 0) scaleY(5);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }

  75% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.95);
    transform: translate3d(0, 10px, 0) scaleY(0.95);
  }

  90% {
    -webkit-transform: translate3d(0, -5px, 0) scaleY(0.985);
    transform: translate3d(0, -5px, 0) scaleY(0.985);
  }

  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) scaleY(5);
    transform: translate3d(0, 3000px, 0) scaleY(5);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }

  75% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.95);
    transform: translate3d(0, 10px, 0) scaleY(0.95);
  }

  90% {
    -webkit-transform: translate3d(0, -5px, 0) scaleY(0.985);
    transform: translate3d(0, -5px, 0) scaleY(0.985);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}
/* Bouncing exits  */
@-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);
  }
}
.animate__bounceOut {
  -webkit-animation-duration: calc(1s * 0.75);
  animation-duration: calc(1s * 0.75);
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}
@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.985);
    transform: translate3d(0, 10px, 0) scaleY(0.985);
  }

  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0) scaleY(3);
    transform: translate3d(0, 2000px, 0) scaleY(3);
  }
}
@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.985);
    transform: translate3d(0, 10px, 0) scaleY(0.985);
  }

  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0) scaleY(3);
    transform: translate3d(0, 2000px, 0) scaleY(3);
  }
}
.animate__bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}
@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0) scaleX(0.9);
    transform: translate3d(20px, 0, 0) scaleX(0.9);
  }

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

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0) scaleX(2);
    transform: translate3d(-2000px, 0, 0) scaleX(2);
  }
}
.animate__bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}
@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0) scaleX(0.9);
    transform: translate3d(-20px, 0, 0) scaleX(0.9);
  }

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

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0) scaleX(2);
    transform: translate3d(2000px, 0, 0) scaleX(2);
  }
}
.animate__bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}
@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.985);
    transform: translate3d(0, -10px, 0) scaleY(0.985);
  }

  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0) scaleY(0.9);
    transform: translate3d(0, 20px, 0) scaleY(0.9);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0) scaleY(3);
    transform: translate3d(0, -2000px, 0) scaleY(3);
  }
}
@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.985);
    transform: translate3d(0, -10px, 0) scaleY(0.985);
  }

  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0) scaleY(0.9);
    transform: translate3d(0, 20px, 0) scaleY(0.9);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0) scaleY(3);
    transform: translate3d(0, -2000px, 0) scaleY(3);
  }
}
.animate__bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}
/* Fading entrances  */
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

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

  to {
    opacity: 1;
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}
@-webkit-keyframes fadeInTopLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInTopLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInTopLeft {
  -webkit-animation-name: fadeInTopLeft;
  animation-name: fadeInTopLeft;
}
@-webkit-keyframes fadeInTopRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInTopRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInTopRight {
  -webkit-animation-name: fadeInTopRight;
  animation-name: fadeInTopRight;
}
@-webkit-keyframes fadeInBottomLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInBottomLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInBottomLeft {
  -webkit-animation-name: fadeInBottomLeft;
  animation-name: fadeInBottomLeft;
}
@-webkit-keyframes fadeInBottomRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInBottomRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInBottomRight {
  -webkit-animation-name: fadeInBottomRight;
  animation-name: fadeInBottomRight;
}
/* Fading exits */
@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }

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

  to {
    opacity: 0;
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}
@-webkit-keyframes fadeOutTopLeft {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
}
@keyframes fadeOutTopLeft {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
}
.animate__fadeOutTopLeft {
  -webkit-animation-name: fadeOutTopLeft;
  animation-name: fadeOutTopLeft;
}
@-webkit-keyframes fadeOutTopRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
}
@keyframes fadeOutTopRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
}
.animate__fadeOutTopRight {
  -webkit-animation-name: fadeOutTopRight;
  animation-name: fadeOutTopRight;
}
@-webkit-keyframes fadeOutBottomRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
}
@keyframes fadeOutBottomRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
}
.animate__fadeOutBottomRight {
  -webkit-animation-name: fadeOutBottomRight;
  animation-name: fadeOutBottomRight;
}
@-webkit-keyframes fadeOutBottomLeft {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
}
@keyframes fadeOutBottomLeft {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
}
.animate__fadeOutBottomLeft {
  -webkit-animation-name: fadeOutBottomLeft;
  animation-name: fadeOutBottomLeft;
}
/* Flippers */
@-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;
  }
}
.animate__animated.animate__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);
  }
}
.animate__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);
  }
}
.animate__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;
  }
}
.animate__flipOutX {
  -webkit-animation-duration: calc(1s * 0.75);
  animation-duration: calc(1s * 0.75);
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -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;
  }
}
.animate__flipOutY {
  -webkit-animation-duration: calc(1s * 0.75);
  animation-duration: calc(1s * 0.75);
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}
/* Lightspeed */
@-webkit-keyframes lightSpeedInRight {
  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 lightSpeedInRight {
  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);
  }
}
.animate__lightSpeedInRight {
  -webkit-animation-name: lightSpeedInRight;
  animation-name: lightSpeedInRight;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}
@-webkit-keyframes lightSpeedInLeft {
  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 lightSpeedInLeft {
  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);
  }
}
.animate__lightSpeedInLeft {
  -webkit-animation-name: lightSpeedInLeft;
  animation-name: lightSpeedInLeft;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}
@-webkit-keyframes lightSpeedOutRight {
  from {
    opacity: 1;
  }

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

  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.animate__lightSpeedOutRight {
  -webkit-animation-name: lightSpeedOutRight;
  animation-name: lightSpeedOutRight;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}
@-webkit-keyframes lightSpeedOutLeft {
  from {
    opacity: 1;
  }

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

  to {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(-30deg);
    transform: translate3d(-100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
}
.animate__lightSpeedOutLeft {
  -webkit-animation-name: lightSpeedOutLeft;
  animation-name: lightSpeedOutLeft;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}
/* Rotating entrances */
@-webkit-keyframes rotateIn {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
  -webkit-transform-origin: center;
  transform-origin: center;
}
@-webkit-keyframes rotateInDownLeft {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}
@-webkit-keyframes rotateInDownRight {
  from {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}
@-webkit-keyframes rotateInUpLeft {
  from {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}
@-webkit-keyframes rotateInUpRight {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}
/* Rotating exits */
@-webkit-keyframes rotateOut {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
@keyframes rotateOut {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
.animate__rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
  -webkit-transform-origin: center;
  transform-origin: center;
}
@-webkit-keyframes rotateOutDownLeft {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownLeft {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
.animate__rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}
@-webkit-keyframes rotateOutDownRight {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownRight {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.animate__rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}
@-webkit-keyframes rotateOutUpLeft {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpLeft {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.animate__rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}
@-webkit-keyframes rotateOutUpRight {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpRight {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
.animate__rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}
/* Specials */
@-webkit-keyframes hinge {
  0% {
    -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-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-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-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-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-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;
  }
}
.animate__hinge {
  -webkit-animation-duration: calc(1s * 2);
  animation-duration: calc(1s * 2);
  -webkit-animation-duration: calc(var(--animate-duration) * 2);
  animation-duration: calc(var(--animate-duration) * 2);
  -webkit-animation-name: hinge;
  animation-name: hinge;
  -webkit-transform-origin: top left;
  transform-origin: top left;
}
@-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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}
/* Zooming entrances */
@-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;
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}
/* Zooming exits */
@-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;
  }
}
.animate__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-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-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}
@-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);
  }
}
@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);
  }
}
.animate__zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
  -webkit-transform-origin: left center;
  transform-origin: left center;
}
@-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);
  }
}
@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);
  }
}
.animate__zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
  -webkit-transform-origin: right center;
  transform-origin: right center;
}
@-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-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-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}
/* Sliding entrances */
@-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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}
/* Sliding exits */
@-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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__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);
  }
}
.animate__slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

@media only screen and (min-width:1024px){.hide-desktop{display:none!important}}@media screen and (max-width:1023px){.hide-mobile{display:none!important}}/*! normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}h1{font-size:2em;margin:.67em 0}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}picture{align-items:center;display:flex;justify-content:center}img{border-style:none;max-width:100%}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}[hidden],template{display:none}blockquote,body,dd,dl,dt,fieldset,figure,form,h1,h2,h3,h4,h5,h6,hr,html,iframe,legend,li,ol,p,pre,textarea,ul{margin:0;padding:0;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased}html{box-sizing:border-box;scroll-behavior:smooth}body{display:flex;flex-direction:column;font-family:Source Sans Pro,sans-serif;min-height:100vh}#content{flex:1}*,:after,:before{box-sizing:inherit}button{cursor:pointer}.alignleft{float:left;margin-bottom:10px;margin-right:10px}.alignright{float:right;margin-bottom:10px;margin-left:10px}.aligncenter{left:50%;transform:translateX(-50%)}.aligncenter img,img.aligncenter{height:auto!important;width:100%!important}.wp-caption{background:#fff;border-radius:4px;box-shadow:0 3px 5px rgba(0,0,0,.1);margin-bottom:30px;margin-top:30px;max-width:100%;padding:15px}.wp-caption img{border-radius:2px}.wp-caption-text{background:#fff;margin:0;padding-top:15px}.adspirit_headline{font-size:1.2rem;line-height:2rem;margin-bottom:.4rem;text-align:center}@media only screen and (min-width:1024px){.adspirit_headline{font-size:1.6rem;line-height:2rem}}@media only screen and (min-width:768px){.adspirit_headline{margin-bottom:1rem}}.social-grid{gap:var(--wp--preset--spacing--s);grid-template-columns:repeat(4,minmax(0,1fr))}.social-grid .b-cta{padding:0!important}.boxes-grid{gap:var(--wp--preset--spacing--s);grid-template-columns:repeat(2,minmax(0,1fr))}@media (max-width:60rem){.is-layout-grid:not(.social-grid){grid-template-columns:1fr!important}}.form__input{background-color:#fff;border:none;border-radius:0;display:inline-block;font-size:1.5rem;line-height:2rem;padding:1.8rem}@media only screen and (min-width:1024px){.form__input{font-size:1.5rem;line-height:2rem}}.form__submit{background-color:#212121;border:none;border-radius:0;color:#fff;cursor:pointer;display:inline-block;font-size:1.8rem;font-weight:700;line-height:1.8rem;padding:1.8rem;width:100%}@media only screen and (min-width:1024px){.form__submit{font-size:1.8rem;line-height:1.8rem}}@media only screen and (min-width:768px){.form__submit{width:auto}}.site-header{background-color:#fff;z-index:999}.site-header:after{content:"";display:block}.site-header__fixedmenu__inner,.site-header__topmenu{align-items:center;margin-left:auto;margin-right:auto;max-width:120rem;padding-left:2rem;padding-right:2rem}@media only screen and (min-width:768px){.site-header__fixedmenu__inner,.site-header__topmenu{padding-left:4rem;padding-right:4rem}}.site-header__topmenu{display:none;justify-content:space-between;position:relative}@media only screen and (min-width:768px){.site-header__topmenu{display:flex;height:7rem}}.site-header__topmenu:after{border-bottom:1px solid #bdbdbd;bottom:0;content:"";left:2rem;position:absolute;right:2rem}@media only screen and (min-width:768px){.site-header__topmenu:after{left:4rem;right:4rem}}.site-header__topmenu__logo img{width:20rem}@media only screen and (min-width:768px){.site-header__topmenu__logo img{width:30rem;width:35rem}}.site-header__topmenu__menu{align-items:center;display:flex;gap:2rem}.site-header__topmenu__menu__item{height:2.5rem;width:2.5rem}.site-header__topmenu__menu__item:hover{opacity:.7}.site-header__topmenu__menu__item i{color:#b0bec5;font-size:2.5rem}.site-header__topmenu__menu__item img{height:100%;width:100%}@media only screen and (min-width:768px){.site-header__topmenu__menu__item span{display:none}}.site-header__fixedmenu{background-color:#fff;transform:translateY(0);transition:transform .3s ease-in-out}.site-header__fixedmenu__inner{display:flex;gap:2rem;height:5rem}@media only screen and (min-width:768px){.site-header__fixedmenu__inner{height:7rem;justify-content:space-between}}.site-header__fixedmenu__inner>a:first-child{flex:1}@media only screen and (min-width:768px){.site-header__fixedmenu__logo{display:none}}.site-header__fixedmenu__logo img{width:8rem}@media only screen and (min-width:768px){.site-header__fixedmenu__logo img{width:10rem}}.site-header__fixedmenu nav>ul>li a{border-bottom:none;color:#212121;font-size:1.5rem;font-weight:400;letter-spacing:.1rem;line-height:2.2rem;text-transform:uppercase}@media only screen and (min-width:1024px){.site-header__fixedmenu nav>ul>li a{font-size:1.5rem;line-height:2.2rem}}.site-header.--fixed:after{content:"";display:block;height:5rem}@media only screen and (min-width:768px){.site-header.--fixed:after{height:7rem}}.site-header.--fixed .site-header__fixedmenu{bottom:100%;left:0;position:fixed;right:0;transform:translateY(100%);z-index:1}.site-header.--fixed .site-header__fixedmenu__logo{display:block}@media only screen and (max-width:60rem){.site-header.menu-opened>:not(.site-header__fixedmenu){display:none}}@media only screen and (min-width:60rem){.admin-bar .site-header.--fixed .site-header__fixedmenu{transform:translateY(calc(100% + 4.6rem))}}@media only screen and (min-width:768px){.admin-bar .site-header.--fixed .site-header__fixedmenu{transform:translateY(calc(100% + 3.2rem))}}footer{color:#212121}footer,footer a{font-family:Source Sans Pro,sans-serif}footer a{font-size:14px}footer .footer-main,footer .mobile-view{background-color:#eceff1}footer .mobile-view{font-size:14px;padding:20px;text-align:left}footer .mobile-view .footer-title{font-weight:700;margin-bottom:15px;word-wrap:break-word}footer .mobile-view .footer-links li{font-size:12px;list-style-type:none;padding-bottom:8px}footer .mobile-view .footer-links>li>a{color:#212121;font-size:14px;font-weight:400;line-height:22px}footer .mobile-view .footer-links li a:hover{color:#003e90}footer .desktop-view{position:relative;text-align:center}footer .desktop-view .footer-inside{margin-left:auto;margin-right:auto;max-width:120rem;padding:80px 40px 80px 65px}@media only screen and (min-width:768px){footer .desktop-view .footer-inside{padding-left:4rem;padding-right:4rem}}footer .desktop-view .footer-inside .scroll-top{left:50%;margin-left:-20px;position:absolute;top:0}footer .desktop-view .footer-inside .scroll-top i{background:#013e8c;border-radius:0 0 3px 3px;color:#fff;content:"\f102";display:block;font-size:16px;height:40px;line-height:40px;text-align:center;width:40px}footer .desktop-view .footer-inside .footer-text-container{display:flex;flex-wrap:wrap;gap:10px;row-gap:40px;text-align:left}footer .desktop-view .footer-inside .footer-text-container .text{flex:1;font-size:10px;line-height:22px;min-width:calc(25% - 10px);padding-left:1%;padding-right:1%;text-align:left}footer .desktop-view .footer-inside .footer-text-container .text-wide{flex:2;min-width:calc(50% - 10px);padding-right:40px}footer .desktop-view .footer-inside .footer-text-container .text-style{font-size:14px;line-height:22px;margin-bottom:15px}footer .desktop-view .footer-inside .footer-text-container .text-style.bottom-link .footer-links>li>a{font-size:12px}footer .desktop-view .footer-inside .footer-text-container .text-style-bold{font-size:14px;font-weight:700;line-height:22px;margin-bottom:15px}footer .desktop-view .footer-inside .footer-text-container .footer-links>li>a,footer .desktop-view .footer-inside .footer-text-container .text-style-a{color:#212121;font-family:Source Sans Pro,sans-serif;font-size:14px;font-weight:400;line-height:22px;margin-bottom:15px}footer .desktop-view .footer-inside .footer-text-container .footer-links li{font-size:12px;list-style-type:none;padding-bottom:8px}footer .desktop-view .footer-inside .footer-text-container .footer-links li a:hover{color:#003e90}footer .desktop-view .footer-inside .footer-text-container .footer-links li:after{border-bottom:1px solid #212121;content:"";display:block;opacity:.2;width:100%}footer .footer-bottom{background-color:rgba(38,100,174,.07);font-size:12px;line-height:22px;position:relative;text-align:left}footer .footer-bottom .footer-bottom-text{margin-left:auto;margin-right:auto;max-width:120rem;padding:20px 40px 40px 65px}@media only screen and (min-width:768px){footer .footer-bottom .footer-bottom-text{padding-left:4rem;padding-right:4rem}}footer .footer-bottom a{color:#212121;font-size:12px;font-weight:400;line-height:22px;list-style-type:none;padding-bottom:8px}footer .footer-bottom a:hover{color:#003e90}@media (max-width:767px){footer .desktop-view,footer .footer-bottom>div{display:none}}@media (min-width:768px){footer .mobile-view{display:none}}@media (min-width:768px) and (max-width:899px){footer .desktop-view .footer-inside .footer-text-container .tablet-first-row{flex:0 0 calc(100% - 20px);text-align:left}footer .desktop-view .footer-inside .footer-text-container .tablet-second-row{flex:0 0 calc(50% - 10px)}footer .desktop-view .footer-inside .footer-text-container .tablet-third-row{flex:0 0 calc(25% - 10px)}}@font-face{font-display:swap;font-family:SourceSansPro,sans-serif;font-optical-sizing:auto;font-style:normal;font-variation-settings:"slnt" 0,"wdth" 100,"GRAD" 0,"XOPQ" 96,"XTRA" 468,"YOPQ" 79,"YTAS" 750,"YTDE" -203,"YTFI" 738,"YTLC" 514,"YTUC" 712;font-weight:300 900;src:url(/wp-content/themes/golfclub-buxtehude/assets/dist/358e8828cd2fc97c7e74.ttf) format("truetype-variations")}@font-face{font-family:Source Sans Pro;font-style:normal;font-weight:300;src:url(/wp-content/themes/golfclub-buxtehude/assets/dist/d2c7d5c5c14c18a7505a.woff2) format("woff2")}@font-face{font-family:Source Sans Pro;font-style:normal;font-weight:400;src:url(/wp-content/themes/golfclub-buxtehude/assets/dist/f74389bd42b524dffbb4.woff2) format("woff2")}@font-face{font-family:Source Sans Pro;font-style:normal;font-weight:700;src:url(/wp-content/themes/golfclub-buxtehude/assets/dist/ed37bc608c1680ca735f.woff2) format("woff2")}@font-face{font-family:Source Sans Pro;font-style:italic;font-weight:600;src:url(/wp-content/themes/golfclub-buxtehude/assets/dist/cc34c6e7f9ffb7f76591.woff2) format("woff2")}@font-face{font-family:Oswald;font-style:normal;font-weight:700;src:url(/wp-content/themes/golfclub-buxtehude/assets/dist/41669c1e4f6bdc605d26.ttf) format("ttf")}@font-face{font-family:Oswald;font-style:normal;font-weight:400;src:url(/wp-content/themes/golfclub-buxtehude/assets/dist/31bce04a1ae8549b1464.ttf) format("ttf")}html{font-size:10px;height:100%}body{color:#212121;font-family:SourceSansPro,sans-serif;letter-spacing:.1em}ol,p,ul{line-height:130%}a,ol,p,ul{font-size:1.6rem}a{color:#003e90;line-height:1.2;text-decoration:none}.copy-m{font-size:1.6rem}.copy-m,.copy-s{line-height:130%}.copy-s{font-size:1.4rem}.copy-l{font-size:clamp(22px,20.2327px + .00295 * 100vw,24px);line-height:130%}.label{font-size:1.2rem;font-weight:700;line-height:1.6rem}.big-topline{font-size:2rem;font-weight:700;line-height:3.2rem;text-transform:uppercase}.topline{font-size:1.6rem;font-weight:700;line-height:2.4rem}.legal{font-size:1.2rem;line-height:1.6rem}.quote{font-size:clamp(20px,12.93078px + .01178 * 100vw,28px);font-style:italic;line-height:130%}.text-xxl{font-size:clamp(80px,62.32695px + .02946 * 100vw,100px);font-weight:900}.h1,.text-xl,h1{font-size:clamp(50px,50px + 0 * 100vw,50px);font-weight:400}.h2,.text-l,h2{font-size:clamp(40px,25.86156px + .02356 * 100vw,56px);font-weight:400}.h3,.text-m,h3{font-size:clamp(32px,24.93078px + .01178 * 100vw,40px);font-weight:900;line-height:4.2rem}.h4,.text-s,h4{font-size:clamp(24px,16.93078px + .01178 * 100vw,32px);font-weight:700}.h5,.h6,.text-xs,h5,h6{font-size:clamp(20px,20px + 0 * 100vw,20px);font-weight:700}.-sr-only{height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;clip:rect(0,0,0,0);border-width:0;white-space:nowrap}@media (max-width:768px){.full-column-mobile{grid-template-columns:1fr!important}}.p-0{padding:0!important}.p-1{padding:var(--wp--preset--spacing--s)!important}.py-0{padding-bottom:0!important;padding-top:0!important}.px-0{padding-left:0!important;padding-right:0!important}.px-1{padding-left:var(--wp--preset--spacing--s)!important;padding-right:var(--wp--preset--spacing--s)!important}.py-1{padding-bottom:var(--wp--preset--spacing--s)!important;padding-top:var(--wp--preset--spacing--s)!important}.py-2{padding-bottom:var(--wp--preset--spacing--m)!important;padding-top:var(--wp--preset--spacing--m)!important}.w-full{width:100%}.mt-1{margin-top:var(--wp--preset--spacing--s)!important}.mb-1{margin-bottom:var(--wp--preset--spacing--s)!important}.mt-2{margin-top:var(--wp--preset--spacing--m)!important}.mb-2{margin-bottom:var(--wp--preset--spacing--m)!important}@media (max-width:768px){.bg-only-desktop .-background{display:none}}.block{padding-bottom:5rem;padding-top:5rem}@media only screen and (min-width:768px){.block{padding-bottom:10rem;padding-top:10rem}}.block__inner{margin-left:auto;margin-right:auto;max-width:120rem;padding-left:2rem;padding-right:2rem}@media only screen and (min-width:768px){.block__inner{padding-left:4rem;padding-right:4rem}}.block-flex-content{display:flex;flex-direction:column;gap:1.6rem}@media only screen and (min-width:768px){.block-flex-content{gap:3.2rem}}.b-animation-counter__inner{align-items:center;display:grid;gap:4rem 2rem;grid-template-columns:repeat(2,1fr)}@media only screen and (min-width:768px){.b-animation-counter__inner{gap:2rem;grid-template-columns:repeat(6,1fr)}}.b-animation-counter__item{align-items:center;display:flex;flex-direction:column;gap:3rem;min-width:6rem}.b-animation-counter__item .--number{color:var(--wp--preset--color--primary);font-family:serif;font-size:5rem}.b-animation-counter__item .--title{font-size:2rem;font-weight:700;text-align:center}.b-advertisement-slider{overflow:hidden}@media only screen and (min-width:768px){.b-advertisement-slider__inner{margin-left:auto;margin-right:auto;max-width:120rem}}.b-advertisement-slider__slider{position:relative}.b-advertisement-slider__slider__media .c-media,.b-advertisement-slider__slider__media .c-media>*{height:100%}.b-advertisement-slider__slider__media .c-media img{height:100%!important;-o-object-fit:cover!important;object-fit:cover!important;-o-object-position:center;object-position:center}.b-advertisement-slider__slider__headline{font-size:1.8rem;font-weight:700;line-height:1.8rem}@media only screen and (min-width:1024px){.b-advertisement-slider__slider__headline{font-size:1.4rem;line-height:1.6rem}}.b-advertisement-slider__slider__copy *{font-size:1.2rem;line-height:1.2rem}@media only screen and (min-width:1024px){.b-advertisement-slider__slider__copy *{font-size:1.4rem;line-height:2.2rem}}.b-advertisement-slider__slider__cta{align-items:center;display:flex;gap:1rem}.b-advertisement-slider__slider__cta__text{font-size:1.2rem;font-weight:700;line-height:1.6rem;white-space:nowrap}@media only screen and (min-width:1024px){.b-advertisement-slider__slider__cta__text{font-size:1.4rem;line-height:2.2rem}}.b-advertisement-slider__slider__cta__link{color:#003e90;font-size:1.2rem;font-weight:400!important;line-height:1.6rem}@media only screen and (min-width:1024px){.b-advertisement-slider__slider__cta__link{font-size:1.4rem;line-height:2.2rem}}.b-advertisement-slider .splide__slide{display:flex;flex-direction:column;gap:1rem}.b-advertisement-slider .splide__track{overflow:hidden}.b-advertisement-slider .splide__arrows,.b-advertisement-slider .splide__controls{height:0}@media only screen and (min-width:768px){.b-advertisement-slider .splide:hover .splide__arrow{opacity:.7}}.b-advertisement-slider .splide__arrow{background:transparent;height:3.5rem;position:absolute;transition:opacity .6s ease;width:3.5rem}@media only screen and (min-width:768px){.b-advertisement-slider .splide__arrow{height:4rem;opacity:0;width:4rem}.b-advertisement-slider .splide__arrow:hover{opacity:1!important}}.b-advertisement-slider .splide__arrow svg{fill:#fff}.b-advertisement-slider .splide__arrow:disabled{cursor:default}.b-advertisement-slider .splide__pagination{bottom:0;height:4rem;position:relative}.b-advertisement-slider .splide__pagination__page{background:#fff;border:.2rem solid #fff;border-radius:100%;box-shadow:0 0 1px 1px rgba(0,0,0,.3);cursor:pointer;display:inline-block;height:1rem;opacity:1;width:1rem}.b-advertisement-slider .splide__pagination__page.is-active{background-color:rgba(0,0,0,.1);border:.2rem solid #003e90;box-shadow:none}.b-book-pagination__rows{display:flex;flex-direction:column;gap:15rem}.b-book-pagination__rows__item{display:flex;flex-direction:column;gap:3rem}.b-book-pagination__rows__item>.c-mediafull{aspect-ratio:16/9;overflow:hidden}.b-book-pagination__rows__item__details{display:flex;flex-direction:column;gap:3rem}@media only screen and (min-width:1024px){.b-book-pagination__rows__item__details{flex-direction:row;gap:7rem}}.b-book-pagination__rows__item__details__column.-main{flex:1}.b-book-pagination__rows__item__details__column.-lane,.b-book-pagination__rows__item__details__column.-sponsors{width:100%}@media only screen and (min-width:1024px){.b-book-pagination__rows__item__details__column.-lane,.b-book-pagination__rows__item__details__column.-sponsors{width:25%}}.b-book-pagination__rows__item__details__column.-lane .c-mediafull{max-width:10rem}.b-book-pagination__rows__item__details__column.-sponsors .c-mediafull{max-width:15rem}.b-book-pagination__rows__item__details__title{color:#003e90;display:block;font-size:3rem;font-weight:700;line-height:3.6rem;margin-bottom:2.5rem}@media only screen and (min-width:1024px){.b-book-pagination__rows__item__details__title{font-size:2.5rem;line-height:2.5rem}}.b-book-pagination__bottom{align-items:center;display:flex;min-height:3.5rem;padding:3.5rem 0}.b-book-pagination__pages{bottom:1rem;display:flex;flex-wrap:wrap;gap:.4rem;left:0;position:fixed;right:0}.b-book-pagination__pages.-sticky{bottom:0;left:0;position:relative}.b-book-pagination__pages__item{align-items:center;background-color:#003e90;color:#fff;cursor:pointer;display:flex;height:3.5rem;justify-content:center;width:3.5rem}.b-book-pagination__pages__item:hover{background-color:#fff;color:#003e90}.b-book-pagination__sponsor{background-color:#eceff1;display:block;padding:1rem}.is-style-size-boxed.b-book-pagination .b-book-pagination__pages{margin-left:0;margin-right:auto;max-width:120rem;padding-left:2rem;padding-right:2rem;width:70%}@media only screen and (min-width:768px){.is-style-size-boxed.b-book-pagination .b-book-pagination__pages{padding-left:4rem;padding-right:4rem}}@media only screen and (min-width:1024px){.is-style-size-boxed.b-book-pagination .b-book-pagination__pages{margin-left:auto;width:100%}}.is-style-size-boxed.b-book-pagination .b-book-pagination__pages.-sticky{padding:0}.is-style-size-fullwidth.b-book-pagination .b-book-pagination__pages{width:70%}@media only screen and (min-width:1024px){.is-style-size-fullwidth.b-book-pagination .b-book-pagination__pages{width:100%}}.b-contact__inner{display:grid;gap:1rem;grid-template-columns:1fr}@media only screen and (min-width:1024px){.b-contact__inner{grid-template-columns:1fr 1fr}}.b-contact__column p{margin-bottom:1rem}.b-contact__divider{background-color:rgba(0,0,0,.1);height:.1rem;margin:2rem 0;width:6.5rem}.b-contact__rate{margin-top:1rem}.b-contact__rate__total{margin-bottom:3rem;margin-top:1rem}.b-contact__rate.-can_vote .b-contact__star:hover{color:#fde800;cursor:pointer}.b-contact__star{color:rgba(0,0,0,.1)}.b-contact__star.-active{color:#003e90}.b-content form{color:#155497;margin:2rem auto}.b-content form .row{display:flex;flex-direction:column;gap:1.5rem}.b-content form .col-sm-12{width:100%}.b-content form .form-group{display:flex;flex-direction:column}.b-content form .form-group label{color:#155497;margin-bottom:1rem}.b-content form .form-group .form-control,.b-content form .form-group .pcco-input{background-color:#f2f2f2;border:1px solid #fbfbfb;font-size:1.6rem;padding:1rem;transition:border-color .3s,box-shadow .3s}.b-content form .form-group .form-control:focus,.b-content form .form-group .pcco-input:focus{border-color:#003e90;box-shadow:0 0 0 3px rgba(58,132,92,.15);outline:none}.b-content form .btn,.b-content form .pcco-button{background-color:#003e90;border:none;color:#fff;cursor:pointer;font-size:1.8rem;font-weight:700;padding:1rem;transition:background-color .3s;width:100%}.b-content form .btn:hover,.b-content form .pcco-button:hover{background-color:#003e90}.b-content form .pcco-access{color:#003e90;cursor:pointer;font-size:1rem;margin-top:1rem;text-align:center}.b-content form .pcco-access:hover{color:#003e90}.b-content form iframe#pcco-access{border:none;display:none;margin-top:1rem;width:100%}.b-comments{align-items:center;border:.4rem solid #003e90;display:flex;flex-direction:column;gap:2rem;margin-bottom:1rem;margin-top:1rem;padding:1rem}@media only screen and (min-width:768px){.b-comments{gap:2.5rem;padding:2rem}}.b-comments__subtitle,.b-comments__title{color:#003e90;font-size:3rem;line-height:3.6rem;text-align:center}@media only screen and (min-width:1024px){.b-comments__subtitle,.b-comments__title{font-size:3rem;line-height:2.5rem}}@media only screen and (min-width:768px){.b-comments__title{margin-top:2.5rem}.b-comments__subtitle{margin-bottom:2.5rem}}.b-comments__comments{display:flex;flex-direction:column;gap:1rem;padding-top:2.5rem}@media only screen and (min-width:768px){.b-comments__comments{padding-top:5rem}}.b-comments__comments__btn{align-items:center;background-color:#eceff1;display:flex;justify-content:center;margin-bottom:2.5rem;padding:1.2rem 0}@media only screen and (min-width:768px){.b-comments__comments__btn{margin-bottom:5rem}}.b-comments__comments__btn a{font-size:1.4rem;font-weight:700;line-height:1.4rem}@media only screen and (min-width:1024px){.b-comments__comments__btn a{font-size:1.4rem;line-height:1.4rem}}.b-comments__comments__btn a span{align-items:center;display:flex!important;flex-direction:row}.b-comments__comments__btn a img{filter:grayscale(100%);height:1.8rem;margin:0 .5rem;width:1.8rem}.b-comments__comment{border-bottom:.1rem dotted #000;display:flex;flex-direction:column;gap:2rem}.b-comments__comment__header{display:flex;flex-direction:column;justify-content:space-between}@media only screen and (min-width:768px){.b-comments__comment__header{flex-direction:row}}.b-comments__comment__header__date,.b-comments__comment__header__name{color:#003e90;font-size:1.8rem;font-weight:700;line-height:2rem}@media only screen and (min-width:1024px){.b-comments__comment__header__date,.b-comments__comment__header__name{font-size:1.8rem;line-height:2.2rem}}.b-comments__comment__content{padding-bottom:2rem}.b-comments__form{display:flex;flex-direction:column;gap:2rem}.b-comments__fieldset{border:none;display:flex;flex-direction:column;gap:.2rem;padding:0}.b-comments__fieldset.--checkbox{align-items:flex-start;background-color:#f5f5f5;flex-direction:row;gap:1rem;padding:1rem}.b-comments__fieldset.--checkbox label{font-size:1.4rem;line-height:2rem}@media only screen and (min-width:1024px){.b-comments__fieldset.--checkbox label{font-size:1.4rem;line-height:1.4rem}}.b-comments__label .--mandatory{color:#003e90}.b-comments__input{background-color:#f5f5f5;width:100%}.b-comments__checkbox{margin-top:.4rem}@media only screen and (min-width:768px){.b-comments__checkbox{margin-top:0}}.b-comments__submit{opacity:1;transition:opacity .3s ease}.b-comments__submit:disabled{cursor:not-allowed;opacity:0!important}.b-comments__explanation,.b-comments__label{font-size:1.4rem;line-height:1.5rem}@media only screen and (min-width:1024px){.b-comments__explanation,.b-comments__label{font-size:1.4rem;line-height:1.4rem}}.b-copy-media.--has-media .b-copy-media__item--content{padding:2rem 0}@media only screen and (min-width:1024px){.b-copy-media.--has-media .b-copy-media__item--content{padding:4rem}}.b-copy-media.--has-media .b-copy-media__content{display:grid;flex-direction:column;grid-template-columns:1fr}@media only screen and (min-width:1024px){.b-copy-media.--has-media .b-copy-media__content{grid-template-columns:1fr 1fr}}.b-copy-media__copy{margin-bottom:3.5rem}.b-copy-media__copy *{font-size:1.6rem;line-height:2rem}@media only screen and (min-width:1024px){.b-copy-media__copy *{font-size:1.5rem;line-height:2.2rem}}.b-copy-media__subline{font-size:1.6rem;font-weight:300;letter-spacing:.2rem;line-height:2rem}@media only screen and (min-width:1024px){.b-copy-media__subline{font-size:2.8rem;line-height:3.2rem}}.b-copy-media__item{flex:1;position:relative}.b-copy-media__item--content .c-title__headline,.b-copy-media__item--content .c-title__topline{color:#003e90}.b-copy-media__item--content .c-title__topline{font-size:1.6rem;letter-spacing:.4rem;line-height:2rem;margin-bottom:1.5rem}@media only screen and (min-width:1024px){.b-copy-media__item--content .c-title__topline{font-size:1.5rem;line-height:2.2rem}}.b-copy-media__item--content .c-title__headline{font-weight:400;letter-spacing:.2rem;margin-bottom:2.5rem}.b-copy-media__item.left .c-title__headline,.b-copy-media__item.right .c-title__headline{font-size:2.5rem;line-height:3rem}@media only screen and (min-width:1024px){.b-copy-media__item.left .c-title__headline,.b-copy-media__item.right .c-title__headline{font-size:2.5rem;line-height:2.8rem}}.b-copy-media__item.left{order:1}.b-copy-media__item.right{order:2}@media only screen and (min-width:1024px){.b-copy-media__item.right{order:unset}}.b-copy-media__arrow:not(.--none){background-color:#fff;display:none;height:2rem;position:absolute;top:calc(50% - 1rem);transform:rotate(-45deg);width:2rem;z-index:1}@media only screen and (min-width:1024px){.b-copy-media__arrow:not(.--none){display:block}}.b-copy-media__arrow:not(.--none).--left{left:-1rem}.b-copy-media__arrow:not(.--none).--right{right:-1rem}.b-cta.is-style-size-fullwidth .b-cta__inner,.b-cta.is-style-size-fullwidth .c-cta{width:100%}.b-cta.is-style-size-boxed .b-cta__inner{justify-content:center}.b-cta .b-cta__inner{display:flex}.b-download-list__wrapper{background-color:#fff;display:flex;flex-direction:column;gap:2rem}@media only screen and (min-width:768px){.b-download-list__wrapper{gap:2rem}}.b-download-list__wrapper hr{border:0;border-top:.1rem dotted #000}.b-download-list__wrapper .c-cta{border-width:.4rem;display:flex;flex-direction:column;gap:.4rem}.b-download-list__wrapper .c-cta>span span{letter-spacing:.3rem}.b-download-list__wrapper .c-cta>span :first-child{color:#212121}.b-download-list__wrapper .c-cta>span :last-child{color:#bdbdbd;font-size:1.2rem}.b-galleryslider{overflow:hidden}.b-galleryslider__slider{position:relative}.b-galleryslider__media{aspect-ratio:16/9;height:100%}.b-galleryslider__media .c-media,.b-galleryslider__media .c-media>*{height:100%}.b-galleryslider__media .c-media img{height:100%!important;-o-object-fit:cover!important;object-fit:cover!important;-o-object-position:center;object-position:center}.b-galleryslider .splide__slide{display:flex;flex-direction:column;gap:1.6rem}@media only screen and (min-width:768px){.b-galleryslider .splide__slide{gap:3.2rem}}.b-galleryslider .splide__track{overflow:hidden}.b-galleryslider .splide__arrows,.b-galleryslider .splide__controls{height:0}@media only screen and (min-width:768px){.b-galleryslider .splide:hover .splide__arrow{opacity:.7}}.b-galleryslider .splide__arrow{background:#000;height:3.5rem;position:absolute;transition:opacity .6s ease;width:3.5rem}@media only screen and (min-width:768px){.b-galleryslider .splide__arrow{height:4rem;opacity:0;width:4rem}.b-galleryslider .splide__arrow:hover{opacity:1!important}}.b-galleryslider .splide__arrow svg{fill:#fff}.b-galleryslider .splide__arrow:disabled{cursor:default}.b-galleryslider .splide__progress{align-self:center;background:transparent;bottom:0;left:0;position:absolute;right:0;z-index:1}.b-galleryslider .splide__progress--bar{background:hsla(0,0%,100%,.6);height:.4rem;transition:width .4s ease;width:0}.b-galleryslider__thumbnails{background-color:#fff;bottom:.4rem;left:0;margin:auto;padding:.4rem!important;position:absolute!important;right:0;width:24.8rem}.b-galleryslider__thumbnails .splide__track{overflow:hidden}.b-galleryslider__thumbnails__slide{border:none!important;opacity:.5}.b-galleryslider__thumbnails__slide.is-active{opacity:1!important}.b-golf-card{align-items:center;display:grid;grid-template-columns:1fr;min-height:50rem;position:relative}@media only screen and (min-width:768px){.b-golf-card{grid-template-columns:1fr 1fr;min-height:58rem}}.b-golf-card .-background{height:100%;left:0;position:absolute;top:0;width:100%}.b-golf-card__content__inner{z-index:1}.b-golf-card__content__copy p{display:block;margin-bottom:1rem}.b-golf-card__content__copy a{text-decoration:underline;transition:opacity .3s ease}.b-golf-card__content__copy a:hover{opacity:.7}.b-golf-card__cta{margin-top:2rem}@media only screen and (min-width:768px){.b-golf-card__cta{margin-top:4rem}}.b-golf-card:after{clear:both;content:"";display:block}.b-info-slider{padding-left:0!important;padding-right:0!important}.b-info-slider li{display:inline-flex;font-size:1.4rem;line-height:2.3rem;min-width:-moz-min-content;min-width:min-content;text-align:center;white-space:nowrap;width:auto}@media only screen and (min-width:1024px){.b-info-slider li{font-size:1.4rem;line-height:2.3rem}}.b-info-slider__top{height:5rem;margin-top:.4rem}@media only screen and (max-width:60rem){.b-info-slider__top{display:none}}.b-large-stage{align-items:center;display:flex;flex-direction:column;justify-content:center;min-height:46rem;overflow:hidden;position:relative;width:100%}.b-large-stage.has-white-color .b-large-stage__content__copy,.b-large-stage.has-white-color .b-large-stage__title{background-color:rgba(0,0,0,.5);padding:1rem}.b-large-stage.has-white-color .b-large-stage__content__cta a{background-color:rgba(0,0,0,.5)}.b-large-stage.has-white-color .b-large-stage__content__cta a:hover{background-color:hsla(0,0%,100%,.5)}@media only screen and (min-width:768px){.b-large-stage{min-height:55rem}}@media only screen and (min-width:1024px){.b-large-stage{min-height:58rem}}@media only screen and (min-width:768px){.b-large-stage.--centered{aspect-ratio:1200/804}}.b-large-stage.--centered .b-large-stage__buttons{align-items:center;width:100%}.b-large-stage.--centered .b-large-stage__content{align-items:center;justify-content:center}.b-large-stage.--centered .b-large-stage__content__copy{text-align:center}.b-large-stage.--centered .b-large-stage__content__cta{width:auto}@media only screen and (min-width:768px){.b-large-stage.--centered .b-large-stage__content__cta{width:50%}}.b-large-stage.--centered .b-large-stage__content__cta .c-cta{width:100%}.b-large-stage.left{align-items:flex-start;justify-content:flex-start}.b-large-stage__title{font-family:serif;letter-spacing:2px;text-align:center}.b-large-stage__content{gap:1.5rem;margin-left:auto;margin-right:auto;max-width:120rem;padding-left:2rem;padding-right:2rem;position:relative;width:100%;z-index:1}@media only screen and (min-width:768px){.b-large-stage__content{padding-left:4rem;padding-right:4rem}}.b-large-stage__content .c-mediafull{max-width:25rem}.b-large-stage__content__copy{margin-bottom:.5rem;max-width:50rem}@media only screen and (min-width:768px){.b-large-stage__content__copy{margin-bottom:.5rem}}.b-large-stage__content .c-cta{font-size:1.8rem;line-height:2.2rem}@media only screen and (min-width:1024px){.b-large-stage__content .c-cta{font-size:2rem;line-height:2.2rem}}.b-large-stage__buttons{display:flex;flex-direction:column;gap:1.5rem}.b-map{display:block;min-height:50rem;position:relative;width:100%}@media only screen and (min-width:768px){.b-map{min-height:58rem}}.b-map__info{display:none}.b-map__map{inset:0;position:absolute!important}.b-newsletter{align-items:center;display:grid;grid-template-columns:1fr;position:relative}@media only screen and (min-width:768px){.b-newsletter{grid-template-columns:1fr 1fr}}.b-newsletter .-background{height:100%;left:0;position:absolute;top:0;width:100%}.b-newsletter__content{display:flex;flex-direction:column;gap:2rem;max-width:calc(100% - 1.8rem);z-index:1}@media only screen and (min-width:768px){.b-newsletter__content{gap:3rem}}.b-newsletter__content__copy{font-size:1.6rem;line-height:2rem}@media only screen and (min-width:1024px){.b-newsletter__content__copy{font-size:1.4rem;line-height:2.2rem}}.b-newsletter__content__terms *{font-size:1.2rem;line-height:1.6rem}@media only screen and (min-width:1024px){.b-newsletter__content__terms *{font-size:1.2rem;line-height:1.6rem}}.b-newsletter__content__form__title{display:block;font-size:1.6rem;line-height:2rem;margin-bottom:1.5rem}@media only screen and (min-width:1024px){.b-newsletter__content__form__title{font-size:2.2rem;line-height:2.5rem}}.b-newsletter__content__form__fieldset{border:none;display:flex;flex-direction:column}@media only screen and (min-width:768px){.b-newsletter__content__form__fieldset{flex-direction:row}}.b-newsletter__content__form .form__input{width:auto}@media only screen and (min-width:768px){.b-newsletter__content__form .form__input{width:50%}}.b-newsletter__success{background-color:#e0e6ef;display:flex;flex-direction:column;gap:1rem;inset:0;justify-content:center;opacity:0;padding-left:2rem;padding-right:2rem;pointer-events:none;position:absolute;transition:opacity .6s ease-in-out;visibility:hidden;z-index:-1}@media only screen and (min-width:768px){.b-newsletter__success{gap:1.5rem;padding-left:4rem;padding-right:4rem}}.b-newsletter__success *{color:#212121}.-active .b-newsletter__success{opacity:1;visibility:visible;z-index:1}.b-plan-list__title{font-size:1.8rem;line-height:2.2rem;margin-bottom:2.5rem}@media only screen and (min-width:1024px){.b-plan-list__title{font-size:2.2rem;line-height:2.5rem}}@media only screen and (min-width:768px){.b-plan-list__title{font-weight:700}}.b-plan-list__plans{display:flex;flex-direction:column;gap:2.5rem}.b-plan-list__plans__item{display:flex;flex-direction:column;gap:1rem;padding-bottom:1rem;transition:all .3s ease}@media only screen and (min-width:768px){.b-plan-list__plans__item{padding-bottom:2.5rem}}.b-plan-list__plans__item:hover{color:#003e90;padding-left:1rem}.b-plan-list__plans__item:not(:last-child){border-bottom:1px dotted rgba(0,0,0,.5)}.b-plan-list__plans__item__wrapper{display:flex;flex-direction:column;gap:3rem}@media only screen and (min-width:768px){.b-plan-list__plans__item__wrapper{flex-direction:row;gap:2rem;justify-content:space-between}}.b-plan-list__plans__item__price,.b-plan-list__plans__item__title{font-weight:700}.b-plan-list__plans__item__title{font-size:2rem;line-height:2.4rem}@media only screen and (min-width:1024px){.b-plan-list__plans__item__title{font-size:2rem;line-height:2.4rem}}.b-plan-list__plans__item__price{font-size:2.5rem;line-height:2.4rem;white-space:nowrap}@media only screen and (min-width:1024px){.b-plan-list__plans__item__price{font-size:2rem;line-height:2.2rem}}.b-plan-list__plans__item__subline{display:block;font-size:1.8rem;line-height:2rem;width:calc(100% - 1rem)}@media only screen and (min-width:1024px){.b-plan-list__plans__item__subline{font-size:1.8rem;line-height:2rem}}.b-plan-list__copy{border-top:1px dotted rgba(0,0,0,.5);padding-top:2.5rem}.b-plan-list__copy>*{font-size:1.4rem;line-height:2.2rem}.b-post-list[aria-busy=true],.b-post-list[aria-busy=true] *{cursor:progress}.b-post-list[aria-busy=true] button{pointer-events:none}.b-post-list.--small-list{padding-left:2rem;padding-right:2rem}.b-post-list:not(.--small-list) .b-post-list__posts{gap:2rem}.b-post-list__posts{align-items:stretch;display:grid;grid-template-columns:1fr;justify-content:stretch;justify-items:stretch}.b-post-list__posts>.c-teaser,.b-post-list__posts>.c-teaser-small{width:100%}.b-post-list__posts>.c-teaser{padding:2rem}.b-post-list__posts>.c-teaser-small{padding:1rem .4rem}.b-post-list__posts>.c-teaser-small:not(:last-child){border-bottom:.1rem solid #fff}.b-post-list__pagination{align-items:center;display:flex;justify-content:space-between}.b-post-list__pages{margin:2rem 2rem 3rem}.b-post-list__pages .page-numbers{font-size:1.6rem;font-weight:400;line-height:2rem;padding:.3rem 1rem}@media only screen and (min-width:1024px){.b-post-list__pages .page-numbers{font-size:1.6rem;line-height:2rem}}.b-post-list__pages .current{background:#003e90;color:#fff;font-weight:700}.b-post-list__pages .next,.b-post-list__pages .prev{display:none}.b-pricing-table__pricings{align-items:start;display:flex;flex-direction:column;justify-content:space-between}@media only screen and (min-width:768px){.b-pricing-table__pricings{flex-direction:row}}.b-pricing-table__pricings__item{background-color:#fff;border:.1rem solid #e5e5e5;display:flex;flex-direction:column;overflow:hidden;position:relative;width:100%}.b-pricing-table__pricings__item__recommended{background:#fff;font-size:.7333rem;min-width:13rem;position:absolute;right:-3.5rem;text-align:center;top:2rem;transform:rotate(45deg)}.b-pricing-table__pricings__item__header{background-color:#003e90;border-bottom:.1rem solid #e5e5e5;color:#fff;font-size:1.5rem;font-weight:700;line-height:1.4rem;padding:3rem 1.5rem;text-align:center}@media only screen and (min-width:1024px){.b-pricing-table__pricings__item__header{font-size:1.5rem;line-height:1.4rem}}.b-pricing-table__pricings__item__pricing{align-items:center;border-bottom:.1rem solid #e5e5e5;display:flex;flex-direction:column;gap:1rem;padding:2.1rem 1.4rem}.b-pricing-table__pricings__item__pricing__price{display:flex;gap:.4rem}.b-pricing-table__pricings__item__pricing__price .--price{font-size:2rem;font-weight:700;line-height:2rem}@media only screen and (min-width:1024px){.b-pricing-table__pricings__item__pricing__price .--price{font-size:4.2rem;line-height:3.6rem}}.b-pricing-table__pricings__item__pricing__price .--currency{font-size:1.6rem;font-weight:700;line-height:1.6rem}@media only screen and (min-width:1024px){.b-pricing-table__pricings__item__pricing__price .--currency{font-size:1.6rem;line-height:1.6rem}}.b-pricing-table__pricings__item__pricing__price .--price_detail{align-self:flex-end;font-size:1.4rem;line-height:1.4rem}@media only screen and (min-width:1024px){.b-pricing-table__pricings__item__pricing__price .--price_detail{font-size:1.4rem;line-height:1.4rem}}.b-pricing-table__pricings__item__pricing__subline{color:#999;font-size:1.4rem;line-height:1.4rem}@media only screen and (min-width:1024px){.b-pricing-table__pricings__item__pricing__subline{font-size:1.4rem;line-height:1.4rem}}.b-pricing-table__pricings__item__features{align-items:center;display:flex;flex-direction:column}.b-pricing-table__pricings__item__features__item{border-bottom:.1rem solid #e5e5e5;font-size:1.4rem;line-height:1.4rem;padding:1.4rem;text-align:center;width:100%}@media only screen and (min-width:1024px){.b-pricing-table__pricings__item__features__item{font-size:1.4rem;line-height:2rem}}.b-pricing-table__pricings__item__features__item:nth-child(odd){background-color:#fbfbfb}.b-pricing-table__pricings__item__cta{align-items:center;display:flex;justify-content:center;padding:2.5rem 1.4rem 3.5rem}.b-small-stage{min-height:70vh;position:relative}@media only screen and (min-width:768px){.b-small-stage{min-height:28rem}}.b-small-stage .c-background-media{z-index:-1}.b-small-stage__inner{display:flex;flex-direction:column;padding:3rem}.b-small-stage__title{margin-bottom:2.5rem}.b-small-stage__title .c-title__headline{font-size:2.5rem;letter-spacing:.1rem;line-height:2.2rem}@media only screen and (min-width:1024px){.b-small-stage__title .c-title__headline{font-size:2.5rem;line-height:2.5rem}}.b-small-stage__copy{font-size:1.8rem;letter-spacing:.1rem;line-height:2.2rem;margin-bottom:2rem}@media only screen and (min-width:1024px){.b-small-stage__copy{font-size:1.5rem;line-height:1.8rem}}@media only screen and (min-width:768px){.b-small-stage__copy{min-width:60%}}.b-small-stage__cta{margin-bottom:1rem}.b-small-stage__cta .-download,.b-small-stage__cta .-primary-blue,.b-small-stage__cta .-primary-white,.b-small-stage__cta .-secondary-blue,.b-small-stage__cta .-secondary-white{justify-content:center;text-align:center;width:100%}@media only screen and (min-width:768px){.b-small-stage__cta .-download,.b-small-stage__cta .-primary-blue,.b-small-stage__cta .-primary-white,.b-small-stage__cta .-secondary-blue,.b-small-stage__cta .-secondary-white{justify-content:flex-start;text-align:left;width:auto}}.b-search__form__input{margin-bottom:2.5rem}.b-search__form__input .--label{display:none}.b-search__form__input .--input{border:.1rem solid #e5e5e5;width:100%}.b-search__form__submit{width:100%}.b-search__form__submit:active,.b-search__form__submit:hover{background-color:#212121!important;border-color:#212121!important}.b-search__total{display:flex;flex-direction:column;gap:1rem;margin-bottom:1rem;margin-top:1.5rem}.b-search__results{display:flex;flex-direction:column;gap:4rem;margin:4rem 0}.b-search__results__item__title{display:block;margin-bottom:1rem}@media only screen and (min-width:768px){.b-search__results__item__title{margin-bottom:2.5rem}}.b-search__results__item__title .--relevance,.b-search__results__item__title a{font-size:1.8rem;line-height:2.1rem}@media only screen and (min-width:1024px){.b-search__results__item__title .--relevance,.b-search__results__item__title a{font-size:2rem;line-height:2.5rem}}.b-search__results__item__title .--relevance{color:#212121}.b-search__results__item__title a{color:#4d4d4d}.b-search__results__item__excerpt{display:block;margin-bottom:1rem}.b-search__results__item__url{display:block}.b-search__pagination{display:flex;justify-content:space-between;width:100%}.b-search__pagination__pages{display:flex;flex-wrap:wrap}.b-search__pagination__pages .page-numbers{font-size:1.4rem;font-weight:400;line-height:2rem;padding:.3rem 1rem}.b-search__pagination__pages .current{background-color:#003e90;color:#fff}.b-search__pagination__pages a:hover{color:#003e90;text-decoration:underline}.b-single-teaser__inner{display:flex;flex-direction:column;gap:3.2rem;margin-left:auto;margin-right:auto;max-width:120rem;padding-left:2rem;padding-right:2rem}@media only screen and (min-width:768px){.b-single-teaser__inner{align-items:center;flex-direction:row;gap:6.4rem;padding-left:4rem;padding-right:4rem}}.b-single-teaser__content{flex:1}.b-single-teaser__image img{aspect-ratio:1;height:100%;-o-object-fit:cover;object-fit:cover}.b-styleguide{padding-bottom:4rem;padding-top:4rem}.b-styleguide__inner{margin-left:auto;margin-right:auto;max-width:120rem;padding-left:2rem;padding-right:2rem}@media only screen and (min-width:768px){.b-styleguide__inner{padding-left:4rem;padding-right:4rem}}.b-styleguide__button,.b-styleguide__colors,.b-styleguide__copy,.b-styleguide__headline{border-bottom:1px solid grey;margin-bottom:3rem;padding-bottom:3rem}.b-styleguide__button,.b-styleguide__colors{border:none}.b-styleguide__title{font-weight:700;margin-bottom:1rem}.b-styleguide__colors{display:flex;flex-wrap:wrap;gap:2.4rem}.b-styleguide__box{align-items:center;display:flex;flex-direction:column;gap:1rem;justify-content:center}.b-styleguide__color-box{height:10rem;width:10rem}.b-styleguide__max-width{height:10rem;margin:2rem auto;max-width:120rem;padding-left:2rem;padding-right:2rem}@media only screen and (min-width:768px){.b-styleguide__max-width{padding-left:4rem;padding-right:4rem}}.b-styleguide__max-width-inner{align-items:center;background:#d3d3d3;display:flex;height:100%;justify-content:center;width:100%}.b-styleguide__max-width.-s{max-width:101rem}.b-styleguide__max-width.-l{max-width:160rem}.b-styleguide__spaces{align-items:center;background:#d3d3d3;display:flex;justify-content:center;margin:2rem auto;max-width:120rem;padding-left:2rem;padding-right:2rem}@media only screen and (min-width:768px){.b-styleguide__spaces{padding-left:4rem;padding-right:4rem}}.b-styleguide__spaces.-s{height:var(--wp--preset--spacing--s)}.b-styleguide__spaces.-m{height:var(--wp--preset--spacing--m)}.b-styleguide__spaces.-l{height:var(--wp--preset--spacing--l)}.b-spacer--s{padding-bottom:var(--wp--preset--spacing--s)}.b-spacer--m{padding-bottom:var(--wp--preset--spacing--m)}.b-spacer--l{padding-bottom:var(--wp--preset--spacing--l)}.b-tabs__items{display:flex;flex-direction:column;gap:.4rem;list-style:none}@media only screen and (min-width:768px){.b-tabs__items{flex-direction:row}}.b-tabs__items__title{align-items:center;background-color:#fff;border-top:.2rem solid #fff;color:#003e90;cursor:pointer;display:flex;font-size:2rem;font-weight:700;gap:1rem;line-height:2rem;margin:0!important;padding:2rem 1.5rem}@media only screen and (min-width:1024px){.b-tabs__items__title{font-size:1.7rem;line-height:2rem}}.b-tabs__items__title i{display:none;font-size:2rem}@media only screen and (min-width:768px){.b-tabs__items__title i{font-size:1.7rem}}.b-tabs__items__title.-active{background-color:#e0e7ef;border-top:.2rem solid #003e90}.b-tabs__items__title.-active i{display:block}.b-tabs__inner{margin-top:.4rem}.b-tabs:not(.-initialized) .b-tab:first-child{display:block}.b-tab{display:none}.b-tab.-active{display:block}.b-teaser-carousel--slider-off .b-teaser-carousel__boxes{display:grid;gap:3.2rem;grid-template-columns:100%}@media only screen and (min-width:768px){.b-teaser-carousel--slider-off .b-teaser-carousel__boxes{gap:6.4rem;grid-template-columns:1fr 1fr 1fr}}.b-teaser-carousel__box-img{margin-bottom:.8rem;min-height:20rem;text-align:center}@media only screen and (min-width:1024px){.b-teaser-carousel__box-img{margin-bottom:1.6rem;min-height:36rem}}.b-teaser-carousel__box-headline{font-weight:700}.b-teaser-carousel__box-text{font-weight:400}.b-teaser-carousel .splide__track{padding-bottom:3.2rem}.b-teaser-carousel .splide.is-initialized:not(.is-active) .splide__list{display:grid;gap:1.6rem;grid-auto-flow:column}.b-tiny-gallery-slider{overflow:hidden}@media only screen and (min-width:768px){.b-tiny-gallery-slider__inner{margin-left:auto;margin-right:auto;max-width:120rem}}.b-tiny-gallery-slider__slider{position:relative}.b-tiny-gallery-slider__media .c-media,.b-tiny-gallery-slider__media .c-media>*{height:100%}.b-tiny-gallery-slider__media .c-media img{height:100%!important;-o-object-fit:cover!important;object-fit:cover!important;-o-object-position:center;object-position:center}.b-tiny-gallery-slider .splide__slide{display:flex;flex-direction:column;gap:1.6rem}@media only screen and (min-width:768px){.b-tiny-gallery-slider .splide__slide{gap:3.2rem}}.b-tiny-gallery-slider .splide__track{overflow:hidden}.b-tiny-gallery-slider .splide__arrows,.b-tiny-gallery-slider .splide__controls{height:0}@media only screen and (min-width:768px){.b-tiny-gallery-slider .splide:hover .splide__arrow{opacity:.7}}.b-tiny-gallery-slider .splide__arrow{background:transparent;height:3.5rem;position:absolute;transition:opacity .6s ease;width:3.5rem}@media only screen and (min-width:768px){.b-tiny-gallery-slider .splide__arrow{height:4rem;opacity:0;width:4rem}.b-tiny-gallery-slider .splide__arrow:hover{opacity:1!important}}.b-tiny-gallery-slider .splide__arrow svg{fill:#fff}.b-tiny-gallery-slider .splide__arrow:disabled{cursor:default}.b-tiny-gallery-slider .splide__pagination{bottom:0;height:4rem;position:relative}.b-tiny-gallery-slider .splide__pagination__page{background:#fff;border:.2rem solid #fff;border-radius:100%;box-shadow:0 0 1px 1px rgba(0,0,0,.3);cursor:pointer;display:inline-block;height:1rem;opacity:1;width:1rem}.b-tiny-gallery-slider .splide__pagination__page.is-active{background-color:rgba(0,0,0,.1);border:.2rem solid #003e90;box-shadow:none}.b-trainer-teaser__inner{display:flex;flex-direction:column;gap:1rem}@media only screen and (min-width:768px){.b-trainer-teaser__inner{gap:2.5rem}}.b-trainer-teaser__name{font-size:1.8rem;line-height:2.2rem}@media only screen and (min-width:1024px){.b-trainer-teaser__name{font-size:2rem;line-height:2.5rem}}.b-trainer-teaser__details{display:flex;flex-direction:column;gap:1rem}@media only screen and (min-width:768px){.b-trainer-teaser__details{gap:1.5rem}.b-trainer-teaser .c-cta{width:50%}}.block ol li,.block ul li{margin-left:2rem}.large-main .is-style-size-boxed,.large-main .is-style-size-boxed.-content-padding{margin-left:auto;margin-right:auto;max-width:160rem;padding-left:2rem;padding-right:2rem}@media only screen and (min-width:768px){.large-main .is-style-size-boxed,.large-main .is-style-size-boxed.-content-padding{padding-left:4rem;padding-right:4rem}}.post-main .is-style-size-boxed,.post-main .is-style-size-boxed.-content-padding,.site-main .is-style-size-boxed,.site-main .is-style-size-boxed.-content-padding{margin-left:auto;margin-right:auto;max-width:120rem;padding-left:2rem;padding-right:2rem}@media only screen and (min-width:768px){.post-main .is-style-size-boxed,.post-main .is-style-size-boxed.-content-padding,.site-main .is-style-size-boxed,.site-main .is-style-size-boxed.-content-padding{padding-left:4rem;padding-right:4rem}}.-content-padding.is-style-size-fullwidth,.is-style-size-fullwidth{max-width:100%;width:100%}.-content-padding a{word-break:break-word}.c-cta{align-items:center;cursor:pointer;display:inline-flex;justify-content:center;text-decoration:unset;transition:all .2s ease-in-out}.c-cta>span{align-items:center;display:flex;flex-direction:column;text-align:center}.c-cta i{font-size:2.2rem;margin-right:.3rem;min-width:3.5rem}@media only screen and (min-width:768px){.c-cta i{font-size:1.9rem;min-width:3rem}}.c-cta:not(.-clean):not(.-text){border-style:solid;border-width:.2rem;padding:1.2rem 2rem}.c-cta:not(.-clean):not(.-text)>span{font-size:1.8rem;font-weight:700}.c-cta:not(.-clean):not(.-download)>span{display:inline-block}.c-cta.-download{border-color:#003e90;border-width:.4rem;color:#003e90;display:flex;flex-direction:column;gap:.4rem;width:100%}.c-cta.-download>span span{letter-spacing:.3rem}.c-cta.-download>span :first-child{color:#212121}.c-cta.-download>span :last-child{color:#bdbdbd;font-size:1.2rem}.c-cta.-download span{gap:.4rem}.c-cta.-download:active,.c-cta.-download:hover{opacity:.7}.c-cta.-clean{font-size:1.4rem;font-weight:400;text-align:center;width:100%}.c-cta.-clean span{display:none}@media only screen and (min-width:768px){.c-cta.-clean span{display:inline-block}}.c-cta.-clean:active,.c-cta.-clean:hover{opacity:.9}.c-cta.-clean:active span,.c-cta.-clean:hover span{text-decoration:underline}.c-cta.-primary-blue{background-color:transparent;border-color:#003e90;color:#003e90}.c-cta.-primary-blue:active,.c-cta.-primary-blue:hover{background-color:#4d4d4d;border-color:#4d4d4d;color:#fff}.c-cta.-white{background-color:#fff;border-color:#fff;color:#212121}.c-cta.-white:active,.c-cta.-white:hover{background-color:#003e90;border-color:#003e90;color:#fff}.c-cta.-primary-white{background-color:transparent;border-color:#fff;color:#fff}.c-cta.-primary-white:active,.c-cta.-primary-white:hover{background-color:#fff;border-color:#fff;color:#252525;opacity:.8}.c-cta.-secondary-blue{background-color:#003e90;border-color:#003e90;color:#fff}.c-cta.-secondary-blue:active,.c-cta.-secondary-blue:hover{opacity:.8}.c-cta.-secondary-white{background-color:transparent;border-color:#fff;color:#fff}.c-cta.-secondary-white:active,.c-cta.-secondary-white:hover{background-color:#fff;border-color:#fff;color:#252525;opacity:.8}.c-cta .sc-textlink.-blue,.c-cta .sc-textlink.-white,.c-cta.sc-textlink.-blue,.c-cta.sc-textlink.-white{border:none}.c-cta .sc-textlink.-blue:hover,.c-cta .sc-textlink.-white:hover,.c-cta.sc-textlink.-blue:hover,.c-cta.sc-textlink.-white:hover{opacity:.8}.c-cta .sc-textlink.-white,.c-cta.sc-textlink.-white{color:#fff}.c-cta .sc-textlink.-blue,.c-cta.sc-textlink.-blue{color:#003e90}.c-cta .sc-textlink.-text,.c-cta.sc-textlink.-text{color:#212121}#block_c1f44978feb463057b188b7fa852ec73 .b-cta__inner{justify-content:center}.c-newsletter-form{height:100%;width:100%}.c-newsletter-form__input{position:relative}.c-newsletter-form__input input:not([type=checkbox]){background:grey;border:.1rem solid grey;border-radius:.4rem;box-sizing:border-box;color:#fff;display:block;font-size:2rem;line-height:3.2rem;padding:1.4rem 2.4rem;transition:all .2s ease;-moz-transition:all .2s ease;-webkit-transition:all .2s ease;width:100%}@media only screen and (min-width:1024px){.c-newsletter-form__input input:not([type=checkbox]){font-size:2rem;line-height:3.2rem}}.c-newsletter-form__input input:not([type=checkbox])~label{background:transparent;color:#fff;font-size:2rem;font-weight:400;left:1.4rem;line-height:3.2rem;padding:0 .5rem;pointer-events:none;position:absolute;top:50%;transform:translateY(-50%);transition:all .15s ease;-moz-transition:all .15s ease;-webkit-transition:all .15s ease}@media only screen and (min-width:1024px){.c-newsletter-form__input input:not([type=checkbox])~label{font-size:2rem;line-height:3.2rem}}.c-newsletter-form__input input:not([type=checkbox]):not(:-moz-placeholder-shown){background:#fff;color:grey;outline:none;-moz-outline:none;-webkit-outline:none}.c-newsletter-form__input input:not([type=checkbox]):focus,.c-newsletter-form__input input:not([type=checkbox]):not(:placeholder-shown){background:#fff;color:grey;outline:none;-moz-outline:none;-webkit-outline:none}.c-newsletter-form__input input:not([type=checkbox]):not(:-moz-placeholder-shown)~label{background:#fff;color:grey;font-size:1.2rem;font-weight:700;line-height:1.6rem;text-transform:uppercase;top:0}.c-newsletter-form__input input:not([type=checkbox]):focus~label,.c-newsletter-form__input input:not([type=checkbox]):not(:placeholder-shown)~label{background:#fff;color:grey;font-size:1.2rem;font-weight:700;line-height:1.6rem;text-transform:uppercase;top:0}@media only screen and (min-width:1024px){.c-newsletter-form__input input:not([type=checkbox]):not(:-moz-placeholder-shown)~label{font-size:1.2rem;line-height:1.6rem}.c-newsletter-form__input input:not([type=checkbox]):focus~label,.c-newsletter-form__input input:not([type=checkbox]):not(:placeholder-shown)~label{font-size:1.2rem;line-height:1.6rem}}.c-newsletter-form__footer{display:flex;flex-direction:column;gap:2.4rem}.c-newsletter-form__footer__buttons{flex:1}.c-newsletter-form__footer__submit{min-width:22.3rem}.c-newsletter-form .-hidden{height:0;visibility:hidden;width:0}.c-newsletter-form.-is-loading .c-newsletter-form__submit{cursor:none;opacity:.2;pointer-events:none}.c-newsletter-form.-is-loading,.c-newsletter-form.-is-loading *{cursor:progress}@media only screen and (min-width:768px){.c-newsletter-form .c-newsletter-form__footer{flex-direction:row;gap:3.2rem}}.c-teaser{background-color:#fff}.c-teaser__img{margin-bottom:1rem;overflow:hidden;position:relative}.c-teaser__img:before{content:"";float:left;height:0;margin-left:-1px;padding-top:50%;width:1px}.c-teaser__img:after{clear:both;content:"";display:table}.c-teaser__img img{background-color:#bdbdbd;border-radius:3px;height:100%;-o-object-fit:cover;object-fit:cover;position:absolute;width:100%}.c-teaser__title{font-size:2.5rem;line-height:2.8rem}@media only screen and (min-width:1024px){.c-teaser__title{font-size:2.5rem;line-height:2.8rem}}.c-teaser__desc{font-size:1.6rem;line-height:2rem}@media only screen and (min-width:1024px){.c-teaser__desc{font-size:1.6rem;line-height:2rem}}.c-teaser__desc,.c-teaser__title{display:block;white-space:break-spaces;width:100%}.c-teaser__details{align-items:center;display:flex;justify-content:space-between}.c-teaser__details__author,.c-teaser__details__date{color:#003e90;font-size:1.2rem;line-height:3rem}@media only screen and (min-width:1024px){.c-teaser__details__author,.c-teaser__details__date{font-size:1.4rem;line-height:3rem}}.c-teaser__details__author{align-items:center;display:flex;font-weight:400;gap:1rem}.c-teaser__details__author__icon{width:1.8rem}.c-teaser__details__date{font-weight:700}.c-teaser__button{margin-top:3rem}.c-teaser-small__details{align-items:center;display:flex;gap:.4rem}.c-teaser-small__details__comments,.c-teaser-small__details__date{font-size:1.2rem;font-weight:700;line-height:1.5rem}@media only screen and (min-width:1024px){.c-teaser-small__details__comments,.c-teaser-small__details__date{font-size:1.5rem;line-height:1.5rem}}.c-teaser-small__button{justify-content:start;margin-top:.4rem}.c-teaser-small__button span{color:#212121;font-size:1.4rem;line-height:1.8rem;text-align:left}@media only screen and (min-width:1024px){.c-teaser-small__button span{font-size:1.4rem;line-height:1.8rem}}.c-accordion__row{border-bottom:.1rem solid grey;padding:2rem}@media only screen and (min-width:1024px){.c-accordion__row{padding:4rem 7rem}}.c-accordion__row.-expanded i,.c-accordion__row.-expanded-mobile i{transform:rotate(-45deg)}.c-accordion__row.-expanded .c-accordion__content,.c-accordion__row.-expanded-mobile .c-accordion__content{grid-template-rows:1fr!important}@media only screen and (min-width:1024px){.c-accordion__row.-expanded-desktop i{transform:rotate(-45deg)}.c-accordion__row.-expanded-desktop .c-accordion__content{grid-template-rows:1fr}}.c-accordion__title{background:transparent;border:0;color:inherit;cursor:pointer;display:flex;justify-content:space-between;padding:0;position:relative;text-align:left;-webkit-user-select:none;-moz-user-select:none;user-select:none;width:100%}.c-accordion__content{display:grid;grid-template-rows:0fr;transition:grid-template-rows .2s ease-in-out}.c-accordion__content__inner{color:#003e90;overflow:hidden}.c-accordion__content__inner p,.c-accordion__content__inner ul{font-family:SourceSansPro,sans-serif;line-height:130%;margin-block-end:.7rem;margin-block-start:.7rem}.c-accordion__content__inner p strong,.c-accordion__content__inner ul strong{font-family:SourceSansPro,sans-serif}.c-accordion__content__inner.-none{display:flex;flex-direction:column;max-width:89rem}.c-accordion__content__inner.-image{display:grid;grid-template-columns:1fr}.c-accordion__content__inner.-image .c-accordion__copy{margin-top:3rem}.c-accordion__content__inner.-image .c-accordion__image{grid-row:1;margin-top:3rem}@media only screen and (min-width:1024px){.c-accordion__content__inner.-image{grid-column-gap:4rem;grid-template-columns:1fr 44rem}.c-accordion__content__inner.-image .c-accordion__image{grid-column:2;grid-row:1}}.c-accordion__content__inner.-infobox{display:grid;grid-template-columns:1fr}.c-accordion__content__inner.-infobox .c-accordion__cta{grid-row:4}@media only screen and (min-width:1024px){.c-accordion__content__inner.-infobox{grid-template-columns:1fr 34rem;grid-column-gap:4rem}.c-accordion__content__inner.-infobox .c-accordion__infobox{grid-column:2;grid-row:1}}.c-accordion__copy{margin-top:0}@media only screen and (min-width:1024px){.c-accordion__copy{margin-top:4rem}}.c-accordion__cta{margin-top:4rem}.c-accordion__image{margin-top:0}@media only screen and (min-width:1024px){.c-accordion__image{margin-top:4rem}}.c-accordion__image img{height:auto;-o-object-fit:contain;object-fit:contain}.c-accordion__infobox{height:-moz-max-content;height:max-content;margin-top:4rem;padding:2rem}@media only screen and (min-width:1024px){.c-accordion__infobox{margin-top:4rem;padding:4rem}}.c-background-media{left:0;overflow:hidden;top:0;z-index:0}.c-background-media,.c-background-media .-overlay{height:100%;-o-object-fit:cover;object-fit:cover;position:absolute;width:100%}.c-background-media .-overlay{z-index:1}.c-background-media.-background .-picture img,.c-background-media.-picture img{height:100%;left:0;-o-object-fit:cover;object-fit:cover;overflow:hidden;pointer-events:none;position:absolute;top:0;width:100%;z-index:0}.c-background-media.-background .c-background-media__inner.-video video,.c-background-media.-video video{height:auto;left:0;overflow:hidden;position:absolute;top:0;width:100%;z-index:0}@media (min-aspect-ratio:16/9){.c-background-media.-background .c-background-media__inner.-video video,.c-background-media.-video video{height:auto;width:100%}}@media (max-aspect-ratio:16/9){.c-background-media.-background .c-background-media__inner.-video video,.c-background-media.-video video{height:100%;left:50%;top:50%;transform:translate(-50%,-50%);width:auto}}.c-background-media iframe,.c-background-media.-background .c-background-media__inner iframe{height:100%;left:50%;position:absolute;top:50%;transform:translate(-50%,-50%);width:100%}.c-background-media.-background .c-background-media__inner iframe{height:56.25vw;min-height:100vh;min-width:177.77vh;width:100vw}.c-media__inner.-picture img{height:auto;-o-object-fit:contain;object-fit:contain;width:100%}.c-media__inner.-video{display:flex;justify-content:center;pointer-events:none}.c-media__inner.-video video{height:auto;width:100%}.c-media__inner.-video.-iframe{height:0;padding-bottom:56.25%;position:relative}.c-media__inner.-video.-iframe iframe{height:100%;left:0;position:absolute;top:0;width:100%}.c-mediafull__inner.-iframe,.c-mediafull__inner.-picture,.c-mediafull__inner.-video{width:100%}.c-mediafull__inner.-picture{height:100%}.c-mediafull__inner.-picture img{height:auto;-o-object-fit:contain;object-fit:contain}.c-mediafull__inner.-video{display:flex;justify-content:center}.c-mediafull__inner.-video video{height:auto;width:100%}.c-mediafull__inner.-iframe{padding-bottom:56.25%;position:relative}.c-mediafull__inner.-iframe iframe{height:100%;left:0;position:absolute;top:0;width:100%}.c-mediafull.-background{height:100%;overflow:hidden;position:absolute;width:100%}.c-mediafull.-background .-overlay{height:100%;-o-object-fit:cover;object-fit:cover;pointer-events:none;position:absolute;width:100%}.c-mediafull.-background iframe,.c-mediafull.-background img,.c-mediafull.-background video{height:100%;width:100%}.c-mediafull.-background .-picture img{-o-object-fit:cover;object-fit:cover}.c-mediafull.-background .-video video{height:100%;-o-object-fit:cover;object-fit:cover;pointer-events:none;width:100%}.c-mediafull.-background .-iframe{padding-bottom:0}.c-mediafull.-lightbox{display:flex;position:relative}.c-lightbox{cursor:pointer;height:100%;left:0;position:absolute;top:0;width:100%;z-index:100}.c-lightbox__inner{background-color:#000;display:none;height:100%;max-width:100%;min-width:100%;padding:0;position:fixed;top:0;z-index:100}.c-lightbox img,.c-lightbox picture img,.c-lightbox video{height:100%;-o-object-fit:contain;object-fit:contain;width:100%}.c-lightbox picture{width:100%}.c-lightbox.-active .c-lightbox__inner{display:flex}.c-lightbox__open{height:100%;position:absolute;width:100%}.c-lightbox__open:hover{cursor:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2724%27 height=%2724%27 fill=%27none%27%3E%3Cpath stroke=%27%23000A14%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27 stroke-width=%272%27 d=%27M9 21H3v-6M14 4h6v6M20 4l-7 7M10 14l-7 7%27/%3E%3C/svg%3E") 24 24,pointer}.c-lightbox.-active .c-lightbox__open{display:none}.c-lightbox__close{align-items:center;background-color:#fff;border-radius:100%;bottom:7rem;cursor:pointer;display:flex;font-weight:900;height:4.8rem;justify-content:center;position:absolute;right:4rem;width:4.8rem;z-index:100}.c-lightbox__close:before{content:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%2724%27 height=%2724%27 fill=%27none%27%3E%3Cpath stroke=%27%23000A14%27 stroke-linecap=%27round%27 stroke-linejoin=%27round%27 stroke-width=%272%27 d=%27M4 14h6v6M20 10h-6V4M14 10l7-7M3 21l7-7%27/%3E%3C/svg%3E");height:2.3rem}.c-mediafull.-parallax iframe,.c-mediafull.-parallax img,.c-mediafull.-parallax video{height:100%;width:100%}.c-mediafull.-parallax .-picture img{-o-object-fit:cover;object-fit:cover}.c-mediafull.-parallax .-video video{height:100%;-o-object-fit:cover;object-fit:cover;pointer-events:none;width:100%}.main-menu{align-items:center;display:none;justify-content:center}@media only screen and (min-width:768px){.main-menu{display:flex;height:100%}}@media only screen and (max-width:768px){.menu-opened .main-menu,.site-header--off-canvas .main-menu{background:rgba(0,0,0,.85);display:flex;height:100dvh;left:0;position:fixed;right:0;top:0}}.main-menu ul{list-style:none}.main-menu__list{display:flex;gap:2rem;justify-content:center}@media only screen and (min-width:768px){.main-menu__list{gap:3rem;height:100%}}@media only screen and (max-width:60rem){.menu-opened .main-menu__list,.site-header--off-canvas .main-menu__list{align-items:center;flex-direction:column}}.main-menu__list>.main-menu__el>.main-menu__sub-list:first-of-type{top:calc(100% - 1rem)}@media only screen and (min-width:768px){.main-menu__list>.main-menu__el>.main-menu__sub-list{background-color:#123456;left:0;top:100%}.main-menu__list>.main-menu__el>.main-menu__sub-list .main-menu__sub-list{left:100%;top:0;z-index:1}}.main-menu__sub-list{display:none}@media only screen and (min-width:768px){.main-menu__sub-list{box-shadow:.1rem .8rem 1.5rem rgba(0,0,0,.1);position:absolute}.main-menu__sub-list li{padding:0 .7rem}.main-menu__sub-list li:not(:last-child) a{border-bottom:.1rem solid #f2f2f2}.main-menu__sub-list li a{padding:.9rem 2.1rem;text-align:left}.main-menu__sub-list li a:hover{background-color:#003e90;color:#fff}}.main-menu__el{align-items:center;display:flex;flex-direction:column;height:100%;justify-content:center;position:relative}@media only screen and (min-width:768px){.main-menu__el{align-items:start}}.main-menu__el a{align-items:center;color:#fff;display:flex;position:relative;text-decoration:none;transition:all .3s;white-space:nowrap;width:100%}@media only screen and (min-width:768px){.main-menu__el a{color:#212121}}.menu-opened .main-menu__el a{color:#fff;font-weight:700}@media only screen and (min-width:768px){.menu-opened .main-menu__el a{color:#212121}}.main-menu__el .toggle-submenu{display:flex;padding-left:1rem}@media only screen and (min-width:768px){.main-menu__el .toggle-submenu{display:none}}.main-menu__el .toggle-submenu i{color:#fff;font-size:1.5rem;transform:rotate(90deg);transition:transform .3s}.main-menu__el.-has-children:not(.-level-0) a b{gap:5px}@media only screen and (min-width:768px){.main-menu__el.-has-children:not(.-level-0) .toggle-submenu{align-items:center;display:flex;justify-content:center;padding-left:0;transform:rotate(90deg);transform:rotate(-90deg);width:2rem}.main-menu__el.-has-children:not(.-level-0) .toggle-submenu i{color:#212121}}.main-menu__el.main-menu__el--current>a{color:#fff}@media only screen and (min-width:768px){.main-menu__el.main-menu__el--current>a{color:#155497}}.main-menu__el.-opened>a .toggle-submenu i{transform:rotate(-90deg)}.main-menu__el.-opened>.main-menu__sub-list{align-items:center;display:flex;flex-direction:column;gap:1rem;margin-top:1rem}.main-menu__search{display:none}@media only screen and (min-width:768px){.main-menu__search{align-items:center;display:flex;gap:1rem}}.main-menu__search i{font-size:1.4rem}.main-menu__icon,.main-menu__search{background-color:transparent;border:none;color:#b0bec5;height:2.5rem;width:2.5rem}.main-menu__icon i,.main-menu__search i{font-size:2.5rem}.main-menu__icon img,.main-menu__search img{height:100%;width:100%}.main-menu__icon:hover,.main-menu__search:hover{opacity:.7}@media only screen and (max-width:768px){.main-menu .main-menu__list{height:calc(100dvh - 6.2rem);overflow-x:hidden;position:relative;width:100%}.main-menu .main-menu__el.-opened>.main-menu__sub-list{align-items:flex-start;display:flex;flex-direction:column;left:100%;overflow-y:auto;padding:2rem;position:absolute;top:0;transform:translateX(0);transition:transform .3s ease-in-out;z-index:10}.main-menu .main-menu__list .main-menu__el:not(.-level-0),.main-menu .main-menu__sub-list .main-menu__el:not(.-level-0){display:none}.main-menu .main-menu__el.-opened,.main-menu .main-menu__el.-opened>.main-menu__sub-list{display:block!important}.main-menu .main-menu__el.-opened .main-menu__back,.main-menu .main-menu__el.-opened .main-menu__el,.main-menu .main-menu__el.-opened>.main-menu__sub-list .main-menu__back,.main-menu .main-menu__el.-opened>.main-menu__sub-list .main-menu__el{display:flex}.main-menu .main-menu__sub-list{display:none;transform:translateX(100%);transition:transform .3s ease-in-out}.main-menu .main-menu__el.-opened>.main-menu__sub-list.-active{align-items:flex-start;display:flex;flex-direction:column;overflow-y:auto;padding:2rem;transform:translateX(0);z-index:10}.main-menu .main-menu__back{display:none}.main-menu .main-menu__back:before{margin-right:.5rem}.main-menu .main-menu__back{align-items:center;cursor:pointer;display:flex;font-size:1.6rem;font-weight:700;gap:1rem;margin-bottom:2rem}.main-menu .main-menu__back:before{content:"<";font-size:2rem}.main-menu .main-menu__el{position:relative}}@media screen and (max-width:768px){#main-menu-btn.c-burger-btn svg path{stroke:#212121!important}.main-menu{background:#efefef!important}.main-menu a,.main-menu a i,.main-menu a i:active,.main-menu a i:focus,.main-menu a:active,.main-menu a:focus{color:#155497!important}.main-menu a i:hover,.main-menu a:hover{color:#09f!important}.main-menu .main-menu__list{align-items:flex-start;gap:0;justify-content:flex-start;position:absolute;top:0}.main-menu .main-menu__el{border-bottom:1px solid #90a4ae;height:auto;width:100%}.main-menu .main-menu__el a{line-height:2.4rem;padding:1.4rem}.main-menu .main-menu__el.-opened{position:static!important}.main-menu .main-menu__el.-opened>.main-menu__sub-list{animation:slideOutToRight .3s ease forwards}.main-menu .main-menu__el.-opened>.main-menu__sub-list.-active{animation:slideInFromRight .3s ease forwards;background:#e5e5e5;display:flex!important;height:100%;left:0;margin-top:0;padding:0;position:absolute;top:0;width:100%}.main-menu .main-menu__el.-opened>.main-menu__sub-list.-active .-back{border-bottom:1px solid #90a4ae;display:flex;height:auto;width:100%}.main-menu .main-menu__el.-opened>.main-menu__sub-list.-active .-back a{color:#212121!important}}@keyframes slideInFromRight{0%{transform:translateX(-100%)}to{transform:translateX(0)}}@keyframes slideOutToRight{0%{transform:translateX(0)}to{transform:translateX(-100%)}}@media only screen and (min-width:768px){.site-header:not(.site-header--off-canvas) .main-menu__el:hover>.main-menu__sub-list{background-color:#fff;display:block;padding-bottom:1rem}.site-header:not(.site-header--off-canvas) .main-menu__el:hover>.main-menu__sub-list .main-menu__el.-level-1.-has-children .main-menu__sub-list{padding-top:1rem}}.c-burger-btn{cursor:pointer;display:block;z-index:12}@media only screen and (min-width:768px){.c-burger-btn{display:none}.menu-opened .c-burger-btn,.site-header--off-canvas .c-burger-btn{display:block}}.c-burger-btn svg{vertical-align:top}.c-burger-btn__open{color:#212121}@media only screen and (max-width:60rem){.menu-opened .c-burger-btn__open{display:none}}.c-burger-btn__close{color:#fff;display:none}@media only screen and (max-width:60rem){.menu-opened .c-burger-btn__close{display:block}}.splide__container{box-sizing:border-box;position:relative}.splide__list{backface-visibility:hidden;display:flex;height:100%;margin:0!important;padding:0!important}.splide.is-initialized:not(.is-active) .splide__list{display:block}.splide__pagination{align-items:center;display:flex;flex-wrap:wrap;justify-content:center;margin:0;pointer-events:none}.splide__pagination li{display:inline-block;line-height:1;list-style-type:none;margin:0;pointer-events:auto}.splide:not(.is-overflow) .splide__pagination{display:none}.splide__progress__bar{width:0}.splide{position:relative;visibility:hidden}.splide.is-initialized,.splide.is-rendered{visibility:visible}.splide__slide{backface-visibility:hidden;box-sizing:border-box;flex-shrink:0;list-style-type:none!important;margin:0;position:relative}.splide__slide img{vertical-align:bottom}.splide__spinner{animation:splide-loading 1s linear infinite;border:2px solid #999;border-left-color:transparent;border-radius:50%;bottom:0;contain:strict;display:inline-block;height:20px;left:0;margin:auto;position:absolute;right:0;top:0;width:20px}.splide__sr{clip:rect(0 0 0 0);border:0;height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.splide__toggle.is-active .splide__toggle__play,.splide__toggle__pause{display:none}.splide__toggle.is-active .splide__toggle__pause{display:inline}.splide__track{overflow:hidden;position:relative;z-index:0}@keyframes splide-loading{0%{transform:rotate(0)}to{transform:rotate(1turn)}}.splide__track--draggable{-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;user-select:none}.splide__track--fade>.splide__list>.splide__slide{margin:0!important;opacity:0;z-index:0}.splide__track--fade>.splide__list>.splide__slide.is-active{opacity:1;z-index:1}.splide--rtl{direction:rtl}.splide__track--ttb>.splide__list{display:block}.splide__arrow{align-items:center;background:#ccc;border:0;border-radius:50%;cursor:pointer;display:flex;height:2em;justify-content:center;opacity:.7;padding:0;position:absolute;top:50%;transform:translateY(-50%);width:2em;z-index:1}.splide__arrow svg{fill:#000;height:1.2em;width:1.2em}.splide__arrow:hover:not(:disabled){opacity:.9}.splide__arrow:disabled{opacity:.3}.splide__arrow:focus-visible{outline:3px solid #0bf;outline-offset:3px}.splide__arrow--prev{left:1em}.splide__arrow--prev svg{transform:scaleX(-1)}.splide__arrow--next{right:1em}.splide.is-focus-in .splide__arrow:focus{outline:3px solid #0bf;outline-offset:3px}.splide__pagination{bottom:.5em;left:0;padding:0 1em;position:absolute;right:0;z-index:1}.splide__pagination__page{background:#ccc;border:0;border-radius:50%;display:inline-block;height:8px;margin:3px;opacity:.7;padding:0;position:relative;transition:transform .2s linear;width:8px}.splide__pagination__page.is-active{background:#fff;transform:scale(1.4);z-index:1}.splide__pagination__page:hover{cursor:pointer;opacity:.9}.splide__pagination__page:focus-visible{outline:3px solid #0bf;outline-offset:3px}.splide.is-focus-in .splide__pagination__page:focus{outline:3px solid #0bf;outline-offset:3px}.splide__progress__bar{background:#ccc;height:3px}.splide__slide{-webkit-tap-highlight-color:rgba(0,0,0,0)}.splide__slide:focus{outline:0}@supports (outline-offset:-3px){.splide__slide:focus-visible{outline:3px solid #0bf;outline-offset:-3px}}@media screen and (-ms-high-contrast:none){.splide__slide:focus-visible{border:3px solid #0bf}}@supports (outline-offset:-3px){.splide.is-focus-in .splide__slide:focus{outline:3px solid #0bf;outline-offset:-3px}}@media screen and (-ms-high-contrast:none){.splide.is-focus-in .splide__slide:focus{border:3px solid #0bf}.splide.is-focus-in .splide__track>.splide__list>.splide__slide:focus{border-color:#0bf}}.splide__toggle{cursor:pointer}.splide__toggle:focus-visible{outline:3px solid #0bf;outline-offset:3px}.splide.is-focus-in .splide__toggle:focus{outline:3px solid #0bf;outline-offset:3px}.splide__track--nav>.splide__list>.splide__slide{border:3px solid transparent;cursor:pointer}.splide__track--nav>.splide__list>.splide__slide.is-active{border:3px solid #000}.splide__arrows--rtl .splide__arrow--prev{left:auto;right:1em}.splide__arrows--rtl .splide__arrow--prev svg{transform:scaleX(1)}.splide__arrows--rtl .splide__arrow--next{left:1em;right:auto}.splide__arrows--rtl .splide__arrow--next svg{transform:scaleX(-1)}.splide__arrows--ttb .splide__arrow{left:50%;transform:translate(-50%)}.splide__arrows--ttb .splide__arrow--prev{top:1em}.splide__arrows--ttb .splide__arrow--prev svg{transform:rotate(-90deg)}.splide__arrows--ttb .splide__arrow--next{bottom:1em;top:auto}.splide__arrows--ttb .splide__arrow--next svg{transform:rotate(90deg)}.splide__pagination--ttb{bottom:0;display:flex;flex-direction:column;left:auto;padding:1em 0;right:.5em;top:0}.splide__pagination__page.is-active{background:#003e90}.c-title__headline{-webkit-hyphens:auto;hyphens:auto}.c-icon-picker .dashicon{font-family:dashicons;font-size:6rem}.c-toc{position:fixed;right:0;top:20rem}.c-toc__title{cursor:pointer;margin-bottom:1rem}.c-toc__title p{font-size:1.4rem}@media only screen and (min-width:768px){.c-toc__title{cursor:default;margin-bottom:4.4rem}}.c-toc__list{list-style:none;max-height:unset}.c-toc__list--open{max-height:100rem}.c-toc__list li{margin-bottom:1rem}.c-toc__list li a.c-cta.-active,.c-toc__list li a.c-cta:hover{color:#09f}#start{position:absolute;top:0}.c-floating-buttons{align-items:end;bottom:1rem;display:flex;flex-direction:column;gap:1rem;position:fixed;right:1rem;transition:opacity .3s}.c-floating-buttons__button{background-color:#003e90;border:none!important;border-radius:5rem;color:#fff;height:5.5rem;justify-content:flex-start;max-width:5.5rem;overflow:hidden;padding:0!important;transition:all 1s ease}.c-floating-buttons__button i{min-width:5.5rem;text-align:center}.c-floating-buttons__button span{font-weight:300!important;padding-right:2.5rem;white-space:nowrap}.c-floating-buttons__button:hover{border:none!important;max-width:50rem}.c-search-modal{align-items:center;background-color:#003e90;display:flex;inset:0;justify-content:center;opacity:0;position:fixed;transition:opacity .3s linear,z-index .3s linear .3s;z-index:-1}.c-search-modal.is-active{opacity:1;transition:opacity .3s linear,z-index 0s linear;z-index:999}.c-search-modal__close{background-color:transparent;border:0;color:#fff;padding:0;position:fixed;right:2rem;top:5rem}@media only screen and (min-width:768px){.c-search-modal__close{right:4rem}}.c-search-modal__close i{font-size:4.6rem}.c-search-modal__form{color:#fff;max-width:50rem;padding-left:2rem;padding-right:2rem;text-align:center;width:100%}@media only screen and (min-width:768px){.c-search-modal__form{padding-left:4rem;padding-right:4rem}}.c-search-modal__form__label{display:block;font-size:3.4rem;font-weight:700;line-height:3.4rem;margin-bottom:2.5rem}@media only screen and (min-width:1024px){.c-search-modal__form__label{font-size:3.4rem;line-height:3.4rem}}.c-search-modal__form__input{background:transparent;border:0;border-bottom:.3rem solid #fff;color:#fff;font-size:3.2rem;height:4.5rem;line-height:4rem;width:100%}@media only screen and (min-width:1024px){.c-search-modal__form__input{font-size:3.2rem;line-height:4rem}}.c-search-modal__form__button{background:transparent;border:.1rem solid #fff;color:#fff;cursor:pointer;font-size:1.1rem;font-weight:700;line-height:1.2rem;margin-top:2.5rem;min-width:14rem;padding:1.5rem 2rem;transition:all .3s linear}@media only screen and (min-width:1024px){.c-search-modal__form__button{font-size:1.1rem;line-height:1.2rem}}.c-search-modal__form__button:hover{background:hsla(0,0%,100%,.3)}.wp-block-table{padding-bottom:5rem;padding-top:5rem}@media only screen and (min-width:768px){.wp-block-table{padding-bottom:10rem;padding-top:10rem}}.wp-block-table table{table-layout:unset!important}.wp-block-table tr:first-of-type{background-color:#003e90;color:#fff}.wp-block-table tr{display:grid;grid-template-columns:repeat(auto-fit,minmax(1rem,1fr));min-width:100rem}.wp-block-table td{align-items:flex-start;border:0;border-bottom:1px solid #003e90;border-right:1px solid #003e90;display:flex;justify-content:flex-start;padding:1rem}.wp-block-table td:first-of-type{border-left:1px solid #003e90}@media only screen and (min-width:1024px){.wp-block-table td{padding:2rem}}.toastify{background:#003e90;border-radius:2.5rem;color:#fff;cursor:pointer;display:inline-block;font-weight:700;max-width:calc(50% - 20px);opacity:0;padding:1.2rem 2rem;position:fixed;text-decoration:none;transition:all .4s cubic-bezier(.215,.61,.355,1);z-index:2000}.toastify.error{background:#b30936}.toastify.success{background:#2f9f09}.toastify.on{opacity:1}.toastify-close{background:transparent;border:0;color:#fff;cursor:pointer;font-family:inherit;opacity:.4;padding:0 .5rem}.toastify-left,.toastify-right{left:0;margin-left:auto;margin-right:auto;max-width:-moz-fit-content;max-width:fit-content;right:0}.toastify-top{top:-15rem}.toastify-bottom{bottom:-15rem}.toastify-rounded{border-radius:2.5rem}.toastify-center{left:0;margin-left:auto;margin-right:auto;max-width:-moz-fit-content;max-width:fit-content;right:0}@media only screen and (min-width:768px){.toastify-right{right:1.5rem}.toastify-left{left:1.5rem}}.error404__inner{align-items:center;display:flex;flex-direction:column;gap:1rem;justify-content:center;margin-left:auto;margin-right:auto;max-width:120rem;min-height:100vh;padding-left:2rem;padding-right:2rem;position:relative;text-align:center;width:100%}@media only screen and (min-width:768px){.error404__inner{gap:1.5rem;padding-left:4rem;padding-right:4rem}}.post-main .b-copy-media__headline{display:block;font-size:3.2rem;line-height:3.5rem;margin-bottom:2.5rem}@media only screen and (min-width:1024px){.post-main .b-copy-media__headline{font-size:4rem;line-height:4.2rem}}@media only screen and (min-width:768px){.post-main .b-copy-media__headline{margin-bottom:2rem}}.post-main__button{font-size:1.4rem;font-weight:700;line-height:1.4rem}@media only screen and (min-width:1024px){.post-main__button{font-size:1.4rem;line-height:1.4rem}}.post-main__button span{align-items:center;display:flex!important;flex-direction:row}.post-main__button img{height:1.4rem;margin:0 .5rem;-o-object-fit:contain;object-fit:contain;width:1.8rem}.post-main__details{color:#003e90;font-size:1.5rem;line-height:2rem}@media only screen and (min-width:1024px){.post-main__details{font-size:1.5rem;line-height:2rem}}.post-main__details__comments i{font-size:1.2rem;margin-right:.5rem}.post-main__details__caption{font-size:1.4rem;font-weight:700;line-height:1.4rem;margin-bottom:0}@media only screen and (min-width:1024px){.post-main__details__caption{font-size:1.4rem;line-height:1.4rem}}.post-main__title{border-bottom:1px dotted rgba(0,0,0,.5);color:#003e90;font-size:3rem;line-height:3.5rem;margin-bottom:3rem;margin-top:0;padding:3rem 0}@media only screen and (min-width:1024px){.post-main__title{font-size:4rem;line-height:4rem}}@media only screen and (min-width:768px){.post-main__title{padding:3rem 0}}.post-main__thumbnail{aspect-ratio:880/412;-o-object-fit:cover;object-fit:cover;position:relative}.post-main__thumbnail__caption{background:#003e90;bottom:0;color:#fff;font-size:1.2rem;left:0;line-height:1.5rem;margin:2.5rem 0 2rem;padding:1rem}@media only screen and (min-width:1024px){.post-main__thumbnail__caption{font-size:1.2rem;line-height:1.5rem}}@media only screen and (min-width:768px){.post-main__thumbnail__caption{margin-left:2rem;position:absolute!important}}
