:root {
  --animate-duration: 1s;
  --animate-delay: 1s;
  --animate-repeat: 1;
}

.animate__animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-duration: var(--animate-duration);
  animation-duration: var(--animate-duration);
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animate__animated.animate__infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.animate__animated.animate__repeat-1 {
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-iteration-count: var(--animate-repeat);
  animation-iteration-count: var(--animate-repeat);
}

.animate__animated.animate__repeat-2 {
  -webkit-animation-iteration-count: 2;
  animation-iteration-count: 2;
  -webkit-animation-iteration-count: calc(var(--animate-repeat) * 2);
  animation-iteration-count: calc(var(--animate-repeat) * 2);
}

.animate__animated.animate__repeat-3 {
  -webkit-animation-iteration-count: 3;
  animation-iteration-count: 3;
  -webkit-animation-iteration-count: calc(var(--animate-repeat) * 3);
  animation-iteration-count: calc(var(--animate-repeat) * 3);
}

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

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

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

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

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

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

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

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

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

@media print, (prefers-reduced-motion: reduce) {
  .animate__animated {
    -webkit-animation-duration: 1ms !important;
    animation-duration: 1ms !important;
    -webkit-transition-duration: 1ms !important;
    transition-duration: 1ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
  }
  .animate__animated[class*=Out] {
    opacity: 0;
  }
}
/* Attention seekers  */
@-webkit-keyframes bounce {
  from, 20%, 53%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0) scaleY(1.1);
    transform: translate3d(0, -30px, 0) scaleY(1.1);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0) scaleY(1.05);
    transform: translate3d(0, -15px, 0) scaleY(1.05);
  }
  80% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0) scaleY(0.95);
    transform: translate3d(0, 0, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}
@keyframes bounce {
  from, 20%, 53%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0) scaleY(1.1);
    transform: translate3d(0, -30px, 0) scaleY(1.1);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0) scaleY(1.05);
    transform: translate3d(0, -15px, 0) scaleY(1.05);
  }
  80% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0) scaleY(0.95);
    transform: translate3d(0, 0, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}
.animate__bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

body {
  padding: 0;
  margin: 0;
}

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

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

.alignright {
  float: right;
}

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

.alignleft {
  float: left;
}

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

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

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

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

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

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

.undo-p {
  margin: 0;
}

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

svg {
  max-height: 100%;
}

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

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

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

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

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

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

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

.flat-all {
  padding: 0;
}

.fleft {
  float: left;
}

.fright {
  float: right;
}

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

@-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 {
  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, .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 {
  -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 {
    -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 {
    -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
 */
@font-face {
  font-family: "Gridnik";
  src: url("../fonts/gridnik_regular.woff2") format("woff2"), url("../fonts/gridnik_regular.woff") format("woff");
  font-weight: normal;
  font-display: swap;
}
@keyframes zoomAndPan {
  0% {
    transform-origin: right center;
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes panUp {
  0% {
    transform-origin: left top;
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes panDown {
  0% {
    transform-origin: left top;
    transform: translateY(0);
  }
  50% {
    transform: translateY(5%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes skewedPanLeft {
  0% {
    transform: skewX(14deg) translateX(-100px);
  }
  100% {
    transform: skewX(14deg) translateX(-200px);
  }
}
.panAndZoom {
  animation: zoomAndPan 50s;
}

.panUp {
  animation: panUp 30s;
}

.panDown {
  animation: panDown 40s;
}

.button, .gform_wrapper .gform_footer .gform_button {
  font: 500 20px/100% "Gridnik", sans-serif;
  letter-spacing: 2px;
  padding: 15px 35px;
  color: white;
  background: black;
  text-transform: uppercase;
  display: inline-block;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
  white-space: nowrap;
  cursor: pointer;
}
.button span, .gform_wrapper .gform_footer .gform_button span {
  position: relative;
  z-index: 2;
}
.button:before, .gform_wrapper .gform_footer .gform_button:before {
  content: "";
  position: absolute;
  background: white;
  transform: skewX(-14deg);
  width: 120%;
  height: 100%;
  top: 0;
  right: 120%;
  transition: all 0.3s ease-in-out;
}
.button.outline, .gform_wrapper .gform_footer .gform_button {
  background: transparent;
  border: 1px solid black;
  color: black;
}
.button.outline:before, .gform_wrapper .gform_footer .gform_button:before {
  background: black;
  z-index: -1;
}
.button.outline:hover, .gform_wrapper .gform_footer .gform_button:hover {
  color: white;
}
.button.outline.white, .gform_wrapper .gform_footer .white.gform_button {
  color: white;
  border: 1px solid white;
}
.button.outline.white:before, .gform_wrapper .gform_footer .white.gform_button:before {
  background: white;
  z-index: -1;
}
.button.outline.white:hover, .gform_wrapper .gform_footer .white.gform_button:hover {
  color: black;
}
.button:hover, .gform_wrapper .gform_footer .gform_button:hover {
  text-decoration: none !important;
  color: black;
}
.button:hover:before, .gform_wrapper .gform_footer .gform_button:hover:before {
  right: -10%;
}

html,
body {
  font-family: "Gridnik", sans-serif;
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
}

.slice {
  position: relative;
  z-index: 2;
  background: white;
  padding: 200px 0px;
  overflow: hidden;
}
.slice.no-padding {
  padding: 0;
}
.slice.no-p-top {
  padding-top: 0;
}
.slice.small-p-bottom {
  padding-bottom: 100px;
}
.slice.small-p-top {
  padding-top: 100px;
}

.wrapper {
  width: calc(100% - 160px);
  margin: 0 auto;
}
.wrapper.medium {
  max-width: 1470px;
}
.wrapper.small {
  max-width: 1180px;
}

.row.gutter-150 {
  margin-left: -75px;
  margin-right: -75px;
}
.row.gutter-150 > div[class*=col-] {
  padding-left: 75px;
  padding-right: 75px;
}
.row.gutter-160 {
  margin-left: -80px;
  margin-right: -80px;
}
.row.gutter-160 > div[class*=col-] {
  padding-left: 80px;
  padding-right: 80px;
}
.row.gutter-330 {
  margin-left: -165px;
  margin-right: -165px;
}
.row.gutter-330 > div[class*=col-] {
  padding-left: 165px;
  padding-right: 165px;
}

.the-content h1 {
  font: 500 55px/110% "Gridnik", sans-serif;
  letter-spacing: 2px;
  margin-bottom: 60px;
  color: black;
}
.the-content h2 {
  font: 500 50px/110% "Gridnik", sans-serif;
  letter-spacing: 2px;
  margin-bottom: 60px;
  color: black;
}
.the-content h3 {
  font: 500 45px/110% "Gridnik", sans-serif;
  letter-spacing: 2px;
  color: black;
  margin-bottom: 40px;
}
.the-content h4 {
  font: 500 35px/110% "Gridnik", sans-serif;
  letter-spacing: 2px;
  color: black;
  margin-bottom: 20px;
}
.the-content h5 {
  font: 500 30px/110% "Gridnik", sans-serif;
  letter-spacing: 2px;
  color: black;
  margin-bottom: 20px;
}
.the-content h6 {
  font: 500 25px/110% "Gridnik", sans-serif;
  letter-spacing: 2px;
  color: black;
  margin-bottom: 20px;
}
.the-content p {
  font: normal 23px/120% "Gridnik", sans-serif;
  letter-spacing: 1.5px;
  margin-bottom: 30px;
}
.the-content ul {
  margin-bottom: 30px;
}
.the-content ul li {
  font: normal 23px/120% "Gridnik", sans-serif;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  position: relative;
}
.the-content ul li:before {
  content: "-";
  margin-right: 10px;
}
.the-content ul li li {
  font-size: 20px;
  padding-left: 20px;
  margin-top: 10px;
}
.the-content ol {
  list-style: decimal;
  margin-bottom: 30px;
  padding-left: 30px;
}
.the-content ol ol {
  padding-left: 0;
}
.the-content ol li {
  font: normal 23px/120% "Gridnik", sans-serif;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  position: relative;
}
.the-content ol li li {
  font-size: 20px;
  margin-left: 20px;
  margin-top: 10px;
}
.the-content a {
  color: black;
  text-decoration: underline;
}
.the-content a:hover {
  color: #F00C64;
}
.the-content blockquote {
  border-left: 1px solid #707070;
  margin-left: 0;
  padding: 15px 30px;
  margin: 40px 0 40px 100px;
}
.the-content blockquote p {
  font-style: italic;
}
.the-content blockquote p:last-child {
  margin-bottom: 0;
}
.the-content hr {
  border: 0;
  height: 1px;
  width: 100%;
  background: #707070;
  margin: 40px 0;
}
.the-content > *:last-child {
  margin-bottom: 0 !important;
}

.line {
  width: 100%;
  flex: 1 1 auto;
  padding-top: 5px;
  border-bottom: 1px solid black;
}

.gap-65 {
  gap: 65px;
}

/*-------------------------------------------------------------------------------------*/
.home #header .logo path,
.home #header .logo rect {
  fill: white;
}
.home #header .site-nav ul li a {
  color: white;
}
.home #header .site-nav ul li a:hover {
  border-bottom: 1px solid white;
}
.home #header .site-nav ul li.current-menu-item a, .home #header .site-nav ul li.current-lang a {
  border-bottom: 1px solid white;
}
.home #header .site-nav ul li.lang-item-fr:after {
  color: white;
}
.home #header .site-nav ul li.menu-item-home:not(.current-lang) {
  display: none;
}

#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 11;
  padding: 60px 80px;
  transition: all 0.3s ease-in-out;
}
#header .logo {
  max-width: 200px;
  display: inline-block;
  opacity: 1;
  pointer-events: all;
  transition: all 0.3s ease-in-out;
}
#header .logo svg {
  display: block;
}
#header .logo svg path,
#header .logo svg rect {
  fill: black;
}
#header .site-nav {
  padding-top: 10px;
}
#header .site-nav ul li a {
  color: black;
  transition: all 0.3s ease-in-out;
}
#header .site-nav ul li a:hover {
  border-bottom: 1px solid black;
}
#header .site-nav ul li.current-menu-item a, #header .site-nav ul li.current-lang a {
  border-bottom: 1px solid black;
}
#header .site-nav ul li.lang-item-fr:after {
  content: "/";
  font: normal 20px/1em "Gridnik", sans-serif;
  color: black;
}
#header .site-nav ul li.lang-item {
  margin-right: 0;
}
#header.shrink {
  padding: 20px 80px;
  background: white;
  -webkit-box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.05);
  box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.05);
}
#header.shrink .logo svg path,
#header.shrink .logo svg rect {
  fill: black;
}
#header.shrink .site-nav ul li a {
  color: black;
}
#header.shrink .site-nav ul li a:hover {
  border-bottom: 1px solid black;
}
#header.shrink .site-nav ul li.current-menu-item a, #header.shrink .site-nav ul li.current-lang a {
  border-bottom: 1px solid black;
}
#header.shrink .site-nav ul li.lang-item-fr:after {
  content: "/";
  color: black;
}
#header.black-text .site-nav ul li a {
  color: black;
}
#header.black-text .site-nav ul li a:hover {
  border-bottom: 1px solid black;
}
#header.black-text .site-nav ul li.lang-item-fr:after {
  content: "/";
  color: black;
}

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

.site-nav ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.site-nav ul li {
  margin-right: 50px;
}
.site-nav ul li a {
  text-transform: uppercase;
  letter-spacing: 2px;
  font: normal 20px/1em "Gridnik", sans-serif;
  color: white;
  border: 1px solid transparent;
}
.site-nav ul li a:hover {
  border-bottom: 1px solid white;
}
.site-nav ul li:last-child {
  margin-right: 0;
}
.site-nav ul li.current-menu-item a, .site-nav ul li.current-lang a {
  border-bottom: 1px solid white;
}
.site-nav ul li.current-menu-item.lang-item-fr:after, .site-nav ul li.current-lang.lang-item-fr:after {
  content: "/";
  color: white;
}

#home-banner {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding-top: 100px;
  height: 80vh;
  min-height: 700px;
  overflow: hidden;
}
#home-banner:before {
  content: "";
  background: black;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}
#home-banner .tagline {
  position: relative;
  padding: 140px 0 20px;
  font: normal 93px "Gridnik", sans-serif;
  color: white;
}
#home-banner.fr .tagline {
  font: normal 70px "Gridnik", sans-serif;
}
#home-banner .slider-container {
  position: absolute;
  top: 0;
  left: 45%;
  width: 80%;
  height: 101%;
  transform: skewX(-14deg);
  overflow: hidden;
}
#home-banner .slider-container .slide {
  position: relative;
  position: absolute;
  top: 0;
  right: -100%;
  width: 110%;
  height: 100%;
  overflow: hidden;
  transform: scale(1);
  transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}
#home-banner .slider-container .slide > img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
#home-banner .slider-container .slide img {
  margin-left: -100px;
  transform-origin: 0 0;
  animation: skewedPanLeft 10s ease;
  animation-fill-mode: forwards;
}
#home-banner .slider-container .slide.in {
  right: -75%;
  transition: all 1s cubic-bezier(0.16, 1, 0.3, 1) 0.8s;
}
#home-banner .slider-container .slide.active {
  right: 0;
}
#home-banner .slider-container .slide.text-slide {
  background: white;
}
#home-banner .slider-container .slide.text-slide .inner {
  width: 72%;
  max-width: 1015px;
  padding: 150px 150px 50px 250px;
  transform: skewX(14deg);
}
#home-banner .slider-container .slide.text-slide .the-content a.link {
  font: normal 13px/100% "Gridnik", sans-serif;
  padding: 5px 55px 5px 0;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
  position: relative;
}
#home-banner .slider-container .slide.text-slide .the-content a.link svg {
  position: absolute;
  righT: 0;
  top: 50%;
  transform: translateY(-50%);
}
#home-banner .slider-container .slide.text-slide .the-content a.link svg ellipse {
  fill: white;
  transition: all 0.3s ease-in-out;
}
#home-banner .slider-container .slide.text-slide .the-content a.link svg path {
  stroke: black;
  transition: all 0.3s ease-in-out;
}
#home-banner .slider-container .slide.text-slide .the-content a.link:hover {
  padding: 5px 45px 5px 10px;
}
#home-banner .slider-container .slide.text-slide .the-content a.link:hover svg ellipse {
  fill: black;
}
#home-banner .slider-container .slide.text-slide .the-content a.link:hover svg path {
  stroke: white;
}
#home-banner .slider-container .slide.text-slide.active:after {
  left: 70%;
}
#home-banner.trans-ready #banner-transition {
  width: 50px;
  height: 300px;
  background: white;
  display: block;
  position: absolute;
  top: calc(50% - 150px);
  left: calc(50% - 25px);
  transform: skewX(-14deg) scale(0);
  z-index: 5;
}
#home-banner .line-animation {
  width: 240px;
  height: 81%;
  position: absolute;
  bottom: 0;
  right: -5%;
  transform-origin: left bottom;
  transition: all 1s cubic-bezier(0.16, 1, 0.3, 1) 0.8s;
}
#home-banner .line-animation > span {
  display: block;
  width: 100%;
  position: absolute;
  right: -200px;
  height: 1px;
  background: black;
  transition: all 0.3s ease-out;
}
#home-banner .line-animation span:nth-child(1) {
  top: 30px;
  width: 88px;
}
#home-banner .line-animation span:nth-child(2) {
  top: 60px;
  width: 96px;
}
#home-banner .line-animation span:nth-child(3) {
  top: 90px;
  width: 104px;
}
#home-banner .line-animation span:nth-child(4) {
  top: 120px;
  width: 112px;
}
#home-banner .line-animation span:nth-child(5) {
  top: 150px;
  width: 120px;
}
#home-banner .line-animation span:nth-child(6) {
  top: 180px;
  width: 128px;
}
#home-banner .line-animation span:nth-child(7) {
  top: 210px;
  width: 136px;
}
#home-banner .line-animation span:nth-child(8) {
  top: 240px;
  width: 144px;
}
#home-banner .line-animation span:nth-child(9) {
  top: 270px;
  width: 152px;
}
#home-banner .line-animation span:nth-child(10) {
  top: 300px;
  width: 160px;
}
#home-banner .line-animation span:nth-child(11) {
  top: 330px;
  width: 168px;
}
#home-banner .line-animation span:nth-child(12) {
  top: 360px;
  width: 176px;
}
#home-banner .line-animation span:nth-child(13) {
  top: 390px;
  width: 184px;
}
#home-banner .line-animation span:nth-child(14) {
  top: 420px;
  width: 192px;
}
#home-banner .line-animation span:nth-child(15) {
  top: 450px;
  width: 200px;
}
#home-banner .line-animation span:nth-child(16) {
  top: 480px;
  width: 208px;
}
#home-banner .line-animation span:nth-child(17) {
  top: 510px;
  width: 216px;
}
#home-banner .line-animation span:nth-child(18) {
  top: 540px;
  width: 224px;
}
#home-banner .line-animation span:nth-child(19) {
  top: 570px;
  width: 232px;
}
#home-banner .line-animation span:nth-child(20) {
  top: 600px;
  width: 240px;
}
#home-banner .line-animation.active span:nth-child(1) {
  right: 0;
  transition: all 0.3s ease-out 0.05s;
}
#home-banner .line-animation.active span:nth-child(2) {
  right: 0;
  transition: all 0.3s ease-out 0.1s;
}
#home-banner .line-animation.active span:nth-child(3) {
  right: 0;
  transition: all 0.3s ease-out 0.15s;
}
#home-banner .line-animation.active span:nth-child(4) {
  right: 0;
  transition: all 0.3s ease-out 0.2s;
}
#home-banner .line-animation.active span:nth-child(5) {
  right: 0;
  transition: all 0.3s ease-out 0.25s;
}
#home-banner .line-animation.active span:nth-child(6) {
  right: 0;
  transition: all 0.3s ease-out 0.3s;
}
#home-banner .line-animation.active span:nth-child(7) {
  right: 0;
  transition: all 0.3s ease-out 0.35s;
}
#home-banner .line-animation.active span:nth-child(8) {
  right: 0;
  transition: all 0.3s ease-out 0.4s;
}
#home-banner .line-animation.active span:nth-child(9) {
  right: 0;
  transition: all 0.3s ease-out 0.45s;
}
#home-banner .line-animation.active span:nth-child(10) {
  right: 0;
  transition: all 0.3s ease-out 0.5s;
}
#home-banner .line-animation.active span:nth-child(11) {
  right: 0;
  transition: all 0.3s ease-out 0.55s;
}
#home-banner .line-animation.active span:nth-child(12) {
  right: 0;
  transition: all 0.3s ease-out 0.6s;
}
#home-banner .line-animation.active span:nth-child(13) {
  right: 0;
  transition: all 0.3s ease-out 0.65s;
}
#home-banner .line-animation.active span:nth-child(14) {
  right: 0;
  transition: all 0.3s ease-out 0.7s;
}
#home-banner .line-animation.active span:nth-child(15) {
  right: 0;
  transition: all 0.3s ease-out 0.75s;
}
#home-banner .line-animation.active span:nth-child(16) {
  right: 0;
  transition: all 0.3s ease-out 0.8s;
}
#home-banner .line-animation.active span:nth-child(17) {
  right: 0;
  transition: all 0.3s ease-out 0.85s;
}
#home-banner .line-animation.active span:nth-child(18) {
  right: 0;
  transition: all 0.3s ease-out 0.9s;
}
#home-banner .line-animation.active span:nth-child(19) {
  right: 0;
  transition: all 0.3s ease-out 0.95s;
}
#home-banner .line-animation.active span:nth-child(20) {
  right: 0;
  transition: all 0.3s ease-out 1s;
}

.home #main {
  padding-top: 80vh;
}

#main {
  padding-top: 180px;
}

.banner {
  width: 100%;
  overflow: hidden;
  min-height: calc(100vh - 250px);
  padding-top: 70px;
  padding-bottom: 200px;
  position: relative;
}
.banner h1 {
  font: normal 57px "Gridnik", sans-serif;
  margin-bottom: 40px;
}
.banner.strategy h1 {
  margin-bottom: 0 !important;
}
.banner.strategy h2 {
  font-size: 30px;
  margin-bottom: 60px;
}
.banner.strategy .the-content {
  margin-bottom: 60px;
}
.banner.strategy a.back-link {
  font: normal 13px/100% "Gridnik", sans-serif;
  padding: 5px 0 5px 55px;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
  position: relative;
  color: black;
}
.banner.strategy a.back-link svg {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) rotateZ(180deg);
}
.banner.strategy a.back-link svg ellipse {
  fill: white;
  transition: all 0.3s ease-in-out;
}
.banner.strategy a.back-link svg path {
  stroke: black;
  transition: all 0.3s ease-in-out;
}
.banner.strategy a.back-link:hover {
  padding: 5px 10px 5px 45px;
  text-decoration: underline;
}
.banner.strategy a.back-link:hover svg ellipse {
  fill: black;
}
.banner.strategy a.back-link:hover svg path {
  stroke: white;
}
.banner h4 {
  font-size: 30px;
}
.banner h4 .text-roll {
  position: relative;
  display: inline-block;
  font-size: 30px;
  line-height: 30px;
  width: auto;
  transition: all 0.3s ease-in-out 0.1s;
}
.banner h4 .text-roll span.first {
  display: inline-block;
  opacity: 1;
  font-size: 30px;
  line-height: 30px;
  font-weight: bold;
  backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
  transform-origin: 50% 0%;
  perspective: 400px;
  transform: translate3d(0px, 110%, 0px) rotateX(-90deg);
}
.banner h4 .text-roll span.first.out {
  transition: all 0.8s ease;
  opacity: 0;
  transform: translate3d(0px, -1px, -30px) rotateX(90deg);
}
.banner h4 .text-roll span.first.active {
  transition: all 0.8s ease;
  transform: translate3d(0px, 0px, 0) rotateX(0deg);
  opacity: 1;
}
.banner h4 .text-roll span:not(.first) {
  font-size: 30px;
  line-height: 30px;
  display: inline-block;
  font-weight: bold;
  position: absolute;
  height: 100%;
  bottom: 0;
  left: 0;
  perspective: 400px;
  transition: all 0.8s ease;
  backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
  white-space: nowrap;
  opacity: 0;
  transform-origin: 50% 0%;
  transform: translate3d(0px, 110%, 0px) rotateX(-90deg);
}
.banner h4 .text-roll span:not(.first).active {
  transform: translate3d(0px, 0px, 0) rotateX(0deg);
  opacity: 1;
}
.banner h4 .text-roll span:not(.first).out {
  opacity: 0;
  transform: translate3d(0px, -1px, -30px) rotateX(90deg);
}
.banner .line-animation {
  width: 240px;
  height: 100%;
  position: absolute;
  bottom: 0;
  right: 0%;
  transform-origin: left bottom;
  transition: all 0.3s ease-in-out 0.2s;
}
.banner .line-animation > span {
  display: block;
  width: 100%;
  position: absolute;
  right: -200px;
  height: 1px;
  background: black;
  transition: all 0.3s ease-out;
}
.banner .line-animation span:nth-child(1) {
  top: 30px;
  width: 48px;
}
.banner .line-animation span:nth-child(2) {
  top: 60px;
  width: 56px;
}
.banner .line-animation span:nth-child(3) {
  top: 90px;
  width: 64px;
}
.banner .line-animation span:nth-child(4) {
  top: 120px;
  width: 72px;
}
.banner .line-animation span:nth-child(5) {
  top: 150px;
  width: 80px;
}
.banner .line-animation span:nth-child(6) {
  top: 180px;
  width: 88px;
}
.banner .line-animation span:nth-child(7) {
  top: 210px;
  width: 96px;
}
.banner .line-animation span:nth-child(8) {
  top: 240px;
  width: 104px;
}
.banner .line-animation span:nth-child(9) {
  top: 270px;
  width: 112px;
}
.banner .line-animation span:nth-child(10) {
  top: 300px;
  width: 120px;
}
.banner .line-animation span:nth-child(11) {
  top: 330px;
  width: 128px;
}
.banner .line-animation span:nth-child(12) {
  top: 360px;
  width: 136px;
}
.banner .line-animation span:nth-child(13) {
  top: 390px;
  width: 144px;
}
.banner .line-animation span:nth-child(14) {
  top: 420px;
  width: 152px;
}
.banner .line-animation span:nth-child(15) {
  top: 450px;
  width: 160px;
}
.banner .line-animation span:nth-child(16) {
  top: 480px;
  width: 168px;
}
.banner .line-animation span:nth-child(17) {
  top: 510px;
  width: 176px;
}
.banner .line-animation span:nth-child(18) {
  top: 540px;
  width: 184px;
}
.banner .line-animation span:nth-child(19) {
  top: 570px;
  width: 192px;
}
.banner .line-animation span:nth-child(20) {
  top: 600px;
  width: 200px;
}
.banner .line-animation.active span:nth-child(1) {
  right: 0;
  transition: all 0.3s ease-out 0.05s;
}
.banner .line-animation.active span:nth-child(2) {
  right: 0;
  transition: all 0.3s ease-out 0.1s;
}
.banner .line-animation.active span:nth-child(3) {
  right: 0;
  transition: all 0.3s ease-out 0.15s;
}
.banner .line-animation.active span:nth-child(4) {
  right: 0;
  transition: all 0.3s ease-out 0.2s;
}
.banner .line-animation.active span:nth-child(5) {
  right: 0;
  transition: all 0.3s ease-out 0.25s;
}
.banner .line-animation.active span:nth-child(6) {
  right: 0;
  transition: all 0.3s ease-out 0.3s;
}
.banner .line-animation.active span:nth-child(7) {
  right: 0;
  transition: all 0.3s ease-out 0.35s;
}
.banner .line-animation.active span:nth-child(8) {
  right: 0;
  transition: all 0.3s ease-out 0.4s;
}
.banner .line-animation.active span:nth-child(9) {
  right: 0;
  transition: all 0.3s ease-out 0.45s;
}
.banner .line-animation.active span:nth-child(10) {
  right: 0;
  transition: all 0.3s ease-out 0.5s;
}
.banner .line-animation.active span:nth-child(11) {
  right: 0;
  transition: all 0.3s ease-out 0.55s;
}
.banner .line-animation.active span:nth-child(12) {
  right: 0;
  transition: all 0.3s ease-out 0.6s;
}
.banner .line-animation.active span:nth-child(13) {
  right: 0;
  transition: all 0.3s ease-out 0.65s;
}
.banner .line-animation.active span:nth-child(14) {
  right: 0;
  transition: all 0.3s ease-out 0.7s;
}
.banner .line-animation.active span:nth-child(15) {
  right: 0;
  transition: all 0.3s ease-out 0.75s;
}
.banner .line-animation.active span:nth-child(16) {
  right: 0;
  transition: all 0.3s ease-out 0.8s;
}
.banner .line-animation.active span:nth-child(17) {
  right: 0;
  transition: all 0.3s ease-out 0.85s;
}
.banner .line-animation.active span:nth-child(18) {
  right: 0;
  transition: all 0.3s ease-out 0.9s;
}
.banner .line-animation.active span:nth-child(19) {
  right: 0;
  transition: all 0.3s ease-out 0.95s;
}
.banner .line-animation.active span:nth-child(20) {
  right: 0;
  transition: all 0.3s ease-out 1s;
}
.banner.small {
  min-height: 0;
  padding-bottom: 85px;
}
.banner.small:after {
  display: none;
}

.banner-image-and-text {
  padding-bottom: 40px;
  padding-top: 100px;
}
.banner-image-and-text .col-image .image {
  position: relative;
  position: relative;
  overflow: hidden;
}
.banner-image-and-text .col-image .image:before {
  content: "";
  display: block;
  padding-top: 100%;
}
.banner-image-and-text .col-image .image > img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.banner-image-and-text .col-text .the-content {
  margin-bottom: 60px;
}
.banner-image-and-text .col-text .the-content h1 {
  margin-bottom: 60px;
}
.banner-image-and-text .col-text .the-content .button, .banner-image-and-text .col-text .the-content .gform_wrapper .gform_footer .gform_button, .gform_wrapper .gform_footer .banner-image-and-text .col-text .the-content .gform_button {
  margin-top: 25px;
}
.banner-image-and-text .col-text ul {
  display: flex;
  flex-direction: column;
}
.banner-image-and-text .col-text ul li {
  min-width: 100%;
  margin-bottom: 30px;
}
.banner-image-and-text .col-text ul li a {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  color: black;
  text-transform: uppercase;
  transition: 0.3s ease-in-out;
}
.banner-image-and-text .col-text ul li a span {
  transform: translateX(0px);
  transition: 0.3s ease-in-out;
}
.banner-image-and-text .col-text ul li a svg ellipse {
  fill: white;
}
.banner-image-and-text .col-text ul li a svg ellipse,
.banner-image-and-text .col-text ul li a svg path {
  transition: 0.3s ease-in-out;
}
.banner-image-and-text .col-text ul li a:hover span {
  text-decoration: underline;
  transform: translateX(10px);
}
.banner-image-and-text .col-text ul li a:hover svg ellipse {
  fill: black;
}
.banner-image-and-text .col-text ul li a:hover svg path {
  stroke: white;
}

.title {
  padding: 180px 0 80px;
}
.title h2 {
  flex: 0 0 auto;
  line-height: 100%;
  margin-bottom: 0 !important;
}

.home-split-content {
  padding-top: 400px;
  transition: background 0.3s ease-in-out;
}
.home-split-content h2 {
  font: 500 55px/110% "Gridnik", sans-serif;
  letter-spacing: 2px;
  margin-bottom: 40px;
}
.home-split-content .the-content {
  margin-bottom: 70px;
}
.home-split-content.no-bg {
  background: transparent;
}

.split-image {
  overflow: hidden;
  width: 100%;
  display: flex;
  position: relative;
}
.split-image .image {
  width: 50%;
  height: 525px;
  transform: scale(1);
}
.split-image .image img {
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% + 300px);
  min-height: 525px;
  max-width: initial;
  animation: panUp 40s;
  animation-iteration-count: infinite;
}
.split-image .image:nth-child(2) {
  position: absolute;
  left: 50%;
  top: 0;
  height: 100%;
  width: 60%;
  overflow: hidden;
  transform: skewX(-14deg);
}
.split-image .image:nth-child(2) .inner {
  transform: skewX(14deg);
  position: absolute;
  height: 100%;
  width: 100%;
}
.split-image .image:nth-child(2) img {
  top: auto;
  bottom: 0;
  left: auto;
  right: 0;
  animation: panDown 40s;
  animation-iteration-count: infinite;
}

.home-bottom .col-text .the-content {
  margin-bottom: 100px;
}
.home-bottom .col-image .image {
  position: relative;
  position: relative;
  overflow: hidden;
}
.home-bottom .col-image .image:before {
  content: "";
  display: block;
  padding-top: 100%;
}
.home-bottom .col-image .image > img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.image-and-text {
  background-color: var(--bg-color);
}
.image-and-text .col-image .image {
  position: relative;
  position: relative;
  overflow: hidden;
}
.image-and-text .col-image .image:before {
  content: "";
  display: block;
  padding-top: 100%;
}
.image-and-text .col-image .image > img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.image-and-text .col-image.order-2 .image img {
  left: auto;
}
.image-and-text .col-image.order-2 .btn-video {
  left: -65px;
  right: auto;
}
.image-and-text .col-image .btn-video {
  position: absolute;
  top: 40px;
  right: -65px;
}
.image-and-text .col-text .the-content .button, .image-and-text .col-text .the-content .gform_wrapper .gform_footer .gform_button, .gform_wrapper .gform_footer .image-and-text .col-text .the-content .gform_button {
  margin-top: 25px;
}
.image-and-text .col-text.order-lg-1 .the-content {
  padding: 0 0 0 145px;
}
.image-and-text .col-text.order-lg-2 .the-content {
  padding: 0 145px 0 0px;
}

.media-block {
  margin-bottom: 240px;
}
.media-block .block-head {
  display: flex;
  align-items: end;
  margin-bottom: 55px;
}
.media-block .block-head .image {
  flex: 0 0 auto;
  width: 135px;
  height: 135px;
  float: left;
  background-color: black;
  border: 1px solid #707070;
  display: flex;
  justify-content: center;
  align-items: center;
}
.media-block .block-head .image img {
  max-width: 100%;
}
.media-block .block-head h4 {
  font: 500 40px/100% "Gridnik", sans-serif;
  letter-spacing: 2px;
  margin-bottom: 0;
  flex: 1 1 auto;
  float: right;
  width: 50%;
  padding-left: 30px;
}
.media-block h3 a {
  text-decoration: underline;
  color: black;
  font: normal 25px/120% "Gridnik", sans-serif;
}
.media-block h3 a:hover {
  text-decoration: none;
}

.slice.about-us {
  padding-bottom: 300px;
}
.slice.about-us .line-animation {
  width: 150px;
  height: 600px;
  position: absolute;
  bottom: 0;
  right: 0%;
  transform-origin: left bottom;
  transition: all 0.3s ease-in-out 0.2s;
  z-index: -1;
}
.slice.about-us .line-animation > span {
  display: block;
  width: 100%;
  position: absolute;
  right: -200px;
  height: 1px;
  background: black;
  transition: all 0.3s ease-out;
}
.slice.about-us .line-animation span:nth-child(1) {
  top: 30px;
  width: 48px;
}
.slice.about-us .line-animation span:nth-child(2) {
  top: 60px;
  width: 56px;
}
.slice.about-us .line-animation span:nth-child(3) {
  top: 90px;
  width: 64px;
}
.slice.about-us .line-animation span:nth-child(4) {
  top: 120px;
  width: 72px;
}
.slice.about-us .line-animation span:nth-child(5) {
  top: 150px;
  width: 80px;
}
.slice.about-us .line-animation span:nth-child(6) {
  top: 180px;
  width: 88px;
}
.slice.about-us .line-animation span:nth-child(7) {
  top: 210px;
  width: 96px;
}
.slice.about-us .line-animation span:nth-child(8) {
  top: 240px;
  width: 104px;
}
.slice.about-us .line-animation span:nth-child(9) {
  top: 270px;
  width: 112px;
}
.slice.about-us .line-animation span:nth-child(10) {
  top: 300px;
  width: 120px;
}
.slice.about-us .line-animation span:nth-child(11) {
  top: 330px;
  width: 128px;
}
.slice.about-us .line-animation span:nth-child(12) {
  top: 360px;
  width: 136px;
}
.slice.about-us .line-animation span:nth-child(13) {
  top: 390px;
  width: 144px;
}
.slice.about-us .line-animation span:nth-child(14) {
  top: 420px;
  width: 152px;
}
.slice.about-us .line-animation span:nth-child(15) {
  top: 450px;
  width: 160px;
}
.slice.about-us .line-animation span:nth-child(16) {
  top: 480px;
  width: 168px;
}
.slice.about-us .line-animation span:nth-child(17) {
  top: 510px;
  width: 176px;
}
.slice.about-us .line-animation span:nth-child(18) {
  top: 540px;
  width: 184px;
}
.slice.about-us .line-animation span:nth-child(19) {
  top: 570px;
  width: 192px;
}
.slice.about-us .line-animation span:nth-child(20) {
  top: 600px;
  width: 200px;
}
.slice.about-us .line-animation.active span:nth-child(1) {
  right: 0;
  transition: all 0.3s ease-out 0.05s;
}
.slice.about-us .line-animation.active span:nth-child(2) {
  right: 0;
  transition: all 0.3s ease-out 0.1s;
}
.slice.about-us .line-animation.active span:nth-child(3) {
  right: 0;
  transition: all 0.3s ease-out 0.15s;
}
.slice.about-us .line-animation.active span:nth-child(4) {
  right: 0;
  transition: all 0.3s ease-out 0.2s;
}
.slice.about-us .line-animation.active span:nth-child(5) {
  right: 0;
  transition: all 0.3s ease-out 0.25s;
}
.slice.about-us .line-animation.active span:nth-child(6) {
  right: 0;
  transition: all 0.3s ease-out 0.3s;
}
.slice.about-us .line-animation.active span:nth-child(7) {
  right: 0;
  transition: all 0.3s ease-out 0.35s;
}
.slice.about-us .line-animation.active span:nth-child(8) {
  right: 0;
  transition: all 0.3s ease-out 0.4s;
}
.slice.about-us .line-animation.active span:nth-child(9) {
  right: 0;
  transition: all 0.3s ease-out 0.45s;
}
.slice.about-us .line-animation.active span:nth-child(10) {
  right: 0;
  transition: all 0.3s ease-out 0.5s;
}
.slice.about-us .line-animation.active span:nth-child(11) {
  right: 0;
  transition: all 0.3s ease-out 0.55s;
}
.slice.about-us .line-animation.active span:nth-child(12) {
  right: 0;
  transition: all 0.3s ease-out 0.6s;
}
.slice.about-us .line-animation.active span:nth-child(13) {
  right: 0;
  transition: all 0.3s ease-out 0.65s;
}
.slice.about-us .line-animation.active span:nth-child(14) {
  right: 0;
  transition: all 0.3s ease-out 0.7s;
}
.slice.about-us .line-animation.active span:nth-child(15) {
  right: 0;
  transition: all 0.3s ease-out 0.75s;
}
.slice.about-us .line-animation.active span:nth-child(16) {
  right: 0;
  transition: all 0.3s ease-out 0.8s;
}
.slice.about-us .line-animation.active span:nth-child(17) {
  right: 0;
  transition: all 0.3s ease-out 0.85s;
}
.slice.about-us .line-animation.active span:nth-child(18) {
  right: 0;
  transition: all 0.3s ease-out 0.9s;
}
.slice.about-us .line-animation.active span:nth-child(19) {
  right: 0;
  transition: all 0.3s ease-out 0.95s;
}
.slice.about-us .line-animation.active span:nth-child(20) {
  right: 0;
  transition: all 0.3s ease-out 1s;
}
.slice.strategy-category-list h2.category-title {
  font: normal 58px/120% "Gridnik", sans-serif;
}
.slice.strategy-category-list .strategy-container .strategy-block {
  width: 50%;
  max-width: 780px;
  margin-bottom: 120px;
}
.slice.strategy-category-list .strategy-container .strategy-block:nth-child(4n+1) {
  margin-left: 8%;
}
.slice.strategy-category-list .strategy-container .strategy-block:nth-child(4n+2) {
  margin-left: 50%;
}
.slice.strategy-category-list .strategy-container .strategy-block:nth-child(4n+3) {
  margin-left: 0%;
}
.slice.strategy-category-list .strategy-container .strategy-block:nth-child(4n+4) {
  margin-left: 33%;
}
.slice.strategy-category-list .strategy-container .strategy-block:nth-child(4n+5) {
  margin-left: 0%;
}
.slice.strategy-category-list .strategy-container .strategy-block:last-child {
  margin-bottom: 1px;
}
.slice.strategy-category-list .strategy-container .strategy-block .title {
  margin: 180px 0 80px;
  padding: 0px;
  position: relative;
}
.slice.strategy-category-list .strategy-container .strategy-block .title h3 {
  font: normal 47px/120% "Gridnik", sans-serif;
  background: white;
  padding-right: 60px;
  display: inline-block;
  position: relative;
  z-index: 2;
}
.slice.strategy-category-list .strategy-container .strategy-block .title .line {
  position: absolute;
  width: 1920px;
  top: 50%;
  left: 33%;
}
.slice.strategy-category-list .strategy-container .strategy-block .the-content {
  margin-bottom: 60px;
}
.slice.strategy-category-list .strategy-container .strategy-block a.link {
  font: normal 13px/100% "Gridnik", sans-serif;
  padding: 5px 55px 5px 0;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
  position: relative;
  color: black;
  cursor: pointer;
}
.slice.strategy-category-list .strategy-container .strategy-block a.link svg {
  position: absolute;
  righT: 0;
  top: 50%;
  transform: translateY(-50%);
}
.slice.strategy-category-list .strategy-container .strategy-block a.link svg ellipse {
  fill: white;
  transition: all 0.3s ease-in-out;
}
.slice.strategy-category-list .strategy-container .strategy-block a.link svg path {
  stroke: black;
  transition: all 0.3s ease-in-out;
}
.slice.strategy-category-list .strategy-container .strategy-block a.link:hover {
  padding: 5px 45px 5px 10px;
  text-decoration: underline;
}
.slice.strategy-category-list .strategy-container .strategy-block a.link:hover svg ellipse {
  fill: black;
}
.slice.strategy-category-list .strategy-container .strategy-block a.link:hover svg path {
  stroke: white;
}
.slice.strategy-stats {
  padding-top: 150px;
}
.slice.strategy-stats .row h2 {
  font: normal 58px/110% "Gridnik", sans-serif;
}
.slice.strategy-stats .row:first-child {
  margin-bottom: 80px;
}
.slice.strategy-stats .stats-table {
  width: 100%;
  margin-bottom: 60px;
}
.slice.strategy-stats .stats-table .table-head {
  background-color: black !important;
}
.slice.strategy-stats .stats-table .table-head .table-cell {
  color: white;
  text-align: center;
}
.slice.strategy-stats .stats-table .table-head .table-cell span {
  font: 600 25px/100% "Gridnik", sans-serif;
  text-transform: uppercase;
}
.slice.strategy-stats .stats-table .table-row {
  border-bottom: 1px solid black;
}
.slice.strategy-stats .stats-table .table-row:nth-child(odd) {
  background-color: #F2F2F2;
}
.slice.strategy-stats .stats-table .table-row .table-cell {
  width: calc((100% - 150px) / 11);
  font: normal 20px/100% "Gridnik", sans-serif;
  padding: 1.25% 0.8%;
  text-align: center;
}
.slice.strategy-stats .stats-table .table-row .table-cell span {
  font: 600 25px/100% "Gridnik", sans-serif;
}
.slice.strategy-stats .stats-table .table-row .table-cell:first-child {
  width: 150px;
  text-align: left;
}
.slice.strategy-graph .col-text h3 {
  font: normal 58px/110% "Gridnik", sans-serif;
  margin-bottom: 40px;
}
.slice.strategy-graph .col-text .the-content {
  margin-bottom: 60px;
}
.slice.strategy-graph .col-text .button-container {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.slice.strategy-graph .col-text .button-container .button, .slice.strategy-graph .col-text .button-container .gform_wrapper .gform_footer .gform_button, .gform_wrapper .gform_footer .slice.strategy-graph .col-text .button-container .gform_button {
  width: fit-content;
}
.slice.strategy-graph .col-graph {
  padding-top: 20px;
}

.team-block {
  width: calc(50% - 80px);
  float: right;
  margin-top: 290px;
  cursor: pointer;
}
.team-block .image {
  position: relative;
  position: relative;
  margin-bottom: 80px;
  overflow: hidden;
}
.team-block .image:before {
  content: "";
  display: block;
  padding-top: 95%;
}
.team-block .image > img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.team-block .image > img {
  object-position: top !important;
  transition: all 0.3s ease-in-out;
  transform: scale(1);
}
.team-block:hover .image img {
  transform: scale(1.2);
}
.team-block:nth-child(1) {
  margin-top: 0;
}
.team-block:nth-child(2n+3) {
  margin-top: -130px;
}
.team-block:nth-child(2n+1) {
  margin-left: 160px;
}
.team-block h4 {
  font: 500 35px/110% "Gridnik", sans-serif;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}
.team-block span {
  font: 500 25px/110% "Gridnik", sans-serif;
  letter-spacing: 1.5px;
  margin-bottom: 60px;
  display: block;
}
.team-block a.link {
  font: normal 13px/100% "Gridnik", sans-serif;
  padding: 5px 55px 5px 0;
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
  position: relative;
}
.team-block a.link svg {
  position: absolute;
  righT: 0;
  top: 50%;
  transform: translateY(-50%);
}
.team-block a.link svg ellipse {
  fill: white;
  transition: all 0.3s ease-in-out;
}
.team-block a.link svg path {
  stroke: black;
  transition: all 0.3s ease-in-out;
}
.team-block a.link:hover {
  padding: 5px 45px 5px 10px;
}
.team-block a.link:hover svg ellipse {
  fill: black;
}
.team-block a.link:hover svg path {
  stroke: white;
}

.fancybox-bg {
  background: #272725 url("../images/team-memer-lightbox-bg.svg") no-repeat center center;
  background-size: cover;
}

.fancybox-is-open .fancybox-bg {
  opacity: 1;
}

.fancybox-content {
  width: 90%;
  max-width: 1180px;
}

#team-member-lightbox {
  padding: 0px;
  overflow: hidden;
}
#team-member-lightbox .wrapper {
  width: 100%;
}
#team-member-lightbox .wrapper .col-image {
  position: relative;
  position: relative;
}
#team-member-lightbox .wrapper .col-image:before {
  content: "";
  display: block;
  padding-top: 150%;
}
#team-member-lightbox .wrapper .col-image > img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
#team-member-lightbox .wrapper .col-text {
  padding: 95px 115px;
}
#team-member-lightbox .wrapper .col-text h2 {
  font: 500 35px/110% "Gridnik", sans-serif;
  letter-spacing: 2px;
  margin-bottom: 20px;
}
#team-member-lightbox .wrapper .col-text h3 {
  font: 300 25px/110% "Gridnik", sans-serif;
  color: #707070;
  letter-spacing: 2px;
  margin-bottom: 35px;
}
#team-member-lightbox .wrapper .col-text .the-content {
  margin-bottom: 60px;
}
#team-member-lightbox .wrapper .col-text .the-content p {
  font: 300 18px/1.3em "Gridnik", sans-serif;
  margin-bottom: 20px;
}
#team-member-lightbox .wrapper .col-text a.link {
  font: normal 20px "Gridnik", sans-serif;
  letter-spacing: 3px;
  color: #1D1D1B;
  outline: none;
  transition: all 0.3s ease-in-out;
}
#team-member-lightbox .wrapper .col-text a.link svg {
  margin-top: -2px;
  float: left;
  margin-right: 20px;
}
#team-member-lightbox .wrapper .col-text a.link svg path {
  fill: #1D1D1B;
  transition: all 0.3s ease-in-out;
}
#team-member-lightbox .wrapper .col-text a.link:hover svg {
  margin-right: 30px;
}
#team-member-lightbox .wrapper .col-text a.link:hover svg path {
  fill: #707070;
}

/*- Contact page -*/
.col-map {
  position: relative;
  position: relative;
}
.col-map:before {
  content: "";
  display: block;
  padding-top: 105%;
}
.col-map .google-map {
  position: absolute;
  top: 0;
  left: 75px;
  right: 75px;
  width: calc(100% - 150px);
  height: 100%;
}

.gform_wrapper .validation_message {
  border: 0 !important;
  margin-top: 8px;
  padding: 10px 15px !important;
  position: absolute;
  bottom: 0;
  left: 0;
}
.gform_wrapper .gform_validation_errors {
  border-radius: 0 !important;
  border: 0 !important;
  box-shadow: none !important;
  margin-bottom: 30px;
}
.gform_wrapper .gfield_required {
  display: inline-block;
  float: left;
  background: #F00C64;
  width: 5px;
  height: 5px;
  margin-top: 8px;
  margin-left: -15px;
  border-radius: 100%;
}
.gform_wrapper .gfield_required .gfield_required {
  display: none;
}
.gform_wrapper .gform_title {
  font: normal 25px "Gridnik", sans-serif;
  text-transform: uppercase;
  padding-bottom: 45px;
  margin-bottom: 45px;
  border-bottom: 1px solid black;
}
.gform_wrapper .gform_body .gfield {
  position: relative;
  display: flex;
  align-items: start;
  padding-bottom: 45px;
  margin-bottom: 45px;
  border-bottom: 1px solid black;
}
.gform_wrapper .gform_body .gfield .gfield_label {
  padding-top: 8px;
  margin-right: 15px;
  font: normal 18px "Gridnik", sans-serif;
  letter-spacing: 2px;
}
.gform_wrapper .gform_body .gfield .ginput_container {
  width: 100%;
  flex: 1 1 auto;
}
.gform_wrapper .gform_body .gfield input,
.gform_wrapper .gform_body .gfield textarea {
  font: normal 20px/110% "Gridnik", sans-serif !important;
  border: 0px;
  outline: none;
  color: #707070;
  padding: 0;
}
.gform_wrapper .gform_body .gfield textarea {
  padding-top: 8px;
}
.gform_wrapper .gform_footer .gform_button {
  float: right;
}

.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  z-index: 999;
  display: flex;
  pointer-events: none;
  transform: translateY(-100%);
  transition: all 0.3s ease-in-out;
  /*.outer-lightbox-content {
  	width: 100%;
  }*/
}
.popup.form {
  overflow: hidden;
  padding: 70px;
}
.popup.form .wrapper {
  width: calc(100% - 80px);
  max-width: 1100px;
  margin: 0 auto;
  overflow: hidden;
}
.popup.form .wrapper .inner {
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  overflow-x: hidden;
  padding-right: 17px; /* Increase/decrease this value for cross-browser compatibility */
  box-sizing: content-box;
}
.popup.form .wrapper .inner .gform_wrapper {
  box-sizing: border-box;
}
.popup.form .wrapper .inner h2 {
  color: white;
  font: normal 58px/110% "Gridnik", sans-serif;
  margin-bottom: 60px;
}
.popup.form .wrapper .gform_validation_errors {
  display: none;
}
.popup.form .wrapper .gform_body .gform_fields .gfield {
  flex-direction: column;
  padding-bottom: 0px;
  margin-bottom: 5px;
}
.popup.form .wrapper .gform_body .gform_fields .gfield .validation_message {
  position: static !important;
}
.popup.form .wrapper .gform_body .gform_fields .gfield.spacer {
  display: none;
}
.popup.form .wrapper .gform_body .gform_fields .gfield.gfield_html {
  flex-direction: column;
  padding-left: 40px;
}
.popup.form .wrapper .gform_body .gform_fields .gfield.gfield_html p {
  color: white;
  margin-bottom: 30px;
}
.popup.form .wrapper .gform_body .gform_fields .gfield .ginput_container input[type=text],
.popup.form .wrapper .gform_body .gform_fields .gfield .ginput_container input[type=email],
.popup.form .wrapper .gform_body .gform_fields .gfield .ginput_container input[type=number],
.popup.form .wrapper .gform_body .gform_fields .gfield .ginput_container input[type=phone],
.popup.form .wrapper .gform_body .gform_fields .gfield .ginput_container input[type=tel] {
  padding: 10px;
  height: 55px;
}
.popup.form .wrapper .gform_body .gform_fields .gfield .ginput_container.ginput_container_checkbox .gfield_checkbox .gchoice {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.popup.form .wrapper .gform_body .gform_fields .gfield .ginput_container.ginput_container_checkbox .gfield_checkbox .gchoice:last-child {
  margin-bottom: 0;
}
.popup.form .wrapper .gform_body .gform_fields .gfield .ginput_container.ginput_container_checkbox .gfield_checkbox .gchoice input[type=checkbox] {
  display: none;
}
.popup.form .wrapper .gform_body .gform_fields .gfield .ginput_container.ginput_container_checkbox .gfield_checkbox .gchoice input[type=checkbox]:checked + label:after {
  opacity: 1;
}
.popup.form .wrapper .gform_body .gform_fields .gfield .ginput_container.ginput_container_checkbox .gfield_checkbox .gchoice label {
  color: white;
  position: relative;
  display: block;
  padding-left: 40px;
  cursor: pointer;
  text-transform: uppercase;
  font: normal 16px "Gridnik", sans-serif;
}
.popup.form .wrapper .gform_body .gform_fields .gfield .ginput_container.ginput_container_checkbox .gfield_checkbox .gchoice label > span {
  color: #FF4D4D;
}
.popup.form .wrapper .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: 18px;
  width: 18px;
  border: 1px solid white;
}
.popup.form .wrapper .gform_body .gform_fields .gfield .ginput_container.ginput_container_checkbox .gfield_checkbox .gchoice label:after {
  content: "";
  display: block;
  position: absolute;
  top: 6px;
  left: 13px;
  transform: translate(-50%, -50%);
  opacity: 0;
  height: 25px;
  width: 25px;
  background-image: url("../images/forms/check-white.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.popup.form .wrapper .add-sample-container {
  color: white;
}
.popup.form .wrapper .add-sample-container span {
  border: 2px solid white;
}
.popup.form .wrapper .gform_footer {
  display: flex;
  justify-content: center;
  margin: 0;
}
.popup.form .the-content {
  margin-bottom: 50px;
}
.popup.form .the-content p,
.popup.form .the-content li,
.popup.form .the-content h2,
.popup.form .the-content h3,
.popup.form .the-content h4 {
  color: white;
}
.popup.form .fresh input {
  width: 100%;
}
.popup.form .fresh .form-footer {
  margin-top: 25px;
}
.popup.form .fresh .form-message {
  color: red;
}
.popup.form .fresh .can-load.loading {
  background-color: white;
  color: white !important;
}
.popup.form .fresh .can-load.loading .loader {
  opacity: 1;
}
.popup.form .fresh .can-load .loader {
  content: "";
  width: 24px;
  height: 24px;
  border: 4px solid #000;
  border-bottom-color: transparent;
  border-radius: 50%;
  display: block;
  box-sizing: border-box;
  animation: loading-btn 1s linear infinite;
  position: absolute;
  left: calc(50% - 12px);
  top: calc(50% - 12px);
  opacity: 0;
  pointer-events: none;
  transition: 0.5s;
}
.popup.form .full-form {
  display: none;
}
.popup.open {
  pointer-events: all;
  transform: translateY(0%);
}
.popup .close {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 25px;
  height: 25px;
  cursor: pointer;
}
.popup .close svg {
  transform: rotateZ(0deg);
  transition: all 0.3s ease-in-out;
}
.popup .close svg rect {
  transition: all 0.3s ease-in-out;
  fill: #fff;
}
.popup .close:hover svg {
  transform: rotateZ(180deg);
}
.popup .close:hover svg rect {
  transition: all 0.3s ease-in-out;
  fill: white;
}

@keyframes loading-btn {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
#footer {
  padding: 65px 0 50px;
  background: #1D1D1B;
  position: relative;
}
#footer .footer-logo {
  float: right;
}
#footer .col {
  color: white;
  padding-left: 50px;
  position: relative;
}
#footer .col span.vertical-label {
  font: normal 10px "Gridnik", sans-serif;
  text-transform: uppercase;
  position: absolute;
  top: 0;
  right: 100%;
  transform: rotateZ(-90deg);
  transform-origin: top right;
  white-space: nowrap;
  text-align: right;
}
#footer .col a {
  color: white;
}
#footer .col p {
  font: normal 15px/110% "Gridnik", sans-serif;
}
#footer .col-partner img {
  display: block;
  margin-bottom: 20px;
  width: 100%;
  max-width: 150px;
}
#footer .col-sitemap li {
  margin-bottom: 10px;
}
#footer .col-sitemap li a {
  font: normal 15px "Gridnik", sans-serif;
  padding-left: 15px;
  background: url(../images/icon-arrow.svg) no-repeat left center;
  transition: all 0.3s ease-in-out;
  text-transform: uppercase;
}
#footer .col-sitemap li a:hover {
  padding-left: 25px;
}
#footer .copyrights {
  display: flex;
  justify-content: end;
  margin-top: 45px;
}
#footer .copyrights p {
  float: right;
  color: white;
}

.contact-image {
  aspect-ratio: 1/1;
}
.contact-image img {
  object-fit: cover;
  object-position: center;
}

@media (max-width: 1680px) {
  #home-banner .slider-container .slide.text-slide .line-animation {
    right: calc(10% + 20px);
  }
  #home-banner.fr .tagline {
    font-size: 60px;
  }
}
@media (max-width: 1480px) {
  #home-banner .tagline {
    font-size: 75px;
  }
  #home-banner.fr .tagline {
    max-width: 400px;
    font-size: 50px;
  }
  #home-banner .slider-container .slide.text-slide .inner {
    padding: 150px 200px 50px 200px;
  }
}
@media (max-width: 1366px) {
  .slice.strategy-category-list {
    padding: 100px 0;
  }
  .slice.strategy-category-list h2.category-title {
    font: normal 58px/120% "Gridnik", sans-serif;
  }
  .slice.strategy-category-list .strategy-container {
    overflow: hidden;
    margin-bottom: 80px;
  }
  .slice.strategy-category-list .strategy-container .strategy-block .title {
    margin: 80px 0 40px;
  }
  .slice.strategy-category-list .strategy-container .strategy-block .title h3 {
    padding-right: 20px;
  }
  .slice.strategy-category-list .strategy-container .strategy-block .the-content {
    margin-bottom: 40px;
  }
}
@media (max-width: 1280px) {
  .slice {
    padding: 100px 0;
  }
  .slice.strategy-stats {
    padding-top: 100px;
  }
  .slice.small-p-bottom {
    padding-bottom: 75px;
  }
  .slice.about-us {
    padding-bottom: 300px;
  }
  .row.gutter-150, .row.gutter-160 {
    margin-left: -25px;
    margin-right: -25px;
  }
  .row.gutter-150 > div[class*=col-], .row.gutter-160 > div[class*=col-] {
    padding-left: 25px;
    padding-right: 25px;
  }
  .wrapper {
    width: calc(100% - 100px);
  }
  #header {
    padding: 30px 50px;
  }
  #header.shrink {
    padding: 20px 50px;
  }
  #header .logo {
    max-width: 150px;
  }
  #header .logo svg {
    max-width: 100%;
  }
  #home-banner {
    height: 100vh;
    position: relative;
  }
  #home-banner .tagline {
    font-size: 60px;
    padding: 100px 0;
  }
  #home-banner .slider-container {
    left: 35%;
    width: 85%;
  }
  #home-banner .slider-container .slide.text-slide .inner {
    padding: 150px 150px 50px 200px;
  }
  .home #main {
    padding-top: 0vh;
  }
  .home-split-content .title {
    padding: 50px 0;
  }
  .banner h4 .text-roll {
    font-size: 25px;
    lin-height: 25px;
  }
  .banner h4 .text-roll span.first {
    font-size: 25px;
    lin-height: 25px;
  }
  .banner h4 .text-roll span:not(.first) {
    font-size: 25px;
    lin-height: 25px;
  }
  .banner h4 .text-roll span:not(.first).active {
    transform: translate3d(0px, 0, 0) rotateX(0deg);
  }
  .banner h4 .text-roll span:not(.first).out {
    transform: translate3d(0px, -1px, -30px) rotateX(90deg);
  }
  .the-content h1,
  .the-content h2 {
    font: normal 45px/110% "Gridnik", sans-serif;
    letter-spacing: 2px;
    color: black;
  }
  .the-content h3 {
    font: normal 35px/110% "Gridnik", sans-serif;
    letter-spacing: 2px;
    color: black;
    margin-bottom: 30px;
  }
  .the-content h4 {
    font: normal 25px/110% "Gridnik", sans-serif;
    letter-spacing: 2px;
    color: black;
    margin-bottom: 30px;
  }
  .the-content p {
    font: normal 20px/120% "Gridnik", sans-serif;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
  }
  .the-content ul li {
    font: normal 20px/120% "Gridnik", sans-serif;
  }
  .team-block:nth-child(2n+1) {
    margin-left: 50px;
  }
  .team-block {
    width: calc(50% - 25px);
    margin-top: 200px;
  }
  #team-member-lightbox .wrapper .col-text {
    padding: 60px 100px;
  }
  .slice.media-list .row.offset-2 {
    margin-left: -15px;
  }
  .slice.media-outro .col-12.offset-xl-2 {
    margin-left: -15px;
  }
  .slice.media-outro .col-12.offset-xl-2 .button, .slice.media-outro .col-12.offset-xl-2 .gform_wrapper .gform_footer .gform_button, .gform_wrapper .gform_footer .slice.media-outro .col-12.offset-xl-2 .gform_button {
    margin-left: 15px;
  }
  .slice.strategy-stats .row h2 {
    font-size: 40px;
  }
  .slice.strategy-graph .col-text h3 {
    font-size: 40px;
  }
  .image-and-text .col-text.order-lg-2 .the-content {
    padding-right: 0;
  }
  .image-and-text .col-text.order-lg-1 .the-content {
    padding-left: 0;
  }
  .col-map .google-map {
    width: calc(100% - 50px);
    left: 25px;
    right: 25px;
  }
  .single-strategie .banner {
    padding-top: 0px;
    padding-bottom: 100px;
  }
}
@media (max-width: 1080px) {
  .button, .gform_wrapper .gform_footer .gform_button {
    font-size: 20px;
  }
  #home-banner .tagline {
    font-size: 50px;
  }
  #home-banner .slider-container {
    left: 40%;
  }
  #home-banner .slider-container .slide.text-slide .line-animation {
    right: 20px;
  }
  .site-nav {
    display: none;
  }
  .mobile-nav-trigger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: absolute;
    width: 55px;
    height: 30px;
    top: 50px;
    pointer-events: all;
    right: 50px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
  }
  .mobile-nav-trigger span {
    width: 55px;
    height: 2px;
    display: block;
    background: black;
    flex: 0 0 auto;
    transform-origin: right center;
  }
  .mobile-nav-trigger span:nth-child(1) {
    transform: scaleX(0.6);
    transition: 0.3s ease-in-out;
  }
  .mobile-nav-trigger span:nth-child(2) {
    transform: scaleX(0.7);
    transition: 0.3s ease-in-out;
  }
  .mobile-nav-trigger span:nth-child(3) {
    transform: scaleX(0.8);
    transition: 0.3s ease-in-out;
  }
  .mobile-nav-trigger:hover span:nth-child(1), .mobile-nav-trigger:hover span:nth-child(2), .mobile-nav-trigger:hover span:nth-child(3) {
    transform: scaleX(1);
  }
  .home .mobile-nav-trigger span {
    background: white;
  }
  .home #header.black-text .mobile-nav-trigger span {
    background: black;
  }
  #mobile-nav {
    position: fixed;
    z-index: 10;
    top: 0px;
    right: 0;
    width: 100%;
    max-width: 450px;
    height: 100vh;
    padding-top: 180px;
    background: white;
    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.1);
    box-shadow: 0 15px 10px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
  }
  #mobile-nav .line-animation {
    width: 300px;
    height: 100%;
    position: absolute;
    bottom: 0;
    left: 100%;
    transform-origin: left bottom;
    transition: all 0.3s ease-in-out 0.2s;
  }
  #mobile-nav .line-animation > span {
    display: block;
    width: 100%;
    position: absolute;
    right: -200px;
    height: 1px;
    background: black;
    transition: all 0.3s ease-out;
  }
  #mobile-nav .line-animation span:nth-child(1) {
    top: 30px;
    width: 98px;
  }
  #mobile-nav .line-animation span:nth-child(2) {
    top: 60px;
    width: 106px;
  }
  #mobile-nav .line-animation span:nth-child(3) {
    top: 90px;
    width: 114px;
  }
  #mobile-nav .line-animation span:nth-child(4) {
    top: 120px;
    width: 122px;
  }
  #mobile-nav .line-animation span:nth-child(5) {
    top: 150px;
    width: 130px;
  }
  #mobile-nav .line-animation span:nth-child(6) {
    top: 180px;
    width: 138px;
  }
  #mobile-nav .line-animation span:nth-child(7) {
    top: 210px;
    width: 146px;
  }
  #mobile-nav .line-animation span:nth-child(8) {
    top: 240px;
    width: 154px;
  }
  #mobile-nav .line-animation span:nth-child(9) {
    top: 270px;
    width: 162px;
  }
  #mobile-nav .line-animation span:nth-child(10) {
    top: 300px;
    width: 170px;
  }
  #mobile-nav .line-animation span:nth-child(11) {
    top: 330px;
    width: 178px;
  }
  #mobile-nav .line-animation span:nth-child(12) {
    top: 360px;
    width: 186px;
  }
  #mobile-nav .line-animation span:nth-child(13) {
    top: 390px;
    width: 194px;
  }
  #mobile-nav .line-animation span:nth-child(14) {
    top: 420px;
    width: 202px;
  }
  #mobile-nav .line-animation span:nth-child(15) {
    top: 450px;
    width: 210px;
  }
  #mobile-nav .line-animation span:nth-child(16) {
    top: 480px;
    width: 218px;
  }
  #mobile-nav .line-animation span:nth-child(17) {
    top: 510px;
    width: 226px;
  }
  #mobile-nav .line-animation span:nth-child(18) {
    top: 540px;
    width: 234px;
  }
  #mobile-nav .line-animation span:nth-child(19) {
    top: 570px;
    width: 242px;
  }
  #mobile-nav .line-animation span:nth-child(20) {
    top: 600px;
    width: 250px;
  }
  #mobile-nav > ul {
    width: calc(100% - 80px);
    text-align: left;
  }
  #mobile-nav > ul li {
    margin-bottom: 30px;
  }
  #mobile-nav > ul li a {
    display: inline-block;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 2px;
    font: normal 20px/1em "Gridnik", sans-serif;
    color: black;
    padding: 5px 10px;
    transition: all 0.3s ease-in-out;
  }
  #mobile-nav > ul li.lang-item-fr:after {
    content: "/";
    font: normal 20px/1em "Gridnik", sans-serif;
    color: black;
  }
  #mobile-nav > ul li.current-menu-item a, #mobile-nav > ul li.current-lang a {
    border-bottom: 1px solid black;
  }
  #mobile-nav > ul li.lang-item {
    float: left;
  }
  #mobile-nav > ul li.lang-item-fr:after {
    content: "/";
    color: black;
  }
  #mobile-nav.active {
    transform: translateX(0);
    pointer-events: all;
    opacity: 1;
  }
  #mobile-nav.active .line-animation {
    left: calc(100% - 200px);
  }
  #mobile-nav.active .line-animation span:nth-child(1) {
    right: 0;
    transition: all 0.3s ease-out 0.05s;
  }
  #mobile-nav.active .line-animation span:nth-child(2) {
    right: 0;
    transition: all 0.3s ease-out 0.1s;
  }
  #mobile-nav.active .line-animation span:nth-child(3) {
    right: 0;
    transition: all 0.3s ease-out 0.15s;
  }
  #mobile-nav.active .line-animation span:nth-child(4) {
    right: 0;
    transition: all 0.3s ease-out 0.2s;
  }
  #mobile-nav.active .line-animation span:nth-child(5) {
    right: 0;
    transition: all 0.3s ease-out 0.25s;
  }
  #mobile-nav.active .line-animation span:nth-child(6) {
    right: 0;
    transition: all 0.3s ease-out 0.3s;
  }
  #mobile-nav.active .line-animation span:nth-child(7) {
    right: 0;
    transition: all 0.3s ease-out 0.35s;
  }
  #mobile-nav.active .line-animation span:nth-child(8) {
    right: 0;
    transition: all 0.3s ease-out 0.4s;
  }
  #mobile-nav.active .line-animation span:nth-child(9) {
    right: 0;
    transition: all 0.3s ease-out 0.45s;
  }
  #mobile-nav.active .line-animation span:nth-child(10) {
    right: 0;
    transition: all 0.3s ease-out 0.5s;
  }
  #mobile-nav.active .line-animation span:nth-child(11) {
    right: 0;
    transition: all 0.3s ease-out 0.55s;
  }
  #mobile-nav.active .line-animation span:nth-child(12) {
    right: 0;
    transition: all 0.3s ease-out 0.6s;
  }
  #mobile-nav.active .line-animation span:nth-child(13) {
    right: 0;
    transition: all 0.3s ease-out 0.65s;
  }
  #mobile-nav.active .line-animation span:nth-child(14) {
    right: 0;
    transition: all 0.3s ease-out 0.7s;
  }
  #mobile-nav.active .line-animation span:nth-child(15) {
    right: 0;
    transition: all 0.3s ease-out 0.75s;
  }
  #mobile-nav.active .line-animation span:nth-child(16) {
    right: 0;
    transition: all 0.3s ease-out 0.8s;
  }
  #mobile-nav.active .line-animation span:nth-child(17) {
    right: 0;
    transition: all 0.3s ease-out 0.85s;
  }
  #mobile-nav.active .line-animation span:nth-child(18) {
    right: 0;
    transition: all 0.3s ease-out 0.9s;
  }
  #mobile-nav.active .line-animation span:nth-child(19) {
    right: 0;
    transition: all 0.3s ease-out 0.95s;
  }
  #mobile-nav.active .line-animation span:nth-child(20) {
    right: 0;
    transition: all 0.3s ease-out 1s;
  }
  #header.active {
    background: white;
    -webkit-box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.05);
    box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.05);
  }
  #header.active .logo svg path,
  #header.active .logo svg rect {
    fill: black;
  }
  #header.active .mobile-nav-trigger {
    pointer-events: all;
  }
  #header.active .mobile-nav-trigger span {
    background: black;
  }
  #header.active .mobile-nav-trigger span:nth-child(1) {
    transform: translateX(0px) translateY(-5px) rotateZ(-49deg);
    transition: 0.3s ease-in-out;
  }
  #header.active .mobile-nav-trigger span:nth-child(3) {
    transform: translateX(0px) translateY(10px) rotateZ(49deg);
    transition: 0.3s ease-in-out;
  }
  #header.active .mobile-nav-trigger span:nth-child(2) {
    transform: translateX(50px);
    opacity: 0;
  }
  #header.shrink {
    -webkit-box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.05);
    box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.05);
  }
  #header.shrink .mobile-nav-trigger {
    top: 40px;
  }
  #header.shrink .mobile-nav-trigger span {
    background: black;
  }
  .split-image .image img {
    width: calc(100% + 400px);
  }
  .team-block {
    margin-top: 200px;
  }
  .team-block .image {
    margin-bottom: 40px;
  }
  .team-block h4 {
    font-size: 25px;
  }
  .team-block span {
    font-size: 18px;
    margin-bottom: 30px;
  }
  .slice.strategy-category-list h2.category-title {
    font: normal 58px/120% "Gridnik", sans-serif;
  }
  .slice.strategy-category-list .strategy-container .strategy-block {
    width: 70%;
  }
  .slice.strategy-category-list .strategy-container .strategy-block:nth-child(4n+2) {
    margin-left: 30%;
  }
  .slice.strategy-stats .stats-table .table-row .table-cell {
    font-size: 16px;
  }
  .slice.strategy-stats .stats-table .table-row .table-cell:first-child {
    width: 100px;
  }
  .slice.strategy-stats .stats-table .table-row .table-cell span {
    font-size: 18px;
  }
  .popup.form {
    padding: 70px 50px;
  }
  .popup.form .wrapper {
    width: calc(100% - 40px);
  }
  .popup.form .wrapper .inner h2 {
    font-size: 40px;
  }
  #footer .col {
    margin-bottom: 40px;
  }
}
@media (max-width: 930px) {
  .banner .the-content {
    padding-left: 0px;
  }
  .split-image .image {
    height: 450px;
  }
  .split-image .image img {
    min-height: 450px;
  }
}
/*- Manuel : 810 is the new 768 -*/
@media (max-width: 810px) {
  #home-banner {
    height: 60vh;
    min-height: 620px;
  }
  #home-banner .tagline {
    font-size: 45px;
    padding-top: 90px;
  }
  #home-banner .slider-container {
    left: -15%;
    width: 140%;
  }
  #home-banner .slider-container .slide {
    right: -110%;
  }
  #home-banner .slider-container .slide img {
    margin-left: -50px;
  }
  #home-banner .slider-container .slide.in {
    right: -90%;
  }
  #home-banner .slider-container .slide.text-slide .inner {
    padding: 150px 50px 50px 23%;
  }
  #home-banner .slider-container .slide.text-slide.active:after {
    left: 80%;
  }
  #home-banner.trans-ready #banner-transition {
    width: 25px;
    height: 150px;
    top: calc(50% - 75px);
    left: calc(50% - 12.5px);
  }
  .wrapper {
    width: calc(100% - 80px);
  }
  .home #header.black-text .mobile-nav-trigger span {
    background: black;
  }
  .home #header.black-text .logo svg path,
  .home #header.black-text .logo svg rect {
    fill: black;
  }
  .about-us .inner {
    width: 100%;
  }
  .team-block {
    position: relative;
    z-index: 2;
    float: none;
    width: 100%;
    margin-top: 0 !important;
    margin-bottom: 50px;
    margin-right: 0;
    transform: none !important;
  }
  .team-block:nth-child(2n+1) {
    margin-left: 0;
  }
  .team-block:nth-child(2n+4) {
    margin-top: 0px;
  }
  #team-member-lightbox .wrapper {
    width: 100%;
  }
  #team-member-lightbox .wrapper .col-image {
    position: relative;
    position: relative;
  }
  #team-member-lightbox .wrapper .col-image:before {
    content: "";
    display: block;
    padding-top: 80%;
  }
  #team-member-lightbox .wrapper .col-image > img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  .media-block {
    margin-bottom: 80px;
  }
  .media-block .block-head h4 {
    font-size: 25px;
    padding-left: 20px;
  }
  .slice.banner-image-and-text {
    padding-top: 0;
  }
  .slice.strategy-category-list {
    padding: 100px 0;
  }
  .slice.strategy-category-list .strategy-container {
    margin-bottom: 0;
  }
  .slice.strategy-category-list .strategy-container .strategy-block {
    width: 100%;
    margin-left: 0 !important;
    margin-bottom: 60px;
  }
  .slice.strategy-stats .row h2 {
    margin-bottom: 40px;
  }
  .slice.strategy-stats .stats-table .table-row .table-cell {
    padding: 1%;
    font-size: 15px;
  }
  .slice.strategy-stats .stats-table .table-row .table-cell:first-child {
    width: 75px;
  }
  .slice.strategy-stats .stats-table .table-row .table-cell span {
    font-size: 17px;
  }
  .slice.strategy-graph .col-graph {
    margin-bottom: 60px;
  }
  .slice.strategy-graph .col-text h3 {
    font-size: 40px;
    margin-bottom: 40px;
  }
  .popup.form {
    padding: 70px 20px;
  }
  .single-strategie .banner {
    padding-bottom: 0px;
  }
}
@media (max-width: 767px) {
  .banner h4 .text-roll span:not(.first).active {
    transform: translate3d(0px, 11px, 0) rotateX(0deg);
  }
  .banner h4 .text-roll span:not(.first).out {
    transform: translate3d(0px, -1px, -20px) rotateX(90deg);
  }
  .the-content h1,
  .the-content h2 {
    font: normal 40px/110% "Gridnik", sans-serif;
    letter-spacing: 2px;
    color: black;
  }
  .the-content h3 {
    font: normal 30px/110% "Gridnik", sans-serif;
    letter-spacing: 2px;
    color: black;
    margin-bottom: 30px;
  }
  .the-content h4 {
    font: normal 20px/110% "Gridnik", sans-serif;
    letter-spacing: 2px;
    color: black;
    margin-bottom: 30px;
  }
  .the-content p {
    font: normal 16px/120% "Gridnik", sans-serif;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
  }
  .the-content ul li {
    font: normal 16px/120% "Gridnik", sans-serif;
  }
  .the-content blockquote {
    margin-left: 0;
  }
  .button, .gform_wrapper .gform_footer .gform_button {
    font-size: 18px;
  }
  #home-banner .tagline {
    font-size: 40px;
  }
  .banner .line-animation span:nth-child(1) {
    top: 30px;
    width: 28px;
  }
  .banner .line-animation span:nth-child(2) {
    top: 60px;
    width: 36px;
  }
  .banner .line-animation span:nth-child(3) {
    top: 90px;
    width: 44px;
  }
  .banner .line-animation span:nth-child(4) {
    top: 120px;
    width: 52px;
  }
  .banner .line-animation span:nth-child(5) {
    top: 150px;
    width: 60px;
  }
  .banner .line-animation span:nth-child(6) {
    top: 180px;
    width: 68px;
  }
  .banner .line-animation span:nth-child(7) {
    top: 210px;
    width: 76px;
  }
  .banner .line-animation span:nth-child(8) {
    top: 240px;
    width: 84px;
  }
  .banner .line-animation span:nth-child(9) {
    top: 270px;
    width: 92px;
  }
  .banner .line-animation span:nth-child(10) {
    top: 300px;
    width: 100px;
  }
  .banner .line-animation span:nth-child(11) {
    top: 330px;
    width: 108px;
  }
  .banner .line-animation span:nth-child(12) {
    top: 360px;
    width: 116px;
  }
  .banner .line-animation span:nth-child(13) {
    top: 390px;
    width: 124px;
  }
  .banner .line-animation span:nth-child(14) {
    top: 420px;
    width: 132px;
  }
  .banner .line-animation span:nth-child(15) {
    top: 450px;
    width: 140px;
  }
  .banner .line-animation span:nth-child(16) {
    top: 480px;
    width: 148px;
  }
  .banner .line-animation span:nth-child(17) {
    top: 510px;
    width: 156px;
  }
  .banner .line-animation span:nth-child(18) {
    top: 540px;
    width: 164px;
  }
  .banner .line-animation span:nth-child(19) {
    top: 570px;
    width: 172px;
  }
  .banner .line-animation span:nth-child(20) {
    top: 600px;
    width: 180px;
  }
  .home-bottom .col-text {
    margin-bottom: 50px;
  }
  .home-bottom .col-text .the-content {
    margin-bottom: 40px;
  }
  .slice.about-us {
    padding-bottom: 100px;
  }
  .slice.strategy-category-list h2.category-title {
    font-size: 40px;
  }
  .slice.strategy-category-list .strategy-container .strategy-block .title h3 {
    font-size: 30px;
  }
  .slice.strategy-category-list .strategy-container .strategy-block .title .line {
    top: 40%;
  }
  .slice.strategy-stats .stats-table {
    display: flex;
  }
  .slice.strategy-stats .stats-table .table-row {
    flex-direction: column;
    width: 100%;
    border-bottom: 0px solid transparent;
  }
  .slice.strategy-stats .stats-table .table-row.table-head .table-cell {
    width: 70px;
    text-align: left;
  }
  .slice.strategy-stats .stats-table .table-row .table-cell {
    width: 100%;
    height: 35px;
    padding: 10px;
    font-size: 15px;
  }
  .slice.strategy-stats .stats-table .table-row .table-cell:first-child {
    width: 100%;
    padding-top: 10px;
    text-align: center;
  }
  .about-us .title {
    padding: 60px 0 60px;
  }
  .about-us .col-text {
    margin-bottom: 60px;
  }
  .team-block {
    float: left;
    width: calc(50% - 25px);
    margin-top: 100px;
  }
  .team-block:nth-child(2) {
    margin-top: 0;
  }
  .team-block:nth-child(2n+4) {
    margin-top: -60px;
  }
  .team-block:nth-child(2n+1) {
    margin-right: 50px;
  }
  .image-and-text .col-image {
    margin-bottom: 50px;
  }
  .col-map {
    margin-bottom: 50px;
  }
  .banner h4 .text-roll {
    font-size: 20px;
  }
  .banner h4 .text-roll span.first {
    font-size: 20px;
  }
  .banner h4 .text-roll span:not(.first) {
    font-size: 20px;
  }
  .banner h4 .text-roll span:not(.first).active {
    transform: translate3d(0px, 0, 0) rotateX(0deg);
  }
  .banner h4 .text-roll span:not(.first).out {
    transform: translate3d(0px, -1px, -30px) rotateX(90deg);
  }
  .single-strategie .wrapper {
    width: calc(100% - 40px);
  }
  .single-strategie .button, .single-strategie .gform_wrapper .gform_footer .gform_button, .gform_wrapper .gform_footer .single-strategie .gform_button {
    padding: 10px 15px;
  }
  .contact-image {
    margin-bottom: 30px;
  }
}
@media (max-width: 640px) {
  #home-banner {
    height: auto;
    min-height: 80vh;
  }
  #home-banner .tagline {
    font-size: 40px;
  }
  #home-banner .slider-container .slide.text-slide .inner {
    padding-top: 200px;
  }
  #home-banner .slider-container .slide.text-slide .line-animation {
    right: 18%;
  }
  .banner .the-content {
    padding-right: 100px;
  }
  .banner .line-animation {
    overflow-y: hidden;
    right: -7%;
    bottom: 100px;
  }
  .split-image .image {
    height: 400px;
  }
  .split-image .image img {
    min-height: 400px;
  }
  .split-image .image:nth-child(2) {
    width: 65%;
  }
  .the-content ul li:before {
    width: 40px;
    left: -10px;
  }
  .slice.resources .resource-container .resource-block {
    flex-wrap: wrap;
  }
  .slice.resources .resource-container .resource-block h3 {
    max-width: 100%;
    width: 100%;
    margin-bottom: 10px;
  }
}
@media (max-width: 550px) {
  .button, .gform_wrapper .gform_footer .gform_button {
    padding: 10px 40px;
  }
  .the-content .button, .the-content .gform_wrapper .gform_footer .gform_button, .gform_wrapper .gform_footer .the-content .gform_button {
    width: 100%;
    text-align: center;
  }
  .slice {
    padding: 50px 0;
  }
  .slice.strategy-stats {
    padding-top: 50px;
  }
  .slice.small-p-bottom {
    padding-bottom: 40px;
  }
  .slice.about-us:after {
    left: calc(100% - 100px);
  }
  .slice.about-us .col-text {
    margin-bottom: 150px;
  }
  .slice.strategy-category-list {
    padding: 50px 0;
  }
  .slice.strategy-category-list .strategy-container .strategy-block .title {
    margin: 40px 0 30px;
  }
  .slice.strategy-category-list .strategy-container .strategy-block .the-content {
    margin-bottom: 30px;
  }
  .wrapper {
    width: calc(100% - 60px);
  }
  #header {
    padding: 30px 30px;
  }
  #header .mobile-nav-trigger {
    right: 30px;
  }
  #header.shrink {
    padding: 20px 30px;
  }
  #home-banner {
    min-height: 660px;
  }
  #home-banner .slider-container {
    left: -25%;
    width: 175%;
  }
  #home-banner .slider-container .slide.in {
    right: -75%;
  }
  #home-banner .slider-container .slide.active {
    right: -15%;
  }
  #home-banner .slider-container .slide.text-slide .inner {
    padding: 180px 100px 50px 13%;
    width: 55%;
  }
  #home-banner .line-animation {
    right: -25%;
  }
  .home-bottom .col-text .button, .home-bottom .col-text .gform_wrapper .gform_footer .gform_button, .gform_wrapper .gform_footer .home-bottom .col-text .gform_button {
    width: 100%;
    text-align: center;
  }
  .split-image .image img {
    width: calc(100% + 500px);
  }
  .team-member-block .image {
    margin-bottom: 30px;
  }
  #team-member-lightbox .wrapper .image {
    margin-bottom: 30px;
  }
  #team-member-lightbox .wrapper .col-text {
    padding: 50px 40px;
  }
  #team-member-lightbox .wrapper .col-text h2 {
    font-size: 30px;
  }
  #team-member-lightbox .wrapper .col-text h3 {
    font-size: 20px;
  }
  #team-member-lightbox .wrapper .col-text a.link {
    font-size: 0;
  }
  .gform_wrapper .gform_title {
    font-size: 20px;
  }
  .gform_wrapper .validation_message {
    padding: 5px 15px !important;
  }
  .gform_wrapper .gform_body .gfield {
    padding-bottom: 30px;
    margin-bottom: 30px;
  }
  .popup.form {
    padding: 70px 0px;
  }
  .popup.form .wrapper .inner h2 {
    font-size: 30px;
  }
}
@media (max-width: 480px) {
  .the-content h1,
  .the-content h2 {
    font: normal 40px/110% "Gridnik", sans-serif;
    letter-spacing: 2px;
    color: black;
    margin-bottom: 35px;
  }
  .the-content h3 {
    margin-bottom: 25px;
  }
  .the-content h4 {
    margin-bottom: 20px;
  }
  #home-banner .tagline {
    padding-top: 100px;
  }
  #home-banner.fr .tagline {
    font-size: 35px;
  }
  .banner {
    padding-top: 0;
    padding-bottom: 80px;
  }
  .banner .line-animation {
    height: 75%;
  }
  .banner .the-content {
    padding-right: 50px;
  }
  .banner.small {
    min-height: 0;
    padding-bottom: 65px;
  }
  #main {
    padding-top: 150px;
  }
  .image-and-text .col-image {
    margin-bottom: 35px;
  }
  #footer .col:last-child {
    margin-bottom: 0;
  }
  #footer .copyrights {
    display: flex;
    justify-content: center;
    margin-top: 45px;
    flex-direction: column;
    align-items: center;
  }
  #footer #rubik-api-copyright {
    margin-bottom: 10px;
  }
  .team-block {
    float: none;
    width: 100%;
    margin-top: 0px;
  }
  .team-block:nth-child(2) {
    margin-top: 0;
  }
  .team-block:nth-child(2n+4) {
    margin-top: 40px;
  }
  .team-block:nth-child(2n+1) {
    margin-right: 0px;
  }
}
@media (max-width: 380px) {
  @keyframes panUp {
    0% {
      transform-origin: left top;
      transform: translateY(0);
    }
    50% {
      transform: translateY(-2.5%);
    }
    100% {
      transform: translateY(0);
    }
  }
  @keyframes panDown {
    0% {
      transform-origin: left top;
      transform: translateY(0);
    }
    50% {
      transform: translateY(2.5%);
    }
    100% {
      transform: translateY(0);
    }
  }
  #home-banner .tagline {
    font-size: 35px;
  }
  #home-banner .slider-container {
    left: -28%;
    width: 175%;
  }
  #home-banner .slider-container .slide.in {
    right: -75%;
  }
  #home-banner .slider-container .slide.active {
    right: -15%;
  }
  #home-banner .slider-container .slide.text-slide .inner {
    padding: 200px 50px 50px 13.5%;
    width: 62%;
  }
  #home-banner .slider-container .slide.text-slide .inner .the-content p {
    font-size: 16px;
  }
  #home-banner .slider-container .slide.text-slide.active:after {
    left: 63%;
  }
  #home-banner .slider-container .slide.text-slide .line-animation {
    right: 10%;
  }
  #home-banner .line-animation {
    right: -45%;
  }
}

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