/*
 * Module imports
 */
@import "../modules/bootstrap/bootstrap-grid.css";
/*
 * bad imports
 */
:root {
  --animate-duration: 4s;
  --animate-delay: 4s;
  --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: 2;
  animation-iteration-count: 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: 3;
  animation-iteration-count: 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: 2s;
  animation-delay: 2s;
  -webkit-animation-delay: calc(var(--animate-delay) * 2);
  animation-delay: calc(var(--animate-delay) * 2);
}

.animate__animated.animate__delay-3s {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
  -webkit-animation-delay: calc(var(--animate-delay) * 3);
  animation-delay: calc(var(--animate-delay) * 3);
}

.animate__animated.animate__delay-4s {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
  -webkit-animation-delay: calc(var(--animate-delay) * 4);
  animation-delay: calc(var(--animate-delay) * 4);
}

.animate__animated.animate__delay-5s {
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
  -webkit-animation-delay: calc(var(--animate-delay) * 5);
  animation-delay: calc(var(--animate-delay) * 5);
}

.animate__animated.animate__faster {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-duration: calc(var(--animate-duration) / 2);
  animation-duration: calc(var(--animate-duration) / 2);
}

.animate__animated.animate__fast {
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
  -webkit-animation-duration: calc(var(--animate-duration) * 0.8);
  animation-duration: calc(var(--animate-duration) * 0.8);
}

.animate__animated.animate__slow {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-duration: calc(var(--animate-duration) * 2);
  animation-duration: calc(var(--animate-duration) * 2);
}

.animate__animated.animate__slower {
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -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: 1.3s;
  animation-duration: 1.3s;
  -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: 0.75s;
  animation-duration: 0.75s;
  -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: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

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

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

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

@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.985);
    transform: translate3d(0, -10px, 0) scaleY(0.985);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0) scaleY(0.9);
    transform: translate3d(0, 20px, 0) scaleY(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0) scaleY(3);
    transform: translate3d(0, -2000px, 0) scaleY(3);
  }
}
@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.985);
    transform: translate3d(0, -10px, 0) scaleY(0.985);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0) scaleY(0.9);
    transform: translate3d(0, 20px, 0) scaleY(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0) scaleY(3);
    transform: translate3d(0, -2000px, 0) scaleY(3);
  }
}
.animate__bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

/* Fading entrances  */
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.animate__fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeInTopLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInTopLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInTopLeft {
  -webkit-animation-name: fadeInTopLeft;
  animation-name: fadeInTopLeft;
}

@-webkit-keyframes fadeInTopRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInTopRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInTopRight {
  -webkit-animation-name: fadeInTopRight;
  animation-name: fadeInTopRight;
}

@-webkit-keyframes fadeInBottomLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInBottomLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInBottomLeft {
  -webkit-animation-name: fadeInBottomLeft;
  animation-name: fadeInBottomLeft;
}

@-webkit-keyframes fadeInBottomRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInBottomRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInBottomRight {
  -webkit-animation-name: fadeInBottomRight;
  animation-name: fadeInBottomRight;
}

/* Fading exits */
@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.animate__fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.animate__fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
.animate__fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.animate__fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
.animate__fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.animate__fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
.animate__fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.animate__fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
.animate__fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

@-webkit-keyframes fadeOutTopLeft {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
}
@keyframes fadeOutTopLeft {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
}
.animate__fadeOutTopLeft {
  -webkit-animation-name: fadeOutTopLeft;
  animation-name: fadeOutTopLeft;
}

@-webkit-keyframes fadeOutTopRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
}
@keyframes fadeOutTopRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
}
.animate__fadeOutTopRight {
  -webkit-animation-name: fadeOutTopRight;
  animation-name: fadeOutTopRight;
}

@-webkit-keyframes fadeOutBottomRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
}
@keyframes fadeOutBottomRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
}
.animate__fadeOutBottomRight {
  -webkit-animation-name: fadeOutBottomRight;
  animation-name: fadeOutBottomRight;
}

@-webkit-keyframes fadeOutBottomLeft {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
}
@keyframes fadeOutBottomLeft {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
}
.animate__fadeOutBottomLeft {
  -webkit-animation-name: fadeOutBottomLeft;
  animation-name: fadeOutBottomLeft;
}

/* Flippers */
@-webkit-keyframes flip {
  from {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
@keyframes flip {
  from {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
.animate__animated.animate__flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}

@-webkit-keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.animate__flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}

@-webkit-keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.animate__flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.animate__flipOutX {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
.animate__flipOutY {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}

/* Lightspeed */
@-webkit-keyframes lightSpeedInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes lightSpeedInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__lightSpeedInRight {
  -webkit-animation-name: lightSpeedInRight;
  animation-name: lightSpeedInRight;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(30deg);
    transform: translate3d(-100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(-20deg);
    transform: skewX(-20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(5deg);
    transform: skewX(5deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes lightSpeedInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(30deg);
    transform: translate3d(-100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(-20deg);
    transform: skewX(-20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(5deg);
    transform: skewX(5deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__lightSpeedInLeft {
  -webkit-animation-name: lightSpeedInLeft;
  animation-name: lightSpeedInLeft;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

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

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

/* Rotating entrances */
@-webkit-keyframes rotateIn {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateIn {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
  -webkit-transform-origin: center;
  transform-origin: center;
}

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

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

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

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

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

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

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

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

@-webkit-keyframes rotateOutUpRight {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpRight {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
.animate__rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}

/* Specials */
@-webkit-keyframes hinge {
  0% {
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
@keyframes hinge {
  0% {
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.animate__hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -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;
}

body {
  padding: 0;
  margin: 0;
}

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

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

.alignright {
  float: right;
}

.aligncenter {
  margin: 0 auto;
  display: block;
}

.alignleft {
  float: left;
}

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

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

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

.bold, strong, b {
  font-weight: bold;
}

.undo-ul {
  padding: 0;
  margin: 0;
  list-style: none;
  list-style-type: none;
}

.undo-li {
  margin-bottom: 0;
  list-style: none;
  list-style-type: none;
}

.undo-p {
  margin: 0;
}

img {
  max-width: 100%;
  height: auto;
}

svg {
  max-height: 100%;
}

.clearfix:after, .cf:after {
  content: "";
  visibility: hidden;
  display: block;
  height: 0;
  clear: both;
}

.flat-left {
  padding-left: 0;
}

.flat-right {
  padding-right: 0;
}

.flat-both {
  padding-left: 0;
  padding-right: 0;
}

.flat-top {
  padding-top: 0;
}

.flat-bottom {
  padding-bottom: 0;
}

.flat-vertical {
  padding-top: 0;
  padding-bottom: 0;
}

.flat-all {
  padding: 0;
}

.fleft {
  float: left;
}

.fright {
  float: right;
}

.float-none {
  float: none !important;
}

/*
 * Colors
 */
/*
 * Misc.
 */
/*
 * Fonts
 */
/*
 * Vertically align an element without using Flexbox
 */
/*
 * Add a color overlay absolutelly positionned over something
 */
/*
 * Overwrite browser placeholders styles
 */
/*
 * Convert images to background
 */
/*
 * Responsive shapes
 */
@keyframes bounce {
  0% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(5px);
  }
  50% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(0);
  }
}
.m-top, .the-content h6, .gform_wrapper.gform-theme--foundation .gform_fields .gfield--type-html h6, .the-content h5, .gform_wrapper.gform-theme--foundation .gform_fields .gfield--type-html h5, .the-content h4, .gform_wrapper.gform-theme--foundation .gform_fields .gfield--type-html h4, .the-content h3, .gform_wrapper.gform-theme--foundation .gform_fields .gfield--type-html h3, .the-content h2, .gform_wrapper.gform-theme--foundation .gform_fields .gfield--type-html h2, .the-content h1, .gform_wrapper.gform-theme--foundation .gform_fields .gfield--type-html h1 {
  margin-top: 25px;
}
.m-top__medium {
  margin-top: 40px;
}
.m-top__big {
  margin-top: 60px;
}
.m-top__very-big {
  margin-top: 80px;
}
.m-top__large {
  margin-top: 105px;
}
.m-bottom {
  margin-bottom: 25px;
}
.m-bottom__medium {
  margin-bottom: 40px;
}
.m-bottom__big {
  margin-bottom: 60px;
}
.m-bottom__very-big {
  margin-bottom: 80px;
}
.m-bottom__large {
  margin-bottom: 105px;
}

.p-both {
  padding: 105px 0;
}
.p-bottom__none {
  padding-bottom: 0 !important;
}

@media (max-width: 992px) {
  .m-top__large {
    margin-top: 50px;
  }
  .m-bottom__very-big {
    margin-bottom: 35px;
  }
}
.heading, .gform_wrapper.gform-theme--foundation .gform_heading .gform_title, .the-content h6, .gform_wrapper.gform-theme--foundation .gform_fields .gfield--type-html h6, .the-content h5, .gform_wrapper.gform-theme--foundation .gform_fields .gfield--type-html h5, .the-content h4, .gform_wrapper.gform-theme--foundation .gform_fields .gfield--type-html h4, .the-content h3, .gform_wrapper.gform-theme--foundation .gform_fields .gfield--type-html h3, .the-content h2, .gform_wrapper.gform-theme--foundation .gform_fields .gfield--type-html h2, .the-content h1, .gform_wrapper.gform-theme--foundation .gform_fields .gfield--type-html h1 {
  font-family: "Montserrat", sans-serif;
}
.heading__no-deco:after {
  display: none !important;
}
.heading__deco:after {
  content: "";
  display: block;
  width: 137px;
  height: 7px;
  background: #0054A6;
  margin: 25px 0 32px 0;
}
.heading__1, .gform_wrapper.gform-theme--foundation .gform_heading .gform_title, .the-content h1, .gform_wrapper.gform-theme--foundation .gform_fields .gfield--type-html h1 {
  font: 800 34px/1.24em "Montserrat", sans-serif;
  position: relative;
  color: #F37021;
}
.heading__1:after, .gform_wrapper.gform-theme--foundation .gform_heading .gform_title:after, .the-content h1:after, .gform_wrapper.gform-theme--foundation .gform_fields .gfield--type-html h1:after {
  content: "";
  display: block;
  width: 137px;
  height: 7px;
  background: #0054A6;
  margin: 25px 0 32px 0;
}
.heading__2, .the-content h2, .gform_wrapper.gform-theme--foundation .gform_fields .gfield--type-html h2 {
  font: 800 20px/1.45em "Montserrat", sans-serif;
}
.heading__3, .the-content h3, .gform_wrapper.gform-theme--foundation .gform_fields .gfield--type-html h3 {
  font: 800 18px/1.2em "Montserrat", sans-serif;
}
.heading__4, .the-content h4, .gform_wrapper.gform-theme--foundation .gform_fields .gfield--type-html h4 {
  font: 800 38px/1.22em "Montserrat", sans-serif;
}
.heading__5, .the-content h5, .gform_wrapper.gform-theme--foundation .gform_fields .gfield--type-html h5 {
  font: 800 34px/1.22em "Montserrat", sans-serif;
  color: #F37021;
  text-transform: uppercase;
}
.heading__6, .the-content h6, .gform_wrapper.gform-theme--foundation .gform_fields .gfield--type-html h6 {
  font: normal 20px/1.41em "Inter", sans-serif;
}

.text__uppercase {
  text-transform: uppercase;
}
.text__strong {
  font-weight: bold;
}
.text__orange, .gform_wrapper.gform-theme--foundation .gform_heading .gform_title {
  color: #F37021;
}
.text__blue {
  color: #0054A6;
}

@keyframes moveUp {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
}
@keyframes moveDown {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(7px);
  }
}
#bad-signature {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  font-size: 14px;
  margin-top: 10px;
}
#bad-signature span {
  margin-right: 10px;
}
#bad-signature a {
  display: block;
  width: 67px;
  height: 20px;
}
#bad-signature a path {
  transition: all 250ms ease-in-out;
}
#bad-signature svg path {
  fill: #FFFFFF;
}

html, body {
  position: relative;
  font: 200 16px/1.45em "Inter", sans-serif;
  color: #504E4E;
  scroll-behavior: smooth;
}
html.admin-bar .header, body.admin-bar .header {
  margin-top: 32px;
}

.wrapper {
  position: relative;
  height: 100%;
  width: 90%;
  max-width: 1640px;
  margin-left: auto;
  margin-right: auto;
}
.wrapper.medium {
  max-width: 1500px;
}

.the-content *:last-child, .gform_wrapper.gform-theme--foundation .gform_fields .gfield--type-html *:last-child {
  margin-bottom: 0;
}
.the-content p, .gform_wrapper.gform-theme--foundation .gform_fields .gfield--type-html p {
  margin-bottom: 25px;
}
.the-content h1, .gform_wrapper.gform-theme--foundation .gform_fields .gfield--type-html h1 {
  margin-bottom: 10px;
}
.the-content h2, .gform_wrapper.gform-theme--foundation .gform_fields .gfield--type-html h2 {
  margin-bottom: 10px;
}
.the-content h3, .gform_wrapper.gform-theme--foundation .gform_fields .gfield--type-html h3 {
  margin-bottom: 10px;
}
.the-content h4, .gform_wrapper.gform-theme--foundation .gform_fields .gfield--type-html h4 {
  margin-bottom: 10px;
}
.the-content h5, .gform_wrapper.gform-theme--foundation .gform_fields .gfield--type-html h5 {
  margin-bottom: 10px;
}
.the-content h6, .gform_wrapper.gform-theme--foundation .gform_fields .gfield--type-html h6 {
  margin-bottom: 30px;
}
.the-content a:not(.button), .gform_wrapper.gform-theme--foundation .gform_fields .gfield--type-html a:not(.button) {
  position: relative;
  font-weight: bold;
}
.the-content a:not(.button):hover:after, .gform_wrapper.gform-theme--foundation .gform_fields .gfield--type-html a:not(.button):hover:after {
  height: 2px;
}
.the-content a:not(.button):after, .gform_wrapper.gform-theme--foundation .gform_fields .gfield--type-html a:not(.button):after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 1px;
  background: #504E4E;
  transform: scaleX(0);
  transform-origin: left;
  transition: all 250ms ease-in-out;
}
.the-content ul, .gform_wrapper.gform-theme--foundation .gform_fields .gfield--type-html ul {
  list-style: none;
  padding-left: 20px;
  margin: 35px 0;
}
.the-content ul > li, .gform_wrapper.gform-theme--foundation .gform_fields .gfield--type-html ul > li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 15px;
}
.the-content ul > li:last-child, .gform_wrapper.gform-theme--foundation .gform_fields .gfield--type-html ul > li:last-child {
  margin-bottom: 0;
}
.the-content ul > li:before, .gform_wrapper.gform-theme--foundation .gform_fields .gfield--type-html ul > li:before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #F37021;
}
.the-content ul ul, .gform_wrapper.gform-theme--foundation .gform_fields .gfield--type-html ul ul {
  list-style-type: circle;
  list-style-position: inside;
  margin-left: 15px;
}
.the-content ul ol, .gform_wrapper.gform-theme--foundation .gform_fields .gfield--type-html ul ol {
  list-style-type: lower-latin;
  list-style-position: inside;
  margin-left: 15px;
}
.the-content ol, .gform_wrapper.gform-theme--foundation .gform_fields .gfield--type-html ol {
  list-style-type: decimal;
  list-style-position: outside;
  padding-left: 30px;
  margin: 35px 0 25px 0;
}
.the-content ol > li, .gform_wrapper.gform-theme--foundation .gform_fields .gfield--type-html ol > li {
  margin-bottom: 25px;
}
.the-content ol > li::marker, .gform_wrapper.gform-theme--foundation .gform_fields .gfield--type-html ol > li::marker {
  color: #F37021;
  font-weight: 800;
}
.the-content ol > li a, .gform_wrapper.gform-theme--foundation .gform_fields .gfield--type-html ol > li a {
  color: #0054A6;
  text-transform: uppercase;
  text-decoration: underline;
}
.the-content ol > li a:hover, .gform_wrapper.gform-theme--foundation .gform_fields .gfield--type-html ol > li a:hover {
  color: #F37021;
}
.the-content ol ul, .gform_wrapper.gform-theme--foundation .gform_fields .gfield--type-html ol ul {
  list-style-type: circle;
  list-style-position: inside;
  margin-left: 15px;
}
.the-content ol ol, .gform_wrapper.gform-theme--foundation .gform_fields .gfield--type-html ol ol {
  list-style-type: lower-latin;
  list-style-position: inside;
  margin-left: 15px;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 250ms ease-in-out;
}

#main {
  position: relative;
  z-index: 1;
  margin-top: 150px;
}

.mobile-nav {
  position: fixed;
  z-index: 2;
  top: 60px;
  left: 0;
  width: 100%;
  height: calc(100% - 60px);
  overflow-y: scroll;
  background: #F37021;
  padding: 45px 0;
  color: #FFFFFF;
  transform: translateX(100%);
  transition: all 250ms ease-in-out;
}
.mobile-nav.mobile-nav-shown {
  transform: translateX(0);
}
.mobile-nav li {
  font: 800 32px/1.2em "Montserrat", sans-serif;
  margin-bottom: 20px;
}
.mobile-nav li.is-button {
  margin-top: 45px;
}

.header {
  position: fixed;
  z-index: 4;
  top: 0;
  left: 0;
  width: 100%;
  height: 150px;
  background: #FFFFFF;
  color: #FFFFFF;
  transition: all 250ms ease-in-out;
}
.header.is-fixed {
  height: 100px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
}
.header.mobile-nav-shown .header__hamburger span:nth-child(1) {
  transform: rotate(45deg);
  left: 8px;
  top: -1px;
}
.header.mobile-nav-shown .header__hamburger span:nth-child(2) {
  opacity: 0;
}
.header.mobile-nav-shown .header__hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  left: 8px;
  top: 100%;
}
.header__logo {
  display: flex;
  width: 390px;
}
.header__nav {
  width: calc(100% - 390px);
  padding-left: 50px;
}
.header__nav > ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.header__nav > ul > li {
  margin-right: 45px;
  font: 800 18px/1em "Montserrat", sans-serif;
  color: #000000;
}
.header__nav > ul > li:last-child {
  margin-right: 0;
}
.header__nav > ul > li:hover a, .header__nav > ul > li.current-menu-item:not(.menu-item-type-custom, .is-button) a {
  color: #0054A6;
}
.header__nav > ul > li:hover a:after, .header__nav > ul > li.current-menu-item:not(.menu-item-type-custom, .is-button) a:after {
  display: block;
}
.header__nav > ul > li a:not(.button) {
  position: relative;
}
.header__nav > ul > li a:not(.button):after {
  content: "";
  display: none;
  position: absolute;
  top: calc(100% + 11px);
  width: 100%;
  height: 7px;
  background: #0054A6;
}
.header__hamburger {
  display: none;
  width: 40px;
  height: 27px;
  position: relative;
  cursor: pointer;
  transition: all 250ms ease-in-out;
  transform: rotate(0);
  margin-left: auto;
}
.header__hamburger span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #0054A6;
  border-radius: 3px;
  left: 0;
  transition: all 250ms ease-in-out;
  transform: rotate(0deg);
  transform-origin: left center;
}
.header__hamburger span:nth-child(1) {
  top: 0;
}
.header__hamburger span:nth-child(2) {
  top: calc(50% - 1.5px);
}
.header__hamburger span:nth-child(3) {
  top: calc(100% - 3px);
}

.buttons {
  display: flex;
  gap: 10px;
}

.button, .is-button > a {
  display: inline-flex;
  font: 800 16px/1.2em "Montserrat", sans-serif;
  text-decoration: none !important;
  appearance: none;
  border: 0;
  cursor: pointer;
}
.button__primary, .is-button > a {
  padding: 17px 30px;
  background: #0054A6;
  border-radius: 60px;
  color: #FFFFFF !important;
}
.button__primary:after, .is-button > a:after {
  content: "";
  position: relative;
  width: 10px;
  height: 20px;
  margin-left: 15px;
  background-image: url("../images/icon-right-arrow.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.button__primary.button__accordion.active:after, .is-button > a.button__accordion.active:after {
  transform: rotate(-90deg);
}
.button__primary.button__accordion:after, .is-button > a.button__accordion:after {
  transform: rotate(90deg);
}
.button__primary.button__icon-play:after, .is-button > a.button__icon-play:after {
  width: 15px;
  height: 20px;
  background-image: url("../images/icon-play.svg");
}
.button__primary:hover, .is-button > a:hover {
  background: #F37021;
}
.button__secondary {
  padding: 17px 30px;
  background: transparent;
  border-radius: 60px;
  border: 2px solid #FFFFFF;
  color: #FFFFFF;
}
.button__secondary:after {
  content: "";
  position: relative;
  top: 2px;
  width: 10px;
  height: 20px;
  margin-left: 15px;
  background-image: url("../images/icon-right-arrow.svg");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.button__secondary:hover {
  background: #FFFFFF;
  color: #F37021;
}
.button__secondary:hover:after {
  background-image: url("../images/icon-right-arrow-orange.svg");
}

.content-contained {
  max-width: 975px;
}

.slice {
  padding: 60px 0;
  contain: paint;
  scroll-margin-top: 100px;
}
.slice__dark {
  background: #EAEAEA;
}
.slice__no-top {
  padding-top: 0 !important;
}
.slice__intro {
  text-align: center;
  max-width: 1300px;
  margin: 0 auto 40px auto;
}
.slice__intro .heading, .slice__intro .gform_wrapper.gform-theme--foundation .gform_heading .gform_title, .gform_wrapper.gform-theme--foundation .gform_heading .slice__intro .gform_title, .slice__intro .the-content h1, .slice__intro .gform_wrapper.gform-theme--foundation .gform_fields .gfield--type-html h1, .gform_wrapper.gform-theme--foundation .gform_fields .slice__intro .gfield--type-html h1, .the-content .slice__intro h1, .gform_wrapper.gform-theme--foundation .gform_fields .gfield--type-html .slice__intro h1, .slice__intro .the-content h2, .slice__intro .gform_wrapper.gform-theme--foundation .gform_fields .gfield--type-html h2, .gform_wrapper.gform-theme--foundation .gform_fields .slice__intro .gfield--type-html h2, .the-content .slice__intro h2, .gform_wrapper.gform-theme--foundation .gform_fields .gfield--type-html .slice__intro h2, .slice__intro .the-content h3, .slice__intro .gform_wrapper.gform-theme--foundation .gform_fields .gfield--type-html h3, .gform_wrapper.gform-theme--foundation .gform_fields .slice__intro .gfield--type-html h3, .the-content .slice__intro h3, .gform_wrapper.gform-theme--foundation .gform_fields .gfield--type-html .slice__intro h3, .slice__intro .the-content h4, .slice__intro .gform_wrapper.gform-theme--foundation .gform_fields .gfield--type-html h4, .gform_wrapper.gform-theme--foundation .gform_fields .slice__intro .gfield--type-html h4, .the-content .slice__intro h4, .gform_wrapper.gform-theme--foundation .gform_fields .gfield--type-html .slice__intro h4, .slice__intro .the-content h5, .slice__intro .gform_wrapper.gform-theme--foundation .gform_fields .gfield--type-html h5, .gform_wrapper.gform-theme--foundation .gform_fields .slice__intro .gfield--type-html h5, .the-content .slice__intro h5, .gform_wrapper.gform-theme--foundation .gform_fields .gfield--type-html .slice__intro h5, .slice__intro .the-content h6, .slice__intro .gform_wrapper.gform-theme--foundation .gform_fields .gfield--type-html h6, .gform_wrapper.gform-theme--foundation .gform_fields .slice__intro .gfield--type-html h6, .the-content .slice__intro h6, .gform_wrapper.gform-theme--foundation .gform_fields .gfield--type-html .slice__intro h6 {
  margin-bottom: 50px;
}
.slice__intro .the-content, .slice__intro .gform_wrapper.gform-theme--foundation .gform_fields .gfield--type-html, .gform_wrapper.gform-theme--foundation .gform_fields .slice__intro .gfield--type-html {
  font: normal 20px/1.41em "Montserrat", sans-serif;
}
.slice__outro {
  text-align: center;
  max-width: 1260px;
  margin: 80px auto 0 auto;
}

.filter-list {
  display: flex;
  align-items: center;
  margin-bottom: 45px;
}
.filter-list > li {
  margin-right: 45px;
}
.filter-list > li:last-child {
  margin-right: 0;
}
.filter-list > li button {
  appearance: none;
  background: none;
  border: 0;
  color: #F37021;
  text-transform: uppercase;
  font: 800 20px/1.17em "Montserrat", sans-serif;
  cursor: pointer;
  transition: all 250ms ease-in-out;
}
.filter-list > li button:hover, .filter-list > li button.active {
  color: #0054A6;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 107px;
  grid-row-gap: 72px;
}
.video-grid__block.filtered {
  display: none;
}
.video-grid__block-image {
  display: block;
  aspect-ratio: 16/9;
  background: #EAEAEA;
  border-radius: 30px;
  margin-bottom: 35px;
  overflow: hidden;
  position: relative;
}
.video-grid__block-image > img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  width: 185%;
  height: 185%;
  object-fit: cover;
  object-position: center;
}
.video-grid__block-meta .categories {
  color: #F37021;
  text-transform: uppercase;
  font: 800 17px/1.17em "Montserrat", sans-serif;
  margin-bottom: 24px;
}
.video-grid__block-meta .heading, .video-grid__block-meta .gform_wrapper.gform-theme--foundation .gform_heading .gform_title, .gform_wrapper.gform-theme--foundation .gform_heading .video-grid__block-meta .gform_title, .video-grid__block-meta .the-content h1, .video-grid__block-meta .gform_wrapper.gform-theme--foundation .gform_fields .gfield--type-html h1, .gform_wrapper.gform-theme--foundation .gform_fields .video-grid__block-meta .gfield--type-html h1, .the-content .video-grid__block-meta h1, .gform_wrapper.gform-theme--foundation .gform_fields .gfield--type-html .video-grid__block-meta h1, .video-grid__block-meta .the-content h2, .video-grid__block-meta .gform_wrapper.gform-theme--foundation .gform_fields .gfield--type-html h2, .gform_wrapper.gform-theme--foundation .gform_fields .video-grid__block-meta .gfield--type-html h2, .the-content .video-grid__block-meta h2, .gform_wrapper.gform-theme--foundation .gform_fields .gfield--type-html .video-grid__block-meta h2, .video-grid__block-meta .the-content h3, .video-grid__block-meta .gform_wrapper.gform-theme--foundation .gform_fields .gfield--type-html h3, .gform_wrapper.gform-theme--foundation .gform_fields .video-grid__block-meta .gfield--type-html h3, .the-content .video-grid__block-meta h3, .gform_wrapper.gform-theme--foundation .gform_fields .gfield--type-html .video-grid__block-meta h3, .video-grid__block-meta .the-content h4, .video-grid__block-meta .gform_wrapper.gform-theme--foundation .gform_fields .gfield--type-html h4, .gform_wrapper.gform-theme--foundation .gform_fields .video-grid__block-meta .gfield--type-html h4, .the-content .video-grid__block-meta h4, .gform_wrapper.gform-theme--foundation .gform_fields .gfield--type-html .video-grid__block-meta h4, .video-grid__block-meta .the-content h5, .video-grid__block-meta .gform_wrapper.gform-theme--foundation .gform_fields .gfield--type-html h5, .gform_wrapper.gform-theme--foundation .gform_fields .video-grid__block-meta .gfield--type-html h5, .the-content .video-grid__block-meta h5, .gform_wrapper.gform-theme--foundation .gform_fields .gfield--type-html .video-grid__block-meta h5, .video-grid__block-meta .the-content h6, .video-grid__block-meta .gform_wrapper.gform-theme--foundation .gform_fields .gfield--type-html h6, .gform_wrapper.gform-theme--foundation .gform_fields .video-grid__block-meta .gfield--type-html h6, .the-content .video-grid__block-meta h6, .gform_wrapper.gform-theme--foundation .gform_fields .gfield--type-html .video-grid__block-meta h6 {
  margin-bottom: 20px;
}
.video-grid__block-meta .button, .video-grid__block-meta .is-button > a {
  margin-top: 40px;
}

.team-listing__block {
  margin-bottom: 25px;
}
.team-listing__block:last-child {
  margin-bottom: 0;
}
.team-listing__block-name {
  font: 800 20px/1.42em "Montserrat", sans-serif;
}
.team-listing__block-title {
  font: 300 18px/1.55em "Inter", sans-serif;
  color: #504E4E;
}

#newsletter-form {
  display: none;
}
#newsletter-form .gform_footer {
  justify-content: center;
}

.footer {
  background: #000000;
  color: #FFFFFF;
}
.footer__logo {
  display: block;
  margin: 0 0 20px 0;
  width: 220px;
}
.footer__top > .wrapper {
  padding-bottom: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer__top .heading__2, .footer__top .the-content h2, .footer__top .gform_wrapper.gform-theme--foundation .gform_fields .gfield--type-html h2, .gform_wrapper.gform-theme--foundation .gform_fields .footer__top .gfield--type-html h2, .the-content .footer__top h2, .gform_wrapper.gform-theme--foundation .gform_fields .gfield--type-html .footer__top h2 {
  margin-bottom: 15px;
}
.footer__top-form {
  display: flex;
  justify-content: flex-end;
}
.footer__top-form input[type=email] {
  color: #FFFFFF;
  background: transparent;
  border: 2px solid #FFFFFF;
  border-radius: 15px;
  flex: 1;
  margin-right: 50px;
  padding: 15px 30px;
  font: 300 22px/1em "Inter", sans-serif;
}
.footer__top-form input[type=email]::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #FFFFFF;
  opacity: 1;
}
.footer__top-form input[type=email]::-moz-placeholder { /* Firefox 19+ */
  color: #FFFFFF;
  opacity: 1;
}
.footer__top-form input[type=email]:-ms-input-placeholder { /* IE 10+ */
  color: #FFFFFF;
  opacity: 1;
}
.footer__top-form input[type=email]:-moz-placeholder { /* Firefox 18- */
  color: #FFFFFF;
  opacity: 1;
}
.footer__top-form button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.footer__bottom > .wrapper {
  border-top: 1px solid #0054A6;
  padding-top: 50px;
}
.footer__bottom .icon-list {
  justify-content: flex-end;
  margin-bottom: 50px;
}
.footer__bottom-copyright {
  font: normal 16px/1.12em "Inter", sans-serif;
  text-align: right;
}
.footer__bottom-copyright a {
  color: #F37021;
}
.footer__bottom-copyright a:hover {
  text-decoration: underline;
}
.footer__bottom-nav {
  margin-top: 15px;
}
.footer__bottom-nav ul {
  display: flex;
  gap: 15px;
}
.footer__bottom-nav ul a:hover {
  text-decoration: underline;
}

.page-template-videos .team-footer .wrapper {
  border-top: 1px solid #0054A6;
  padding-top: 110px;
}

.icon-list {
  display: flex;
  align-items: center;
}
.icon-list li {
  width: 40px;
  height: 40px;
  margin-right: 18px;
}
.icon-list li:last-child {
  margin-right: 0;
}

.fancybox__content {
  border-radius: 60px;
  padding: 135px 40px 40px 40px;
}
.fancybox__content > .f-button.is-close-btn {
  top: 58px;
  right: 68px;
  opacity: 1;
}
.fancybox__content > .f-button.is-close-btn svg {
  stroke: #504E4E;
  stroke-width: 5px;
}
.fancybox__content > .f-button.is-close-btn:hover svg {
  stroke: #0054A6;
}

.hero-slider__slide {
  display: flex;
  gap: 75px;
  padding: 0 1px 10px 1px;
}
.hero-slider__slide-meta {
  width: 50%;
}
.hero-slider__slide-image {
  width: 50%;
}
.hero-slider__slide-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 60px;
  aspect-ratio: 2560/1440;
  object-fit: cover;
  object-position: center;
}
.hero-slider__slide-dates {
  margin-top: 20px;
}
.hero-slider__slide .button, .hero-slider__slide .is-button > a {
  margin-top: 25px;
}
.hero-slider__slide-logo-label {
  margin: 40px 0 25px 0;
  font: normal 16px/1em "Inter", sans-serif;
}
.hero-slider__slide-logos {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  gap: 45px;
}
.hero-slider__slide-logos img {
  aspect-ratio: 16/9;
  object-fit: contain;
  object-position: center;
}

.splide__pagination {
  bottom: -50px;
}
.splide__pagination__page {
  width: 12px;
  height: 12px;
  background: #504E4E;
  opacity: 1;
  margin-right: 5px;
}
.splide__pagination__page.is-active {
  background: #000000;
  transform: none;
}

.pills__grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-column-gap: 30px;
}
.pills__grid-card {
  position: relative;
  width: 100%;
  aspect-ratio: 353/582;
  border-radius: 300px;
  overflow: hidden;
  color: #FFFFFF;
  background: #0054A6;
}
.pills__grid-card:hover .bg.hover {
  opacity: 1;
}
.pills__grid-card:nth-child(even) {
  margin-top: 50px;
}
.pills__grid-card:nth-child(even) .bg {
  mix-blend-mode: multiply;
}
.pills__grid-card .meta {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: calc(100% - 50px);
  height: calc(100% - 50px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 25px;
  text-align: center;
}
.pills__grid-card .meta img {
  width: 60px;
  aspect-ratio: 1/1;
  object-fit: contain;
  object-position: center;
  display: block;
  margin-bottom: 45px;
}
.pills__grid-card .meta .heading, .pills__grid-card .meta .gform_wrapper.gform-theme--foundation .gform_heading .gform_title, .gform_wrapper.gform-theme--foundation .gform_heading .pills__grid-card .meta .gform_title, .pills__grid-card .meta .the-content h1, .pills__grid-card .meta .gform_wrapper.gform-theme--foundation .gform_fields .gfield--type-html h1, .gform_wrapper.gform-theme--foundation .gform_fields .pills__grid-card .meta .gfield--type-html h1, .the-content .pills__grid-card .meta h1, .gform_wrapper.gform-theme--foundation .gform_fields .gfield--type-html .pills__grid-card .meta h1, .pills__grid-card .meta .the-content h2, .pills__grid-card .meta .gform_wrapper.gform-theme--foundation .gform_fields .gfield--type-html h2, .gform_wrapper.gform-theme--foundation .gform_fields .pills__grid-card .meta .gfield--type-html h2, .the-content .pills__grid-card .meta h2, .gform_wrapper.gform-theme--foundation .gform_fields .gfield--type-html .pills__grid-card .meta h2, .pills__grid-card .meta .the-content h3, .pills__grid-card .meta .gform_wrapper.gform-theme--foundation .gform_fields .gfield--type-html h3, .gform_wrapper.gform-theme--foundation .gform_fields .pills__grid-card .meta .gfield--type-html h3, .the-content .pills__grid-card .meta h3, .gform_wrapper.gform-theme--foundation .gform_fields .gfield--type-html .pills__grid-card .meta h3, .pills__grid-card .meta .the-content h4, .pills__grid-card .meta .gform_wrapper.gform-theme--foundation .gform_fields .gfield--type-html h4, .gform_wrapper.gform-theme--foundation .gform_fields .pills__grid-card .meta .gfield--type-html h4, .the-content .pills__grid-card .meta h4, .gform_wrapper.gform-theme--foundation .gform_fields .gfield--type-html .pills__grid-card .meta h4, .pills__grid-card .meta .the-content h5, .pills__grid-card .meta .gform_wrapper.gform-theme--foundation .gform_fields .gfield--type-html h5, .gform_wrapper.gform-theme--foundation .gform_fields .pills__grid-card .meta .gfield--type-html h5, .the-content .pills__grid-card .meta h5, .gform_wrapper.gform-theme--foundation .gform_fields .gfield--type-html .pills__grid-card .meta h5, .pills__grid-card .meta .the-content h6, .pills__grid-card .meta .gform_wrapper.gform-theme--foundation .gform_fields .gfield--type-html h6, .gform_wrapper.gform-theme--foundation .gform_fields .pills__grid-card .meta .gfield--type-html h6, .the-content .pills__grid-card .meta h6, .gform_wrapper.gform-theme--foundation .gform_fields .gfield--type-html .pills__grid-card .meta h6 {
  font: 800 24px/1.33em "Montserrat", sans-serif;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.75);
  margin-bottom: 25px;
}
.pills__grid-card .meta .the-content, .pills__grid-card .meta .gform_wrapper.gform-theme--foundation .gform_fields .gfield--type-html, .gform_wrapper.gform-theme--foundation .gform_fields .pills__grid-card .meta .gfield--type-html {
  font: bold 20px/1.38em "Inter", sans-serif;
}
.pills__grid-card .bg {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: all 250ms ease-in-out;
}
.pills__grid-card .bg.hover {
  opacity: 0;
  z-index: 3;
  mix-blend-mode: normal;
}

.textual-cta {
  display: flex;
  align-items: center;
  justify-content: center;
}
.textual-cta .button, .textual-cta .is-button > a {
  margin-left: 45px;
}

.accordion {
  display: none;
  scroll-margin-top: 100px;
}
.accordion.active {
  display: block;
}
.accordion.in-content {
  padding-bottom: 30px;
}

.about {
  padding-bottom: 90px;
}
.about__top {
  display: flex;
  gap: 104px;
}
.about__top-images {
  position: sticky;
  top: 100px;
  width: 24%;
}
.about__top-images img {
  display: block;
  width: 100%;
  aspect-ratio: 400/330;
  margin-top: 53px;
  object-fit: cover;
  object-position: center;
  border-radius: 60px;
}
.about__top-images img:first-child {
  margin-top: 0;
}
.about__top-content {
  flex: 1;
  padding: 70px 0;
}
.about__bottom {
  padding-top: 132px;
  display: flex;
  gap: 104px;
}
.about__bottom-image {
  width: 30%;
}
.about__bottom-image img {
  position: sticky;
  top: 100px;
  border-radius: 60px;
}
.about__bottom-content {
  flex: 1;
}

.music {
  display: flex;
  gap: 104px;
}
.music-image {
  width: 30%;
}
.music-image img {
  position: sticky;
  top: 100px;
  border-radius: 60px;
}
.music-content {
  flex: 1;
}

.collab {
  display: flex;
  gap: 104px;
}
.collab-image {
  width: 30%;
}
.collab-image img {
  position: sticky;
  top: 100px;
  border-radius: 60px;
}
.collab-content {
  flex: 1;
}

.youth {
  display: flex;
  gap: 104px;
}
.youth-images {
  width: 35%;
  padding-top: 90px;
}
.youth-images img {
  position: relative;
  border-radius: 30px;
  width: 100%;
}
.youth-images img:nth-child(1) {
  z-index: 2;
  transform: rotate(-4deg);
}
.youth-images img:nth-child(2) {
  z-index: 1;
  transform: rotate(6deg);
}
.youth-content {
  flex: 1;
}
.youth-content__books-heading {
  margin-top: 60px;
  font: 800 22px/1.45em "Inter", sans-serif;
  text-transform: uppercase;
  color: #0054A6;
}
.youth-content__books-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 40px;
}
.youth-content__books-grid > a {
  display: block;
  aspect-ratio: 180/234;
}
.youth-content__books-grid > a:hover {
  transform: scale(1.1);
}
.youth-content__books-grid > a > img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  object-fit: cover;
  object-position: center;
}

.help__track {
  display: flex;
  gap: 104px;
  padding-top: 60px;
}
.help__track-meta {
  width: 30%;
}
.help__track-slider {
  flex: 1;
  position: relative;
}
.help__track-slider-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 62vw;
}
.help-splider__slide {
  width: 475px;
}
.help-splider__slide .hss__image {
  display: block;
  width: 100%;
  border-radius: 30px;
  margin-bottom: 40px;
  aspect-ratio: 475/317;
  object-fit: cover;
  object-position: center;
}
.help-splider__slide .hss__heading {
  font: 800 20px/1.33em "Montserrat", sans-serif;
  color: #000000;
}
.help-splider__slide .hss__subheading {
  font: 200 18px/1.45em "Inter", sans-serif;
}
.help-splider__slide .hss__subheading:after {
  content: "";
  display: block;
  width: 137px;
  height: 7px;
  background: #F37021;
  margin: 35px 0 42px 0;
}
.help-splider__slide .hss__dates {
  color: #0054A6;
  font: normal 18px/1.45em "Montserrat", sans-serif;
}
.help-splider__slide .hss__dates .hss_date {
  margin-bottom: 25px;
}
.help-splider__slide .hss__dates .hss_date:last-child {
  margin-bottom: 0;
}
.help-splider__slide .hss__dates .hss_date .button, .help-splider__slide .hss__dates .hss_date .is-button > a {
  margin-top: 15px;
  font-size: 14px;
  padding: 12px 15px;
}
.help-splider__slide .hss__dates .hss_date .button:after, .help-splider__slide .hss__dates .hss_date .is-button > a:after {
  top: -1px;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  gap: 17px;
}
.bento-grid__card {
  position: relative;
  padding: 1rem;
  text-align: center;
  border-radius: 60px;
  background-color: var(--background-color);
  padding: 65px 40px;
  background-image: var(--background-image);
  background-size: cover;
  background-position: center;
  color: #FFFFFF;
  scroll-margin-top: 100px;
}
.bento-grid__card.cols-2 .bento-grid__card-meta > .heading, .bento-grid__card.cols-2 .gform_wrapper.gform-theme--foundation .gform_heading .bento-grid__card-meta > .gform_title, .gform_wrapper.gform-theme--foundation .gform_heading .bento-grid__card.cols-2 .bento-grid__card-meta > .gform_title, .bento-grid__card.cols-2 .the-content .bento-grid__card-meta > h1, .bento-grid__card.cols-2 .gform_wrapper.gform-theme--foundation .gform_fields .gfield--type-html .bento-grid__card-meta > h1, .gform_wrapper.gform-theme--foundation .gform_fields .bento-grid__card.cols-2 .gfield--type-html .bento-grid__card-meta > h1, .the-content .bento-grid__card.cols-2 .bento-grid__card-meta > h1, .gform_wrapper.gform-theme--foundation .gform_fields .gfield--type-html .bento-grid__card.cols-2 .bento-grid__card-meta > h1, .bento-grid__card.cols-2 .the-content .bento-grid__card-meta > h2, .bento-grid__card.cols-2 .gform_wrapper.gform-theme--foundation .gform_fields .gfield--type-html .bento-grid__card-meta > h2, .gform_wrapper.gform-theme--foundation .gform_fields .bento-grid__card.cols-2 .gfield--type-html .bento-grid__card-meta > h2, .the-content .bento-grid__card.cols-2 .bento-grid__card-meta > h2, .gform_wrapper.gform-theme--foundation .gform_fields .gfield--type-html .bento-grid__card.cols-2 .bento-grid__card-meta > h2, .bento-grid__card.cols-2 .the-content .bento-grid__card-meta > h3, .bento-grid__card.cols-2 .gform_wrapper.gform-theme--foundation .gform_fields .gfield--type-html .bento-grid__card-meta > h3, .gform_wrapper.gform-theme--foundation .gform_fields .bento-grid__card.cols-2 .gfield--type-html .bento-grid__card-meta > h3, .the-content .bento-grid__card.cols-2 .bento-grid__card-meta > h3, .gform_wrapper.gform-theme--foundation .gform_fields .gfield--type-html .bento-grid__card.cols-2 .bento-grid__card-meta > h3, .bento-grid__card.cols-2 .the-content .bento-grid__card-meta > h4, .bento-grid__card.cols-2 .gform_wrapper.gform-theme--foundation .gform_fields .gfield--type-html .bento-grid__card-meta > h4, .gform_wrapper.gform-theme--foundation .gform_fields .bento-grid__card.cols-2 .gfield--type-html .bento-grid__card-meta > h4, .the-content .bento-grid__card.cols-2 .bento-grid__card-meta > h4, .gform_wrapper.gform-theme--foundation .gform_fields .gfield--type-html .bento-grid__card.cols-2 .bento-grid__card-meta > h4, .bento-grid__card.cols-2 .the-content .bento-grid__card-meta > h5, .bento-grid__card.cols-2 .gform_wrapper.gform-theme--foundation .gform_fields .gfield--type-html .bento-grid__card-meta > h5, .gform_wrapper.gform-theme--foundation .gform_fields .bento-grid__card.cols-2 .gfield--type-html .bento-grid__card-meta > h5, .the-content .bento-grid__card.cols-2 .bento-grid__card-meta > h5, .gform_wrapper.gform-theme--foundation .gform_fields .gfield--type-html .bento-grid__card.cols-2 .bento-grid__card-meta > h5, .bento-grid__card.cols-2 .the-content .bento-grid__card-meta > h6, .bento-grid__card.cols-2 .gform_wrapper.gform-theme--foundation .gform_fields .gfield--type-html .bento-grid__card-meta > h6, .gform_wrapper.gform-theme--foundation .gform_fields .bento-grid__card.cols-2 .gfield--type-html .bento-grid__card-meta > h6, .the-content .bento-grid__card.cols-2 .bento-grid__card-meta > h6, .gform_wrapper.gform-theme--foundation .gform_fields .gfield--type-html .bento-grid__card.cols-2 .bento-grid__card-meta > h6 {
  text-align: center;
}
.bento-grid__card.cols-2 .meta-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.bento-grid__card:nth-child(4n+1) {
  grid-column: span 1;
}
.bento-grid__card:nth-child(4n+2) {
  grid-column: span 2;
}
.bento-grid__card:nth-child(4n+3) {
  grid-column: span 2;
}
.bento-grid__card:nth-child(4n+4) {
  grid-column: span 1;
  grid-columns-start: 3;
}
.bento-grid__card > .bg {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 60px;
  opacity: 0.5;
}
.bento-grid__card-meta {
  position: relative;
  z-index: 2;
  text-align: left;
}
.bento-grid__card-meta > .heading, .gform_wrapper.gform-theme--foundation .gform_heading .bento-grid__card-meta > .gform_title, .the-content .bento-grid__card-meta > h1, .gform_wrapper.gform-theme--foundation .gform_fields .gfield--type-html .bento-grid__card-meta > h1, .the-content .bento-grid__card-meta > h2, .gform_wrapper.gform-theme--foundation .gform_fields .gfield--type-html .bento-grid__card-meta > h2, .the-content .bento-grid__card-meta > h3, .gform_wrapper.gform-theme--foundation .gform_fields .gfield--type-html .bento-grid__card-meta > h3, .the-content .bento-grid__card-meta > h4, .gform_wrapper.gform-theme--foundation .gform_fields .gfield--type-html .bento-grid__card-meta > h4, .the-content .bento-grid__card-meta > h5, .gform_wrapper.gform-theme--foundation .gform_fields .gfield--type-html .bento-grid__card-meta > h5, .the-content .bento-grid__card-meta > h6, .gform_wrapper.gform-theme--foundation .gform_fields .gfield--type-html .bento-grid__card-meta > h6 {
  text-transform: uppercase;
  font: 800 40px/1.15em "Montserrat", sans-serif;
  margin-bottom: 50px;
}
.bento-grid__card-meta img {
  display: block;
  width: 100%;
  object-fit: cover;
  object-position: center;
  margin-bottom: 20px;
  aspect-ratio: 478/253;
  border-radius: 30px;
}
.bento-grid__card-meta .subheading {
  font: 800 24px/1.33em "Montserrat", sans-serif;
  color: #FFFFFF;
}
.bento-grid__card-meta .subheading__secondary {
  color: #FBC629;
  font: bold 26px/1.38em "Inter", sans-serif;
  margin-bottom: 30px;
}
.bento-grid__card-meta .the-content, .bento-grid__card-meta .gform_wrapper.gform-theme--foundation .gform_fields .gfield--type-html, .gform_wrapper.gform-theme--foundation .gform_fields .bento-grid__card-meta .gfield--type-html {
  margin-bottom: 30px;
}

.popup {
  display: none;
  width: 90%;
  max-width: 990px;
  margin-bottom: 60px;
}
.popup img {
  position: sticky;
  border-radius: 30px;
  width: 100%;
}
.popup__heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.popup__workshop-archive {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.popup__workshop-archive-item > img {
  display: block;
  border-radius: 15px;
  display: block;
  margin-bottom: 10px;
}
.popup__workshop-archive-item .buttons {
  display: block;
  margin-top: 20px;
}
.popup__workshop-archive-item .buttons .button, .popup__workshop-archive-item .buttons .is-button > a {
  margin-bottom: 10px;
}

.gform-theme--framework {
  --gform-theme-local-color: $orange !important;
  --gform-local-bg-color: $orange !important;
  --gf-field-pg-prog-bar-bg-color-blue: $orange !important;
}

.gform_wrapper .gform_ajax_spinner {
  width: 30px;
  height: 30px;
}
.gform_wrapper.gform-theme--foundation .gf_progressbar .percentbar_blue {
  background-color: #F37021 !important;
}
.gform_wrapper.gform-theme--foundation .gform_fields {
  column-gap: 17px;
  row-gap: 17px;
}
.gform_wrapper.gform-theme--foundation .gform_fields .gfield input[type=text],
.gform_wrapper.gform-theme--foundation .gform_fields .gfield input[type=email],
.gform_wrapper.gform-theme--foundation .gform_fields .gfield input[type=tel],
.gform_wrapper.gform-theme--foundation .gform_fields .gfield textarea {
  border: 0;
  background: rgba(234, 234, 234, 0.5);
  box-shadow: none;
  border-radius: 15px;
  padding: 15px 20px;
  color: #504E4E;
  font: 300 16px/1.45em "Inter", sans-serif;
  height: 57px;
}
.gform_wrapper.gform-theme--foundation .gform_fields .gfield input[type=text]::-webkit-input-placeholder,
.gform_wrapper.gform-theme--foundation .gform_fields .gfield input[type=email]::-webkit-input-placeholder,
.gform_wrapper.gform-theme--foundation .gform_fields .gfield input[type=tel]::-webkit-input-placeholder,
.gform_wrapper.gform-theme--foundation .gform_fields .gfield textarea::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #504E4E;
  opacity: 1;
}
.gform_wrapper.gform-theme--foundation .gform_fields .gfield input[type=text]::-moz-placeholder,
.gform_wrapper.gform-theme--foundation .gform_fields .gfield input[type=email]::-moz-placeholder,
.gform_wrapper.gform-theme--foundation .gform_fields .gfield input[type=tel]::-moz-placeholder,
.gform_wrapper.gform-theme--foundation .gform_fields .gfield textarea::-moz-placeholder { /* Firefox 19+ */
  color: #504E4E;
  opacity: 1;
}
.gform_wrapper.gform-theme--foundation .gform_fields .gfield input[type=text]:-ms-input-placeholder,
.gform_wrapper.gform-theme--foundation .gform_fields .gfield input[type=email]:-ms-input-placeholder,
.gform_wrapper.gform-theme--foundation .gform_fields .gfield input[type=tel]:-ms-input-placeholder,
.gform_wrapper.gform-theme--foundation .gform_fields .gfield textarea:-ms-input-placeholder { /* IE 10+ */
  color: #504E4E;
  opacity: 1;
}
.gform_wrapper.gform-theme--foundation .gform_fields .gfield input[type=text]:-moz-placeholder,
.gform_wrapper.gform-theme--foundation .gform_fields .gfield input[type=email]:-moz-placeholder,
.gform_wrapper.gform-theme--foundation .gform_fields .gfield input[type=tel]:-moz-placeholder,
.gform_wrapper.gform-theme--foundation .gform_fields .gfield textarea:-moz-placeholder { /* Firefox 18- */
  color: #504E4E;
  opacity: 1;
}
.gform_wrapper.gform-theme--foundation .gform_fields .gfield input[type=text]:active, .gform_wrapper.gform-theme--foundation .gform_fields .gfield input[type=text]:focus,
.gform_wrapper.gform-theme--foundation .gform_fields .gfield input[type=email]:active,
.gform_wrapper.gform-theme--foundation .gform_fields .gfield input[type=email]:focus,
.gform_wrapper.gform-theme--foundation .gform_fields .gfield input[type=tel]:active,
.gform_wrapper.gform-theme--foundation .gform_fields .gfield input[type=tel]:focus,
.gform_wrapper.gform-theme--foundation .gform_fields .gfield textarea:active,
.gform_wrapper.gform-theme--foundation .gform_fields .gfield textarea:focus {
  border-bottom-color: #F37021;
}
.gform_wrapper.gform-theme--foundation .gform_fields .gfield select {
  background-color: rgba(234, 234, 234, 0.5);
  border: 0;
  box-shadow: none;
  border-radius: 15px;
  padding: 15px 20px;
  color: #504E4E;
  font: 300 16px/1.45em "Inter", sans-serif;
  height: 57px;
}
.gform_wrapper.gform-theme--foundation .gform_fields .gfield input[type=radio] {
  accent-color: #F37021 !important;
}
.gform_wrapper.gform-theme--foundation .gform_fields .gfield input[type=radio]:before {
  background-color: #F37021 !important;
}
.gform_wrapper.gform-theme--foundation .gform_fields .gfield input[type=checkbox] {
  accent-color: #F37021;
}
.gform_wrapper.gform-theme--foundation .gform_fields .gfield input[type=checkbox]:before {
  color: #F37021;
}
.gform_wrapper.gform-theme--foundation .gform_fields .gfield .gform_drop_area:before {
  color: #F37021 !important;
}
.gform_wrapper.gform-theme--foundation .gform_fields .gfield .gform_drop_area .button, .gform_wrapper.gform-theme--foundation .gform_fields .gfield .gform_drop_area .is-button > a {
  background: #F37021 !important;
}
.gform_wrapper.gform-theme--foundation .gform_fields .gfield textarea {
  height: 160px;
  line-height: 1.16em;
  resize: none;
  min-block-size: 0;
}
.gform_wrapper.gform-theme--foundation .gform_fields .gfield .gfield_label {
  font: 600 14px/12px "Montserrat", sans-serif;
  letter-spacing: 0.04em;
  color: #504E4E;
}
.gform_wrapper.gform-theme--foundation .gform_fields .gfield--type-html {
  background: #000000;
  color: #FFFFFF;
  padding: 25px;
  border-radius: 0 0 25px 0;
}
.gform_wrapper.gform-theme--foundation .gform_fields .gfield--type-html a {
  color: #F37021;
}
.gform_wrapper.gform-theme--foundation .gform_fields .gfield--type-html a:hover {
  text-decoration: underline;
}
.gform_wrapper.gform-theme--foundation .gform_page_footer,
.gform_wrapper.gform-theme--foundation .gform_footer {
  display: flex;
  align-items: center;
  margin-block-start: 35px;
}
.gform_wrapper.gform-theme--foundation .gform_page_footer input.button,
.gform_wrapper.gform-theme--foundation .gform_page_footer button.button,
.gform_wrapper.gform-theme--foundation .gform_footer input.button,
.gform_wrapper.gform-theme--foundation .gform_footer button.button {
  display: inline-flex !important;
  font: 800 16px/1.2em "Montserrat", sans-serif !important;
  text-decoration: none !important;
  padding: 17px 30px !important;
  background: #0054A6 !important;
  border-radius: 60px !important;
  color: #FFFFFF !important;
}
.gform_wrapper.gform-theme--foundation .gform_page_footer input.button:after,
.gform_wrapper.gform-theme--foundation .gform_page_footer button.button:after,
.gform_wrapper.gform-theme--foundation .gform_footer input.button:after,
.gform_wrapper.gform-theme--foundation .gform_footer button.button:after {
  content: "" !important;
  position: relative !important;
  top: 2px !important;
  width: 10px !important;
  height: 20px !important;
  margin-left: 15px !important;
  background-image: url("../images/icon-right-arrow.svg") !important;
  background-position: center !important;
  background-size: contain !important;
  background-repeat: no-repeat !important;
}
.gform_wrapper.gform-theme--foundation .gform_page_footer input.button:hover,
.gform_wrapper.gform-theme--foundation .gform_page_footer button.button:hover,
.gform_wrapper.gform-theme--foundation .gform_footer input.button:hover,
.gform_wrapper.gform-theme--foundation .gform_footer button.button:hover {
  background: #F37021 !important;
}

.gform_confirmation_message {
  color: #504E4E !important;
  font: bold 20px/1.2em "Montserrat", sans-serif !important;
  border-left: 3px solid #F37021 !important;
  padding: 25px 25px 25px 25px !important;
}

@media (max-width: 1600px) {
  .header__logo {
    width: 260px;
  }
  .header__nav {
    width: calc(100% - 260px);
    padding-left: 30px;
  }
  .header__nav > ul > li {
    margin-right: 30px;
  }
  .video-grid {
    grid-column-gap: 50px;
    grid-row-gap: 70px;
  }
}
@media (max-width: 1365px) {
  .header {
    height: 60px !important;
  }
  .header__nav {
    display: none;
  }
  .header__hamburger {
    display: flex;
  }
  .footer__top-form input[type=email] {
    margin-right: 25px;
  }
  #main {
    margin-top: 120px !important;
  }
}
/*
 * XL
 */
@media (max-width: 1200px) {
  .video-grid {
    grid-column-gap: 30px;
    grid-row-gap: 75px;
  }
  .filter-list > li {
    margin-right: 25px;
  }
  .filter-list > li button {
    font-size: 12px;
  }
  .splide__pagination {
    bottom: -20px;
  }
  .splide__pagination__page {
    width: 10px;
    height: 10px;
    margin-right: 5px;
  }
  .heading__1, .the-content h1, .gform_wrapper.gform-theme--foundation .gform_heading .gform_title, .gform_wrapper.gform-theme--foundation .gform_fields .gfield--type-html h1 {
    font-size: 28px;
  }
  .heading__1:after, .the-content h1:after, .gform_wrapper.gform-theme--foundation .gform_heading .gform_title:after, .gform_wrapper.gform-theme--foundation .gform_fields .gfield--type-html h1:after {
    margin: 30px 0;
  }
  .heading__5, .the-content h5, .gform_wrapper.gform-theme--foundation .gform_fields .gfield--type-html h5 {
    font-size: 32px;
  }
  .heading__4, .the-content h4, .gform_wrapper.gform-theme--foundation .gform_fields .gfield--type-html h4 {
    font-size: 22px;
  }
  .pills__grid-card .meta .heading, .pills__grid-card .meta .the-content h1, .the-content .pills__grid-card .meta h1, .pills__grid-card .meta .the-content h2, .the-content .pills__grid-card .meta h2, .pills__grid-card .meta .the-content h3, .the-content .pills__grid-card .meta h3, .pills__grid-card .meta .the-content h4, .the-content .pills__grid-card .meta h4, .pills__grid-card .meta .the-content h5, .the-content .pills__grid-card .meta h5, .pills__grid-card .meta .the-content h6, .the-content .pills__grid-card .meta h6, .pills__grid-card .meta .gform_wrapper.gform-theme--foundation .gform_heading .gform_title, .gform_wrapper.gform-theme--foundation .gform_heading .pills__grid-card .meta .gform_title, .pills__grid-card .meta .gform_wrapper.gform-theme--foundation .gform_fields .gfield--type-html h1, .gform_wrapper.gform-theme--foundation .gform_fields .gfield--type-html .pills__grid-card .meta h1, .pills__grid-card .meta .gform_wrapper.gform-theme--foundation .gform_fields .gfield--type-html h2, .gform_wrapper.gform-theme--foundation .gform_fields .gfield--type-html .pills__grid-card .meta h2, .pills__grid-card .meta .gform_wrapper.gform-theme--foundation .gform_fields .gfield--type-html h3, .gform_wrapper.gform-theme--foundation .gform_fields .gfield--type-html .pills__grid-card .meta h3, .pills__grid-card .meta .gform_wrapper.gform-theme--foundation .gform_fields .gfield--type-html h4, .gform_wrapper.gform-theme--foundation .gform_fields .gfield--type-html .pills__grid-card .meta h4, .pills__grid-card .meta .gform_wrapper.gform-theme--foundation .gform_fields .gfield--type-html h5, .gform_wrapper.gform-theme--foundation .gform_fields .gfield--type-html .pills__grid-card .meta h5, .pills__grid-card .meta .gform_wrapper.gform-theme--foundation .gform_fields .gfield--type-html h6, .gform_wrapper.gform-theme--foundation .gform_fields .gfield--type-html .pills__grid-card .meta h6 {
    font-size: 18px;
  }
  .pills__grid-card .meta .the-content, .pills__grid-card .meta .gform_wrapper.gform-theme--foundation .gform_fields .gfield--type-html, .gform_wrapper.gform-theme--foundation .gform_fields .pills__grid-card .meta .gfield--type-html {
    font-size: 16px;
  }
  .about__bottom {
    padding-top: 40px;
  }
  .bento-grid {
    grid-template-columns: repeat(1, 1fr);
    grid-auto-rows: auto;
  }
  .popup__heading {
    display: block;
  }
  .popup__heading .button, .popup__heading .is-button > a {
    margin-bottom: 40px;
  }
  .popup__workshop-archive {
    grid-template-columns: repeat(2, 1fr);
  }
}
/*
 * LG
 */
@media (max-width: 992px) {
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .header {
    height: 80px;
  }
  #main {
    margin-top: 80px;
  }
  .team-listing {
    margin-bottom: 50px;
  }
  .team-listing__block {
    margin-bottom: 30px;
  }
  .team-listing__block-name {
    font-size: 18px;
  }
  .team-listing__block-title {
    font-size: 16px;
  }
  .footer__top > .wrapper {
    display: block;
  }
  .footer__top > .wrapper .button, .footer__top > .wrapper .is-button > a {
    margin-top: 40px;
  }
  .footer__bottom .icon-list {
    margin-top: 50px;
    justify-content: flex-start;
  }
  .footer__bottom-copyright {
    text-align: left;
  }
  .hero-slider__slide {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  .hero-slider__slide-meta {
    width: 100%;
    order: 2;
    padding-top: 0;
  }
  .hero-slider__slide-image {
    width: 100%;
    order: 1;
  }
  .hero-slider__slide-image img {
    aspect-ratio: 16/9;
    object-fit: cover;
    object-position: center;
  }
  .hero-slider__slide-logos {
    gap: 10px;
  }
  .pills__grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 40px;
  }
  .pills__grid-card {
    margin-top: 0 !important;
  }
  .about__top {
    display: block;
  }
  .about__top-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    position: static;
    gap: 20px;
  }
  .about__top-images img {
    aspect-ratio: 1/1;
    margin: 0;
  }
  .about__bottom {
    flex-direction: column;
  }
  .about__bottom-content {
    order: 2;
  }
  .about__bottom-image {
    order: 1;
    width: 100%;
  }
  .about__bottom-image img {
    width: 100%;
    position: static;
  }
  .youth,
  .collab,
  .music {
    flex-direction: column;
  }
  .youth-content,
  .collab-content,
  .music-content {
    order: 2;
  }
  .youth-images, .youth-image,
  .collab-images,
  .collab-image,
  .music-images,
  .music-image {
    order: 1;
    width: 100%;
  }
  .youth-images img, .youth-image img,
  .collab-images img,
  .collab-image img,
  .music-images img,
  .music-image img {
    width: 100%;
    position: static;
  }
  .bento-grid__card.cols-2 .meta-inner {
    grid-template-columns: repeat(1, 1fr);
  }
  .help__track {
    display: block;
  }
  .help__track-meta {
    width: 100%;
  }
  .help__track-slider {
    margin-top: 40px;
  }
  .help__track-slider-inner {
    width: 100%;
  }
  .help-splider__slide {
    width: 100%;
  }
  .textual-cta {
    display: block;
  }
  .textual-cta .button, .textual-cta .is-button > a {
    margin: 20px auto 0 auto;
  }
}
/*
 * MD
 */
@media (max-width: 768px) {
  html, body {
    font-size: 18px;
  }
  .slice__intro .the-content, .slice__intro .gform_wrapper.gform-theme--foundation .gform_fields .gfield--type-html, .gform_wrapper.gform-theme--foundation .gform_fields .slice__intro .gfield--type-html {
    font-size: 18px;
  }
  .video-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .hero-slider__slide-image img {
    border-radius: 30px;
  }
  .pills__grid .meta img {
    width: 40px;
  }
  .pills__grid .meta .heading, .pills__grid .meta .the-content h1, .the-content .pills__grid .meta h1, .pills__grid .meta .the-content h2, .the-content .pills__grid .meta h2, .pills__grid .meta .the-content h3, .the-content .pills__grid .meta h3, .pills__grid .meta .the-content h4, .the-content .pills__grid .meta h4, .pills__grid .meta .the-content h5, .the-content .pills__grid .meta h5, .pills__grid .meta .the-content h6, .the-content .pills__grid .meta h6, .pills__grid .meta .gform_wrapper.gform-theme--foundation .gform_heading .gform_title, .gform_wrapper.gform-theme--foundation .gform_heading .pills__grid .meta .gform_title, .pills__grid .meta .gform_wrapper.gform-theme--foundation .gform_fields .gfield--type-html h1, .gform_wrapper.gform-theme--foundation .gform_fields .gfield--type-html .pills__grid .meta h1, .pills__grid .meta .gform_wrapper.gform-theme--foundation .gform_fields .gfield--type-html h2, .gform_wrapper.gform-theme--foundation .gform_fields .gfield--type-html .pills__grid .meta h2, .pills__grid .meta .gform_wrapper.gform-theme--foundation .gform_fields .gfield--type-html h3, .gform_wrapper.gform-theme--foundation .gform_fields .gfield--type-html .pills__grid .meta h3, .pills__grid .meta .gform_wrapper.gform-theme--foundation .gform_fields .gfield--type-html h4, .gform_wrapper.gform-theme--foundation .gform_fields .gfield--type-html .pills__grid .meta h4, .pills__grid .meta .gform_wrapper.gform-theme--foundation .gform_fields .gfield--type-html h5, .gform_wrapper.gform-theme--foundation .gform_fields .gfield--type-html .pills__grid .meta h5, .pills__grid .meta .gform_wrapper.gform-theme--foundation .gform_fields .gfield--type-html h6, .gform_wrapper.gform-theme--foundation .gform_fields .gfield--type-html .pills__grid .meta h6 {
    font-size: 14px;
    margin-bottom: 15px;
  }
  .pills__grid .meta .the-content, .pills__grid .meta .gform_wrapper.gform-theme--foundation .gform_fields .gfield--type-html, .gform_wrapper.gform-theme--foundation .gform_fields .pills__grid .meta .gfield--type-html {
    font-size: 12px;
  }
  .heading__1, .the-content h1, .gform_wrapper.gform-theme--foundation .gform_heading .gform_title, .gform_wrapper.gform-theme--foundation .gform_fields .gfield--type-html h1 {
    font-size: 26px;
  }
  .heading__5, .the-content h5, .gform_wrapper.gform-theme--foundation .gform_fields .gfield--type-html h5 {
    font-size: 28px;
  }
  .heading__6, .the-content h6, .gform_wrapper.gform-theme--foundation .gform_fields .gfield--type-html h6 {
    font-size: 20px;
  }
  .about__top-content {
    padding: 40px 0;
  }
  .about__bottom {
    gap: 40px;
    padding-top: 0;
  }
  .about img {
    border-radius: 30px;
  }
  .music {
    gap: 40px;
  }
  .music img {
    border-radius: 30px;
  }
  .bento-grid {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .bento-grid__card {
    border-radius: 30px;
    padding: 25px;
  }
  .bento-grid__card-meta > .heading, .the-content .bento-grid__card-meta > h1, .the-content .bento-grid__card-meta > h2, .the-content .bento-grid__card-meta > h3, .the-content .bento-grid__card-meta > h4, .the-content .bento-grid__card-meta > h5, .the-content .bento-grid__card-meta > h6, .gform_wrapper.gform-theme--foundation .gform_heading .bento-grid__card-meta > .gform_title, .gform_wrapper.gform-theme--foundation .gform_fields .gfield--type-html .bento-grid__card-meta > h1, .gform_wrapper.gform-theme--foundation .gform_fields .gfield--type-html .bento-grid__card-meta > h2, .gform_wrapper.gform-theme--foundation .gform_fields .gfield--type-html .bento-grid__card-meta > h3, .gform_wrapper.gform-theme--foundation .gform_fields .gfield--type-html .bento-grid__card-meta > h4, .gform_wrapper.gform-theme--foundation .gform_fields .gfield--type-html .bento-grid__card-meta > h5, .gform_wrapper.gform-theme--foundation .gform_fields .gfield--type-html .bento-grid__card-meta > h6 {
    font-size: 22px;
    margin-bottom: 25px;
  }
  .bento-grid__card-meta .button, .bento-grid__card-meta .is-button > a {
    font-size: 14px;
    padding: 12px 15px;
  }
  .bento-grid__card-meta .button:after, .bento-grid__card-meta .is-button > a:after {
    top: -1px;
  }
  .popup__ci-image {
    margin-top: 40px;
  }
  .popup__workshop-archive {
    grid-template-columns: repeat(1, 1fr);
  }
  .youth-content__books-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .youth-content__books-grid > a > img {
    border-radius: 15px;
  }
}
/*
 * SM
 */
@media (max-width: 576px) {
  .fancybox__content {
    border-radius: 30px;
    padding: 60px 20px 20px 20px;
  }
  .fancybox__content > .f-button.is-close-btn {
    background: transparent;
    top: 10px;
    right: 10px;
  }
}
/*
 * XS
 */

/*# sourceMappingURL=main.css.map */
