@charset "UTF-8";@import url("//hello.myfonts.net/count/3768a5");/*!
 * 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;
}
.animate__flipInX {
  -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;
}
.animate__flipInY {
  -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-backface-visibility: visible !important;
  backface-visibility: visible !important;
}
.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-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-backface-visibility: visible !important;
  backface-visibility: visible !important;
}
.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-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;
}


/* Document
 * ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 */
:where(html) {
  line-height: 1.15; /* 1 */
}
/* Sections
 * ========================================================================== */
/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Edge, Firefox, and Safari.
 */
:where(h1) {
  font-size: 2em;
  margin-bottom: 0.67em;
  margin-top: 0.67em;
}
/* Grouping content
 * ========================================================================== */
/**
 * Remove the margin on nested lists in Chrome, Edge, and Safari.
 */
:where(dl, ol, ul) :where(dl, ol, ul) {
  margin-bottom: 0;
  margin-top: 0;
}
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Correct the inheritance of border color in Firefox.
 */
:where(hr) {
  -webkit-box-sizing: content-box;
          box-sizing: content-box; /* 1 */
  color: inherit; /* 2 */
  height: 0; /* 1 */
}
/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
:where(pre) {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}
/* Text-level semantics
 * ========================================================================== */
/**
 * Add the correct text decoration in Safari.
 */
:where(abbr[title]) {
  text-decoration: underline;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted currentColor;
          text-decoration: underline dotted currentColor;
}
/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
:where(b, strong) {
  font-weight: bolder;
}
/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
:where(code, kbd, samp) {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}
/**
 * Add the correct font size in all browsers.
 */
:where(small) {
  font-size: 80%;
}
/* Tabular data
 * ========================================================================== */
/**
 * 1. Correct table border color in Chrome, Edge, and Safari.
 * 2. Remove text indentation from table contents in Chrome, Edge, and Safari.
 */
:where(table) {
  border-color: currentColor; /* 1 */
  text-indent: 0; /* 2 */
}
/* Forms
 * ========================================================================== */
/**
 * Remove the margin on controls in Safari.
 */
:where(button, input, select) {
  margin: 0;
}
/**
 * Remove the inheritance of text transform in Firefox.
 */
:where(button) {
  text-transform: none;
}
/**
 * Correct the inability to style buttons in iOS and Safari.
 */
:where(button, input[type="button" i]) {
  -webkit-appearance: button;
}
:where(button, input[type="reset" i]) {
  -webkit-appearance: button;
}
:where(button, input[type="submit" i]) {
  -webkit-appearance: button;
}
/**
 * Add the correct vertical alignment in Chrome, Edge, and Firefox.
 */
:where(progress) {
  vertical-align: baseline;
}
/**
 * Remove the inheritance of text transform in Firefox.
 */
:where(select) {
  text-transform: none;
}
/**
 * Remove the margin in Firefox and Safari.
 */
:where(textarea) {
  margin: 0;
}
/**
 * 1. Correct the odd appearance in Chrome, Edge, and Safari.
 * 2. Correct the outline style in Safari.
 */
:where(input[type="search" i]) {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}
/**
 * Correct the cursor style of increment and decrement buttons in Safari.
 */
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}
/**
 * Correct the text style of placeholders in Chrome, Edge, and Safari.
 */
::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54;
}
/**
 * Remove the inner padding in Chrome, Edge, and Safari on macOS.
 */
::-webkit-search-decoration {
  -webkit-appearance: none;
}
/**
 * 1. Correct the inability to style upload buttons in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}
/**
 * Remove the inner border and padding of focus outlines in Firefox.
 */
:where(button, input[type="button" i])::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
:where(button, input[type="color" i])::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
:where(button, input[type="reset" i])::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
:where(button, input[type="submit" i])::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
/**
 * Restore the focus outline styles unset by the previous rule in Firefox.
 */
:where(button, input[type="button" i])::-moz-focusring {
  outline: 1px dotted ButtonText;
}
:where(button, input[type="color" i])::-moz-focusring {
  outline: 1px dotted ButtonText;
}
:where(button, input[type="reset" i])::-moz-focusring {
  outline: 1px dotted ButtonText;
}
:where(button, input[type="submit" i])::-moz-focusring {
  outline: 1px dotted ButtonText;
}
/**
 * Remove the additional :invalid styles in Firefox.
 */
:where(:-moz-ui-invalid) {
  box-shadow: none;
}
/* Interactive
 * ========================================================================== */
/*
 * Add the correct styles in Safari.
 */
:where(dialog) {
  background-color: white;
  border: solid;
  color: black;
  height: -moz-fit-content;
  height: -webkit-fit-content;
  height: fit-content;
  left: 0;
  margin: auto;
  padding: 1em;
  position: absolute;
  right: 0;
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
}
:where(dialog:not([open])) {
  display: none;
}
/*
 * Add the correct display in all browsers.
 */
:where(summary) {
  display: list-item;
}
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
* {
  padding: 0;
  margin: 0;
}
html,
body {
  height: 100%;
}
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}
p,
h1,
h2,
h3,
h4,
h5,
h6,
li,
dl,
dt,
blockquote {
  word-wrap: break-word;
}
a,
area,
button,
[role=button],
input,
label,
select,
summary,
textarea {
  -ms-touch-action: manipulation;
      touch-action: manipulation;
  font-size: 1em;
}
/* --------------------------------------------------------------
# Modules
-------------------------------------------------------------- */
@font-face {
  font-family: "swiper-icons";
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #007aff;
}
.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
}
.swiper-container-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}
.swiper-container-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
          transform: translate3d(0px, 0, 0);
}
.swiper-container-multirow > .swiper-wrapper {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.swiper-container-multirow-column > .swiper-wrapper {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.swiper-container-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
  margin: 0 auto;
}
.swiper-container-pointer-events {
  -ms-touch-action: pan-y;
      touch-action: pan-y;
}
.swiper-container-pointer-events.swiper-container-vertical {
  -ms-touch-action: pan-x;
      touch-action: pan-x;
}
.swiper-slide {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}
.swiper-container-autoheight .swiper-wrapper {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform;
}
/* 3D Effects */
.swiper-container-3d {
  -webkit-perspective: 1200px;
          perspective: 1200px;
}
.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-container-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
/* CSS Mode */
.swiper-container-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none; /* For Firefox */
  -ms-overflow-style: none; /* For Internet Explorer and Edge */
}
.swiper-container-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}
.swiper-container-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}
.swiper-container-horizontal.swiper-container-css-mode > .swiper-wrapper {
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory;
}
.swiper-container-vertical.swiper-container-css-mode > .swiper-wrapper {
  -ms-scroll-snap-type: y mandatory;
      scroll-snap-type: y mandatory;
}
body[data-aos-duration="50"] [data-aos], [data-aos][data-aos][data-aos-duration="50"] {
  -webkit-transition-duration: 50ms;
          transition-duration: 50ms;
}
body[data-aos-delay="50"] [data-aos], [data-aos][data-aos][data-aos-delay="50"] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}
body[data-aos-delay="50"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="50"].aos-animate {
  -webkit-transition-delay: 50ms;
          transition-delay: 50ms;
}
body[data-aos-duration="100"] [data-aos], [data-aos][data-aos][data-aos-duration="100"] {
  -webkit-transition-duration: 100ms;
          transition-duration: 100ms;
}
body[data-aos-delay="100"] [data-aos], [data-aos][data-aos][data-aos-delay="100"] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}
body[data-aos-delay="100"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="100"].aos-animate {
  -webkit-transition-delay: 100ms;
          transition-delay: 100ms;
}
body[data-aos-duration="150"] [data-aos], [data-aos][data-aos][data-aos-duration="150"] {
  -webkit-transition-duration: 150ms;
          transition-duration: 150ms;
}
body[data-aos-delay="150"] [data-aos], [data-aos][data-aos][data-aos-delay="150"] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}
body[data-aos-delay="150"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="150"].aos-animate {
  -webkit-transition-delay: 150ms;
          transition-delay: 150ms;
}
body[data-aos-duration="200"] [data-aos], [data-aos][data-aos][data-aos-duration="200"] {
  -webkit-transition-duration: 200ms;
          transition-duration: 200ms;
}
body[data-aos-delay="200"] [data-aos], [data-aos][data-aos][data-aos-delay="200"] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}
body[data-aos-delay="200"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="200"].aos-animate {
  -webkit-transition-delay: 200ms;
          transition-delay: 200ms;
}
body[data-aos-duration="250"] [data-aos], [data-aos][data-aos][data-aos-duration="250"] {
  -webkit-transition-duration: 250ms;
          transition-duration: 250ms;
}
body[data-aos-delay="250"] [data-aos], [data-aos][data-aos][data-aos-delay="250"] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}
body[data-aos-delay="250"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="250"].aos-animate {
  -webkit-transition-delay: 250ms;
          transition-delay: 250ms;
}
body[data-aos-duration="300"] [data-aos], [data-aos][data-aos][data-aos-duration="300"] {
  -webkit-transition-duration: 300ms;
          transition-duration: 300ms;
}
body[data-aos-delay="300"] [data-aos], [data-aos][data-aos][data-aos-delay="300"] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}
body[data-aos-delay="300"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="300"].aos-animate {
  -webkit-transition-delay: 300ms;
          transition-delay: 300ms;
}
body[data-aos-duration="350"] [data-aos], [data-aos][data-aos][data-aos-duration="350"] {
  -webkit-transition-duration: 350ms;
          transition-duration: 350ms;
}
body[data-aos-delay="350"] [data-aos], [data-aos][data-aos][data-aos-delay="350"] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}
body[data-aos-delay="350"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="350"].aos-animate {
  -webkit-transition-delay: 350ms;
          transition-delay: 350ms;
}
body[data-aos-duration="400"] [data-aos], [data-aos][data-aos][data-aos-duration="400"] {
  -webkit-transition-duration: 400ms;
          transition-duration: 400ms;
}
body[data-aos-delay="400"] [data-aos], [data-aos][data-aos][data-aos-delay="400"] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}
body[data-aos-delay="400"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="400"].aos-animate {
  -webkit-transition-delay: 400ms;
          transition-delay: 400ms;
}
body[data-aos-duration="450"] [data-aos], [data-aos][data-aos][data-aos-duration="450"] {
  -webkit-transition-duration: 450ms;
          transition-duration: 450ms;
}
body[data-aos-delay="450"] [data-aos], [data-aos][data-aos][data-aos-delay="450"] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}
body[data-aos-delay="450"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="450"].aos-animate {
  -webkit-transition-delay: 450ms;
          transition-delay: 450ms;
}
body[data-aos-duration="500"] [data-aos], [data-aos][data-aos][data-aos-duration="500"] {
  -webkit-transition-duration: 500ms;
          transition-duration: 500ms;
}
body[data-aos-delay="500"] [data-aos], [data-aos][data-aos][data-aos-delay="500"] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}
body[data-aos-delay="500"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="500"].aos-animate {
  -webkit-transition-delay: 500ms;
          transition-delay: 500ms;
}
body[data-aos-duration="550"] [data-aos], [data-aos][data-aos][data-aos-duration="550"] {
  -webkit-transition-duration: 550ms;
          transition-duration: 550ms;
}
body[data-aos-delay="550"] [data-aos], [data-aos][data-aos][data-aos-delay="550"] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}
body[data-aos-delay="550"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="550"].aos-animate {
  -webkit-transition-delay: 550ms;
          transition-delay: 550ms;
}
body[data-aos-duration="600"] [data-aos], [data-aos][data-aos][data-aos-duration="600"] {
  -webkit-transition-duration: 600ms;
          transition-duration: 600ms;
}
body[data-aos-delay="600"] [data-aos], [data-aos][data-aos][data-aos-delay="600"] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}
body[data-aos-delay="600"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="600"].aos-animate {
  -webkit-transition-delay: 600ms;
          transition-delay: 600ms;
}
body[data-aos-duration="650"] [data-aos], [data-aos][data-aos][data-aos-duration="650"] {
  -webkit-transition-duration: 650ms;
          transition-duration: 650ms;
}
body[data-aos-delay="650"] [data-aos], [data-aos][data-aos][data-aos-delay="650"] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}
body[data-aos-delay="650"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="650"].aos-animate {
  -webkit-transition-delay: 650ms;
          transition-delay: 650ms;
}
body[data-aos-duration="700"] [data-aos], [data-aos][data-aos][data-aos-duration="700"] {
  -webkit-transition-duration: 700ms;
          transition-duration: 700ms;
}
body[data-aos-delay="700"] [data-aos], [data-aos][data-aos][data-aos-delay="700"] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}
body[data-aos-delay="700"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="700"].aos-animate {
  -webkit-transition-delay: 700ms;
          transition-delay: 700ms;
}
body[data-aos-duration="750"] [data-aos], [data-aos][data-aos][data-aos-duration="750"] {
  -webkit-transition-duration: 750ms;
          transition-duration: 750ms;
}
body[data-aos-delay="750"] [data-aos], [data-aos][data-aos][data-aos-delay="750"] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}
body[data-aos-delay="750"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="750"].aos-animate {
  -webkit-transition-delay: 750ms;
          transition-delay: 750ms;
}
body[data-aos-duration="800"] [data-aos], [data-aos][data-aos][data-aos-duration="800"] {
  -webkit-transition-duration: 800ms;
          transition-duration: 800ms;
}
body[data-aos-delay="800"] [data-aos], [data-aos][data-aos][data-aos-delay="800"] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}
body[data-aos-delay="800"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="800"].aos-animate {
  -webkit-transition-delay: 800ms;
          transition-delay: 800ms;
}
body[data-aos-duration="850"] [data-aos], [data-aos][data-aos][data-aos-duration="850"] {
  -webkit-transition-duration: 850ms;
          transition-duration: 850ms;
}
body[data-aos-delay="850"] [data-aos], [data-aos][data-aos][data-aos-delay="850"] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}
body[data-aos-delay="850"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="850"].aos-animate {
  -webkit-transition-delay: 850ms;
          transition-delay: 850ms;
}
body[data-aos-duration="900"] [data-aos], [data-aos][data-aos][data-aos-duration="900"] {
  -webkit-transition-duration: 900ms;
          transition-duration: 900ms;
}
body[data-aos-delay="900"] [data-aos], [data-aos][data-aos][data-aos-delay="900"] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}
body[data-aos-delay="900"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="900"].aos-animate {
  -webkit-transition-delay: 900ms;
          transition-delay: 900ms;
}
body[data-aos-duration="950"] [data-aos], [data-aos][data-aos][data-aos-duration="950"] {
  -webkit-transition-duration: 950ms;
          transition-duration: 950ms;
}
body[data-aos-delay="950"] [data-aos], [data-aos][data-aos][data-aos-delay="950"] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}
body[data-aos-delay="950"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="950"].aos-animate {
  -webkit-transition-delay: 950ms;
          transition-delay: 950ms;
}
body[data-aos-duration="1000"] [data-aos], [data-aos][data-aos][data-aos-duration="1000"] {
  -webkit-transition-duration: 1000ms;
          transition-duration: 1000ms;
}
body[data-aos-delay="1000"] [data-aos], [data-aos][data-aos][data-aos-delay="1000"] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}
body[data-aos-delay="1000"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="1000"].aos-animate {
  -webkit-transition-delay: 1000ms;
          transition-delay: 1000ms;
}
body[data-aos-duration="1050"] [data-aos], [data-aos][data-aos][data-aos-duration="1050"] {
  -webkit-transition-duration: 1050ms;
          transition-duration: 1050ms;
}
body[data-aos-delay="1050"] [data-aos], [data-aos][data-aos][data-aos-delay="1050"] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}
body[data-aos-delay="1050"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="1050"].aos-animate {
  -webkit-transition-delay: 1050ms;
          transition-delay: 1050ms;
}
body[data-aos-duration="1100"] [data-aos], [data-aos][data-aos][data-aos-duration="1100"] {
  -webkit-transition-duration: 1100ms;
          transition-duration: 1100ms;
}
body[data-aos-delay="1100"] [data-aos], [data-aos][data-aos][data-aos-delay="1100"] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}
body[data-aos-delay="1100"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="1100"].aos-animate {
  -webkit-transition-delay: 1100ms;
          transition-delay: 1100ms;
}
body[data-aos-duration="1150"] [data-aos], [data-aos][data-aos][data-aos-duration="1150"] {
  -webkit-transition-duration: 1150ms;
          transition-duration: 1150ms;
}
body[data-aos-delay="1150"] [data-aos], [data-aos][data-aos][data-aos-delay="1150"] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}
body[data-aos-delay="1150"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="1150"].aos-animate {
  -webkit-transition-delay: 1150ms;
          transition-delay: 1150ms;
}
body[data-aos-duration="1200"] [data-aos], [data-aos][data-aos][data-aos-duration="1200"] {
  -webkit-transition-duration: 1200ms;
          transition-duration: 1200ms;
}
body[data-aos-delay="1200"] [data-aos], [data-aos][data-aos][data-aos-delay="1200"] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}
body[data-aos-delay="1200"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="1200"].aos-animate {
  -webkit-transition-delay: 1200ms;
          transition-delay: 1200ms;
}
body[data-aos-duration="1250"] [data-aos], [data-aos][data-aos][data-aos-duration="1250"] {
  -webkit-transition-duration: 1250ms;
          transition-duration: 1250ms;
}
body[data-aos-delay="1250"] [data-aos], [data-aos][data-aos][data-aos-delay="1250"] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}
body[data-aos-delay="1250"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="1250"].aos-animate {
  -webkit-transition-delay: 1250ms;
          transition-delay: 1250ms;
}
body[data-aos-duration="1300"] [data-aos], [data-aos][data-aos][data-aos-duration="1300"] {
  -webkit-transition-duration: 1300ms;
          transition-duration: 1300ms;
}
body[data-aos-delay="1300"] [data-aos], [data-aos][data-aos][data-aos-delay="1300"] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}
body[data-aos-delay="1300"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="1300"].aos-animate {
  -webkit-transition-delay: 1300ms;
          transition-delay: 1300ms;
}
body[data-aos-duration="1350"] [data-aos], [data-aos][data-aos][data-aos-duration="1350"] {
  -webkit-transition-duration: 1350ms;
          transition-duration: 1350ms;
}
body[data-aos-delay="1350"] [data-aos], [data-aos][data-aos][data-aos-delay="1350"] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}
body[data-aos-delay="1350"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="1350"].aos-animate {
  -webkit-transition-delay: 1350ms;
          transition-delay: 1350ms;
}
body[data-aos-duration="1400"] [data-aos], [data-aos][data-aos][data-aos-duration="1400"] {
  -webkit-transition-duration: 1400ms;
          transition-duration: 1400ms;
}
body[data-aos-delay="1400"] [data-aos], [data-aos][data-aos][data-aos-delay="1400"] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}
body[data-aos-delay="1400"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="1400"].aos-animate {
  -webkit-transition-delay: 1400ms;
          transition-delay: 1400ms;
}
body[data-aos-duration="1450"] [data-aos], [data-aos][data-aos][data-aos-duration="1450"] {
  -webkit-transition-duration: 1450ms;
          transition-duration: 1450ms;
}
body[data-aos-delay="1450"] [data-aos], [data-aos][data-aos][data-aos-delay="1450"] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}
body[data-aos-delay="1450"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="1450"].aos-animate {
  -webkit-transition-delay: 1450ms;
          transition-delay: 1450ms;
}
body[data-aos-duration="1500"] [data-aos], [data-aos][data-aos][data-aos-duration="1500"] {
  -webkit-transition-duration: 1500ms;
          transition-duration: 1500ms;
}
body[data-aos-delay="1500"] [data-aos], [data-aos][data-aos][data-aos-delay="1500"] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}
body[data-aos-delay="1500"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="1500"].aos-animate {
  -webkit-transition-delay: 1500ms;
          transition-delay: 1500ms;
}
body[data-aos-duration="1550"] [data-aos], [data-aos][data-aos][data-aos-duration="1550"] {
  -webkit-transition-duration: 1550ms;
          transition-duration: 1550ms;
}
body[data-aos-delay="1550"] [data-aos], [data-aos][data-aos][data-aos-delay="1550"] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}
body[data-aos-delay="1550"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="1550"].aos-animate {
  -webkit-transition-delay: 1550ms;
          transition-delay: 1550ms;
}
body[data-aos-duration="1600"] [data-aos], [data-aos][data-aos][data-aos-duration="1600"] {
  -webkit-transition-duration: 1600ms;
          transition-duration: 1600ms;
}
body[data-aos-delay="1600"] [data-aos], [data-aos][data-aos][data-aos-delay="1600"] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}
body[data-aos-delay="1600"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="1600"].aos-animate {
  -webkit-transition-delay: 1600ms;
          transition-delay: 1600ms;
}
body[data-aos-duration="1650"] [data-aos], [data-aos][data-aos][data-aos-duration="1650"] {
  -webkit-transition-duration: 1650ms;
          transition-duration: 1650ms;
}
body[data-aos-delay="1650"] [data-aos], [data-aos][data-aos][data-aos-delay="1650"] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}
body[data-aos-delay="1650"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="1650"].aos-animate {
  -webkit-transition-delay: 1650ms;
          transition-delay: 1650ms;
}
body[data-aos-duration="1700"] [data-aos], [data-aos][data-aos][data-aos-duration="1700"] {
  -webkit-transition-duration: 1700ms;
          transition-duration: 1700ms;
}
body[data-aos-delay="1700"] [data-aos], [data-aos][data-aos][data-aos-delay="1700"] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}
body[data-aos-delay="1700"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="1700"].aos-animate {
  -webkit-transition-delay: 1700ms;
          transition-delay: 1700ms;
}
body[data-aos-duration="1750"] [data-aos], [data-aos][data-aos][data-aos-duration="1750"] {
  -webkit-transition-duration: 1750ms;
          transition-duration: 1750ms;
}
body[data-aos-delay="1750"] [data-aos], [data-aos][data-aos][data-aos-delay="1750"] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}
body[data-aos-delay="1750"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="1750"].aos-animate {
  -webkit-transition-delay: 1750ms;
          transition-delay: 1750ms;
}
body[data-aos-duration="1800"] [data-aos], [data-aos][data-aos][data-aos-duration="1800"] {
  -webkit-transition-duration: 1800ms;
          transition-duration: 1800ms;
}
body[data-aos-delay="1800"] [data-aos], [data-aos][data-aos][data-aos-delay="1800"] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}
body[data-aos-delay="1800"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="1800"].aos-animate {
  -webkit-transition-delay: 1800ms;
          transition-delay: 1800ms;
}
body[data-aos-duration="1850"] [data-aos], [data-aos][data-aos][data-aos-duration="1850"] {
  -webkit-transition-duration: 1850ms;
          transition-duration: 1850ms;
}
body[data-aos-delay="1850"] [data-aos], [data-aos][data-aos][data-aos-delay="1850"] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}
body[data-aos-delay="1850"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="1850"].aos-animate {
  -webkit-transition-delay: 1850ms;
          transition-delay: 1850ms;
}
body[data-aos-duration="1900"] [data-aos], [data-aos][data-aos][data-aos-duration="1900"] {
  -webkit-transition-duration: 1900ms;
          transition-duration: 1900ms;
}
body[data-aos-delay="1900"] [data-aos], [data-aos][data-aos][data-aos-delay="1900"] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}
body[data-aos-delay="1900"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="1900"].aos-animate {
  -webkit-transition-delay: 1900ms;
          transition-delay: 1900ms;
}
body[data-aos-duration="1950"] [data-aos], [data-aos][data-aos][data-aos-duration="1950"] {
  -webkit-transition-duration: 1950ms;
          transition-duration: 1950ms;
}
body[data-aos-delay="1950"] [data-aos], [data-aos][data-aos][data-aos-delay="1950"] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}
body[data-aos-delay="1950"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="1950"].aos-animate {
  -webkit-transition-delay: 1950ms;
          transition-delay: 1950ms;
}
body[data-aos-duration="2000"] [data-aos], [data-aos][data-aos][data-aos-duration="2000"] {
  -webkit-transition-duration: 2000ms;
          transition-duration: 2000ms;
}
body[data-aos-delay="2000"] [data-aos], [data-aos][data-aos][data-aos-delay="2000"] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}
body[data-aos-delay="2000"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="2000"].aos-animate {
  -webkit-transition-delay: 2000ms;
          transition-delay: 2000ms;
}
body[data-aos-duration="2050"] [data-aos], [data-aos][data-aos][data-aos-duration="2050"] {
  -webkit-transition-duration: 2050ms;
          transition-duration: 2050ms;
}
body[data-aos-delay="2050"] [data-aos], [data-aos][data-aos][data-aos-delay="2050"] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}
body[data-aos-delay="2050"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="2050"].aos-animate {
  -webkit-transition-delay: 2050ms;
          transition-delay: 2050ms;
}
body[data-aos-duration="2100"] [data-aos], [data-aos][data-aos][data-aos-duration="2100"] {
  -webkit-transition-duration: 2100ms;
          transition-duration: 2100ms;
}
body[data-aos-delay="2100"] [data-aos], [data-aos][data-aos][data-aos-delay="2100"] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}
body[data-aos-delay="2100"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="2100"].aos-animate {
  -webkit-transition-delay: 2100ms;
          transition-delay: 2100ms;
}
body[data-aos-duration="2150"] [data-aos], [data-aos][data-aos][data-aos-duration="2150"] {
  -webkit-transition-duration: 2150ms;
          transition-duration: 2150ms;
}
body[data-aos-delay="2150"] [data-aos], [data-aos][data-aos][data-aos-delay="2150"] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}
body[data-aos-delay="2150"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="2150"].aos-animate {
  -webkit-transition-delay: 2150ms;
          transition-delay: 2150ms;
}
body[data-aos-duration="2200"] [data-aos], [data-aos][data-aos][data-aos-duration="2200"] {
  -webkit-transition-duration: 2200ms;
          transition-duration: 2200ms;
}
body[data-aos-delay="2200"] [data-aos], [data-aos][data-aos][data-aos-delay="2200"] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}
body[data-aos-delay="2200"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="2200"].aos-animate {
  -webkit-transition-delay: 2200ms;
          transition-delay: 2200ms;
}
body[data-aos-duration="2250"] [data-aos], [data-aos][data-aos][data-aos-duration="2250"] {
  -webkit-transition-duration: 2250ms;
          transition-duration: 2250ms;
}
body[data-aos-delay="2250"] [data-aos], [data-aos][data-aos][data-aos-delay="2250"] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}
body[data-aos-delay="2250"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="2250"].aos-animate {
  -webkit-transition-delay: 2250ms;
          transition-delay: 2250ms;
}
body[data-aos-duration="2300"] [data-aos], [data-aos][data-aos][data-aos-duration="2300"] {
  -webkit-transition-duration: 2300ms;
          transition-duration: 2300ms;
}
body[data-aos-delay="2300"] [data-aos], [data-aos][data-aos][data-aos-delay="2300"] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}
body[data-aos-delay="2300"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="2300"].aos-animate {
  -webkit-transition-delay: 2300ms;
          transition-delay: 2300ms;
}
body[data-aos-duration="2350"] [data-aos], [data-aos][data-aos][data-aos-duration="2350"] {
  -webkit-transition-duration: 2350ms;
          transition-duration: 2350ms;
}
body[data-aos-delay="2350"] [data-aos], [data-aos][data-aos][data-aos-delay="2350"] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}
body[data-aos-delay="2350"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="2350"].aos-animate {
  -webkit-transition-delay: 2350ms;
          transition-delay: 2350ms;
}
body[data-aos-duration="2400"] [data-aos], [data-aos][data-aos][data-aos-duration="2400"] {
  -webkit-transition-duration: 2400ms;
          transition-duration: 2400ms;
}
body[data-aos-delay="2400"] [data-aos], [data-aos][data-aos][data-aos-delay="2400"] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}
body[data-aos-delay="2400"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="2400"].aos-animate {
  -webkit-transition-delay: 2400ms;
          transition-delay: 2400ms;
}
body[data-aos-duration="2450"] [data-aos], [data-aos][data-aos][data-aos-duration="2450"] {
  -webkit-transition-duration: 2450ms;
          transition-duration: 2450ms;
}
body[data-aos-delay="2450"] [data-aos], [data-aos][data-aos][data-aos-delay="2450"] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}
body[data-aos-delay="2450"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="2450"].aos-animate {
  -webkit-transition-delay: 2450ms;
          transition-delay: 2450ms;
}
body[data-aos-duration="2500"] [data-aos], [data-aos][data-aos][data-aos-duration="2500"] {
  -webkit-transition-duration: 2500ms;
          transition-duration: 2500ms;
}
body[data-aos-delay="2500"] [data-aos], [data-aos][data-aos][data-aos-delay="2500"] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}
body[data-aos-delay="2500"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="2500"].aos-animate {
  -webkit-transition-delay: 2500ms;
          transition-delay: 2500ms;
}
body[data-aos-duration="2550"] [data-aos], [data-aos][data-aos][data-aos-duration="2550"] {
  -webkit-transition-duration: 2550ms;
          transition-duration: 2550ms;
}
body[data-aos-delay="2550"] [data-aos], [data-aos][data-aos][data-aos-delay="2550"] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}
body[data-aos-delay="2550"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="2550"].aos-animate {
  -webkit-transition-delay: 2550ms;
          transition-delay: 2550ms;
}
body[data-aos-duration="2600"] [data-aos], [data-aos][data-aos][data-aos-duration="2600"] {
  -webkit-transition-duration: 2600ms;
          transition-duration: 2600ms;
}
body[data-aos-delay="2600"] [data-aos], [data-aos][data-aos][data-aos-delay="2600"] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}
body[data-aos-delay="2600"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="2600"].aos-animate {
  -webkit-transition-delay: 2600ms;
          transition-delay: 2600ms;
}
body[data-aos-duration="2650"] [data-aos], [data-aos][data-aos][data-aos-duration="2650"] {
  -webkit-transition-duration: 2650ms;
          transition-duration: 2650ms;
}
body[data-aos-delay="2650"] [data-aos], [data-aos][data-aos][data-aos-delay="2650"] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}
body[data-aos-delay="2650"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="2650"].aos-animate {
  -webkit-transition-delay: 2650ms;
          transition-delay: 2650ms;
}
body[data-aos-duration="2700"] [data-aos], [data-aos][data-aos][data-aos-duration="2700"] {
  -webkit-transition-duration: 2700ms;
          transition-duration: 2700ms;
}
body[data-aos-delay="2700"] [data-aos], [data-aos][data-aos][data-aos-delay="2700"] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}
body[data-aos-delay="2700"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="2700"].aos-animate {
  -webkit-transition-delay: 2700ms;
          transition-delay: 2700ms;
}
body[data-aos-duration="2750"] [data-aos], [data-aos][data-aos][data-aos-duration="2750"] {
  -webkit-transition-duration: 2750ms;
          transition-duration: 2750ms;
}
body[data-aos-delay="2750"] [data-aos], [data-aos][data-aos][data-aos-delay="2750"] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}
body[data-aos-delay="2750"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="2750"].aos-animate {
  -webkit-transition-delay: 2750ms;
          transition-delay: 2750ms;
}
body[data-aos-duration="2800"] [data-aos], [data-aos][data-aos][data-aos-duration="2800"] {
  -webkit-transition-duration: 2800ms;
          transition-duration: 2800ms;
}
body[data-aos-delay="2800"] [data-aos], [data-aos][data-aos][data-aos-delay="2800"] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}
body[data-aos-delay="2800"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="2800"].aos-animate {
  -webkit-transition-delay: 2800ms;
          transition-delay: 2800ms;
}
body[data-aos-duration="2850"] [data-aos], [data-aos][data-aos][data-aos-duration="2850"] {
  -webkit-transition-duration: 2850ms;
          transition-duration: 2850ms;
}
body[data-aos-delay="2850"] [data-aos], [data-aos][data-aos][data-aos-delay="2850"] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}
body[data-aos-delay="2850"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="2850"].aos-animate {
  -webkit-transition-delay: 2850ms;
          transition-delay: 2850ms;
}
body[data-aos-duration="2900"] [data-aos], [data-aos][data-aos][data-aos-duration="2900"] {
  -webkit-transition-duration: 2900ms;
          transition-duration: 2900ms;
}
body[data-aos-delay="2900"] [data-aos], [data-aos][data-aos][data-aos-delay="2900"] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}
body[data-aos-delay="2900"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="2900"].aos-animate {
  -webkit-transition-delay: 2900ms;
          transition-delay: 2900ms;
}
body[data-aos-duration="2950"] [data-aos], [data-aos][data-aos][data-aos-duration="2950"] {
  -webkit-transition-duration: 2950ms;
          transition-duration: 2950ms;
}
body[data-aos-delay="2950"] [data-aos], [data-aos][data-aos][data-aos-delay="2950"] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}
body[data-aos-delay="2950"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="2950"].aos-animate {
  -webkit-transition-delay: 2950ms;
          transition-delay: 2950ms;
}
body[data-aos-duration="3000"] [data-aos], [data-aos][data-aos][data-aos-duration="3000"] {
  -webkit-transition-duration: 3000ms;
          transition-duration: 3000ms;
}
body[data-aos-delay="3000"] [data-aos], [data-aos][data-aos][data-aos-delay="3000"] {
  -webkit-transition-delay: 0;
          transition-delay: 0;
}
body[data-aos-delay="3000"] [data-aos].aos-animate, [data-aos][data-aos][data-aos-delay="3000"].aos-animate {
  -webkit-transition-delay: 3000ms;
          transition-delay: 3000ms;
}
body[data-aos-easing=linear] [data-aos], [data-aos][data-aos][data-aos-easing=linear] {
  -webkit-transition-timing-function: cubic-bezier(0.25, 0.25, 0.75, 0.75);
          transition-timing-function: cubic-bezier(0.25, 0.25, 0.75, 0.75);
}
body[data-aos-easing=ease] [data-aos], [data-aos][data-aos][data-aos-easing=ease] {
  -webkit-transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
          transition-timing-function: cubic-bezier(0.25, 0.1, 0.25, 1);
}
body[data-aos-easing=ease-in] [data-aos], [data-aos][data-aos][data-aos-easing=ease-in] {
  -webkit-transition-timing-function: cubic-bezier(0.42, 0, 1, 1);
          transition-timing-function: cubic-bezier(0.42, 0, 1, 1);
}
body[data-aos-easing=ease-out] [data-aos], [data-aos][data-aos][data-aos-easing=ease-out] {
  -webkit-transition-timing-function: cubic-bezier(0, 0, 0.58, 1);
          transition-timing-function: cubic-bezier(0, 0, 0.58, 1);
}
body[data-aos-easing=ease-in-out] [data-aos], [data-aos][data-aos][data-aos-easing=ease-in-out] {
  -webkit-transition-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
          transition-timing-function: cubic-bezier(0.42, 0, 0.58, 1);
}
body[data-aos-easing=ease-in-back] [data-aos], [data-aos][data-aos][data-aos-easing=ease-in-back] {
  -webkit-transition-timing-function: cubic-bezier(0.6, -0.28, 0.735, 0.045);
          transition-timing-function: cubic-bezier(0.6, -0.28, 0.735, 0.045);
}
body[data-aos-easing=ease-out-back] [data-aos], [data-aos][data-aos][data-aos-easing=ease-out-back] {
  -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
          transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
body[data-aos-easing=ease-in-out-back] [data-aos], [data-aos][data-aos][data-aos-easing=ease-in-out-back] {
  -webkit-transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
          transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
body[data-aos-easing=ease-in-sine] [data-aos], [data-aos][data-aos][data-aos-easing=ease-in-sine] {
  -webkit-transition-timing-function: cubic-bezier(0.47, 0, 0.745, 0.715);
          transition-timing-function: cubic-bezier(0.47, 0, 0.745, 0.715);
}
body[data-aos-easing=ease-out-sine] [data-aos], [data-aos][data-aos][data-aos-easing=ease-out-sine] {
  -webkit-transition-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
          transition-timing-function: cubic-bezier(0.39, 0.575, 0.565, 1);
}
body[data-aos-easing=ease-in-out-sine] [data-aos], [data-aos][data-aos][data-aos-easing=ease-in-out-sine] {
  -webkit-transition-timing-function: cubic-bezier(0.445, 0.05, 0.55, 0.95);
          transition-timing-function: cubic-bezier(0.445, 0.05, 0.55, 0.95);
}
body[data-aos-easing=ease-in-quad] [data-aos], [data-aos][data-aos][data-aos-easing=ease-in-quad] {
  -webkit-transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
          transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
body[data-aos-easing=ease-out-quad] [data-aos], [data-aos][data-aos][data-aos-easing=ease-out-quad] {
  -webkit-transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
          transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
body[data-aos-easing=ease-in-out-quad] [data-aos], [data-aos][data-aos][data-aos-easing=ease-in-out-quad] {
  -webkit-transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
          transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
body[data-aos-easing=ease-in-cubic] [data-aos], [data-aos][data-aos][data-aos-easing=ease-in-cubic] {
  -webkit-transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
          transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
body[data-aos-easing=ease-out-cubic] [data-aos], [data-aos][data-aos][data-aos-easing=ease-out-cubic] {
  -webkit-transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
          transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
body[data-aos-easing=ease-in-out-cubic] [data-aos], [data-aos][data-aos][data-aos-easing=ease-in-out-cubic] {
  -webkit-transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
          transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
body[data-aos-easing=ease-in-quart] [data-aos], [data-aos][data-aos][data-aos-easing=ease-in-quart] {
  -webkit-transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
          transition-timing-function: cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
body[data-aos-easing=ease-out-quart] [data-aos], [data-aos][data-aos][data-aos-easing=ease-out-quart] {
  -webkit-transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
          transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
body[data-aos-easing=ease-in-out-quart] [data-aos], [data-aos][data-aos][data-aos-easing=ease-in-out-quart] {
  -webkit-transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
          transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
/**
 * Fade animations:
 * fade
 * fade-up, fade-down, fade-left, fade-right
 * fade-up-right, fade-up-left, fade-down-right, fade-down-left
 */
[data-aos^=fade][data-aos^=fade] {
  opacity: 0;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
}
[data-aos^=fade][data-aos^=fade].aos-animate {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
[data-aos=fade-up] {
  -webkit-transform: translate3d(0, 100px, 0);
          transform: translate3d(0, 100px, 0);
}
[data-aos=fade-down] {
  -webkit-transform: translate3d(0, -100px, 0);
          transform: translate3d(0, -100px, 0);
}
[data-aos=fade-right] {
  -webkit-transform: translate3d(-100px, 0, 0);
          transform: translate3d(-100px, 0, 0);
}
[data-aos=fade-left] {
  -webkit-transform: translate3d(100px, 0, 0);
          transform: translate3d(100px, 0, 0);
}
[data-aos=fade-up-right] {
  -webkit-transform: translate3d(-100px, 100px, 0);
          transform: translate3d(-100px, 100px, 0);
}
[data-aos=fade-up-left] {
  -webkit-transform: translate3d(100px, 100px, 0);
          transform: translate3d(100px, 100px, 0);
}
[data-aos=fade-down-right] {
  -webkit-transform: translate3d(-100px, -100px, 0);
          transform: translate3d(-100px, -100px, 0);
}
[data-aos=fade-down-left] {
  -webkit-transform: translate3d(100px, -100px, 0);
          transform: translate3d(100px, -100px, 0);
}
/**
 * Zoom animations:
 * zoom-in, zoom-in-up, zoom-in-down, zoom-in-left, zoom-in-right
 * zoom-out, zoom-out-up, zoom-out-down, zoom-out-left, zoom-out-right
 */
[data-aos^=zoom][data-aos^=zoom] {
  opacity: 0;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
}
[data-aos^=zoom][data-aos^=zoom].aos-animate {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0) scale(1);
          transform: translate3d(0, 0, 0) scale(1);
}
[data-aos=zoom-in] {
  -webkit-transform: scale(0.6);
          transform: scale(0.6);
}
[data-aos=zoom-in-up] {
  -webkit-transform: translate3d(0, 100px, 0) scale(0.6);
          transform: translate3d(0, 100px, 0) scale(0.6);
}
[data-aos=zoom-in-down] {
  -webkit-transform: translate3d(0, -100px, 0) scale(0.6);
          transform: translate3d(0, -100px, 0) scale(0.6);
}
[data-aos=zoom-in-right] {
  -webkit-transform: translate3d(-100px, 0, 0) scale(0.6);
          transform: translate3d(-100px, 0, 0) scale(0.6);
}
[data-aos=zoom-in-left] {
  -webkit-transform: translate3d(100px, 0, 0) scale(0.6);
          transform: translate3d(100px, 0, 0) scale(0.6);
}
[data-aos=zoom-out] {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
[data-aos=zoom-out-up] {
  -webkit-transform: translate3d(0, 100px, 0) scale(1.2);
          transform: translate3d(0, 100px, 0) scale(1.2);
}
[data-aos=zoom-out-down] {
  -webkit-transform: translate3d(0, -100px, 0) scale(1.2);
          transform: translate3d(0, -100px, 0) scale(1.2);
}
[data-aos=zoom-out-right] {
  -webkit-transform: translate3d(-100px, 0, 0) scale(1.2);
          transform: translate3d(-100px, 0, 0) scale(1.2);
}
[data-aos=zoom-out-left] {
  -webkit-transform: translate3d(100px, 0, 0) scale(1.2);
          transform: translate3d(100px, 0, 0) scale(1.2);
}
/**
 * Slide animations
 */
[data-aos^=slide][data-aos^=slide] {
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}
[data-aos^=slide][data-aos^=slide].aos-animate {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
[data-aos=slide-up] {
  -webkit-transform: translate3d(0, 100%, 0);
          transform: translate3d(0, 100%, 0);
}
[data-aos=slide-down] {
  -webkit-transform: translate3d(0, -100%, 0);
          transform: translate3d(0, -100%, 0);
}
[data-aos=slide-right] {
  -webkit-transform: translate3d(-100%, 0, 0);
          transform: translate3d(-100%, 0, 0);
}
[data-aos=slide-left] {
  -webkit-transform: translate3d(100%, 0, 0);
          transform: translate3d(100%, 0, 0);
}
/**
 * Flip animations:
 * flip-left, flip-right, flip-up, flip-down
 */
[data-aos^=flip][data-aos^=flip] {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}
[data-aos=flip-left] {
  -webkit-transform: perspective(2500px) rotateY(-100deg);
          transform: perspective(2500px) rotateY(-100deg);
}
[data-aos=flip-left].aos-animate {
  -webkit-transform: perspective(2500px) rotateY(0);
          transform: perspective(2500px) rotateY(0);
}
[data-aos=flip-right] {
  -webkit-transform: perspective(2500px) rotateY(100deg);
          transform: perspective(2500px) rotateY(100deg);
}
[data-aos=flip-right].aos-animate {
  -webkit-transform: perspective(2500px) rotateY(0);
          transform: perspective(2500px) rotateY(0);
}
[data-aos=flip-up] {
  -webkit-transform: perspective(2500px) rotateX(-100deg);
          transform: perspective(2500px) rotateX(-100deg);
}
[data-aos=flip-up].aos-animate {
  -webkit-transform: perspective(2500px) rotateX(0);
          transform: perspective(2500px) rotateX(0);
}
[data-aos=flip-down] {
  -webkit-transform: perspective(2500px) rotateX(100deg);
          transform: perspective(2500px) rotateX(100deg);
}
[data-aos=flip-down].aos-animate {
  -webkit-transform: perspective(2500px) rotateX(0);
          transform: perspective(2500px) rotateX(0);
}
.nav-scroller, .nav-scroller-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #f9f9f9;
}
.nav-scroller {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.nav-scroller-nav {
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  z-index: 1;
  -ms-flex-item-align: center;
      align-self: center;
  padding-bottom: 30px;
  margin-bottom: -30px;
  -ms-overflow-style: -ms-autohiding-scrollbar;
}
.nav-scroller-content, .nav-scroller-items {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  white-space: nowrap;
}
.nav-scroller-content {
  min-height: 44px;
  will-change: transform;
}
.nav-scroller-content:not(.no-transition) {
  -webkit-transition: -webkit-transform 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: -webkit-transform 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0.25s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
}
ul.nav-scroller-content {
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav-scroller-item, .nav-scroller-group-title {
  padding: 0.25rem 1rem;
  margin: 0.25rem 0;
}
.nav-scroller-item {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  display: block;
  font-size: 1.125rem;
  text-align: center;
  border-left: 1px solid transparent;
  border-right: 1px solid #ddd;
}
.nav-scroller-item:last-child {
  border-right-color: transparent;
}
.nav-scroller-btn {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  min-height: 44px;
  height: 100%;
  padding: 0.5rem;
  font-size: 1.25rem;
  color: #000;
  background: #fff;
  border: 1px solid #ddd;
  -webkit-transition: color 0.3s, opacity 0.3s;
  transition: color 0.3s, opacity 0.3s;
  cursor: pointer;
}
.nav-scroller-btn:hover {
  color: #666;
}
.nav-scroller-btn:focus {
  outline: 0;
}
.nav-scroller-btn:not(.active) {
  opacity: 0;
  pointer-events: none;
}
.nav-scroller-icon {
  display: inline-block;
  position: relative;
  top: -0.1em;
  width: 1em;
  height: 1em;
  fill: currentColor;
  vertical-align: middle;
}
.nav-scroller-btn--left {
  left: 0;
}
.nav-scroller-btn--right {
  right: 0;
}
.nav-scroller-logo {
  display: inline-block;
  padding: 0.5rem;
  margin-right: 1rem;
  font-size: 1.75rem;
  font-weight: bold;
}
.nav-scroller--controls-inline .nav-scroller-content {
  padding: 0 44px;
}
.nav-scroller--controls-inline .nav-scroller-btn:not(.active) {
  color: #ddd;
  opacity: 1;
}
.nav-scroller--expand .nav-scroller-nav, .nav-scroller--expand .nav-scroller-content {
  width: 100%;
}
.nav-scroller--right .nav-scroller-nav {
  margin-left: auto;
}
.nav-scroller--snap .nav-scroller-nav {
  -ms-scroll-snap-type: x proximity;
      scroll-snap-type: x proximity;
  scroll-padding: 0 44px;
}
.nav-scroller--snap .nav-scroller-content:not(.no-transition) .nav-scroller-item {
  scroll-snap-align: start;
}
.nav-scroller--snap .nav-scroller-content:not(.no-transition).snap-align-end .nav-scroller-item {
  scroll-snap-align: end;
}
.nav-scroller-group {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.nav-scroller-group:not(:first-child) {
  border-left: 1px solid #ddd;
  margin-left: -1px;
}
.nav-scroller-group-title {
  font-weight: bold;
}
.nav-scroller-items .nav-scroller-item {
  text-align: center;
  min-width: 80px;
}
/* --------------------------------------------------------------
# Plyr
-------------------------------------------------------------- */
@-webkit-keyframes plyr-progress {
  to {
    background-position: 25px 0;
    background-position: var(--plyr-progress-loading-size, 25px) 0;
  }
}
@keyframes plyr-progress {
  to {
    background-position: 25px 0;
    background-position: var(--plyr-progress-loading-size, 25px) 0;
  }
}
@-webkit-keyframes plyr-popup {
  0% {
    opacity: 0.5;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes plyr-popup {
  0% {
    opacity: 0.5;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes plyr-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes plyr-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.plyr {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  direction: ltr;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-family: inherit;
  font-family: var(--plyr-font-family, inherit);
  -webkit-font-feature-settings: "tnum";
          font-feature-settings: "tnum";
  font-variant-numeric: tabular-nums;
  font-weight: 400;
  font-weight: var(--plyr-font-weight-regular, 400);
  line-height: 1.7;
  line-height: var(--plyr-line-height, 1.7);
  max-width: 100%;
  min-width: 200px;
  position: relative;
  text-shadow: none;
  -webkit-transition: -webkit-box-shadow 0.3s ease;
  transition: -webkit-box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
  z-index: 0;
}
.plyr video,
.plyr audio,
.plyr iframe {
  display: block;
  height: 100%;
  width: 100%;
}
.plyr button {
  font: inherit;
  line-height: inherit;
  width: auto;
}
.plyr:focus {
  outline: 0;
}
.plyr--full-ui {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.plyr--full-ui *,
.plyr--full-ui *::after,
.plyr--full-ui *::before {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}
.plyr--full-ui a,
.plyr--full-ui button,
.plyr--full-ui input,
.plyr--full-ui label {
  -ms-touch-action: manipulation;
      touch-action: manipulation;
}
.plyr__badge {
  background: hsl(216, 15%, 34%);
  background: var(--plyr-badge-background, hsl(216, 15%, 34%));
  border-radius: 2px;
  border-radius: var(--plyr-badge-border-radius, 2px);
  color: #fff;
  color: var(--plyr-badge-text-color, #fff);
  font-size: 9px;
  font-size: var(--plyr-font-size-badge, 9px);
  line-height: 1;
  padding: 3px 4px;
}
.plyr--full-ui ::-webkit-media-text-track-container {
  display: none;
}
.plyr__captions {
  -webkit-animation: plyr-fade-in 0.3s ease;
          animation: plyr-fade-in 0.3s ease;
  bottom: 0;
  display: none;
  font-size: 13px;
  font-size: var(--plyr-font-size-small, 13px);
  left: 0;
  padding: 10px;
  padding: var(--plyr-control-spacing, 10px);
  position: absolute;
  text-align: center;
  -webkit-transition: -webkit-transform 0.4s ease-in-out;
  transition: -webkit-transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out;
  width: 100%;
}
.plyr__captions span:empty {
  display: none;
}
@media (min-width: 480px) {
  .plyr__captions {
    font-size: 15px;
    font-size: var(--plyr-font-size-base, 15px);
    padding: calc(10px * 2);
    padding: calc(var(--plyr-control-spacing, 10px) * 2);
  }
}
@media (min-width: 768px) {
  .plyr__captions {
    font-size: 18px;
    font-size: var(--plyr-font-size-large, 18px);
  }
}
.plyr--captions-active .plyr__captions {
  display: block;
}
.plyr:not(.plyr--hide-controls) .plyr__controls:not(:empty) ~ .plyr__captions {
  -webkit-transform: translateY(calc(10px * -4));
          transform: translateY(calc(10px * -4));
  -webkit-transform: translateY(calc(var(--plyr-control-spacing, 10px) * -4));
          transform: translateY(calc(var(--plyr-control-spacing, 10px) * -4));
}
.plyr__caption {
  background: rgba(0, 0, 0, 0.8);
  background: var(--plyr-captions-background, rgba(0, 0, 0, 0.8));
  border-radius: 2px;
  -webkit-box-decoration-break: clone;
          box-decoration-break: clone;
  color: #fff;
  color: var(--plyr-captions-text-color, #fff);
  line-height: 185%;
  padding: 0.2em 0.5em;
  white-space: pre-wrap;
}
.plyr__caption div {
  display: inline;
}
.plyr__control {
  background: transparent;
  border: 0;
  border-radius: 4px;
  border-radius: var(--plyr-control-radius, 4px);
  color: inherit;
  cursor: pointer;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  overflow: visible;
  padding: calc(10px * 0.7);
  padding: calc(var(--plyr-control-spacing, 10px) * 0.7);
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.plyr__control svg {
  display: block;
  fill: currentColor;
  height: 18px;
  height: var(--plyr-control-icon-size, 18px);
  pointer-events: none;
  width: 18px;
  width: var(--plyr-control-icon-size, 18px);
}
.plyr__control:focus {
  outline: 0;
}
.plyr__control.focus-visible {
  outline: 2px dashed rgb(0, 150, 64);
  outline: 2px dashed var(--plyr-focus-visible-color, var(--plyr-color-main, rgb(0, 150, 64)));
  outline-offset: 2px;
}
.plyr__control.focus-visible {
  outline: 2px dashed rgb(0, 150, 64);
  outline: 2px dashed var(--plyr-focus-visible-color, var(--plyr-color-main, rgb(0, 150, 64)));
  outline-offset: 2px;
}
.plyr__control:focus-visible {
  outline: 2px dashed rgb(0, 150, 64);
  outline: 2px dashed var(--plyr-focus-visible-color, var(--plyr-color-main, rgb(0, 150, 64)));
  outline-offset: 2px;
}
a.plyr__control {
  text-decoration: none;
}
a.plyr__control::after, a.plyr__control::before {
  display: none;
}
.plyr__control:not(.plyr__control--pressed) .icon--pressed,
.plyr__control.plyr__control--pressed .icon--not-pressed,
.plyr__control:not(.plyr__control--pressed) .label--pressed,
.plyr__control.plyr__control--pressed .label--not-pressed {
  display: none;
}
.plyr--full-ui ::-webkit-media-controls {
  display: none;
}
.plyr__controls {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  text-align: center;
}
.plyr__controls .plyr__progress__container {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 0;
}
.plyr__controls .plyr__controls__item {
  margin-left: calc(10px / 4);
  margin-left: calc(var(--plyr-control-spacing, 10px) / 4);
}
.plyr__controls .plyr__controls__item:first-child {
  margin-left: 0;
  margin-right: auto;
}
.plyr__controls .plyr__controls__item.plyr__progress__container {
  padding-left: calc(10px / 4);
  padding-left: calc(var(--plyr-control-spacing, 10px) / 4);
}
.plyr__controls .plyr__controls__item.plyr__time {
  padding: 0 calc(10px / 2);
  padding: 0 calc(var(--plyr-control-spacing, 10px) / 2);
}
.plyr__controls .plyr__controls__item.plyr__progress__container:first-child, .plyr__controls .plyr__controls__item.plyr__time:first-child, .plyr__controls .plyr__controls__item.plyr__time + .plyr__time {
  padding-left: 0;
}
.plyr__controls:empty {
  display: none;
}
.plyr [data-plyr=captions],
.plyr [data-plyr=pip],
.plyr [data-plyr=airplay],
.plyr [data-plyr=fullscreen] {
  display: none;
}
.plyr--captions-enabled [data-plyr=captions],
.plyr--pip-supported [data-plyr=pip],
.plyr--airplay-supported [data-plyr=airplay],
.plyr--fullscreen-enabled [data-plyr=fullscreen] {
  display: inline-block;
}
.plyr__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
.plyr__menu .plyr__control svg {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.plyr__menu .plyr__control[aria-expanded=true] svg {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.plyr__menu .plyr__control[aria-expanded=true] .plyr__tooltip {
  display: none;
}
.plyr__menu__container {
  -webkit-animation: plyr-popup 0.2s ease;
          animation: plyr-popup 0.2s ease;
  background: rgba(255, 255, 255, 0.9);
  background: var(--plyr-menu-background, rgba(255, 255, 255, 0.9));
  border-radius: 8px;
  border-radius: var(--plyr-menu-radius, 8px);
  bottom: 100%;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
          box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: var(--plyr-menu-shadow, 0 1px 2px rgba(0, 0, 0, 0.15));
          box-shadow: var(--plyr-menu-shadow, 0 1px 2px rgba(0, 0, 0, 0.15));
  color: hsl(216, 15%, 34%);
  color: var(--plyr-menu-color, hsl(216, 15%, 34%));
  font-size: 15px;
  font-size: var(--plyr-font-size-base, 15px);
  margin-bottom: 10px;
  position: absolute;
  right: -3px;
  text-align: left;
  white-space: nowrap;
  z-index: 3;
}
.plyr__menu__container > div {
  overflow: hidden;
  -webkit-transition: height 0.35s cubic-bezier(0.4, 0, 0.2, 1), width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transition: height 0.35s cubic-bezier(0.4, 0, 0.2, 1), width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.plyr__menu__container::after {
  border: 4px solid transparent;
  border: var(--plyr-menu-arrow-size, 4px) solid transparent;
  border-top-color: rgba(255, 255, 255, 0.9);
  border-top-color: var(--plyr-menu-background, rgba(255, 255, 255, 0.9));
  content: "";
  height: 0;
  position: absolute;
  right: calc(18px / 2 + (10px * 0.7) - 4px / 2);
  right: calc(var(--plyr-control-icon-size, 18px) / 2 + (var(--plyr-control-spacing, 10px) * 0.7) - var(--plyr-menu-arrow-size, 4px) / 2);
  right: calc(18px / 2 + (10px * 0.7) - 4px / 2);
  right: calc(18px / 2 + calc(10px * 0.7) - 4px / 2);
  right: calc(var(--plyr-control-icon-size, 18px) / 2 + calc(var(--plyr-control-spacing, 10px) * 0.7) - var(--plyr-menu-arrow-size, 4px) / 2);
  top: 100%;
  width: 0;
}
.plyr__menu__container [role=menu] {
  padding: calc(10px * 0.7);
  padding: calc(var(--plyr-control-spacing, 10px) * 0.7);
}
.plyr__menu__container [role=menuitem],
.plyr__menu__container [role=menuitemradio] {
  margin-top: 2px;
}
.plyr__menu__container [role=menuitem]:first-child,
.plyr__menu__container [role=menuitemradio]:first-child {
  margin-top: 0;
}
.plyr__menu__container .plyr__control {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: hsl(216, 15%, 34%);
  color: var(--plyr-menu-color, hsl(216, 15%, 34%));
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 13px;
  font-size: var(--plyr-font-size-menu, var(--plyr-font-size-small, 13px));
  padding: calc((10px * 0.7) / 1.5) calc((10px * 0.7) * 1.5);
  padding: calc((var(--plyr-control-spacing, 10px) * 0.7) / 1.5) calc((var(--plyr-control-spacing, 10px) * 0.7) * 1.5);
  padding: calc((10px * 0.7) / 1.5) calc((10px * 0.7) * 1.5);
  padding: calc(calc(10px * 0.7) / 1.5) calc(calc(10px * 0.7) * 1.5);
  padding: calc(calc(var(--plyr-control-spacing, 10px) * 0.7) / 1.5) calc(calc(var(--plyr-control-spacing, 10px) * 0.7) * 1.5);
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  width: 100%;
}
.plyr__menu__container .plyr__control > span {
  -webkit-box-align: inherit;
      -ms-flex-align: inherit;
          align-items: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
.plyr__menu__container .plyr__control::after {
  border: 4px solid transparent;
  border: var(--plyr-menu-item-arrow-size, 4px) solid transparent;
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.plyr__menu__container .plyr__control--forward {
  padding-right: calc((10px * 0.7) * 4);
  padding-right: calc((var(--plyr-control-spacing, 10px) * 0.7) * 4);
  padding-right: calc((10px * 0.7) * 4);
  padding-right: calc(calc(10px * 0.7) * 4);
  padding-right: calc(calc(var(--plyr-control-spacing, 10px) * 0.7) * 4);
}
.plyr__menu__container .plyr__control--forward::after {
  border-left-color: hsl(216, 15%, 52%);
  border-left-color: var(--plyr-menu-arrow-color, hsl(216, 15%, 52%));
  right: calc((10px * 0.7) * 1.5 - 4px);
  right: calc((var(--plyr-control-spacing, 10px) * 0.7) * 1.5 - var(--plyr-menu-item-arrow-size, 4px));
  right: calc((10px * 0.7) * 1.5 - 4px);
  right: calc(calc(10px * 0.7) * 1.5 - 4px);
  right: calc(calc(var(--plyr-control-spacing, 10px) * 0.7) * 1.5 - var(--plyr-menu-item-arrow-size, 4px));
}
.plyr__menu__container .plyr__control--forward.focus-visible::after, .plyr__menu__container .plyr__control--forward:hover::after {
  border-left-color: currentColor;
}
.plyr__menu__container .plyr__control--forward:focus-visible::after, .plyr__menu__container .plyr__control--forward:hover::after {
  border-left-color: currentColor;
}
.plyr__menu__container .plyr__control--back {
  font-weight: 400;
  font-weight: var(--plyr-font-weight-regular, 400);
  margin: calc(10px * 0.7);
  margin: calc(var(--plyr-control-spacing, 10px) * 0.7);
  margin-bottom: calc((10px * 0.7) / 2);
  margin-bottom: calc((var(--plyr-control-spacing, 10px) * 0.7) / 2);
  margin-bottom: calc((10px * 0.7) / 2);
  margin-bottom: calc(calc(10px * 0.7) / 2);
  margin-bottom: calc(calc(var(--plyr-control-spacing, 10px) * 0.7) / 2);
  padding-left: calc((10px * 0.7) * 4);
  padding-left: calc((var(--plyr-control-spacing, 10px) * 0.7) * 4);
  padding-left: calc((10px * 0.7) * 4);
  padding-left: calc(calc(10px * 0.7) * 4);
  padding-left: calc(calc(var(--plyr-control-spacing, 10px) * 0.7) * 4);
  position: relative;
  width: calc(100% - (10px * 0.7) * 2);
  width: calc(100% - (var(--plyr-control-spacing, 10px) * 0.7) * 2);
  width: calc(100% - (10px * 0.7) * 2);
  width: calc(100% - calc(10px * 0.7) * 2);
  width: calc(100% - calc(var(--plyr-control-spacing, 10px) * 0.7) * 2);
}
.plyr__menu__container .plyr__control--back::after {
  border-right-color: hsl(216, 15%, 52%);
  border-right-color: var(--plyr-menu-arrow-color, hsl(216, 15%, 52%));
  left: calc((10px * 0.7) * 1.5 - 4px);
  left: calc((var(--plyr-control-spacing, 10px) * 0.7) * 1.5 - var(--plyr-menu-item-arrow-size, 4px));
  left: calc((10px * 0.7) * 1.5 - 4px);
  left: calc(calc(10px * 0.7) * 1.5 - 4px);
  left: calc(calc(var(--plyr-control-spacing, 10px) * 0.7) * 1.5 - var(--plyr-menu-item-arrow-size, 4px));
}
.plyr__menu__container .plyr__control--back::before {
  background: hsl(216, 15%, 88%);
  background: var(--plyr-menu-back-border-color, hsl(216, 15%, 88%));
  -webkit-box-shadow: 0 1px 0 #fff;
          box-shadow: 0 1px 0 #fff;
  -webkit-box-shadow: 0 1px 0 var(--plyr-menu-back-border-shadow-color, #fff);
          box-shadow: 0 1px 0 var(--plyr-menu-back-border-shadow-color, #fff);
  content: "";
  height: 1px;
  left: 0;
  margin-top: calc((10px * 0.7) / 2);
  margin-top: calc((var(--plyr-control-spacing, 10px) * 0.7) / 2);
  margin-top: calc((10px * 0.7) / 2);
  margin-top: calc(calc(10px * 0.7) / 2);
  margin-top: calc(calc(var(--plyr-control-spacing, 10px) * 0.7) / 2);
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 100%;
}
.plyr__menu__container .plyr__control--back.focus-visible::after, .plyr__menu__container .plyr__control--back:hover::after {
  border-right-color: currentColor;
}
.plyr__menu__container .plyr__control--back:focus-visible::after, .plyr__menu__container .plyr__control--back:hover::after {
  border-right-color: currentColor;
}
.plyr__menu__container .plyr__control[role=menuitemradio] {
  padding-left: calc(10px * 0.7);
  padding-left: calc(var(--plyr-control-spacing, 10px) * 0.7);
}
.plyr__menu__container .plyr__control[role=menuitemradio]::before, .plyr__menu__container .plyr__control[role=menuitemradio]::after {
  border-radius: 100%;
}
.plyr__menu__container .plyr__control[role=menuitemradio]::before {
  background: rgba(0, 0, 0, 0.1);
  content: "";
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  height: 16px;
  margin-right: 10px;
  margin-right: var(--plyr-control-spacing, 10px);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  width: 16px;
}
.plyr__menu__container .plyr__control[role=menuitemradio]::after {
  background: #fff;
  border: 0;
  height: 6px;
  left: 12px;
  opacity: 0;
  top: 50%;
  -webkit-transform: translateY(-50%) scale(0);
          transform: translateY(-50%) scale(0);
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
  width: 6px;
}
.plyr__menu__container .plyr__control[role=menuitemradio][aria-checked=true]::before {
  background: rgb(0, 150, 64);
  background: var(--plyr-control-toggle-checked-background, var(--plyr-color-main, rgb(0, 150, 64)));
}
.plyr__menu__container .plyr__control[role=menuitemradio][aria-checked=true]::after {
  opacity: 1;
  -webkit-transform: translateY(-50%) scale(1);
          transform: translateY(-50%) scale(1);
}
.plyr__menu__container .plyr__control[role=menuitemradio].focus-visible::before, .plyr__menu__container .plyr__control[role=menuitemradio]:hover::before {
  background: rgba(35, 40, 47, 0.1);
}
.plyr__menu__container .plyr__control[role=menuitemradio]:focus-visible::before, .plyr__menu__container .plyr__control[role=menuitemradio]:hover::before {
  background: rgba(35, 40, 47, 0.1);
}
.plyr__menu__container .plyr__menu__value {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
  margin-right: calc((calc(10px * 0.7) - 2px) * -1);
  margin-right: calc((calc(var(--plyr-control-spacing, 10px) * 0.7) - 2px) * -1);
  overflow: hidden;
  padding-left: calc((10px * 0.7) * 3.5);
  padding-left: calc((var(--plyr-control-spacing, 10px) * 0.7) * 3.5);
  padding-left: calc((10px * 0.7) * 3.5);
  padding-left: calc(calc(10px * 0.7) * 3.5);
  padding-left: calc(calc(var(--plyr-control-spacing, 10px) * 0.7) * 3.5);
  pointer-events: none;
}
.plyr--full-ui input[type=range] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: transparent;
  border: 0;
  border-radius: calc(13px * 2);
  border-radius: calc(var(--plyr-range-thumb-height, 13px) * 2);
  color: rgb(0, 150, 64);
  color: var(--plyr-range-fill-background, var(--plyr-color-main, rgb(0, 150, 64)));
  display: block;
  height: calc(3px * 2 + 13px);
  height: calc(var(--plyr-range-thumb-active-shadow-width, 3px) * 2 + var(--plyr-range-thumb-height, 13px));
  margin: 0;
  min-width: 0;
  padding: 0;
  -webkit-transition: -webkit-box-shadow 0.3s ease;
  transition: -webkit-box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
  width: 100%;
}
.plyr--full-ui input[type=range]::-webkit-slider-runnable-track {
  background: transparent;
  border: 0;
  border-radius: calc(5px / 2);
  border-radius: calc(var(--plyr-range-track-height, 5px) / 2);
  height: 5px;
  height: var(--plyr-range-track-height, 5px);
  -webkit-transition: -webkit-box-shadow 0.3s ease;
  transition: -webkit-box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
  -webkit-user-select: none;
          user-select: none;
  background-image: -webkit-gradient(linear, left top, right top, from(currentColor), color-stop(0%, transparent));
  background-image: linear-gradient(to right, currentColor 0%, transparent 0%);
  background-image: -webkit-gradient(linear, left top, right top, from(currentColor), to(transparent));
  background-image: linear-gradient(to right, currentColor var(--value, 0%), transparent var(--value, 0%));
}
.plyr--full-ui input[type=range]::-webkit-slider-thumb {
  background: #fff;
  background: var(--plyr-range-thumb-background, #fff);
  border: 0;
  border-radius: 100%;
  -webkit-box-shadow: 0 1px 1px rgba(35, 40, 47, 0.15), 0 0 0 1px rgba(35, 40, 47, 0.2);
          box-shadow: 0 1px 1px rgba(35, 40, 47, 0.15), 0 0 0 1px rgba(35, 40, 47, 0.2);
  -webkit-box-shadow: var(--plyr-range-thumb-shadow, 0 1px 1px rgba(35, 40, 47, 0.15), 0 0 0 1px rgba(35, 40, 47, 0.2));
          box-shadow: var(--plyr-range-thumb-shadow, 0 1px 1px rgba(35, 40, 47, 0.15), 0 0 0 1px rgba(35, 40, 47, 0.2));
  height: 13px;
  height: var(--plyr-range-thumb-height, 13px);
  position: relative;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  width: 13px;
  width: var(--plyr-range-thumb-height, 13px);
  -webkit-appearance: none;
          appearance: none;
  margin-top: calc((13px - 5px) / 2 * -1);
  margin-top: calc((var(--plyr-range-thumb-height, 13px) - var(--plyr-range-track-height, 5px)) / 2 * -1);
}
.plyr--full-ui input[type=range]::-moz-range-track {
  background: transparent;
  border: 0;
  border-radius: calc(5px / 2);
  border-radius: calc(var(--plyr-range-track-height, 5px) / 2);
  height: 5px;
  height: var(--plyr-range-track-height, 5px);
  -moz-transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  -moz-user-select: none;
       user-select: none;
}
.plyr--full-ui input[type=range]::-moz-range-thumb {
  background: #fff;
  background: var(--plyr-range-thumb-background, #fff);
  border: 0;
  border-radius: 100%;
  box-shadow: 0 1px 1px rgba(35, 40, 47, 0.15), 0 0 0 1px rgba(35, 40, 47, 0.2);
  box-shadow: var(--plyr-range-thumb-shadow, 0 1px 1px rgba(35, 40, 47, 0.15), 0 0 0 1px rgba(35, 40, 47, 0.2));
  height: 13px;
  height: var(--plyr-range-thumb-height, 13px);
  position: relative;
  -moz-transition: all 0.2s ease;
  transition: all 0.2s ease;
  width: 13px;
  width: var(--plyr-range-thumb-height, 13px);
}
.plyr--full-ui input[type=range]::-moz-range-progress {
  background: currentColor;
  border-radius: calc(5px / 2);
  border-radius: calc(var(--plyr-range-track-height, 5px) / 2);
  height: 5px;
  height: var(--plyr-range-track-height, 5px);
}
.plyr--full-ui input[type=range]::-ms-track {
  background: transparent;
  border: 0;
  border-radius: calc(5px / 2);
  border-radius: calc(var(--plyr-range-track-height, 5px) / 2);
  height: 5px;
  height: var(--plyr-range-track-height, 5px);
  -ms-transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  -ms-user-select: none;
      user-select: none;
  color: transparent;
}
.plyr--full-ui input[type=range]::-ms-fill-upper {
  background: transparent;
  border: 0;
  border-radius: calc(5px / 2);
  border-radius: calc(var(--plyr-range-track-height, 5px) / 2);
  height: 5px;
  height: var(--plyr-range-track-height, 5px);
  -ms-transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  -ms-user-select: none;
      user-select: none;
}
.plyr--full-ui input[type=range]::-ms-fill-lower {
  background: transparent;
  border: 0;
  border-radius: calc(5px / 2);
  border-radius: calc(var(--plyr-range-track-height, 5px) / 2);
  height: 5px;
  height: var(--plyr-range-track-height, 5px);
  -ms-transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  -ms-user-select: none;
      user-select: none;
  background: currentColor;
}
.plyr--full-ui input[type=range]::-ms-thumb {
  background: #fff;
  background: var(--plyr-range-thumb-background, #fff);
  border: 0;
  border-radius: 100%;
  box-shadow: 0 1px 1px rgba(35, 40, 47, 0.15), 0 0 0 1px rgba(35, 40, 47, 0.2);
  box-shadow: var(--plyr-range-thumb-shadow, 0 1px 1px rgba(35, 40, 47, 0.15), 0 0 0 1px rgba(35, 40, 47, 0.2));
  height: 13px;
  height: var(--plyr-range-thumb-height, 13px);
  position: relative;
  -ms-transition: all 0.2s ease;
  transition: all 0.2s ease;
  width: 13px;
  width: var(--plyr-range-thumb-height, 13px);
  margin-top: 0;
}
.plyr--full-ui input[type=range]::-ms-tooltip {
  display: none;
}
.plyr--full-ui input[type=range]::-moz-focus-outer {
  border: 0;
}
.plyr--full-ui input[type=range]:focus {
  outline: 0;
}
.plyr--full-ui input[type=range].focus-visible::-webkit-slider-runnable-track {
  outline: 2px dashed rgb(0, 150, 64);
  outline: 2px dashed var(--plyr-focus-visible-color, var(--plyr-color-main, rgb(0, 150, 64)));
  outline-offset: 2px;
}
.plyr--full-ui input[type=range].focus-visible::-webkit-slider-runnable-track {
  outline: 2px dashed rgb(0, 150, 64);
  outline: 2px dashed var(--plyr-focus-visible-color, var(--plyr-color-main, rgb(0, 150, 64)));
  outline-offset: 2px;
}
.plyr--full-ui input[type=range]:focus-visible::-webkit-slider-runnable-track {
  outline: 2px dashed rgb(0, 150, 64);
  outline: 2px dashed var(--plyr-focus-visible-color, var(--plyr-color-main, rgb(0, 150, 64)));
  outline-offset: 2px;
}
.plyr--full-ui input[type=range].focus-visible::-moz-range-track {
  outline: 2px dashed rgb(0, 150, 64);
  outline: 2px dashed var(--plyr-focus-visible-color, var(--plyr-color-main, rgb(0, 150, 64)));
  outline-offset: 2px;
}
.plyr--full-ui input[type=range].focus-visible::-moz-range-track {
  outline: 2px dashed rgb(0, 150, 64);
  outline: 2px dashed var(--plyr-focus-visible-color, var(--plyr-color-main, rgb(0, 150, 64)));
  outline-offset: 2px;
}
.plyr--full-ui input[type=range]:focus-visible::-moz-range-track {
  outline: 2px dashed rgb(0, 150, 64);
  outline: 2px dashed var(--plyr-focus-visible-color, var(--plyr-color-main, rgb(0, 150, 64)));
  outline-offset: 2px;
}
.plyr--full-ui input[type=range].focus-visible::-ms-track {
  outline: 2px dashed rgb(0, 150, 64);
  outline: 2px dashed var(--plyr-focus-visible-color, var(--plyr-color-main, rgb(0, 150, 64)));
  outline-offset: 2px;
}
.plyr--full-ui input[type=range].focus-visible::-ms-track {
  outline: 2px dashed rgb(0, 150, 64);
  outline: 2px dashed var(--plyr-focus-visible-color, var(--plyr-color-main, rgb(0, 150, 64)));
  outline-offset: 2px;
}
.plyr--full-ui input[type=range]:focus-visible::-ms-track {
  outline: 2px dashed rgb(0, 150, 64);
  outline: 2px dashed var(--plyr-focus-visible-color, var(--plyr-color-main, rgb(0, 150, 64)));
  outline-offset: 2px;
}
.plyr__poster {
  background-color: rgb(0, 0, 0);
  background-color: var(--plyr-video-background, var(--plyr-video-background, rgb(0, 0, 0)));
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: contain;
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
  width: 100%;
  z-index: 1;
}
.plyr--stopped.plyr__poster-enabled .plyr__poster {
  opacity: 1;
}
.plyr--youtube.plyr--paused.plyr__poster-enabled:not(.plyr--stopped) .plyr__poster {
  display: none;
}
.plyr__time {
  font-size: 13px;
  font-size: var(--plyr-font-size-time, var(--plyr-font-size-small, 13px));
}
.plyr__time + .plyr__time::before {
  content: "⁄";
  margin-right: 10px;
  margin-right: var(--plyr-control-spacing, 10px);
}
@media (max-width: 767px) {
  .plyr__time + .plyr__time {
    display: none;
  }
}
/* stylelint-disable selector-max-compound-selectors */
.plyr__tooltip {
  background: #fff;
  background: var(--plyr-tooltip-background, #fff);
  border-radius: 5px;
  border-radius: var(--plyr-tooltip-radius, 5px);
  bottom: 100%;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
          box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: var(--plyr-tooltip-shadow, 0 1px 2px rgba(0, 0, 0, 0.15));
          box-shadow: var(--plyr-tooltip-shadow, 0 1px 2px rgba(0, 0, 0, 0.15));
  color: hsl(216, 15%, 34%);
  color: var(--plyr-tooltip-color, hsl(216, 15%, 34%));
  font-size: 13px;
  font-size: var(--plyr-font-size-small, 13px);
  font-weight: 400;
  font-weight: var(--plyr-font-weight-regular, 400);
  left: 50%;
  line-height: 1.3;
  margin-bottom: calc((10px / 2) * 2);
  margin-bottom: calc((var(--plyr-control-spacing, 10px) / 2) * 2);
  margin-bottom: calc((10px / 2) * 2);
  margin-bottom: calc(calc(10px / 2) * 2);
  margin-bottom: calc(calc(var(--plyr-control-spacing, 10px) / 2) * 2);
  opacity: 0;
  padding: calc(10px / 2) calc((10px / 2) * 1.5);
  padding: calc(var(--plyr-control-spacing, 10px) / 2) calc((var(--plyr-control-spacing, 10px) / 2) * 1.5);
  padding: calc(10px / 2) calc((10px / 2) * 1.5);
  padding: calc(10px / 2) calc(calc(10px / 2) * 1.5);
  padding: calc(var(--plyr-control-spacing, 10px) / 2) calc(calc(var(--plyr-control-spacing, 10px) / 2) * 1.5);
  pointer-events: none;
  position: absolute;
  -webkit-transform: translate(-50%, 10px) scale(0.8);
          transform: translate(-50%, 10px) scale(0.8);
  -webkit-transform-origin: 50% 100%;
          transform-origin: 50% 100%;
  -webkit-transition: opacity 0.2s 0.1s ease, -webkit-transform 0.2s 0.1s ease;
  transition: opacity 0.2s 0.1s ease, -webkit-transform 0.2s 0.1s ease;
  transition: transform 0.2s 0.1s ease, opacity 0.2s 0.1s ease;
  transition: transform 0.2s 0.1s ease, opacity 0.2s 0.1s ease, -webkit-transform 0.2s 0.1s ease;
  white-space: nowrap;
  z-index: 2;
}
.plyr__tooltip::before {
  border-left: 4px solid transparent;
  border-left: var(--plyr-tooltip-arrow-size, 4px) solid transparent;
  border-right: 4px solid transparent;
  border-right: var(--plyr-tooltip-arrow-size, 4px) solid transparent;
  border-top: 4px solid #fff;
  border-top: var(--plyr-tooltip-arrow-size, 4px) solid var(--plyr-tooltip-background, #fff);
  bottom: calc(4px * -1);
  bottom: calc(var(--plyr-tooltip-arrow-size, 4px) * -1);
  content: "";
  height: 0;
  left: 50%;
  position: absolute;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  z-index: 2;
}
.plyr .plyr__control:hover .plyr__tooltip,
.plyr .plyr__control.focus-visible .plyr__tooltip,
.plyr__tooltip--visible {
  opacity: 1;
  -webkit-transform: translate(-50%, 0) scale(1);
          transform: translate(-50%, 0) scale(1);
}
.plyr .plyr__control:hover .plyr__tooltip,
.plyr .plyr__control:focus-visible .plyr__tooltip,
.plyr__tooltip--visible {
  opacity: 1;
  -webkit-transform: translate(-50%, 0) scale(1);
          transform: translate(-50%, 0) scale(1);
}
.plyr .plyr__control:hover .plyr__tooltip {
  z-index: 3;
}
.plyr__controls > .plyr__control:first-child .plyr__tooltip,
.plyr__controls > .plyr__control:first-child + .plyr__control .plyr__tooltip {
  left: 0;
  -webkit-transform: translate(0, 10px) scale(0.8);
          transform: translate(0, 10px) scale(0.8);
  -webkit-transform-origin: 0 100%;
          transform-origin: 0 100%;
}
.plyr__controls > .plyr__control:first-child .plyr__tooltip::before,
.plyr__controls > .plyr__control:first-child + .plyr__control .plyr__tooltip::before {
  left: calc(18px / 2 + (10px * 0.7));
  left: calc(var(--plyr-control-icon-size, 18px) / 2 + (var(--plyr-control-spacing, 10px) * 0.7));
  left: calc(18px / 2 + (10px * 0.7));
  left: calc(18px / 2 + calc(10px * 0.7));
  left: calc(var(--plyr-control-icon-size, 18px) / 2 + calc(var(--plyr-control-spacing, 10px) * 0.7));
}
.plyr__controls > .plyr__control:last-child .plyr__tooltip {
  left: auto;
  right: 0;
  -webkit-transform: translate(0, 10px) scale(0.8);
          transform: translate(0, 10px) scale(0.8);
  -webkit-transform-origin: 100% 100%;
          transform-origin: 100% 100%;
}
.plyr__controls > .plyr__control:last-child .plyr__tooltip::before {
  left: auto;
  right: calc(18px / 2 + (10px * 0.7));
  right: calc(var(--plyr-control-icon-size, 18px) / 2 + (var(--plyr-control-spacing, 10px) * 0.7));
  right: calc(18px / 2 + (10px * 0.7));
  right: calc(18px / 2 + calc(10px * 0.7));
  right: calc(var(--plyr-control-icon-size, 18px) / 2 + calc(var(--plyr-control-spacing, 10px) * 0.7));
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
}
.plyr__controls > .plyr__control:first-child:hover .plyr__tooltip, .plyr__controls > .plyr__control:first-child.focus-visible .plyr__tooltip,
.plyr__controls > .plyr__control:first-child .plyr__tooltip--visible,
.plyr__controls > .plyr__control:first-child + .plyr__control:hover .plyr__tooltip,
.plyr__controls > .plyr__control:first-child + .plyr__control.focus-visible .plyr__tooltip,
.plyr__controls > .plyr__control:first-child + .plyr__control .plyr__tooltip--visible,
.plyr__controls > .plyr__control:last-child:hover .plyr__tooltip,
.plyr__controls > .plyr__control:last-child.focus-visible .plyr__tooltip,
.plyr__controls > .plyr__control:last-child .plyr__tooltip--visible {
  -webkit-transform: translate(0, 0) scale(1);
          transform: translate(0, 0) scale(1);
}
.plyr__controls > .plyr__control:first-child:hover .plyr__tooltip, .plyr__controls > .plyr__control:first-child:focus-visible .plyr__tooltip,
.plyr__controls > .plyr__control:first-child .plyr__tooltip--visible,
.plyr__controls > .plyr__control:first-child + .plyr__control:hover .plyr__tooltip,
.plyr__controls > .plyr__control:first-child + .plyr__control:focus-visible .plyr__tooltip,
.plyr__controls > .plyr__control:first-child + .plyr__control .plyr__tooltip--visible,
.plyr__controls > .plyr__control:last-child:hover .plyr__tooltip,
.plyr__controls > .plyr__control:last-child:focus-visible .plyr__tooltip,
.plyr__controls > .plyr__control:last-child .plyr__tooltip--visible {
  -webkit-transform: translate(0, 0) scale(1);
          transform: translate(0, 0) scale(1);
}
.plyr__progress {
  left: calc(13px * 0.5);
  left: calc(var(--plyr-range-thumb-height, 13px) * 0.5);
  margin-right: 13px;
  margin-right: var(--plyr-range-thumb-height, 13px);
  position: relative;
}
.plyr__progress input[type=range], .plyr__progress__buffer {
  margin-left: calc(13px * -0.5);
  margin-left: calc(var(--plyr-range-thumb-height, 13px) * -0.5);
  margin-right: calc(13px * -0.5);
  margin-right: calc(var(--plyr-range-thumb-height, 13px) * -0.5);
  width: calc(100% + 13px);
  width: calc(100% + var(--plyr-range-thumb-height, 13px));
}
.plyr__progress input[type=range] {
  position: relative;
  z-index: 2;
}
.plyr__progress .plyr__tooltip {
  left: 0;
  max-width: 120px;
  word-wrap: break-word;
}
.plyr__progress__buffer {
  -webkit-appearance: none; /* stylelint-disable-line */
  background: transparent;
  border: 0;
  border-radius: 100px;
  height: 5px;
  height: var(--plyr-range-track-height, 5px);
  left: 0;
  margin-top: calc(5px / 2 * -1);
  margin-top: calc(var(--plyr-range-track-height, 5px) / 2 * -1);
  padding: 0;
  position: absolute;
  top: 50%;
}
.plyr__progress__buffer::-webkit-progress-bar {
  background: transparent;
}
.plyr__progress__buffer::-webkit-progress-value {
  background: currentColor;
  border-radius: 100px;
  min-width: 5px;
  min-width: var(--plyr-range-track-height, 5px);
  -webkit-transition: width 0.2s ease;
  transition: width 0.2s ease;
}
.plyr__progress__buffer::-moz-progress-bar {
  background: currentColor;
  border-radius: 100px;
  min-width: 5px;
  min-width: var(--plyr-range-track-height, 5px);
  -moz-transition: width 0.2s ease;
  transition: width 0.2s ease;
}
.plyr__progress__buffer::-ms-fill {
  border-radius: 100px;
  -ms-transition: width 0.2s ease;
  transition: width 0.2s ease;
}
.plyr--loading .plyr__progress__buffer {
  -webkit-animation: plyr-progress 1s linear infinite;
          animation: plyr-progress 1s linear infinite;
  background-image: linear-gradient(-45deg, rgba(35, 40, 47, 0.6) 25%, transparent 25%, transparent 50%, rgba(35, 40, 47, 0.6) 50%, rgba(35, 40, 47, 0.6) 75%, transparent 75%, transparent);
  background-image: linear-gradient(-45deg, var(--plyr-progress-loading-background, rgba(35, 40, 47, 0.6)) 25%, transparent 25%, transparent 50%, var(--plyr-progress-loading-background, rgba(35, 40, 47, 0.6)) 50%, var(--plyr-progress-loading-background, rgba(35, 40, 47, 0.6)) 75%, transparent 75%, transparent);
  background-repeat: repeat-x;
  background-size: 25px 25px;
  background-size: var(--plyr-progress-loading-size, 25px) var(--plyr-progress-loading-size, 25px);
  color: transparent;
}
.plyr--video.plyr--loading .plyr__progress__buffer {
  background-color: rgba(255, 255, 255, 0.25);
  background-color: var(--plyr-video-progress-buffered-background, rgba(255, 255, 255, 0.25));
}
.plyr--audio.plyr--loading .plyr__progress__buffer {
  background-color: rgba(193, 200, 209, 0.6);
  background-color: var(--plyr-audio-progress-buffered-background, rgba(193, 200, 209, 0.6));
}
.plyr__progress__marker {
  background-color: #fff;
  background-color: var(--plyr-progress-marker-background, #fff);
  border-radius: 1px;
  height: 5px;
  height: var(--plyr-range-track-height, 5px);
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 3px;
  width: var(--plyr-progress-marker-width, 3px);
  z-index: 3;
}
.plyr__volume {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
.plyr__volume input[type=range] {
  margin-left: calc(10px / 2);
  margin-left: calc(var(--plyr-control-spacing, 10px) / 2);
  margin-right: calc(10px / 2);
  margin-right: calc(var(--plyr-control-spacing, 10px) / 2);
  max-width: 90px;
  min-width: 60px;
  position: relative;
  z-index: 2;
}
.plyr--audio {
  display: block;
}
.plyr--audio .plyr__controls {
  background: #fff;
  background: var(--plyr-audio-controls-background, #fff);
  border-radius: inherit;
  color: hsl(216, 15%, 34%);
  color: var(--plyr-audio-control-color, hsl(216, 15%, 34%));
  padding: 10px;
  padding: var(--plyr-control-spacing, 10px);
}
.plyr--audio .plyr__control.focus-visible, .plyr--audio .plyr__control:hover, .plyr--audio .plyr__control[aria-expanded=true] {
  background: rgb(0, 150, 64);
  background: var(--plyr-audio-control-background-hover, var(--plyr-color-main, rgb(0, 150, 64)));
  color: #fff;
  color: var(--plyr-audio-control-color-hover, #fff);
}
.plyr--audio .plyr__control.focus-visible, .plyr--audio .plyr__control:hover, .plyr--audio .plyr__control[aria-expanded=true] {
  background: rgb(0, 150, 64);
  background: var(--plyr-audio-control-background-hover, var(--plyr-color-main, rgb(0, 150, 64)));
  color: #fff;
  color: var(--plyr-audio-control-color-hover, #fff);
}
.plyr--audio .plyr__control:focus-visible, .plyr--audio .plyr__control:hover, .plyr--audio .plyr__control[aria-expanded=true] {
  background: rgb(0, 150, 64);
  background: var(--plyr-audio-control-background-hover, var(--plyr-color-main, rgb(0, 150, 64)));
  color: #fff;
  color: var(--plyr-audio-control-color-hover, #fff);
}
.plyr--full-ui.plyr--audio input[type=range]::-webkit-slider-runnable-track {
  background-color: rgba(193, 200, 209, 0.6);
  background-color: var(--plyr-audio-range-track-background, var(--plyr-audio-progress-buffered-background, rgba(193, 200, 209, 0.6)));
}
.plyr--full-ui.plyr--audio input[type=range]::-moz-range-track {
  background-color: rgba(193, 200, 209, 0.6);
  background-color: var(--plyr-audio-range-track-background, var(--plyr-audio-progress-buffered-background, rgba(193, 200, 209, 0.6)));
}
.plyr--full-ui.plyr--audio input[type=range]::-ms-track {
  background-color: rgba(193, 200, 209, 0.6);
  background-color: var(--plyr-audio-range-track-background, var(--plyr-audio-progress-buffered-background, rgba(193, 200, 209, 0.6)));
}
.plyr--full-ui.plyr--audio input[type=range]:active::-webkit-slider-thumb {
  -webkit-box-shadow: 0 1px 1px rgba(35, 40, 47, 0.15), 0 0 0 1px rgba(35, 40, 47, 0.2), 0 0 0 3px rgba(35, 40, 47, 0.1);
          box-shadow: 0 1px 1px rgba(35, 40, 47, 0.15), 0 0 0 1px rgba(35, 40, 47, 0.2), 0 0 0 3px rgba(35, 40, 47, 0.1);
  -webkit-box-shadow: var(--plyr-range-thumb-shadow, 0 1px 1px rgba(35, 40, 47, 0.15), 0 0 0 1px rgba(35, 40, 47, 0.2)), 0 0 0 var(--plyr-range-thumb-active-shadow-width, 3px) var(--plyr-audio-range-thumb-active-shadow-color, rgba(35, 40, 47, 0.1));
          box-shadow: var(--plyr-range-thumb-shadow, 0 1px 1px rgba(35, 40, 47, 0.15), 0 0 0 1px rgba(35, 40, 47, 0.2)), 0 0 0 var(--plyr-range-thumb-active-shadow-width, 3px) var(--plyr-audio-range-thumb-active-shadow-color, rgba(35, 40, 47, 0.1));
}
.plyr--full-ui.plyr--audio input[type=range]:active::-moz-range-thumb {
  box-shadow: 0 1px 1px rgba(35, 40, 47, 0.15), 0 0 0 1px rgba(35, 40, 47, 0.2), 0 0 0 3px rgba(35, 40, 47, 0.1);
  box-shadow: var(--plyr-range-thumb-shadow, 0 1px 1px rgba(35, 40, 47, 0.15), 0 0 0 1px rgba(35, 40, 47, 0.2)), 0 0 0 var(--plyr-range-thumb-active-shadow-width, 3px) var(--plyr-audio-range-thumb-active-shadow-color, rgba(35, 40, 47, 0.1));
}
.plyr--full-ui.plyr--audio input[type=range]:active::-ms-thumb {
  box-shadow: 0 1px 1px rgba(35, 40, 47, 0.15), 0 0 0 1px rgba(35, 40, 47, 0.2), 0 0 0 3px rgba(35, 40, 47, 0.1);
  box-shadow: var(--plyr-range-thumb-shadow, 0 1px 1px rgba(35, 40, 47, 0.15), 0 0 0 1px rgba(35, 40, 47, 0.2)), 0 0 0 var(--plyr-range-thumb-active-shadow-width, 3px) var(--plyr-audio-range-thumb-active-shadow-color, rgba(35, 40, 47, 0.1));
}
.plyr--audio .plyr__progress__buffer {
  color: rgba(193, 200, 209, 0.6);
  color: var(--plyr-audio-progress-buffered-background, rgba(193, 200, 209, 0.6));
}
.plyr--video {
  overflow: hidden;
}
.plyr--video.plyr--menu-open {
  overflow: visible;
}
.plyr__video-wrapper {
  background: rgb(0, 0, 0);
  background: var(--plyr-video-background, var(--plyr-video-background, rgb(0, 0, 0)));
  border-radius: inherit;
  height: 100%;
  margin: auto;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.plyr__video-embed,
.plyr__video-wrapper--fixed-ratio {
  aspect-ratio: 16/9;
}
@supports not (aspect-ratio: 16/9) {
  .plyr__video-embed,
  .plyr__video-wrapper--fixed-ratio {
    height: 0;
    padding-bottom: 56.25%;
    position: relative;
  }
}
.plyr__video-embed iframe,
.plyr__video-wrapper--fixed-ratio video {
  border: 0;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.plyr--full-ui .plyr__video-embed > .plyr__video-embed__container {
  padding-bottom: 240%;
  position: relative;
  -webkit-transform: translateY(-38.28125%);
          transform: translateY(-38.28125%);
}
.plyr--video .plyr__controls {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.75)));
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75));
  background: var(--plyr-video-controls-background, linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75)));
  border-bottom-left-radius: inherit;
  border-bottom-right-radius: inherit;
  bottom: 0;
  color: #fff;
  color: var(--plyr-video-control-color, #fff);
  left: 0;
  padding: calc(10px / 2);
  padding: calc(var(--plyr-control-spacing, 10px) / 2);
  padding-top: calc(10px * 2);
  padding-top: calc(var(--plyr-control-spacing, 10px) * 2);
  position: absolute;
  right: 0;
  -webkit-transition: opacity 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out;
  transition: opacity 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out;
  transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
  transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out;
  z-index: 3;
}
@media (min-width: 480px) {
  .plyr--video .plyr__controls {
    padding: 10px;
    padding: var(--plyr-control-spacing, 10px);
    padding-top: calc(10px * 3.5);
    padding-top: calc(var(--plyr-control-spacing, 10px) * 3.5);
  }
}
.plyr--video.plyr--hide-controls .plyr__controls {
  opacity: 0;
  pointer-events: none;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}
.plyr--video .plyr__control.focus-visible, .plyr--video .plyr__control:hover, .plyr--video .plyr__control[aria-expanded=true] {
  background: rgb(0, 150, 64);
  background: var(--plyr-video-control-background-hover, var(--plyr-color-main, rgb(0, 150, 64)));
  color: #fff;
  color: var(--plyr-video-control-color-hover, #fff);
}
.plyr--video .plyr__control.focus-visible, .plyr--video .plyr__control:hover, .plyr--video .plyr__control[aria-expanded=true] {
  background: rgb(0, 150, 64);
  background: var(--plyr-video-control-background-hover, var(--plyr-color-main, rgb(0, 150, 64)));
  color: #fff;
  color: var(--plyr-video-control-color-hover, #fff);
}
.plyr--video .plyr__control:focus-visible, .plyr--video .plyr__control:hover, .plyr--video .plyr__control[aria-expanded=true] {
  background: rgb(0, 150, 64);
  background: var(--plyr-video-control-background-hover, var(--plyr-color-main, rgb(0, 150, 64)));
  color: #fff;
  color: var(--plyr-video-control-color-hover, #fff);
}
.plyr__control--overlaid {
  background: rgb(0, 150, 64);
  background: var(--plyr-video-control-background-hover, var(--plyr-color-main, rgb(0, 150, 64)));
  border: 0;
  border-radius: 100%;
  color: #fff;
  color: var(--plyr-video-control-color, #fff);
  display: none;
  left: 50%;
  opacity: 0.9;
  padding: calc(10px * 1.5);
  padding: calc(var(--plyr-control-spacing, 10px) * 1.5);
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 2;
}
.plyr__control--overlaid svg {
  left: 2px;
  position: relative;
}
.plyr__control--overlaid:hover, .plyr__control--overlaid:focus {
  opacity: 1;
}
.plyr--playing .plyr__control--overlaid {
  opacity: 0;
  visibility: hidden;
}
.plyr--full-ui.plyr--video .plyr__control--overlaid {
  display: block;
}
.plyr--full-ui.plyr--video input[type=range]::-webkit-slider-runnable-track {
  background-color: rgba(255, 255, 255, 0.25);
  background-color: var(--plyr-video-range-track-background, var(--plyr-video-progress-buffered-background, rgba(255, 255, 255, 0.25)));
}
.plyr--full-ui.plyr--video input[type=range]::-moz-range-track {
  background-color: rgba(255, 255, 255, 0.25);
  background-color: var(--plyr-video-range-track-background, var(--plyr-video-progress-buffered-background, rgba(255, 255, 255, 0.25)));
}
.plyr--full-ui.plyr--video input[type=range]::-ms-track {
  background-color: rgba(255, 255, 255, 0.25);
  background-color: var(--plyr-video-range-track-background, var(--plyr-video-progress-buffered-background, rgba(255, 255, 255, 0.25)));
}
.plyr--full-ui.plyr--video input[type=range]:active::-webkit-slider-thumb {
  -webkit-box-shadow: 0 1px 1px rgba(35, 40, 47, 0.15), 0 0 0 1px rgba(35, 40, 47, 0.2), 0 0 0 3px rgba(255, 255, 255, 0.5);
          box-shadow: 0 1px 1px rgba(35, 40, 47, 0.15), 0 0 0 1px rgba(35, 40, 47, 0.2), 0 0 0 3px rgba(255, 255, 255, 0.5);
  -webkit-box-shadow: var(--plyr-range-thumb-shadow, 0 1px 1px rgba(35, 40, 47, 0.15), 0 0 0 1px rgba(35, 40, 47, 0.2)), 0 0 0 var(--plyr-range-thumb-active-shadow-width, 3px) var(--plyr-audio-range-thumb-active-shadow-color, rgba(255, 255, 255, 0.5));
          box-shadow: var(--plyr-range-thumb-shadow, 0 1px 1px rgba(35, 40, 47, 0.15), 0 0 0 1px rgba(35, 40, 47, 0.2)), 0 0 0 var(--plyr-range-thumb-active-shadow-width, 3px) var(--plyr-audio-range-thumb-active-shadow-color, rgba(255, 255, 255, 0.5));
}
.plyr--full-ui.plyr--video input[type=range]:active::-moz-range-thumb {
  box-shadow: 0 1px 1px rgba(35, 40, 47, 0.15), 0 0 0 1px rgba(35, 40, 47, 0.2), 0 0 0 3px rgba(255, 255, 255, 0.5);
  box-shadow: var(--plyr-range-thumb-shadow, 0 1px 1px rgba(35, 40, 47, 0.15), 0 0 0 1px rgba(35, 40, 47, 0.2)), 0 0 0 var(--plyr-range-thumb-active-shadow-width, 3px) var(--plyr-audio-range-thumb-active-shadow-color, rgba(255, 255, 255, 0.5));
}
.plyr--full-ui.plyr--video input[type=range]:active::-ms-thumb {
  box-shadow: 0 1px 1px rgba(35, 40, 47, 0.15), 0 0 0 1px rgba(35, 40, 47, 0.2), 0 0 0 3px rgba(255, 255, 255, 0.5);
  box-shadow: var(--plyr-range-thumb-shadow, 0 1px 1px rgba(35, 40, 47, 0.15), 0 0 0 1px rgba(35, 40, 47, 0.2)), 0 0 0 var(--plyr-range-thumb-active-shadow-width, 3px) var(--plyr-audio-range-thumb-active-shadow-color, rgba(255, 255, 255, 0.5));
}
.plyr--video .plyr__progress__buffer {
  color: rgba(255, 255, 255, 0.25);
  color: var(--plyr-video-progress-buffered-background, rgba(255, 255, 255, 0.25));
}
.plyr:-webkit-full-screen {
  border-radius: 0 !important;
}
.plyr:-ms-fullscreen {
  border-radius: 0 !important;
}
.plyr:fullscreen {
  border-radius: 0 !important;
}
.plyr:-webkit-full-screen {
  background: #000;
  height: 100%;
  margin: 0;
  width: 100%;
}
.plyr:-ms-fullscreen {
  background: #000;
  height: 100%;
  margin: 0;
  width: 100%;
}
.plyr:fullscreen {
  background: #000;
  height: 100%;
  margin: 0;
  width: 100%;
}
.plyr:-webkit-full-screen video {
  height: 100%;
}
.plyr:-ms-fullscreen video {
  height: 100%;
}
.plyr:fullscreen video {
  height: 100%;
}
.plyr:-webkit-full-screen .plyr__control .icon--exit-fullscreen {
  display: block;
}
.plyr:-ms-fullscreen .plyr__control .icon--exit-fullscreen {
  display: block;
}
.plyr:fullscreen .plyr__control .icon--exit-fullscreen {
  display: block;
}
.plyr:-webkit-full-screen .plyr__control .icon--exit-fullscreen + svg {
  display: none;
}
.plyr:-ms-fullscreen .plyr__control .icon--exit-fullscreen + svg {
  display: none;
}
.plyr:fullscreen .plyr__control .icon--exit-fullscreen + svg {
  display: none;
}
.plyr:-webkit-full-screen.plyr--hide-controls {
  cursor: none;
}
.plyr:-ms-fullscreen.plyr--hide-controls {
  cursor: none;
}
.plyr:fullscreen.plyr--hide-controls {
  cursor: none;
}
@media (min-width: 1024px) {
  .plyr:-webkit-full-screen .plyr__captions {
    font-size: 21px;
    font-size: var(--plyr-font-size-xlarge, 21px);
  }
  .plyr:-ms-fullscreen .plyr__captions {
    font-size: 21px;
    font-size: var(--plyr-font-size-xlarge, 21px);
  }
  .plyr:fullscreen .plyr__captions {
    font-size: 21px;
    font-size: var(--plyr-font-size-xlarge, 21px);
  }
}
.plyr--fullscreen-fallback {
  border-radius: 0 !important;
}
.plyr--fullscreen-fallback {
  background: #000;
  height: 100%;
  margin: 0;
  width: 100%;
  bottom: 0;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 10000000;
}
.plyr--fullscreen-fallback video {
  height: 100%;
}
.plyr--fullscreen-fallback .plyr__control .icon--exit-fullscreen {
  display: block;
}
.plyr--fullscreen-fallback .plyr__control .icon--exit-fullscreen + svg {
  display: none;
}
.plyr--fullscreen-fallback.plyr--hide-controls {
  cursor: none;
}
@media (min-width: 1024px) {
  .plyr--fullscreen-fallback .plyr__captions {
    font-size: 21px;
    font-size: var(--plyr-font-size-xlarge, 21px);
  }
}
.plyr__ads {
  border-radius: inherit;
  bottom: 0;
  cursor: pointer;
  left: 0;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}
.plyr__ads > div,
.plyr__ads > div iframe {
  height: 100%;
  position: absolute;
  width: 100%;
}
.plyr__ads::after {
  background: hsl(216, 15%, 16%);
  border-radius: 2px;
  bottom: 10px;
  bottom: var(--plyr-control-spacing, 10px);
  color: #fff;
  content: attr(data-badge-text);
  font-size: 11px;
  padding: 2px 6px;
  pointer-events: none;
  position: absolute;
  right: 10px;
  right: var(--plyr-control-spacing, 10px);
  z-index: 3;
}
.plyr__ads:empty::after {
  display: none;
}
.plyr__cues {
  background: currentColor;
  display: block;
  height: 5px;
  height: var(--plyr-range-track-height, 5px);
  left: 0;
  opacity: 0.8;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 3px;
  z-index: 3;
}
.plyr__preview-thumb {
  background-color: #fff;
  background-color: var(--plyr-tooltip-background, #fff);
  border-radius: 8px;
  border-radius: var(--plyr-menu-radius, 8px);
  bottom: 100%;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
          box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: var(--plyr-tooltip-shadow, 0 1px 2px rgba(0, 0, 0, 0.15));
          box-shadow: var(--plyr-tooltip-shadow, 0 1px 2px rgba(0, 0, 0, 0.15));
  margin-bottom: calc((10px / 2) * 2);
  margin-bottom: calc((var(--plyr-control-spacing, 10px) / 2) * 2);
  margin-bottom: calc((10px / 2) * 2);
  margin-bottom: calc(calc(10px / 2) * 2);
  margin-bottom: calc(calc(var(--plyr-control-spacing, 10px) / 2) * 2);
  opacity: 0;
  padding: 3px;
  pointer-events: none;
  position: absolute;
  -webkit-transform: translate(0, 10px) scale(0.8);
          transform: translate(0, 10px) scale(0.8);
  -webkit-transform-origin: 50% 100%;
          transform-origin: 50% 100%;
  -webkit-transition: opacity 0.2s 0.1s ease, -webkit-transform 0.2s 0.1s ease;
  transition: opacity 0.2s 0.1s ease, -webkit-transform 0.2s 0.1s ease;
  transition: transform 0.2s 0.1s ease, opacity 0.2s 0.1s ease;
  transition: transform 0.2s 0.1s ease, opacity 0.2s 0.1s ease, -webkit-transform 0.2s 0.1s ease;
  z-index: 2;
}
.plyr__preview-thumb--is-shown {
  opacity: 1;
  -webkit-transform: translate(0, 0) scale(1);
          transform: translate(0, 0) scale(1);
}
.plyr__preview-thumb::before {
  border-left: 4px solid transparent;
  border-left: var(--plyr-tooltip-arrow-size, 4px) solid transparent;
  border-right: 4px solid transparent;
  border-right: var(--plyr-tooltip-arrow-size, 4px) solid transparent;
  border-top: 4px solid #fff;
  border-top: var(--plyr-tooltip-arrow-size, 4px) solid var(--plyr-tooltip-background, #fff);
  bottom: calc(4px * -1);
  bottom: calc(var(--plyr-tooltip-arrow-size, 4px) * -1);
  content: "";
  height: 0;
  left: calc(50% + var(--preview-arrow-offset));
  position: absolute;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  z-index: 2;
}
.plyr__preview-thumb__image-container {
  background: hsl(216, 15%, 79%);
  border-radius: calc(8px - 1px);
  border-radius: calc(var(--plyr-menu-radius, 8px) - 1px);
  overflow: hidden;
  position: relative;
  z-index: 0;
}
.plyr__preview-thumb__image-container img, .plyr__preview-thumb__image-container::after {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.plyr__preview-thumb__image-container::after {
  border-radius: inherit;
  -webkit-box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.15);
          box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.15);
  content: "";
  pointer-events: none;
}
.plyr__preview-thumb__image-container img {
  max-height: none;
  max-width: none;
}
.plyr__preview-thumb__time-container {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.75)));
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75));
  background: var(--plyr-video-controls-background, linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75)));
  border-bottom-left-radius: calc(8px - 1px);
  border-bottom-left-radius: calc(var(--plyr-menu-radius, 8px) - 1px);
  border-bottom-right-radius: calc(8px - 1px);
  border-bottom-right-radius: calc(var(--plyr-menu-radius, 8px) - 1px);
  bottom: 0;
  left: 0;
  line-height: 1.1;
  padding: 20px 6px 6px;
  position: absolute;
  right: 0;
  z-index: 3;
}
.plyr__preview-thumb__time-container span {
  color: #fff;
  font-size: 13px;
  font-size: var(--plyr-font-size-time, var(--plyr-font-size-small, 13px));
}
.plyr__preview-scrubbing {
  bottom: 0;
  -webkit-filter: blur(1px);
          filter: blur(1px);
  height: 100%;
  left: 0;
  margin: auto;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  width: 100%;
  z-index: 1;
}
.plyr__preview-scrubbing--is-shown {
  opacity: 1;
}
.plyr__preview-scrubbing img {
  height: 100%;
  left: 0;
  max-height: none;
  max-width: none;
  -o-object-fit: contain;
     object-fit: contain;
  position: absolute;
  top: 0;
  width: 100%;
}
.plyr--no-transition {
  -webkit-transition: none !important;
  transition: none !important;
}
.plyr__sr-only {
  border: 0 !important;
  height: 1px !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
}
.plyr__sr-only {
  clip: rect(1px, 1px, 1px, 1px);
  overflow: hidden;
}
.plyr [hidden] {
  display: none !important;
}
/* --------------------------------------------------------------
# Styles
-------------------------------------------------------------- */
/*--------------------------------------------------------------
## Colors

Define the Colors you want to use.
Please use memorable Names, e.g. use http://chir.ag/projects/name-that-color/

--------------------------------------------------------------*/
.text-primary {
  color: rgb(0, 150, 64) !important;
}
.bg-primary {
  background-color: rgb(0, 150, 64);
}
.text-primary-80 {
  color: rgba(0, 150, 64, 0.8) !important;
}
.bg-primary-80 {
  background-color: rgba(0, 150, 64, 0.8);
}
.text-primary-60 {
  color: rgba(0, 150, 64, 0.6) !important;
}
.bg-primary-60 {
  background-color: rgba(0, 150, 64, 0.6);
}
.text-primary-40 {
  color: rgba(0, 150, 64, 0.4) !important;
}
.bg-primary-40 {
  background-color: rgba(0, 150, 64, 0.4);
}
.text-primary-20 {
  color: rgba(0, 150, 64, 0.2) !important;
}
.bg-primary-20 {
  background-color: rgba(0, 150, 64, 0.2);
}
.text-primary-5 {
  color: rgba(0, 150, 64, 0.05) !important;
}
.bg-primary-5 {
  background-color: rgba(0, 150, 64, 0.05);
}
.text-secondary {
  color: rgb(195, 32, 18) !important;
}
.bg-secondary {
  background-color: rgb(195, 32, 18);
  color: #ffffff;
}
.text-secondary-80 {
  color: rgba(195, 32, 18, 0.8) !important;
}
.bg-secondary-80 {
  background-color: rgba(195, 32, 18, 0.8);
}
.text-secondary-60 {
  color: rgba(195, 32, 18, 0.6) !important;
}
.bg-secondary-60 {
  background-color: rgba(195, 32, 18, 0.6);
}
.text-secondary-40 {
  color: rgba(195, 32, 18, 0.4) !important;
}
.bg-secondary-40 {
  background-color: rgba(195, 32, 18, 0.4);
}
.text-secondary-20 {
  color: rgba(195, 32, 18, 0.2) !important;
}
.bg-secondary-20 {
  background-color: rgba(195, 32, 18, 0.2);
}
.text-green {
  color: #009640 !important;
}
.bg-green {
  background-color: #009640;
}
.text-red {
  color: #c32012 !important;
}
.bg-red {
  background-color: #c32012;
}
.text-blue {
  color: #009fe3 !important;
}
.bg-blue {
  background-color: #009fe3;
}
.text-blue-dark {
  color: #15619d !important;
}
.bg-blue-dark {
  background-color: #15619d;
}
.text-pink {
  color: #e6007e !important;
}
.bg-pink {
  background-color: #e6007e;
}
.text-yellow {
  color: #fab72d !important;
}
.bg-yellow {
  background-color: #fab72d;
}
.text-textcolor {
  color: #23383a !important;
}
.bg-textcolor {
  background-color: #23383a;
}
.text-grey {
  color: #555 !important;
}
.bg-grey {
  background-color: #555;
}
.text-grey-mid {
  color: rgba(0, 0, 0, 0.4) !important;
}
.bg-grey-mid {
  background-color: rgba(0, 0, 0, 0.4);
  color: #ffffff;
}
.text-grey-light {
  color: #f9f9f9 !important;
}
.bg-grey-light {
  background-color: #f9f9f9;
}
.text-white {
  color: #ffffff !important;
}
.bg-white {
  background-color: #ffffff;
}
.text-black {
  color: #000000 !important;
}
.bg-black {
  background-color: #000000;
}
/*--------------------------------------------------------------
## Gradient Mixin
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Customer Gradient classes
--------------------------------------------------------------*/
.gradient--primary,
.gradient--1 {
  background: #006129;
  background: -webkit-gradient(linear, left top, right top, from(#006129), to(rgb(0, 150, 64)));
  background: linear-gradient(to right, #006129, rgb(0, 150, 64));
}
.gradient--blue,
.gradient--2 {
  background: #157a9b;
  background: -webkit-gradient(linear, left top, right top, from(#157a9b), to(#009fe3));
  background: linear-gradient(to right, #157a9b, #009fe3);
}
.gradient--blue-dark,
.gradient--3 {
  background: #043c67;
  background: -webkit-gradient(linear, left top, right top, from(#043c67), to(#15619d));
  background: linear-gradient(to right, #043c67, #15619d);
}
.gradient--pink,
.gradient--4 {
  background: #9d124a;
  background: -webkit-gradient(linear, left top, right top, from(#9d124a), to(#e6007e));
  background: linear-gradient(to right, #9d124a, #e6007e);
}
.gradient--secondary,
.gradient--5 {
  background: #af000a;
  background: -webkit-gradient(linear, left top, right top, from(#af000a), to(rgb(195, 32, 18)));
  background: linear-gradient(to right, #af000a, rgb(195, 32, 18));
}
.gradient--yellow,
.gradient--6 {
  background: #d3981d;
  background: -webkit-gradient(linear, left top, right top, from(#d3981d), to(#fab72d));
  background: linear-gradient(to right, #d3981d, #fab72d);
}
/*--------------------------------------------------------------
# Icons
--------------------------------------------------------------*/
@font-face {
  font-family: "icomoon";
  src: url("/typo3conf/ext/fh_sitepackage/Resources/Public/dist/assets/icomoon.25948cd2.eot?814wom");
  src: url("/typo3conf/ext/fh_sitepackage/Resources/Public/dist/assets/icomoon.25948cd2.eot?814wom#iefix") format("embedded-opentype"), url("/typo3conf/ext/fh_sitepackage/Resources/Public/dist/assets/icomoon.0f23b411.ttf?814wom") format("truetype"), url("/typo3conf/ext/fh_sitepackage/Resources/Public/dist/assets/icomoon.66bf3354.woff?814wom") format("woff");
}
[class^=icon-],
[class*=" icon-"] {
  font-family: "icomoon" !important;
}
[class^=icon-],
[class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  speak: none;
  font-style: normal;
  font-weight: normal;
  -webkit-font-feature-settings: normal;
          font-feature-settings: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.icon-facebook:before {
  content: "\ea90";
}
.icon-twitter:before {
  content: "\ea96";
}
.icon-youtube:before {
  content: "\ea9d";
}
.icon-map:before {
  content: "\e900";
}
.icon-calendar00:before {
  content: "\e901";
}
.icon-clock:before {
  content: "\e902";
}
.icon-noun_Close_393001_000000:before {
  content: "\e903";
}
.icon-bedienen_anwenden:before {
  content: "\e904";
}
.icon-problemloesen_modellieren:before {
  content: "\e905";
}
.icon-informieren_recherchieren:before {
  content: "\e906";
}
.icon-kommunizieren_kooperieren:before {
  content: "\e907";
}
.icon-produzieren_praesentieren:before {
  content: "\e908";
}
.icon-analysieren_reflektieren:before {
  content: "\e909";
}
.icon-add:before {
  content: "\e145";
}
.icon-queue:before {
  content: "\e03c";
}
.icon-arrow_back:before {
  content: "\e5c4";
}
.icon-arrow_downward:before {
  content: "\e5db";
}
.icon-arrow_drop_down:before {
  content: "\e5c5";
}
.icon-arrow_drop_up:before {
  content: "\e5c7";
}
.icon-arrow_forward:before {
  content: "\e5c8";
}
.icon-arrow_upward:before {
  content: "\e5d8";
}
.icon-attach_file:before {
  content: "\e226";
}
.icon-chat_bubble_outline:before {
  content: "\e0cb";
}
.icon-check:before {
  content: "\e5ca";
}
.icon-close:before {
  content: "\e5cd";
}
.icon-content_copy:before {
  content: "\e14d";
}
.icon-content_paste:before {
  content: "\e14f";
}
.icon-delete:before {
  content: "\e872";
}
.icon-dvr:before {
  content: "\e1b2";
}
.icon-error:before {
  content: "\e000";
}
.icon-error_outline:before {
  content: "\e001";
}
.icon-file_upload:before {
  content: "\e2c6";
}
.icon-filter:before {
  content: "\e3d3";
}
.icon-folder_open:before {
  content: "\e2c8";
}
.icon-help_outline:before {
  content: "\e8fd";
}
.icon-highlight_off:before {
  content: "\e888";
}
.icon-info_outline:before {
  content: "\e88f";
}
.icon-keyboard_arrow_down:before {
  content: "\e313";
}
.icon-keyboard_arrow_left:before {
  content: "\e314";
}
.icon-keyboard_arrow_right:before {
  content: "\e315";
}
.icon-keyboard_arrow_up:before {
  content: "\e316";
}
.icon-library_books:before {
  content: "\e02f";
}
.icon-library_music:before {
  content: "\e030";
}
.icon-lock_outline:before {
  content: "\e899";
}
.icon-mail_outline:before {
  content: "\e0e1";
}
.icon-menu:before {
  content: "\e5d2";
}
.icon-ondemand_video:before {
  content: "\e63a";
}
.icon-perm_device_information:before {
  content: "\e8a5";
}
.icon-phone_android:before {
  content: "\e324";
}
.icon-picture_as_pdf:before {
  content: "\e415";
}
.icon-remove:before {
  content: "\e15b";
}
.icon-sentiment_dissatisfied:before {
  content: "\e811";
}
.icon-sentiment_neutral:before {
  content: "\e812";
}
.icon-sentiment_satisfied:before {
  content: "\e813";
}
.icon-share:before {
  content: "\e80d";
}
.icon-shop_two:before {
  content: "\e8ca";
}
.icon-stay_primary_portrait:before {
  content: "\e0d6";
}
.icon-speaker_group:before {
  content: "\e32e";
}
.icon-subject:before {
  content: "\e8d2";
}
.icon-video_library:before {
  content: "\e04a";
}
.icon-volume_down:before {
  content: "\e04d";
}
.icon-volume_mute:before {
  content: "\e04e";
}
.icon-volume_off:before {
  content: "\e04f";
}
.icon-volume_up:before {
  content: "\e050";
}
.icon-zoom_in:before {
  content: "\e8ff";
}
.icon-zoom_out:before {
  content: "\e90a";
}
.icon-external-link:before,
.icon-external:before {
  content: "\e90b";
}
.icon-link:before,
.icon-internal:before {
  content: "\e90c";
}
/*--------------------------------------------------------------
## Icon Mixins
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# X
--------------------------------------------------------------*/
@font-face {
  font-family: "mkr";
  src: url("data:font/ttf;base64,AAEAAAALAIAAAwAwT1MvMg8SBR8AAAC8AAAAYGNtYXAXVtKHAAABHAAAAFRnYXNwAAAAEAAAAXAAAAAIZ2x5ZgdauioAAAF4AAAAnGhlYWQk/MEMAAACFAAAADZoaGVhB6sDxgAAAkwAAAAkaG10eAnpAAAAAAJwAAAAFGxvY2EAKABiAAAChAAAAAxtYXhwAAgAFQAAApAAAAAgbmFtZUCSsncAAAKwAAABVnBvc3QAAwAAAAAECAAAACAAAwL1AZAABQAAApkCzAAAAI8CmQLMAAAB6wAzAQkAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAABAAADpAAPA/8AAQAPAAEAAAAABAAAAAAAAAAAAAAAgAAAAAAADAAAAAwAAABwAAQADAAAAHAADAAEAAAAcAAQAOAAAAAoACAACAAIAAQAg6QD//f//AAAAAAAg6QD//f//AAH/4xcEAAMAAQAAAAAAAAAAAAAAAQAB//8ADwABAAAAAAAAAAAAAgAANzkBAAAAAAEAAAAAAAAAAAACAAA3OQEAAAAAAQAAAAAAAAAAAAIAADc5AQAAAAACAAD/wQPpA8AADAASAAAJASMJASEJATMJASEBBwEzASMBAlQBdVn+vf79/tYBh/55WAFWAREBKv5ref6diAJxiP7yAg8Bsf6IAXj9x/46AY3+cwJOjQH7/IMBggAAAAABAAAAAQAA9AILp18PPPUACwQAAAAAAOD6PkcAAAAA4Po+RwAA/8ED6QPAAAAACAACAAAAAAAAAAEAAAPA/8AAAAQAAAAAAAPpAAEAAAAAAAAAAAAAAAAAAAAFBAAAAAAAAAAAAAAAAgAAAAPpAAAAAAAAAAoAFAAeAE4AAQAAAAUAEwACAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAA4ArgABAAAAAAABAAMAAAABAAAAAAACAAcAPAABAAAAAAADAAMAKgABAAAAAAAEAAMAUQABAAAAAAAFAAsACQABAAAAAAAGAAMAMwABAAAAAAAKABoAWgADAAEECQABAAYAAwADAAEECQACAA4AQwADAAEECQADAAYALQADAAEECQAEAAYAVAADAAEECQAFABYAFAADAAEECQAGAAYANgADAAEECQAKADQAdG1rcgBtAGsAclZlcnNpb24gMS4wAFYAZQByAHMAaQBvAG4AIAAxAC4AMG1rcgBtAGsAcm1rcgBtAGsAclJlZ3VsYXIAUgBlAGcAdQBsAGEAcm1rcgBtAGsAckZvbnQgZ2VuZXJhdGVkIGJ5IEljb01vb24uAEYAbwBuAHQAIABnAGUAbgBlAHIAYQB0AGUAZAAgAGIAeQAgAEkAYwBvAE0AbwBvAG4ALgAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=") format("truetype"), url("data:font/woff;base64,d09GRgABAAAAAAR0AAsAAAAABCgAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABPUy8yAAABCAAAAGAAAABgDxIFH2NtYXAAAAFoAAAAVAAAAFQXVtKHZ2FzcAAAAbwAAAAIAAAACAAAABBnbHlmAAABxAAAAJwAAACcB1q6KmhlYWQAAAJgAAAANgAAADYk/MEMaGhlYQAAApgAAAAkAAAAJAerA8ZobXR4AAACvAAAABQAAAAUCekAAGxvY2EAAALQAAAADAAAAAwAKABibWF4cAAAAtwAAAAgAAAAIAAIABVuYW1lAAAC/AAAAVYAAAFWQJKyd3Bvc3QAAARUAAAAIAAAACAAAwAAAAMC9QGQAAUAAAKZAswAAACPApkCzAAAAesAMwEJAAAAAAAAAAAAAAAAAAAAARAAAAAAAAAAAAAAAAAAAAAAQAAA6QADwP/AAEADwABAAAAAAQAAAAAAAAAAAAAAIAAAAAAAAwAAAAMAAAAcAAEAAwAAABwAAwABAAAAHAAEADgAAAAKAAgAAgACAAEAIOkA//3//wAAAAAAIOkA//3//wAB/+MXBAADAAEAAAAAAAAAAAAAAAEAAf//AA8AAQAAAAAAAAAAAAIAADc5AQAAAAABAAAAAAAAAAAAAgAANzkBAAAAAAEAAAAAAAAAAAACAAA3OQEAAAAAAgAA/8ED6QPAAAwAEgAACQEjCQEhCQEzCQEhAQcBMwEjAQJUAXVZ/r3+/f7WAYf+eVgBVgERASr+a3n+nYgCcYj+8gIPAbH+iAF4/cf+OgGN/nMCTo0B+/yDAYIAAAAAAQAAAAEAAPQCC6dfDzz1AAsEAAAAAADg+j5HAAAAAOD6PkcAAP/BA+kDwAAAAAgAAgAAAAAAAAABAAADwP/AAAAEAAAAAAAD6QABAAAAAAAAAAAAAAAAAAAABQQAAAAAAAAAAAAAAAIAAAAD6QAAAAAAAAAKABQAHgBOAAEAAAAFABMAAgAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAOAK4AAQAAAAAAAQADAAAAAQAAAAAAAgAHADwAAQAAAAAAAwADACoAAQAAAAAABAADAFEAAQAAAAAABQALAAkAAQAAAAAABgADADMAAQAAAAAACgAaAFoAAwABBAkAAQAGAAMAAwABBAkAAgAOAEMAAwABBAkAAwAGAC0AAwABBAkABAAGAFQAAwABBAkABQAWABQAAwABBAkABgAGADYAAwABBAkACgA0AHRta3IAbQBrAHJWZXJzaW9uIDEuMABWAGUAcgBzAGkAbwBuACAAMQAuADBta3IAbQBrAHJta3IAbQBrAHJSZWd1bGFyAFIAZQBnAHUAbABhAHJta3IAbQBrAHJGb250IGdlbmVyYXRlZCBieSBJY29Nb29uLgBGAG8AbgB0ACAAZwBlAG4AZQByAGEAdABlAGQAIABiAHkAIABJAGMAbwBNAG8AbwBuAC4AAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
[class^=mkr-icon-],
[class*=" mkr-icon-"] {
  font-family: "mkr" !important;
}
[class^=mkr-icon-],
[class*=" mkr-icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  speak: never;
  font-style: normal;
  font-weight: normal;
  -webkit-font-feature-settings: normal;
          font-feature-settings: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.mkr-icon-x:before {
  content: "\e900";
}
/*--------------------------------------------------------------
# Leichet Sprache
--------------------------------------------------------------*/
@font-face {
  font-family: "mkr-leiche-sprache";
  src: url("data:font/ttf;base64,AAEAAAALAIAAAwAwT1MvMg8SBawAAAC8AAAAYGNtYXAXVtKJAAABHAAAAFRnYXNwAAAAEAAAAXAAAAAIZ2x5ZsxlS7oAAAF4AAAGDGhlYWQl6aH5AAAHhAAAADZoaGVhB8IDyAAAB7wAAAAkaG10eBIAAAAAAAfgAAAAHGxvY2ECtgV6AAAH/AAAABBtYXhwABEBkQAACAwAAAAgbmFtZUPCRQYAAAgsAAACCnBvc3QAAwAAAAAKOAAAACAAAwOAAZAABQAAApkCzAAAAI8CmQLMAAAB6wAzAQkAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAABAAADpAgPA/8AAQAPAAEAAAAABAAAAAAAAAAAAAAAgAAAAAAADAAAAAwAAABwAAQADAAAAHAADAAEAAAAcAAQAOAAAAAoACAACAAIAAQAg6QL//f//AAAAAAAg6QD//f//AAH/4xcEAAMAAQAAAAAAAAAAAAAAAQAB//8ADwABAAD/wAAAA8AAAgAANzkBAAAAAAEAAP/AAAADwAACAAA3OQEAAAAAAQAA/8AAAAPAAAIAADc5AQAAAAAEAAD/wAQAA8AAUAC5ASUBjgAAEx4BFx4BFxYyNz4BNz4BNz4BFzIWMxcyFDMeARUUBgcOAQcOAQcGJicuAS8BLgEnJicuAScmJy4BNz4BNz4BFzIWHwEeAQcOAQcOAQcOARcnASImJy4BJy4BJy4BNTE+ATcxPgE3PgE3PgE7AR4BFx4BFx4BFx4BFx4BFx4BFx4BFx4BFx0BFAYHDgEHDgEHDgErAiImJy4BJy4BJy4BNS4BJy4BJy4BJy4BJy4BJy4BJyMuAScuAScDIiYnLgEnLgEnJjQ1MDQ1NDY3PgE3PgE3PgEzFx4BFx4BHwEeARceARceARceARceARceARcWBgcxDgEHIw4BBw4BIzEqAScuAScxLgEnLgE1MS4BJy4BJy4BJy4BJy4BJy4BJyMuAScuASc3IyciJicuAScuAScuAT0BNzQ2Nz4BNz4BNzYyMx4BFx4BFx4BFx4BFx4BFx4BFx4BFx4BHQEUBgcOAQcOAQcOAQcjIiYnLgEnLgEnLgEnNCYnLgEnLgEnLgEnLgEnLgEnIy4BJy4BKwHzFzUhIVU2BAcEBQoFBAoFFTUkAQEBoQEBEA4NCg4oGBYxGCZIJCRIJwQSJhMiIyJAHR0XJiULByIdGkYtBQgDZwsEBgUVDgQKBREeBwEBcAMGAwIFAgIDAQEBAQECAQQCAwUDAwYDARUpFBQnEhIiEBAdDg0YCwoTCAcMBQQHAQEBAQMCAgQDAgYDAQIDBgIDBQIDAwIBAgEFBAQLBgcPCQkVCwsZDg0eDwEPIRESJBNFAwYDAwQCAgMBAQICAQQCAgYCAwYDAgoSCAkRBwEIDwcHDQYGCgUFCAQDBgICAwEBAQEBAwEBAQUDAwUEAwYDAwUDAgQCAQIBAgIBBAMCBgMDBwQECAUFCgUBBQwGBw0HIQEBAwUCAwUCAgMBAQEBAgEBBAICBgMCBwMQIA8PHA0OGQsLFQoJEQcHDQUFBwMDAwEBAQMCAgUDAwYDAQMGAwIFAwIDAgEBAQMCAgYEBAkGBQ0HCBAICRQKAQoXDAwbDQEB6ShNIyQ/HAIBAggFBAwHHDARAV0BCyETEyoSGSELCgwEBQYLCyQYAgwYDhogIEcoJypFlEgnRRgVFAQGBK4PHQ8MFgoEBwQMHhEBAZgCAQIEAgIGAwMGAwQFAwMFAQIDAQEBAgYFBQ0HCBMLCxkNDh4QECITEiYUFCoWAQEDBgMCBQMCAwIBAgEBAQMCAgUCAwYDFCQSESIPEB4NDhkMCxUJCRAHBwsEBAYB/tcCAQIEAgMFAwIGAwIBAwUDAgUBAgMBAQEBAQMCAgYDAQMIBQUKBgYNBwcPCAgQCQkSCgMGAwMFAwIEAgECAQEDAgIEAwMGAwcNBgYMBgUKBQUIBAQHAwMGAgMDAgICAY8BAgEBBAICBQMDBgMBAQMGAgMEAgIEAQEBBAMDCQUGDQcIEQoKFQwMGQ4NHBAPHxEBAwYDAwUCAgQBAQEBAgEBAwICBQMDBgMOGg0MGAoLFAkJEQcIDQYGCgQEBwMCBAAABAAA/8AEAAPAAAUACQAMABAAACU3ASEBFwkCIQMJAQkCEQH9ygEz/AYBM8r+DwHxAfH8HgwBCP74BAD+3wEh4sn+zQEzyQIm/g4B8v27AQcBCP3YASABIf2/AAAJAAD/wAO6A8AAIgAnACwAMAA0ADgAPABBAEYAAAEiBiMqAScRJREFLgE1NDc+ATc2MzIXHgEXFhUUBgclEQURBTUFFSUFJTUFFR0BJTUBJTUFHQElNSUVJTU1BRUlNT0BBRUlAg4EBwMCBQL+TwFuNUUQDzYkJCkpJCQ2DxBFNQFu/lQBa/7jAR3+4wEd/uMBHf7jAR3+4wEd/jT+4wEd/uMBHf7jAjUBAf2LVgJ2SRdiPikkJDYPEBAPNiQkKT5iF0n9ilUCdBwXPBc8jzwXPBc3FzwX/tA8FzxJFzsX8Bc7F1M8FzgbNxc7FzsAAAABAAAAAQAATCnGJV8PPPUACwQAAAAAAOFlLr4AAAAA4WUuvgAA/8AEAAPAAAAACAACAAAAAAAAAAEAAAPA/8AAAAQAAAAAAAQAAAEAAAAAAAAAAAAAAAAAAAAHBAAAAAAAAAAAAAAAAgAAAAQAAAAEAAAABAAAAAAAAAAACgAUAB4CYAKOAwYAAQAAAAcBjwAJAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAA4ArgABAAAAAAABABIAAAABAAAAAAACAAcAwwABAAAAAAADABIAVwABAAAAAAAEABIA2AABAAAAAAAFAAsANgABAAAAAAAGABIAjQABAAAAAAAKABoBDgADAAEECQABACQAEgADAAEECQACAA4AygADAAEECQADACQAaQADAAEECQAEACQA6gADAAEECQAFABYAQQADAAEECQAGACQAnwADAAEECQAKADQBKG1rci1sZWljaGUtc3ByYWNoZQBtAGsAcgAtAGwAZQBpAGMAaABlAC0AcwBwAHIAYQBjAGgAZVZlcnNpb24gMS4wAFYAZQByAHMAaQBvAG4AIAAxAC4AMG1rci1sZWljaGUtc3ByYWNoZQBtAGsAcgAtAGwAZQBpAGMAaABlAC0AcwBwAHIAYQBjAGgAZW1rci1sZWljaGUtc3ByYWNoZQBtAGsAcgAtAGwAZQBpAGMAaABlAC0AcwBwAHIAYQBjAGgAZVJlZ3VsYXIAUgBlAGcAdQBsAGEAcm1rci1sZWljaGUtc3ByYWNoZQBtAGsAcgAtAGwAZQBpAGMAaABlAC0AcwBwAHIAYQBjAGgAZUZvbnQgZ2VuZXJhdGVkIGJ5IEljb01vb24uAEYAbwBuAHQAIABnAGUAbgBlAHIAYQB0AGUAZAAgAGIAeQAgAEkAYwBvAE0AbwBvAG4ALgAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=") format("truetype"), url("data:font/woff;base64,d09GRgABAAAAAAqkAAsAAAAAClgAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABPUy8yAAABCAAAAGAAAABgDxIFrGNtYXAAAAFoAAAAVAAAAFQXVtKJZ2FzcAAAAbwAAAAIAAAACAAAABBnbHlmAAABxAAABgwAAAYMzGVLumhlYWQAAAfQAAAANgAAADYl6aH5aGhlYQAACAgAAAAkAAAAJAfCA8hobXR4AAAILAAAABwAAAAcEgAAAGxvY2EAAAhIAAAAEAAAABACtgV6bWF4cAAACFgAAAAgAAAAIAARAZFuYW1lAAAIeAAAAgoAAAIKQ8JFBnBvc3QAAAqEAAAAIAAAACAAAwAAAAMDgAGQAAUAAAKZAswAAACPApkCzAAAAesAMwEJAAAAAAAAAAAAAAAAAAAAARAAAAAAAAAAAAAAAAAAAAAAQAAA6QIDwP/AAEADwABAAAAAAQAAAAAAAAAAAAAAIAAAAAAAAwAAAAMAAAAcAAEAAwAAABwAAwABAAAAHAAEADgAAAAKAAgAAgACAAEAIOkC//3//wAAAAAAIOkA//3//wAB/+MXBAADAAEAAAAAAAAAAAAAAAEAAf//AA8AAQAA/8AAAAPAAAIAADc5AQAAAAABAAD/wAAAA8AAAgAANzkBAAAAAAEAAP/AAAADwAACAAA3OQEAAAAABAAA/8AEAAPAAFAAuQElAY4AABMeARceARcWMjc+ATc+ATc+ARcyFjMXMhQzHgEVFAYHDgEHDgEHBiYnLgEvAS4BJyYnLgEnJicuATc+ATc+ARcyFh8BHgEHDgEHDgEHDgEXJwEiJicuAScuAScuATUxPgE3MT4BNz4BNz4BOwEeARceARceARceARceARceARceARceARcdARQGBw4BBw4BBw4BKwIiJicuAScuAScuATUuAScuAScuAScuAScuAScuAScjLgEnLgEnAyImJy4BJy4BJyY0NTA0NTQ2Nz4BNz4BNz4BMxceARceAR8BHgEXHgEXHgEXHgEXHgEXHgEXFgYHMQ4BByMOAQcOASMxKgEnLgEnMS4BJy4BNTEuAScuAScuAScuAScuAScuAScjLgEnLgEnNyMnIiYnLgEnLgEnLgE9ATc0Njc+ATc+ATc2MjMeARceARceARceARceARceARceARceAR0BFAYHDgEHDgEHDgEHIyImJy4BJy4BJy4BJzQmJy4BJy4BJy4BJy4BJy4BJyMuAScuASsB8xc1ISFVNgQHBAUKBQQKBRU1JAEBAaEBARAODQoOKBgWMRgmSCQkSCcEEiYTIiMiQB0dFyYlCwciHRpGLQUIA2cLBAYFFQ4ECgURHgcBAXADBgMCBQICAwEBAQEBAgEEAgMFAwMGAwEVKRQUJxISIhAQHQ4NGAsKEwgHDAUEBwEBAQEDAgIEAwIGAwECAwYCAwUCAwMCAQIBBQQECwYHDwkJFQsLGQ4NHg8BDyEREiQTRQMGAwMEAgIDAQECAgEEAgIGAgMGAwIKEggJEQcBCA8HBw0GBgoFBQgEAwYCAgMBAQEBAQMBAQEFAwMFBAMGAwMFAwIEAgECAQICAQQDAgYDAwcEBAgFBQoFAQUMBgcNByEBAQMFAgMFAgIDAQEBAQIBAQQCAgYDAgcDECAPDxwNDhkLCxUKCREHBw0FBQcDAwMBAQEDAgIFAwMGAwEDBgMCBQMCAwIBAQEDAgIGBAQJBgUNBwgQCAkUCgEKFwwMGw0BAekoTSMkPxwCAQIIBQQMBxwwEQFdAQshExMqEhkhCwoMBAUGCwskGAIMGA4aICBHKCcqRZRIJ0UYFRQEBgSuDx0PDBYKBAcEDB4RAQGYAgECBAICBgMDBgMEBQMDBQECAwEBAQIGBQUNBwgTCwsZDQ4eEBAiExImFBQqFgEBAwYDAgUDAgMCAQIBAQEDAgIFAgMGAxQkEhEiDxAeDQ4ZDAsVCQkQBwcLBAQGAf7XAgECBAIDBQMCBgMCAQMFAwIFAQIDAQEBAQEDAgIGAwEDCAUFCgYGDQcHDwgIEAkJEgoDBgMDBQMCBAIBAgEBAwICBAMDBgMHDQYGDAYFCgUFCAQEBwMDBgIDAwICAgGPAQIBAQQCAgUDAwYDAQEDBgIDBAICBAEBAQQDAwkFBg0HCBEKChUMDBkODRwQDx8RAQMGAwMFAgIEAQEBAQIBAQMCAgUDAwYDDhoNDBgKCxQJCREHCA0GBgoEBAcDAgQAAAQAAP/ABAADwAAFAAkADAAQAAAlNwEhARcJAiEDCQEJAhEB/coBM/wGATPK/g8B8QHx/B4MAQj++AQA/t8BIeLJ/s0BM8kCJv4OAfL9uwEHAQj92AEgASH9vwAACQAA/8ADugPAACIAJwAsADAANAA4ADwAQQBGAAABIgYjKgEnESURBS4BNTQ3PgE3NjMyFx4BFxYVFAYHJREFEQU1BRUlBSU1BRUdASU1ASU1BR0BJTUlFSU1NQUVJTU9AQUVJQIOBAcDAgUC/k8BbjVFEA82JCQpKSQkNg8QRTUBbv5UAWv+4wEd/uMBHf7jAR3+4wEd/uMBHf40/uMBHf7jAR3+4wI1AQH9i1YCdkkXYj4pJCQ2DxAQDzYkJCk+YhdJ/YpVAnQcFzwXPI88FzwXNxc8F/7QPBc8SRc7F/AXOxdTPBc4GzcXOxc7AAAAAQAAAAEAAEwpxiVfDzz1AAsEAAAAAADhZS6+AAAAAOFlLr4AAP/ABAADwAAAAAgAAgAAAAAAAAABAAADwP/AAAAEAAAAAAAEAAABAAAAAAAAAAAAAAAAAAAABwQAAAAAAAAAAAAAAAIAAAAEAAAABAAAAAQAAAAAAAAAAAoAFAAeAmACjgMGAAEAAAAHAY8ACQAAAAAAAgAAAAAAAAAAAAAAAAAAAAAAAAAOAK4AAQAAAAAAAQASAAAAAQAAAAAAAgAHAMMAAQAAAAAAAwASAFcAAQAAAAAABAASANgAAQAAAAAABQALADYAAQAAAAAABgASAI0AAQAAAAAACgAaAQ4AAwABBAkAAQAkABIAAwABBAkAAgAOAMoAAwABBAkAAwAkAGkAAwABBAkABAAkAOoAAwABBAkABQAWAEEAAwABBAkABgAkAJ8AAwABBAkACgA0AShta3ItbGVpY2hlLXNwcmFjaGUAbQBrAHIALQBsAGUAaQBjAGgAZQAtAHMAcAByAGEAYwBoAGVWZXJzaW9uIDEuMABWAGUAcgBzAGkAbwBuACAAMQAuADBta3ItbGVpY2hlLXNwcmFjaGUAbQBrAHIALQBsAGUAaQBjAGgAZQAtAHMAcAByAGEAYwBoAGVta3ItbGVpY2hlLXNwcmFjaGUAbQBrAHIALQBsAGUAaQBjAGgAZQAtAHMAcAByAGEAYwBoAGVSZWd1bGFyAFIAZQBnAHUAbABhAHJta3ItbGVpY2hlLXNwcmFjaGUAbQBrAHIALQBsAGUAaQBjAGgAZQAtAHMAcAByAGEAYwBoAGVGb250IGdlbmVyYXRlZCBieSBJY29Nb29uLgBGAG8AbgB0ACAAZwBlAG4AZQByAGEAdABlAGQAIABiAHkAIABJAGMAbwBNAG8AbwBuAC4AAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA") format("woff"), url("/typo3conf/ext/fh_sitepackage/Resources/Public/dist/assets/mkr-leiche-sprache.7a321b80.svg?a7bug7#mkr-leiche-sprache") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
[class^=mkrlsicon-],
[class*=" mkrlsicon-"] {
  font-family: "mkr-leiche-sprache" !important;
}
[class^=mkrlsicon-],
[class*=" mkrlsicon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  speak: never;
  font-style: normal;
  font-weight: normal;
  -webkit-font-feature-settings: normal;
          font-feature-settings: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.mkrlsicon-phone:before {
  content: "\e900";
  color: #555;
}
.mkrlsicon-mail:before {
  content: "\e901";
  color: #555;
}
.mkrlsicon-leichte-sprache:before {
  content: "\e902";
  color: #555;
}
/*! Avalanche | MIT License | @colourgarden */
/*------------------------------------*\
    SETTINGS
\*------------------------------------*/
/*! Avalanche | MIT License | @colourgarden */
/**
 * SETTINGS
 */
/*--------------------------------------------------------------
## Media Queries
--------------------------------------------------------------*/
/**
 * LOGIC aka THE MAGIC
 */
/**
 * GRID LAYOUT
 */
.grid {
  display: block;
  list-style: none;
  padding: 0;
  margin: 0;
  margin-left: -16px;
  font-size: 0;
}
.grid__cell {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: inline-block;
  width: 100%;
  padding: 0;
  padding-left: 16px;
  margin: 0;
  vertical-align: top;
  font-size: 1rem;
}
.grid--center {
  text-align: center;
}
.grid--center > .grid__cell {
  text-align: left;
}
.grid--right {
  text-align: right;
}
.grid--right > .grid__cell {
  text-align: left;
}
.grid--middle > .grid__cell {
  vertical-align: middle;
}
.grid--bottom > .grid__cell {
  vertical-align: bottom;
}
.grid--flush {
  margin-left: 0;
}
.grid--flush > .grid__cell {
  padding-left: 0;
}
.grid--small {
  margin-left: -8px;
}
.grid--small > .grid__cell {
  padding-left: 8px;
}
.grid--large {
  margin-left: -32px;
}
.grid--large > .grid__cell {
  padding-left: 32px;
}
.grid--huge {
  margin-left: -64px;
}
.grid--huge > .grid__cell {
  padding-left: 64px;
}
.grid--rev {
  direction: rtl;
}
.grid--rev > .grid__cell {
  direction: ltr;
}
/**
 * GRID WIDTHS
 */
.\31 \/5 {
  width: 20%;
}
.\32 \/5 {
  width: 40%;
}
.\33 \/5 {
  width: 60%;
}
.\34 \/5 {
  width: 80%;
}
.\31 \/12 {
  width: 8.3333333333%;
}
.\32 \/12 {
  width: 16.6666666667%;
}
.\33 \/12 {
  width: 25%;
}
.\34 \/12 {
  width: 33.3333333333%;
}
.\35 \/12 {
  width: 41.6666666667%;
}
.\36 \/12 {
  width: 50%;
}
.\37 \/12 {
  width: 58.3333333333%;
}
.\38 \/12 {
  width: 66.6666666667%;
}
.\39 \/12 {
  width: 75%;
}
.\31 0\/12 {
  width: 83.3333333333%;
}
.\31 1\/12 {
  width: 91.6666666667%;
}
@media screen and (min-width: 481px) {
  .\31 \/5--xs {
    width: 20%;
  }
  .\32 \/5--xs {
    width: 40%;
  }
  .\33 \/5--xs {
    width: 60%;
  }
  .\34 \/5--xs {
    width: 80%;
  }
  .\31 \/12--xs {
    width: 8.3333333333%;
  }
  .\32 \/12--xs {
    width: 16.6666666667%;
  }
  .\33 \/12--xs {
    width: 25%;
  }
  .\34 \/12--xs {
    width: 33.3333333333%;
  }
  .\35 \/12--xs {
    width: 41.6666666667%;
  }
  .\36 \/12--xs {
    width: 50%;
  }
  .\37 \/12--xs {
    width: 58.3333333333%;
  }
  .\38 \/12--xs {
    width: 66.6666666667%;
  }
  .\39 \/12--xs {
    width: 75%;
  }
  .\31 0\/12--xs {
    width: 83.3333333333%;
  }
  .\31 1\/12--xs {
    width: 91.6666666667%;
  }
}
@media screen and (min-width: 576px) {
  .\31 \/5--sm {
    width: 20%;
  }
  .\32 \/5--sm {
    width: 40%;
  }
  .\33 \/5--sm {
    width: 60%;
  }
  .\34 \/5--sm {
    width: 80%;
  }
  .\31 \/12--sm {
    width: 8.3333333333%;
  }
  .\32 \/12--sm {
    width: 16.6666666667%;
  }
  .\33 \/12--sm {
    width: 25%;
  }
  .\34 \/12--sm {
    width: 33.3333333333%;
  }
  .\35 \/12--sm {
    width: 41.6666666667%;
  }
  .\36 \/12--sm {
    width: 50%;
  }
  .\37 \/12--sm {
    width: 58.3333333333%;
  }
  .\38 \/12--sm {
    width: 66.6666666667%;
  }
  .\39 \/12--sm {
    width: 75%;
  }
  .\31 0\/12--sm {
    width: 83.3333333333%;
  }
  .\31 1\/12--sm {
    width: 91.6666666667%;
  }
}
@media screen and (min-width: 769px) {
  .\31 \/5--md {
    width: 20%;
  }
  .\32 \/5--md {
    width: 40%;
  }
  .\33 \/5--md {
    width: 60%;
  }
  .\34 \/5--md {
    width: 80%;
  }
  .\31 \/12--md {
    width: 8.3333333333%;
  }
  .\32 \/12--md {
    width: 16.6666666667%;
  }
  .\33 \/12--md {
    width: 25%;
  }
  .\34 \/12--md {
    width: 33.3333333333%;
  }
  .\35 \/12--md {
    width: 41.6666666667%;
  }
  .\36 \/12--md {
    width: 50%;
  }
  .\37 \/12--md {
    width: 58.3333333333%;
  }
  .\38 \/12--md {
    width: 66.6666666667%;
  }
  .\39 \/12--md {
    width: 75%;
  }
  .\31 0\/12--md {
    width: 83.3333333333%;
  }
  .\31 1\/12--md {
    width: 91.6666666667%;
  }
}
@media screen and (min-width: 1025px) {
  .\31 \/5--lg {
    width: 20%;
  }
  .\32 \/5--lg {
    width: 40%;
  }
  .\33 \/5--lg {
    width: 60%;
  }
  .\34 \/5--lg {
    width: 80%;
  }
  .\31 \/12--lg {
    width: 8.3333333333%;
  }
  .\32 \/12--lg {
    width: 16.6666666667%;
  }
  .\33 \/12--lg {
    width: 25%;
  }
  .\34 \/12--lg {
    width: 33.3333333333%;
  }
  .\35 \/12--lg {
    width: 41.6666666667%;
  }
  .\36 \/12--lg {
    width: 50%;
  }
  .\37 \/12--lg {
    width: 58.3333333333%;
  }
  .\38 \/12--lg {
    width: 66.6666666667%;
  }
  .\39 \/12--lg {
    width: 75%;
  }
  .\31 0\/12--lg {
    width: 83.3333333333%;
  }
  .\31 1\/12--lg {
    width: 91.6666666667%;
  }
}
@media screen and (min-width: 1200px) {
  .\31 \/5--xl {
    width: 20%;
  }
  .\32 \/5--xl {
    width: 40%;
  }
  .\33 \/5--xl {
    width: 60%;
  }
  .\34 \/5--xl {
    width: 80%;
  }
  .\31 \/12--xl {
    width: 8.3333333333%;
  }
  .\32 \/12--xl {
    width: 16.6666666667%;
  }
  .\33 \/12--xl {
    width: 25%;
  }
  .\34 \/12--xl {
    width: 33.3333333333%;
  }
  .\35 \/12--xl {
    width: 41.6666666667%;
  }
  .\36 \/12--xl {
    width: 50%;
  }
  .\37 \/12--xl {
    width: 58.3333333333%;
  }
  .\38 \/12--xl {
    width: 66.6666666667%;
  }
  .\39 \/12--xl {
    width: 75%;
  }
  .\31 0\/12--xl {
    width: 83.3333333333%;
  }
  .\31 1\/12--xl {
    width: 91.6666666667%;
  }
}
/*--------------------------------------------------------------
## Container
--------------------------------------------------------------*/
.container, .container--fullwidth {
  margin: 0 auto;
  padding: 0px 16px;
}
@media (min-width: 769px) {
  .container, .container--fullwidth {
    padding: 0px 32px;
  }
}
@media (min-width: 1025px) {
  .container, .container--fullwidth {
    max-width: 972px;
  }
}
@media (min-width: 1200px) {
  .container, .container--fullwidth {
    max-width: 1432px;
  }
}
.container--fullwidth {
  max-width: none;
  padding: 0px;
}
/*--------------------------------------------------------------
# Material Design Layers
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Layer class
--------------------------------------------------------------*/
.layer--1 {
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
          box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  -webkit-transition: -webkit-box-shadow 0.2s;
  transition: -webkit-box-shadow 0.2s;
  transition: box-shadow 0.2s;
  transition: box-shadow 0.2s, -webkit-box-shadow 0.2s;
  position: relative;
  z-index: 1;
}
.layer--2 {
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  -webkit-transition: -webkit-box-shadow 0.2s;
  transition: -webkit-box-shadow 0.2s;
  transition: box-shadow 0.2s;
  transition: box-shadow 0.2s, -webkit-box-shadow 0.2s;
  position: relative;
  z-index: 2;
}
.layer--3 {
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
  -webkit-transition: -webkit-box-shadow 0.2s;
  transition: -webkit-box-shadow 0.2s;
  transition: box-shadow 0.2s;
  transition: box-shadow 0.2s, -webkit-box-shadow 0.2s;
  position: relative;
  z-index: 3;
}
.layer--4 {
  -webkit-box-shadow: 0 15px 100px rgba(0, 0, 0, 0.15), 0 10px 30px rgba(0, 0, 0, 0.22);
          box-shadow: 0 15px 100px rgba(0, 0, 0, 0.15), 0 10px 30px rgba(0, 0, 0, 0.22);
  -webkit-transition: -webkit-box-shadow 0.2s;
  transition: -webkit-box-shadow 0.2s;
  transition: box-shadow 0.2s;
  transition: box-shadow 0.2s, -webkit-box-shadow 0.2s;
  position: relative;
  z-index: 4;
}
.layer--5 {
  -webkit-box-shadow: 0 20px 200px rgba(0, 0, 0, 0.2), 0 15px 50px rgba(0, 0, 0, 0.22);
          box-shadow: 0 20px 200px rgba(0, 0, 0, 0.2), 0 15px 50px rgba(0, 0, 0, 0.22);
  -webkit-transition: -webkit-box-shadow 0.2s;
  transition: -webkit-box-shadow 0.2s;
  transition: box-shadow 0.2s;
  transition: box-shadow 0.2s, -webkit-box-shadow 0.2s;
  position: relative;
  z-index: 5;
}
/*--------------------------------------------------------------
# Layer hover class
--------------------------------------------------------------*/
.layer--1-hov {
  -webkit-transition: -webkit-box-shadow 0.2s;
  transition: -webkit-box-shadow 0.2s;
  transition: box-shadow 0.2s;
  transition: box-shadow 0.2s, -webkit-box-shadow 0.2s;
}
.layer--1-hov:hover {
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
          box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  position: relative;
  z-index: 1;
}
.layer--2-hov {
  -webkit-transition: -webkit-box-shadow 0.2s;
  transition: -webkit-box-shadow 0.2s;
  transition: box-shadow 0.2s;
  transition: box-shadow 0.2s, -webkit-box-shadow 0.2s;
}
.layer--2-hov:hover {
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  position: relative;
  z-index: 1;
}
.layer--3-hov {
  -webkit-transition: -webkit-box-shadow 0.2s;
  transition: -webkit-box-shadow 0.2s;
  transition: box-shadow 0.2s;
  transition: box-shadow 0.2s, -webkit-box-shadow 0.2s;
}
.layer--3-hov:hover {
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
  position: relative;
  z-index: 1;
}
.layer--4-hov {
  -webkit-transition: -webkit-box-shadow 0.2s;
  transition: -webkit-box-shadow 0.2s;
  transition: box-shadow 0.2s;
  transition: box-shadow 0.2s, -webkit-box-shadow 0.2s;
}
.layer--4-hov:hover {
  -webkit-box-shadow: 0 15px 100px rgba(0, 0, 0, 0.15), 0 10px 30px rgba(0, 0, 0, 0.22);
          box-shadow: 0 15px 100px rgba(0, 0, 0, 0.15), 0 10px 30px rgba(0, 0, 0, 0.22);
  position: relative;
  z-index: 1;
}
.layer--5-hov {
  -webkit-transition: -webkit-box-shadow 0.2s;
  transition: -webkit-box-shadow 0.2s;
  transition: box-shadow 0.2s;
  transition: box-shadow 0.2s, -webkit-box-shadow 0.2s;
}
.layer--5-hov:hover {
  -webkit-box-shadow: 0 20px 200px rgba(0, 0, 0, 0.2), 0 15px 50px rgba(0, 0, 0, 0.22);
          box-shadow: 0 20px 200px rgba(0, 0, 0, 0.2), 0 15px 50px rgba(0, 0, 0, 0.22);
  position: relative;
  z-index: 1;
}
@font-face {
  font-family: "DINNextLTPro-Bold";
  src: url("/typo3conf/ext/fh_sitepackage/Resources/Public/dist/assets/3768A5_0_0.83bdf5fb.eot");
  src: url("/typo3conf/ext/fh_sitepackage/Resources/Public/dist/assets/3768A5_0_0.83bdf5fb.eot?#iefix") format("embedded-opentype"), url("/typo3conf/ext/fh_sitepackage/Resources/Public/dist/assets/3768A5_0_0.09185f24.woff2") format("woff2"), url("/typo3conf/ext/fh_sitepackage/Resources/Public/dist/assets/3768A5_0_0.b8f782dc.woff") format("woff"), url("/typo3conf/ext/fh_sitepackage/Resources/Public/dist/assets/3768A5_0_0.ebd9f681.ttf") format("truetype");
}
@font-face {
  font-family: "DINNextLTPro-Medium";
  src: url("/typo3conf/ext/fh_sitepackage/Resources/Public/dist/assets/3768A5_3_0.69d78f84.eot");
  src: url("/typo3conf/ext/fh_sitepackage/Resources/Public/dist/assets/3768A5_3_0.69d78f84.eot?#iefix") format("embedded-opentype"), url("/typo3conf/ext/fh_sitepackage/Resources/Public/dist/assets/3768A5_3_0.78d45240.woff2") format("woff2"), url("/typo3conf/ext/fh_sitepackage/Resources/Public/dist/assets/3768A5_3_0.b874898b.woff") format("woff"), url("/typo3conf/ext/fh_sitepackage/Resources/Public/dist/assets/3768A5_3_0.ccde8135.ttf") format("truetype");
}
@font-face {
  font-display: swap;
  font-family: "IBM Plex Sans";
  font-style: normal;
  font-weight: 400;
  src: url("/typo3conf/ext/fh_sitepackage/Resources/Public/dist/assets/ibm-plex-sans-v19-latin-regular.db71f8a2.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "IBM Plex Sans";
  font-style: italic;
  font-weight: 400;
  src: url("/typo3conf/ext/fh_sitepackage/Resources/Public/dist/assets/ibm-plex-sans-v19-latin-italic.b22694fa.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "IBM Plex Sans";
  font-style: normal;
  font-weight: 600;
  src: url("/typo3conf/ext/fh_sitepackage/Resources/Public/dist/assets/ibm-plex-sans-v19-latin-600.31535a91.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "IBM Plex Sans";
  font-style: italic;
  font-weight: 600;
  src: url("/typo3conf/ext/fh_sitepackage/Resources/Public/dist/assets/ibm-plex-sans-v19-latin-600italic.eb496bd2.woff2") format("woff2");
}
/*--------------------------------------------------------------
## Vars
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Font Size Helper
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Defaults
--------------------------------------------------------------*/
.sidebar ul li,
.ngdialog-theme-lvr ul li, ul.list.list--klassenpaket li, ul.list li, .content-col ul li, ul,
ol, p, html,
body {
  font-size: 18px;
  line-height: 1.5555555556;
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-weight: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.footer .footer__contact, .footer, .sidebar .newslist .newslist__date {
  font-size: 16px;
  line-height: 1.25;
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-style: italic;
  color: #555;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.photo-slider .photo-slider__item .photo-slider__item__caption, figure figcaption, figure.image figcaption, small {
  font-size: 12px;
  line-height: 1.5;
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-weight: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a.link {
  font-size: 14px;
  line-height: 1;
  letter-spacing: 1px;
  font-family: "DINNextLTPro-Medium", Verdana, sans-serif;
  text-transform: uppercase;
  color: #23383a;
  font-weight: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.text--small {
  font-size: 12px;
  line-height: 1.5;
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-weight: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/*--------------------------------------------------------------
## Base
--------------------------------------------------------------*/
html,
body {
  margin: 0;
  background: #ffffff;
  -webkit-margin-before: 0;
  -webkit-margin-after: 0;
  outline: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}
a,
span {
  outline: 0 !important;
}
p {
  margin: 0px;
  padding: 0px;
  -webkit-margin-before: 0;
  -webkit-margin-after: 0;
}
p a {
  text-decoration: none;
  outline: 0;
  font-family: "DINNextLTPro-Medium", Verdana, sans-serif;
  color: rgb(0, 150, 64);
  word-break: break-word;
}
@media (min-width: 576px) {
  p a {
    word-break: normal;
  }
}
p a[target=_blank]:after {
  padding-left: 2px;
}
p + p, p + ul, p + ol {
  margin-top: 16px;
}
strong,
b {
  font-weight: 600;
}
.section {
  margin: 160px 0;
}
.section.section--title {
  color: #ffffff;
  margin: 32px 0;
  padding: 32px 0;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}
.section--bordered {
  border: 85px solid #ffffff;
}
/*--------------------------------------------------------------
# Section Modifier
--------------------------------------------------------------*/
.section--bg {
  margin: 0px;
  padding: 64px 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.section--contactform {
  position: relative;
}
.section--contactform > .container, .section--contactform > .container--fullwidth {
  position: relative;
  z-index: 1;
}
.section--contactform:after {
  content: "";
  position: absolute;
  bottom: 16px;
  left: 0;
  width: 100%;
  height: 76px;
  background-color: rgba(0, 150, 64, 0.4);
  z-index: 0;
}
.section--fullscreen {
  height: 100vh;
}
.section--fullscreen .container, .section--fullscreen .container--fullwidth {
  height: 100%;
}
.section--fullscreen .container .grid, .section--fullscreen .container--fullwidth .grid {
  height: 100%;
}
.section--fullscreen .container .grid .grid__cell, .section--fullscreen .container--fullwidth .grid .grid__cell {
  height: 100%;
}
/*--------------------------------------------------------------
## For display purposes
--------------------------------------------------------------*/
.section--demo-only {
  padding: 160px 0;
}
.section--demo-only h1.h1 {
  text-align: center;
}
/*--------------------------------------------------------------
## Site Wrapper
--------------------------------------------------------------*/
@-webkit-keyframes bodyFade {
  0% {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes bodyFade {
  0% {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
#site-wrapper {
  background: #ffffff;
  margin: 0 auto;
  overflow: hidden;
  width: 100%;
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
  -webkit-animation-delay: 1.4s;
          animation-delay: 1.4s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
html.no-cssanimations #site-wrapper, html.no-js #site-wrapper {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.gridwrapper {
  margin: 64px 0;
}
.content-col {
  position: relative;
}
@media (min-width: 1025px) {
  .content-col {
    padding-right: 32px;
  }
  .content-col:after {
    content: "";
    width: 2px;
    background: #f9f9f9;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
  }
}
body {
  padding-top: 60px;
}
@media (min-width: 769px) {
  body {
    padding-top: 90px;
  }
}
@media (min-width: 1025px) {
  body {
    padding-top: 0;
  }
}
.hidden {
  display: none;
}
.hide--sm {
  display: none;
}
@media (min-width: 576px) {
  .hide--sm {
    display: inline-block;
  }
}
/*--------------------------------------------------------------
## Text Align
--------------------------------------------------------------*/
.text-left {
  text-align: left !important;
}
.text-center {
  text-align: center !important;
}
.text-right {
  text-align: right !important;
}
/*--------------------------------------------------------------
## Clearfix
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Alignments
--------------------------------------------------------------*/
.margin-0 {
  margin: 0 !important;
}
.margin-top-0 {
  margin-top: 0 !important;
}
.margin-top-1x {
  margin-top: 16px !important;
}
.margin-top-2x {
  margin-top: 32px !important;
}
.margin-bottom-0 {
  margin-bottom: 0 !important;
}
.margin-bottom-1x {
  margin-bottom: 16px !important;
}
.margin-bottom-2x {
  margin-bottom: 32px !important;
}
.padding-0 {
  padding: 0 !important;
}
.padding-top-0 {
  padding-top: 0 !important;
}
.padding-top-1x {
  padding-top: 16px !important;
}
.padding-top-2x {
  padding-top: 32px !important;
}
.padding-bottom-0 {
  padding-bottom: 0 !important;
}
.padding-bottom-1x {
  padding-bottom: 16px !important;
}
.padding-bottom-2x {
  padding-bottom: 32px !important;
}
/*--------------------------------------------------------------
## Responsive Ratio
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Buttons

Define the Headline you want to use.
Note: All defined Headlines need a placeholder aswell.
Use the Placeholders to style the headlines.

If you want to make another selector look like a headline, use the "@extend %h1;" command.

--------------------------------------------------------------*/
.btn--grey, .btn, section.login .tx-felogin-pi1 fieldset > div > input[type=submit] {
  outline: none !important;
}
.btn--grey, .btn, section.login .tx-felogin-pi1 fieldset > div > input[type=submit] {
  display: inline-block;
  padding: 12px 32px 12px 32px;
  position: relative;
  border: 2px solid transparent;
  background: transparent;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
  -webkit-transition: background 0.2s linear, border 0.3s linear, -webkit-transform 0.1s linear, -webkit-box-shadow 0.2s linear;
  transition: background 0.2s linear, border 0.3s linear, -webkit-transform 0.1s linear, -webkit-box-shadow 0.2s linear;
  transition: transform 0.1s linear, box-shadow 0.2s linear, background 0.2s linear, border 0.3s linear;
  transition: transform 0.1s linear, box-shadow 0.2s linear, background 0.2s linear, border 0.3s linear, -webkit-transform 0.1s linear, -webkit-box-shadow 0.2s linear;
  text-decoration: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  cursor: pointer;
  text-shadow: none;
  margin: 0px;
  font-weight: 500;
  font-family: "IBM Plex Sans", Arial, sans-serif;
  border-radius: 3px;
  text-transform: none;
  font-size: 16px;
  line-height: 1;
}
.btn--grey:hover, .btn:hover, section.login .tx-felogin-pi1 fieldset > div > input[type=submit]:hover {
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}
.btn--grey:focus, .btn:focus, section.login .tx-felogin-pi1 fieldset > div > input[type=submit]:focus {
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
          box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}
.btn--grey:active, .btn:active, section.login .tx-felogin-pi1 fieldset > div > input[type=submit]:active {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.disabled.btn--grey, .disabled.btn, section.login .tx-felogin-pi1 fieldset > div > input.disabled[type=submit], [disabled].btn--grey, [disabled].btn, section.login .tx-felogin-pi1 fieldset > div > input[disabled][type=submit] {
  pointer-events: none;
  opacity: 0.4;
  position: relative;
}
.disabled.btn--grey:hover, .disabled.btn:hover, section.login .tx-felogin-pi1 fieldset > div > input.disabled[type=submit]:hover, [disabled].btn--grey:hover, [disabled].btn:hover, section.login .tx-felogin-pi1 fieldset > div > input[disabled][type=submit]:hover {
  -webkit-transform: none !important;
          transform: none !important;
}
/*--------------------------------------------------------------
# Button Colors
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Default Color Button Styling
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Default Color Button Solid Styling
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Generate Buttons
--------------------------------------------------------------*/
.btn--primary,
.btn.btn--primary,
section.login .tx-felogin-pi1 fieldset > div > input.btn--primary[type=submit],
input[type=submit].btn--primary,
button.btn--primary {
  background-color: rgb(0, 150, 64);
  color: #ffffff;
  border-color: rgb(0, 150, 64);
}
.btn--primary:hover,
.btn.btn--primary:hover,
section.login .tx-felogin-pi1 fieldset > div > input.btn--primary[type=submit]:hover,
input[type=submit].btn--primary:hover,
button.btn--primary:hover {
  border-color: #00b04b;
  background-color: #00b04b;
}
.btn.btn--solid-primary, section.login .tx-felogin-pi1 fieldset > div > input.btn--solid-primary[type=submit],
input[type=submit].btn--solid-primary,
button.btn--solid-primary {
  background-color: rgb(0, 150, 64);
  color: #ffffff;
  border-color: rgb(0, 150, 64);
}
.btn.btn--solid-primary:hover, section.login .tx-felogin-pi1 fieldset > div > input.btn--solid-primary[type=submit]:hover,
input[type=submit].btn--solid-primary:hover,
button.btn--solid-primary:hover {
  border-color: #00b04b;
  background-color: #00b04b;
}
.btn--secondary, section.login .tx-felogin-pi1 fieldset > div > input[type=submit],
.btn.btn--secondary,
input[type=submit].btn--secondary,
button.btn--secondary {
  background-color: rgb(195, 32, 18);
  color: #ffffff;
  border-color: rgb(195, 32, 18);
}
.btn--secondary:hover, section.login .tx-felogin-pi1 fieldset > div > input[type=submit]:hover,
.btn.btn--secondary:hover,
input[type=submit].btn--secondary:hover,
button.btn--secondary:hover {
  border-color: #da2414;
  background-color: #da2414;
}
.btn.btn--solid-secondary, section.login .tx-felogin-pi1 fieldset > div > input.btn--solid-secondary[type=submit],
input[type=submit].btn--solid-secondary,
button.btn--solid-secondary {
  background-color: rgb(195, 32, 18);
  color: #ffffff;
  border-color: rgb(195, 32, 18);
}
.btn.btn--solid-secondary:hover, section.login .tx-felogin-pi1 fieldset > div > input.btn--solid-secondary[type=submit]:hover,
input[type=submit].btn--solid-secondary:hover,
button.btn--solid-secondary:hover {
  border-color: #da2414;
  background-color: #da2414;
}
.btn--white,
.btn.btn--white,
section.login .tx-felogin-pi1 fieldset > div > input.btn--white[type=submit],
input[type=submit].btn--white,
button.btn--white {
  background-color: #ffffff;
  color: #ffffff;
  border-color: #ffffff;
  color: #ffffff;
  border-color: #ffffff;
}
.btn--white:hover,
.btn.btn--white:hover,
section.login .tx-felogin-pi1 fieldset > div > input.btn--white[type=submit]:hover,
input[type=submit].btn--white:hover,
button.btn--white:hover {
  border-color: white;
  background-color: white;
}
.btn.btn--solid-white, section.login .tx-felogin-pi1 fieldset > div > input.btn--solid-white[type=submit],
input[type=submit].btn--solid-white,
button.btn--solid-white {
  background-color: #ffffff;
  color: #ffffff;
  border-color: #ffffff;
  color: #ffffff;
  border-color: #ffffff;
}
.btn.btn--solid-white:hover, section.login .tx-felogin-pi1 fieldset > div > input.btn--solid-white[type=submit]:hover,
input[type=submit].btn--solid-white:hover,
button.btn--solid-white:hover {
  border-color: white;
  background-color: white;
}
/*--------------------------------------------------------------
## Default
--------------------------------------------------------------*/
.btn--grey {
  padding: 8px 10px 8px 10px;
  background: none;
  color: #555;
  border: 1px solid #555;
  font-weight: 400;
}
/*--------------------------------------------------------------
## Icons
--------------------------------------------------------------*/
.btn--pointdown:after {
  font-family: "icomoon" !important;
}
.btn--pointdown:after {
  content: "\e5db";
  /* use !important to prevent issues with browser extensions that change fonts */
  speak: none;
  font-style: normal;
  font-weight: normal;
  -webkit-font-feature-settings: normal;
          font-feature-settings: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  margin-left: 8px;
}
.btn--readmore:after {
  font-family: "icomoon" !important;
}
.btn--readmore:after {
  content: "\e5c8";
  /* use !important to prevent issues with browser extensions that change fonts */
  speak: none;
  font-style: normal;
  font-weight: normal;
  -webkit-font-feature-settings: normal;
          font-feature-settings: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  margin-left: 8px;
}
.btn--big {
  position: relative;
}
.btn--big:before {
  font-family: "icomoon" !important;
}
.btn--big:before {
  content: "\e5c8";
  /* use !important to prevent issues with browser extensions that change fonts */
  speak: none;
  font-style: normal;
  font-weight: normal;
  -webkit-font-feature-settings: normal;
          font-feature-settings: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: block;
  position: absolute;
  background-color: #555;
}
/*--------------------------------------------------------------

# Headlines

Define the Headline you want to use. 
Note: All defined Headlines need a placeholder aswell.
Use the Placeholders to style the headlines.

If you want to make another selector look like a headline, use the "@extend %h1;" command.

--------------------------------------------------------------*/
h6, h5, h4, h3, h2, h1, h6.h600, h5.h600, h4.h600, h3.h600, h2.h600, h1.h600, .h600, h6.h500, h5.h500, h4.h500, h3.h500, h2.h500, h1.h500, .h500, h6.h400, h5.h400, h4.h400, h3.h400, h2.h400, h1.h400, .h400, h6.h300, h5.h300, h4.h300, h3.h300, h2.h300, h1.h300, .h300, h6.h200, h5.h200, h4.h200, h3.h200, h2.h200, h1.h200, .h200, h6.h100, h5.h100, h4.h100, h3.h100, h2.h100, h1.h100, .h100 {
  -webkit-margin-before: 0;
  -webkit-margin-after: 0;
  font-weight: normal;
  margin: 0px;
  font-family: "IBM Plex Sans", Arial, sans-serif;
  padding: 0px;
  color: inherit;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h6 + p, h5 + p, h4 + p, h3 + p, h2 + p, h1 + p, .h600 + p, .h500 + p, .h400 + p, .h300 + p, .h200 + p, .h100 + p, h6 + ul, h5 + ul, h4 + ul, h3 + ul, h2 + ul, h1 + ul, .h600 + ul, .h500 + ul, .h400 + ul, .h300 + ul, .h200 + ul, .h100 + ul, h6 + ol, h5 + ol, h4 + ol, h3 + ol, h2 + ol, h1 + ol, .h600 + ol, .h500 + ol, .h400 + ol, .h300 + ol, .h200 + ol, .h100 + ol {
  margin-top: 16px;
}
h6 span.text-cursive, h5 span.text-cursive, h4 span.text-cursive, h3 span.text-cursive, h2 span.text-cursive, h1 span.text-cursive, .h600 span.text-cursive, .h500 span.text-cursive, .h400 span.text-cursive, .h300 span.text-cursive, .h200 span.text-cursive, .h100 span.text-cursive {
  font-weight: 500;
  font-style: italic;
  color: #555;
  padding: 0px 16px;
}
h6 span.text-cursive:before, h5 span.text-cursive:before, h4 span.text-cursive:before, h3 span.text-cursive:before, h2 span.text-cursive:before, h1 span.text-cursive:before, .h600 span.text-cursive:before, .h500 span.text-cursive:before, .h400 span.text-cursive:before, .h300 span.text-cursive:before, .h200 span.text-cursive:before, .h100 span.text-cursive:before {
  content: "»";
}
h6 span.text-cursive:after, h5 span.text-cursive:after, h4 span.text-cursive:after, h3 span.text-cursive:after, h2 span.text-cursive:after, h1 span.text-cursive:after, .h600 span.text-cursive:after, .h500 span.text-cursive:after, .h400 span.text-cursive:after, .h300 span.text-cursive:after, .h200 span.text-cursive:after, .h100 span.text-cursive:after {
  content: "«";
}
h6.text-inline, h5.text-inline, h4.text-inline, h3.text-inline, h2.text-inline, h1.text-inline, .text-inline.h600, .text-inline.h500, .text-inline.h400, .text-inline.h300, .text-inline.h200, .text-inline.h100 {
  display: inline-block;
}
h6 b, h5 b, h4 b, h3 b, h2 b, h1 b, .h600 b, .h500 b, .h400 b, .h300 b, .h200 b, .h100 b, h6 strong, h5 strong, h4 strong, h3 strong, h2 strong, h1 strong, .h600 strong, .h500 strong, .h400 strong, .h300 strong, .h200 strong, .h100 strong {
  font-family: "DINNextLTPro-Bold", Verdana, sans-serif;
  letter-spacing: 0.05em;
  font-weight: normal;
}
h6.bold, h5.bold, h4.bold, h3.bold, h2.bold, h1.bold, .bold.h600, .bold.h500, .bold.h400, .bold.h300, .bold.h200, .bold.h100 {
  font-family: "DINNextLTPro-Bold", Verdana, sans-serif;
  font-weight: normal;
}
h6.medium, h5.medium, h4.medium, h3.medium, h2.medium, h1.medium, .medium.h600, .medium.h500, .medium.h400, .medium.h300, .medium.h200, .medium.h100 {
  font-family: "DINNextLTPro-Medium", Verdana, sans-serif;
  font-weight: normal;
}
h6.light, h5.light, h4.light, h3.light, h2.light, h1.light, .light.h600, .light.h500, .light.h400, .light.h300, .light.h200, .light.h100 {
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-weight: normal;
}
h6.h100, h5.h100, h4.h100, h3.h100, h2.h100, h1.h100, .h100 {
  display: block;
  font-family: "DINNextLTPro-Bold", Verdana, sans-serif;
  font-size: 50px;
  line-height: 1;
  text-transform: uppercase;
}
h6.h200, h5.h200, h4.h200, h3.h200, h2.h200, h1.h200, .h200 {
  display: block;
  font-family: "DINNextLTPro-Bold", Verdana, sans-serif;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  font-size: 24px;
  line-height: 1.3333333333;
}
h6.h300, h5.h300, h4.h300, h3.h300, h2.h300, h1.h300, .h300 {
  display: block;
  font-family: "DINNextLTPro-Bold", Verdana, sans-serif;
  text-transform: uppercase;
  font-size: 24px;
  line-height: 1;
}
h6.h400, h5.h400, h4.h400, h3.h400, h2.h400, h1.h400, .h400 {
  display: block;
  font-family: "DINNextLTPro-Medium", Verdana, sans-serif;
  font-size: 18px;
  line-height: 1;
}
h6.h500, h5.h500, h4.h500, h3.h500, h2.h500, h1.h500, .h500 {
  display: block;
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: 18px;
  line-height: 1;
}
h6.h600, h5.h600, h4.h600, h3.h600, h2.h600, h1.h600, .h600 {
  display: block;
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-size: 18px;
  line-height: 1;
}
/*--------------------------------------------------------------
## Generate Headline Styles automatically
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Styles
--------------------------------------------------------------*/
.uppercase {
  text-transform: uppercase;
}
.light {
  font-weight: normal;
}
.bold {
  font-weight: normal;
}
a {
  text-decoration: none;
  font-weight: normal;
  color: inherit;
  outline: none;
}
a:focus {
  outline: none;
}
hr {
  width: 100%;
  background: rgb(195, 32, 18);
  height: 2px;
  border: none;
}
hr.grey {
  background: #f9f9f9;
}
.marker, .h200 > span {
  display: inline-block;
  position: relative;
}
.marker:after, .h200 > span:after {
  content: "";
  width: 100%;
  height: 40%;
  bottom: 0;
  left: 0;
  z-index: -1;
  background: rgb(0, 150, 64);
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 150, 64, 0.6)), to(rgba(0, 150, 64, 0.8)));
  background: linear-gradient(to bottom, rgba(0, 150, 64, 0.6) 0%, rgba(0, 150, 64, 0.8) 100%);
  position: absolute;
}
/*--------------------------------------------------------------
# Lists
--------------------------------------------------------------*/
ul, ol {
  list-style: none;
  padding: 0;
  margin: 0;
  -webkit-margin-before: 0;
  -webkit-margin-after: 0;
  font-weight: normal;
}
ul li, ol li {
  padding: 0;
  margin: 0;
}
ul + p, ul + ul, ul + ol, ol + p, ol + ul, ol + ol {
  margin-top: 16px;
}
.content-col ol {
  list-style-position: outside;
  list-style-type: decimal;
  margin-left: 1.2em;
}
/*--------------------------------------------------------------
# List
--------------------------------------------------------------*/
ul.list li, .content-col ul li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 16px;
}
ul.list li:before, .content-col ul li:before {
  font-family: "icomoon" !important;
}
ul.list li:before, .content-col ul li:before {
  content: "\e5c8";
  /* use !important to prevent issues with browser extensions that change fonts */
  speak: none;
  font-style: normal;
  font-weight: normal;
  -webkit-font-feature-settings: normal;
          font-feature-settings: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  left: 0;
  top: 6px;
}
ul.list.list--klassenpaket {
  margin-top: 32px;
  margin-bottom: 32px;
}
@media (min-width: 769px) {
  ul.list.list--klassenpaket {
    max-width: 60%;
  }
}
ul.list.list--klassenpaket li {
  position: relative;
  padding-left: 76px;
  margin-bottom: 16px;
}
ul.list.list--klassenpaket li:before {
  content: "";
  width: 60px;
  height: 60px;
  position: absolute;
  left: 0;
  top: 0px;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}
ul.list.list--klassenpaket li:nth-of-type(1):before {
  background-image: url(../img/icons/medienkompetenzrahmen-icon.jpg);
}
ul.list.list--klassenpaket li:nth-of-type(2):before {
  background-image: url(../img/icons/medienpass-icon.jpg);
}
ul.list.list--klassenpaket li:nth-of-type(3):before {
  background-image: url(../img/icons/stern-icon.jpg);
}
/*--------------------------------------------------------------
## Checklis
--------------------------------------------------------------*/
ul.list.list--checklist.text-white {
  color: #ffffff;
}
ul.list.list--checklist.text-white li {
  color: #ffffff;
}
ul.list.list--checklist li {
  color: #23383a;
  padding-left: 17.6px;
  position: relative;
}
ul.list.list--checklist li:before {
  font-family: "icomoon" !important;
}
ul.list.list--checklist li:before {
  content: "\e5c8";
  /* use !important to prevent issues with browser extensions that change fonts */
  speak: none;
  font-style: normal;
  font-weight: normal;
  -webkit-font-feature-settings: normal;
          font-feature-settings: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  top: 10px;
  left: 0;
  color: rgb(0, 150, 64);
}
img {
  display: inline-block;
  max-width: 100%;
  height: auto;
  margin: 0;
}
.img--responsive, picture.img--responsive, picture img {
  width: 100%;
  height: auto;
}
figure, figure.image {
  padding: 0;
  display: block;
  -webkit-margin-before: 0em;
  -webkit-margin-after: 0em;
  -webkit-margin-start: 0px;
  -webkit-margin-end: 0px;
  margin: 16px 0;
  width: 100%;
}
figure img, figure picture, figure.image img, figure.image picture {
  width: 100%;
  height: auto;
}
figure figcaption, figure.image figcaption {
  text-align: right;
  color: #555;
}
.embed-container {
  position: relative;
  padding-bottom: 56.25%; /* ratio 16x9 */
  height: 0;
  overflow: hidden;
  width: 100%;
  height: auto;
}
.embed-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/* ratio 4x3 */
.embed-container.ratio4x3 {
  padding-bottom: 75%;
}
/*--------------------------------------------------------------
## Inputs
--------------------------------------------------------------*/
input.form-control,
textarea.form-control {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: none;
  color: #ffffff;
  border: none;
  padding: 8px 16px;
  width: 100%;
  font-weight: normal;
  border-radius: 3px;
  font-size: 16px;
  line-height: 0.875;
}
input.form-control:focus,
textarea.form-control:focus {
  outline: none;
}
/*--------------------------------------------------------------
## Form Control Vars
--------------------------------------------------------------*/
section.login .tx-felogin-pi1 fieldset > div > input[type=text], section.login .tx-felogin-pi1 fieldset > div > input[type=password], .form-control input, .form-control select, .form-control textarea {
  border: 0px;
  background: #ffffff;
  width: 100%;
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-weight: normal;
  font-size: 14px;
  line-height: 1.1428571429;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: 0;
  border-radius: 0;
  color: rgb(195, 32, 18);
  height: 42px;
  line-height: 1;
  padding-left: 8px;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  -webkit-box-shadow: inset 0px 2px 4px rgba(0, 0, 0, 0.1);
          box-shadow: inset 0px 2px 4px rgba(0, 0, 0, 0.1);
}
div.bg-primary section.login .tx-felogin-pi1 fieldset > div > input[type=text], section.login .tx-felogin-pi1 div.bg-primary fieldset > div > input[type=text], div.bg-primary section.login .tx-felogin-pi1 fieldset > div > input[type=password], section.login .tx-felogin-pi1 div.bg-primary fieldset > div > input[type=password], div.bg-primary .form-control input, .form-control div.bg-primary input, div.bg-primary .form-control select, .form-control div.bg-primary select, div.bg-primary .form-control textarea, .form-control div.bg-primary textarea, section.bg-primary section.login .tx-felogin-pi1 fieldset > div > input[type=text], section.login .tx-felogin-pi1 section.bg-primary fieldset > div > input[type=text], section.bg-primary section.login .tx-felogin-pi1 fieldset > div > input[type=password], section.login .tx-felogin-pi1 section.bg-primary fieldset > div > input[type=password], section.bg-primary .form-control input, .form-control section.bg-primary input, section.bg-primary .form-control select, .form-control section.bg-primary select, section.bg-primary .form-control textarea, .form-control section.bg-primary textarea {
  border-bottom: 2px solid #ffffff;
  background: #008c3c;
}
section.login .tx-felogin-pi1 fieldset > div > label, label.form-label {
  font-weight: normal;
  color: #000000;
  font-family: "IBM Plex Sans", Arial, sans-serif;
  text-transform: none;
  background: #ffffff;
}
div.bg-primary section.login .tx-felogin-pi1 fieldset > div > label, section.login .tx-felogin-pi1 div.bg-primary fieldset > div > label, div.bg-primary label.form-label, section.bg-primary section.login .tx-felogin-pi1 fieldset > div > label, section.login .tx-felogin-pi1 section.bg-primary fieldset > div > label, section.bg-primary label.form-label {
  color: #ffffff;
}
/*--------------------------------------------------------------
## Form Control
--------------------------------------------------------------*/
.form-control {
  display: block;
  position: relative;
  /*--------------------------------------------------------------
  ## Radio
  --------------------------------------------------------------*/
  /*--------------------------------------------------------------
  ## Checkbox
  --------------------------------------------------------------*/
  /*--------------------------------------------------------------
  ## Select
  --------------------------------------------------------------*/
}
.form-control:after {
  content: "";
  display: table;
  clear: both;
}
.form-control input::-webkit-input-placeholder, .form-control select::-webkit-input-placeholder, .form-control textarea::-webkit-input-placeholder {
  color: #555;
}
.form-control input::-moz-placeholder, .form-control select::-moz-placeholder, .form-control textarea::-moz-placeholder {
  color: #555;
}
.form-control input:-ms-input-placeholder, .form-control select:-ms-input-placeholder, .form-control textarea:-ms-input-placeholder {
  color: #555;
}
.form-control input:-moz-placeholder, .form-control select:-moz-placeholder, .form-control textarea:-moz-placeholder {
  color: #555;
}
div.bg-primary .form-control input::-webkit-input-placeholder, section.bg-primary .form-control input::-webkit-input-placeholder, div.bg-primary .form-control select::-webkit-input-placeholder, section.bg-primary .form-control select::-webkit-input-placeholder, div.bg-primary .form-control textarea::-webkit-input-placeholder, section.bg-primary .form-control textarea::-webkit-input-placeholder {
  color: #ffffff;
}
div.bg-primary .form-control input::-moz-placeholder, section.bg-primary .form-control input::-moz-placeholder, div.bg-primary .form-control select::-moz-placeholder, section.bg-primary .form-control select::-moz-placeholder, div.bg-primary .form-control textarea::-moz-placeholder, section.bg-primary .form-control textarea::-moz-placeholder {
  color: #ffffff;
}
div.bg-primary .form-control input:-ms-input-placeholder, section.bg-primary .form-control input:-ms-input-placeholder, div.bg-primary .form-control select:-ms-input-placeholder, section.bg-primary .form-control select:-ms-input-placeholder, div.bg-primary .form-control textarea:-ms-input-placeholder, section.bg-primary .form-control textarea:-ms-input-placeholder {
  color: #ffffff;
}
div.bg-primary .form-control input:-moz-placeholder, section.bg-primary .form-control input:-moz-placeholder, div.bg-primary .form-control select:-moz-placeholder, section.bg-primary .form-control select:-moz-placeholder, div.bg-primary .form-control textarea:-moz-placeholder, section.bg-primary .form-control textarea:-moz-placeholder {
  color: #ffffff;
}
.form-control input:disabled, .form-control select:disabled, .form-control textarea:disabled {
  opacity: 0.5;
  pointer-events: none;
}
.form-control input:hover, .form-control select:hover, .form-control textarea:hover {
  background: rgba(0, 150, 64, 0.2);
}
div.bg-primary .form-control input:hover, section.bg-primary .form-control input:hover, div.bg-primary .form-control select:hover, section.bg-primary .form-control select:hover, div.bg-primary .form-control textarea:hover, section.bg-primary .form-control textarea:hover {
  background: #008237;
}
.form-control input:active, .form-control input:focus, .form-control select:active, .form-control select:focus, .form-control textarea:active, .form-control textarea:focus {
  border-color: rgba(195, 32, 18, 0.8);
}
div.bg-primary .form-control input:active, section.bg-primary .form-control input:active, div.bg-primary .form-control input:focus, section.bg-primary .form-control input:focus, div.bg-primary .form-control select:active, section.bg-primary .form-control select:active, div.bg-primary .form-control select:focus, section.bg-primary .form-control select:focus, div.bg-primary .form-control textarea:active, section.bg-primary .form-control textarea:active, div.bg-primary .form-control textarea:focus, section.bg-primary .form-control textarea:focus {
  border-color: rgba(195, 32, 18, 0.8);
}
.form-control textarea {
  resize: vertical;
  min-height: 200px;
  padding-top: 8px;
  float: left;
}
.form-control.form-control--radio {
  margin-top: 8px;
}
.form-control.form-control--radio input {
  -webkit-appearance: radio;
  padding: 0;
  height: auto;
  display: inline-block;
  margin-right: 16px;
  border: none;
  background-color: transparent;
  color: rgb(0, 150, 64);
  width: auto;
}
.form-control.form-control--checkbox {
  margin-top: 8px;
}
.form-control.form-control--checkbox input {
  -webkit-appearance: checkbox;
  appearance: checkbox;
  -moz-appearance: checkbox;
  -ms-appearance: checkbox;
  -o-appearance: checkbox;
  padding: 0;
  height: auto;
  display: inline-block;
  margin-right: 16px;
  border: none;
  background-color: transparent;
  color: rgb(0, 150, 64);
  width: auto;
}
.form-control.form-control--select {
  position: relative;
  display: inline-block;
  width: 100%;
}
.form-control.form-control--select select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.form-control.form-control--select select::-ms-expand {
  display: none;
}
/*--------------------------------------------------------------
## Label
--------------------------------------------------------------*/
label.form-label {
  display: inline-block;
  cursor: pointer;
  text-align: left;
  border-bottom: 0px;
}
/*--------------------------------------------------------------
# Input selectbox
--------------------------------------------------------------*/
.filtercheckbox,
label.filtercheckbox  {
  position: relative;
  font-size: 13px;
  line-height: 1;
}
.filtercheckbox + .filtercheckbox,
label.filtercheckbox  + .filtercheckbox {
  margin-left: 4px;
}
div.input-selectbox__overlay .filtercheckbox,
div.input-selectbox__overlay label.filtercheckbox  {
  display: block;
  margin: 0 0 4px 0;
}
div.input-selectbox__overlay .filtercheckbox span,
div.input-selectbox__overlay label.filtercheckbox  span {
  display: block;
  border-radius: 2px;
  padding: 8px 20px 8px 16px;
}
.filtercheckbox span,
label.filtercheckbox  span {
  white-space: nowrap;
  border: 1px solid #555;
  color: #555;
  border-radius: 30px;
  display: inline-block;
  padding: 4px 20px 4px 8px;
  position: relative;
  font-size: 13px;
  line-height: 1;
  cursor: pointer;
}
.filtercheckbox span:hover, .filtercheckbox span:active,
label.filtercheckbox  span:hover,
label.filtercheckbox  span:active {
  background-color: #555;
  color: #ffffff;
}
div.kompetenzbereich1 .filtercheckbox span,
div.kompetenzbereich1 label.filtercheckbox  span {
  color: #009640;
  border-color: #009640;
}
div.kompetenzbereich1 .filtercheckbox span:hover, div.kompetenzbereich1 .filtercheckbox span:active,
div.kompetenzbereich1 label.filtercheckbox  span:hover,
div.kompetenzbereich1 label.filtercheckbox  span:active {
  background-color: #009640;
  color: #ffffff;
}
div.kompetenzbereich2 .filtercheckbox span,
div.kompetenzbereich2 label.filtercheckbox  span {
  color: #009fe3;
  border-color: #009fe3;
}
div.kompetenzbereich2 .filtercheckbox span:hover, div.kompetenzbereich2 .filtercheckbox span:active,
div.kompetenzbereich2 label.filtercheckbox  span:hover,
div.kompetenzbereich2 label.filtercheckbox  span:active {
  background-color: #009fe3;
  color: #ffffff;
}
div.kompetenzbereich3 .filtercheckbox span,
div.kompetenzbereich3 label.filtercheckbox  span {
  color: #15619d;
  border-color: #15619d;
}
div.kompetenzbereich3 .filtercheckbox span:hover, div.kompetenzbereich3 .filtercheckbox span:active,
div.kompetenzbereich3 label.filtercheckbox  span:hover,
div.kompetenzbereich3 label.filtercheckbox  span:active {
  background-color: #15619d;
  color: #ffffff;
}
div.kompetenzbereich4 .filtercheckbox span,
div.kompetenzbereich4 label.filtercheckbox  span {
  color: #e6007e;
  border-color: #e6007e;
}
div.kompetenzbereich4 .filtercheckbox span:hover, div.kompetenzbereich4 .filtercheckbox span:active,
div.kompetenzbereich4 label.filtercheckbox  span:hover,
div.kompetenzbereich4 label.filtercheckbox  span:active {
  background-color: #e6007e;
  color: #ffffff;
}
div.kompetenzbereich5 .filtercheckbox span,
div.kompetenzbereich5 label.filtercheckbox  span {
  color: #c32012;
  border-color: #c32012;
}
div.kompetenzbereich5 .filtercheckbox span:hover, div.kompetenzbereich5 .filtercheckbox span:active,
div.kompetenzbereich5 label.filtercheckbox  span:hover,
div.kompetenzbereich5 label.filtercheckbox  span:active {
  background-color: #c32012;
  color: #ffffff;
}
div.kompetenzbereich6 .filtercheckbox span,
div.kompetenzbereich6 label.filtercheckbox  span {
  color: #fab72d;
  border-color: #fab72d;
}
div.kompetenzbereich6 .filtercheckbox span:hover, div.kompetenzbereich6 .filtercheckbox span:active,
div.kompetenzbereich6 label.filtercheckbox  span:hover,
div.kompetenzbereich6 label.filtercheckbox  span:active {
  background-color: #fab72d;
  color: #ffffff;
}
.filtercheckbox span:after,
label.filtercheckbox  span:after {
  font-family: "icomoon" !important;
}
.filtercheckbox span:after,
label.filtercheckbox  span:after {
  content: "\e5cd";
  /* use !important to prevent issues with browser extensions that change fonts */
  speak: none;
  font-style: normal;
  font-weight: normal;
  -webkit-font-feature-settings: normal;
          font-feature-settings: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "";
  position: absolute;
  right: 4px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.filtercheckbox.filtercheckbox--active span,
label.filtercheckbox .filtercheckbox--active span {
  background-color: #555;
  color: #ffffff;
}
div.kompetenzbereich1 .filtercheckbox.filtercheckbox--active span,
div.kompetenzbereich1 label.filtercheckbox .filtercheckbox--active span {
  background-color: #009640;
  color: #ffffff;
}
div.kompetenzbereich1 .filtercheckbox.filtercheckbox--active span:hover, div.kompetenzbereich1 .filtercheckbox.filtercheckbox--active span:active,
div.kompetenzbereich1 label.filtercheckbox .filtercheckbox--active span:hover,
div.kompetenzbereich1 label.filtercheckbox .filtercheckbox--active span:active {
  background-color: #009640;
  color: #ffffff;
}
div.kompetenzbereich2 .filtercheckbox.filtercheckbox--active span,
div.kompetenzbereich2 label.filtercheckbox .filtercheckbox--active span {
  background-color: #009fe3;
  color: #ffffff;
}
div.kompetenzbereich2 .filtercheckbox.filtercheckbox--active span:hover, div.kompetenzbereich2 .filtercheckbox.filtercheckbox--active span:active,
div.kompetenzbereich2 label.filtercheckbox .filtercheckbox--active span:hover,
div.kompetenzbereich2 label.filtercheckbox .filtercheckbox--active span:active {
  background-color: #009fe3;
  color: #ffffff;
}
div.kompetenzbereich3 .filtercheckbox.filtercheckbox--active span,
div.kompetenzbereich3 label.filtercheckbox .filtercheckbox--active span {
  background-color: #15619d;
  color: #ffffff;
}
div.kompetenzbereich3 .filtercheckbox.filtercheckbox--active span:hover, div.kompetenzbereich3 .filtercheckbox.filtercheckbox--active span:active,
div.kompetenzbereich3 label.filtercheckbox .filtercheckbox--active span:hover,
div.kompetenzbereich3 label.filtercheckbox .filtercheckbox--active span:active {
  background-color: #15619d;
  color: #ffffff;
}
div.kompetenzbereich4 .filtercheckbox.filtercheckbox--active span,
div.kompetenzbereich4 label.filtercheckbox .filtercheckbox--active span {
  background-color: #e6007e;
  color: #ffffff;
}
div.kompetenzbereich4 .filtercheckbox.filtercheckbox--active span:hover, div.kompetenzbereich4 .filtercheckbox.filtercheckbox--active span:active,
div.kompetenzbereich4 label.filtercheckbox .filtercheckbox--active span:hover,
div.kompetenzbereich4 label.filtercheckbox .filtercheckbox--active span:active {
  background-color: #e6007e;
  color: #ffffff;
}
div.kompetenzbereich5 .filtercheckbox.filtercheckbox--active span,
div.kompetenzbereich5 label.filtercheckbox .filtercheckbox--active span {
  background-color: #c32012;
  color: #ffffff;
}
div.kompetenzbereich5 .filtercheckbox.filtercheckbox--active span:hover, div.kompetenzbereich5 .filtercheckbox.filtercheckbox--active span:active,
div.kompetenzbereich5 label.filtercheckbox .filtercheckbox--active span:hover,
div.kompetenzbereich5 label.filtercheckbox .filtercheckbox--active span:active {
  background-color: #c32012;
  color: #ffffff;
}
div.kompetenzbereich6 .filtercheckbox.filtercheckbox--active span,
div.kompetenzbereich6 label.filtercheckbox .filtercheckbox--active span {
  background-color: #fab72d;
  color: #ffffff;
}
div.kompetenzbereich6 .filtercheckbox.filtercheckbox--active span:hover, div.kompetenzbereich6 .filtercheckbox.filtercheckbox--active span:active,
div.kompetenzbereich6 label.filtercheckbox .filtercheckbox--active span:hover,
div.kompetenzbereich6 label.filtercheckbox .filtercheckbox--active span:active {
  background-color: #fab72d;
  color: #ffffff;
}
.filtercheckbox.filtercheckbox--active span:after,
label.filtercheckbox .filtercheckbox--active span:after {
  content: "\e5cd";
}
.filtercheckbox input,
label.filtercheckbox  input {
  display: none;
}
.input-selectbox {
  position: relative;
  margin-top: 16px;
}
.input-selectbox .input-selectbox__clear {
  position: absolute;
  top: 14px;
  right: 10px;
  z-index: 11;
  cursor: pointer;
}
.input-selectbox .input-selectbox__clear:after {
  font-family: "icomoon" !important;
}
.input-selectbox .input-selectbox__clear:after {
  content: "\e5cd";
  /* use !important to prevent issues with browser extensions that change fonts */
  speak: none;
  font-style: normal;
  font-weight: normal;
  -webkit-font-feature-settings: normal;
          font-feature-settings: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #555;
}
.input-selectbox .input-selectbox__input {
  position: relative;
  z-index: 10;
  background-color: #f9f9f9;
  color: #555;
  -webkit-box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.2);
          box-shadow: inset 0 1px 4px rgba(0, 0, 0, 0.2);
  padding: 16px;
}
.input-selectbox .input-selectbox__overlay {
  position: absolute;
  top: -16px;
  left: -16px;
  right: -16px;
  width: auto;
  background-color: #ffffff;
  -webkit-box-shadow: 0 15px 100px rgba(0, 0, 0, 0.15), 0 10px 30px rgba(0, 0, 0, 0.22);
          box-shadow: 0 15px 100px rgba(0, 0, 0, 0.15), 0 10px 30px rgba(0, 0, 0, 0.22);
  border-radius: 3px;
  padding: 16px;
  padding-top: 80px;
  z-index: 5;
}
.input-selectbox .input-selectbox__overlay .input-selectbox__overlay__scroll {
  display: block;
  max-height: 340px;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}
.input-selectbox .close-btn {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 100;
  font-size: 24px;
  padding: 12px;
}
.teaser.teaser--main {
  position: relative;
  display: block;
  color: #ffffff;
  border-radius: 2px;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  margin-top: 32px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.teaser.teaser--main:after {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.teaser.teaser--main .teaser__icon {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 80px;
  line-height: 1;
}
.teaser.teaser--main .teaser__inner {
  position: absolute;
  bottom: 0;
  padding: 16px;
  width: 100%;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.teaser.teaser--main .teaser__inner .teaser__headline {
  display: block;
  text-transform: none;
}
.teaser.teaser--main .teaser__inner .teaser__content {
  display: none;
  padding-top: 8px;
  font-size: 14px;
  line-height: 1.1428571429;
}
.teaser.teaser--main .teaser__inner .teaser__content p {
  font-size: 14px;
  line-height: 1.1428571429;
}
.teaser.teaser--main:hover {
  -webkit-box-shadow: 0 15px 100px rgba(0, 0, 0, 0.15), 0 10px 30px rgba(0, 0, 0, 0.22);
          box-shadow: 0 15px 100px rgba(0, 0, 0, 0.15), 0 10px 30px rgba(0, 0, 0, 0.22);
}
.teaser.teaser--main:hover .teaser__inner .teaser__content {
  display: block;
}
.teaser.teaser--main.teaser--main-small {
  display: block;
  position: relative;
  cursor: pointer;
}
.teaser.teaser--main.teaser--main-small .teaser__icon {
  position: absolute;
  right: auto;
  display: block;
  text-align: center;
  width: 100%;
  font-size: 70px;
  height: 32px;
  top: 50%;
  margin-top: -35px;
}
.teaser.teaser--main.teaser--main-small .teaser__icon.icon--1:before {
  font-family: "icomoon" !important;
}
.teaser.teaser--main.teaser--main-small .teaser__icon.icon--1:before {
  content: "\e904";
  /* use !important to prevent issues with browser extensions that change fonts */
  speak: none;
  font-style: normal;
  font-weight: normal;
  -webkit-font-feature-settings: normal;
          font-feature-settings: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.teaser.teaser--main.teaser--main-small .teaser__icon.icon--2:before {
  font-family: "icomoon" !important;
}
.teaser.teaser--main.teaser--main-small .teaser__icon.icon--2:before {
  content: "\e906";
  /* use !important to prevent issues with browser extensions that change fonts */
  speak: none;
  font-style: normal;
  font-weight: normal;
  -webkit-font-feature-settings: normal;
          font-feature-settings: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.teaser.teaser--main.teaser--main-small .teaser__icon.icon--3:before {
  font-family: "icomoon" !important;
}
.teaser.teaser--main.teaser--main-small .teaser__icon.icon--3:before {
  content: "\e907";
  /* use !important to prevent issues with browser extensions that change fonts */
  speak: none;
  font-style: normal;
  font-weight: normal;
  -webkit-font-feature-settings: normal;
          font-feature-settings: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.teaser.teaser--main.teaser--main-small .teaser__icon.icon--4:before {
  font-family: "icomoon" !important;
}
.teaser.teaser--main.teaser--main-small .teaser__icon.icon--4:before {
  content: "\e908";
  /* use !important to prevent issues with browser extensions that change fonts */
  speak: none;
  font-style: normal;
  font-weight: normal;
  -webkit-font-feature-settings: normal;
          font-feature-settings: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.teaser.teaser--main.teaser--main-small .teaser__icon.icon--5:before {
  font-family: "icomoon" !important;
}
.teaser.teaser--main.teaser--main-small .teaser__icon.icon--5:before {
  content: "\e909";
  /* use !important to prevent issues with browser extensions that change fonts */
  speak: none;
  font-style: normal;
  font-weight: normal;
  -webkit-font-feature-settings: normal;
          font-feature-settings: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.teaser.teaser--main.teaser--main-small .teaser__icon.icon--6:before {
  font-family: "icomoon" !important;
}
.teaser.teaser--main.teaser--main-small .teaser__icon.icon--6:before {
  content: "\e905";
  /* use !important to prevent issues with browser extensions that change fonts */
  speak: none;
  font-style: normal;
  font-weight: normal;
  -webkit-font-feature-settings: normal;
          font-feature-settings: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.teaser.teaser--main.teaser--main-small:after {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.teaser.teaser--box {
  padding: 32px;
  position: relative;
  background-position: center;
  background-size: cover;
  border-radius: 2px;
  margin-top: 32px;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
          box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}
.teaser.teaser--box .btn, .teaser.teaser--box section.login .tx-felogin-pi1 fieldset > div > input[type=submit], section.login .tx-felogin-pi1 .teaser.teaser--box fieldset > div > input[type=submit] {
  margin-top: 32px;
}
.teaser.teaser--box .h200 {
  margin-top: 8px;
}
.teaser.teaser--box .h400 {
  color: #555;
}
.teaser--btn {
  border: 2px solid #f9f9f9;
  background-color: #ffffff;
  margin-bottom: 32px;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
          box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  border-radius: 2px;
  -webkit-transition: -webkit-box-shadow 0.2s;
  transition: -webkit-box-shadow 0.2s;
  transition: box-shadow 0.2s;
  transition: box-shadow 0.2s, -webkit-box-shadow 0.2s;
}
.teaser--btn:hover {
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}
.teaser--btn .icon-wrap {
  background-color: #f9f9f9;
  display: block;
  position: relative;
}
.teaser--btn .icon-wrap:after {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.teaser--btn .icon-wrap:before {
  font-family: "icomoon" !important;
}
.teaser--btn .icon-wrap:before {
  content: "\e5c8";
  /* use !important to prevent issues with browser extensions that change fonts */
  speak: none;
  font-style: normal;
  font-weight: normal;
  -webkit-font-feature-settings: normal;
          font-feature-settings: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #ffffff;
  position: absolute;
  font-size: 60px;
  line-height: 1;
  top: 50%;
  height: 60px;
  margin-top: -31px;
  width: 100%;
  text-align: center;
}
.teaser--btn .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-line-pack: center;
      align-content: center;
  -ms-flex-item-align: center;
      align-self: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 16px 32px;
}
.teaser--btn.primary {
  border-color: rgb(0, 150, 64);
}
.teaser--btn.primary .icon-wrap {
  background: #006129;
  background: -webkit-gradient(linear, left top, right top, from(#006129), to(rgb(0, 150, 64)));
  background: linear-gradient(to right, #006129, rgb(0, 150, 64));
}
.teaser--btn.primary .icon-wrap:before {
  font-family: "icomoon" !important;
}
.teaser--btn.primary .icon-wrap:before {
  content: "\e904";
  /* use !important to prevent issues with browser extensions that change fonts */
  speak: none;
  font-style: normal;
  font-weight: normal;
  -webkit-font-feature-settings: normal;
          font-feature-settings: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.teaser--btn.secondary {
  border-color: rgb(195, 32, 18);
}
.teaser--btn.secondary .icon-wrap {
  background: #af000a;
  background: -webkit-gradient(linear, left top, right top, from(#af000a), to(rgb(195, 32, 18)));
  background: linear-gradient(to right, #af000a, rgb(195, 32, 18));
}
.teaser--btn.secondary .icon-wrap:before {
  font-family: "icomoon" !important;
}
.teaser--btn.secondary .icon-wrap:before {
  content: "\e909";
  /* use !important to prevent issues with browser extensions that change fonts */
  speak: none;
  font-style: normal;
  font-weight: normal;
  -webkit-font-feature-settings: normal;
          font-feature-settings: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.teaser--btn.blue {
  border-color: #009fe3;
}
.teaser--btn.blue .icon-wrap {
  background: #157a9b;
  background: -webkit-gradient(linear, left top, right top, from(#157a9b), to(#009fe3));
  background: linear-gradient(to right, #157a9b, #009fe3);
}
.teaser--btn.blue .icon-wrap:before {
  font-family: "icomoon" !important;
}
.teaser--btn.blue .icon-wrap:before {
  content: "\e906";
  /* use !important to prevent issues with browser extensions that change fonts */
  speak: none;
  font-style: normal;
  font-weight: normal;
  -webkit-font-feature-settings: normal;
          font-feature-settings: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.teaser--btn.blue-dark {
  border-color: #15619d;
}
.teaser--btn.blue-dark .icon-wrap {
  background: #043c67;
  background: -webkit-gradient(linear, left top, right top, from(#043c67), to(#15619d));
  background: linear-gradient(to right, #043c67, #15619d);
}
.teaser--btn.blue-dark .icon-wrap:before {
  font-family: "icomoon" !important;
}
.teaser--btn.blue-dark .icon-wrap:before {
  content: "\e907";
  /* use !important to prevent issues with browser extensions that change fonts */
  speak: none;
  font-style: normal;
  font-weight: normal;
  -webkit-font-feature-settings: normal;
          font-feature-settings: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.teaser--btn.pink {
  border-color: #e6007e;
}
.teaser--btn.pink .icon-wrap {
  background: #9d124a;
  background: -webkit-gradient(linear, left top, right top, from(#9d124a), to(#e6007e));
  background: linear-gradient(to right, #9d124a, #e6007e);
}
.teaser--btn.pink .icon-wrap:before {
  font-family: "icomoon" !important;
}
.teaser--btn.pink .icon-wrap:before {
  content: "\e908";
  /* use !important to prevent issues with browser extensions that change fonts */
  speak: none;
  font-style: normal;
  font-weight: normal;
  -webkit-font-feature-settings: normal;
          font-feature-settings: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.teaser--btn.yellow {
  border-color: #fab72d;
}
.teaser--btn.yellow .icon-wrap {
  background: #d3981d;
  background: -webkit-gradient(linear, left top, right top, from(#d3981d), to(#fab72d));
  background: linear-gradient(to right, #d3981d, #fab72d);
}
.teaser--btn.yellow .icon-wrap:before {
  font-family: "icomoon" !important;
}
.teaser--btn.yellow .icon-wrap:before {
  content: "\e905";
  /* use !important to prevent issues with browser extensions that change fonts */
  speak: none;
  font-style: normal;
  font-weight: normal;
  -webkit-font-feature-settings: normal;
          font-feature-settings: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.teaser--text {
  margin-bottom: 32px;
}
.teaser--text p {
  margin-top: 8px;
}
.teaser--text .icon-wrap {
  background-color: #f9f9f9;
  position: relative;
  display: none;
}
@media (min-width: 769px) {
  .teaser--text .icon-wrap {
    display: block;
  }
}
.teaser--text .icon-wrap:after {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.teaser--text .icon-wrap:before {
  font-family: "icomoon" !important;
}
.teaser--text .icon-wrap:before {
  content: "\e5c8";
  /* use !important to prevent issues with browser extensions that change fonts */
  speak: none;
  font-style: normal;
  font-weight: normal;
  -webkit-font-feature-settings: normal;
          font-feature-settings: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #ffffff;
  position: absolute;
  font-size: 90px;
  line-height: 1;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
  text-align: center;
}
.teaser--text .title {
  padding: 0 32px;
  display: block;
}
.teaser--text.primary {
  border-color: rgb(0, 150, 64);
}
.teaser--text.primary .icon-wrap {
  background: #006129;
  background: -webkit-gradient(linear, left top, right top, from(#006129), to(rgb(0, 150, 64)));
  background: linear-gradient(to right, #006129, rgb(0, 150, 64));
}
.teaser--text.primary .icon-wrap:before {
  font-family: "icomoon" !important;
}
.teaser--text.primary .icon-wrap:before {
  content: "\e904";
  /* use !important to prevent issues with browser extensions that change fonts */
  speak: none;
  font-style: normal;
  font-weight: normal;
  -webkit-font-feature-settings: normal;
          font-feature-settings: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.teaser--text.secondary {
  border-color: rgb(195, 32, 18);
}
.teaser--text.secondary .icon-wrap {
  background: #af000a;
  background: -webkit-gradient(linear, left top, right top, from(#af000a), to(rgb(195, 32, 18)));
  background: linear-gradient(to right, #af000a, rgb(195, 32, 18));
}
.teaser--text.secondary .icon-wrap:before {
  font-family: "icomoon" !important;
}
.teaser--text.secondary .icon-wrap:before {
  content: "\e909";
  /* use !important to prevent issues with browser extensions that change fonts */
  speak: none;
  font-style: normal;
  font-weight: normal;
  -webkit-font-feature-settings: normal;
          font-feature-settings: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.teaser--text.blue {
  border-color: #009fe3;
}
.teaser--text.blue .icon-wrap {
  background: #157a9b;
  background: -webkit-gradient(linear, left top, right top, from(#157a9b), to(#009fe3));
  background: linear-gradient(to right, #157a9b, #009fe3);
}
.teaser--text.blue .icon-wrap:before {
  font-family: "icomoon" !important;
}
.teaser--text.blue .icon-wrap:before {
  content: "\e906";
  /* use !important to prevent issues with browser extensions that change fonts */
  speak: none;
  font-style: normal;
  font-weight: normal;
  -webkit-font-feature-settings: normal;
          font-feature-settings: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.teaser--text.blue-dark {
  border-color: #15619d;
}
.teaser--text.blue-dark .icon-wrap {
  background: #043c67;
  background: -webkit-gradient(linear, left top, right top, from(#043c67), to(#15619d));
  background: linear-gradient(to right, #043c67, #15619d);
}
.teaser--text.blue-dark .icon-wrap:before {
  font-family: "icomoon" !important;
}
.teaser--text.blue-dark .icon-wrap:before {
  content: "\e907";
  /* use !important to prevent issues with browser extensions that change fonts */
  speak: none;
  font-style: normal;
  font-weight: normal;
  -webkit-font-feature-settings: normal;
          font-feature-settings: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.teaser--text.pink {
  border-color: #e6007e;
}
.teaser--text.pink .icon-wrap {
  background: #9d124a;
  background: -webkit-gradient(linear, left top, right top, from(#9d124a), to(#e6007e));
  background: linear-gradient(to right, #9d124a, #e6007e);
}
.teaser--text.pink .icon-wrap:before {
  font-family: "icomoon" !important;
}
.teaser--text.pink .icon-wrap:before {
  content: "\e908";
  /* use !important to prevent issues with browser extensions that change fonts */
  speak: none;
  font-style: normal;
  font-weight: normal;
  -webkit-font-feature-settings: normal;
          font-feature-settings: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.teaser--text.yellow {
  border-color: #fab72d;
}
.teaser--text.yellow .icon-wrap {
  background: #d3981d;
  background: -webkit-gradient(linear, left top, right top, from(#d3981d), to(#fab72d));
  background: linear-gradient(to right, #d3981d, #fab72d);
}
.teaser--text.yellow .icon-wrap:before {
  font-family: "icomoon" !important;
}
.teaser--text.yellow .icon-wrap:before {
  content: "\e905";
  /* use !important to prevent issues with browser extensions that change fonts */
  speak: none;
  font-style: normal;
  font-weight: normal;
  -webkit-font-feature-settings: normal;
          font-feature-settings: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.teaser--btn .icon-wrap.icon-external:before {
  font-family: "icomoon" !important;
}
.teaser--btn .icon-wrap.icon-external:before {
  content: "\e90b";
  /* use !important to prevent issues with browser extensions that change fonts */
  speak: none;
  font-style: normal;
  font-weight: normal;
  -webkit-font-feature-settings: normal;
          font-feature-settings: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.teaser--btn .icon-wrap.icon-internat:before {
  font-family: "icomoon" !important;
}
.teaser--btn .icon-wrap.icon-internat:before {
  content: "\e90c";
  /* use !important to prevent issues with browser extensions that change fonts */
  speak: none;
  font-style: normal;
  font-weight: normal;
  -webkit-font-feature-settings: normal;
          font-feature-settings: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.sidebar .teaser.teaser--main.teaser--main-small .teaser__icon,
.ngdialog-content .teaser.teaser--main.teaser--main-small .teaser__icon {
  font-size: 45px;
  margin-top: -23px;
}
@media (min-width: 769px) {
  .sidebar .teaser.teaser--main.teaser--main-small .teaser__icon,
  .ngdialog-content .teaser.teaser--main.teaser--main-small .teaser__icon {
    font-size: 70px;
    margin-top: -35px;
  }
}
@media (min-width: 1025px) {
  .sidebar .teaser.teaser--main.teaser--main-small .teaser__icon,
  .ngdialog-content .teaser.teaser--main.teaser--main-small .teaser__icon {
    font-size: 45px;
    margin-top: -23px;
  }
}
@media (min-width: 1200px) {
  .sidebar .teaser.teaser--main.teaser--main-small .teaser__icon,
  .ngdialog-content .teaser.teaser--main.teaser--main-small .teaser__icon {
    font-size: 70px;
    margin-top: -35px;
  }
}
/*--------------------------------------------------------------
## Menu
--------------------------------------------------------------*/
.topmeta ul {
  list-style: none;
}
.topmeta ul li {
  display: inline-block;
}
.topmeta ul li:last-child a {
  border-right: none;
}
.topmeta ul li a {
  border-right: 1px solid #555;
  font-size: 14px;
  line-height: 1;
  color: #555;
  padding: 0 17px 0 16px;
}
.topmeta ul li:first-child a {
  padding-left: 0;
}
.mainmenu {
  margin-top: 16px;
}
.mainmenu ul {
  list-style: none;
}
.mainmenu ul li {
  display: inline-block;
  padding: 0 8px;
  position: relative;
}
@media (min-width: 1200px) {
  .mainmenu ul li {
    padding: 0 16px;
  }
}
.mainmenu ul li:hover .mainmenu__subnav {
  display: block;
}
.mainmenu ul li a {
  font-size: 16px;
  line-height: 1;
  color: #555;
  border-bottom: 2px solid transparent;
}
@media (min-width: 1200px) {
  .mainmenu ul li a {
    font-size: 18px;
    line-height: 1;
  }
}
.mainmenu ul li:hover a {
  border-color: #555;
}
.mainmenu ul li.active a {
  border-color: rgb(0, 150, 64);
  color: rgb(0, 150, 64);
}
.mainmenu ul li:first-child {
  padding-left: 0;
}
.mainmenu__subnav {
  z-index: 200;
  padding: 0 16px;
}
@media (min-width: 1025px) {
  .mainmenu__subnav {
    background-color: #ffffff;
    -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
    display: none;
    position: absolute;
    padding: 16px;
  }
}
.mainmenu__subnav ul {
  padding: 0;
}
.mainmenu__subnav ul li {
  padding: 0;
  display: block;
}
@media (min-width: 1025px) {
  .mainmenu__subnav ul li {
    margin-bottom: 8px;
  }
}
.mainmenu__subnav ul li:last-child {
  margin-bottom: 0;
}
.mainmenu__subnav ul li a {
  border-color: transparent !important;
}
@media (min-width: 1025px) {
  .mainmenu__subnav ul li:hover a {
    border-bottom: 2px solid #555 !important;
  }
}
nav.nav.nav--footer li.nav__item {
  display: inline-block;
}
nav.nav.nav--footer li.nav__item a {
  color: #555;
  font-size: 14px;
  line-height: 1;
}
nav.nav.nav--footer li.nav__item + li.nav__item {
  margin-left: 8px;
}
nav.nav.nav--footer li.nav__item + li.nav__item:before {
  content: "|";
  color: #555;
  padding-right: 8px;
  position: relative;
  top: 1px;
}
/*--------------------------------------------------------------
## Box
--------------------------------------------------------------*/
.box {
  padding: 32px;
  margin-bottom: 16px;
}
.box p > a {
  color: rgb(0, 150, 64);
  font-family: "DINNextLTPro-Bold", Verdana, sans-serif;
}
.box p > a .icon {
  margin-left: 16px;
}
.box.box--border {
  border: 1px solid #555;
}
form.form {
  position: relative;
}
/*--------------------------------------------------------------
## Contactform
--------------------------------------------------------------*/
form.contactform.contactform--teaser .contactform__wrap > .grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
form.contactform .form-label {
  position: relative;
}
form.contactform .form-label .info-trigger {
  margin-left: 16px;
  color: rgba(0, 0, 0, 0.4);
  width: 20px;
  height: 20px;
  border-radius: 100%;
  text-align: center;
  display: inline-block;
  padding: 2px 0;
}
form.contactform .form-label .info-trigger:hover + .info-tooltip {
  display: block;
}
form.contactform .form-label .info-tooltip {
  position: absolute;
  padding: 16px;
  z-index: 10;
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.4);
  font-family: "IBM Plex Sans", Arial, sans-serif;
  border-radius: 5px;
  top: 0;
  left: 110%;
  min-width: 200px;
  line-height: 18px;
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
  display: none;
}
form.contactform .form-label .info-tooltip p {
  font-size: 12px !important;
}
form.contactform .form-label .info-tooltip.open {
  display: block;
}
form.contactform .form-wrap {
  padding: 32px 0;
}
form.contactform .form-wrap .form-group {
  margin-top: 32px;
}
form.contactform .form-wrap .form-group .form-message--error {
  display: none;
}
form.contactform .form-wrap .form-group.form-group--haserror input,
form.contactform .form-wrap .form-group.form-group--haserror textarea,
form.contactform .form-wrap .form-group.form-group--haserror select {
  outline: 1px solid red;
}
form.contactform .form-wrap .form-group.form-group--haserror .form-message--error {
  display: block;
}
form.contactform .form-wrap .form-group .h400 {
  margin-bottom: 16px;
}
form.contactform .form-wrap .form-group label {
  font-size: 18px;
  line-height: 1;
  font-family: "DINNextLTPro-Bold", Verdana, sans-serif;
}
form.contactform .form-wrap .form-group label.form-label-small {
  font-size: 14px;
  line-height: 1;
  font-family: "IBM Plex Sans", Arial, sans-serif;
}
form.contactform .form-wrap .form-group .form-control input,
form.contactform .form-wrap .form-group .form-control select,
form.contactform .form-wrap .form-group .form-control textarea {
  background-color: #f9f9f9;
  border-radius: 3px;
  color: #000000;
}
form.contactform .form-wrap .form-group .form-control.form-control--checkbox {
  padding-left: 32px;
  position: relative;
  font-size: 14px;
  line-height: 1.2857142857;
}
form.contactform .form-wrap .form-group .form-control.form-control--checkbox input {
  position: absolute;
  top: 50%;
  left: 0;
  height: 12px;
  margin-top: -6px;
}
form.contactform .form-wrap .form-group .form-message {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.2857142857;
  color: rgb(195, 32, 18);
}
.bestellformular .btn.btn--grey, .bestellformular section.login .tx-felogin-pi1 fieldset > div > input.btn--grey[type=submit], section.login .tx-felogin-pi1 .bestellformular fieldset > div > input.btn--grey[type=submit] {
  padding: 12px 32px 10px;
  margin-right: 16px;
}
.bestellformular .h400 {
  color: #555;
  margin-top: 8px;
}
.bestellformular .form-group .h400 {
  color: #000000;
  margin-top: 0;
}
/*--------------------------------------------------------------
## Login
--------------------------------------------------------------*/
section.login .tx-felogin-pi1 {
  background: rgb(0, 150, 64);
  color: #ffffff;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
          box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  padding: 16px;
}
@media (min-width: 769px) {
  section.login .tx-felogin-pi1 {
    padding: 32px;
  }
}
section.login .tx-felogin-pi1 fieldset {
  border: 0px !important;
  margin: 0 !important;
  padding: 0 !important;
}
section.login .tx-felogin-pi1 fieldset legend {
  display: none !important;
}
section.login .tx-felogin-pi1 fieldset > div > label {
  color: #ffffff;
}
section.login .tx-felogin-pi1 fieldset > div > input[type=text], section.login .tx-felogin-pi1 fieldset > div > input[type=password] {
  color: #000000;
}
section.login .tx-felogin-pi1 fieldset > div > input[type=submit] {
  margin-top: 16px;
  margin-bottom: 16px;
}
/* --------------------------------------------------------------
# Error
-------------------------------------------------------------- */
.error {
  color: #c32012;
}
/*--------------------------------------------------------------
## Table
--------------------------------------------------------------*/
.search {
  padding: 16px;
  background-color: rgb(0, 150, 64);
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  border-radius: 3px;
}
.search .search__trigger {
  color: #ffffff;
  display: block;
  text-align: center;
  font-size: 40px;
}
.search input {
  border: none;
  display: block;
  width: 100%;
  border-radius: 3px;
  background-color: #ffffff;
  padding: 16px;
  color: #555;
}
.search input::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: rgba(0, 0, 0, 0.4);
}
.search input::-moz-placeholder { /* Firefox 19+ */
  color: rgba(0, 0, 0, 0.4);
}
.search input:-ms-input-placeholder { /* IE 10+ */
  color: rgba(0, 0, 0, 0.4);
}
.search input:-moz-placeholder { /* Firefox 18- */
  color: rgba(0, 0, 0, 0.4);
}
.search .searchinputwrap {
  position: relative;
}
.search .searchinputwrap .search__input {
  position: relative;
  z-index: 10;
}
.search .searchinputwrap .search__overlay {
  position: absolute;
  top: 0;
  width: 100%;
  background-color: #ffffff;
  -webkit-box-shadow: 0 15px 100px rgba(0, 0, 0, 0.15), 0 10px 30px rgba(0, 0, 0, 0.22);
          box-shadow: 0 15px 100px rgba(0, 0, 0, 0.15), 0 10px 30px rgba(0, 0, 0, 0.22);
  border-radius: 3px;
  padding-top: 50px;
  z-index: 5;
}
.search .searchinputwrap .search__overlay .search-result {
  border-top: 1px solid #f9f9f9;
  padding: 8px 16px 4px 16px;
  -webkit-transition: background 0.15s linear;
  transition: background 0.15s linear;
}
.search .searchinputwrap .search__overlay .search-result.search-result--empty {
  padding: 16px;
}
.search .searchinputwrap .search__overlay .search-result.search-result--empty:after {
  content: "";
  display: table;
  clear: both;
}
.search .searchinputwrap .search__overlay .search-result.search-result--empty span.search__moreinfo {
  font-size: 12px;
  line-height: 1;
  margin-top: 0px;
}
.search .searchinputwrap .search__overlay .search-result.search-result--empty span.search__moreinfo:after {
  font-family: "icomoon" !important;
}
.search .searchinputwrap .search__overlay .search-result.search-result--empty span.search__moreinfo:after {
  content: "\e5c8";
  /* use !important to prevent issues with browser extensions that change fonts */
  speak: none;
  font-style: normal;
  font-weight: normal;
  -webkit-font-feature-settings: normal;
          font-feature-settings: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.search .searchinputwrap .search__overlay .search-result.search-result--clickable {
  cursor: pointer;
}
.search .searchinputwrap .search__overlay .search-result.search-result--clickable:hover {
  background-color: #f9f9f9;
}
.search .searchinputwrap .search__overlay .search-result.search-result--fachkompetenz {
  padding: 20px 16px;
  position: relative;
}
.search .searchinputwrap .search__overlay .search-result.search-result--fachkompetenz:before {
  font-family: "icomoon" !important;
}
.search .searchinputwrap .search__overlay .search-result.search-result--fachkompetenz:before {
  content: "\e904";
  /* use !important to prevent issues with browser extensions that change fonts */
  speak: none;
  font-style: normal;
  font-weight: normal;
  -webkit-font-feature-settings: normal;
          font-feature-settings: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 32px;
  line-height: 1;
  width: 32px;
  height: 32px;
  display: inline-block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 16px;
}
.search .searchinputwrap .search__overlay .search-result.search-result--fachkompetenz .title {
  display: block;
  position: relative;
  padding-left: 36px;
}
.search .searchinputwrap .search__overlay .search-result.search-result--fachkompetenz.search-result--kompetenz-one {
  color: #009640;
}
.search .searchinputwrap .search__overlay .search-result.search-result--fachkompetenz.search-result--kompetenz-one:before {
  content: "\e904";
  color: #009640;
}
.search .searchinputwrap .search__overlay .search-result.search-result--fachkompetenz.search-result--kompetenz-two {
  color: #009fe3;
}
.search .searchinputwrap .search__overlay .search-result.search-result--fachkompetenz.search-result--kompetenz-two:before {
  content: "\e905";
  color: #009fe3;
}
.search .searchinputwrap .search__overlay .search-result.search-result--fachkompetenz.search-result--kompetenz-three {
  color: #15619d;
}
.search .searchinputwrap .search__overlay .search-result.search-result--fachkompetenz.search-result--kompetenz-three:before {
  content: "\e906";
  color: #15619d;
}
.search .searchinputwrap .search__overlay .search-result.search-result--fachkompetenz.search-result--kompetenz-four {
  color: #e6007e;
}
.search .searchinputwrap .search__overlay .search-result.search-result--fachkompetenz.search-result--kompetenz-four:before {
  content: "\e907";
  color: #e6007e;
}
.search .searchinputwrap .search__overlay .search-result.search-result--fachkompetenz.search-result--kompetenz-five {
  color: #c32012;
}
.search .searchinputwrap .search__overlay .search-result.search-result--fachkompetenz.search-result--kompetenz-five:before {
  content: "\e908";
  color: #c32012;
}
.search .searchinputwrap .search__overlay .search-result.search-result--fachkompetenz.search-result--kompetenz-six {
  color: #fab72d;
}
.search .searchinputwrap .search__overlay .search-result.search-result--fachkompetenz.search-result--kompetenz-six:before {
  content: "\e909";
  color: #fab72d;
}
.search .searchinputwrap .search__overlay .search-result .title {
  display: block;
  font-size: 14px;
  line-height: 1;
}
.search .searchinputwrap .search__overlay .search-result .kompetenz {
  display: inline-block;
  font-size: 12px;
  line-height: 1;
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-style: italic;
  margin-right: 8px;
  color: rgba(0, 0, 0, 0.4);
  font-weight: 500;
}
.search .searchinputwrap .search__overlay .search-result .kompetenz.kompetenz--one {
  color: #009640;
}
.search .searchinputwrap .search__overlay .search-result .kompetenz.kompetenz--two {
  color: #009fe3;
}
.search .searchinputwrap .search__overlay .search-result .kompetenz.kompetenz--three {
  color: #15619d;
}
.search .searchinputwrap .search__overlay .search-result .kompetenz.kompetenz--four {
  color: #e6007e;
}
.search .searchinputwrap .search__overlay .search-result .kompetenz.kompetenz--five {
  color: #c32012;
}
.search .searchinputwrap .search__overlay .search-result .kompetenz.kompetenz--six {
  color: #fab72d;
}
.search .searchinputwrap .search__overlay .search-result .class {
  display: inline-block;
  font-size: 12px;
  line-height: 1;
  font-family: "IBM Plex Sans", Arial, sans-serif;
  color: rgba(0, 0, 0, 0.4);
}
.animate-show-hide.ng-hide {
  opacity: 0;
}
.animate-show-hide.ng-hide-add,
.animate-show-hide.ng-hide-remove {
  -webkit-transition: all linear 0.2s;
  transition: all linear 0.2s;
}
.complexlist {
  border-top: 1px solid #555;
  padding: 16px;
  border-left: 32px solid #555;
  background-color: #ffffff;
  margin-top: 32px;
  border-radius: 2px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  position: relative;
  /*--------------------------------------------------------------
  # Color changes
  --------------------------------------------------------------*/
}
@media (min-width: 769px) {
  .complexlist {
    padding: 32px;
    border-left: 48px solid #555;
  }
}
.complexlist .complexlist__icon {
  position: absolute;
  right: 16px;
  bottom: 16px;
  font-size: 24px;
  line-height: 1;
  opacity: 0;
  visibility: hidden;
}
@media (min-width: 769px) {
  .complexlist .complexlist__icon {
    right: 32px;
    bottom: 32px;
  }
}
.complexlist:hover {
  -webkit-box-shadow: 0 20px 200px rgba(0, 0, 0, 0.2), 0 15px 50px rgba(0, 0, 0, 0.22);
          box-shadow: 0 20px 200px rgba(0, 0, 0, 0.2), 0 15px 50px rgba(0, 0, 0, 0.22);
}
.complexlist:hover .complexlist__icon {
  visibility: visible;
  opacity: 1;
}
.complexlist .complexlist__meta {
  margin-top: 16px;
}
@media (min-width: 769px) {
  .complexlist .complexlist__meta {
    margin-top: 0;
  }
}
.complexlist .complexlist__meta .competence {
  font-size: 14px;
  line-height: 1;
  color: #555;
  display: block;
  margin-bottom: 8px;
}
.complexlist .complexlist__meta .class {
  font-size: 14px;
  line-height: 1;
  color: #555;
  display: block;
}
.complexlist .complexlist__meta .subject {
  font-size: 14px;
  line-height: 1;
  color: #555;
  display: block;
}
.complexlist .complexlist__footer {
  border-top: 1px solid #555;
  padding-top: 16px;
  margin-top: 16px;
  margin-bottom: -20px;
}
.complexlist .complexlist__footer .complextlist__list li {
  padding-left: 0 !important;
}
.complexlist .complexlist__footer .complextlist__list li {
  padding-right: 16px;
  margin-bottom: 0;
  display: block;
}
.complexlist .complexlist__footer .complextlist__list li:before {
  top: -2px;
  display: none;
}
.complexlist .complexlist__footer .complextlist__list li span {
  font-size: 13px;
}
@media (min-width: 576px) {
  .complexlist .complexlist__footer .complextlist__list li {
    display: inline-block;
  }
}
.complexlist.complexlist--primary {
  border-color: rgb(0, 150, 64);
}
.complexlist.complexlist--primary .complexlist__meta .competence {
  color: rgb(0, 150, 64);
}
.complexlist.complexlist--secondary {
  border-color: rgb(195, 32, 18);
}
.complexlist.complexlist--secondary .complexlist__meta .competence {
  color: rgb(195, 32, 18);
}
.complexlist.complexlist--blue {
  border-color: #009fe3;
}
.complexlist.complexlist--blue .complexlist__meta .competence {
  color: #009fe3;
}
.complexlist.complexlist--blue-dark {
  border-color: #15619d;
}
.complexlist.complexlist--blue-dark .complexlist__meta .competence {
  color: #15619d;
}
.complexlist.complexlist--pink {
  border-color: #e6007e;
}
.complexlist.complexlist--pink .complexlist__meta .competence {
  color: #e6007e;
}
.complexlist.complexlist--yellow {
  border-color: #fab72d;
}
.complexlist.complexlist--yellow .complexlist__meta .competence {
  color: #fab72d;
}
.accordion {
  border-bottom: 2px solid #f9f9f9;
}
.accordion .accordion__header {
  padding: 16px 32px;
  position: relative;
  cursor: pointer;
}
.accordion .accordion__header:hover {
  background-color: #f9f9f9;
}
.accordion .accordion__header:after {
  font-family: "icomoon" !important;
}
.accordion .accordion__header:after {
  content: "\e5db";
  /* use !important to prevent issues with browser extensions that change fonts */
  speak: none;
  font-style: normal;
  font-weight: normal;
  -webkit-font-feature-settings: normal;
          font-feature-settings: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  right: 32px;
  height: 50px;
  margin-top: -25px;
  color: #555;
  font-size: 24px;
  line-height: 1;
  display: block;
}
.accordion .accordion__header.open:after {
  font-family: "icomoon" !important;
}
.accordion .accordion__header.open:after {
  content: "\e5d8";
  /* use !important to prevent issues with browser extensions that change fonts */
  speak: none;
  font-style: normal;
  font-weight: normal;
  -webkit-font-feature-settings: normal;
          font-feature-settings: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.accordion .accordion__header.accordion_right:after {
  position: absolute;
  right: 0px;
}
.accordion .accordion__header.accordion_right.open:after {
  position: absolute;
  right: 0px;
}
.accordion .accordion__cnt {
  padding: 0 32px;
  padding-bottom: 32px;
}
.accordion .accordion__cnt img {
  margin-bottom: 32px;
  display: block;
}
.accordion--accessible {
  border-color: #000000;
}
.accordion--accessible + .accordion--accessible {
  margin-top: 1rem;
}
.accordion--accessible summary,
.accordion--accessible summary.accordion__header {
  background-color: #e0e0e0;
  list-style-type: none;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
.accordion--accessible summary p,
.accordion--accessible summary.accordion__header p {
  font-size: 1.2em;
}
.accordion--accessible summary::after,
.accordion--accessible summary.accordion__header::after {
  color: inherit;
}
.accordion--accessible summary:hover, .accordion--accessible summary.focus-visible,
.accordion--accessible summary.accordion__header:hover,
.accordion--accessible summary.accordion__header.focus-visible {
  background-color: #e0e0e0;
}
.accordion--accessible summary:hover, .accordion--accessible summary:focus-visible,
.accordion--accessible summary.accordion__header:hover,
.accordion--accessible summary.accordion__header:focus-visible {
  background-color: #e0e0e0;
}
.accordion--accessible[open] > summary:after {
  font-family: "icomoon" !important;
}
.accordion--accessible[open] > summary:after {
  content: "\e5d8";
  /* use !important to prevent issues with browser extensions that change fonts */
  speak: none;
  font-style: normal;
  font-weight: normal;
  -webkit-font-feature-settings: normal;
          font-feature-settings: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.accordion--accessible summary::-webkit-details-marker,
.accordion--accessible summary::marker {
  display: none;
}
.accordion--accessible .accordion__cnt {
  padding-top: 1.5em;
}
.accordion--accessible .accordion__cnt p + .grid {
  margin-top: 1rem;
}
.veranstaltungsteaser {
  padding-bottom: 32px;
  margin-bottom: 16px;
  text-align: center;
}
.veranstaltungsteaser .veranstaltungsteaser__title {
  display: block;
  padding: 16px 16px 13px 16px;
  text-transform: uppercase;
  color: #ffffff;
  background-color: rgb(0, 150, 64);
  font-family: "DINNextLTPro-Medium", Verdana, sans-serif;
  font-size: 24px;
  line-height: 1;
  line-height: 1;
  margin-bottom: 32px;
  border-radius: 0px;
}
.veranstaltungsteaser .veranstaltungsteaser__date {
  display: block;
  font-size: 40px;
  line-height: 1;
  color: rgb(0, 150, 64);
  font-family: "DINNextLTPro-Bold", Verdana, sans-serif;
}
.veranstaltungsteaser .btn, .veranstaltungsteaser section.login .tx-felogin-pi1 fieldset > div > input[type=submit], section.login .tx-felogin-pi1 .veranstaltungsteaser fieldset > div > input[type=submit] {
  margin-top: 16px;
}
.veranstaltungsteaser .veranstaltungsteaser__footer {
  margin-top: 32px;
  border-top: 2px solid #f9f9f9;
  padding-top: 16px;
  text-align: right;
  color: #555;
}
.veranstaltungsteaser .veranstaltungsteaser__footer a {
  font-weight: 500;
  font-style: italic;
}
/*--------------------------------------------------------------
## News
--------------------------------------------------------------*/
/* SIDEBAR */
.sidebar .newslist {
  margin-bottom: 32px;
}
.sidebar .newslist .newslist__date {
  display: block;
  margin-bottom: 8px;
}
.sidebar .newslist p {
  font-size: 14px;
  line-height: 1.5714285714;
}
.sidebar .newslist .btn, .sidebar .newslist section.login .tx-felogin-pi1 fieldset > div > input[type=submit], section.login .tx-felogin-pi1 .sidebar .newslist fieldset > div > input[type=submit] {
  margin-top: 16px;
}
/* NEWS */
.news .newsitem {
  margin-top: 32px;
  border: 1px solid #555;
  padding: 32px;
}
.news .newsitem picture img.img--responsive {
  width: auto;
}
.news .newsitem .newsitem-meta .newsitem-meta-date {
  color: #555;
  font-style: italic;
  display: block;
  margin-bottom: 16px;
}
.news .newsitem .h200 a {
  -webkit-hyphens: auto;
      -ms-hyphens: auto;
          hyphens: auto;
}
@media (min-width: 576px) {
  .news .newsitem .h200 a {
    -webkit-hyphens: none;
        -ms-hyphens: none;
            hyphens: none;
  }
}
.news .newsitem .btn, .news .newsitem section.login .tx-felogin-pi1 fieldset > div > input[type=submit], section.login .tx-felogin-pi1 .news .newsitem fieldset > div > input[type=submit] {
  margin-top: 16px;
}
.news .page-navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.news .page-navigation p {
  color: #555;
  font-size: 14px;
}
.newsitem.newsitem--detail .newsitem-meta-date {
  color: #555;
  font-style: italic;
  display: block;
  margin-bottom: 16px;
}
.newsitem.newsitem--detail #newsBackLink {
  margin: 16px 0;
}
/*--------------------------------------------------------------
## Events
--------------------------------------------------------------*/
.events .eventitem {
  background-color: #ffffff;
  padding: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 300px;
  margin-bottom: 1.5rem;
  -webkit-box-shadow: 0px 8px 12px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 8px 12px rgba(0, 0, 0, 0.2);
}
.events .eventitem__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.events .eventitem__header__category .eventitem-category {
  font-weight: bold;
  font-size: 12px;
}
.events .eventitem__header__date {
  text-align: right;
}
.events .eventitem__header__date .eventitem-date {
  display: block;
  font-weight: bold;
  font-size: 14px;
}
.events .eventitem__header__date .eventitem-time {
  display: block;
  font-size: 12px;
  color: #555;
}
.events .eventitem__cnt {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-top: 2rem;
}
.events .eventitem__cnt p {
  font-size: 14px;
  margin-bottom: 0;
}
.events .eventitem__footer {
  margin-top: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.events .eventitem__footer .eventitem-type {
  text-align: right;
  color: #555;
  font-size: 12px;
  width: 100px;
}
.events .eventitem--mkr {
  background-color: #f9f9f9;
}
.events .eventitem--mkr .eventitem__header__category .eventitem-category {
  margin-left: -1rem;
  padding: 0.3rem;
  background-color: rgb(195, 32, 18);
  color: #ffffff;
}
.events--nogrid {
  margin-bottom: 2rem;
}
.events--nogrid .events-sidebar .eventitem {
  padding: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-bottom: 1px solid #555;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  min-height: 0;
}
.events--nogrid .events-sidebar .eventitem__cnt {
  margin-top: 0.5rem;
}
.events--nogrid .events-sidebar .eventitem__cnt p {
  display: none;
}
.events--nogrid .events-sidebar .eventitem__footer {
  margin-top: 0;
}
.events--nogrid:last-child .eventitem {
  border-bottom: none;
}
.events .page-navigation {
  padding-left: 0.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.events .page-navigation p {
  color: #555;
  font-size: 14px;
}
/*--------------------------------------------------------------
## Category Filter List
--------------------------------------------------------------*/
.category-filter-list {
  list-style: none;
  margin: 1.5rem 0;
  padding: 0;
  padding-left: 0.75rem;
}
.category-filter-list__item {
  padding: 0 !important;
}
.category-filter-list__item {
  margin-right: 0.5rem;
  display: inline-block;
  margin-left: 0;
}
.category-filter-list__item:before {
  display: none;
}
.category-filter-list__item .btn--primary {
  padding: 8px 10px 8px 10px !important;
}
.subject {
  position: relative;
  margin-bottom: 32px;
}
.subject span {
  padding-left: 45px;
  color: #555;
  font-style: italic;
  display: block;
  line-height: 1;
}
.subject:before {
  content: "";
  height: 36px;
  width: 30px;
  position: absolute;
  left: 0;
  top: 0;
  display: block;
}
.subject.primary:before {
  background-color: rgb(0, 150, 64);
}
.subject.secondary:before {
  background-color: rgb(195, 32, 18);
}
.subject.blue:before {
  background-color: #009fe3;
}
.subject.blue-dark:before {
  background-color: #15619d;
}
.subject.pink:before {
  background-color: #e6007e;
}
.subject.yellow:before {
  background-color: #fab72d;
}
/*--------------------------------------------------------------
## Pagination
--------------------------------------------------------------*/
ul.f3-widget-paginator {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-top: 16px;
}
ul.f3-widget-paginator li {
  padding-left: 0px;
}
ul.f3-widget-paginator li:first-child a {
  margin-left: 0 !important;
}
ul.f3-widget-paginator li:first-child.current {
  margin-left: 0 !important;
}
ul.f3-widget-paginator li:before {
  content: "";
}
ul.f3-widget-paginator li a {
  color: black;
  float: left;
  padding: 0 8px;
  text-decoration: none;
  border: 1px solid #555;
  border-radius: 3px;
  margin-right: 4px;
  margin-left: 4px;
  -webkit-transition: background 0.2s linear;
  transition: background 0.2s linear;
}
ul.f3-widget-paginator li a:hover {
  background-color: #555;
}
@media (min-width: 576px) {
  ul.f3-widget-paginator li a {
    padding: 8px 16px;
  }
}
ul.f3-widget-paginator li.current {
  color: white;
  float: left;
  text-decoration: none;
  background-color: rgb(0, 150, 64);
  border: 1px solid gray;
  border-radius: 3px;
  margin-right: 4px;
  margin-left: 4px;
  -webkit-transition: background 0.2s linear;
  transition: background 0.2s linear;
  padding: 0 8px;
}
@media (min-width: 576px) {
  ul.f3-widget-paginator li.current {
    padding: 8px 16px;
  }
}
ul.f3-widget-paginator li.current:hover {
  background-color: #00b04b;
  cursor: default;
}
ul.f3-widget-paginator li.current:before {
  content: "";
}
ul.f3-widget-paginator li.previous:before {
  content: "";
}
ul.f3-widget-paginator li.next:before {
  content: "";
}
/*--------------------------------------------------------------
## Fixed Header
--------------------------------------------------------------*/
.fixedheader {
  position: fixed;
  top: 0;
  width: 100%;
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
  z-index: 100;
}
@media (min-width: 1025px) {
  .fixedheader {
    -webkit-box-shadow: none;
            box-shadow: none;
    position: inherit;
  }
}
.fixedheader .fixedheader__content .logo-wrap {
  text-algin: right;
}
.fixedheader .fixedheader__content .logo-wrap .logo {
  display: inline-block;
  padding: 0px;
  float: right;
  max-width: 100px;
  width: 85px;
  margin-top: 4px;
}
@media (min-width: 576px) {
  .fixedheader .fixedheader__content .logo-wrap .logo {
    margin-top: 0;
    padding: 16px 0px;
    width: auto;
  }
}
@media (min-width: 1025px) {
  .fixedheader .fixedheader__content .logo-wrap .logo {
    max-width: 185px;
  }
}
.fixedheader .fixedheader__content .menubutton {
  display: inline-block;
  font-size: 40px;
}
@media (min-width: 1025px) {
  .fixedheader .fixedheader__content .menubutton {
    display: none;
  }
}
.fixedheader .fixedheader__content .desktop-nav {
  display: none;
}
@media (min-width: 1025px) {
  .fixedheader .fixedheader__content .desktop-nav {
    display: block;
  }
}
.fixedheader .menu-wrap {
  max-height: 85vh;
  overflow: scroll;
}
.fixedheader .menu-wrap .mainmenu ul li, .fixedheader .menu-wrap .topmeta ul li {
  display: block;
  padding: 0;
}
.fixedheader .menu-wrap .mainmenu ul li a, .fixedheader .menu-wrap .topmeta ul li a {
  padding: 16px;
  display: block;
  font-size: 18px;
  border-bottom: 1px solid #f9f9f9;
  border-right: 0;
}
/*--------------------------------------------------------------
# Hero
--------------------------------------------------------------*/
.hero {
  padding: 0;
  position: relative;
  margin-bottom: 100px;
}
.hero .copyright {
  display: block;
  position: absolute;
  right: 32px;
  top: 32px;
  opacity: 0.6;
  color: #ffffff;
  font-size: 12px;
}
.hero .dark-background {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4);
}
.hero .hero__inner {
  padding: 64px 0;
  position: relative;
  z-index: 2;
}
@media (min-width: 1025px) {
  .hero .hero__inner {
    padding: 128px 0;
  }
}
.hero .hero__inner p {
  color: #ffffff;
}
.hero .hero__inner .h100 {
  display: inline;
  font-size: 32px;
  line-height: 1;
}
@media (min-width: 576px) {
  .hero .hero__inner .h100 {
    font-size: 50px;
    line-height: 1;
  }
}
@media (min-width: 1025px) {
  .hero .hero__inner .h100 {
    font-size: 70px;
    line-height: 1;
  }
}
.hero .hero__inner .h100 span {
  background-color: rgb(195, 32, 18);
  display: inline-block;
  color: #ffffff;
  text-transform: uppercase;
  padding: 6px 6px 0 6px;
}
.hero .hero__search {
  position: relative;
  bottom: -86px;
  margin-top: -120px;
  z-index: 20;
}
.hero .hero__search .search__moreinfo {
  float: right;
  margin-top: 16px;
  color: #555;
  font-style: italic;
  cursor: pointer;
}
.hero .hero__search .search__moreinfo:hover {
  color: rgb(0, 150, 64);
}
/*--------------------------------------------------------------
## Footer
--------------------------------------------------------------*/
.footer {
  text-align: center;
}
@media (min-width: 576px) {
  .footer {
    text-align: left;
  }
}
.footer .menu__item {
  text-align: center;
}
@media (min-width: 576px) {
  .footer .menu__item {
    text-align: right;
  }
}
.footer .nav.nav--footer {
  text-align: center;
}
@media (min-width: 576px) {
  .footer .nav.nav--footer {
    text-align: right;
  }
}
.footer .footer__desc {
  margin-bottom: 16px;
}
@media (min-width: 576px) {
  .footer .footer__desc {
    margin-bottom: 0;
  }
}
.footer img#logo-nrw {
  height: 50px;
  width: auto;
}
.footer img#logo-medienberatung {
  height: 50px;
  width: auto;
}
.footer img#logo-lfm {
  height: 50px;
  width: auto;
}
.footer img#logo-lvr {
  height: 50px;
  width: auto;
}
.footer img#logo-lwl {
  height: 50px;
  width: auto;
}
.footer .footer__social {
  text-align: center;
}
@media (min-width: 576px) {
  .footer .footer__social {
    text-align: right;
  }
}
.footer .footer__contact {
  text-align: center;
}
@media (min-width: 576px) {
  .footer .footer__contact {
    text-align: right;
  }
}
.footer .footer__desc, .footer p.footer__desc {
  font-size: 10px;
  line-height: 1;
  font-weight: 400;
  font-style: none;
}
.footer .footer-text, .footer .footer__desc {
  font-size: 14px !important;
}
#fhr-cookie-bar {
  font-family: Verdana, sans-serif;
  font-size: 12px;
  line-height: 18px;
  color: #000;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: #000000;
  padding-top: 16px;
  opacity: 0.9;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
#fhr-cookie-bar:hover {
  opacity: 1;
}
#fhr-cookie-bar .grid__cell {
  font-size: 12px;
}
#fhr-cookie-bar .fhr-cookie-container {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
  position: relative;
  background: #000000;
  color: #f9f9f9;
  -webkit-margin-before: 0;
  -webkit-margin-after: 0;
  font-weight: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  #fhr-cookie-bar .fhr-cookie-container {
    width: 750px;
  }
}
@media screen and (min-width: 992px) {
  #fhr-cookie-bar .fhr-cookie-container {
    width: 970px;
  }
}
@media screen and (min-width: 1200px) {
  #fhr-cookie-bar .fhr-cookie-container {
    width: 1170px;
  }
}
#fhr-cookie-bar .fhr-cookie-container .fhr-cookie-content {
  padding: 15px;
  font-size: 12px;
}
#fhr-cookie-bar .fhr-cookie-container .fhr-cookie-content .fhr-cookie-simple-link {
  text-decoration: none;
  font-size: 12px;
  color: rgb(195, 32, 18);
}
#fhr-cookie-bar .fhr-cookie-container .fhr-cookie-close-link {
  position: absolute;
  text-decoration: none;
  color: rgb(195, 32, 18);
  top: 10px;
  right: 15px;
  font-size: 20px;
  line-height: 20px;
}
#fhr-cookie-bar .fhr-cookie-container .form-control.form-control--checkbox {
  color: #f9f9f9;
  margin-top: 16px;
}
#fhr-cookie-bar .fhr-cookie-container .cookie-options .btn, #fhr-cookie-bar .fhr-cookie-container .cookie-options section.login .tx-felogin-pi1 fieldset > div > input[type=submit], section.login .tx-felogin-pi1 #fhr-cookie-bar .fhr-cookie-container .cookie-options fieldset > div > input[type=submit] {
  margin-top: 8px;
}
#fhr-cookie-bar .form-control.form-control--checkbox input {
  margin-left: 16px;
}
/*--------------------------------------------------------------
## SLider
--------------------------------------------------------------*/
.swiper-pagination-bullet {
  width: 16px;
  height: 4px;
  display: inline-block;
  border-radius: 0;
  background: rgba(0, 150, 64, 0.2);
  opacity: 1;
  cursor: pointer;
}
.swiper-pagination-bullet + .swiper-pagination-bullet {
  margin-left: 4px;
}
.swiper-pagination-bullet.swiper-pagination-bullet-active, .swiper-pagination-bullet:hover, .swiper-pagination-bullet:active {
  background: rgb(0, 150, 64);
}
/*--------------------------------------------------------------
# CaseStudy Slider
--------------------------------------------------------------*/
.casestudy-slider .casestudy-slider__item .casestudy-slider__item__product {
  display: none;
}
@media (min-width: 1025px) {
  .casestudy-slider .casestudy-slider__item .casestudy-slider__item__product {
    display: block;
  }
}
.casestudy-slider .casestudy-slider__item .casestudy-slider__item__box {
  -webkit-transform: translate(50%, -50%);
          transform: translate(50%, -50%);
  z-index: 3;
  top: 50%;
}
.casestudy-slider .casestudy-slider__item .casestudy-slider__item__image {
  padding-top: 59.2366412214%;
  position: relative;
  background-position: center center;
  background-size: cover;
  z-index: 2;
}
.casestudy-slider-controls {
  text-align: right;
}
/*--------------------------------------------------------------
# Photo Slider
--------------------------------------------------------------*/
.photo-slider .photo-slider__item {
  position: relative;
  padding: 16px 0;
}
.photo-slider .photo-slider__item:after {
  content: "";
  display: table;
  clear: both;
}
.photo-slider .photo-slider__item img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  float: left;
  -webkit-box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.4);
          box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.4);
}
.photo-slider .photo-slider__item .photo-slider__item__caption {
  background: rgb(195, 32, 18);
  color: #ffffff;
  display: inline-block;
  padding: 8px;
  position: absolute;
  bottom: 16px;
  right: 0;
  z-index: 2;
}
.photo-slider-controls {
  text-align: right;
  padding: 0 32px;
}
.sidebartrigger {
  display: block;
  margin-bottom: 2rem;
}
@media (min-width: 1025px) {
  .sidebartrigger {
    display: none;
  }
}
.sidebar,
.ngdialog-theme-lvr {
  margin-top: 32px;
}
@media (min-width: 1025px) {
  .sidebar,
  .ngdialog-theme-lvr {
    margin-top: 0;
  }
}
.sidebar ul li,
.ngdialog-theme-lvr ul li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 16px;
}
.sidebar ul li:before,
.ngdialog-theme-lvr ul li:before {
  font-family: "icomoon" !important;
}
.sidebar ul li:before,
.ngdialog-theme-lvr ul li:before {
  content: "\e5c8";
  /* use !important to prevent issues with browser extensions that change fonts */
  speak: none;
  font-style: normal;
  font-weight: normal;
  -webkit-font-feature-settings: normal;
          font-feature-settings: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: absolute;
  left: 0;
  top: 6px;
}
.sidebar .teaser.teaser--main.teaser--main-small,
.ngdialog-theme-lvr .teaser.teaser--main.teaser--main-small {
  margin-top: 16px;
}
.sidebar .teaser.teaser--main.teaser--main-small.fachkompetenz,
.ngdialog-theme-lvr .teaser.teaser--main.teaser--main-small.fachkompetenz {
  opacity: 0.6;
  -webkit-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}
.sidebar .teaser.teaser--main.teaser--main-small.fachkompetenz:hover,
.ngdialog-theme-lvr .teaser.teaser--main.teaser--main-small.fachkompetenz:hover {
  opacity: 1;
}
.sidebar .teaser.teaser--main.teaser--main-small.fachkompetenz.fachkompetenz--selected,
.ngdialog-theme-lvr .teaser.teaser--main.teaser--main-small.fachkompetenz.fachkompetenz--selected {
  opacity: 1;
}
.sidebar .sidebar__box,
.ngdialog-theme-lvr .sidebar__box {
  margin-top: 32px;
  position: relative;
}
.sidebar .sidebar__box p,
.ngdialog-theme-lvr .sidebar__box p {
  line-height: 1.1;
}
.sidebar .sidebar__box p small,
.ngdialog-theme-lvr .sidebar__box p small {
  line-height: 1.1;
}
.sidebar .sidebar__box.sidebar__box--open,
.ngdialog-theme-lvr .sidebar__box.sidebar__box--open {
  z-index: 20;
}
.sidebar .sidebar__box .h400,
.ngdialog-theme-lvr .sidebar__box .h400 {
  color: #555;
  font-style: italic;
  font-family: "IBM Plex Sans", Arial, sans-serif;
  margin-bottom: 16px;
}
.sidebar .sidebar__box .teaser--main-small .tooltip,
.ngdialog-theme-lvr .sidebar__box .teaser--main-small .tooltip {
  position: absolute;
  background: #ffffff;
  -webkit-box-shadow: 0 20px 200px rgba(0, 0, 0, 0.2), 0 15px 50px rgba(0, 0, 0, 0.22);
          box-shadow: 0 20px 200px rgba(0, 0, 0, 0.2), 0 15px 50px rgba(0, 0, 0, 0.22);
  right: 20%;
  top: 10%;
  border-radius: 3px;
  text-align: left;
  width: 120%;
  padding: 3px 8px;
  font-size: 12px;
  color: #23383a;
  display: none;
  z-index: 200;
}
.sidebar .sidebar__box .teaser--main-small:hover .tooltip,
.ngdialog-theme-lvr .sidebar__box .teaser--main-small:hover .tooltip {
  display: block;
}
.sidebar .sidebar__box .form-control.form-control--radio,
.ngdialog-theme-lvr .sidebar__box .form-control.form-control--radio {
  position: relative;
  padding-left: 32px;
  margin-bottom: 16px;
}
.sidebar .sidebar__box .form-control.form-control--radio .form-control__indicator,
.ngdialog-theme-lvr .sidebar__box .form-control.form-control--radio .form-control__indicator {
  position: absolute;
  top: 3px;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #555;
  border-radius: 50%;
  cursor: pointer;
}
.sidebar .sidebar__box .form-control.form-control--radio .form-control__indicator:after,
.ngdialog-theme-lvr .sidebar__box .form-control.form-control--radio .form-control__indicator:after {
  position: absolute;
  content: "";
  top: 6px;
  left: 6px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ffffff;
  display: none;
}
.sidebar .sidebar__box .form-control.form-control--radio input,
.ngdialog-theme-lvr .sidebar__box .form-control.form-control--radio input {
  position: absolute;
  left: 0;
  opacity: 0;
  visibility: hidden;
  top: 1px;
}
.sidebar .sidebar__box .form-control.form-control--radio input:checked ~ .form-control__indicator,
.ngdialog-theme-lvr .sidebar__box .form-control.form-control--radio input:checked ~ .form-control__indicator {
  background-color: #009fe3;
}
.sidebar .sidebar__box .form-control.form-control--radio input:checked ~ .form-control__indicator:after,
.ngdialog-theme-lvr .sidebar__box .form-control.form-control--radio input:checked ~ .form-control__indicator:after {
  display: block;
}
.sidebar .sidebar__box .form-control.form-control--radio .form-label,
.ngdialog-theme-lvr .sidebar__box .form-control.form-control--radio .form-label {
  font-size: 16px;
  line-height: 1;
}
.sidebar .accordion .accordion__header {
  padding: 16px 0;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.sidebar .accordion .accordion__header:hover {
  background-color: #f9f9f9;
}
.sidebar .accordion .accordion__header:after {
  display: none;
}
.sidebar .accordion .accordion__cnt {
  padding-bottom: 16px;
}
/*--------------------------------------------------------------
## Teilkompetenzen Farben
--------------------------------------------------------------*/
.sidebar .kompetenzbereich1.sidebar__box .form-control.form-control--radio input:checked ~ .form-control__indicator,
.ngdialog-theme-lvr .kompetenzbereich1.sidebar__box .form-control.form-control--radio input:checked ~ .form-control__indicator {
  background-color: #009640;
}
.sidebar .kompetenzbereich2.sidebar__box .form-control.form-control--radio input:checked ~ .form-control__indicator,
.ngdialog-theme-lvr .kompetenzbereich2.sidebar__box .form-control.form-control--radio input:checked ~ .form-control__indicator {
  background-color: #009fe3;
}
.sidebar .kompetenzbereich3.sidebar__box .form-control.form-control--radio input:checked ~ .form-control__indicator,
.ngdialog-theme-lvr .kompetenzbereich3.sidebar__box .form-control.form-control--radio input:checked ~ .form-control__indicator {
  background-color: #15619d;
}
.sidebar .kompetenzbereich4.sidebar__box .form-control.form-control--radio input:checked ~ .form-control__indicator,
.ngdialog-theme-lvr .kompetenzbereich4.sidebar__box .form-control.form-control--radio input:checked ~ .form-control__indicator {
  background-color: #e6007e;
}
.sidebar .kompetenzbereich5.sidebar__box .form-control.form-control--radio input:checked ~ .form-control__indicator,
.ngdialog-theme-lvr .kompetenzbereich5.sidebar__box .form-control.form-control--radio input:checked ~ .form-control__indicator {
  background-color: #c32012;
}
.sidebar .kompetenzbereich6.sidebar__box .form-control.form-control--radio input:checked ~ .form-control__indicator,
.ngdialog-theme-lvr .kompetenzbereich6.sidebar__box .form-control.form-control--radio input:checked ~ .form-control__indicator {
  background-color: #fab72d;
}
/* --------------------------------------------------------------
# Overlay
-------------------------------------------------------------- */
.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow-y: scroll;
  z-index: 9999;
  background: #ffffff;
  padding: 2rem;
  padding-top: 5rem;
}
.sidebar-overlay--open {
  display: block !important;
}
.sidebar-overlay .sidebar-overlay-close {
  position: fixed;
  top: 0;
  right: 0;
  background-color: #c32012;
  width: 3rem;
  color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 3rem;
  z-index: 11;
  cursor: pointer;
}
.sidebar-overlay .sidebar-overlay-close:hover {
  background-color: #cc2213;
}
/*--------------------------------------------------------------
## Hacks
--------------------------------------------------------------*/
#c94 {
  margin-top: -32px;
}
.topmeta ul li a[href^="/leichte"]::before,
.mainmenu ul li a[href^="/leichte"]::before {
  font-family: "mkr-leiche-sprache" !important;
}
.topmeta ul li a[href^="/leichte"]::before,
.mainmenu ul li a[href^="/leichte"]::before {
  content: "\e902";
  /* use !important to prevent issues with browser extensions that change fonts */
  speak: none;
  font-style: normal;
  font-weight: normal;
  -webkit-font-feature-settings: normal;
          font-feature-settings: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #555;
  padding-right: 0.2em;
}
#leichte-sprache .content-col:after,
.simple-language .content-col:after {
  display: none;
}
#leichte-sprache #site-wrapper > .section,
.simple-language #site-wrapper > .section {
  margin-top: 0;
}
#leichte-sprache .ce-image,
.simple-language .ce-image {
  text-align: right;
}
#leichte-sprache .ce-image .ce-gallery,
.simple-language .ce-image .ce-gallery {
  display: inline-block;
  max-width: 180px;
}
#leichte-sprache .image,
.simple-language .image {
  text-align: right;
}
#leichte-sprache .image img,
.simple-language .image img {
  display: inline-block;
}
#leichte-sprache .image.image--bordered img,
.simple-language .image.image--bordered img {
  border: 1px solid #555;
}
#leichte-sprache ul,
.simple-language ul {
  list-style: disc;
  list-style-position: outside;
  margin-left: 0.9rem;
}
#leichte-sprache ul li,
.simple-language ul li {
  padding-left: 0;
}
#leichte-sprache ul li::before,
.simple-language ul li::before {
  display: none;
}
#leichte-sprache strong,
#leichte-sprache b,
#leichte-sprache p strong,
#leichte-sprache p b,
.simple-language strong,
.simple-language b,
.simple-language p strong,
.simple-language p b {
  font-weight: 600;
  font-family: "IBM Plex Sans", Arial, sans-serif;
}
#leichte-sprache a,
#leichte-sprache p a,
.simple-language a,
.simple-language p a {
  font-family: "IBM Plex Sans", Arial, sans-serif;
}
#leichte-sprache a[href^="mailto:"]::before,
#leichte-sprache a[data-mailto-token]::before,
.simple-language a[href^="mailto:"]::before,
.simple-language a[data-mailto-token]::before {
  font-family: "mkr-leiche-sprache" !important;
}
#leichte-sprache a[href^="mailto:"]::before,
#leichte-sprache a[data-mailto-token]::before,
.simple-language a[href^="mailto:"]::before,
.simple-language a[data-mailto-token]::before {
  content: "\e901";
  /* use !important to prevent issues with browser extensions that change fonts */
  speak: none;
  font-style: normal;
  font-weight: normal;
  -webkit-font-feature-settings: normal;
          font-feature-settings: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-right: 0.2em;
}
#leichte-sprache a[href^="tel:"]::before,
.simple-language a[href^="tel:"]::before {
  font-family: "mkr-leiche-sprache" !important;
}
#leichte-sprache a[href^="tel:"]::before,
.simple-language a[href^="tel:"]::before {
  content: "\e900";
  /* use !important to prevent issues with browser extensions that change fonts */
  speak: none;
  font-style: normal;
  font-weight: normal;
  -webkit-font-feature-settings: normal;
          font-feature-settings: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-right: 0.2em;
}