@charset "UTF-8";
:root {
  --animate-duration: 1s;
  --animate-delay: 1s;
  --animate-repeat: 1;
}

.animate__animated, .banner.contact .wrapper .text-container > svg {
  -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, .banner.contact .wrapper .text-container > svg {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.animate__animated.animate__repeat-1, .banner.contact .wrapper .text-container > svg.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, .banner.contact .wrapper .text-container > svg.animate__repeat-2 {
  -webkit-animation-iteration-count: calc(1 * 2);
  animation-iteration-count: calc(1 * 2);
  -webkit-animation-iteration-count: calc(var(--animate-repeat) * 2);
  animation-iteration-count: calc(var(--animate-repeat) * 2);
}

.animate__animated.animate__repeat-3, .banner.contact .wrapper .text-container > svg.animate__repeat-3 {
  -webkit-animation-iteration-count: calc(1 * 3);
  animation-iteration-count: calc(1 * 3);
  -webkit-animation-iteration-count: calc(var(--animate-repeat) * 3);
  animation-iteration-count: calc(var(--animate-repeat) * 3);
}

.animate__animated.animate__delay-1s, .banner.contact .wrapper .text-container > svg.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, .banner.contact .wrapper .text-container > svg.animate__delay-2s {
  -webkit-animation-delay: calc(1s * 2);
  animation-delay: calc(1s * 2);
  -webkit-animation-delay: calc(var(--animate-delay) * 2);
  animation-delay: calc(var(--animate-delay) * 2);
}

.animate__animated.animate__delay-3s, .banner.contact .wrapper .text-container > svg.animate__delay-3s {
  -webkit-animation-delay: calc(1s * 3);
  animation-delay: calc(1s * 3);
  -webkit-animation-delay: calc(var(--animate-delay) * 3);
  animation-delay: calc(var(--animate-delay) * 3);
}

.animate__animated.animate__delay-4s, .banner.contact .wrapper .text-container > svg.animate__delay-4s {
  -webkit-animation-delay: calc(1s * 4);
  animation-delay: calc(1s * 4);
  -webkit-animation-delay: calc(var(--animate-delay) * 4);
  animation-delay: calc(var(--animate-delay) * 4);
}

.animate__animated.animate__delay-5s, .banner.contact .wrapper .text-container > svg.animate__delay-5s {
  -webkit-animation-delay: calc(1s * 5);
  animation-delay: calc(1s * 5);
  -webkit-animation-delay: calc(var(--animate-delay) * 5);
  animation-delay: calc(var(--animate-delay) * 5);
}

.animate__animated.animate__faster, .banner.contact .wrapper .text-container > svg.animate__faster {
  -webkit-animation-duration: calc(1s / 2);
  animation-duration: calc(1s / 2);
  -webkit-animation-duration: calc(var(--animate-duration) / 2);
  animation-duration: calc(var(--animate-duration) / 2);
}

.animate__animated.animate__fast, .banner.contact .wrapper .text-container > svg.animate__fast {
  -webkit-animation-duration: calc(1s * 0.8);
  animation-duration: calc(1s * 0.8);
  -webkit-animation-duration: calc(var(--animate-duration) * 0.8);
  animation-duration: calc(var(--animate-duration) * 0.8);
}

.animate__animated.animate__slow, .banner.contact .wrapper .text-container > svg.animate__slow {
  -webkit-animation-duration: calc(1s * 2);
  animation-duration: calc(1s * 2);
  -webkit-animation-duration: calc(var(--animate-duration) * 2);
  animation-duration: calc(var(--animate-duration) * 2);
}

.animate__animated.animate__slower, .banner.contact .wrapper .text-container > svg.animate__slower {
  -webkit-animation-duration: calc(1s * 3);
  animation-duration: calc(1s * 3);
  -webkit-animation-duration: calc(var(--animate-duration) * 3);
  animation-duration: calc(var(--animate-duration) * 3);
}

@media print, (prefers-reduced-motion: reduce) {
  .animate__animated, .banner.contact .wrapper .text-container > svg {
    -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], .banner.contact .wrapper .text-container > svg[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, .banner.contact .wrapper .text-container > svg {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

@-webkit-keyframes flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
@keyframes flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.animate__flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.animate__pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

@-webkit-keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.animate__rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}

@-webkit-keyframes shakeX {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
@keyframes shakeX {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
.animate__shakeX {
  -webkit-animation-name: shakeX;
  animation-name: shakeX;
}

@-webkit-keyframes shakeY {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
}
@keyframes shakeY {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
}
.animate__shakeY {
  -webkit-animation-name: shakeY;
  animation-name: shakeY;
}

@-webkit-keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.animate__headShake {
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: headShake;
  animation-name: headShake;
}

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.animate__swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.animate__tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes wobble {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes jello {
  from, 11.1%, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
@keyframes jello {
  from, 11.1%, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.animate__jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  transform-origin: center;
}

@-webkit-keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.animate__heartBeat {
  -webkit-animation-name: heartBeat;
  animation-name: heartBeat;
  -webkit-animation-duration: calc(1s * 1.3);
  animation-duration: calc(1s * 1.3);
  -webkit-animation-duration: calc(var(--animate-duration) * 1.3);
  animation-duration: calc(var(--animate-duration) * 1.3);
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

/* Back entrances */
@-webkit-keyframes backInDown {
  0% {
    -webkit-transform: translateY(-1200px) scale(0.7);
    transform: translateY(-1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInDown {
  0% {
    -webkit-transform: translateY(-1200px) scale(0.7);
    transform: translateY(-1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInDown {
  -webkit-animation-name: backInDown;
  animation-name: backInDown;
}

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

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

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

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

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

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

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

/* Bouncing entrances  */
@-webkit-keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.animate__bounceIn {
  -webkit-animation-duration: calc(1s * 0.75);
  animation-duration: calc(1s * 0.75);
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0) scaleY(3);
    transform: translate3d(0, -3000px, 0) scaleY(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0) scaleY(0.9);
    transform: translate3d(0, 25px, 0) scaleY(0.9);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.95);
    transform: translate3d(0, -10px, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0) scaleY(0.985);
    transform: translate3d(0, 5px, 0) scaleY(0.985);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0) scaleY(3);
    transform: translate3d(0, -3000px, 0) scaleY(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0) scaleY(0.9);
    transform: translate3d(0, 25px, 0) scaleY(0.9);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.95);
    transform: translate3d(0, -10px, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0) scaleY(0.985);
    transform: translate3d(0, 5px, 0) scaleY(0.985);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0) scaleX(3);
    transform: translate3d(-3000px, 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0) scaleX(1);
    transform: translate3d(25px, 0, 0) scaleX(1);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0) scaleX(0.98);
    transform: translate3d(-10px, 0, 0) scaleX(0.98);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0) scaleX(0.995);
    transform: translate3d(5px, 0, 0) scaleX(0.995);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0) scaleX(3);
    transform: translate3d(-3000px, 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0) scaleX(1);
    transform: translate3d(25px, 0, 0) scaleX(1);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0) scaleX(0.98);
    transform: translate3d(-10px, 0, 0) scaleX(0.98);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0) scaleX(0.995);
    transform: translate3d(5px, 0, 0) scaleX(0.995);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0) scaleX(3);
    transform: translate3d(3000px, 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0) scaleX(1);
    transform: translate3d(-25px, 0, 0) scaleX(1);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0) scaleX(0.98);
    transform: translate3d(10px, 0, 0) scaleX(0.98);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0) scaleX(0.995);
    transform: translate3d(-5px, 0, 0) scaleX(0.995);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0) scaleX(3);
    transform: translate3d(3000px, 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0) scaleX(1);
    transform: translate3d(-25px, 0, 0) scaleX(1);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0) scaleX(0.98);
    transform: translate3d(10px, 0, 0) scaleX(0.98);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0) scaleX(0.995);
    transform: translate3d(-5px, 0, 0) scaleX(0.995);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0) scaleY(5);
    transform: translate3d(0, 3000px, 0) scaleY(5);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.95);
    transform: translate3d(0, 10px, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0) scaleY(0.985);
    transform: translate3d(0, -5px, 0) scaleY(0.985);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0) scaleY(5);
    transform: translate3d(0, 3000px, 0) scaleY(5);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.95);
    transform: translate3d(0, 10px, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0) scaleY(0.985);
    transform: translate3d(0, -5px, 0) scaleY(0.985);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

/* Bouncing exits  */
@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.animate__bounceOut {
  -webkit-animation-duration: calc(1s * 0.75);
  animation-duration: calc(1s * 0.75);
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Specials */
@-webkit-keyframes hinge {
  0% {
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
@keyframes hinge {
  0% {
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.animate__hinge {
  -webkit-animation-duration: calc(1s * 2);
  animation-duration: calc(1s * 2);
  -webkit-animation-duration: calc(var(--animate-duration) * 2);
  animation-duration: calc(var(--animate-duration) * 2);
  -webkit-animation-name: hinge;
  animation-name: hinge;
  -webkit-transform-origin: top left;
  transform-origin: top left;
}

@-webkit-keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }
  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }
  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.animate__jackInTheBox {
  -webkit-animation-name: jackInTheBox;
  animation-name: jackInTheBox;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
@keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
.animate__rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}

/* Zooming entrances */
@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.animate__zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

@-webkit-keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}

@-webkit-keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}

@-webkit-keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}

@-webkit-keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}

/* Zooming exits */
@-webkit-keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
@keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.animate__zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
  }
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
  }
}
.animate__zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
  -webkit-transform-origin: left center;
  transform-origin: left center;
}

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
  }
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
  }
}
.animate__zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
  -webkit-transform-origin: right center;
  transform-origin: right center;
}

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

/* Sliding entrances */
@-webkit-keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

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

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

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

/* Sliding exits */
@-webkit-keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.animate__slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}

@-webkit-keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.animate__slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.animate__slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.animate__slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

body {
  padding: 0;
  margin: 0;
}

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

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

a {
  text-decoration: none;
  color: inherit;
}
a:focus, a:active {
  outline: none;
}

input:focus, input:active, fieldset:focus, fieldset:active, textarea:focus, textarea:active, button:focus, button:active {
  outline: none;
}

.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;
}

@-ms-viewport {
  width: device-width;
}
html {
  box-sizing: border-box;
  -ms-overflow-style: scrollbar;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
.container-fluid {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.row, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address, form .gform_body .gform_fields {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}

.no-gutters > .col,
.no-gutters > [class*=col-] {
  padding-right: 0;
  padding-left: 0;
}

.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_left, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_right, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_full, form .gform_body .gform_fields .gfield.gfield--width-full, form .gform_body .gform_fields .gfield.gfield--width-half, form .gform_body .gform_fields .gfield.gfield--width-third, .col,
.col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm,
.col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md,
.col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg,
.col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl,
.col-xl-auto {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

.col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}

.col-auto {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: none;
}

.col-1 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 8.333333%;
  flex: 0 0 8.333333%;
  max-width: 8.333333%;
}

.col-2 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 16.666667%;
  flex: 0 0 16.666667%;
  max-width: 16.666667%;
}

.col-3 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}

.col-5 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 41.666667%;
  flex: 0 0 41.666667%;
  max-width: 41.666667%;
}

.col-6 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 58.333333%;
  flex: 0 0 58.333333%;
  max-width: 58.333333%;
}

.col-8 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 66.666667%;
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
}

.col-9 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 75%;
  flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 83.333333%;
  flex: 0 0 83.333333%;
  max-width: 83.333333%;
}

.col-11 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 91.666667%;
  flex: 0 0 91.666667%;
  max-width: 91.666667%;
}

.col-12, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_left, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_right, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_full, form .gform_body .gform_fields .gfield.gfield--width-full, form .gform_body .gform_fields .gfield.gfield--width-half, form .gform_body .gform_fields .gfield.gfield--width-third {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}

.order-first {
  -webkit-box-ordinal-group: 0;
  -ms-flex-order: -1;
  order: -1;
}

.order-last {
  -webkit-box-ordinal-group: 14;
  -ms-flex-order: 13;
  order: 13;
}

.order-0 {
  -webkit-box-ordinal-group: 1;
  -ms-flex-order: 0;
  order: 0;
}

.order-1 {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}

.order-2 {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}

.order-3 {
  -webkit-box-ordinal-group: 4;
  -ms-flex-order: 3;
  order: 3;
}

.order-4 {
  -webkit-box-ordinal-group: 5;
  -ms-flex-order: 4;
  order: 4;
}

.order-5 {
  -webkit-box-ordinal-group: 6;
  -ms-flex-order: 5;
  order: 5;
}

.order-6 {
  -webkit-box-ordinal-group: 7;
  -ms-flex-order: 6;
  order: 6;
}

.order-7 {
  -webkit-box-ordinal-group: 8;
  -ms-flex-order: 7;
  order: 7;
}

.order-8 {
  -webkit-box-ordinal-group: 9;
  -ms-flex-order: 8;
  order: 8;
}

.order-9 {
  -webkit-box-ordinal-group: 10;
  -ms-flex-order: 9;
  order: 9;
}

.order-10 {
  -webkit-box-ordinal-group: 11;
  -ms-flex-order: 10;
  order: 10;
}

.order-11 {
  -webkit-box-ordinal-group: 12;
  -ms-flex-order: 11;
  order: 11;
}

.order-12 {
  -webkit-box-ordinal-group: 13;
  -ms-flex-order: 12;
  order: 12;
}

.offset-1 {
  margin-left: 8.333333%;
}

.offset-2 {
  margin-left: 16.666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.333333%;
}

.offset-5 {
  margin-left: 41.666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.333333%;
}

.offset-8 {
  margin-left: 66.666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.333333%;
}

.offset-11 {
  margin-left: 91.666667%;
}

@media (min-width: 576px) {
  .col-sm {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }

  .col-sm-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }

  .col-sm-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }

  .col-sm-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }

  .col-sm-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-sm-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .col-sm-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }

  .col-sm-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-sm-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }

  .col-sm-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }

  .col-sm-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-sm-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }

  .col-sm-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }

  .col-sm-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-sm-first {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }

  .order-sm-last {
    -webkit-box-ordinal-group: 14;
    -ms-flex-order: 13;
    order: 13;
  }

  .order-sm-0 {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }

  .order-sm-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .order-sm-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }

  .order-sm-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }

  .order-sm-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }

  .order-sm-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }

  .order-sm-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
  }

  .order-sm-7 {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7;
  }

  .order-sm-8 {
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8;
  }

  .order-sm-9 {
    -webkit-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9;
  }

  .order-sm-10 {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10;
  }

  .order-sm-11 {
    -webkit-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11;
  }

  .order-sm-12 {
    -webkit-box-ordinal-group: 13;
    -ms-flex-order: 12;
    order: 12;
  }

  .offset-sm-0 {
    margin-left: 0;
  }

  .offset-sm-1 {
    margin-left: 8.333333%;
  }

  .offset-sm-2 {
    margin-left: 16.666667%;
  }

  .offset-sm-3 {
    margin-left: 25%;
  }

  .offset-sm-4 {
    margin-left: 33.333333%;
  }

  .offset-sm-5 {
    margin-left: 41.666667%;
  }

  .offset-sm-6 {
    margin-left: 50%;
  }

  .offset-sm-7 {
    margin-left: 58.333333%;
  }

  .offset-sm-8 {
    margin-left: 66.666667%;
  }

  .offset-sm-9 {
    margin-left: 75%;
  }

  .offset-sm-10 {
    margin-left: 83.333333%;
  }

  .offset-sm-11 {
    margin-left: 91.666667%;
  }
}
@media (min-width: 768px) {
  .col-md {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }

  .col-md-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }

  .col-md-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }

  .col-md-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }

  .col-md-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-md-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .col-md-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }

  .col-md-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-md-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }

  .col-md-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }

  .col-md-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-md-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }

  .col-md-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }

  .col-md-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-md-first {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }

  .order-md-last {
    -webkit-box-ordinal-group: 14;
    -ms-flex-order: 13;
    order: 13;
  }

  .order-md-0 {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }

  .order-md-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .order-md-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }

  .order-md-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }

  .order-md-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }

  .order-md-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }

  .order-md-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
  }

  .order-md-7 {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7;
  }

  .order-md-8 {
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8;
  }

  .order-md-9 {
    -webkit-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9;
  }

  .order-md-10 {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10;
  }

  .order-md-11 {
    -webkit-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11;
  }

  .order-md-12 {
    -webkit-box-ordinal-group: 13;
    -ms-flex-order: 12;
    order: 12;
  }

  .offset-md-0 {
    margin-left: 0;
  }

  .offset-md-1 {
    margin-left: 8.333333%;
  }

  .offset-md-2 {
    margin-left: 16.666667%;
  }

  .offset-md-3 {
    margin-left: 25%;
  }

  .offset-md-4 {
    margin-left: 33.333333%;
  }

  .offset-md-5 {
    margin-left: 41.666667%;
  }

  .offset-md-6 {
    margin-left: 50%;
  }

  .offset-md-7 {
    margin-left: 58.333333%;
  }

  .offset-md-8 {
    margin-left: 66.666667%;
  }

  .offset-md-9 {
    margin-left: 75%;
  }

  .offset-md-10 {
    margin-left: 83.333333%;
  }

  .offset-md-11 {
    margin-left: 91.666667%;
  }
}
@media (min-width: 992px) {
  .col-lg {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }

  .col-lg-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }

  .col-lg-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }

  .col-lg-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }

  .col-lg-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-lg-4, form .gform_body .gform_fields .gfield.gfield--width-third {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .col-lg-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }

  .col-lg-6, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_left, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_right, form .gform_body .gform_fields .gfield.gfield--width-half {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-lg-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }

  .col-lg-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }

  .col-lg-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-lg-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }

  .col-lg-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }

  .col-lg-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-lg-first {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }

  .order-lg-last {
    -webkit-box-ordinal-group: 14;
    -ms-flex-order: 13;
    order: 13;
  }

  .order-lg-0 {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }

  .order-lg-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .order-lg-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }

  .order-lg-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }

  .order-lg-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }

  .order-lg-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }

  .order-lg-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
  }

  .order-lg-7 {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7;
  }

  .order-lg-8 {
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8;
  }

  .order-lg-9 {
    -webkit-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9;
  }

  .order-lg-10 {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10;
  }

  .order-lg-11 {
    -webkit-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11;
  }

  .order-lg-12 {
    -webkit-box-ordinal-group: 13;
    -ms-flex-order: 12;
    order: 12;
  }

  .offset-lg-0 {
    margin-left: 0;
  }

  .offset-lg-1 {
    margin-left: 8.333333%;
  }

  .offset-lg-2 {
    margin-left: 16.666667%;
  }

  .offset-lg-3 {
    margin-left: 25%;
  }

  .offset-lg-4 {
    margin-left: 33.333333%;
  }

  .offset-lg-5 {
    margin-left: 41.666667%;
  }

  .offset-lg-6 {
    margin-left: 50%;
  }

  .offset-lg-7 {
    margin-left: 58.333333%;
  }

  .offset-lg-8 {
    margin-left: 66.666667%;
  }

  .offset-lg-9 {
    margin-left: 75%;
  }

  .offset-lg-10 {
    margin-left: 83.333333%;
  }

  .offset-lg-11 {
    margin-left: 91.666667%;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }

  .col-xl-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }

  .col-xl-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }

  .col-xl-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }

  .col-xl-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }

  .col-xl-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }

  .col-xl-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }

  .col-xl-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-xl-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }

  .col-xl-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }

  .col-xl-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }

  .col-xl-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }

  .col-xl-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }

  .col-xl-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .order-xl-first {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }

  .order-xl-last {
    -webkit-box-ordinal-group: 14;
    -ms-flex-order: 13;
    order: 13;
  }

  .order-xl-0 {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }

  .order-xl-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .order-xl-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }

  .order-xl-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }

  .order-xl-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }

  .order-xl-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }

  .order-xl-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
  }

  .order-xl-7 {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7;
  }

  .order-xl-8 {
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8;
  }

  .order-xl-9 {
    -webkit-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9;
  }

  .order-xl-10 {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10;
  }

  .order-xl-11 {
    -webkit-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11;
  }

  .order-xl-12 {
    -webkit-box-ordinal-group: 13;
    -ms-flex-order: 12;
    order: 12;
  }

  .offset-xl-0 {
    margin-left: 0;
  }

  .offset-xl-1 {
    margin-left: 8.333333%;
  }

  .offset-xl-2 {
    margin-left: 16.666667%;
  }

  .offset-xl-3 {
    margin-left: 25%;
  }

  .offset-xl-4 {
    margin-left: 33.333333%;
  }

  .offset-xl-5 {
    margin-left: 41.666667%;
  }

  .offset-xl-6 {
    margin-left: 50%;
  }

  .offset-xl-7 {
    margin-left: 58.333333%;
  }

  .offset-xl-8 {
    margin-left: 66.666667%;
  }

  .offset-xl-9 {
    margin-left: 75%;
  }

  .offset-xl-10 {
    margin-left: 83.333333%;
  }

  .offset-xl-11 {
    margin-left: 91.666667%;
  }
}
.d-none {
  display: none !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

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

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

@media (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }

  .d-sm-inline {
    display: inline !important;
  }

  .d-sm-inline-block {
    display: inline-block !important;
  }

  .d-sm-block {
    display: block !important;
  }

  .d-sm-table {
    display: table !important;
  }

  .d-sm-table-row {
    display: table-row !important;
  }

  .d-sm-table-cell {
    display: table-cell !important;
  }

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

  .d-sm-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }

  .d-md-inline {
    display: inline !important;
  }

  .d-md-inline-block {
    display: inline-block !important;
  }

  .d-md-block {
    display: block !important;
  }

  .d-md-table {
    display: table !important;
  }

  .d-md-table-row {
    display: table-row !important;
  }

  .d-md-table-cell {
    display: table-cell !important;
  }

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

  .d-md-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }

  .d-lg-inline {
    display: inline !important;
  }

  .d-lg-inline-block {
    display: inline-block !important;
  }

  .d-lg-block {
    display: block !important;
  }

  .d-lg-table {
    display: table !important;
  }

  .d-lg-table-row {
    display: table-row !important;
  }

  .d-lg-table-cell {
    display: table-cell !important;
  }

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

  .d-lg-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }

  .d-xl-inline {
    display: inline !important;
  }

  .d-xl-inline-block {
    display: inline-block !important;
  }

  .d-xl-block {
    display: block !important;
  }

  .d-xl-table {
    display: table !important;
  }

  .d-xl-table-row {
    display: table-row !important;
  }

  .d-xl-table-cell {
    display: table-cell !important;
  }

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

  .d-xl-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media print {
  .d-print-none {
    display: none !important;
  }

  .d-print-inline {
    display: inline !important;
  }

  .d-print-inline-block {
    display: inline-block !important;
  }

  .d-print-block {
    display: block !important;
  }

  .d-print-table {
    display: table !important;
  }

  .d-print-table-row {
    display: table-row !important;
  }

  .d-print-table-cell {
    display: table-cell !important;
  }

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

  .d-print-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
.flex-row {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: row !important;
  flex-direction: row !important;
}

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

.flex-row-reverse {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: reverse !important;
  -ms-flex-direction: row-reverse !important;
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: reverse !important;
  -ms-flex-direction: column-reverse !important;
  flex-direction: column-reverse !important;
}

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

.flex-nowrap {
  -ms-flex-wrap: nowrap !important;
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  -ms-flex-wrap: wrap-reverse !important;
  flex-wrap: wrap-reverse !important;
}

.justify-content-start {
  -webkit-box-pack: start !important;
  -ms-flex-pack: start !important;
  justify-content: flex-start !important;
}

.justify-content-end {
  -webkit-box-pack: end !important;
  -ms-flex-pack: end !important;
  justify-content: flex-end !important;
}

.justify-content-center {
  -webkit-box-pack: center !important;
  -ms-flex-pack: center !important;
  justify-content: center !important;
}

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

.justify-content-around {
  -ms-flex-pack: distribute !important;
  justify-content: space-around !important;
}

.align-items-start {
  -webkit-box-align: start !important;
  -ms-flex-align: start !important;
  align-items: flex-start !important;
}

.align-items-end {
  -webkit-box-align: end !important;
  -ms-flex-align: end !important;
  align-items: flex-end !important;
}

.align-items-center {
  -webkit-box-align: center !important;
  -ms-flex-align: center !important;
  align-items: center !important;
}

.align-items-baseline {
  -webkit-box-align: baseline !important;
  -ms-flex-align: baseline !important;
  align-items: baseline !important;
}

.align-items-stretch {
  -webkit-box-align: stretch !important;
  -ms-flex-align: stretch !important;
  align-items: stretch !important;
}

.align-content-start {
  -ms-flex-line-pack: start !important;
  align-content: flex-start !important;
}

.align-content-end {
  -ms-flex-line-pack: end !important;
  align-content: flex-end !important;
}

.align-content-center {
  -ms-flex-line-pack: center !important;
  align-content: center !important;
}

.align-content-between {
  -ms-flex-line-pack: justify !important;
  align-content: space-between !important;
}

.align-content-around {
  -ms-flex-line-pack: distribute !important;
  align-content: space-around !important;
}

.align-content-stretch {
  -ms-flex-line-pack: stretch !important;
  align-content: stretch !important;
}

.align-self-auto {
  -ms-flex-item-align: auto !important;
  align-self: auto !important;
}

.align-self-start {
  -ms-flex-item-align: start !important;
  align-self: flex-start !important;
}

.align-self-end {
  -ms-flex-item-align: end !important;
  align-self: flex-end !important;
}

.align-self-center {
  -ms-flex-item-align: center !important;
  align-self: center !important;
}

.align-self-baseline {
  -ms-flex-item-align: baseline !important;
  align-self: baseline !important;
}

.align-self-stretch {
  -ms-flex-item-align: stretch !important;
  align-self: stretch !important;
}

@media (min-width: 576px) {
  .flex-sm-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }

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

  .flex-sm-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }

  .flex-sm-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }

  .flex-sm-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }

  .flex-sm-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }

  .flex-sm-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }

  .justify-content-sm-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }

  .justify-content-sm-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }

  .justify-content-sm-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }

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

  .justify-content-sm-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }

  .align-items-sm-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }

  .align-items-sm-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }

  .align-items-sm-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }

  .align-items-sm-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }

  .align-items-sm-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }

  .align-content-sm-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }

  .align-content-sm-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }

  .align-content-sm-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }

  .align-content-sm-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }

  .align-content-sm-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }

  .align-content-sm-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }

  .align-self-sm-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }

  .align-self-sm-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }

  .align-self-sm-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }

  .align-self-sm-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }

  .align-self-sm-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }

  .align-self-sm-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}
@media (min-width: 768px) {
  .flex-md-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }

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

  .flex-md-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }

  .flex-md-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }

  .flex-md-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }

  .flex-md-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }

  .flex-md-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }

  .justify-content-md-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }

  .justify-content-md-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }

  .justify-content-md-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }

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

  .justify-content-md-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }

  .align-items-md-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }

  .align-items-md-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }

  .align-items-md-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }

  .align-items-md-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }

  .align-items-md-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }

  .align-content-md-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }

  .align-content-md-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }

  .align-content-md-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }

  .align-content-md-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }

  .align-content-md-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }

  .align-content-md-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }

  .align-self-md-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }

  .align-self-md-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }

  .align-self-md-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }

  .align-self-md-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }

  .align-self-md-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }

  .align-self-md-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}
@media (min-width: 992px) {
  .flex-lg-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }

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

  .flex-lg-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }

  .flex-lg-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }

  .flex-lg-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }

  .flex-lg-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }

  .flex-lg-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }

  .justify-content-lg-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }

  .justify-content-lg-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }

  .justify-content-lg-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }

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

  .justify-content-lg-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }

  .align-items-lg-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }

  .align-items-lg-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }

  .align-items-lg-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }

  .align-items-lg-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }

  .align-items-lg-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }

  .align-content-lg-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }

  .align-content-lg-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }

  .align-content-lg-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }

  .align-content-lg-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }

  .align-content-lg-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }

  .align-content-lg-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }

  .align-self-lg-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }

  .align-self-lg-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }

  .align-self-lg-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }

  .align-self-lg-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }

  .align-self-lg-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }

  .align-self-lg-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}
@media (min-width: 1200px) {
  .flex-xl-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }

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

  .flex-xl-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }

  .flex-xl-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }

  .flex-xl-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }

  .flex-xl-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }

  .flex-xl-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }

  .justify-content-xl-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }

  .justify-content-xl-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }

  .justify-content-xl-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }

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

  .justify-content-xl-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }

  .align-items-xl-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }

  .align-items-xl-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }

  .align-items-xl-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }

  .align-items-xl-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }

  .align-items-xl-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }

  .align-content-xl-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }

  .align-content-xl-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }

  .align-content-xl-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }

  .align-content-xl-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }

  .align-content-xl-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }

  .align-content-xl-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }

  .align-self-xl-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }

  .align-self-xl-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }

  .align-self-xl-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }

  .align-self-xl-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }

  .align-self-xl-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }

  .align-self-xl-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}
/*
 * 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
 */
/*
 * Remove mobile/iOS default buttons
 */
@font-face {
  font-family: "Mont";
  src: url("../fonts/Mont/Mont-Regular.woff") format("woff");
  display: swap;
}
@font-face {
  font-family: "Mont Bold";
  src: url("../fonts/Mont/Mont-Bold.woff") format("woff");
  display: swap;
}
::-moz-selection {
  color: white;
  background: black;
}

::selection {
  color: white;
  background: black;
}

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

.mobile-nav-trigger,
#mobile-nav {
  display: none;
}

html, body {
  scroll-margin-top: 100px;
  scroll-behavior: smooth;
}

body {
  font-family: arboria, sans-serif;
  position: relative;
  overflow-x: hidden;
  color: #0d1464;
}

.btn {
  padding: 15px 30px 15px 30px;
  border: 0px solid transparent;
  box-shadow: none;
  background: #0d1464;
  color: #fff;
  font: 400 16px/100% "Mont", sans-serif;
  border-radius: 0px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  position: relative;
  display: inline-block;
}
.btn span {
  position: relative;
  z-index: 2;
  margin-right: 15px;
}
.btn:before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 12px;
  background: #3f49c9;
  transition: all 0.3s ease-in-out;
}
.btn svg {
  transform: translateX(0);
  transition: all 0.3s ease-in-out;
}
.btn:hover svg {
  transform: translateX(10px);
  transition: all 0.3s ease-in-out;
}
.btn:hover:before {
  width: 100%;
}
.btn.green {
  background: #02ca96;
}
.btn.green:before {
  background: #41D7B0;
}
.btn.yellow {
  background: #f1c400;
}
.btn.yellow:before {
  background: #F6D95A;
}
.btn.red {
  background: #ee2300;
}
.btn.red:before {
  background: #F3654D;
}
.btn.blue-reversed {
  background: #3f49c9;
}
.btn.blue-reversed:before {
  background: #0d1464;
}
.btn.naked {
  color: #0d1464;
  background: transparent;
  font-weight: bold;
  padding-left: 0px;
}
.btn.naked:before {
  display: none;
}
.btn.naked svg {
  transform: translateX(0px) translateY(-1px);
}
.btn.naked svg path {
  fill: #0d1464;
}
.btn.naked:hover {
  text-decoration: underline;
}
.btn.naked:hover svg {
  transform: translateX(10px) translateY(-1px);
}

.the-content *:last-child {
  margin-bottom: 0;
}
.the-content ul {
  list-style-type: disc;
  list-style-position: inside;
  margin-bottom: 1em;
}
.the-content ol {
  list-style-type: decimal;
  list-style-position: inside;
  margin-bottom: 1em;
}
.the-content ul ul, .the-content ol ul {
  list-style-type: circle;
  list-style-position: inside;
  margin-left: 15px;
}
.the-content ol ol, .the-content ul ol {
  list-style-type: lower-latin;
  list-style-position: inside;
  margin-left: 15px;
}
.the-content h2 {
  font-size: 30px;
  margin-bottom: 40px;
}
.the-content h3 {
  font-size: 22px;
  margin-bottom: 30px;
}
.the-content p {
  margin-bottom: 1em;
  font: normal 18px/160% arboria, sans-serif;
  color: #0d1464;
}
.the-content.reverse * {
  color: #fff;
}

.row.gutter-50, form .gform_body .gform_fields .gfield .gutter-50.ginput_container.ginput_container_address, form .gform_body .gutter-50.gform_fields {
  margin-left: -25px;
  margin-right: -25px;
}
.row.gutter-50 > div[class*=col-], form .gform_body .gform_fields .gfield .gutter-50.ginput_container.ginput_container_address > div[class*=col-], form .gform_body .gutter-50.gform_fields > div[class*=col-] {
  padding-left: 25px;
  padding-right: 25px;
}
.row.gutter-80, form .gform_body .gform_fields .gfield .gutter-80.ginput_container.ginput_container_address, form .gform_body .gutter-80.gform_fields {
  margin-left: -40px;
  margin-right: -40px;
}
.row.gutter-80 > div[class*=col-], form .gform_body .gform_fields .gfield .gutter-80.ginput_container.ginput_container_address > div[class*=col-], form .gform_body .gutter-80.gform_fields > div[class*=col-] {
  padding-left: 40px;
  padding-right: 40px;
}
.row.gutter-100, form .gform_body .gform_fields .gfield .gutter-100.ginput_container.ginput_container_address, form .gform_body .gutter-100.gform_fields {
  margin-left: -50px;
  margin-right: -50px;
}
.row.gutter-100 > div[class*=col-], form .gform_body .gform_fields .gfield .gutter-100.ginput_container.ginput_container_address > div[class*=col-], form .gform_body .gutter-100.gform_fields > div[class*=col-] {
  padding-left: 50px;
  padding-right: 50px;
}
.row.gutter-140, form .gform_body .gform_fields .gfield .gutter-140.ginput_container.ginput_container_address, form .gform_body .gutter-140.gform_fields {
  margin-left: -70px;
  margin-right: -70px;
}
.row.gutter-140 > div[class*=col-], form .gform_body .gform_fields .gfield .gutter-140.ginput_container.ginput_container_address > div[class*=col-], form .gform_body .gutter-140.gform_fields > div[class*=col-] {
  padding-left: 70px;
  padding-right: 70px;
}

.slice {
  padding: 140px 0;
}
.slice.no-p-top {
  padding-top: 0px;
}
.slice.no-p-bottom {
  padding-bottom: 0px;
}
.slice h2 {
  font: normal 50px/120% "Mont Bold", sans-serif;
  color: #0d1464;
  margin-bottom: 80px;
}
.slice h2.reverse {
  color: #fff;
}
.slice.fixed {
  min-height: 100vh;
}
.slice.fixed .inner {
  position: fixed;
  min-height: 100vh;
  width: 100%;
  top: 0;
  left: 0;
}
.slice.about-us {
  background: #41D7B0;
}
.slice.about-us .inner {
  display: flex;
  justify-content: center;
  align-items: center;
}
.slice.about-us .inner .bg-word {
  position: absolute;
  font: bold 400px/80% arboria, sans-serif;
  color: #fff;
  opacity: 0.2;
}
.slice.about-us .inner .bg-word.top {
  top: 0;
  left: 0;
  transform: translateX(-50%);
}
.slice.about-us .inner .bg-word.bottom {
  bottom: 0;
  right: 0;
  transform: translateX(50%);
}
.slice.about-us .inner .bg-img {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30%;
  max-width: 450px;
}
.slice.about-us .inner .wrapper .content {
  margin: 0 auto;
  max-width: 1080px;
}
.slice.about-us .inner .wrapper .content .the-content {
  margin-bottom: 60px;
}
.slice.about-us .inner .wrapper .content .the-content p {
  font-size: 30px;
  line-height: 140%;
}
.slice.testimonials {
  position: relative;
  z-index: 2;
  background: #fff;
  overflow: hidden;
}
.slice.testimonials .slice-intro {
  position: relative;
  padding-top: 100px;
}
.slice.testimonials .slice-intro .icon {
  position: absolute;
  right: 58%;
  top: -70px;
}
.slice.testimonials .slice-intro h2 {
  margin-bottom: 0;
}

.slice-intro {
  padding-bottom: 50px;
}

.slice-outro {
  padding-top: 50px;
}

.wrapper {
  position: relative;
  height: 100%;
  width: calc(100% - 90px);
  max-width: 1535px;
  margin: 0 auto;
}
.wrapper.full {
  width: 100%;
  max-width: 100%;
}
.wrapper.large {
  max-width: 1790px;
}
.wrapper.medium {
  max-width: 1370px;
}
.wrapper.small {
  max-width: 820px;
}

#main {
  /*margin-top: 200px;*/
  overflow: hidden;
}

.button-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
  gap: 30px;
}
.home-banner {
  padding-top: 200px;
  padding-bottom: 55px;
  min-height: 100vh;
  position: relative;
  z-index: 2;
  background: #fff url(../images/Stratego-Motif-01.svg) no-repeat left center;
  background-size: contain;
  background-blend-mode: multiply;
}
.home-banner .col-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
}
.home-banner .col-text h1 {
  color: #0d1464;
  font: normal 80px/100% "Mont Bold", sans-serif;
  margin-bottom: 20px;
}
.home-banner .col-text .the-content {
  margin-bottom: 50px;
}
.home-banner .col-text .the-content p {
  color: #8688A2;
  margin-bottom: 0;
  font-size: 30px;
  line-height: 110%;
}
.home-banner .col-image {
  position: relative;
  position: relative;
}
.home-banner .col-image:before {
  content: "";
  display: block;
  padding-top: 90%;
}
.home-banner .col-image .images {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.home-banner .col-image img {
  position: absolute;
  right: 0;
  top: 0;
  max-height: 100%;
}

.banner .col-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
}
.banner .col-text h1 {
  color: #0d1464;
  font: normal 80px/100% "Mont Bold", sans-serif;
  margin-bottom: 20px;
}
.banner .col-text .the-content {
  margin-bottom: 50px;
}
.banner .col-text .the-content p {
  color: #8688A2;
  margin-bottom: 0;
  font-size: 18px;
  line-height: 140%;
}
.banner.why-consult {
  background-color: #F4F4FD;
  padding-top: 200px;
  min-height: calc(100vh - 200px);
  position: relative;
  z-index: 2;
  overflow-x: hidden;
}
.banner.why-consult .col-text .service-cat-list li {
  margin-bottom: 30px;
}
.banner.why-consult .col-text .service-cat-list li a {
  font: bold 30px/100% arboria, sans-serif;
  cursor: pointer;
  text-decoration: none;
}
.banner.why-consult .col-text .service-cat-list li a.active {
  text-decoration: underline;
}
.banner.why-consult .col-text .service-cat-list li.enfants a {
  color: #f1c400;
}
.banner.why-consult .col-text .service-cat-list li.adolescents a {
  color: #02ca96;
}
.banner.why-consult .col-text .service-cat-list li.adultes a {
  color: #ee2300;
}
.banner.why-consult .col-image {
  position: relative;
  position: relative;
}
.banner.why-consult .col-image:before {
  content: "";
  display: block;
  padding-top: 90%;
}
.banner.why-consult .col-image .person-container {
  position: absolute;
  bottom: 0;
  min-width: 450px;
}
.banner.why-consult .col-image .person-container.person-1 {
  width: 500px;
  left: 0;
  z-index: 5;
}
.banner.why-consult .col-image .person-container.person-2 {
  width: 550px;
  left: 50%;
  transform: translateX(-40%);
  z-index: 4;
}
.banner.why-consult .col-image .person-container.person-3 {
  width: 935px;
  right: -80px;
  z-index: 3;
  transform: translateX(30%);
}
.banner.why-consult .col-image .person-container img.normal {
  opacity: 1;
  transition: all 0.3s ease-in-out;
}
.banner.why-consult .col-image .person-container img.hover {
  opacity: 0;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  transition: all 0.3s ease-in-out;
}
.banner.why-consult .col-image .person-container.active img.normal {
  opacity: 0;
}
.banner.why-consult .col-image .person-container.active img.hover {
  opacity: 1;
}
.banner.services {
  padding-top: 200px;
}
.banner.services .col-image {
  position: relative;
  padding-bottom: 150px;
  padding-top: 100px;
}
.banner.services .col-image .image {
  position: relative;
  position: relative;
  z-index: 3;
}
.banner.services .col-image .image > img,
.banner.services .col-image .image > picture {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.banner.services .col-image .image:before {
  content: "";
  display: block;
  padding-top: 66%;
}
.banner.services .col-image .decoration {
  position: absolute;
}
.banner.services .col-image .decoration.decoration-1 {
  z-index: 2;
  top: 0;
  left: -5%;
}
.banner.services .col-image .decoration.decoration-2 {
  z-index: 4;
  right: -5%;
  bottom: 0;
}
.banner.value {
  padding-top: 300px;
}
.banner.value h1 {
  font: normal 80px/100% "Mont Bold", sans-serif;
  color: #0d1464;
  margin-bottom: 50px;
}
.banner.value .value-block {
  background: #F4F4FD;
  padding: 80px 50px;
  min-height: 100%;
}
.banner.value .value-block .image {
  margin: 0 auto 50px;
  width: clamp(200px, 50%, 75%);
  position: relative;
  position: relative;
}
.banner.value .value-block .image:before {
  content: "";
  display: block;
  padding-top: 100%;
}
.banner.value .value-block .image > img,
.banner.value .value-block .image > picture {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.banner.value .value-block h4 {
  font: bold 30px/100% arboria, sans-serif;
  margin-bottom: 20px;
}
.banner.value .value-block h4.yellow {
  color: #f1c400;
}
.banner.value .value-block h4.green {
  color: #02ca96;
}
.banner.value .value-block h4.blue {
  color: #3f49c9;
}
.banner.value .value-block h4.red {
  color: #ee2300;
}
.banner.blog {
  padding-top: 300px;
}
.banner.blog h1 {
  font: normal 80px/100% "Mont Bold", sans-serif;
  color: #0d1464;
  margin-bottom: 50px;
}
.banner.contact {
  padding-top: 250px;
  min-height: 100vh;
  position: relative;
}
.banner.contact .wrapper {
  position: relative;
  z-index: 2;
  pointer-events: none;
}
.banner.contact .wrapper .text-container {
  max-width: 830px;
  width: 50%;
  background: #fff;
  -webkit-box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.1);
  padding: 90px 75px;
  position: relative;
  pointer-events: all;
}
.banner.contact .wrapper .text-container h1 {
  font: normal 70px/100% "Mont Bold", sans-serif;
  color: #0d1464;
  margin-bottom: 30px;
}
.banner.contact .wrapper .text-container h3 {
  color: #02ca96;
  font: bold 20px/100% arboria, sans-serif;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.banner.contact .wrapper .text-container .the-content {
  margin-bottom: 40px;
}
.banner.contact .wrapper .text-container .col-opening-hours .opening-hours .line {
  display: flex;
  justify-content: space-between;
  padding: 10px 0 5px;
  font: normal 18px/100% arboria, sans-serif;
}
.banner.contact .wrapper .text-container .col-opening-hours .opening-hours .line .day {
  font-weight: bold;
}
.banner.contact .wrapper .text-container .col-address .info {
  margin-bottom: 20px;
}
.banner.contact .wrapper .text-container .col-address .info .icon {
  float: left;
  margin-right: 15px;
  margin-top: 6px;
}
.banner.contact .wrapper .text-container .col-address .info .icon svg path {
  fill: #0d1464;
}
.banner.contact .wrapper .text-container .col-address .info p {
  overflow: hidden;
  font: normal 18px/140% arboria, sans-serif;
}
.banner.contact .wrapper .text-container > svg {
  position: absolute;
  left: 50%;
  bottom: -40px;
  /*transform:translateX(-50%) translateY(50%);*/
}
.banner.contact .google-map {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*- Testimonials -*/
.testimonials .splide__arrows {
  pointer-events: none;
  position: absolute;
  top: 50%;
  margin-top: -20px;
  width: 100%;
  left: 0;
  display: flex;
  justify-content: space-between;
  z-index: 5;
}
.testimonials .splide__arrows .splide__arrow {
  pointer-events: all;
  background: #0d1464 url(../images/arrow-slider_white.svg) no-repeat 40% center;
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
  width: 90px;
  height: 90px;
  border: 0px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.testimonials .splide__arrows .splide__arrow svg {
  display: none;
}
.testimonials .splide__arrows .splide__arrow.splide__arrow--prev {
  transform: rotateZ(180deg) translateX(30px);
}
.testimonials .splide__arrows .splide__arrow.splide__arrow--next {
  transform: translateX(30px);
}
.testimonials .splide__arrows .splide__arrow:hover {
  background: #3f49c9 url(../images/arrow-slider_white.svg) no-repeat 40% center;
}
.testimonials .splide__arrows .splide__arrow:hover.splide__arrow--prev {
  transform: rotateZ(180deg) translateX(0px);
}
.testimonials .splide__arrows .splide__arrow:hover.splide__arrow--next {
  transform: translateX(0px);
}

.testimonial-block {
  background: #F4F4FD;
  padding: 80px 60px;
  min-height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.testimonial-block .inner {
  margin: 0 auto;
  width: calc(100% - 80px);
  max-width: 575px;
}
.testimonial-block .inner .the-content {
  margin-bottom: 60px;
}
.testimonial-block .inner .the-content p {
  font: normal 18px/140% arboria, sans-serif !important;
  color: #0d1464;
}
.testimonial-block .inner h4 {
  color: #41D7B0;
  font: normal 16px/100% "Mont Bold", sans-serif;
  text-transform: uppercase;
}
.testimonial-block .inner span {
  font: normal 18px/140% arboria, sans-serif !important;
  color: #0d1464;
}

/*- Partners -*/
section.partners {
  padding: 0 0 300px 0;
}
section.partners .splide-partner--cancel-splide {
  display: flex;
  justify-content: center;
}
section.partners .splide-partner--cancel-splide .splide__list {
  display: flex;
  gap: 5rem;
}
section.partners .splide__track {
  margin: auto;
}
section.partners .splide__track .splide__slide {
  display: flex;
  justify-content: center;
  align-items: center;
}
section.partners .splide__track .splide__slide img {
  float: left;
  width: 100%;
  height: 200px;
  object-fit: scale-down;
}

/*- Services - Accueil -*/
.slice.services {
  background: #fff;
  position: relative;
}
.slice.services .service-row {
  padding: 140px 0 160px 0;
}
.slice.services .service-row:first-child {
  padding-top: 0px;
}
.slice.services .service-row .col-image {
  position: relative;
}
.slice.services .service-row .col-image .image {
  position: relative;
  position: relative;
}
.slice.services .service-row .col-image .image:before {
  content: "";
  display: block;
  padding-top: 100%;
}
.slice.services .service-row .col-image .image > img,
.slice.services .service-row .col-image .image > picture {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.slice.services .service-row .col-image .image img {
  z-index: 2;
}
.slice.services .service-row .col-image .image:after {
  content: "";
  position: absolute;
  width: 100%;
  heighT: 100%;
  bottom: -20px;
  left: -20px;
  display: block;
}
.slice.services .service-row .col-image svg {
  position: absolute;
  top: -120px;
  right: -75px;
  z-index: 5;
}
.slice.services .service-row .col-text h2 {
  font: bold 30px/100% arboria, sans-serif;
  margin-bottom: 30px;
  text-transform: uppercase;
}
.slice.services .service-row .col-text h2 a:hover {
  text-decoration: underline;
}
.slice.services .service-row .col-text .the-content {
  margin-bottom: 30px;
}
.slice.services .service-row .col-text .services-list {
  margin-bottom: 50px;
}
.slice.services .service-row .col-text .services-list .service-item {
  padding: 20px 0;
  border-bottom: 1px solid #0d1464;
}
.slice.services .service-row .col-text .services-list .service-item h3 a {
  color: #0d1464;
  font: 600 30px/100% arboria, sans-serif;
  transition: all 0.3s ease-in-out;
}
.slice.services .service-row .col-text .services-list .service-item h3 a:hover {
  color: #3f49c9;
}
.slice.services .service-row.color-yellow .col-text h2 {
  color: #f1c400;
}
.slice.services .service-row.color-yellow .col-text .services-list .service-item {
  border-bottom: 1px solid #f1c400;
}
.slice.services .service-row.color-yellow .col-image .image:after {
  background-color: #f1c400;
}
.slice.services .service-row.color-yellow .col-image svg path {
  stroke: #f1c400;
}
.slice.services .service-row.color-green .col-text h2 {
  color: #02ca96;
}
.slice.services .service-row.color-green .col-text .services-list .service-item {
  border-bottom: 1px solid #02ca96;
}
.slice.services .service-row.color-green .col-image .image:after {
  background-color: #02ca96;
}
.slice.services .service-row.color-green .col-image svg path {
  stroke: #02ca96;
}
.slice.services .service-row.color-red .col-text h2 {
  color: #ee2300;
}
.slice.services .service-row.color-red .col-text .services-list .service-item {
  border-bottom: 1px solid #ee2300;
}
.slice.services .service-row.color-red .col-image .image:after {
  background-color: #ee2300;
}
.slice.services .service-row.color-red .col-image svg path {
  stroke: #ee2300;
}
.slice.services .service-row:nth-child(even) .col-image {
  order: 2;
}
.slice.services .service-row:nth-child(even) .col-image .image:after {
  left: auto;
  right: -20px;
}
.slice.services .service-row:nth-child(even) .col-image svg {
  left: -85px;
  right: auto;
  transform: rotateZ(120deg);
}
.slice.services .service-row:nth-child(even) .col-text {
  order: 1;
}
.slice.services .service-row:nth-child(even) .col-text.offset-lg-1 {
  margin-left: 0px !important;
  margin-right: 8.333333% !important;
}

/*- Service category -*/
.services-category.adolescents {
  position: relative;
}
.services-category.adolescents:before {
  content: "";
  width: calc(100% - 160px);
  background: #EFF8F6;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 80px;
}
.services-category .big-img {
  position: relative;
}
.services-category .big-img .letter-container .letter {
  position: absolute;
  font: normal 400px/200px "Mont Bold", sans-serif;
  color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #E5102D;
}
.services-category .big-img .letter-container .letter-1 {
  top: 25%;
  left: 0;
  transform: translateX(-80%);
}
.services-category .big-img .letter-container .letter-2 {
  top: 80%;
  left: 0;
  transform: translateX(-40%);
}
.services-category .big-img .letter-container .letter-3 {
  top: 80%;
  right: 0;
  transform: translateX(50%);
}
.services-category .text-container {
  max-width: 75%;
  margin: -140px auto 140px;
  padding: 55px 80px;
  position: relative;
  z-index: 2;
}
.services-category .text-container .the-content {
  margin-bottom: 60px;
}
.services-category .text-container .the-content h3 {
  color: #fff;
  margin-bottom: 30px;
  font: normal 50px/100% "Mont Bold", sans-serif;
}
.services-category .text-container .the-content p {
  color: #0d1464;
}
.services-category .reason-container {
  width: 100%;
  padding: 0 50px;
}
.services-category .reason-container ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.services-category .reason-container ul li {
  width: calc(50% - 50px);
  position: relative;
  font: normal 30px/100% arboria, sans-serif;
  padding-left: 30px;
  padding-top: 30px;
  margin-bottom: 30px;
  color: #0d1464;
}
.services-category .reason-container ul li:before {
  content: "";
  width: 12px;
  height: 12px;
  position: absolute;
  left: 0;
  top: 40px;
}
.services-category .reason-container ul li:nth-child(1), .services-category .reason-container ul li:nth-child(2) {
  border-top: 0px solid transparent;
}
.services-category .reason-container ul li.empty:before {
  display: none;
}
.services-category.enfants .text-container {
  background-color: #f1c400;
}
.services-category.enfants .big-img .letter-container .letter {
  -webkit-text-stroke-color: #F6D95A;
}
.services-category.enfants .reason-container li {
  border-top: 1px solid #F6D95A;
}
.services-category.enfants .reason-container li:before {
  background: #F6D95A;
}
.services-category.adolescents .text-container {
  background-color: #41D7B0;
}
.services-category.adolescents .big-img .letter-container .letter {
  -webkit-text-stroke-color: #41D7B0;
}
.services-category.adolescents .reason-container li {
  border-top: 1px solid #41D7B0;
}
.services-category.adolescents .reason-container li:before {
  background: #41D7B0;
}
.services-category.adultes .text-container {
  background-color: #F3654D;
}
.services-category.adultes .big-img .letter-container .letter {
  -webkit-text-stroke-color: #F3654D;
}
.services-category.adultes .reason-container li {
  border-top: 1px solid #F3654D;
}
.services-category.adultes .reason-container li:before {
  background: #F3654D;
}

/*- Featured articles - Accueil -*/
.featured-articles {
  position: relative;
  background: #fff;
}
.featured-articles .featured-blog-block .col-image {
  position: relative;
}
.featured-articles .featured-blog-block .col-image > img,
.featured-articles .featured-blog-block .col-image > picture {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.featured-articles .featured-blog-block .col-text {
  padding: 110px;
  background: #02ca96;
  position: relative;
  z-index: 3;
}
.featured-articles .featured-blog-block .col-text > svg {
  position: absolute;
  right: 0;
  bottom: 0;
}
.featured-articles .featured-blog-block .col-text .content {
  position: relative;
  z-index: 3;
}
.featured-articles .featured-blog-block .col-text .content .category-label {
  display: block;
  color: #0d1464;
  font: bold 20px/100% arboria, sans-serif;
  text-transform: uppercase;
  margin-bottom: 30px;
}
.featured-articles .featured-blog-block .col-text .content h3 {
  font: normal 50px/120% "Mont Bold", sans-serif;
  color: #fff;
  margin-bottom: 40px;
}
.featured-articles .featured-blog-block .col-text .content p {
  color: #fff;
  font: normal 18px/160% arboria, sans-serif;
  margin-bottom: 50px;
}
.featured-articles .splide__track .row, .featured-articles .splide__track form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address, form .gform_body .gform_fields .gfield .featured-articles .splide__track .ginput_container.ginput_container_address, .featured-articles .splide__track form .gform_body .gform_fields, form .gform_body .featured-articles .splide__track .gform_fields {
  margin-left: 0;
  margin-right: 0px;
  min-height: 100%;
}
.featured-articles .splide__track .row > div[class*=col-], .featured-articles .splide__track form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address > div[class*=col-], form .gform_body .gform_fields .gfield .featured-articles .splide__track .ginput_container.ginput_container_address > div[class*=col-], .featured-articles .splide__track form .gform_body .gform_fields > div[class*=col-], form .gform_body .featured-articles .splide__track .gform_fields > div[class*=col-] {
  /*padding-left: 0px;
  padding-right: 0px;*/
}
.featured-articles .splide__arrows {
  pointer-events: none;
  position: absolute;
  top: 50%;
  margin-top: -20px;
  width: 100%;
  left: 0;
  display: flex;
  justify-content: space-between;
  z-index: 5;
}
.featured-articles .splide__arrows .splide__arrow {
  pointer-events: all;
  background: #fff url(../images/arrow-slider_d_blue.svg) no-repeat 40% center;
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
  width: 90px;
  height: 90px;
  border: 0px;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.featured-articles .splide__arrows .splide__arrow svg {
  display: none;
}
.featured-articles .splide__arrows .splide__arrow.splide__arrow--prev {
  transform: rotateZ(180deg) translateX(30px);
}
.featured-articles .splide__arrows .splide__arrow.splide__arrow--next {
  transform: translateX(30px);
}
.featured-articles .splide__arrows .splide__arrow:hover {
  background: #0d1464 url(../images/arrow-slider_white.svg) no-repeat 40% center;
}
.featured-articles .splide__arrows .splide__arrow:hover.splide__arrow--prev {
  transform: rotateZ(180deg) translateX(0px);
}
.featured-articles .splide__arrows .splide__arrow:hover.splide__arrow--next {
  transform: translateX(0px);
}

.call-to-action .wrapper {
  background-color: #F4F4FD;
  position: relative;
}
.call-to-action .wrapper .bg {
  overflow: hidden;
  position: absolute;
  width: 100%;
  height: 100%;
  right: 0px;
  top: 0;
  text-align: right;
}
.call-to-action .wrapper .bg > svg {
  height: 100%;
  width: auto;
}
.call-to-action .wrapper .row, .call-to-action .wrapper form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address, form .gform_body .gform_fields .gfield .call-to-action .wrapper .ginput_container.ginput_container_address, .call-to-action .wrapper form .gform_body .gform_fields, form .gform_body .call-to-action .wrapper .gform_fields {
  position: relative;
  z-index: 2;
}
.call-to-action .wrapper .col-text {
  padding: 105px 130px;
}
.call-to-action .wrapper .col-text .the-content {
  margin-bottom: 50px;
}
.call-to-action .wrapper .col-text .the-content h3 {
  color: #0d1464;
  font: normal 50px/100% "Mont Bold", sans-serif;
  margin-bottom: 30px;
}
.call-to-action .wrapper .col-image img {
  position: absolute;
  bottom: 0;
  left: 10px;
  max-width: calc(100% - 25px);
}
.call-to-action.green .wrapper .bg > svg .color-bg {
  fill: #41D7B0;
}
.call-to-action.blue .wrapper .bg > svg .color-bg {
  fill: #27309F;
}
.call-to-action.red .wrapper .bg > svg .color-bg {
  fill: #27309F;
  color: #F3654D;
}
.call-to-action.yellow .wrapper .bg > svg .color-bg {
  fill: #F6D95A;
}

.service-block:last-child {
  padding-bottom: 200px;
}
.service-block .col-title.mobile-only {
  display: none;
}
.service-block .col-title .number {
  font: normal 300px/90% "Mont Bold", sans-serif;
  color: transparent;
  -webkit-text-stroke-width: 1px;
  position: absolute;
  top: -195px;
  left: 0;
}
.service-block .col-title h3 {
  position: relative;
  color: #0d1464;
  font: normal 45px/100% "Mont Bold", sans-serif;
  margin-bottom: 0px;
}
.service-block .col-title .age-group {
  font: bold 30px/100% arboria, sans-serif;
  margin-bottom: 50px;
  display: block;
}
.service-block .col-image {
  position: relative;
}
.service-block .col-image .image {
  position: relative;
  position: relative;
}
.service-block .col-image .image:before {
  content: "";
  display: block;
  padding-top: 150%;
}
.service-block .col-image .image > img,
.service-block .col-image .image > picture {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.service-block .col-image .image img {
  z-index: 2;
}
.service-block .col-image .image:after {
  content: "";
  position: absolute;
  width: 100%;
  heighT: 100%;
  bottom: -20px;
  left: -20px;
  display: block;
}
.service-block .col-image .decoration {
  position: absolute;
  right: auto;
  top: auto;
  left: calc(100% - 150px);
  bottom: calc(100% - 150px);
  z-index: 2;
  width: 200px;
}
.service-block.color-green .col-title .number {
  -webkit-text-stroke-color: #02ca96;
}
.service-block.color-green .col-title .age-group {
  color: #02ca96;
}
.service-block.color-green .col-image .image:after {
  background-color: #02ca96;
}
.service-block.color-green .col-image > svg path {
  stroke: #02ca96;
}
.service-block.color-red .col-title .number {
  -webkit-text-stroke-color: #ee2300;
}
.service-block.color-red .col-title .age-group {
  color: #ee2300;
}
.service-block.color-red .col-image .image:after {
  background-color: #ee2300;
}
.service-block.color-red .col-image > svg path {
  stroke: #ee2300;
}
.service-block.color-blue .col-title .number {
  -webkit-text-stroke-color: #0d1464;
}
.service-block.color-blue .col-title .age-group {
  color: #0d1464;
}
.service-block.color-blue .col-image .image:after {
  background-color: #0d1464;
}
.service-block.color-blue .col-image > svg path {
  stroke: #0d1464;
}
.service-block.color-yellow .col-title .number {
  -webkit-text-stroke-color: #f1c400;
}
.service-block.color-yellow .col-title .age-group {
  color: #f1c400;
}
.service-block.color-yellow .col-image .image:after {
  background-color: #f1c400;
}
.service-block.color-yellow .col-image > svg path {
  stroke: #f1c400;
}

/*- Qui sommes-nous -*/
.slice.founder .col-text h3 {
  position: relative;
  color: #0d1464;
  text-transform: uppercase;
  font: normal 50px/100% "Mont Bold", sans-serif;
  margin-bottom: 0px;
}
.slice.founder .col-text h4 {
  font: bold 30px/100% arboria, sans-serif;
  margin-bottom: 50px;
  display: block;
  color: #02ca96;
}
.slice.founder .col-text .the-content {
  margin-bottom: 50px;
}
.slice.founder .col-image {
  position: relative;
}
.slice.founder .col-image .image {
  position: relative;
  position: relative;
}
.slice.founder .col-image .image:before {
  content: "";
  display: block;
  padding-top: 155%;
}
.slice.founder .col-image .image > img,
.slice.founder .col-image .image > picture {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.slice.founder .col-image .image img {
  z-index: 3;
}
.slice.founder .col-image .image:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: -20px;
  right: -20px;
  display: block;
  background: #02ca96;
}
.slice.founder .col-image > svg {
  position: absolute;
  top: -120px;
  left: -75px;
  z-index: 5;
}
.slice.founder .col-image > svg path {
  stroke: #02ca96;
}
.slice.team {
  background-image: url(../images/team-decoration-1.svg), url(../images/team-decoration-2.svg);
  background-position: 10% 10%, 85% 95%;
  background-repeat: no-repeat, no-repeat;
}
.slice.team .row, .slice.team form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address, form .gform_body .gform_fields .gfield .slice.team .ginput_container.ginput_container_address, .slice.team form .gform_body .gform_fields, form .gform_body .slice.team .gform_fields {
  gap: 20px;
  justify-content: center;
}
.slice.team .team-block {
  width: calc(50% - 10px);
  max-width: 605px;
  background-color: #02ca96;
  padding: 40px 50px;
  text-align: left;
  position: relative;
  overflow: hidden;
}
.slice.team .team-block:after {
  content: "+";
  font: normal 50px/100% arboria, sans-serif;
  color: #fff;
  background: #27309F;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 95px;
  height: 95px;
  text-align: right;
  padding: 37px 10px 0px 0;
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
  transform: translateX(0%) translateY(0%);
  will-change: transform;
  transition: all 0.3s ease-in-out;
}
.slice.team .team-block .image {
  position: relative;
  position: relative;
  width: 65%;
  margin-left: 35%;
  margin-bottom: 30px;
  transition: all 0.3s ease-in-out;
}
.slice.team .team-block .image:before {
  content: "";
  display: block;
  padding-top: 115%;
}
.slice.team .team-block .image > img,
.slice.team .team-block .image > picture {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.slice.team .team-block .image img {
  clip-path: polygon(50% 0, 95% 25%, 95% 75%, 50% 100%, 5% 75%, 5% 25%);
}
.slice.team .team-block .team-member-name {
  text-align: left;
  color: #27309F;
  font: normal 50px/100% "Mont Bold", sans-serif;
  margin-bottom: 40px;
}
.slice.team .team-block .infos {
  transition: all 0.3s ease-in-out;
  opacity: 0;
  height: 0;
}
.slice.team .team-block .infos .the-content {
  margin-bottom: 60px;
}
.slice.team .team-block .infos .the-content p {
  color: white;
  font: 300 18px/120% arboria, sans-serif;
}
.slice.team .team-block .infos .links-container {
  display: flex;
  gap: 10px;
}
.slice.team .team-block .infos .links-container a {
  position: relative;
  width: 40px;
  height: 45px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.slice.team .team-block .infos .links-container a > svg {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%) rotateZ(0deg);
  transition: all 0.3s ease-in-out;
}
.slice.team .team-block .infos .links-container a > svg path {
  fill: #27309F;
  transition: all 0.3s ease-in-out;
}
.slice.team .team-block .infos .links-container a span {
  position: relative;
  z-index: 2;
}
.slice.team .team-block .infos .links-container a span svg {
  vertical-align: bottom;
}
.slice.team .team-block .infos .links-container a:hover > svg {
  transform: translateX(-50%) translateY(-50%) rotateZ(180deg);
}
.slice.team .team-block .infos .links-container a:hover > svg path {
  fill: #565ecc;
}
.slice.team .team-block:nth-child(even) {
  background-color: #27309F;
}
.slice.team .team-block:nth-child(even) .team-member-name {
  color: #02ca96;
}
.slice.team .team-block:nth-child(even):after {
  background: #02ca96;
}
.slice.team .team-block:nth-child(even) .links-container a > svg path {
  fill: #02ca96;
}
.slice.team .team-block:hover:after {
  transform: translateX(100%) translateY(100%);
}
.slice.team .team-block:hover .image {
  width: 25%;
  margin-left: 0%;
  transition: all 0.3s ease-in-out 0.3s;
}
.slice.team .team-block:hover .infos {
  opacity: 1;
  transition: all 0.3s ease-in-out 0.3s;
}

/*- Blogue -*/
.filter-container {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.filter-container .category-filter-dropdown {
  border: 0px solid transparent;
  background: #F4F4FD url(../images/icon-arrow-dd.svg) no-repeat 90% 58%;
  font: bold 18px/100% arboria, sans-serif;
  color: #8688A2;
  padding-right: 60px;
}

.blog-post-list {
  background-image: url(../images/blog-decoration-1.svg), url(../images/blog-decoration-2.svg), url(../images/blog-decoration-3.svg);
  background-position: 2% top, 105% center, -2% bottom;
  background-repeat: no-repeat, no-repeat, no-repeat;
}
.blog-post-list .blog-block {
  margin-bottom: 100px;
}
.blog-post-list .blog-block.hidden {
  display: none;
}
.blog-post-list .blog-block .image {
  position: relative;
  margin-bottom: 30px;
}
.blog-post-list .blog-block .image > a {
  position: relative;
  position: relative;
  display: block;
}
.blog-post-list .blog-block .image > a:before {
  content: "";
  display: block;
  padding-top: 130%;
}
.blog-post-list .blog-block .image > a > img,
.blog-post-list .blog-block .image > a > picture {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.blog-post-list .blog-block .image .blog-infos {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 20px;
  text-align: center;
  background: rgba(2, 202, 150, 0.8);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.blog-post-list .blog-block .image .blog-infos .category-label {
  color: #fff;
  font: bold 18px/100% arboria, sans-serif;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.blog-post-list .blog-block .image .blog-infos h3 {
  font: bold 30px/100% arboria, sans-serif;
  color: #0d1464;
  margin-bottom: 40px;
}
.blog-post-list .blog-block .image:hover .blog-infos {
  opacity: 1;
}
.blog-post-list .blog-block .content h3 {
  margin-bottom: 20px;
}
.blog-post-list .blog-block .content h3 a {
  font: bold 30px/100% arboria, sans-serif;
  color: #02ca96;
  margin-bottom: 40px;
}
.blog-post-list .blog-block .content h3 a:hover {
  text-decoration: underline;
}
.blog-post-list .blog-block .content p {
  font: normal 18px/140% arboria, sans-serif;
  color: #0d1464;
  margin-bottom: 30px;
}
.blog-post-list .blog-block .content span.date-cat {
  color: #0d1464;
  font: bold 18px/100% arboria, sans-serif;
}
.blog-post-list .blog-block .content span.date-cat a {
  transition: all 0.3s ease-in-out;
}
.blog-post-list .blog-block .content span.date-cat a:hover {
  color: #02ca96;
}

.single-post .slice {
  position: relative;
}
.single-post .slice .the-content h2 {
  font-size: 30px;
  margin-bottom: 20px;
}
.single-post .slice .the-content h3 {
  font-size: 22px;
  margin-bottom: 20px;
}
.single-post .slice .the-content p {
  margin-bottom: 1em;
  font: normal 18px/160% arboria, sans-serif;
  color: #0d1464;
}
.single-post .slice .the-content .date-list h3 {
  margin-bottom: 10px;
}
.single-post .slice .the-content .date-list p {
  margin-bottom: 0;
}
.single-post .slice .the-content .date-list p.blue-span span {
  font-weight: 700;
  color: #02ca96;
}
.single-post .slice:first-child:before {
  content: "";
  position: absolute;
  left: -75px;
  top: 200px;
  background: url(../images/post-shape.svg) center no-repeat;
  background-size: contain;
  width: 100%;
  max-width: 400px;
  height: 100%;
  max-height: 400px;
}
.single-post .blog-top-content {
  padding-top: 300px;
  padding-bottom: 100px;
  position: relative;
  z-index: 2;
}
.single-post .blog-top-content h1 {
  font: normal 50px/100% "Mont Bold", sans-serif;
  max-width: 850px;
  display: block;
  margin: 0 auto;
}
.single-post .blog-top-content .row, .single-post .blog-top-content form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address, form .gform_body .gform_fields .gfield .single-post .blog-top-content .ginput_container.ginput_container_address, .single-post .blog-top-content form .gform_body .gform_fields, form .gform_body .single-post .blog-top-content .gform_fields {
  margin-top: 80px;
}
.single-post .blog-top-content .row .col-image, form .gform_body .gform_fields .gfield .single-post .blog-top-content .ginput_container.ginput_container_address .col-image, .single-post .blog-top-content form .gform_body .gform_fields .col-image, form .gform_body .single-post .blog-top-content .gform_fields .col-image {
  margin-bottom: -200px;
}
.single-post .blog-top-content .row .col-image .image, form .gform_body .gform_fields .gfield .single-post .blog-top-content .ginput_container.ginput_container_address .col-image .image, .single-post .blog-top-content form .gform_body .gform_fields .col-image .image, form .gform_body .single-post .blog-top-content .gform_fields .col-image .image {
  position: relative;
  position: relative;
}
.single-post .blog-top-content .row .col-image .image:before, form .gform_body .gform_fields .gfield .single-post .blog-top-content .ginput_container.ginput_container_address .col-image .image:before, .single-post .blog-top-content form .gform_body .gform_fields .col-image .image:before, form .gform_body .single-post .blog-top-content .gform_fields .col-image .image:before {
  content: "";
  display: block;
  padding-top: 86%;
}
.single-post .blog-top-content .row .col-image .image > img, form .gform_body .gform_fields .gfield .single-post .blog-top-content .ginput_container.ginput_container_address .col-image .image > img, .single-post .blog-top-content form .gform_body .gform_fields .col-image .image > img, form .gform_body .single-post .blog-top-content .gform_fields .col-image .image > img,
.single-post .blog-top-content .row .col-image .image > picture,
form .gform_body .gform_fields .gfield .single-post .blog-top-content .ginput_container.ginput_container_address .col-image .image > picture,
.single-post .blog-top-content form .gform_body .gform_fields .col-image .image > picture,
form .gform_body .single-post .blog-top-content .gform_fields .col-image .image > picture {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.single-post .blog-top-content .row .col-image .image img, form .gform_body .gform_fields .gfield .single-post .blog-top-content .ginput_container.ginput_container_address .col-image .image img, .single-post .blog-top-content form .gform_body .gform_fields .col-image .image img, form .gform_body .single-post .blog-top-content .gform_fields .col-image .image img {
  z-index: 3;
}
.single-post .blog-top-content .row .col-image .image:after, form .gform_body .gform_fields .gfield .single-post .blog-top-content .ginput_container.ginput_container_address .col-image .image:after, .single-post .blog-top-content form .gform_body .gform_fields .col-image .image:after, form .gform_body .single-post .blog-top-content .gform_fields .col-image .image:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: -20px;
  right: -20px;
  display: block;
  background: #02ca96;
}
.single-post .blog-top-content .row.workshop .col-image, .single-post .blog-top-content form .gform_body .gform_fields .gfield .workshop.ginput_container.ginput_container_address .col-image, form .gform_body .gform_fields .gfield .single-post .blog-top-content .workshop.ginput_container.ginput_container_address .col-image, .single-post .blog-top-content form .gform_body .workshop.gform_fields .col-image, form .gform_body .single-post .blog-top-content .workshop.gform_fields .col-image {
  height: 100%;
}
.single-post .blog-top-content .row.workshop .col-text, .single-post .blog-top-content form .gform_body .gform_fields .gfield .workshop.ginput_container.ginput_container_address .col-text, form .gform_body .gform_fields .gfield .single-post .blog-top-content .workshop.ginput_container.ginput_container_address .col-text, .single-post .blog-top-content form .gform_body .workshop.gform_fields .col-text, form .gform_body .single-post .blog-top-content .workshop.gform_fields .col-text {
  padding-top: 75px;
}
.single-post .blog-top-content .row .col-text, form .gform_body .gform_fields .gfield .single-post .blog-top-content .ginput_container.ginput_container_address .col-text, .single-post .blog-top-content form .gform_body .gform_fields .col-text, form .gform_body .single-post .blog-top-content .gform_fields .col-text {
  padding-top: 120px;
}
.single-post .blog-middle-content {
  padding: 250px 0;
  background: #F4F4FD;
  position: relative;
}
.single-post .blog-middle-content:before {
  content: "";
  background: transparent url(../images/Stratego-Motif-01.svg) no-repeat -10% top;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.single-post .blog-middle-content:after {
  content: "";
  background: transparent url(../images/Stratego-Motif-01.svg) no-repeat -10% top;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: rotateZ(180deg);
}
.single-post .blog-middle-content .the-content {
  position: relative;
  z-index: 3;
}
.single-post .blog-middle-content .article-quote {
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
  z-index: 3;
  text-align: center;
  margin: 0 auto;
  max-width: 1100px;
  margin-top: 100px;
}
.single-post .blog-middle-content .article-quote:before, .single-post .blog-middle-content .article-quote:after {
  content: "«";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  font: normal 80px/100% "Mont Bold", sans-serif;
  color: transparent;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #02ca96;
}
.single-post .blog-middle-content .article-quote:after {
  transform: rotateZ(180deg);
  top: auto;
  bottom: 0;
}
.single-post .blog-middle-content .article-quote p {
  font: normal 50px/120% "Mont Bold", sans-serif;
}
.single-post .blog-bottom-content {
  padding-top: 80px;
}
.single-post .blog-bottom-content .col-image {
  margin-top: -200px;
}
.single-post .blog-bottom-content .col-image .image {
  position: relative;
  position: relative;
}
.single-post .blog-bottom-content .col-image .image:before {
  content: "";
  display: block;
  padding-top: 86%;
}
.single-post .blog-bottom-content .col-image .image > img,
.single-post .blog-bottom-content .col-image .image > picture {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.single-post .blog-bottom-content .col-image .image img {
  z-index: 3;
}
.single-post .blog-bottom-content .col-image .image:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: -20px;
  left: -20px;
  display: block;
  background: #f1c400;
}
.single-post .article-nav {
  padding: 100px 0;
  margin-top: 200px;
}
.single-post .article-nav .wrapper {
  position: relative;
  min-height: 90px;
}
.single-post .article-nav .wrapper .icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
}
.single-post .article-nav .wrapper .post-navigation {
  width: 100%;
}
.single-post .article-nav .wrapper .post-navigation .nav-links {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.single-post .article-nav .wrapper .post-navigation .nav-links .nav-previous a {
  position: relative;
  font: bold 18px/100% arboria, sans-serif;
  padding-left: 80px;
}
.single-post .article-nav .wrapper .post-navigation .nav-links .nav-previous a:before {
  content: "";
  width: 55px;
  height: 20px;
  background: url(../images/icon-arrow-long.svg);
  position: absolute;
  left: 0;
  top: 4px;
  transition: all 0.3s ease-in-out;
}
.single-post .article-nav .wrapper .post-navigation .nav-links .nav-previous a:hover:before {
  left: -20px;
}
.single-post .article-nav .wrapper .post-navigation .nav-links .nav-next a {
  position: relative;
  font: bold 18px/100% arboria, sans-serif;
  padding-right: 80px;
}
.single-post .article-nav .wrapper .post-navigation .nav-links .nav-next a:before {
  content: "";
  width: 55px;
  height: 20px;
  background: url(../images/icon-arrow-long.svg);
  position: absolute;
  right: 0;
  top: 3px;
  transform: rotateZ(180deg);
  transition: all 0.3s ease-in-out;
}
.single-post .article-nav .wrapper .post-navigation .nav-links .nav-next a:hover:before {
  right: -20px;
}
.single-post .article-nav .wrapper:last-child .row, .single-post .article-nav .wrapper:last-child form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address, form .gform_body .gform_fields .gfield .single-post .article-nav .wrapper:last-child .ginput_container.ginput_container_address, .single-post .article-nav .wrapper:last-child form .gform_body .gform_fields, form .gform_body .single-post .article-nav .wrapper:last-child .gform_fields {
  transform: translateY(50%);
}
.single-post .article-nav.lilac {
  background-color: #F4F4FD;
}
.single-post .article-nav.lilac:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background: url(../images/bottom-shape.svg) left top no-repeat;
  background-size: contain;
  width: 100%;
  max-width: 200px;
  height: 100%;
  max-height: 800px;
  opacity: 0.5;
}
.single-post .article-nav.lilac:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  background: url(../images/bottom-shape.svg) right top no-repeat;
  transform: scale(-1);
  background-size: contain;
  width: 100%;
  max-width: 200px;
  height: 100%;
  max-height: 800px;
  opacity: 0.5;
}
.single-post .article-nav.lilac form .gform_body .gform_fields .gfield .gfield_description {
  display: none;
}
.single-post .article-nav.lilac .gform_footer {
  justify-content: center;
}

/*- Page contact -*/
@keyframes floating {
  0% {
    transform: translateY(-20px);
  }
  50% {
    transform: translateY(20px);
  }
  100% {
    transform: translateY(-20px);
  }
}
.page-template-contact .col-form h2 {
  margin-bottom: 60px;
}
.page-template-contact .col-image .floating-logo {
  position: absolute;
  left: 33%;
  top: -50px;
  max-width: 33%;
  animation: floating 5s ease-in-out infinite;
}

.slice.page-404 {
  position: relative;
  padding-top: 250px;
}
.slice.page-404 .wrapper {
  z-index: 5;
}
.slice.page-404 .wrapper > svg {
  max-width: 100%;
  height: auto;
  margin-bottom: 40px;
}
.slice.page-404:before {
  content: "";
  background: transparent url(../images/Stratego-Motif-01.svg) no-repeat -10% top;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.slice.page-404:after {
  content: "";
  background: transparent url(../images/Stratego-Motif-01.svg) no-repeat -10% top;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: rotateZ(180deg);
}
.slice.page-404 h2 {
  margin-bottom: 20px;
}
.slice.page-404 .the-content {
  margin-bottom: 30px;
}

.char {
  pointer-events: none;
  position: absolute;
  z-index: 10;
  animation-name: floatOut;
  animation-duration: 2s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}
.char.small {
  width: 15px;
  height: 15px;
}
.char.medium {
  width: 40px;
  height: 40px;
}
.char.large {
  width: 65px;
  height: 65px;
}

@keyframes floatOut {
  0% {
    opacity: 1;
    transform: translateY(0) translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-200px) translateX(var(--animX));
  }
}
.privacy-policy .slice h1 {
  font-size: 55px;
}
.privacy-policy .slice h2 {
  font-size: 40px;
  margin-bottom: 5px;
}
.privacy-policy .slice h3 {
  margin-bottom: 8px;
}
.privacy-policy .slice p {
  margin-bottom: 10px;
}
.privacy-policy .slice ul {
  list-style: inside;
}

.workshop .main-content {
  margin-bottom: 60px;
}
.workshop .image-workshop {
  position: relative;
}
.workshop .image-workshop:before {
  content: "";
  background-color: #02CA96;
  position: absolute;
  right: -20px;
  bottom: -20px;
  width: 100%;
  height: 100%;
}
.workshop .image-workshop img {
  position: relative;
}

.date-list li {
  padding: 40px 0 40px 30px;
  position: relative;
  list-style: none;
}
.date-list li p {
  margin: 0;
}
.date-list li:before {
  content: "";
  width: 12px;
  height: 12px;
  position: absolute;
  left: 0;
  top: 50px;
  background: #41D7B0;
}
.date-list li:first-child {
  padding-top: 20px;
}
.date-list li:not(:last-child) {
  border-bottom: 1px solid #61C699;
}

.form-container {
  position: relative;
  margin-bottom: 100px;
  position: relative;
  z-index: 1;
}

header {
  position: fixed;
  top: 60px;
  left: 50%;
  height: 100px;
  width: calc(100% - 80px);
  max-width: 1565px;
  z-index: 99;
  display: flex;
  justify-content: center;
  background: #0d1464;
  transform: translateX(-50%);
  transition: all 0.3s ease-in-out;
}
header.shrink {
  top: 0;
  max-width: 100%;
  width: 100%;
  height: 80px;
}
header.shrink .site-nav nav > ul > li {
  padding: 30px 0;
}
header .site-nav nav > ul {
  display: flex;
  gap: 35px;
}
header .site-nav nav > ul > li {
  display: inline-block;
  padding: 40px 0;
  cursor: pointer;
  position: relative;
}
header .site-nav nav > ul > li a {
  font-size: 16px;
  font-family: "Mont", sans-serif;
  color: white;
}
header .site-nav nav > ul > li:before {
  content: "";
  position: absolute;
  top: 1px;
  left: 0;
  width: 100%;
  height: 0px;
  transition: all 0.3s ease-in-out;
}
header .site-nav nav > ul > li.yellow-submenu:before {
  background-color: #f1c400;
}
header .site-nav nav > ul > li.green-submenu:before {
  background-color: #02ca96;
}
header .site-nav nav > ul > li.blue-submenu:before {
  background-color: #3f49c9;
}
header .site-nav nav > ul > li.red-submenu:before {
  background-color: #ee2300;
}
header .site-nav nav > ul > li.menu-item-has-children .sub-menu {
  position: absolute;
  top: calc(110% - 1px);
  left: 50%;
  transform: translateX(-50%);
  background: white;
  -webkit-box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.16);
  box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.16);
  padding: 25px 30px;
  pointer-events: none;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
header .site-nav nav > ul > li.menu-item-has-children .sub-menu li {
  display: block;
  text-align: center;
}
header .site-nav nav > ul > li.menu-item-has-children .sub-menu li a {
  font: bold 14px/100% "Mont", sans-serif;
  display: inline-block;
  padding: 10px 0;
  color: #fff;
  white-space: nowrap;
  transition: all 0.3s ease-in-out;
}
header .site-nav nav > ul > li.menu-item-has-children .sub-menu li a:hover {
  color: #000045;
}
header .site-nav nav > ul > li.menu-item-has-children.yellow-submenu .sub-menu {
  background-color: #f1c400;
}
header .site-nav nav > ul > li.menu-item-has-children.green-submenu .sub-menu {
  background-color: #02ca96;
}
header .site-nav nav > ul > li.menu-item-has-children.blue-submenu .sub-menu {
  background-color: #3f49c9;
}
header .site-nav nav > ul > li.menu-item-has-children.red-submenu .sub-menu {
  background-color: #ee2300;
}
header .site-nav nav > ul > li.menu-item-has-children:hover:before {
  height: 9px;
}
header .site-nav nav > ul > li.menu-item-has-children:hover .sub-menu {
  top: calc(100% - 1px);
  opacity: 1;
  pointer-events: all;
}
header .site-nav nav > ul > li:hover:before {
  height: 9px;
}

#footer {
  background: #0a1050;
  position: relative;
  padding: 30px 0 20px;
}
#footer .wrapper {
  max-width: 1780px;
  padding: 80px 0 30px;
}
#footer .wrapper h3 {
  color: #41D7B0;
  font: normal 14px "Mont Bold", sans-serif;
  text-transform: uppercase;
  margin-bottom: 20px;
}
#footer .wrapper .logo .logo svg {
  max-width: 100%;
}
#footer .wrapper .centered-col {
  max-width: 210px;
  margin: 0 auto;
}
#footer .wrapper .opening-hours .line {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #41D7B0;
  padding: 10px 0 5px;
}
#footer .wrapper .opening-hours .line:last-child {
  border-bottom: 0px solid transparent;
}
#footer .wrapper .services-list a {
  display: inline-block;
  color: #fff;
  font: normal 14px "Mont", sans-serif;
  margin-bottom: 15px;
  transition: all 0.3s ease-in-out;
}
#footer .wrapper .services-list a:hover {
  color: #41D7B0;
}
#footer .wrapper .col-social h3 {
  font-size: 25px;
  text-transform: none;
}
#footer .wrapper .col-social .social-icon {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 50px;
}
#footer .wrapper .col-social .social-icon > svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%) rotateZ(0deg);
  transition: all 0.3s ease-in-out;
}
#footer .wrapper .col-social .social-icon > svg path {
  transition: all 0.3s ease-in-out;
}
#footer .wrapper .col-social .social-icon:hover > svg {
  transform: translateX(-50%) translateY(-50%) rotateZ(180deg);
}
#footer .wrapper .col-social .social-icon span {
  display: block;
  position: relative;
  z-index: 2;
}
#footer .wrapper .col-social .social-icon span svg {
  display: block;
  height: 20px;
  fill: #fff;
}
#footer .wrapper .col-social .social-icon span svg path,
#footer .wrapper .col-social .social-icon span svg rect {
  fill: #fff;
}
#footer .wrapper .col-social .social-icon.green > svg path {
  fill: #02ca96;
}
#footer .wrapper .col-social .social-icon.green:hover > svg path {
  fill: #41D7B0;
}
#footer .wrapper .col-social .social-icon.yellow > svg path {
  fill: #f1c400;
}
#footer .wrapper .col-social .social-icon.yellow:hover > svg path {
  fill: #F6D95A;
}
#footer .wrapper .col-social .social-icon.red > svg path {
  fill: #ee2300;
}
#footer .wrapper .col-social .social-icon.red:hover > svg path {
  fill: #F3654D;
}
#footer .wrapper .col-social .social-icon.blue > svg path {
  fill: #3f49c9;
}
#footer .wrapper .col-social .social-icon.blue:hover > svg path {
  fill: #565ecc;
}
#footer .logo {
  margin-bottom: 40px;
  width: 100%;
  max-width: 285px;
}
#footer .logo a {
  display: block;
}
#footer .footer-infos .info {
  margin-bottom: 20px;
}
#footer .footer-infos .info .icon {
  float: left;
  margin-right: 15px;
  margin-top: 7px;
}
#footer .footer-infos .info p {
  overflow: hidden;
}
#footer .footer-infos p {
  color: #fff;
  font: normal 18px/160% arboria, sans-serif;
}
#footer * {
  color: #fff;
}
#footer .copyrights {
  border-top: 1px solid #27309F;
  padding-top: 20px;
  padding-bottom: 20px;
  max-width: 1800px;
  margin: 40px auto 0;
  display: flex;
  justify-content: space-between;
  font-family: arboria, sans-serif;
  font-size: 16px;
}
#footer .copyrights #rubik-api-copyright a {
  line-height: 36px;
}

/*
 * Modify gravity form, chosen and mailpoet styles here
 *
 * Change and modify according to designs
 */
form .gform_body .gform_fields {
  width: auto !important;
}
form .gform_body .gform_fields fieldset {
  outline: none;
  border: 0;
  border-radius: 0;
}
form .gform_body .gform_fields .gfield {
  position: relative;
  margin-bottom: 0px;
}
form .gform_body .gform_fields .gfield:last-child {
  margin-bottom: 0;
}
form .gform_body .gform_fields .gfield:last-child .ginput_container {
  margin-bottom: 0;
}
form .gform_body .gform_fields .gfield:last-child .ginput_container input, form .gform_body .gform_fields .gfield:last-child .ginput_container textarea {
  margin-bottom: 0;
}
form .gform_body .gform_fields .gfield.gfield--width-third {
  padding-right: 7.5px;
  padding-left: 7.5px;
}
form .gform_body .gform_fields .gfield.gfield--width-half {
  padding-right: 7.5px;
  padding-left: 7.5px;
}
form .gform_body .gform_fields .gfield.gfield--width-full {
  padding-right: 20px;
  padding-left: 20px;
}
form .gform_body .gform_fields .gfield.gfield--width-full.gfield--type-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
form .gform_body .gform_fields .gfield.gfield--width-full.gfield--type-total label {
  margin-bottom: 0;
}
form .gform_body .gform_fields .gfield .gfield_label {
  display: block;
  text-align: left;
  font: bold 20px/20px sans-serif;
  margin-bottom: 10px;
}
form .gform_body .gform_fields .gfield .gfield_label .gfield_required {
  display: none;
}
form .gform_body .gform_fields .gfield.hidden_label label, form .gform_body .gform_fields .gfield.hidden_label .gfield_label {
  display: none;
}
form .gform_body .gform_fields .gfield .gfield_description {
  display: block;
  text-align: left;
  font: 400 14px/18px sans-serif;
  margin: 5px 0;
}
form .gform_body .gform_fields .gfield.gform_validation_container {
  display: none;
  content: none;
  padding: 0 0;
  margin: 0 0;
}
form .gform_body .gform_fields .gfield.gfield_error .gfield_description {
  color: red;
}
form .gform_body .gform_fields .gfield .ginput_container {
  position: relative;
}
form .gform_body .gform_fields .gfield .ginput_container input[type=text], form .gform_body .gform_fields .gfield .ginput_container input[type=email], form .gform_body .gform_fields .gfield .ginput_container input[type=tel], form .gform_body .gform_fields .gfield .ginput_container input[type=number], form .gform_body .gform_fields .gfield .ginput_container select, form .gform_body .gform_fields .gfield .ginput_container .ElementsApp input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  max-height: 60px;
  padding: 20px 30px;
  border: 1px solid #293099;
  box-shadow: none;
  background: #fff;
  color: #0d1464 !important;
  font: 400 18px/18px arboria, sans-serif !important;
  border-radius: 0px;
}
form .gform_body .gform_fields .gfield .ginput_container input[type=text]::placeholder, form .gform_body .gform_fields .gfield .ginput_container input[type=email]::placeholder, form .gform_body .gform_fields .gfield .ginput_container input[type=tel]::placeholder, form .gform_body .gform_fields .gfield .ginput_container input[type=number]::placeholder, form .gform_body .gform_fields .gfield .ginput_container select::placeholder, form .gform_body .gform_fields .gfield .ginput_container .ElementsApp input::placeholder {
  color: #0d1464 !important;
  opacity: 1 !important;
}
form .gform_body .gform_fields .gfield .ginput_container input[type=text].ginput_total, form .gform_body .gform_fields .gfield .ginput_container input[type=email].ginput_total, form .gform_body .gform_fields .gfield .ginput_container input[type=tel].ginput_total, form .gform_body .gform_fields .gfield .ginput_container input[type=number].ginput_total, form .gform_body .gform_fields .gfield .ginput_container select.ginput_total, form .gform_body .gform_fields .gfield .ginput_container .ElementsApp input.ginput_total {
  border: none;
  background: transparent;
  padding: 0;
  text-align: right;
}
form .gform_body .gform_fields .gfield .ginput_container textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  max-height: 150px;
  padding: 20px 30px;
  border: 1px solid #293099;
  box-shadow: none;
  background: #fff;
  color: #0d1464;
  font: 400 18px/18px arboria, sans-serif;
  resize: none;
}
form .gform_body .gform_fields .gfield .ginput_container textarea::placeholder {
  color: #0d1464;
  font: 400 18px/18px arboria, sans-serif;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_address_state {
  position: relative;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_address_state .chosen-container-single {
  position: relative;
  width: 100% !important;
  max-width: 100% !important;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address span {
  margin-bottom: 15px;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address span:last-child {
  margin-bottom: 0;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address span label {
  display: block;
  text-align: left;
  font: 400 14px/18px sans-serif;
  margin: 5px;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_select {
  /*
   * To add "custom" arrow to HTML select in gForm - comment out if Chosen or enhanced UI active - can comment back in mobile since chosen does not work
   */
  /*
  &:after{
  	content: '';
  	display: block;
  	position: absolute;
  	@include v-align(absolute);
  	right: 15px;
  	height: 25px;
  	width: 25px;
  	background: {
  		image: url('../images/forms/angle-down.svg');
  		size: contain;
  		position: center;
  		repeat: no-repeat;
  	}
  }
   */
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_select .chosen-container-single {
  width: 100% !important;
  max-width: 100% !important;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_checkbox .gfield_checkbox .gchoice {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_checkbox .gfield_checkbox .gchoice:last-child {
  margin-bottom: 0;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_checkbox .gfield_checkbox .gchoice input[type=checkbox] {
  display: none;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_checkbox .gfield_checkbox .gchoice input[type=checkbox]:checked + label:after {
  opacity: 1;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_checkbox .gfield_checkbox .gchoice label {
  position: relative;
  display: block;
  font: 400 16px/18px sans-serif;
  padding-left: 40px;
  cursor: pointer;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_checkbox .gfield_checkbox .gchoice label:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  height: 30px;
  width: 30px;
  border: 2px solid black;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_checkbox .gfield_checkbox .gchoice label:after {
  content: "";
  display: block;
  position: absolute;
  top: 8px;
  left: 15px;
  transform: translate(-50%, -50%);
  opacity: 0;
  height: 25px;
  width: 25px;
  background-image: url("../images/forms/check.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_radio .gfield_radio .gchoice {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_radio .gfield_radio .gchoice:last-child {
  margin-bottom: 0;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_radio .gfield_radio .gchoice input[type=radio] {
  display: none;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_radio .gfield_radio .gchoice input[type=radio]:checked + label:after {
  opacity: 1;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_radio .gfield_radio .gchoice label {
  position: relative;
  display: block;
  font: 400 16px/18px sans-serif;
  padding-left: 40px;
  cursor: pointer;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_radio .gfield_radio .gchoice label:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  height: 30px;
  width: 30px;
  border: 2px solid black;
  border-radius: 50%;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_radio .gfield_radio .gchoice label:after {
  content: "";
  display: block;
  position: absolute;
  top: 8px;
  left: 15px;
  transform: translate(-50%, -50%);
  opacity: 0;
  height: 25px;
  width: 25px;
  background-image: url("../images/forms/times.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_consent {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_consent input[type=checkbox] {
  display: none;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_consent input[type=checkbox]:checked + label:after {
  opacity: 1;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_consent label {
  position: relative;
  display: block;
  font: 400 16px/18px sans-serif;
  padding-left: 40px;
  cursor: pointer;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_consent label:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  height: 30px;
  width: 30px;
  border: 2px solid black;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_consent label:after {
  content: "";
  display: block;
  position: absolute;
  top: 8px;
  left: 15px;
  transform: translate(-50%, -50%);
  opacity: 0;
  height: 25px;
  width: 25px;
  background-image: url("../images/forms/check.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_fileupload span.gform_fileupload_rules {
  display: block;
  text-align: left;
  font: 400 14px/18px sans-serif;
  margin: 5px;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_fileupload input[type=file] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  max-height: 50px;
  padding: 10px 15px;
  border: 2px solid black;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  color: black;
  font: 400 16px/18px sans-serif;
  cursor: pointer;
}
form .gform_body .gform_fields .gfield .ginput_container .gform_fileupload_multifile .gform_drop_area {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 50px;
  max-height: 50px;
  padding: 10px 15px;
  border: 2px solid black;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  color: black;
  font: 400 16px/18px sans-serif;
  cursor: pointer;
}
form .gform_body .gform_fields .gfield .ginput_container .gform_fileupload_multifile .gform_drop_area span.gform_drop_instructions {
  display: block;
  text-align: left;
  font: 400 14px/14px sans-serif;
  margin-right: 10px;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_creditcard .ginput_full:first-child {
  margin-bottom: 16px;
}
form .gform_body .gform_fields .gfield .ginput_preview {
  display: flex;
  align-items: center;
}
form .gform_body .gform_fields .gfield .ginput_preview button {
  outline: none;
  background: transparent;
  border: 0;
  box-shadow: none;
  height: 30px;
  width: 30px;
  cursor: pointer;
}
form .gform_body .gform_fields .gfield .ginput_preview button .dashicons:before {
  content: "";
}
form .gform_body .gform_fields .gfield .ginput_preview strong {
  display: block;
  text-align: left;
  font: 400 12px/12px sans-serif;
  margin-right: 10px;
}
form .gform_footer {
  position: relative;
  margin-top: 30px;
  padding: 16px 5px !important;
  /*
   * Edit the stroke-line cap, and stroke color directly in /images/loader.svg
   */
}
form .gform_footer.disabled {
  pointer-events: none;
  opacity: 0.5;
}
form .gform_footer .gform_ajax_spinner {
  display: inline-block;
  vertical-align: middle;
  width: 30px;
  height: 30px;
  margin: 10px 10px 10px 30px;
}

.gform_wrapper .gform_validation_errors {
  display: block;
  text-align: center;
  margin: 30px auto;
  border: 1px solid red;
  background: lightpink;
  color: red;
  padding: 15px;
  border-radius: 10px;
}
.gform_wrapper .gform_validation_errors h2, .gform_wrapper .gform_validation_errors .gform_submission_error {
  font: bold 16px/100% sans-serif;
}

.gform_confirmation_wrapper {
  display: block;
  text-align: center;
  margin: 30px auto;
  border: 1px solid green;
  background: lightgreen;
  color: green;
  padding: 15px;
  border-radius: 10px;
}
.gform_confirmation_wrapper .gform_confirmation_message {
  display: block;
  text-align: center;
  font: bold 16px/100% sans-serif;
}

/*
 * Select + Chosen (will apply to gravity forms dropdown automatically)
 */
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  box-shadow: none;
  outline: none;
  width: 100%;
  height: 60px;
  border: 1px solid #293099;
  border-radius: 0;
  padding: 20px 30px !important;
  font: 400 18px/18px arboria, sans-serif !important;
  background: transparent url(../images/icon-arrow-dd_green.svg) no-repeat 95% 50%;
  cursor: pointer;
  color: #0d1464;
}
select option {
  font: normal 18px/18px arboria, sans-serif !important;
  color: #293099;
  background: #fff;
  font-weight: normal !important;
}
select::placeholder {
  padding: 20px 30px;
  color: #293099 !important;
  opacity: 1 !important;
  font: 400 18px/18px arboria, sans-serif;
}

.chosen-container-single {
  width: 100% !important;
}
.chosen-container-single.chosen-with-drop .chosen-single div {
  transform: rotate(180deg);
}
.chosen-container-single.chosen-with-drop .chosen-drop {
  display: block;
}
.chosen-container-single .chosen-single {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  width: 100%;
  height: 50px;
  max-height: 100%;
  border: 2px solid black;
  border-radius: 0;
  box-shadow: none;
  padding: 10px 15px;
  font: 400 16px/18px sans-serif;
  color: black;
  background: transparent;
  cursor: pointer;
}
.chosen-container-single .chosen-single span {
  font: 400 16px/18px sans-serif;
  color: black;
  margin: 0 0 !important;
}
.chosen-container-single .chosen-single div {
  position: absolute;
  bottom: inherit;
  top: inherit;
  right: 15px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 7.5px 0 7.5px;
  border-color: black transparent transparent transparent;
}
.chosen-container-single .chosen-single div b {
  display: none !important;
  padding: 0 0 !important;
  margin: 0 0 !important;
}
.chosen-container-single .chosen-drop {
  display: none;
  position: absolute;
  width: 100%;
  margin: 0 0;
  box-shadow: none;
  z-index: 1;
  top: calc(100% - 2px);
  border-radius: 0 0;
  border: 2px solid black;
}
.chosen-container-single .chosen-drop .chosen-search {
  margin: 0 0 !important;
  padding: 0 0 !important;
  display: none !important;
}
.chosen-container-single .chosen-drop .chosen-results {
  border: 0;
  background: white;
  border-radius: 0;
  max-height: 150px;
  overflow-y: scroll;
  height: auto;
  padding: 0 0;
  margin: 0 0;
}
.chosen-container-single .chosen-drop .chosen-results li {
  position: relative;
  display: block;
  padding: 15px;
  font: 400 16px/18px sans-serif;
  color: black;
  cursor: pointer;
  text-align: left;
}
.chosen-container-single .chosen-drop .chosen-results li.disabled-result, .chosen-container-single .chosen-drop .chosen-results li.gf_placeholder {
  display: none !important;
}
.chosen-container-single .chosen-drop .chosen-results li.highlighted {
  background: grey;
  background-color: grey;
  color: white;
}

.gravity-theme .ginput_full[data-payment-element=false] .StripeElement {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  display: block;
  width: 100%;
  height: 100% !important;
  max-height: 60px;
  padding: 20px 30px !important;
  border: 1px solid #293099 !important;
  box-shadow: none;
  background: #fff;
  border-radius: 0px;
}

.ElementsApp input {
  font-family: arboria, sans-serif;
  color: #0d1464 !important;
  font-size: 18px !important;
  font-weight: 400;
}
.ElementsApp input::placeholder {
  color: #0d1464 !important;
  opacity: 1 !important;
}

@media screen and (max-width: 1360px) {
  .banner .col-text h1 {
    font-size: 70px;
  }
  .banner.why-consult {
    padding-top: 150px;
    min-height: calc(100vh - 150px);
  }
  .banner.why-consult .col-image .person-container {
    min-width: auto;
  }
  .banner.why-consult .col-image .person-container.person-1 {
    width: 48%;
  }
  .banner.why-consult .col-image .person-container.person-2 {
    width: 50%;
  }
  .banner.why-consult .col-image .person-container.person-3 {
    width: 85%;
  }
  .banner.value {
    padding-top: 250px;
  }
  .banner.value h1 {
    font-size: 70px;
  }
  .banner.contact .wrapper .text-container h1 {
    font-size: 50px;
  }

  .slice {
    padding: 100px 0;
  }
  .slice.home-banner {
    padding-top: 200px;
  }
  .slice.home-banner .col-text h1 {
    font-size: 70px;
  }
  .slice.about-us .inner .bg-word {
    font-size: 200px;
  }
  .slice.featured-articles .featured-blog-block .col-text {
    padding: 80px 100px 80px 80px;
  }
  .slice.services-category .reason-container ul li {
    font-size: 24px;
    padding-top: 20px;
    margin-bottom: 20px;
  }
  .slice.services-category .reason-container ul li:before {
    top: 29px;
  }
  .slice.services-category .text-container {
    margin: -140px auto 80px;
  }
  .slice.services-category.adolescents:before {
    width: calc(100% - 40px);
    left: 20px;
  }
  .slice.call-to-action .wrapper .col-text {
    padding: 60px;
  }
  .slice.service-block {
    padding: 200px 0;
  }
  .slice.service-block .col-title .number {
    top: -120px;
    font-size: 200px;
  }

  .single-post .blog-top-content .row .col-text, .single-post .blog-top-content form .gform_body .gform_fields .col-text, form .gform_body .single-post .blog-top-content .gform_fields .col-text, form .gform_body .gform_fields .gfield .single-post .blog-top-content .ginput_container.ginput_container_address .col-text {
    padding-top: 40px;
    justify-content: center;
    display: flex;
  }
  .single-post .blog-middle-content {
    padding-top: 100px;
  }
}
@media screen and (max-width: 1280px) {
  .row.gutter-50, form .gform_body .gutter-50.gform_fields, form .gform_body .gform_fields .gfield .gutter-50.ginput_container.ginput_container_address {
    margin-left: -20px;
    margin-right: -20px;
  }
  .row.gutter-50 > div[class*=col-], form .gform_body .gutter-50.gform_fields > div[class*=col-], form .gform_body .gform_fields .gfield .gutter-50.ginput_container.ginput_container_address > div[class*=col-] {
    padding-left: 20px;
    padding-right: 20px;
  }
  .row.gutter-80, form .gform_body .gutter-80.gform_fields, form .gform_body .gform_fields .gfield .gutter-80.ginput_container.ginput_container_address {
    margin-left: -20px;
    margin-right: -20px;
  }
  .row.gutter-80 > div[class*=col-], form .gform_body .gutter-80.gform_fields > div[class*=col-], form .gform_body .gform_fields .gfield .gutter-80.ginput_container.ginput_container_address > div[class*=col-] {
    padding-left: 20px;
    padding-right: 20px;
  }
  .row.gutter-100, form .gform_body .gutter-100.gform_fields, form .gform_body .gform_fields .gfield .gutter-100.ginput_container.ginput_container_address {
    margin-left: -30px;
    margin-right: -30px;
  }
  .row.gutter-100 > div[class*=col-], form .gform_body .gutter-100.gform_fields > div[class*=col-], form .gform_body .gform_fields .gfield .gutter-100.ginput_container.ginput_container_address > div[class*=col-] {
    padding-left: 30px;
    padding-right: 30px;
  }
  .row.gutter-140, form .gform_body .gutter-140.gform_fields, form .gform_body .gform_fields .gfield .gutter-140.ginput_container.ginput_container_address {
    margin-left: -40px;
    margin-right: -40px;
  }
  .row.gutter-140 > div[class*=col-], form .gform_body .gutter-140.gform_fields > div[class*=col-], form .gform_body .gform_fields .gfield .gutter-140.ginput_container.ginput_container_address > div[class*=col-] {
    padding-left: 40px;
    padding-right: 40px;
  }

  header {
    top: 20px;
    width: calc(100% - 40px);
  }

  .banner.services .col-image .decoration.decoration-2 {
    width: 30%;
  }
  .banner.value .value-block {
    background: #F4F4FD;
    padding: 50px 30px;
  }
  .banner.contact {
    padding-top: 150px;
  }
  .banner.contact .wrapper .text-container {
    padding: 60px 40px;
  }

  .slice {
    padding: 80px 0;
  }
  .slice h2 {
    margin-bottom: 40px;
  }
  .slice.about-us .inner .bg-img {
    width: 20%;
  }
  .slice.about-us .inner .wrapper .content .the-content p {
    font-size: 20px;
  }
  .slice .slice.testimonials .slice-intro .icon {
    top: -50px;
  }

  .service-block .col-image .decoration {
    left: calc(100% - 85px);
    bottom: calc(100% - 85px);
    width: 100px;
  }
}
@media screen and (max-width: 1279px) {
  #header .site-nav,
#header .desktop-only {
    display: none;
  }
  #header .mobile-nav-trigger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 55px;
    height: 30px;
    pointer-events: all;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  #header .mobile-nav-trigger span {
    width: 45px;
    height: 5px;
    border-radius: 0px;
    display: block;
    background: white;
    flex: 0 0 auto;
    transform-origin: center;
    opacity: 1;
    transition: all 0.3s ease-in-out;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  #header .mobile-nav-trigger span:nth-child(1) {
    transform: translateY(-3px);
    transition: all 0.3s ease-in-out 0.3s;
  }
  #header .mobile-nav-trigger span:nth-child(2) {
    position: relative;
    transition: all 0.3s ease-in-out 0.3s;
  }
  #header .mobile-nav-trigger span:nth-child(2):before, #header .mobile-nav-trigger span:nth-child(2):after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 0px;
    background: white;
    transition: all 0.3s ease-in-out;
  }
  #header .mobile-nav-trigger span:nth-child(3) {
    transform: translateY(3px);
    transition: all 0.3s ease-in-out 0.3s;
  }
  #header .mobile-nav-trigger:hover {
    /* span{
         &:nth-child(2){
             transition:$transition 0.3s;
         }
         &:nth-child(1),
         &:nth-child(3){
             transform:translateY(0px);
         }
     }*/
  }
  #header.active .mobile-nav-trigger span:nth-child(1) {
    transform: translateY(13px);
    opacity: 0;
    transition: all 0.3s ease-in-out;
  }
  #header.active .mobile-nav-trigger span:nth-child(3) {
    transform: translateY(-13px);
    opacity: 0;
    transition: all 0.3s ease-in-out;
  }
  #header.active .mobile-nav-trigger span:nth-child(2) {
    position: relative;
    background: transparent;
    transition: all 0.3s ease-in-out;
  }
  #header.active .mobile-nav-trigger span:nth-child(2):before {
    transform: rotateZ(135deg);
    transition: all 0.3s ease-in-out 0.3s;
  }
  #header.active .mobile-nav-trigger span:nth-child(2):after {
    transform: rotateZ(225deg);
    transition: all 0.3s ease-in-out 0.3s;
  }

  #mobile-nav {
    position: fixed;
    z-index: 10;
    top: 0px;
    right: 0;
    width: 100%;
    max-width: 450px;
    height: 100vh;
    overflow-x: scroll;
    padding-top: 180px;
    background: #0d1464;
    display: flex;
    justify-content: center;
    align-items: start;
    pointer-events: none;
    transition: all 0.3s ease-in-out;
    transform: translateX(100%);
    -webkit-box-shadow: 0 15px 10px 10px rgba(0, 0, 0, 0.2);
    box-shadow: 0 15px 10px 10px rgba(0, 0, 0, 0.2);
    opacity: 0;
  }
  #mobile-nav > ul {
    width: calc(100% - 80px);
    text-align: left;
  }
  #mobile-nav > ul li {
    margin-bottom: 30px;
  }
  #mobile-nav > ul li a:not(.btn) {
    display: inline-block;
    position: relative;
    color: #fff;
    font: bold 20px arboria, sans-serif;
    padding: 5px 10px;
    transition: all 0.3s ease-in-out;
  }
  #mobile-nav > ul li a:not(.btn):hover {
    color: #3f49c9;
  }
  #mobile-nav > ul li.is-button a {
    padding: 20px 25px;
    background: #3f49c9;
  }
  #mobile-nav > ul li.is-button a svg path {
    fill: #0d1464;
  }
  #mobile-nav > ul li.menu-item-has-children {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
  }
  #mobile-nav > ul li.menu-item-has-children .arrow {
    content: "";
    width: 20px;
    heighT: 20px;
    background: url("../images/icon-arrow-dd_green.svg") no-repeat center center;
    background-size: contain;
    flex: 0 0 auto;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  #mobile-nav > ul li.menu-item-has-children .arrow.open {
    transform: rotateZ(180deg);
  }
  #mobile-nav > ul li.menu-item-has-children .sub-menu {
    display: none;
    width: 100%;
    padding-left: 20px;
    padding-bottom: 10px;
  }
  #mobile-nav > ul li.menu-item-has-children .sub-menu li {
    margin-bottom: 10px;
  }
  #mobile-nav > ul li.menu-item-has-children .sub-menu li a {
    font-size: 17px;
    font-weight: normal;
  }
  #mobile-nav.active {
    transform: translateX(0);
    pointer-events: all;
    opacity: 1;
  }
}
@media screen and (max-width: 1199px) {
  .banner.contact .wrapper .text-container .col-opening-hours .opening-hours {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 1080px) {
  .banner.services {
    padding-bottom: 60px;
  }
  .banner.value {
    padding-top: 175px;
  }
  .banner.value h1 {
    font-size: 55px;
  }
  .banner.blog {
    padding-top: 175px;
  }
  .banner.blog h1 {
    font-size: 55px;
  }
  .banner.contact .wrapper .text-container h1 {
    font-size: 45px;
  }
  .banner .col-text h1 {
    font-size: 55px;
  }

  .slice h2 {
    font-size: 40px;
  }
  .slice.home-banner .col-text h1 {
    font-size: 55px;
  }
  .slice.home-banner .col-text p {
    font-size: 25px;
  }
  .slice.testimonials .slice-intro .icon {
    top: -35px;
  }
  .slice.services .service-row {
    padding: 100px 0;
  }
  .slice.services .service-row .col-image svg {
    top: -105px;
    right: -35px;
    width: 140px;
  }
  .slice.services .service-row .col-text .services-list .service-item h3 a {
    font-size: 23px;
  }
  .slice.featured-articles .featured-blog-block .col-text {
    padding: 60px 60px 60px 60px;
  }
  .slice.featured-articles .featured-blog-block .col-text .content h3 {
    font-size: 35px;
    margin-bottom: 25px;
  }
  .slice.services-category .big-img .letter-container .letter {
    font-size: 250px;
  }
  .slice.services-category .big-img .letter-container .letter.letter-1 {
    left: 5%;
  }
  .slice.services-category .big-img .letter-container .letter.letter-2 {
    left: 3%;
  }
  .slice.services-category .big-img .letter-container .letter.letter-3 {
    right: 3%;
  }
  .slice.call-to-action .wrapper .bg {
    width: 50%;
    height: 75%;
    right: 0px;
    top: auto;
    bottom: 0;
  }
  .slice.founder .col-text h3 {
    font-size: 40px;
  }
  .slice.service-block {
    padding: 100px 0;
  }
  .slice.service-block .col-lg-4.col-image, .slice.service-block form .gform_body .gform_fields .col-image.gfield.gfield--width-third, form .gform_body .gform_fields .slice.service-block .col-image.gfield.gfield--width-third,
.slice.service-block .col-lg-4.col-text,
.slice.service-block form .gform_body .gform_fields .col-text.gfield.gfield--width-third,
form .gform_body .gform_fields .slice.service-block .col-text.gfield.gfield--width-third {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .slice.service-block .col-title {
    margin-top: 150px;
    margin-bottom: 60px;
    padding-top: 60px;
  }
  .slice.service-block .col-title.desktop-only {
    display: none !important;
  }
  .slice.service-block .col-title.mobile-only {
    display: block;
  }
  .slice.service-block .col-title.mobile-only .inner {
    position: relative;
  }
  .slice.service-block .col-title.mobile-only .number {
    top: -135px;
  }
  .slice.service-block .col-title h3 {
    font-size: 25px;
  }

  .testimonial-block {
    padding: 60px 40px;
  }
  .testimonial-block .inner .the-content {
    margin-bottom: 20px;
  }

  .single-post .blog-top-content {
    padding-top: 150px;
  }
  .single-post .blog-top-content h1 {
    font-size: 60px;
  }
  .single-post .blog-top-content .row .col-text, .single-post .blog-top-content form .gform_body .gform_fields .col-text, form .gform_body .single-post .blog-top-content .gform_fields .col-text, form .gform_body .gform_fields .gfield .single-post .blog-top-content .ginput_container.ginput_container_address .col-text {
    padding-top: 0;
  }
  .single-post .blog-middle-content {
    padding-bottom: 150px;
  }
  .single-post .blog-middle-content .article-quote p {
    font-size: 40px;
  }
  .single-post .blog-bottom-content .col-image {
    margin-top: 60px;
  }

  #footer .footer-infos p {
    font-size: 16px;
  }
}
@media screen and (max-width: 991px) {
  .banner.why-consult .col-image:before {
    padding-top: 75%;
  }
  .banner.why-consult .col-image .person-container.person-1 {
    width: 40%;
    left: -30px;
  }
  .banner.why-consult .col-image .person-container.person-2 {
    width: 40%;
    left: 40%;
  }
  .banner.why-consult .col-image .person-container.person-3 {
    width: 70%;
    right: 50px;
  }
  .banner.value .row .value-block, .banner.value form .gform_body .gform_fields .value-block, form .gform_body .banner.value .gform_fields .value-block, form .gform_body .gform_fields .gfield .banner.value .ginput_container.ginput_container_address .value-block {
    margin: 0 auto 40px;
    max-width: 400px;
  }
  .banner.services .col-text {
    margin-bottom: 60px;
  }
  .banner.contact .wrapper .text-container {
    width: 60%;
  }
  .banner ul.service-cat-list {
    width: 100%;
    display: flex;
    gap: 30px;
  }

  .slice {
    padding: 60px 0;
  }
  .slice.page-404 {
    padding-top: 175px;
  }
  .slice.home-banner .col-text {
    margin-bottom: 60px;
  }
  .slice.services .service-row {
    padding: 75px 0;
  }
  .slice.services .service-row .col-text .services-list .service-item {
    padding: 15px 0;
  }
  .slice.services .service-row .col-text .services-list .service-item h3 a {
    font-size: 20px;
  }
  .slice.services .service-row:nth-child(even) .col-text.offset-lg-1 {
    margin-right: 0 !important;
  }
  .slice.featured-articles .featured-blog-block .col-image {
    padding-top: 40%;
  }
  .slice.featured-articles .splide__arrows .splide__arrow {
    background-position: 30% center;
    width: 70px;
    height: 70px;
  }
  .slice.services-category .text-container {
    margin-top: -60px;
    max-width: 85%;
    padding: 50px;
  }
  .slice.services-category .reason-container {
    padding: 0;
  }
  .slice.call-to-action .wrapper .col-text {
    padding: 60px 60px 0px 60px;
  }
  .slice.call-to-action .wrapper .col-image {
    padding-top: 25%;
  }
  .slice.call-to-action .wrapper .col-image img {
    position: absolute;
    bottom: 0;
    left: 50%;
    max-width: 40%;
  }
  .slice.call-to-action .wrapper .bg {
    width: 50%;
    height: 40%;
  }
  .slice.service-block {
    padding: 60px 0;
  }
  .slice.founder .col-image {
    margin-bottom: 80px;
  }
  .slice.team .team-block {
    padding: 40px 40px;
  }
  .slice.team .team-block .infos {
    transition: all 0.3s ease-in-out;
    opacity: 1;
    height: auto;
  }
  .slice.team .team-block .team-member-name {
    font-size: 30px;
  }
  .slice.team .team-block:after {
    content: "";
  }
  .slice.team .team-block:hover:after {
    transform: translateX(0) translateY(0%);
  }
  .slice.team .team-block:hover .image {
    width: 65%;
    margin-left: 35%;
    transition: all 0.3s ease-in-out 0.3s;
  }

  .single-post .blog-top-content .row .col-image, .single-post .blog-top-content form .gform_body .gform_fields .col-image, form .gform_body .single-post .blog-top-content .gform_fields .col-image, form .gform_body .gform_fields .gfield .single-post .blog-top-content .ginput_container.ginput_container_address .col-image {
    margin-bottom: 60px;
  }
  .single-post .blog-middle-content {
    padding-bottom: 60px;
  }
  .single-post .blog-middle-content .the-content {
    position: relative;
    z-index: 3;
  }
  .single-post .blog-middle-content .article-quote {
    margin-top: 60px;
  }
  .single-post .blog-bottom-content {
    margin-bottom: 30px;
  }

  #footer .wrapper .centered-col {
    max-width: 250px;
    margin: 40px 0 0 0;
  }
  #footer .wrapper .col-service .centered-col {
    float: right;
  }

  .workshop .image-workshop {
    height: 600px;
  }
  .workshop .image-workshop img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
  }

  .date-list li:before {
    top: 30px;
  }
}
@media screen and (max-width: 767px) {
  .btn {
    font-size: 18px;
    padding: 15px 20px 15px 20px;
  }

  .wrapper {
    width: calc(100% - 70px);
  }

  .banner.contact .wrapper .text-container {
    margin-top: 50vh;
    width: 100%;
  }
  .banner.contact .google-map {
    height: 50%;
  }

  .slice .slice-intro {
    margin-bottom: 0px;
    padding-bottom: 0px;
  }
  .slice .slice-intro h2 {
    margin-bottom: 40px;
  }
  .slice.testimonials .slice-intro h2 {
    margin-bottom: 40px;
  }
  .slice.testimonials .testimonial-block .inner {
    width: 100%;
  }
  .slice.services .service-row {
    padding: 40px 0;
  }
  .slice.services .service-row .col-image {
    margin-bottom: 60px;
    order: 1 !important;
  }
  .slice.services .service-row .col-text {
    order: 2 !important;
  }
  .slice.services-category .big-img .letter-container .letter {
    font-size: 150px;
  }
  .slice.services-category .text-container {
    padding: 50px 30px;
  }
  .slice.services-category .text-container .the-content h3 {
    margin-bottom: 20px;
    font-size: 35px;
  }
  .slice.services-category .reason-container ul li {
    width: 100%;
  }
  .slice.services-category .reason-container ul li:nth-child(2) {
    border-top: 2px solid;
  }
  .slice.services-category.enfants .reason-container li:nth-child(2) {
    border-top: 1px solid #F6D95A;
  }
  .slice.services-category.adolescents .reason-container li:nth-child(2) {
    border-top: 1px solid #41D7B0;
  }
  .slice.services-category.adultes .reason-container li:nth-child(2) {
    border-top: 1px solid #F3654D;
  }
  .slice.call-to-action .wrapper .col-text .the-content h3 {
    font-size: 35px;
  }
  .slice.service-block .col-lg-4.col-image, .slice.service-block form .gform_body .gform_fields .col-image.gfield.gfield--width-third, form .gform_body .gform_fields .slice.service-block .col-image.gfield.gfield--width-third {
    margin-bottom: 60px;
  }
  .slice.service-block .col-lg-4.col-image, .slice.service-block form .gform_body .gform_fields .col-image.gfield.gfield--width-third, form .gform_body .gform_fields .slice.service-block .col-image.gfield.gfield--width-third, .slice.service-block .col-lg-4.col-text, .slice.service-block form .gform_body .gform_fields .col-text.gfield.gfield--width-third, form .gform_body .gform_fields .slice.service-block .col-text.gfield.gfield--width-third {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    z-index: 5;
  }
  .slice.service-block .rellax {
    transform: none !important;
  }

  .blog-post-list .blog-block {
    margin-bottom: 80px;
  }
  .blog-post-list .blog-block .image .blog-infos h3 {
    font: bold 25px/100% arboria, sans-serif;
    margin-bottom: 20px;
  }
  .blog-post-list .blog-block .content h3 a {
    font-size: 25px;
    margin-bottom: 30px;
  }
  .blog-post-list .blog-block .content p {
    font-size: 16px;
  }

  .filter-container {
    position: static;
  }
  .filter-container .category-filter-dropdown {
    background: #F4F4FD url(../images/icon-arrow-dd.svg) no-repeat 95% 58%;
    font: bold 16px/100% arboria, sans-serif;
  }

  .single-post .blog-middle-content .article-quote p {
    font-size: 30px;
  }
  .single-post .article-nav .wrapper .post-navigation .nav-links .nav-previous a {
    padding-left: 45px;
  }
  .single-post .article-nav .wrapper .post-navigation .nav-links .nav-previous a:before {
    width: 30px;
  }
  .single-post .article-nav .wrapper .post-navigation .nav-links .nav-next a {
    padding-right: 45px;
  }
  .single-post .article-nav .wrapper .post-navigation .nav-links .nav-next a:before {
    width: 30px;
  }

  #footer .wrapper {
    padding-top: 30px;
  }

  .privacy-policy .slice h1 {
    font-size: 40px;
  }
  .privacy-policy .slice h2 {
    font-size: 28px;
    margin-bottom: 5px;
  }

  #footer .copyrights {
    margin-top: 0;
    flex-wrap: wrap;
  }
  #footer .copyrights #rubik-api-copyright {
    width: 100%;
    margin-top: 20px;
  }
}
@media screen and (max-width: 575px) {
  .workshop .image-workshop {
    height: 400px;
  }

  .wrapper {
    width: calc(100% - 40px);
  }

  /*- Partners -*/
  .partners .splide__track {
    margin: auto;
  }
  .partners .splide__track .splide__slide {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .partners .splide__track .splide__slide div {
    min-height: 10rem;
  }

  #header .logo {
    max-width: 200px;
  }
  #header .logo svg {
    max-width: 100%;
  }
  #header .mobile-nav-trigger {
    transform: scale(0.7);
  }

  .banner.value h1 {
    font-size: 40px;
  }
  .banner.value .row .value-bloc, .banner.value form .gform_body .gform_fields .value-bloc, form .gform_body .banner.value .gform_fields .value-bloc, form .gform_body .gform_fields .gfield .banner.value .ginput_container.ginput_container_address .value-bloc {
    padding: 40px 30px;
  }
  .banner.blog h1 {
    font-size: 40px;
  }
  .banner.contact .wrapper .text-container {
    padding: 40px 20px;
  }
  .banner.contact .wrapper .text-container h1 {
    font-size: 40px;
  }
  .banner.why-consult .col-text .service-cat-list {
    gap: 20px;
  }
  .banner.why-consult .col-text .service-cat-list li {
    width: 100%;
    margin-bottom: 0px;
  }
  .banner.why-consult .col-image .person-container.person-1 {
    left: 0;
  }
  .banner.why-consult .col-image .person-container.person-2 {
    width: 42%;
    left: 43%;
  }
  .banner.why-consult .col-image .person-container.person-3 {
    right: 35px;
  }
  .banner .col-text h1 {
    font-size: 40px;
  }
  .banner ul.service-cat-list {
    gap: 30px;
    flex-wrap: wrap;
  }
  .banner ul.service-cat-list li {
    margin-bottom: 0;
  }

  .slice {
    padding: 40px 0;
  }
  .slice h2 {
    font-size: 30px;
    margin-bottom: 30px;
  }
  .slice.home-banner .col-text h1 {
    font-size: 35px;
  }
  .slice.home-banner .col-text p {
    font-size: 20px;
  }
  .slice.about-us .inner .bg-word {
    font-size: 140px;
  }
  .slice.about-us .inner .wrapper .content .the-content {
    margin-bottom: 40px;
  }
  .slice.about-us .inner .wrapper .content .the-content p {
    font-size: 18px;
  }
  .slice.testimonials .slice-intro h2 {
    margin-bottom: 30px;
  }
  .slice.testimonials .slice-intro .icon {
    top: 0;
  }
  .slice.testimonials .testimonial-block {
    padding: 40px 20px;
  }
  .slice.testimonials .splide__arrows .splide__arrow {
    background: #0d1464 url(../images/arrow-slider_white.svg) no-repeat 40% center;
    width: 50px;
    height: 50px;
  }
  .slice.testimonials .splide__arrows .splide__arrow.splide__arrow--prev {
    transform: rotateZ(180deg) translateX(15px);
  }
  .slice.testimonials .splide__arrows .splide__arrow.splide__arrow--next {
    transform: translateX(15px);
  }
  .slice.testimonials .splide__arrows .splide__arrow:hover {
    background: #3f49c9 url(../images/arrow-slider_white.svg) no-repeat 40% center;
  }
  .slice.testimonials .splide__arrows .splide__arrow:hover.splide__arrow--prev {
    transform: rotateZ(180deg) translateX(15px);
  }
  .slice.testimonials .splide__arrows .splide__arrow:hover.splide__arrow--next {
    transform: translateX(15px);
  }
  .slice.services .service-row .col-text h2 {
    font: bold 26px/100% arboria, sans-serif;
    margin-bottom: 25px;
  }
  .slice.services .service-row .col-text .services-list .service-item h3 a {
    font-size: 18px;
  }
  .slice.featured-articles .featured-blog-block .col-text {
    padding: 40px 45px;
  }
  .slice.featured-articles .featured-blog-block .col-text .content h3 {
    font-size: 30px;
    margin-bottom: 25px;
  }
  .slice.services-category.adolescents:before {
    display: none;
  }
  .slice.services-category .text-container {
    margin-top: -5px;
    max-width: 100%;
    padding: 40px 20px;
    margin-bottom: 15px;
  }
  .slice.services-category .reason-container ul li {
    font-size: 20px;
  }
  .slice.services-category .big-img .letter-container .letter {
    font-size: 90px;
    line-height: 100%;
  }
  .slice.services-category .big-img .letter-container .letter.letter-1 {
    top: 0;
  }
  .slice.services-category .big-img .letter-container .letter.letter-2 {
    top: 50%;
  }
  .slice.services-category .big-img .letter-container .letter.letter-3 {
    top: 35%;
  }
  .slice.call-to-action .wrapper .col-text {
    padding: 40px 40px 60px 40px;
  }
  .slice.team .team-block {
    width: calc(100% - 30px);
    padding: 40px 30px;
  }

  .blog-post-list .blog-block {
    margin-bottom: 60px;
  }

  .single-post .blog-top-content {
    padding-bottom: 60px;
  }
  .single-post .blog-top-content h1 {
    font-size: 40px;
  }
  .single-post .blog-top-content .row, .single-post .blog-top-content form .gform_body .gform_fields, form .gform_body .single-post .blog-top-content .gform_fields, .single-post .blog-top-content form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address, form .gform_body .gform_fields .gfield .single-post .blog-top-content .ginput_container.ginput_container_address {
    margin-top: 50px;
  }
  .single-post .blog-middle-content {
    padding-top: 60px;
  }
  .single-post .blog-bottom-content {
    padding-top: 60px;
  }
  .single-post .article-nav .wrapper .icon {
    width: 40px;
  }
  .single-post .article-nav .wrapper .post-navigation .nav-links .nav-previous a {
    font: bold 14px/100% arboria, sans-serif;
    padding-left: 0px;
  }
  .single-post .article-nav .wrapper .post-navigation .nav-links .nav-previous a:before {
    display: none;
  }
  .single-post .article-nav .wrapper .post-navigation .nav-links .nav-next a {
    font: bold 14px/100% arboria, sans-serif;
    padding-right: 0px;
  }
  .single-post .article-nav .wrapper .post-navigation .nav-links .nav-next a:before {
    display: none;
  }

  #footer .wrapper > .row > .div, #footer form .gform_body .wrapper > .gform_fields > .div, form .gform_body #footer .wrapper > .gform_fields > .div, #footer form .gform_body .gform_fields .gfield .wrapper > .ginput_container.ginput_container_address > .div, form .gform_body .gform_fields .gfield #footer .wrapper > .ginput_container.ginput_container_address > .div {
    margin-bottom: 40px;
  }
  #footer .wrapper .col-social {
    text-align: left !important;
  }
  #footer .wrapper .col-social h3 {
    font-size: 25px;
    text-transform: none;
  }
  #footer .wrapper .col-service .centered-col {
    float: none;
  }
}

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