@charset "UTF-8";
/*!
* animate.css - https://animate.style/
* Version - 4.1.1
* Licensed under the MIT license - http://opensource.org/licenses/MIT
*
* Copyright (c) 2020 Animate.css
*/
:root {
  --animate-duration: 1s;
  --animate-delay: 1s;
  --animate-repeat: 1;
}

.animate__animated, .alert.active, .alert {
  -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, .animate__infinite.alert {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.animate__animated.animate__repeat-1, .animate__repeat-1.alert {
  -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, .animate__repeat-2.alert {
  -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, .animate__repeat-3.alert {
  -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, .animate__delay-1s.alert {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
  -webkit-animation-delay: var(--animate-delay);
  animation-delay: var(--animate-delay);
}

.animate__animated.animate__delay-2s, .animate__delay-2s.alert {
  -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, .animate__delay-3s.alert {
  -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, .animate__delay-4s.alert {
  -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, .animate__delay-5s.alert {
  -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, .animate__faster.alert {
  -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, .animate__fast.alert {
  -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, .animate__slow.alert {
  -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, .animate__slower.alert {
  -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, .alert.active, .alert {
    -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], [class*=Out].alert {
    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, .alert.active {
  -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, .alert {
  -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, .animate__flip.alert {
  -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;
}

/*--------Set Up---------*/
html {
  scroll-behavior: smooth;
}

#loader {
  position: fixed;
  background: #fff;
  z-index: 99999;
  width: 100%;
  height: 100%;
  display: table;
}

#spinner {
  display: table-cell;
  text-align: center;
  vertical-align: middle;
}

body {
  background: #ffffff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
}

p,
span,
a,
button,
input,
textarea,
ul,
li,
ol {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}

.form-label {
  color: #142F3D;
}
.form-control {
  background: #F5FCFF;
  border: 1px solid #C1CFD6;
  padding: 15px;
  height: 50px;
  font-size: 14px;
  color: #267dd8;
}
.form-control::placeholder {
  color: #C1CFD6;
}
.form-control.select::-ms-expand {
  padding: 15px;
  display: none;
  appearance: none;
}
.form-control.select::after {
  content: "v";
  color: #267dd8;
}

/*--------Custom Style---------*/
.header-main {
  padding: 20px 10px;
  border-bottom: 1px solid #EBEBEB;
}
.header-logo {
  width: 200px;
}
.header-logo img {
  width: 100%;
}

.nav-item {
  font-size: 14px;
  margin: 0px 10px;
  border-radius: 5px;
}
.nav-item.active {
  background: #267dd8;
  color: #ffffff;
}
.nav-item.active .nav-link {
  color: #ffffff;
}
.nav-item:hover {
  color: #267dd8;
  background: #EBEBEB;
}
.nav-item:hover .nav-link {
  color: #267dd8;
}
.nav-item:hover .sub-menu {
  display: block;
}
.nav-item .sub-menu {
  position: absolute;
  z-index: 1;
  list-style: none;
  background: #fff;
  padding: 15px;
  border: 1px solid #efefef;
  border-radius: 5px;
  max-width: 300px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  display: none;
}
.nav-item .sub-menu li {
  padding: 10px 0px;
  width: 200px;
}
.nav-item .sub-menu li a {
  color: #476C80;
}
.nav-item .sub-menu li a:hover {
  color: #267dd8;
}
.nav-link {
  color: #142F3D;
  padding: 10px !important;
}

.bg-lighterblue {
  background: #F5FCFF;
}
.bg-darkblue {
  background: #267dd8;
}
.bg-blue {
  background: #267dd8;
}
.bg-orange {
  background: #FB9C17;
}
.bg-line-blue {
  background: url("../assets/img/blue_bg-01.svg");
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: contain;
}
.bg-line-orange {
  background: url("../assets/img/orange_bg-01.svg");
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: contain;
}
.bg-line-green {
  background: url("../assets/img/green_bg.svg");
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: contain;
}
.bg-line-purple {
  background: url("../assets/img/purple_bg.svg");
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: contain;
}
.bg-line-yellow {
  background: url("../assets/img/yellow_bg.svg");
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: contain;
}
.bg-line-knowledge {
  background: url("../assets/img/knowledge_bg.svg");
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: contain;
}
.bg-gradient-blue-green {
  background: linear-gradient(135deg, #006397, #0CA04F);
}
.bg-color-white {
  background: #ffffff;
}

.btn {
  padding: 10px 20px;
}
.btn-rounded-100 {
  border-radius: 100px;
}
.btn-rounded-20 {
  border-radius: 20px;
}
.btn-rounded-10 {
  border-radius: 10px;
}
.btn-rounded-5 {
  border-radius: 5px;
}
.btn-gradient-success {
  background: linear-gradient(to left, rgba(0, 168, 23, 0.65), rgb(12, 160, 79));
  transition: 0.3s all ease-in-out;
}
.btn-gradient-success:hover {
  box-shadow: 0px 0px 5px 3px rgba(12, 160, 79, 0.5);
  color: white;
}
.btn-overlay-orange {
  background: #FFE0B4;
}
.btn-overlay-grey {
  background: #EBEBEB;
}
.btn-solid-blue {
  background: #267dd8;
  color: white;
  transition: 0.3s all ease-in-out;
}
.btn-solid-blue:hover {
  box-shadow: 0px 0px 5px 3px rgba(12, 160, 79, 0.5);
  color: white;
}
.btn-solid-blue-bordered {
  border: 3px solid #6FCEFF;
  transition: 0.3s all ease-in-out;
}
.btn-solid-blue-bordered:hover {
  box-shadow: 0px 0px 5px 3px rgba(12, 160, 79, 0.5);
  color: white;
}
.btn-login {
  font-size: 12px;
  text-align: center;
  color: white;
  padding: 10px 30px;
  border: 0px;
  transition: 0.3s all ease-in-out;
}
.btn-login:hover {
  box-shadow: 0px 0px 5px 3px rgba(12, 160, 79, 0.5);
  color: white;
}

.txt-color-blue {
  color: #267dd8;
}
.txt-color-darkblue {
  color: #267dd8;
}
.txt-color-ashblue {
  color: #476C80;
}
.txt-color-dark {
  color: #142F3D;
}
.txt-color-darkorange {
  color: #EF572D;
}
.txt-color-lightyellow {
  color: #EFCF2D;
}
.txt-color-green {
  color: #0CA04F;
}
.txt-color-white {
  color: #fff;
}
.txt-color-grey {
  color: #BFBFBF;
}
.txt-color-lightgrey {
  color: #F3F3F3;
}
.txt-color-black {
  color: #142F3D !important;
}
.txt-heading {
  line-height: 50px;
}

.card {
  min-height: 400px;
  border: 1px solid #EBEBEB;
  transition: 0.3s all ease-in-out;
}
.card-title {
  font-size: 16px;
}
.card-text {
  font-size: 14px;
}
.card-icon {
  min-height: 160px;
  border-bottom: 1px solid #EBEBEB;
}
.card-footer {
  background: none;
}
.card:hover {
  box-shadow: 0px 0px 10px 5px #EBEBEB;
}

.icon-rounded-green {
  border-radius: 100%;
  height: 75px;
  width: 75px;
  background: #0CA04F;
  padding: 15px;
  box-shadow: 0px 0px 0px 5px rgba(12, 160, 79, 0.5);
}
.icon-rounded-green img {
  color: white;
  width: 35px;
  margin: 0px auto;
  display: table;
  margin-top: 0px;
}
.icon-rounded-orange {
  border-radius: 100%;
  height: 75px;
  width: 75px;
  background: #FB9C17;
  padding: 15px;
  box-shadow: 0px 0px 0px 5px rgba(251, 156, 23, 0.5);
}
.icon-rounded-orange img {
  color: white;
  width: 35px;
  margin: 0px auto;
  display: table;
  margin-top: 0px;
}
.icon-rounded-violet {
  border-radius: 100%;
  height: 75px;
  width: 75px;
  background: #D52191;
  padding: 15px;
  box-shadow: 0px 0px 0px 5px rgba(213, 33, 145, 0.5);
}
.icon-rounded-violet img {
  color: white;
  width: 35px;
  margin: 0px auto;
  display: table;
  margin-top: 0px;
}
.icon-rounded-darkorange {
  border-radius: 100%;
  height: 75px;
  width: 75px;
  background: #EF572D;
  padding: 15px;
  box-shadow: 0px 0px 0px 5px rgba(239, 87, 45, 0.5);
}
.icon-rounded-darkorange img {
  color: white;
  width: 35px;
  margin: 0px auto;
  display: table;
  margin-top: 0px;
}
.icon-rounded-purple {
  border-radius: 100%;
  height: 75px;
  width: 75px;
  background: #9F208C;
  padding: 15px;
  box-shadow: 0px 0px 0px 5px rgba(159, 32, 140, 0.5);
}
.icon-rounded-purple img {
  color: white;
  width: 35px;
  margin: 0px auto;
  display: table;
  margin-top: 0px;
}
.icon-rounded-evergreen {
  border-radius: 100%;
  height: 75px;
  width: 75px;
  background: #89C63F;
  padding: 15px;
  box-shadow: 0px 0px 0px 5px rgba(137, 198, 63, 0.5);
}
.icon-rounded-evergreen img {
  color: white;
  width: 35px;
  margin: 0px auto;
  display: table;
  margin-top: 0px;
}
.icon-set {
  width: 100%;
}
.icon-set path {
  fill: #ffffff;
}

.line {
  width: 50px;
  margin: 40px 0px;
}
.line-darkorange {
  border: 3px solid #EF572D;
  background: #EF572D;
}
.line-orange {
  border: 3px solid #FB9C17;
  background: #FB9C17;
}
.line-skyblue {
  border: 3px solid #6FCEFF;
  border-radius: 50px;
  background: #6FCEFF;
}

.hero-banner {
  min-height: 60vh;
}
.hero-banner-home {
  min-height: 70vh;
  max-height: 600px;
  flex-wrap: nowrap;
}
.hero-home, .hero-home-pre-employment-lp, .hero-home-cognitive-lp {
  background: url("../assets/img/home_bg.jpg");
  clip-path: polygon(0 0, 100% 0%, 79% 100%, 0% 100%);
  background-size: cover !important;
  background-attachment: inherit;
  background-position: center;
  height: inherit;
}
.hero-home-cognitive-lp {
  background: url("../assets/img/cognitive_bg.jpg");
}
.hero-home-pre-employment-lp {
  background: url("../assets/img/pre-employment_bg.png");
}
.hero-cognitive {
  background: linear-gradient(45deg, rgba(186, 231, 255, 0.9), rgba(0, 99, 151, 0.9)), url("../assets/img/assessment_bg_pages.jpg");
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
}
.hero-cognitive-mascot {
  background: url("../assets/img/cognitive_mascot.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom;
  min-height: 500px;
  margin-top: 30px;
}
.hero-mgmt {
  background: linear-gradient(45deg, rgba(255, 190, 245, 0.9), rgba(159, 32, 140, 0.9)), url("../assets/img/assessment_bg_pages.jpg");
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
}
.hero-mgmt-mascot {
  background: url("../assets/img/mgmt_mascot.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom;
  min-height: 500px;
  margin-top: 30px;
}
.hero-sales {
  background: linear-gradient(45deg, rgba(243, 242, 237, 0.9), rgba(203, 170, 0, 0.9)), url("../assets/img/assessment_bg_pages.jpg");
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
}
.hero-sales-mascot {
  background: url("../assets/img/sales_mascot.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom;
  min-height: 500px;
  margin-top: 30px;
}
.hero-personality {
  background: linear-gradient(45deg, rgba(186, 231, 255, 0.9), rgba(0, 99, 151, 0.9)), url("../assets/img/assessment_bg_pages.jpg");
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
}
.hero-personality-mascot {
  background: url("../assets/img/personality_mascot.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom;
  min-height: 500px;
  margin-top: 30px;
}
.hero-sjt {
  background: linear-gradient(45deg, rgba(255, 235, 207, 0.9), rgba(239, 87, 45, 0.9)), url("../assets/img/assessment_bg_pages.jpg");
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
}
.hero-sjt-mascot {
  background: url("../assets/img/sjt_mascot.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom;
  min-height: 500px;
  margin-top: 30px;
}
.hero-interest {
  background: linear-gradient(45deg, rgba(172, 255, 190, 0.9), rgba(12, 160, 79, 0.9)), url("../assets/img/assessment_bg_pages.jpg");
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
}
.hero-interest-mascot {
  background: url("../assets/img/interest_mascot.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom;
  min-height: 400px;
  margin-top: 30px;
}
.hero-office_skills {
  background: linear-gradient(45deg, rgba(172, 255, 190, 0.9), rgba(12, 160, 79, 0.9)), url("../assets/img/assessment_bg_pages.jpg");
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
}
.hero-office_skills-mascot {
  background: url("../assets/img/office_skills_mascot.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom;
  min-height: 500px;
  margin-top: 30px;
}
.hero-knowledge {
  background: linear-gradient(45deg, rgba(245, 242, 233, 0.9), rgba(255, 158, 0, 0.9)), url("../assets/img/assessment_bg_pages.jpg");
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
}
.hero-knowledge-mascot {
  background: url("../assets/img/knowledge_mascot.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom;
  min-height: 500px;
  margin-top: 30px;
}

.white-container {
  background: white;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  border-radius: 20px;
  max-width: 700px;
  margin: 20px 0px;
}
.white-container-home {
  max-width: 650px;
  margin-left: -200px;
  width: 550px;
  min-height: 400px;
  height: 85%;
  max-height: 500px;
  margin-top: 140vh;
  position: relative;
  opacity: 0;
  transform: rotate(40deg) scale(0.5);
  transition: 0.8s all ease-in-out;
}
.white-container-home.visible {
  opacity: 1;
  margin-top: 0px;
  transform: none;
}

.head-holder {
  max-width: 600px;
}
.head-title {
  color: #267dd8;
  font-size: 35px;
  text-transform: uppercase;
  border-left: 5px solid #EF572D;
  padding: 10px 20px;
}

.read-more {
  padding: 10px 20px;
  font-size: 14px;
}

.learn-more {
  padding: 10px 20px;
  font-size: 12px;
  transition: 0.2s all linear;
}
.learn-more:hover {
  color: white !important;
  background: #267dd8 !important;
}

.assessment-bg-img {
  background: url("../assets/img/assessments.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom center;
}
.assessment-integrity-features {
  background: linear-gradient(rgba(245, 252, 255, 0.8), rgba(245, 252, 255, 0.8)), url("../assets/img/integrity_features_bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

#assessment_holder {
  transform: translateX(-1000px);
  opacity: 0;
  transition: 0.8s all ease-in-out;
}
#assessment_holder.visible {
  opacity: 1;
  transform: translateX(0px);
}

#industries_holder {
  transform: translateX(1000px);
  transition: 0.8s all ease-in-out;
}
#industries_holder.visible {
  opacity: 1;
  transform: translateX(0px);
}

.our-customer-logo {
  display: table;
  margin: 0px auto;
}
.our-customer-logo img {
  max-width: 130px;
  max-height: 130px;
  filter: grayscale(100%);
  width: 100%;
  transform: scale(0.7);
  margin: 20px 5px;
  opacity: 0.6;
  transition: 0.5s all ease-in-out;
}
.our-customer-logo img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.3);
}
.our-science {
  background: url("../assets/img/bg_science.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}
.our-science-main-container {
  background: linear-gradient(180deg, rgba(0, 99, 151, 0.7), rgba(20, 47, 61, 0.7)), url("../assets/img/bg_science_main.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}
.our-science-main-container .science-card {
  background: white;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.2);
  max-width: 300px;
  width: 100%;
  height: 385px;
  border-radius: 5px;
  overflow: hidden;
}
.our-science-main-container .science-card-body {
  padding: 20px;
  font-size: 14px;
}

.how-it-works {
  padding: 2rem 1rem;
}
.how-it-works .key-icon {
  font-weight: 700;
  display: inline-block;
  margin-bottom: 0rem;
}
.how-it-works.works-01 {
  background: linear-gradient(135deg, rgba(235, 83, 41, 0.4), rgb(159, 39, 140)), url("../assets/img/build_your_own_how_01.jpg") !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
}
.how-it-works.works-02 {
  background: linear-gradient(135deg, rgba(229, 255, 91, 0.4), rgba(239, 87, 45, 0.65)), url("../assets/img/build_your_own_how_02.jpg") !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
}
.how-it-works.works-03 {
  background: linear-gradient(135deg, rgba(0, 99, 151, 0.6), rgb(0, 99, 151)), url("../assets/img/build_your_own_how_03.jpg") !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
}
.how-it-works.works-04 {
  background: linear-gradient(135deg, rgba(220, 255, 159, 0.6), rgb(12, 160, 79)), url("../assets/img/build_your_own_how_04.jpg") !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
}
@media (max-width: 767.98px) {
  .how-it-works {
    display: flex;
    align-items: center;
  }
}

.key-icon {
  width: 100%;
  font-size: 50px;
  color: #fff;
  margin-bottom: 20px;
}
.key-text {
  width: 100%;
  font-size: 20px;
  color: #fff;
  font-weight: 700;
  line-height: 1.8;
}
.key-feat {
  min-height: 300px;
  opacity: 1;
  transition: 0.2 all ease-in-out;
}
.key-character {
  background: linear-gradient(135deg, rgba(235, 83, 41, 0.4), rgb(159, 39, 140)), url("../assets/img/key_character.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}
.key-custom_test {
  background: linear-gradient(135deg, rgba(229, 255, 91, 0.4), rgba(239, 87, 45, 0.65)), url("../assets/img/key_custom_test.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}
.key-candidates {
  background: linear-gradient(135deg, rgba(0, 99, 151, 0.6), rgb(0, 99, 151)), url("../assets/img/key_candidates.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}
.key-winners {
  background: linear-gradient(135deg, rgba(220, 255, 159, 0.6), rgb(12, 160, 79)), url("../assets/img/key_winners.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}

.industry-list {
  list-style: none;
  display: contents;
}
.industry-list li {
  font-size: 16px;
  margin: 20px 0px;
}
.industry-list li::before {
  font-family: "Font Awesome 5 Free";
  content: "\f0a9";
  color: #89C63F;
  font-size: 18px;
  margin-right: 15px;
  display: inline-block;
  padding-right: 3px;
  vertical-align: middle;
  font-weight: 900;
}

.build_your_own-banner {
  min-height: 300px;
  width: 100%;
  background: linear-gradient(180deg, rgba(48, 64, 99, 0.5), rgb(1, 24, 71)), url("../assets/img/build_your_own_bg_b.jpg") !important;
  background-position: center;
}
.build_your_own-container {
  border-radius: 5px 5px 0px 0px;
  overflow: hidden;
}
.build_your_own-test_info {
  color: #142F3D;
  font-size: 16px;
  word-break: break-word;
}
.build_your_own-test_info-container {
  padding: 25px;
  border-bottom: 1px solid #476C80;
}
.build_your_own-test_info-title {
  letter-spacing: 2px;
}
.build_your_own-test_info-icon {
  max-width: 45px;
}
.build_your_own-footer_banner {
  background: linear-gradient(to top, #267dd8, rgba(12, 160, 70, 0.16)), url("../assets/img/build_your_own_footer_bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.faq-question {
  font-weight: bold;
  display: inline-flex;
  width: 60%;
}
.faq-question-open {
  display: block !important;
}
.faq-question-icon {
  font-size: 20px;
}
.faq-question-holder {
  width: 100%;
  background: #F5FCFF;
  border-radius: 5px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  display: table;
  padding: 20px 25px;
  margin-bottom: 30px;
}
.faq-question-holder #faq-question_open-btn {
  color: #142F3D;
  float: right;
  width: 30px;
  height: 30px;
  display: table;
  align-items: center;
  border-radius: 100%;
  text-align: center;
}
.faq-question-holder #faq-question_open-btn i {
  display: table-cell;
  vertical-align: middle;
}
.faq-question-holder #faq-question_open-btn:hover {
  text-decoration: none;
}
.faq-question-holder.im_open {
  background: #fff;
}
.faq-question-holder.im_open .faq-answer {
  opacity: 1;
  display: flex;
}
.faq-question-holder.im_open #faq-question_open-btn {
  transform: rotateZ(180deg);
  background: #F5FCFF;
}
.faq-answer {
  display: none;
  margin-top: 20px;
  opacity: 0;
  transition: 0.5s all ease-in-out;
}
.faq-answer p {
  font-size: 12px;
  width: 90%;
}
.faq-search-input {
  border: 1px solid #BFBFBF;
  padding: 10px 25px;
  border-radius: 5px 0px 0px 5px;
  color: #142F3D;
}
.faq-search-input-btn {
  background: #267dd8;
  padding: 10px 15px;
  color: white;
  border: none;
  border-radius: 0px 5px 5px 0px;
}

.industry_specific-hero-container {
  background: url("../assets/img/indus_bg.jpg");
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
}
.industry_specific-container {
  clip-path: polygon(9% 0, 100% 0, 100% 100%, 0% 100%);
  background: linear-gradient(135deg, rgb(187, 255, 218), rgba(12, 160, 79, 0.6));
  height: 100%;
  width: 100%;
}

.case_study-content {
  text-align: justify;
  font-size: 14px;
  line-height: 1.8;
}
.case_study-content-title {
  font-size: 30px;
  font-weight: 700;
  color: #267dd8;
  padding: 25px 0px;
  border-bottom: 1px solid #C1CFD6;
}
.case_study-content-img {
  margin: 30px 0px;
  width: 100%;
}
.case_study-content-tag {
  font-size: 20px;
  padding: 30px 0px;
  line-height: 1.8;
  text-align: center;
  font-weight: 400;
}
.case_study-content-ratio {
  font-size: 20px;
  color: #267dd8;
  text-align: center;
  line-height: 1.8;
  padding: 50px;
  margin: 50px 0px;
  background: #F3F2ED;
  border-radius: 5px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.2);
}
.case_study-menu-container {
  max-width: 450px;
  width: 100%;
  padding: 40px 0px;
}
.case_study-menu-title {
  color: #267dd8;
  font-size: 14px;
  text-transform: uppercase;
  padding: 20px 30px;
  border-left: 3px solid transparent;
}
.case_study-menu-item {
  padding: 25px 30px;
  font-size: 14px;
  color: #A9BAC2;
  width: 100%;
  border-right: 3px solid transparent;
  display: table;
}
.case_study-menu-item:hover {
  text-decoration: none;
  color: #267dd8;
}
.case_study-menu-item.active {
  border-right: 3px solid #267dd8;
  background: #fff;
  font-weight: 700;
  color: #267dd8;
}

.detail-icon {
  margin-bottom: 20px;
  width: 100px;
}

.test_img {
  max-width: 500px;
  width: 100%;
  opacity: 0.5;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  display: table;
  margin: 0px auto;
}
.test-detail-icon {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  padding: 10px;
  color: white;
  display: flex;
  font-size: 20px;
  text-align: center;
  align-items: center;
}
.test-detail-icon-orange {
  background: #FB9C17;
  box-shadow: 0px 0px 0px 5px rgba(251, 156, 23, 0.5);
}
.test-detail-icon-orange i {
  margin: 0px auto;
}
.test-detail-icon-evergreen {
  background: #89C63F;
  box-shadow: 0px 0px 0px 5px rgba(137, 198, 63, 0.5);
}
.test-detail-icon-evergreen i {
  margin: 0px auto;
}
.test-detail-list {
  margin-top: 20px;
  list-style: none;
}
.test-detail-list li {
  font-size: 16px;
  margin: 20px 0px;
  color: white;
}
.test-detail-list li::before {
  font-family: "Font Awesome 5 Free";
  content: "\f00c";
  color: white;
  font-size: 18px;
  margin-right: 15px;
  display: inline-block;
  padding-right: 3px;
  vertical-align: middle;
  font-weight: 900;
  position: absolute;
  margin-left: -30px;
}
.test-detail-overview {
  text-transform: uppercase;
  color: #267dd8;
  font-size: 20px;
  letter-spacing: 3px;
}
.test-detail-desc {
  font-size: 16px;
  color: #476C80;
  margin-top: 25px;
}
.test-detail img {
  height: 100%;
  max-height: 150px;
  max-width: 600px;
}

.leader-desc {
  font-size: 14px;
}

.oppurtunities-menu {
  max-width: 430px;
  width: 100%;
  background: #F3F3F3;
}
.oppurtunities-menu-content {
  width: inherit;
  margin-top: 100px;
}
.oppurtunities-menu-item {
  padding: 25px 40px;
  width: 100%;
  border-right: 5px solid transparent;
  display: table;
  font-size: 14px;
  color: #142F3D;
  text-decoration: none;
}
.oppurtunities-menu-item:hover {
  color: #267dd8;
  text-decoration: none;
}
.oppurtunities-menu-item.active {
  background: #fff;
  border-right: 5px solid #267dd8;
  color: #267dd8;
}
.oppurtunities-content {
  border-bottom: 1px solid #BFBFBF;
  padding: 50px 10px;
}
.oppurtunities-content-title {
  color: #267dd8;
  font-weight: 700;
  line-height: 1.5;
  font-size: 20px;
}
.oppurtunities-content-desc {
  font-size: 14px;
  font-style: italic;
  color: #BFBFBF;
  margin-top: 15px;
}
.oppurtunities-content-container {
  max-width: 1020px;
  width: 100%;
  display: table;
  margin: 0px auto;
}

.roi-submit {
  background: #267dd8;
  border-radius: 5px;
  border: 2px solid #267dd8;
  color: #fff;
  text-align: center;
  font-weight: 700;
  padding: 10px 20px;
}
.roi-submit:hover {
  background: #fff;
  color: #267dd8;
}
.roi-input {
  background: #F5FCFF;
  border: 1px solid #C1CFD6;
  padding: 15px;
  text-align: right;
  height: 50px;
  font-size: 16px;
  color: #267dd8;
  font-weight: 700;
}
.roi-input.disabled {
  font-weight: 400;
  background: #F3F3F3;
  border: 1px solid #F3F3F3;
  color: #536975;
}
.roi-input-label {
  font-size: 12px;
  color: #142F3D;
  width: 100%;
}
.roi-input-label-sub {
  margin: 20px 0px;
  color: #A9BAC2;
  font-size: 12px;
  display: table;
}
.roi-input-sign {
  font-size: 13px;
  color: #142F3D;
  font-weight: 700;
  text-align: left;
  width: 30px;
  text-align: right;
}
.roi-container {
  max-width: 800px;
  padding: 20px;
  width: 100%;
  display: table;
  margin: 0px auto;
}
.roi-title {
  font-size: 25px;
  font-weight: 700;
  color: white;
}
.roi-subtitle {
  font-size: 12px;
  color: white;
}
.roi-menu-item {
  background: #F3F2ED;
  border-bottom: 5px solid #C1CFD6;
  display: table;
  text-align: center;
  padding: 20px;
  color: #536975;
  font-weight: 700;
}
.roi-menu-item:hover {
  color: #267dd8;
  text-decoration: none;
  border-bottom: 5px solid #267dd8;
}
.roi-menu-item.active {
  background: #F5FCFF;
  border-bottom: 5px solid #267dd8;
  color: #267dd8;
}

.customer-logo img {
  opacity: 0.5;
  filter: grayscale(100%);
  max-width: 200px;
  width: 100%;
  margin: 0px auto;
  display: table;
  padding: 15px;
  transition: all 0.5s ease-in-out;
}
.customer-logo img:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.5);
}
.customer-testimonial {
  max-width: 800px;
  width: 100%;
}
.customer-testimonial-content {
  text-align: center;
  font-style: italic;
  font-size: 21px;
}
.customer-testimonial-content-person {
  font-size: 14px;
  text-align: left;
  line-height: 1.8;
}
.customer .card {
  height: 100%;
}

.req-dem {
  background: url("../assets/img/req-dem_bg.jpg");
  background-size: cover;
  background-position: center;
  min-height: 300px;
}

.platform .feature-card {
  background: white;
  border-radius: 5px;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.2);
  display: inline-flex;
  width: 100%;
  height: 250px;
  overflow: hidden;
}
.platform .feature-card-body {
  padding: 30px;
}
.platform .feature-card-body-title {
  color: #267dd8;
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 16px;
}
.platform .feature-card-body-txt {
  font-size: 12px;
  height: 90px;
  margin: 0px;
}
.platform-container {
  background: url("../assets/img/platform_bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.platform-container-content {
  max-width: 700px;
  width: 100%;
}
.platform-star-profile-container {
  background: linear-gradient(rgba(245, 252, 255, 0.8), rgba(245, 252, 255, 0.8)), url("../assets/img/star_profile_bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.platform-analytics-container {
  background: linear-gradient(rgba(245, 252, 255, 0.8), rgba(245, 252, 255, 0.8)), url("../assets/img/analytics_bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.platform-score-report-container {
  background: linear-gradient(rgba(245, 252, 255, 0.8), rgba(245, 252, 255, 0.8)), url("../assets/img/score_report_bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.platform-hero-content {
  clip-path: polygon(10% 0%, 100% 0%, 100% 100%, 0% 100%);
  background: rgba(245, 252, 255, 0.95);
  height: 100%;
  padding: 50px;
}
.platform-txt-head {
  font-size: 30px;
}
.platform-txt-sub_head {
  font-size: 20px;
}
.platform .card-library {
  max-width: 300px;
  width: 100%;
  background: white;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  margin-top: 10px;
  margin-right: 20px;
  float: left;
  overflow: hidden;
  display: grid;
}
.platform .card-library-url {
  padding: 20px;
  font-size: 16px;
}

.contact_us-container {
  max-width: 700px;
  width: 100%;
  padding: 10px;
  margin: 0px auto;
}
.contact_us-container-banner {
  background: url("../assets/img/contact_us_bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  min-height: 80vh;
}

.demo-container-form {
  margin-top: -176.4705882353px;
}
.demo-container-banner {
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.9), rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)), url("../assets/img/bg-demo-v2.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  height: 500px;
}
.demo-container-form-2 {
  margin-top: -176.4705882353px;
}
.demo-container-banner-2 {
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.9), rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)), url("../assets/img/bg-demo-v3.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  height: 500px;
}
.demo-content * {
  line-height: 1.8;
}
.demo-content-header {
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.4);
}
.demo-content li {
  margin-bottom: 15px;
}

.rounded-1 {
  border-radius: 1px;
}
.rounded-2 {
  border-radius: 2px;
}
.rounded-3 {
  border-radius: 3px;
}
.rounded-4 {
  border-radius: 4px;
}
.rounded-5 {
  border-radius: 5px;
}
.rounded-6 {
  border-radius: 6px;
}
.rounded-7 {
  border-radius: 7px;
}
.rounded-8 {
  border-radius: 8px;
}
.rounded-9 {
  border-radius: 9px;
}
.rounded-10 {
  border-radius: 10px;
}
.rounded-11 {
  border-radius: 11px;
}
.rounded-12 {
  border-radius: 12px;
}
.rounded-13 {
  border-radius: 13px;
}
.rounded-14 {
  border-radius: 14px;
}
.rounded-15 {
  border-radius: 15px;
}
.rounded-16 {
  border-radius: 16px;
}
.rounded-17 {
  border-radius: 17px;
}
.rounded-18 {
  border-radius: 18px;
}
.rounded-19 {
  border-radius: 19px;
}
.rounded-20 {
  border-radius: 20px;
}
.rounded-21 {
  border-radius: 21px;
}
.rounded-22 {
  border-radius: 22px;
}
.rounded-23 {
  border-radius: 23px;
}
.rounded-24 {
  border-radius: 24px;
}
.rounded-25 {
  border-radius: 25px;
}

.thank_you {
  min-height: 80vh;
  display: flex;
  align-items: center;
}
.thank_you-container {
  width: 100%;
  max-width: 800px;
  display: table;
  margin: 0px auto;
}

.swiper-button-next-new,
.swiper-button-prev-new {
  background: #fff !important;
  width: 50px;
  height: 50px;
  position: absolute;
  z-index: 999;
  margin-top: -150px;
  border-radius: 30px;
  display: flex;
  text-align: center;
  align-items: center;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.2);
  margin-left: 20px;
  margin-right: 20px;
}
.swiper-button-next-new i,
.swiper-button-prev-new i {
  text-align: center;
  display: table;
  margin: 0px auto;
  font-size: 21px;
  color: #267dd8;
}

.swiper-button-next-new {
  right: 0px;
}

.tooltip > .tooltip-inner {
  text-align: left;
  min-width: 300px;
  padding: 20px;
}

.tooltip > .tooltip-arrow {
  border-color: #f00;
}

.privacy-list {
  list-style: none;
}
.privacy-list li {
  margin-bottom: 14px;
}
.privacy-list li::before {
  content: "•";
  font-size: 25px;
  color: #FB9C17;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -28px;
}

.footer {
  background: #142F3D;
  border-top: 8px solid #267dd8;
}
.footer-banner {
  background: linear-gradient(to bottom, #267dd8, rgba(12, 160, 70, 0.16)), url("../assets/img/footer_banner.jpg");
  background-position-x: center;
  background-position-y: bottom;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  min-height: 500px;
}
.footer-title {
  color: #6FCEFF;
  font-size: 14px;
  margin-top: 15px;
}
.footer-title:hover {
  color: #6FCEFF !important;
}
.footer-link {
  color: white;
}
.footer-link-item {
  color: white;
  margin-top: 20px;
  font-size: 12px;
  display: table;
}
.footer-link-item:hover {
  color: #6FCEFF;
  text-decoration: none;
}

.copyright {
  background: #476C80;
}
.copyright-text {
  color: white;
  text-align: center;
  font-size: 12px;
}

.social-icon {
  color: white;
  font-size: 14px;
  margin-top: 10px;
  margin-right: 15px;
  display: inline-block;
}

.stick {
  position: fixed;
  width: 100%;
  z-index: 99999;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0px 0px 10px rgba(33, 37, 41, 0.51);
  animation-name: header-animation;
  animation-duration: 600ms;
}

.stick_2 {
  position: fixed;
  width: 100%;
  z-index: 2;
  background: rgb(255, 255, 255);
  box-shadow: 0px 0px 10px rgba(33, 37, 41, 0.51);
  animation-name: header-animation;
  animation-duration: 600ms;
}

.peek-btn {
  background: linear-gradient(90deg, #0CA04F, #89C63F);
  margin-top: -80px;
  margin-bottom: 0px;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
  position: relative;
  text-decoration: none;
  display: table;
  font-size: 12px;
  padding: 8px 10px 8px 20px;
  color: #ffffff;
  border-radius: 30px;
  box-shadow: 0px 0px 0px 3px rgba(12, 160, 79, 0.5);
}
.peek-btn:hover {
  color: #fff;
  text-decoration: none;
}
.peek-btn i {
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.5);
  width: 30px;
  height: 30px;
  text-align: center;
  padding: 10px;
}

.asses_item {
  width: 50%;
  float: left;
  padding: 10px 0px;
}
.asses_item-list {
  width: 50%;
  float: left;
  padding: 10px 0px;
}

.home-txt-sub {
  line-height: 2.3;
}
.arrow-holder {
  width: 100%;
  display: table;
}

.percent_value {
  font-family: "Paytone One", sans-serif;
}
.percent_value_ind {
  font-size: 14px;
}

.container-hero {
  max-width: 1024px;
  width: 100%;
  margin: 0px auto;
  padding: 20px;
}

@keyframes header-animation {
  0% {
    margin-top: -100%;
    opacity: 0;
  }
  100% {
    margin-top: 0%;
    opacity: 1;
  }
}
.partner-card {
  background: #fff;
  border: 1px solid #EBEBEB;
  border-radius: 10px;
}
.partner-card-img {
  width: 100%;
  height: 130px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid #EBEBEB;
}
.partner-card-img img {
  max-width: 200px;
}
.partner-card-content-icon {
  color: #A9BAC2;
  font-size: 20px;
}

.alert {
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 999999;
  display: none;
}
.alert.active {
  display: flex;
}
.alert-container {
  max-width: 700px;
  width: 100%;
  padding: 30px;
  border: 0px;
  border-radius: 10px;
  background: white;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
}

@media (max-width: 575.98px) {
  .platform .feature-card {
    display: block;
    height: auto;
  }
  .platform .feature-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
  .platform .feature-card-body-txt {
    height: 120px;
  }
  .home-txt-sub {
    line-height: 1.3;
  }
  .home-txt-head {
    font-size: 30px;
  }
  .home-txt-btn {
    font-size: 12px;
  }
  .asses_item {
    width: 100%;
    padding: 10px 0px;
  }
  .asses_item-list {
    width: 100%;
    padding: 0px 0px;
  }
  .txt-banner-footer {
    font-size: 20px !important;
    line-height: 1.5;
  }
  .txt-head-details {
    font-size: 20px !important;
  }
  .test-detail-tag {
    font-size: 20px !important;
  }
  .test-detail img {
    max-width: 300px;
    height: auto;
  }
  .bg-home-mobile {
    background: linear-gradient(135deg, rgba(0, 99, 151, 0.8), rgba(12, 160, 79, 0.8)), url("../assets/img/home_bg.jpg");
    background-size: cover;
    background-repeat: no-repeat;
  }
  .white-container-home {
    max-width: 650px;
    margin-left: 0px;
    width: 90%;
    background: linear-gradient(rgb(255, 255, 255));
    margin: 0px auto;
    display: table;
  }
  .white-container-home.visible {
    position: relative;
  }
  .build_your_own-test_info {
    color: #142F3D;
    font-size: 14px;
    word-break: break-all;
  }
  .build_your_own-test_info-container {
    padding: 15px;
  }
  .border-sm-left-0 {
    border: 0px !important;
  }
}
@media (max-width: 767.98px) {
  .platform-hero-content {
    clip-path: polygon(0 0, 100% 0%, 100% 100%, 0% 100%);
  }
  .science-card {
    width: 300px;
    margin: 20px auto;
  }
  .icon_syn {
    width: 30px;
  }
  .header-main {
    padding: 5px;
    border-bottom: 1px solid #EBEBEB;
  }
  .bg-home-mobile {
    background: linear-gradient(135deg, rgba(0, 99, 151, 0.8), rgba(12, 160, 79, 0.8)), url("../assets/img/home_bg.jpg");
    background-size: cover;
    background-repeat: no-repeat;
  }
  .white-container {
    margin-top: 0px;
    margin-bottom: 20px;
  }
  .white-container-home {
    max-width: 650px;
    margin-left: 0px;
    width: 90%;
    background: linear-gradient(rgb(255, 255, 255));
    margin: 0px auto;
    display: table;
  }
  .white-container-home.visible {
    position: relative;
  }
  .roi-input-label {
    text-align: left;
    font-size: 12px;
  }
  .swiper-button-next-new,
  .swiper-button-prev-new {
    margin-top: 0px;
  }
}
@media (max-width: 991.98px) {
  .demo-container-form {
    margin-top: 0px;
  }
  .contact_us-container-banner {
    min-height: 40vh;
    background-position: 0% 20%;
  }
  .demo-container-banner {
    min-height: 40vh;
  }
  .arrow-holder {
    width: auto;
    display: table;
    margin: 15px auto;
  }
  .arrow-holder .swiper-button-next-new,
  .arrow-holder .swiper-button-prev-new {
    margin-top: 0px;
    margin: 0px;
    position: relative;
    float: right;
    background: transparent !important;
    box-shadow: none;
  }
  .hero-home, .hero-home-cognitive-lp, .hero-home-pre-employment-lp {
    min-height: 90vh;
  }
  .bg-home-mobile {
    background: linear-gradient(135deg, rgba(0, 99, 151, 0.8), rgba(12, 160, 79, 0.8)), url("../assets/img/home_bg.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    padding: 30px;
  }
  .white-container-home {
    max-width: 650px;
    margin-left: 0px;
    width: 90%;
    background: linear-gradient(rgb(255, 255, 255));
    margin: 0px auto;
    display: table;
    padding: 30px;
  }
  .white-container-home.visible {
    position: relative;
  }
  .case_study-menu-title {
    padding: 20px 5px;
    border-left: 0px solid transparent;
    border-bottom: 1px solid #A9BAC2;
    margin-bottom: 20px;
  }
  .case_study-menu-container {
    max-width: 100vw;
    padding: 40px;
  }
  .case_study-menu-item {
    padding: 15px 20px;
    color: #A9BAC2;
    width: auto;
    border-radius: 5px;
    display: inline-block;
    background: #ffffff;
    margin: 5px;
    border: 1px solid #A9BAC2;
    font-size: 12px;
    font-weight: 400;
  }
  .case_study-menu-item:hover {
    text-decoration: none;
    color: #267dd8;
  }
  .case_study-menu-item.active {
    border: 1px solid #267dd8;
    background: #fff;
  }
  .industry_specific-container {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    padding: 20px;
  }
  .txt-heading {
    font-size: 40px;
  }
  .test-detail-tag {
    font-size: 30px !important;
  }
}
@media (max-width: 1199.98px) {
  .platform-container-content {
    max-width: 500px;
  }
  .platform-txt-head {
    font-size: 22px;
  }
  .platform-txt-sub_head {
    font-size: 16px;
  }
  .txt-heading {
    font-size: 30px;
    line-height: 40px;
  }
  .test-detail-tag {
    font-size: 40px;
  }
  .icon-set {
    max-width: 200px;
    width: 100%;
  }
  .header-main {
    padding: 5px;
    border-bottom: 1px solid #EBEBEB;
  }
  .header-logo {
    min-width: 120px;
    width: 120px;
  }
  .nav-link {
    color: #142F3D;
    padding: 10px 10px !important;
  }
  .nav-item {
    font-size: 12px;
  }
}
.best-seller {
  background-color: #f00;
}

.build-skill .roi-title {
  font-size: 1.25rem;
}
.build-skill .form-check {
  margin-bottom: 0.35rem;
}

.selected-test li {
  margin-bottom: 0.35rem;
}

.list-custom {
  padding-left: 0.875rem;
}
.list-custom li {
  font-size: 0.875rem;
  color: #476C80;
}
.list-custom-details {
  list-style-type: none;
}
.list-custom-details li::before {
  font-family: "Font Awesome 5 Free";
  content: "\f00c";
  color: #476C80;
  font-size: 14px;
  margin-right: 15px;
  display: inline-block;
  padding-right: 3px;
  vertical-align: middle;
  font-weight: 900;
  position: absolute;
  margin-left: -30px;
}

.new-nav {
  font-family: "Poppins", sans-serif !important;
}
.new-nav .main-menu {
  padding-left: 120px;
}
@media (max-width: 767.98px) {
  .new-nav .main-menu {
    padding-left: 0px;
  }
}
.new-nav .nav-item {
  font-size: 1rem;
}
.new-nav .nav-item .sub-menu {
  padding: 0rem;
  border-radius: 1rem;
  box-shadow: 10px 15px 30px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 10px 15px 30px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 10px 15px 30px 0px rgba(0, 0, 0, 0.1);
  border: none;
}
.new-nav .nav-item .sub-menu li {
  padding: 0rem;
  width: auto;
}
.new-nav .nav-item .sub-menu li a {
  display: flex;
  padding: 0.75rem 1.5rem;
}
.new-nav .nav-item .sub-menu li a:hover {
  text-decoration: none;
  color: #267dd8;
}
.new-nav .nav-item .nav-link:hover {
  color: #267dd8;
}
.new-nav .nav-item:hover {
  background-color: #fff;
}

.btn-primary {
  color: #fff;
  background-color: #267dd8;
  border: 1px solid #267dd8;
  text-transform: capitalize;
  height: 3rem;
  border-radius: 0.75rem;
  padding: 0.75rem 2rem;
  display: inline-flex;
  align-items: center;
  transition: 0.5s;
  border-radius: 4rem;
}
.btn-primary i {
  font-size: 2rem;
  transition: 0.5s;
}
.btn-primary:hover, .btn-primary:focus {
  background-color: #B2FCD7;
  border-color: #B2FCD7;
  color: #000;
  text-decoration: none;
}
.btn-primary:hover i, .btn-primary:focus i {
  transition: 0.5s;
  transform: translateX(20%);
}

.btn-outlined {
  color: #267dd8;
  background-color: #fff;
  border: 1px solid #267dd8;
  white-space: nowrap;
  height: 3rem;
  border-radius: 0.75rem;
  padding: 0.75rem 2rem;
  display: inline-flex;
  align-items: center;
  transition: 0.5s;
  border-radius: 4rem;
}
.btn-outlined i {
  font-size: 2rem;
  transition: 0.5s;
}
.btn-outlined:hover, .btn-outlined:focus {
  background-color: #B2FCD7;
  border-color: #B2FCD7;
  color: #267dd8;
}
.btn-outlined:hover i, .btn-outlined:focus i {
  transition: 0.5s;
  transform: translateX(20%);
}

.btn-secondary {
  background: #0CA04F;
  background: linear-gradient(270deg, rgb(12, 160, 79) 0%, rgb(137, 198, 63) 100%);
  border: none;
  font-weight: 500;
  white-space: nowrap;
  height: 3rem;
  border-radius: 0.75rem;
  padding: 0.75rem 2rem;
  display: inline-flex;
  align-items: center;
  transition: 0.5s;
  border-radius: 4rem;
}
.btn-secondary i {
  font-size: 2rem;
  transition: 0.5s;
}
.btn-secondary:hover, .btn-secondary:focus {
  background-color: #B2FCD7;
  border-color: #B2FCD7;
  color: #ffffff;
}
.btn-secondary:hover i, .btn-secondary:focus i {
  transition: 0.5s;
  transform: translateX(20%);
}

.new-footer {
  position: relative;
  background-color: #142F3D;
}
@media (max-width: 575.98px) {
  .new-footer .foot-logo {
    text-align: center;
  }
}
.new-footer .foot-links {
  width: auto;
  display: flex;
  gap: 3rem;
}
.new-footer .foot-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.new-footer .foot-links li.title {
  font-weight: 600;
  color: #02A6DC;
}
.new-footer .foot-links li a {
  font-size: 0.875rem;
  color: #fff;
  text-decoration: none;
}
.new-footer .foot-links li a:hover, .new-footer .foot-links li a:focus {
  color: #02A6DC !important;
}
@media (max-width: 575.98px) {
  .new-footer .foot-links {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }
  .new-footer .foot-links ul {
    text-align: center;
  }
}
@media (max-width: 767.98px) {
  .new-footer .foot-links {
    width: auto;
  }
  .new-footer .foot-links ul {
    gap: 0rem;
  }
  .new-footer .foot-links li a {
    font-size: 0.875rem;
  }
}
.new-footer.foot-2 {
  color: #02A6DC;
  font-size: 0.875rem;
}
.new-footer.foot-2 a {
  color: #02A6DC;
  text-decoration: none;
}

.orgs-logo {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.orgs-logo .img-con {
  filter: grayscale(100%);
  opacity: 0.6;
  scale: 0.8;
  display: flex;
  max-width: 130px;
  max-height: 130px;
  transition: 0.5s;
}
.orgs-logo .img-con img {
  width: 100%;
}
.orgs-logo .img-con:hover {
  filter: grayscale(0%);
  opacity: 1;
  scale: 1.2;
}
@media (max-width: 767.98px) {
  .orgs-logo {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
  }
  .orgs-logo .img-con {
    padding: 0.5rem;
  }
}
.hero-ss {
  position: absolute;
  width: 700px;
  top: 120px;
  transform: translateY(-50%);
  overflow: hidden;
  border-radius: 0.75rem;
  z-index: -1;
}
.hero-ss img {
  width: 100%;
}
.hero-ss.dash {
  left: 72%;
  transform: rotate(14deg);
}
.hero-ss.cognitive {
  right: 72%;
  transform: rotate(-14deg);
}
@media (max-width: 767.98px) {
  .hero-ss {
    width: 200px;
    top: 200px;
  }
  .hero-ss.dash {
    left: 50%;
  }
  .hero-ss.cognitive {
    right: 50%;
  }
}

.new-hero {
  overflow: hidden;
  height: auto;
  position: relative;
  background-position: top center;
  background-repeat: no-repeat;
  padding-bottom: 200px;
}
@media (max-width: 767.98px) {
  .new-hero {
    height: auto;
    padding-bottom: 40px;
  }
  .new-hero .hero-wrap {
    position: relative !important;
  }
}
.new-hero.overlap {
  padding-bottom: 16.5rem !important;
}
.new-hero .hero-wrap {
  padding-top: 136px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-width: 100%;
}
.new-hero .hero-wrap .swipe {
  text-align: center;
  width: 100%;
}
.new-hero .hero-wrap h5 {
  color: #9AA2A5;
  font-size: 1.25rem;
  font-weight: 300;
}
@media (max-width: 575.98px) {
  .new-hero .hero-wrap {
    padding-top: 40px !important;
  }
}
.new-hero .hero-wrap h1 {
  font-weight: 600;
  font-size: 4rem;
}
.new-hero .hero-wrap .hero-txt {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.new-hero .hero-wrap .hero-txt .big-sub {
  font-size: 4rem;
  font-weight: 600;
  color: #fff;
  background-color: #89C63F;
  border-radius: 0.75rem;
  width: fit-content;
  padding: 0 2rem;
  transform: rotate(-2deg);
}
.new-hero .hero-wrap .hero-txt p {
  color: #9AA2A5;
}
@media (max-width: 767.98px) {
  .new-hero .hero-wrap .hero-txt .big-sub {
    font-size: 2.5rem;
    margin-bottom: 120px;
  }
}
@media (max-width: 767.98px) {
  .new-hero .hero-wrap {
    justify-content: center;
    margin-top: 0rem;
    padding: 7rem 0rem 2rem 0rem;
  }
  .new-hero .hero-wrap h1 {
    font-size: 2.563rem;
  }
  .new-hero .hero-wrap p {
    font-size: 1rem;
  }
}

.bg-alt {
  background-color: #F5FCFF !important;
}

.overlap-img {
  margin-top: -16.25rem;
  overflow: hidden;
}

.rounded {
  border-radius: 0.75rem !important;
}

section {
  padding: 6rem 0;
}
@media (max-width: 767.98px) {
  section {
    padding: 2rem 0;
  }
  section h1 {
    font-size: 1.75rem;
  }
}

.new-card {
  border: 1px solid #DFE2E7;
  border-radius: 0.75rem;
  padding: 2rem 1.5rem;
  background-color: transparent;
  display: grid;
}
.new-card h5 {
  font-size: 1.25rem;
  color: #142F3D;
  margin-bottom: 0rem;
  font-weight: 500;
}
.new-card p {
  font-size: 1rem;
  margin-bottom: 0rem;
  color: #5C676B;
  font-weight: 300;
}

.card-testi {
  border-color: #F5FCFF;
  background-color: #F5FCFF;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.card-testi i {
  font-size: 1.5rem;
  color: #DFE2E7;
}
.card-testi p {
  font-size: 1rem;
  color: #142F3D;
}
.card-testi .star i {
  color: #FB9C17;
}
.card-testi h6 {
  font-size: 1rem;
  color: #142F3D;
  margin-bottom: 0rem;
  font-weight: 500;
}
.card-testi small {
  font-size: 0.875rem;
  color: #5C676B;
}

.colored-card {
  display: grid;
  align-content: start;
}
.colored-card h1 {
  color: #ffffff;
  font-size: 7.5rem !important;
}
.colored-card h2 {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 500;
}
.colored-card p {
  font-size: 1rem;
  color: #ffffff;
}
.colored-card.light {
  background-color: #ffffff;
}
.colored-card.light h1 {
  color: #267dd8;
}
.colored-card.light h2, .colored-card.light p {
  color: #267dd8;
}
@media (max-width: 767.98px) {
  .colored-card h1 {
    font-size: 3rem !important;
  }
  .colored-card h2 {
    font-size: 1.25rem;
  }
  .colored-card p {
    font-size: 1rem;
  }
}

.pill {
  font-size: 1rem;
  font-weight: 500;
  color: #838F85;
  background-color: #F5FCFF;
  border-radius: 2rem;
  padding: 0.5rem 1rem;
}

.pill-lg {
  display: block;
  width: fit-content;
  background-color: #DDFEB6;
  border-radius: 3.25rem;
  color: #74B822;
  font-size: 1.125rem;
  padding: 0.75rem 2.5rem;
}
@media (max-width: 767.98px) {
  .pill-lg {
    font-size: 1rem;
  }
}

.d-grid {
  display: grid;
}

.gap-2 {
  gap: 0.5rem !important;
}
.gap-3 {
  gap: 1rem !important;
}
.gap-4 {
  gap: 1.5rem !important;
}

.fw-500 {
  font-weight: 500;
}

.txt-gray {
  color: #5C676B !important;
}

.grad-tangerine {
  background: #FB9C17;
  background: linear-gradient(133deg, rgb(251, 156, 23) 0%, rgb(239, 87, 45) 100%);
}

.grad-green {
  background: #89C63F;
  background: linear-gradient(133deg, rgb(137, 198, 63) 0%, rgb(12, 160, 79) 100%);
}

.grad-magenta {
  background: #D52191;
  background: linear-gradient(133deg, rgb(213, 33, 145) 0%, rgb(159, 32, 140) 100%);
}

.cta {
  background-color: #267dd8;
}
.cta .fs-2 {
  font-size: 2rem;
}
.cta h1, .cta p {
  color: #ffffff;
  margin-bottom: 0rem;
}
@media (max-width: 767.98px) {
  .cta h1 {
    font-size: 1.75rem;
  }
  .cta p {
    font-size: 1rem;
  }
  .cta .fs-6 {
    font-size: 0.75rem !important;
  }
}

@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.logos {
  overflow: hidden;
  white-space: nowrap !important;
  position: relative;
  display: flex;
}
@media (max-width: 767.98px) {
  .logos {
    padding: 0px 0;
  }
}
.logos .logos-container {
  display: flex;
  justify-content: space-between;
  animation: 40s slide infinite linear;
}
.logos .logos-container .logo-item {
  width: 200px;
  margin: 0 20px;
  display: flex;
  align-items: center;
  transition: 0.5s;
  transform: scale(0.8);
  filter: grayscale(100%);
  opacity: 0.6;
}
.logos .logos-container .logo-item:hover {
  transform: scale(1);
  filter: grayscale(0%);
  opacity: 1;
}
.logos .logos-container img {
  width: 100%;
}
@media (max-width: 767.98px) {
  .logos .logos-container .logo-item {
    width: 120px;
  }
}
.logos:before, .logos:after {
  position: absolute;
  top: 0;
  width: 140px;
  height: 120px;
  content: "";
  z-index: 1;
}
@media (max-width: 767.98px) {
  .logos:before, .logos:after {
    width: 40px;
  }
}
.logos:before {
  left: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 0), #ffffff);
}
.logos:after {
  right: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), #ffffff);
}

.testimonials-slide {
  text-align: center;
}
.testimonials-slide .content-body {
  color: #142F3D;
  display: flex;
  flex-direction: column;
}
.testimonials-slide .content-body .txt {
  padding: 0 5rem;
  display: flex;
  justify-content: center;
}
.testimonials-slide .content-body .txt p {
  font-size: 1rem;
  line-height: 2;
  color: #5C676B;
  font-weight: 300;
}
@media (max-width: 767.98px) {
  .testimonials-slide .content-body .txt {
    padding: 0 3.5rem;
  }
  .testimonials-slide .content-body .txt p {
    font-size: 0.75rem;
    line-height: 1.75;
  }
}
.testimonials-slide .content-body .star {
  color: #FB9C17;
}
.testimonials-slide .content-body .name-pos h6 {
  font-size: 1rem;
  margin-bottom: 0rem;
  font-weight: 600;
}
.testimonials-slide .content-body .name-pos small {
  color: #5C676B;
  font-weight: normal;
  font-size: 0.875rem;
}
@media (max-width: 767.98px) {
  .testimonials-slide .content-body .name-pos h6 {
    font-size: 0.875rem;
  }
  .testimonials-slide .content-body .name-pos small {
    font-size: 0.75rem;
  }
}
.testimonials-slide .quote {
  font-size: 3rem;
  color: #DFE2E7;
}
.testimonials-slide .quote.flip {
  transform: rotate(-180deg);
}

.new-swiper {
  overflow: hidden;
}
.new-swiper .swiper-button-prev, .new-swiper .swiper-button-next {
  background-color: #F5FCFF;
  border-radius: 50%;
}
.new-swiper .swiper-button-prev svg, .new-swiper .swiper-button-next svg {
  color: #BFE9FF;
  width: 8px !important;
}
.new-swiper .swiper-button-prev::after, .new-swiper .swiper-button-next::after {
  content: none;
}
.new-swiper .swiper-pagination {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
}
.new-swiper .swiper-pagination .swiper-pagination-bullet {
  transition: 0.5s;
  background-color: #BFE9FF;
  opacity: 1;
}
.new-swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  transform: scale(1.5);
}

.line-sep {
  width: 1px;
  height: 28px;
  background-color: #ffffff;
}

.my-form {
  background-color: #ffffff;
  color: #142F3D;
}
.my-form h5 {
  font-weight: 600;
}
.my-form button {
  height: 3.688rem;
}
.my-form .form-label {
  font-size: 0.75rem;
  color: #5C676B;
}
@media (max-width: 991.98px) {
  .my-form .form-label {
    font-size: 1rem;
  }
}
.my-form .form-select {
  font-size: 0.75rem;
  padding: 0.9rem 0.75rem;
  border-radius: 0.618rem;
  background-color: #F5FCFF;
  border: 1px solid #C1CFD6;
  width: 100%;
}
.my-form .form-select option:disabled {
  color: #f00 !important;
}
.my-form .form-control {
  font-size: 0.75rem;
  padding: 0.68rem 0.75rem;
  border-radius: 0.618rem;
}
.my-form .form-control::placeholder {
  font-size: 0.75rem;
  color: #9AA2A5;
  opacity: 0.5;
  font-weight: normal;
}
.my-form .form-control:-ms-input-placeholder {
  color: #9AA2A5;
}
.my-form .form-control::-ms-input-placeholder {
  color: #9AA2A5;
}
@media (max-width: 991.98px) {
  .my-form .form-control {
    font-size: 1rem;
  }
}

h1.xxl {
  font-size: 4rem;
}
@media (max-width: 767.98px) {
  h1.xxl {
    font-size: 1.75rem !important;
  }
}

@media (max-width: 767.98px) {
  .organization h2 {
    font-size: 1.25rem;
  }
}

@media (max-width: 380px) {
  .navbar-brand {
    margin-right: 0.25rem !important;
  }
}

@media (max-width: 350px) {
  .header-logo {
    min-width: auto !important;
    width: 100px !important;
  }
}

.btn-login {
  padding: 10px 20px !important;
}/*# sourceMappingURL=main.css.map */