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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

body {
  padding: 0;
  margin: 0;
}

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

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

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

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

.alignright {
  float: right;
}

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

.alignleft {
  float: left;
}

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

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

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

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

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

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

.undo-p {
  margin: 0;
}

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

svg {
  max-height: 100%;
}

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

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

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

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

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

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

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

.flat-all {
  padding: 0;
}

.fleft {
  float: left;
}

.fright {
  float: right;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 576px) {
  .col-sm {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-sm-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-sm-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-sm-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-sm-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-sm-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-sm-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-sm-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-sm-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-sm-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-sm-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-sm-first {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }
  .order-sm-last {
    -webkit-box-ordinal-group: 14;
    -ms-flex-order: 13;
    order: 13;
  }
  .order-sm-0 {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }
  .order-sm-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .order-sm-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .order-sm-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
  .order-sm-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }
  .order-sm-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }
  .order-sm-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
  }
  .order-sm-7 {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7;
  }
  .order-sm-8 {
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8;
  }
  .order-sm-9 {
    -webkit-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9;
  }
  .order-sm-10 {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10;
  }
  .order-sm-11 {
    -webkit-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11;
  }
  .order-sm-12 {
    -webkit-box-ordinal-group: 13;
    -ms-flex-order: 12;
    order: 12;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.333333%;
  }
  .offset-sm-2 {
    margin-left: 16.666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.333333%;
  }
  .offset-sm-5 {
    margin-left: 41.666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.333333%;
  }
  .offset-sm-8 {
    margin-left: 66.666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.333333%;
  }
  .offset-sm-11 {
    margin-left: 91.666667%;
  }
}
@media (min-width: 768px) {
  .col-md {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-md-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-md-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-md-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-md-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-md-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-md-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-md-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-md-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-md-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-md-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-md-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-md-first {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }
  .order-md-last {
    -webkit-box-ordinal-group: 14;
    -ms-flex-order: 13;
    order: 13;
  }
  .order-md-0 {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }
  .order-md-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .order-md-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .order-md-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
  .order-md-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }
  .order-md-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }
  .order-md-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
  }
  .order-md-7 {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7;
  }
  .order-md-8 {
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8;
  }
  .order-md-9 {
    -webkit-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9;
  }
  .order-md-10 {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10;
  }
  .order-md-11 {
    -webkit-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11;
  }
  .order-md-12 {
    -webkit-box-ordinal-group: 13;
    -ms-flex-order: 12;
    order: 12;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.333333%;
  }
  .offset-md-2 {
    margin-left: 16.666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.333333%;
  }
  .offset-md-5 {
    margin-left: 41.666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.333333%;
  }
  .offset-md-8 {
    margin-left: 66.666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.333333%;
  }
  .offset-md-11 {
    margin-left: 91.666667%;
  }
}
@media (min-width: 992px) {
  .col-lg {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-lg-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-lg-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-lg-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-lg-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-lg-4, form .gform_body .gform_fields .gfield.gfield--width-third {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-lg-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-lg-6, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_left, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_right {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-lg-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-lg-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-lg-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-lg-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-lg-first {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }
  .order-lg-last {
    -webkit-box-ordinal-group: 14;
    -ms-flex-order: 13;
    order: 13;
  }
  .order-lg-0 {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }
  .order-lg-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .order-lg-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .order-lg-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
  .order-lg-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }
  .order-lg-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }
  .order-lg-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
  }
  .order-lg-7 {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7;
  }
  .order-lg-8 {
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8;
  }
  .order-lg-9 {
    -webkit-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9;
  }
  .order-lg-10 {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10;
  }
  .order-lg-11 {
    -webkit-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11;
  }
  .order-lg-12 {
    -webkit-box-ordinal-group: 13;
    -ms-flex-order: 12;
    order: 12;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.333333%;
  }
  .offset-lg-2 {
    margin-left: 16.666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.333333%;
  }
  .offset-lg-5 {
    margin-left: 41.666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.333333%;
  }
  .offset-lg-8 {
    margin-left: 66.666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.333333%;
  }
  .offset-lg-11 {
    margin-left: 91.666667%;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-xl-auto {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .col-xl-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-xl-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-xl-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xl-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-xl-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-xl-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xl-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-xl-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-xl-9 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xl-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-xl-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-xl-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .order-xl-first {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }
  .order-xl-last {
    -webkit-box-ordinal-group: 14;
    -ms-flex-order: 13;
    order: 13;
  }
  .order-xl-0 {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }
  .order-xl-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .order-xl-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
  .order-xl-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
  }
  .order-xl-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4;
  }
  .order-xl-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5;
  }
  .order-xl-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6;
  }
  .order-xl-7 {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7;
  }
  .order-xl-8 {
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8;
  }
  .order-xl-9 {
    -webkit-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9;
  }
  .order-xl-10 {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10;
  }
  .order-xl-11 {
    -webkit-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11;
  }
  .order-xl-12 {
    -webkit-box-ordinal-group: 13;
    -ms-flex-order: 12;
    order: 12;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.333333%;
  }
  .offset-xl-2 {
    margin-left: 16.666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.333333%;
  }
  .offset-xl-5 {
    margin-left: 41.666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.333333%;
  }
  .offset-xl-8 {
    margin-left: 66.666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.333333%;
  }
  .offset-xl-11 {
    margin-left: 91.666667%;
  }
}
.d-none {
  display: none !important;
}

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

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

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

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

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

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

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

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

@media (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-table {
    display: table !important;
  }
  .d-sm-table-row {
    display: table-row !important;
  }
  .d-sm-table-cell {
    display: table-cell !important;
  }
  .d-sm-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-table {
    display: table !important;
  }
  .d-md-table-row {
    display: table-row !important;
  }
  .d-md-table-cell {
    display: table-cell !important;
  }
  .d-md-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-md-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-table {
    display: table !important;
  }
  .d-lg-table-row {
    display: table-row !important;
  }
  .d-lg-table-cell {
    display: table-cell !important;
  }
  .d-lg-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-table {
    display: table !important;
  }
  .d-xl-table-row {
    display: table-row !important;
  }
  .d-xl-table-cell {
    display: table-cell !important;
  }
  .d-xl-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
@media print {
  .d-print-none {
    display: none !important;
  }
  .d-print-inline {
    display: inline !important;
  }
  .d-print-inline-block {
    display: inline-block !important;
  }
  .d-print-block {
    display: block !important;
  }
  .d-print-table {
    display: table !important;
  }
  .d-print-table-row {
    display: table-row !important;
  }
  .d-print-table-cell {
    display: table-cell !important;
  }
  .d-print-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-print-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}
.flex-row {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
  -ms-flex-direction: row !important;
  flex-direction: row !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 576px) {
  .flex-sm-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-sm-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-sm-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-sm-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-sm-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-sm-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-sm-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-sm-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-sm-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .align-items-sm-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-sm-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-sm-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-sm-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-sm-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-sm-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-sm-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-sm-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-sm-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-sm-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-sm-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-sm-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-sm-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-sm-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-sm-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-sm-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-sm-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}
@media (min-width: 768px) {
  .flex-md-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-md-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-md-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-md-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-md-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-md-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-md-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-md-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-md-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-md-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .align-items-md-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-md-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-md-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-md-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-md-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-md-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-md-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-md-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-md-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-md-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-md-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-md-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-md-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-md-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-md-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-md-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-md-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}
@media (min-width: 992px) {
  .flex-lg-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-lg-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-lg-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-lg-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-lg-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-lg-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-lg-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-lg-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-lg-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .align-items-lg-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-lg-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-lg-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-lg-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-lg-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-lg-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-lg-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-lg-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-lg-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-lg-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-lg-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-lg-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-lg-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-lg-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-lg-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-lg-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-lg-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}
@media (min-width: 1200px) {
  .flex-xl-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-xl-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-xl-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-xl-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-xl-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-xl-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-xl-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-xl-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-xl-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .align-items-xl-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-xl-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-xl-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-xl-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-xl-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-xl-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-xl-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-xl-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-xl-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-xl-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-xl-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-xl-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-xl-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-xl-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-xl-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-xl-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-xl-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}
/*
 * Vertically align an element without using Flexbox
 */
/*
 * Add a color overlay absolutelly positionned over something
 */
/*
 * Overwrite browser placeholders styles
 */
/*
 * Convert images to background
 */
/*
 * Responsive shapes
 */
/*
 * Remove mobile/iOS default buttons
 */
/*
 * Change font size from pixels to rem
 */
@font-face {
  font-family: "Just Sans";
  src: url("../fonts/Just Sans/JUST Sans Light.woff2") format("woff2"), url("../fonts/Just Sans/JUST Sans Light.woff") format("woff");
  font-weight: 300;
  font-display: swap;
}
@font-face {
  font-family: "Just Sans";
  src: url("../fonts/Just Sans/JUST Sans Regular.woff2") format("woff2"), url("../fonts/Just Sans/JUST Sans Regular.woff") format("woff");
  font-weight: normal;
  font-display: swap;
}
@font-face {
  font-family: "Just Sans";
  src: url("../fonts/Just Sans/JUST Sans SemiBold.woff2") format("woff2"), url("../fonts/Just Sans/JUST Sans SemiBold.woff") format("woff");
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "Just Sans";
  src: url("../fonts/Just Sans/JUST Sans Bold.woff2") format("woff2"), url("../fonts/Just Sans/JUST Sans Bold.woff") format("woff");
  font-weight: bold;
  font-display: swap;
}
/*- Font -*/
/*- Colors -*/
::-moz-selection {
  color: white;
  background: black;
}

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

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

h1,
.h1 {
  font: 600 4.6875rem/1em "Just Sans", sans-serif;
  color: #130E09;
  text-wrap: balance;
}
h1 span,
.h1 span {
  color: #F9BB02;
}
h1 + .the-content,
.h1 + .the-content {
  margin-top: 50px;
}

h2,
.h2 {
  font: 600 2.8125rem/1.2em "Just Sans", sans-serif;
  color: #130E09;
  text-wrap: balance;
}
h2.h1,
.h2.h1 {
  font: 600 4.6875rem/1.2em "Just Sans", sans-serif;
  color: #130E09;
}
h2.h1 span,
.h2.h1 span {
  color: #F9BB02;
}
h2 span,
.h2 span {
  color: #F9BB02;
}
h2 + .the-content,
.h2 + .the-content {
  margin-top: 60px;
}

h3 {
  font: 600 2.125rem/1.2em "Just Sans", sans-serif;
  color: #130E09;
  text-wrap: balance;
}
h3 span {
  color: #F9BB02;
}
h3.light {
  font-weight: 100;
  line-height: 1.5em;
}
h3.light + .light {
  margin-top: 35px;
}
h3.light span {
  color: #130E09;
}
h3 .stylized-string {
  position: relative;
  color: #130E09;
}
h3 .stylized-string:before {
  content: "";
  width: 100%;
  max-width: var(--before-max-width, 18px);
  height: 2px;
  position: absolute;
  left: 0;
  bottom: -2px;
  background-color: #F9BB02;
  transition: all 0.3s ease-in-out;
}

h4 {
  font: 700 1.25rem/120% "Just Sans", sans-serif;
  color: #130E09;
  text-wrap: balance;
}
h4.light {
  font-weight: 100;
}

.row, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address, form .gform_body .gform_fields {
  row-gap: 30px;
}

.m-auto {
  margin-inline: auto;
}

.mb-small {
  margin-bottom: 20px;
}

.mb-medium {
  margin-bottom: 40px;
}

.mb-large {
  margin-bottom: 60px;
}

.mb-x-large {
  margin-bottom: 110px;
}

.rounded {
  border-radius: 30px;
  overflow: hidden;
  clip-path: polygon(85% 0, 100% 15%, 100% 100%, 0 100%, 0 0);
}

.small-title {
  font: 300 1.25rem/160% "Just Sans", sans-serif;
  text-transform: uppercase;
}
.small-title + .the-content {
  margin-top: 30px;
}
.small-title.no-m-b {
  margin-bottom: 0;
}
.small-title.bold {
  font-weight: 700;
}
.small-title.bold {
  font-weight: 700;
}

.medium-title {
  font: 600 4.6875rem/120% "Just Sans", sans-serif;
  margin-bottom: 45px;
}
.medium-title.no-m-b {
  margin-bottom: 0;
}

.big-title {
  font: 600 6.875rem/120% "Just Sans", sans-serif;
  margin-bottom: 50px;
}

.the-content {
  margin-bottom: 30px;
}
.the-content *:last-child {
  margin-bottom: 0;
}
.the-content ul {
  list-style-type: none;
  list-style-position: inside;
  margin-bottom: 30px;
}
.the-content ul li {
  position: relative;
  padding-left: 20px;
  font: 300 1.25rem/160% "Just Sans", sans-serif;
  color: #130E09;
  margin-bottom: 20px;
}
.the-content ul li:after {
  content: "";
  position: absolute;
  background-color: #F9BB02;
  border-radius: 50%;
  width: 9px;
  height: 9px;
  top: 12px;
  left: 0;
}
.the-content ol {
  list-style-type: decimal;
  list-style-position: inside;
  margin-bottom: 1em;
}
.the-content ul ul, .the-content ol ul {
  list-style-type: circle;
  list-style-position: inside;
  margin-left: 15px;
}
.the-content ol ol, .the-content ul ol {
  list-style-type: lower-latin;
  list-style-position: inside;
  margin-left: 15px;
}
.the-content p {
  margin-bottom: 1em;
  font: 300 1.25rem/160% "Just Sans", sans-serif;
  color: #130E09;
  text-wrap: balance;
}
.the-content p .stylized-string {
  position: relative;
  color: #130E09;
}
.the-content p .stylized-string:before {
  content: "";
  width: 100%;
  max-width: var(--before-max-width, 18px);
  height: 2px;
  position: absolute;
  left: 0;
  bottom: -2px;
  background-color: #F9BB02;
  transition: all 0.3s ease-in-out;
}
.the-content.big-text p {
  font-size: 2.125rem;
}
.the-content.big-text p strong {
  font-weight: 600;
}

.wrapper {
  position: relative;
  height: 100%;
  width: calc(100% - 80px);
  margin-inline: auto;
}
.wrapper .wrapper {
  width: 100%;
}
.wrapper.small {
  max-width: 1040px;
}
.wrapper.medium-small {
  max-width: 1160px;
}
.wrapper.medium {
  max-width: 1480px;
}
.wrapper.large {
  max-width: 1700px;
}
.wrapper.full {
  width: 100%;
}

#main {
  margin-bottom: 135vh;
}
#main section {
  position: relative;
}
#main section:last-child:after {
  content: "";
  position: absolute;
  background: url(../images/footer-shape.svg) no-repeat top center;
  background-size: cover;
  width: 100%;
  height: 24vw;
  left: 0;
  top: 99%;
  pointer-events: none;
}
#main section:last-child.yellow-bg:after {
  background: url(../images/footer-shape-yellow.svg) no-repeat top center;
  background-size: cover;
}
#main section:last-child.grey-bg:after {
  background: url(../images/footer-shape-grey.svg) no-repeat top center;
  background-size: cover;
}

html,
body {
  position: relative;
  box-sizing: border-box;
  font-family: "Just Sans", sans-serif;
  color: #130E09;
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
  overflow-x: clip;
}

/*- Espacement des colonnes -*/
.row, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address, form .gform_body .gform_fields {
  /*- Espacement des colonnes - Petit -*/
  /*- Espacement des colonnes - Petit -*/
  /*- Espacement des colonnes - Moyen -*/
  /*- Espacement des colonnes - Large -*/
  /*- Espacement des colonnes - X-Large -*/
}
.row.gutter-none, form .gform_body .gform_fields .gfield .gutter-none.ginput_container.ginput_container_address, form .gform_body .gutter-none.gform_fields {
  margin-inline: 0;
}
.row.gutter-none > div[class*=col-], form .gform_body .gform_fields .gfield .gutter-none.ginput_container.ginput_container_address > div[class*=col-], form .gform_body .gutter-none.gform_fields > div[class*=col-] {
  padding-inline: 0;
}
.row.gutter-small, form .gform_body .gform_fields .gfield .gutter-small.ginput_container.ginput_container_address, form .gform_body .gutter-small.gform_fields {
  margin-inline: -20px;
}
.row.gutter-small > div[class*=col-], form .gform_body .gform_fields .gfield .gutter-small.ginput_container.ginput_container_address > div[class*=col-], form .gform_body .gutter-small.gform_fields > div[class*=col-] {
  padding-inline: 20px;
}
.row.gutter-medium, form .gform_body .gform_fields .gfield .gutter-medium.ginput_container.ginput_container_address, form .gform_body .gutter-medium.gform_fields {
  margin-inline: -50px;
}
.row.gutter-medium > div[class*=col-], form .gform_body .gform_fields .gfield .gutter-medium.ginput_container.ginput_container_address > div[class*=col-], form .gform_body .gutter-medium.gform_fields > div[class*=col-] {
  padding-inline: 50px;
}
.row.gutter-large, form .gform_body .gform_fields .gfield .gutter-large.ginput_container.ginput_container_address, form .gform_body .gutter-large.gform_fields {
  margin-inline: -70px;
}
.row.gutter-large > div[class*=col-], form .gform_body .gform_fields .gfield .gutter-large.ginput_container.ginput_container_address > div[class*=col-], form .gform_body .gutter-large.gform_fields > div[class*=col-] {
  padding-inline: 70px;
}
.row.gutter-x-large, form .gform_body .gform_fields .gfield .gutter-x-large.ginput_container.ginput_container_address, form .gform_body .gutter-x-large.gform_fields {
  margin-inline: -150px;
}
.row.gutter-x-large > div[class*=col-], form .gform_body .gform_fields .gfield .gutter-x-large.ginput_container.ginput_container_address > div[class*=col-], form .gform_body .gutter-x-large.gform_fields > div[class*=col-] {
  padding-inline: 150px;
}
.row.gap-small, form .gform_body .gform_fields .gfield .gap-small.ginput_container.ginput_container_address, form .gform_body .gap-small.gform_fields {
  row-gap: 20px;
}
.row.gap-medium, form .gform_body .gform_fields .gfield .gap-medium.ginput_container.ginput_container_address, form .gform_body .gap-medium.gform_fields {
  row-gap: 50px;
}
.row.gap-large, form .gform_body .gform_fields .gfield .gap-large.ginput_container.ginput_container_address, form .gform_body .gap-large.gform_fields {
  row-gap: 100px;
}

@keyframes aroundTheButton {
  0% {
    left: 156px;
    transform: rotateZ(0deg);
  }
  15% {
    left: 156px;
    transform: rotateZ(0deg);
  }
  25% {
    left: 156px;
    transform: rotateZ(180deg);
  }
  50% {
    left: 22px;
    transform: rotateZ(180deg);
  }
  65% {
    left: 22px;
    transform: rotateZ(360deg);
  }
  99.99% {
    left: 156px;
    transform: rotateZ(360deg);
  }
  100% {
    transform: rotateZ(0deg);
  }
}
.btn, header .wrapper .menu nav ul li.is-btn a {
  width: fit-content;
  position: relative;
  background-color: transparent;
  border-radius: 30px;
  min-width: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 20px;
  transition: all 0.3s ease-out;
  cursor: pointer;
}
.btn span, header .wrapper .menu nav ul li.is-btn a span {
  font: 500 1rem/1.2em "Just Sans", sans-serif;
  color: #130E09;
  transition: all 0.3s ease-out;
}
.btn.special, header .wrapper .menu nav ul li.is-btn a {
  border: 1px solid #F9BB02;
}
.btn.special span, header .wrapper .menu nav ul li.is-btn a span {
  color: #130E09;
  text-transform: lowercase;
}
.btn.special .dot, header .wrapper .menu nav ul li.is-btn a .dot {
  position: absolute;
  bottom: 50%;
  height: 28px;
  width: 1px;
  transform-origin: center bottom;
  animation: aroundTheButton 5s infinite linear;
}
.btn.special .dot:after, header .wrapper .menu nav ul li.is-btn a .dot:after {
  content: "";
  position: absolute;
  top: -2px;
  left: -5px;
  width: 10px;
  height: 10px;
  background: black;
  border-radius: 10px;
  scale: 0;
}
.btn.special:hover, header .wrapper .menu nav ul li.is-btn a:hover {
  border: 1px dashed #F9BB02;
}
.btn.special:hover .dot:after, header .wrapper .menu nav ul li.is-btn a:hover .dot:after {
  scale: 1;
}
.btn.primary, header .wrapper .menu nav ul li.is-btn a.primary {
  border: 2px solid #F9BB02;
}
.btn.primary span, header .wrapper .menu nav ul li.is-btn a.primary span {
  color: #130E09;
  text-transform: lowercase;
}
.btn.primary:hover, header .wrapper .menu nav ul li.is-btn a.primary:hover, .btn.primary.active, header .wrapper .menu nav ul li.is-btn a.primary.active {
  background-color: #FFF4CE;
}
.btn.secondary, header .wrapper .menu nav ul li.is-btn a.secondary {
  border: 1px solid white;
}
.btn.secondary span, header .wrapper .menu nav ul li.is-btn a.secondary span {
  color: #130E09;
  text-transform: lowercase;
}
.btn.secondary:hover, header .wrapper .menu nav ul li.is-btn a.secondary:hover {
  background-color: #FFD65C;
}
.btn.tertiary, header .wrapper .menu nav ul li.is-btn a.tertiary {
  border: 1px solid #F9BB02;
}
.btn.tertiary span, header .wrapper .menu nav ul li.is-btn a.tertiary span {
  color: white;
}
.btn.tertiary:hover, header .wrapper .menu nav ul li.is-btn a.tertiary:hover {
  background-color: #FFCE3E;
}
.btn.tertiary:hover span, header .wrapper .menu nav ul li.is-btn a.tertiary:hover span {
  color: black;
}

.link {
  cursor: pointer;
}
.link span {
  position: relative;
  width: fit-content;
  font: bold 1.25rem/100% "Just Sans", sans-serif;
  color: #130E09;
  padding-right: 125px;
  text-transform: uppercase;
  display: flex;
  white-space: nowrap;
}
.link span:before {
  content: "";
  position: absolute;
  background-color: #F9BB02;
  width: 90px;
  height: 2px;
  right: 20px;
  top: 50%;
  translateY: -50%;
  translateX: -100px;
  transition: all 0.2s ease-in 0.05s;
}
.link span:after {
  content: "";
  position: absolute;
  right: 0;
  top: calc(50% - 3px);
  translateY: -50%;
  scale: 0;
  border-radius: 10px;
  width: 8px;
  height: 8px;
  background-color: #130E09;
  transition: all 0.2s linear;
}
.link.reverse span {
  padding-right: 0;
  padding-left: 125px;
}
.link.reverse span:before {
  left: 20px;
  translateX: 20px;
}
.link.reverse span:after {
  left: 0;
  right: unset;
}
.link.reverse:hover span:before {
  right: unset;
  left: 0;
}
.link:hover span:before {
  right: 0;
  transition: all 0.2s ease-in 0.1s;
}
.link:hover span:after {
  scale: 1;
  transition: all 0.2s linear 0.15s;
}

.img-container {
  position: relative;
  position: relative;
}
.img-container:before {
  content: "";
  display: block;
  padding-top: 100%;
}
.img-container > img,
.img-container > picture {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.img-container.hexa {
  position: relative;
  -webkit-mask-image: url(../images/image-mask2.svg);
  mask-image: url(../images/image-mask2.svg);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: cover;
}
.img-container.hexa:before {
  content: "";
  display: block;
  padding-top: 125%;
}

#home-banner {
  background: #fff;
  position: relative;
  padding: 200px 0 100px;
  min-height: 80vh;
  z-index: 3;
}
#home-banner h1 {
  font-size: 6.875rem;
  line-height: 100%;
  margin-bottom: 45px;
}
#home-banner h1 .stylized-string {
  color: #F9BB02;
}
#home-banner .col-text {
  padding-top: 20px;
  z-index: 5;
}
#home-banner .col-text .the-content {
  max-width: 450px;
}
#home-banner .col-img {
  position: relative;
  display: flex;
  justify-content: end;
  padding-bottom: 130px;
}
#home-banner .col-img .banner-bg {
  position: absolute;
  z-index: 2;
  top: -30px;
  right: 140px;
  width: 85%;
  height: calc(100% + 30px);
}
#home-banner .col-img .banner-bg .pattern-back {
  position: absolute;
  left: 10%;
  top: 5%;
  width: 100%;
  height: 90%;
}
#home-banner .col-img .banner-bg .pattern-back video {
  width: 100%;
  height: 100%;
}
#home-banner .col-img .banner-bg img {
  width: 100%;
  height: 100%;
}
#home-banner .col-img .img-wrapper {
  position: relative;
  width: 85%;
  max-width: 595px;
}
#home-banner .col-img .img-wrapper .decoration {
  position: absolute;
  bottom: 20px;
  right: 70%;
  width: 45%;
  height: 55%;
  z-index: 3;
}
#home-banner .col-img .img-wrapper .decoration svg {
  width: 100%;
  height: 100%;
}
#home-banner .col-img .img-wrapper .video-btn {
  position: absolute;
  top: 8%;
  right: 12%;
  width: 15%;
  height: 14%;
  z-index: 3;
}
#home-banner .col-img .img-wrapper .video-btn svg {
  width: 100%;
  height: 100%;
}
#home-banner .col-img .img-container {
  position: relative;
  position: relative;
  z-index: 3;
}
#home-banner .col-img .img-container > img,
#home-banner .col-img .img-container > picture {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
#home-banner .col-img .img-container.small-img {
  position: absolute;
  bottom: 0;
  right: 68%;
  width: 30%;
  max-width: 315px;
}
#home-banner .col-img .img-container.small-img .decoration {
  position: absolute;
  bottom: -25%;
  right: 70%;
  width: 55%;
  height: 45%;
}
#home-banner .col-img .img-container.small-img .decoration svg {
  width: 100%;
  height: 100%;
}
#home-banner svg {
  overflow: visible;
}
#home-banner svg #back {
  transition: all 0.2s ease-out;
  transform-origin: 50%;
}
#home-banner svg #play {
  transition: all 0.3s ease-out;
  transform-origin: 50%;
}
#home-banner svg:hover #back {
  transform: scale(1.1);
}
#home-banner svg:hover #play {
  transform: scale(1.2);
}
#home-banner.not-found {
  padding: 200px 0;
}

.slice {
  position: relative;
  z-index: 2;
  background: #fff;
  padding: 140px 0;
  transition: all 0.3s ease-out;
}
.slice.banner {
  padding: 220px 0;
}
.slice.padding-small {
  padding: 50px 0;
}
.slice.padding-small.no-p-top {
  padding-top: 0;
}
.slice.padding-small.no-p-bottom {
  padding-bottom: 0;
}
.slice.padding-medium {
  padding: 150px 0;
}
.slice.padding-medium.no-p-top {
  padding-top: 0;
}
.slice.padding-medium.no-p-bottom {
  padding-bottom: 0;
}
.slice.padding-large {
  padding: 220px 0;
}
.slice.padding-large.no-p-top {
  padding-top: 0;
}
.slice.padding-large.no-p-bottom {
  padding-bottom: 0;
}
.slice.padding-x-large {
  padding: 260px 0;
}
.slice.padding-x-large.no-p-top {
  padding-top: 0;
}
.slice.padding-x-large.no-p-bottom {
  padding-bottom: 0;
}
.slice.no-p-top {
  padding-top: 0;
}
.slice.no-p-bottom {
  padding-bottom: 0;
}
.slice.no-p-both {
  padding-bottom: 0;
  padding-top: 0;
}
.slice.yellow-bg {
  background-color: #F9BB02;
}
.slice.yellow-bg h2 span {
  color: #fff;
}
.slice.yellow-bg .numbers .pattern svg path {
  stroke: #fff;
}
.slice.yellow-bg .link span:before {
  background-color: #fff;
}
.slice.yellow-bg form .gform_body .gform_fields .gfield .ginput_container input[type=text], .slice.yellow-bg form .gform_body .gform_fields .gfield .ginput_container input[type=email], .slice.yellow-bg form .gform_body .gform_fields .gfield .ginput_container input[type=tel], .slice.yellow-bg form .gform_body .gform_fields .gfield .ginput_container textarea {
  background-color: transparent;
  transition: all 0.3s ease-out;
}
.slice.yellow-bg form .gform_body .gform_fields .gfield .ginput_container input[type=text]:focus, .slice.yellow-bg form .gform_body .gform_fields .gfield .ginput_container input[type=email]:focus, .slice.yellow-bg form .gform_body .gform_fields .gfield .ginput_container input[type=tel]:focus, .slice.yellow-bg form .gform_body .gform_fields .gfield .ginput_container textarea:focus {
  border-color: #fff;
}
.slice.yellow-bg form .btn.primary, .slice.yellow-bg form header .wrapper .menu nav ul li.is-btn a.primary, header .wrapper .menu nav ul li.is-btn .slice.yellow-bg form a.primary {
  border-color: #fff;
}
.slice.yellow-bg form .btn.primary:hover, .slice.yellow-bg form header .wrapper .menu nav ul li.is-btn a.primary:hover, header .wrapper .menu nav ul li.is-btn .slice.yellow-bg form a.primary:hover {
  background-color: #FFDE7D;
}
.slice.yellow-bg form .gform_button:after {
  background: #fff url(../images/animAbeille.gif) no-repeat center;
  background-size: contain;
}
.slice.yellow-bg select {
  background-color: transparent;
}
.slice.yellow-bg select:focus {
  border-color: #fff;
}
.slice.yellow-bg .pattern svg path {
  stroke: #fff !important;
}
.slice.yellow-bg .tab-container .tab:after {
  background-color: #fff;
}
.slice.dark-bg {
  background-color: #31353F;
}
.slice.dark-bg h2, .slice.dark-bg h3, .slice.dark-bg .small-title, .slice.dark-bg .the-content p, .slice.dark-bg span {
  color: #fff;
}
.slice.dark-bg h2 span {
  color: #F9BB02;
}
.slice.grey-bg {
  background-color: #E5EAED;
}
.slice.grey-bg h2 span {
  color: #F9BB02;
}
.slice.rounded-top {
  position: relative;
  padding-top: 50px;
  margin-top: 85px;
}
.slice.rounded-top:before {
  content: "";
  position: absolute;
  transform: translateY(-50%);
  width: 140%;
  left: -20%;
  top: 0;
  background-color: #F9BB02;
  border-radius: 100%;
  padding-top: 20%;
}
.slice #b-animated {
  position: absolute;
  bottom: 105%;
  left: 73%;
  width: 30%;
}
.slice #b-animated svg {
  overflow: visible;
}
.slice#home-services {
  z-index: 4;
}
.slice#home-services #longLine {
  position: absolute;
  left: -20%;
  bottom: 15%;
  width: 160%;
  height: 30%;
}
.slice#home-services .bg-decoration {
  position: absolute;
  top: 15%;
  left: -10%;
  width: 75%;
  z-index: 0;
}
.slice#home-services .bg-decoration svg {
  max-width: 100%;
}
.slice #home-case-studies {
  margin-top: 190px;
  margin-bottom: 140px;
}
.slice #home-case-studies.wrapper:first-child {
  margin-bottom: 120px;
}
.slice #content-cards {
  z-index: 1;
}
.slice #content-cards.wrapper .content-card-row {
  container-name: content-card-row;
  container-type: inline-size;
  row-gap: 30px;
}
.slice #content-cards.wrapper .content-card-row:first-child .content-card, .slice #content-cards.wrapper .content-card-row:last-child .content-card {
  transform: translateY(50px);
}
.slice #content-cards.wrapper .content-card-row:first-child .content-card:hover, .slice #content-cards.wrapper .content-card-row:last-child .content-card:hover {
  transform: rotate(2deg) translate(10px, 20px);
}
.slice #content-cards.wrapper .content-card-row .col-content-card {
  width: 33%;
  transform: translateX(-200vw);
}
@container content-card-row (width < 1360px) {
  .slice #content-cards.wrapper .content-card-row .col-content-card {
    padding-inline: 15px;
    width: 50%;
  }
}
@container content-card-row (width < 767px) {
  .slice #content-cards.wrapper .content-card-row .col-content-card {
    width: 80%;
    margin-inline: auto;
  }
  .slice #content-cards.wrapper .content-card-row:first-child .content-card, .slice #content-cards.wrapper .content-card-row:last-child .content-card {
    transform: translateY(0);
  }
  .slice #content-cards.wrapper .content-card-row:first-child .content-card:hover, .slice #content-cards.wrapper .content-card-row:last-child .content-card:hover {
    transform: rotate(0) translate(0);
  }
}
.slice .content-card {
  border-radius: 30px;
  overflow: hidden;
  clip-path: polygon(85% 0, 100% 15%, 100% 100%, 0 100%, 0 0);
  background-color: #fff;
  height: 100%;
  transition: all 0.3s ease-out;
}
.slice .content-card .img-container {
  position: relative;
  position: relative;
  border-radius: 30px;
  overflow: hidden;
}
.slice .content-card .img-container:before {
  content: "";
  display: block;
  padding-top: 69%;
}
.slice .content-card .img-container > img,
.slice .content-card .img-container > picture {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.slice .content-card .cat-container {
  display: flex;
  justify-content: start;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.slice .content-card h3 {
  font: 500 1.6875rem/100% "Just Sans", sans-serif;
}
.slice .content-card .case-study-info {
  background: white;
  padding: 50px 35px 35px;
  margin-top: -30px;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
}
.slice .content-card .block-footer {
  margin-top: auto;
  padding: 0 35px 50px 35px;
}
.slice .content-card .block-footer a {
  font: bold 1rem/100% "Just Sans", sans-serif;
  text-transform: uppercase;
}
.slice .content-card:hover {
  transform: rotate(2deg) translate(10px, -30px);
}
.slice .scrolling-text-container {
  margin-bottom: 30px;
}
.slice .scrolling-text-container h3 {
  font-size: 10.9375rem;
  line-height: 100%;
  text-align: center;
}
.slice .scrolling-text-container .scrolling-text-top {
  transform: translateX(-50vw);
  color: transparent;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #130E09;
}
.slice .scrolling-text-container .scrolling-text-bottom {
  transform: translateX(50vw);
}
.slice .scrolling-text-container .scrolling-text-bottom, .slice .scrolling-text-container .scrolling-text-top {
  transition: 0.1s ease-out;
}
.slice .tab-container {
  display: flex;
  gap: 10px;
  justify-content: space-between;
  margin-top: 80px;
  margin-bottom: 60px;
}
.slice .tab-container .tab {
  font: bold 1.25rem/100% "Just Sans", sans-serif;
  text-transform: uppercase;
  padding-bottom: 10px;
  cursor: pointer;
  position: relative;
}
.slice .tab-container .tab:after {
  content: "";
  width: 0%;
  height: 2px;
  background-color: #F9BB02;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: all 0.3s ease-out;
}
.slice .tab-container .tab:hover:after {
  width: 10%;
}
.slice .tab-container .tab.active:after {
  width: 50%;
}
.slice .tab-content {
  display: none;
}
.slice .tab-content.active {
  display: block;
}
.slice .tab-content .img-container {
  position: relative;
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  clip-path: polygon(85% 0, 100% 15%, 100% 100%, 0 100%, 0 0);
}
.slice .tab-content .img-container:before {
  content: "";
  display: block;
  padding-top: 105%;
}
.slice .tab-content .img-container > img,
.slice .tab-content .img-container > picture {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.slice.grey-bg {
  background-color: #F7F9FA;
}
.slice#home-team {
  position: relative;
  display: flex;
  align-items: center;
}
.slice#home-team .pattern {
  position: absolute;
  left: 0;
  top: -12%;
  width: 19%;
  transform: scaleX(-1);
  z-index: 1;
}
.slice#home-team .bg-img {
  width: 50%;
  height: 100%;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  position: absolute;
}
.slice#home-team .bg-img .video-container {
  height: 100%;
  width: 100%;
  -webkit-clip-path: url("#image-mask-black");
  clip-path: url("#image-mask-black");
  transform: scaleX(-1);
}
.slice#home-team .bg-img video {
  width: 100%;
  height: 60%;
  object-fit: cover !important;
  transform: scaleX(-1);
}
.slice#home-team h2 {
  margin-bottom: 60px;
}
.slice#home-team h2 .stylized-string {
  color: #F9BB02;
}
.slice#home-partners .swiper-partner {
  overflow: hidden;
}
.slice#home-partners .swiper-partner {
  width: calc(100% - 200px);
  margin: 0 auto;
}
.slice#home-partners .swiper-slide {
  padding: 20px 50px;
}
.slice#home-partners .swiper-slide .logo-container {
  display: block;
  position: relative;
  position: relative;
}
.slice#home-partners .swiper-slide .logo-container:before {
  content: "";
  display: block;
  padding-top: 100%;
}
.slice#home-partners .swiper-slide .logo-container > img,
.slice#home-partners .swiper-slide .logo-container > picture {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.slice#home-partners .swiper-button-prev {
  transform: rotateZ(180deg);
  right: calc(100% - 45px);
  left: auto;
}
.slice#home-partners .swiper-button-next {
  left: calc(100% - 45px);
  right: auto;
}
.slice#home-partners .swiper-button-next,
.slice#home-partners .swiper-button-prev {
  height: 40px;
  width: 45px;
}
.slice#home-partners .swiper-button-next:before,
.slice#home-partners .swiper-button-prev:before {
  content: "";
  position: absolute;
  background-color: #F9BB02;
  width: 45px;
  height: 2px;
  right: 20px;
  top: 50%;
  translateY: -50%;
  translateX: -20px;
  transition: all 0.2s ease-in 0.05s;
}
.slice#home-partners .swiper-button-next:after,
.slice#home-partners .swiper-button-prev:after {
  content: "";
  position: absolute;
  right: 0;
  top: calc(50% - 3px);
  translateY: -50%;
  scale: 0;
  border-radius: 10px;
  width: 8px;
  height: 8px;
  background-color: #130E09;
  transition: all 0.2s linear;
}
.slice#home-partners .swiper-button-next:hover:before,
.slice#home-partners .swiper-button-prev:hover:before {
  right: 0;
  transition: all 0.2s ease-in 0.1s;
}
.slice#home-partners .swiper-button-next:hover:after,
.slice#home-partners .swiper-button-prev:hover:after {
  scale: 1;
  transition: all 0.2s linear 0.15s;
}
.slice#home-advantage .pattern {
  position: absolute;
}
.slice#home-advantage .pattern:nth-of-type(1) {
  left: -5%;
  top: 18%;
  width: 20%;
  transform: scaleX(-1);
}
.slice#home-advantage .pattern:nth-of-type(2) {
  right: -5%;
  top: 70%;
  width: 20%;
  transform: scaleX(-1);
}

.cat-label {
  background-color: var(--cat-color);
  font: normal 0.875rem/100% "Just Sans", sans-serif;
  padding: 8px 10px;
  border-radius: 20px;
}

.service-container {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.service-block {
  background: white;
  padding: 50px 68px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 35px;
  cursor: pointer;
  transition: all 0.3s ease-out;
}
.service-block .icon-container {
  width: 95px;
  height: 90px;
  display: flex;
  align-items: center;
  pointer-events: none;
}
.service-block .icon-container svg {
  overflow: visible;
  width: 100%;
  height: auto;
  max-height: 195px;
}
.service-block .icon-container svg #rocket, .service-block .icon-container svg #circles {
  transition: all 0.3s ease-out;
}
.service-block .meta {
  width: calc(100% - 145px);
  pointer-events: none;
}
.service-block .meta h3 {
  font: 300 2.125rem/100% "Just Sans", sans-serif;
  padding-bottom: 0;
  transition: all 0.3s ease-out;
}
.service-block .meta .desc {
  padding-top: 15px;
  display: none;
}
.service-block a {
  width: 50px;
  pointer-events: none;
}
.service-block:hover {
  background: #F4F4F4;
}
.service-block:hover #rocket-icon #rocket, .service-block:hover #rocket-icon #yellow-circles {
  transform: translate(5px, -10px);
}
.service-block:hover #rocket-icon #yellow-circles circle {
  stroke: #F9BB02;
}
.service-block:hover #train-icon #cart {
  transform: translateY(10px) scale(1.1);
}
.service-block:hover #train-icon #lights {
  transform: translateY(20px);
}
.service-block:hover #train-icon #cart {
  z-index: 50;
}
.service-block:hover #train-icon #cart #Path_132 {
  fill: #F4F4F4;
}
.service-block:hover #people-icon #head-l {
  transform: translate(5px, 5px);
}
.service-block:hover #people-icon #circle-l {
  stroke: #F9BB02;
  transform: translate(5px, 5px);
}
.service-block:hover #people-icon #head-r {
  transform: translate(-5px, 5px);
}
.service-block:hover #people-icon #circle-r {
  stroke: #F9BB02;
  transform: translate(-5px, 5px);
}
.service-block:hover #people-icon #head-c {
  transform: translate(0, 5px);
}
.service-block:hover #people-icon #circle-c {
  stroke: #F9BB02;
  transform: translate(0px, 5px);
}

.error404 .wrapper {
  z-index: 1;
}
.error404 .wrapper img {
  width: 207px;
  margin-bottom: 40px;
}
.error404 .wrapper .the-content {
  margin-bottom: 40px;
}
.error404 .wrapper .btn.primary, .error404 header .wrapper .menu nav ul li.is-btn a.primary, header .error404 .wrapper .menu nav ul li.is-btn a.primary {
  margin-inline: auto;
}

.page-transition {
  position: fixed;
  top: 50%;
  left: 50%;
  height: 300vw;
  width: 300vw;
  border-radius: 100%;
  z-index: 9999;
  background: white;
  transform-origin: center center;
  transform: translateX(-50%) translateY(-50%);
  transition: all 0.2s ease-in-out;
  overflow: hidden;
}
.page-transition .transition-logo {
  background-size: contain;
  position: fixed;
  width: 550px;
  height: 550px;
  border-radius: 100%;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  opacity: 1;
  pointer-events: none;
  transition: all 0.2s ease-in-out;
  z-index: 347483647;
}
.page-transition:after {
  content: "";
  position: fixed;
  top: 50%;
  left: 50%;
  height: 300vh;
  width: 300vh;
  border-radius: 100%;
  z-index: 999;
  background: white;
  transform-origin: center center;
  transform: translateX(-50%) translateY(-50%);
  transition: all 0.2s ease-in-out 0.03s;
}
.page-transition.out {
  width: 0;
  height: 0;
}
.page-transition.out:before, .page-transition.out:after {
  width: 0;
  height: 0;
}
.page-transition.out .transition-logo {
  opacity: 0;
}

.loading {
  opacity: 0.5 !important;
  transition: none !important;
}

.services-banner {
  position: relative;
  padding-top: 220px;
}
.services-banner .wrapper {
  z-index: 3;
}
.services-banner .bg-shape {
  position: absolute;
  z-index: 1;
}
.services-banner .bg-shape svg {
  width: 100%;
  height: 100%;
}
.services-banner .bg-shape:nth-of-type(1) {
  left: 10%;
  top: 30%;
  width: 12%;
}
.services-banner .bg-shape:nth-of-type(2) {
  left: 20%;
  top: 50%;
  width: 5%;
}
.services-banner .bg-shape:nth-of-type(4) {
  right: 12%;
  top: 35%;
  width: 3%;
}
.services-banner .bg-shape:nth-of-type(5) {
  right: 15%;
  top: 40%;
  width: 6%;
}
.services-banner .bg-shape:nth-of-type(6) {
  right: 12%;
  top: 60%;
  width: 2%;
}
.services-banner:before {
  content: "";
  position: absolute;
  background: url(../images/pattern-back-single.gif) no-repeat right;
  background-size: contain;
  width: 33%;
  height: 68%;
  left: -25px;
  top: 50%;
  transform: translateY(-50%) scaleX(-1);
}
.services-banner:after {
  content: "";
  position: absolute;
  background: url(../images/pattern-back-single.gif) no-repeat right;
  background-size: contain;
  width: 33%;
  height: 68%;
  right: -50px;
  top: 50%;
  transform: translateY(-50%);
}

.service-card {
  filter: drop-shadow(0px 3px 4px rgba(50, 50, 0, 0.2));
  -webkit-filter: drop-shadow(0px 3px 4px rgba(50, 50, 0, 0.2));
  height: auto;
}
.service-card .inner {
  padding: 85px 50px 50px;
  border-radius: 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  row-gap: 120px;
  background-color: #fff;
  clip-path: polygon(85% 0, 100% 15%, 100% 100%, 0 100%, 0 0);
  transition: all 0.3s ease-out;
}
.service-card .inner svg {
  display: flex;
  justify-content: center;
  height: 200px;
  width: auto;
  margin: 0 auto 80px;
}
.service-card .inner svg path, .service-card .inner svg line {
  transition: all 0.3s ease-out;
}
.service-card .inner .content-wrapper {
  position: relative;
}
.service-card .inner .content-wrapper h3 {
  font: 400 2.125rem/1.2em "Just Sans", sans-serif;
  max-width: 280px;
  transition: all 0.3s ease-out;
}
.service-card .inner .content-wrapper .the-content {
  position: absolute;
  opacity: 0;
  left: 0;
  top: 0;
  transition: all 0.3s ease-out;
}
.service-card .inner .content-wrapper .the-content h4 {
  font: 100 1.25rem/1.2em "Just Sans", sans-serif;
  color: #fff;
}
.service-card .inner:hover {
  background-color: #31353F;
}
.service-card .inner:hover .content-wrapper h3 {
  opacity: 0;
  visibility: hidden;
}
.service-card .inner:hover .content-wrapper .the-content {
  opacity: 1;
  visibility: visible;
}
.service-card .inner:hover .link span {
  color: #fff;
}
.service-card .inner:hover .link span:before {
  background-color: #fff;
}
.service-card .inner:hover .link span:after {
  background-color: #F9BB02;
}
.service-card .inner:hover svg path, .service-card .inner:hover svg line, .service-card .inner:hover svg circle {
  stroke: #fff;
}
.service-card .inner:hover #rocket-icon #rocket, .service-card .inner:hover #rocket-icon #yellow-circles {
  transform: translate(5px, -10px);
}
.service-card .inner:hover #rocket-icon #yellow-circles circle {
  stroke: #F9BB02;
}
.service-card .inner:hover #train-icon #cart, .service-card .inner:hover #train-icon #lights {
  transform: translateY(10px) scale(1.1);
}
.service-card .inner:hover #train-icon #cart {
  z-index: 50;
}
.service-card .inner:hover #train-icon #cart #Path_132 {
  fill: #31353F;
}
.service-card .inner:hover #people-icon path {
  stroke: #fff !important;
}
.service-card .inner:hover #people-icon #head-l {
  transform: translate(5px, 5px);
  stroke: #fff !important;
}
.service-card .inner:hover #people-icon #circle-l {
  stroke: #F9BB02;
  transform: translate(5px, 5px);
}
.service-card .inner:hover #people-icon #head-r {
  transform: translate(-5px, 5px);
  stroke: #fff !important;
}
.service-card .inner:hover #people-icon #circle-r {
  stroke: #F9BB02;
  transform: translate(-5px, 5px);
}
.service-card .inner:hover #people-icon #head-c {
  transform: translate(0, 5px);
  stroke: #fff !important;
}
.service-card .inner:hover #people-icon #circle-c {
  stroke: #F9BB02;
  transform: translate(0, 5px);
}

#rocket-icon {
  overflow: visible;
}
#rocket-icon #rocket, #rocket-icon #yellow-circles {
  transition: all 0.3s ease-out;
}

#train-icon {
  overflow: visible;
}
#train-icon #lights, #train-icon #cart {
  transition: all 0.3s ease-out;
  transform-origin: top center;
}
#train-icon #cart #Path_132 {
  fill: #fff;
  transition: all 0.3s ease-out;
}

#people-icon #head-l, #people-icon #head-c, #people-icon #head-r, #people-icon #circle-l, #people-icon #circle-c, #people-icon #circle-r {
  transition: all 0.3s ease-out;
}

#services-about {
  position: relative;
}
#services-about .col-12:first-child, #services-about form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_left:first-child, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address #services-about .ginput_left:first-child, #services-about form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_right:first-child, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address #services-about .ginput_right:first-child, #services-about form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_full:first-child, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address #services-about .ginput_full:first-child, #services-about form .gform_body .gform_fields .gfield.gfield--width-full:first-child, form .gform_body .gform_fields #services-about .gfield.gfield--width-full:first-child, #services-about form .gform_body .gform_fields .gfield.gfield--width-half:first-child, form .gform_body .gform_fields #services-about .gfield.gfield--width-half:first-child, #services-about form .gform_body .gform_fields .gfield.gfield--width-third:first-child, form .gform_body .gform_fields #services-about .gfield.gfield--width-third:first-child {
  margin-bottom: 150px;
}
#services-about .scroll-pattern {
  position: absolute;
}
#services-about .scroll-pattern:nth-of-type(1) {
  left: -125px;
  top: 15%;
  width: 35%;
  height: 30%;
}
#services-about .scroll-pattern:nth-of-type(2) {
  right: -125px;
  top: 0;
  width: 34%;
  height: 32%;
}
#services-about .col-images {
  position: relative;
  min-height: 775px;
}
#services-about .col-images:before {
  content: "";
  position: absolute;
  padding-top: 100%;
  left: 0;
  top: 0;
}
#services-about .col-images .img-container {
  position: relative;
  position: absolute;
  height: auto;
}
#services-about .col-images .img-container > img,
#services-about .col-images .img-container > picture {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
#services-about .col-images .img-container img {
  max-height: 100%;
}
#services-about .col-images .img-container:nth-of-type(1) {
  left: 0;
  top: 20%;
  width: 29%;
}
#services-about .col-images .img-container:nth-of-type(2) {
  right: -16%;
  top: 20%;
  width: 48%;
}
#services-about .col-images .img-container:nth-of-type(3) {
  left: 50%;
  transform: translateX(-53%);
  top: 33%;
  width: 64%;
}

#service-banner .the-content {
  position: relative;
  z-index: 2;
}
#service-banner .col-image {
  position: relative;
}
#service-banner .col-image .pattern {
  position: absolute;
  z-index: 2;
}
#service-banner .col-image .pattern svg {
  width: 100%;
  height: 100%;
}
#service-banner .col-image .pattern:nth-of-type(1) {
  left: 0;
  top: 55%;
  width: 10%;
  height: auto;
}
#service-banner .col-image .pattern:nth-of-type(2) {
  left: 9%;
  top: 63%;
  width: 19%;
  height: auto;
}
#service-banner .col-image .pattern:nth-of-type(3) {
  left: 60%;
  top: 0;
  width: 30%;
  height: auto;
}
#service-banner .col-image .img-container {
  position: relative;
  position: relative;
  z-index: 1;
}
#service-banner .col-image .img-container > img,
#service-banner .col-image .img-container > picture {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
#service-banner .col-image:after {
  content: "";
  position: absolute;
  background: url(../images/pattern-back-double.webm) no-repeat center;
  background-size: contain;
  width: 150%;
  height: 125%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.col-infinite-scroll {
  gap: 20px;
}

.infinite-scroll-container {
  overflow: hidden;
  width: 100%;
  position: relative;
  white-space: nowrap;
  gap: 15px;
}
.infinite-scroll-container:not(:last-child) {
  margin-bottom: 20px;
}
.infinite-scroll-container .infinite-scroll {
  display: flex;
  gap: 15px;
}
.infinite-scroll-container .infinite-scroll.ltr {
  transform: translateX(-100%);
}
.infinite-scroll-container .infinite-scroll span {
  display: inline-block;
  font: 600 2.125rem/1.2em "Just Sans", sans-serif;
  color: #F9BB02;
  background: #130E09;
  padding: 25px 130px;
  border-radius: 50px;
}

#service-about {
  position: relative;
}
#service-about svg {
  width: 100%;
  height: 100%;
}
#service-about .symbol {
  position: absolute;
  left: 0;
  top: 45%;
  width: 28%;
  min-width: 300px;
  height: auto;
}

.service-swiper {
  overflow: hidden;
}
.service-swiper .swiper-wrapper .swiper-slide .col-image, .service-swiper .swiper-wrapper .swiper-slide .col-content {
  padding-inline: 70px;
}
.service-swiper .swiper-wrapper .swiper-slide .col-image {
  display: flex;
  min-width: 600px;
}
.service-swiper .swiper-wrapper .swiper-slide .col-image .img-container {
  width: 100%;
  height: auto;
}
.service-swiper .swiper-wrapper .swiper-slide .col-image .img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.service-swiper .swiper-wrapper .swiper-slide .col-content {
  width: 55%;
}
.service-swiper .swiper-wrapper span {
  font: 600 6.875rem/1.2em "Just Sans", sans-serif;
}
.service-swiper .swiper-wrapper .col-content, .service-swiper .swiper-wrapper .col-image {
  min-height: 690px;
}

#service-steps .pattern {
  position: absolute;
}
#service-steps .pattern svg {
  width: 100%;
  height: 100%;
}
#service-steps .pattern:nth-of-type(1) {
  left: -5%;
  top: 10%;
  width: 20%;
}
#service-steps .pattern:nth-of-type(2) {
  right: -5%;
  top: 70%;
  width: 20%;
}
#service-steps.yellow-bg .border-bottom {
  position: relative;
}
#service-steps.yellow-bg .border-bottom:before {
  background-color: #fff;
}

#service-single-cta {
  z-index: 4;
}

.border-bottom {
  position: relative;
}
.border-bottom:before {
  content: "";
  position: absolute;
  background-color: #F9BB02;
  left: 70px;
  bottom: 0;
  width: calc(100% - 70px);
  height: 2px;
}

#serviceSymbol {
  overflow: visible;
}

#single-service-cta {
  position: relative;
}
#single-service-cta .wrapper {
  z-index: 2;
}
#single-service-cta .pattern {
  position: absolute;
}
#single-service-cta .pattern svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}
#single-service-cta .pattern:nth-of-type(1) {
  position: absolute;
  width: 30%;
  height: auto;
  left: -5%;
  top: 1%;
}
#single-service-cta .pattern:nth-of-type(2) {
  position: absolute;
  width: 45%;
  height: auto;
  left: 72%;
  top: 50%;
}
#single-service-cta .pattern:nth-of-type(3) {
  position: absolute;
  width: 25%;
  height: auto;
  right: 0;
  top: 15%;
}

.collapse {
  margin-bottom: 25px;
  border-radius: 60px;
  transition: all 0.3s ease-out;
  border: 2px solid transparent;
  background-color: #fff;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}
.collapse.difference.open {
  border-color: transparent;
}
.collapse .cat-card {
  background-color: var(--cat-color);
  font: 400 0.875rem/1.2em "Just Sans", sans-serif;
}
.collapse:hover {
  background-color: #F7F9FA;
}
.collapse + .collapse-module {
  margin-top: 30px;
}
.collapse .collapse-trigger {
  font: 500 1.6875rem/1.2em "Just Sans", sans-serif;
  margin-bottom: 0;
  padding: 15px 150px 15px 95px;
  display: flex;
  gap: 35px;
  justify-content: start;
  align-items: center;
  cursor: pointer;
  position: relative;
}
.collapse .collapse-trigger h3 {
  font: 400 2.125rem/1.2em "Just Sans", sans-serif;
}
.collapse .collapse-trigger .icon {
  width: 85px;
  min-width: 50px;
}
.collapse .collapse-trigger .icon svg {
  max-width: 100%;
  height: auto;
}
.collapse .collapse-trigger .arrow {
  position: absolute;
  right: 100px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease-in-out;
}
.collapse .collapse-content {
  display: none;
  padding: 0 150px 40px 95px;
}
.collapse .collapse-content .the-content {
  margin-bottom: 10px;
}
.collapse .collapse-content .the-content p {
  font: 300 1.25rem/1.2em "Just Sans", sans-serif;
}
.collapse.open {
  border-color: var(--cat-color);
}
.collapse.open .arrow {
  transform: translateY(-50%) rotateZ(-90deg);
}

.pattern {
  z-index: 2;
}
.pattern svg {
  width: 100%;
  height: 100%;
}

#about-bottom .col-images {
  position: relative;
}
#about-bottom .col-images .pattern {
  position: absolute;
}
#about-bottom .col-images .pattern:nth-of-type(1) {
  width: 36%;
  left: 2%;
  top: 0;
}
#about-bottom .col-images .pattern:nth-of-type(2) {
  width: 16%;
  left: 75%;
  top: 70%;
}
#about-bottom .col-images .pattern:nth-of-type(3) {
  width: 12%;
  left: 10%;
  top: 85%;
}
#about-bottom .col-images .img-container:last-child {
  position: absolute;
  right: -7%;
  top: -2%;
  width: 35%;
  height: 30%;
}

.full-image-banner .img-container {
  position: relative;
  overflow: hidden;
}
.full-image-banner .img-container:before {
  content: "";
  display: block;
  padding-top: 40%;
}
.full-image-banner .img-container img {
  transform: scale(1.2);
  transition: all 0.3s ease-out;
}
.full-image-banner .img-container:hover img {
  transform: scale(1);
}

.swiper-arrows {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: calc(100% + 300px);
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.swiper-arrows .swiper-button-next, .swiper-arrows .swiper-button-prev {
  position: relative;
}
.swiper-arrows .swiper-button-next:after, .swiper-arrows .swiper-button-prev:after {
  content: none;
}
.swiper-arrows .swiper-button-prev {
  transform: scaleX(-1);
}

.testimonial-swiper {
  overflow: hidden;
}
.testimonial-swiper h3 {
  line-height: 1.5em;
  font-weight: 100;
}
.testimonial-swiper .col-infos {
  gap: 45px;
}
.testimonial-swiper .col-infos .name {
  font: 700 1.25rem/1.2em "Just Sans", sans-serif;
  text-transform: uppercase;
}
.testimonial-swiper .col-infos .position {
  font: 500 1.25rem/1.2em "Just Sans", sans-serif;
}
.testimonial-swiper .swiper-arrows .swiper-button-prev {
  transition: all 0.3s ease-out;
}
.testimonial-swiper .swiper-arrows .swiper-button-prev path, .testimonial-swiper .swiper-arrows .swiper-button-prev line {
  transition: all 0.3s ease-out;
}
.testimonial-swiper .swiper-arrows .swiper-button-prev:hover {
  transform: scaleX(-1) translateX(10px);
}
.testimonial-swiper .swiper-arrows .swiper-button-prev:hover path, .testimonial-swiper .swiper-arrows .swiper-button-prev:hover line {
  stroke: #fff;
}
.testimonial-swiper .swiper-arrows .swiper-button-next {
  transition: all 0.3s ease-out;
}
.testimonial-swiper .swiper-arrows .swiper-button-next path, .testimonial-swiper .swiper-arrows .swiper-button-next line {
  transition: all 0.3s ease-out;
}
.testimonial-swiper .swiper-arrows .swiper-button-next:hover {
  transform: translateX(10px);
}
.testimonial-swiper .swiper-arrows .swiper-button-next:hover path, .testimonial-swiper .swiper-arrows .swiper-button-next:hover line {
  stroke: #fff;
}

#projects-banner .pattern {
  position: absolute;
  z-index: 3;
}
#projects-banner .pattern:nth-of-type(1) {
  width: 11%;
  left: 0;
  top: 50%;
}
#projects-banner .pattern:nth-of-type(2) {
  top: 56%;
  left: 7%;
  width: 21%;
}
#projects-banner .pattern:nth-of-type(3) {
  width: 17%;
  left: 68%;
  top: 10%;
}
#projects-banner .pattern:nth-of-type(4) {
  width: 8%;
  left: 82%;
  top: 4%;
}
#projects-banner h1 {
  font-size: 6.875rem;
}
#projects-banner .col-image {
  position: relative;
}
#projects-banner .col-image .img-container {
  position: relative;
  position: relative;
  pointer-events: none;
  z-index: 1;
}
#projects-banner .col-image .img-container > img,
#projects-banner .col-image .img-container > picture {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
#projects-banner .col-image .img-container img {
  z-index: 1;
}
#projects-banner .col-image:after {
  content: "";
  position: absolute;
  background: url(../images/pattern-back-double.webm) no-repeat center;
  background-size: contain;
  width: 150%;
  height: 125%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
#projects-banner .gsap-scroll-section {
  margin-top: 140px;
}
#projects-banner .gsap-scroll-section span {
  font: 600 6.875rem/1.2em "Just Sans", sans-serif;
  color: transparent;
  -webkit-text-fill-color: transparent; /* Will override color (regardless of order) */
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #F9BB02;
}

#project-list {
  position: relative;
}
#project-list #longLine {
  position: absolute;
  left: -5%;
  bottom: 35%;
  width: 110%;
  height: auto;
}

.gsap-scroll-section {
  display: flex;
  width: 200%;
}
.gsap-scroll-section span {
  white-space: nowrap;
}

.project-card {
  filter: drop-shadow(0px 3px 4px rgba(50, 50, 0, 0.2));
  -webkit-filter: drop-shadow(0px 3px 4px rgba(50, 50, 0, 0.2));
}
.project-card .inner {
  min-height: 410px;
  overflow: hidden;
  border-radius: 20px;
  clip-path: polygon(90% 0, 100% 30%, 100% 100%, 0 100%, 0 0);
  background-color: #fff;
  gap: 55px;
  transition: all 0.3s ease-out;
  justify-content: right;
}
.project-card .inner:hover {
  background-color: #31353F;
  transform: rotate(-2deg);
}
.project-card .inner:hover .col-image .img-container:after {
  opacity: 0.3;
}
.project-card .inner:hover .col-image .img-container img {
  transform: scale(1.1);
}
.project-card .inner:hover .col-content h3 {
  color: #fff;
}
.project-card .inner:hover .col-content .link span {
  color: #fff;
}
.project-card .inner:hover .link:hover span:after {
  right: 0;
  transition: all 0.2s ease-in 0.1s;
  background-color: #fff;
}
.project-card .col-content {
  position: relative;
  padding: 65px 55px;
  width: 60%;
  min-height: 410px;
}
.project-card .col-content h3 {
  font-weight: 400;
  transition: all 0.3s ease-out;
}
.project-card .col-content .link span {
  transition: all 0.3s ease-out;
}
.project-card .col-image {
  position: absolute;
  left: 0;
  top: 0;
  width: 40%;
  height: 100%;
  border-radius: 20px 0 0 20px;
  overflow: hidden;
}
.project-card .col-image .img-container {
  height: 100%;
}
.project-card .col-image .img-container:after {
  content: "";
  position: absolute;
  background-color: #F9BB02;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  opacity: 0;
  transition: all 0.3s ease-out;
}
.project-card .col-image .img-container img {
  transition: all 0.3s ease-out;
}

#testimonials .pattern {
  position: absolute;
  width: 21%;
  left: 0;
  top: 0;
}
#testimonials .swiper-container {
  position: relative;
}

#project-banner, #about-banner {
  position: relative;
}
#project-banner:before, #about-banner:before {
  content: "";
  position: absolute;
  background: url(../images/pattern-back-single.gif) no-repeat center;
  background-size: contain;
  width: 33%;
  height: 50%;
  left: -17%;
  top: 18%;
}
#project-banner .row, #project-banner form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address, form .gform_body .gform_fields .gfield #project-banner .ginput_container.ginput_container_address, #project-banner form .gform_body .gform_fields, form .gform_body #project-banner .gform_fields, #about-banner .row, #about-banner form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address, form .gform_body .gform_fields .gfield #about-banner .ginput_container.ginput_container_address, #about-banner form .gform_body .gform_fields, form .gform_body #about-banner .gform_fields {
  max-width: calc(100% - 80px);
  margin-inline: auto;
}
#project-banner .row .col-content, form .gform_body .gform_fields .gfield #project-banner .ginput_container.ginput_container_address .col-content, #project-banner form .gform_body .gform_fields .col-content, form .gform_body #project-banner .gform_fields .col-content, #about-banner .row .col-content, form .gform_body .gform_fields .gfield #about-banner .ginput_container.ginput_container_address .col-content, #about-banner form .gform_body .gform_fields .col-content, form .gform_body #about-banner .gform_fields .col-content {
  max-width: 630px;
  margin-inline: auto;
  padding: 100px 0;
}
#project-banner .row .col-image, form .gform_body .gform_fields .gfield #project-banner .ginput_container.ginput_container_address .col-image, #project-banner form .gform_body .gform_fields .col-image, form .gform_body #project-banner .gform_fields .col-image, #about-banner .row .col-image, form .gform_body .gform_fields .gfield #about-banner .ginput_container.ginput_container_address .col-image, #about-banner form .gform_body .gform_fields .col-image, form .gform_body #about-banner .gform_fields .col-image {
  position: relative;
  margin-right: -40px;
  padding-inline: 0;
}
#project-banner .row .col-image .img-container, form .gform_body .gform_fields .gfield #project-banner .ginput_container.ginput_container_address .col-image .img-container, #project-banner form .gform_body .gform_fields .col-image .img-container, form .gform_body #project-banner .gform_fields .col-image .img-container, #about-banner .row .col-image .img-container, form .gform_body .gform_fields .gfield #about-banner .ginput_container.ginput_container_address .col-image .img-container, #about-banner form .gform_body .gform_fields .col-image .img-container, form .gform_body #about-banner .gform_fields .col-image .img-container {
  position: relative;
  position: relative;
  -webkit-clip-path: url("#image-mask-black");
  clip-path: url("#image-mask-black");
}
#project-banner .row .col-image .img-container:before, form .gform_body .gform_fields .gfield #project-banner .ginput_container.ginput_container_address .col-image .img-container:before, #project-banner form .gform_body .gform_fields .col-image .img-container:before, form .gform_body #project-banner .gform_fields .col-image .img-container:before, #about-banner .row .col-image .img-container:before, form .gform_body .gform_fields .gfield #about-banner .ginput_container.ginput_container_address .col-image .img-container:before, #about-banner form .gform_body .gform_fields .col-image .img-container:before, form .gform_body #about-banner .gform_fields .col-image .img-container:before {
  content: "";
  display: block;
  padding-top: 100%;
}
#project-banner .row .col-image .img-container > img, form .gform_body .gform_fields .gfield #project-banner .ginput_container.ginput_container_address .col-image .img-container > img, #project-banner form .gform_body .gform_fields .col-image .img-container > img, form .gform_body #project-banner .gform_fields .col-image .img-container > img,
#project-banner .row .col-image .img-container > picture,
form .gform_body .gform_fields .gfield #project-banner .ginput_container.ginput_container_address .col-image .img-container > picture,
#project-banner form .gform_body .gform_fields .col-image .img-container > picture,
form .gform_body #project-banner .gform_fields .col-image .img-container > picture, #about-banner .row .col-image .img-container > img, form .gform_body .gform_fields .gfield #about-banner .ginput_container.ginput_container_address .col-image .img-container > img, #about-banner form .gform_body .gform_fields .col-image .img-container > img, form .gform_body #about-banner .gform_fields .col-image .img-container > img,
#about-banner .row .col-image .img-container > picture,
form .gform_body .gform_fields .gfield #about-banner .ginput_container.ginput_container_address .col-image .img-container > picture,
#about-banner form .gform_body .gform_fields .col-image .img-container > picture,
form .gform_body #about-banner .gform_fields .col-image .img-container > picture {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
#project-banner .row .col-image .img-container img, form .gform_body .gform_fields .gfield #project-banner .ginput_container.ginput_container_address .col-image .img-container img, #project-banner form .gform_body .gform_fields .col-image .img-container img, form .gform_body #project-banner .gform_fields .col-image .img-container img, #about-banner .row .col-image .img-container img, form .gform_body .gform_fields .gfield #about-banner .ginput_container.ginput_container_address .col-image .img-container img, #about-banner form .gform_body .gform_fields .col-image .img-container img, form .gform_body #about-banner .gform_fields .col-image .img-container img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.terms {
  gap: 15px;
  margin-top: 15px;
}
.terms .term {
  font: 500 1.125rem/1.2em "Just Sans", sans-serif;
  border: 2px solid #F9BB02;
  border-radius: 30px;
  padding: 10px 25px;
}

#about-project, #about-story {
  position: relative;
}
#about-project .pattern, #about-story .pattern {
  position: absolute;
  left: 0;
  top: 20%;
  width: 23%;
}

.grey-card {
  background-color: #F7F9FA;
  border-radius: 25px;
  padding: 65px 110px;
  gap: 175px;
}
.grey-card .col-image svg {
  min-width: 350px;
  overflow: visible;
}
.grey-card .col-image svg #Soustraction_13, .grey-card .col-image svg #Ellipse_11, .grey-card .col-image svg #Ligne_89, .grey-card .col-image svg #Tracé_171 {
  transition: all 0.3s ease-out;
}
.grey-card .col-image:hover svg #Soustraction_13 {
  transform: translate(0px, 20px);
}
.grey-card .col-image:hover svg #Ellipse_11 {
  transform: translate(-5px, 18px);
}
.grey-card .col-image:hover svg #Ligne_89 {
  transform: translate(-40px, 40px);
}
.grey-card .col-image:hover svg #Tracé_171 {
  transform: translate(-40px, 40px);
}

#project-mandate {
  z-index: 3;
}
#project-mandate .pattern:nth-of-type(1) {
  position: absolute;
  right: -2%;
  top: 60%;
  width: 20%;
}

#project-solutions {
  position: relative;
}
#project-solutions .pattern:nth-of-type(1) {
  position: absolute;
  left: -4%;
  top: 20%;
  width: 20%;
  transform: scaleX(-1);
}
#project-solutions .wrapper.full {
  position: relative;
}
#project-solutions .wrapper.full .pattern {
  position: absolute;
  left: 8%;
  top: 12%;
  width: 12%;
}

.solutions-swiper {
  position: relative;
  z-index: 2;
}
.solutions-swiper:before {
  content: "";
  position: absolute;
  transform: translateY(50%);
  width: 140%;
  left: -20%;
  bottom: 0;
  background-color: #F9BB02;
  border-radius: 100% 100% 0 0;
  padding-top: 35%;
}
.solutions-swiper .swiper-wrapper .swiper-slide {
  transition: all 0.3s ease-out;
}
.solutions-swiper .swiper-wrapper .swiper-slide:hover {
  scale: 1.1;
}
.solutions-swiper .swiper-wrapper .swiper-slide .content-card {
  max-width: 410px;
}
.solutions-swiper .swiper-wrapper .swiper-slide .content-card .img-container {
  max-height: 660px;
}
.solutions-swiper .swiper-wrapper .swiper-slide:nth-child(n) .content-card, .solutions-swiper .swiper-wrapper .swiper-slide:nth-child(4n) .content-card {
  transform: rotate(-4deg);
}
.solutions-swiper .swiper-wrapper .swiper-slide:nth-child(n) .content-card .cat-container .cat-label, .solutions-swiper .swiper-wrapper .swiper-slide:nth-child(4n) .content-card .cat-container .cat-label {
  background-color: #ACCEFF;
}
.solutions-swiper .swiper-wrapper .swiper-slide:nth-child(2n) .content-card {
  transform: rotate(2deg) translateY(30px);
}
.solutions-swiper .swiper-wrapper .swiper-slide:nth-child(2n) .content-card .cat-container .cat-label {
  background-color: #FFDE7E;
}
.solutions-swiper .swiper-wrapper .swiper-slide:nth-child(3n) .content-card {
  transform: rotate(-2deg) translateY(20px);
}
.solutions-swiper .swiper-wrapper .swiper-slide:nth-child(3n) .content-card .cat-container .cat-label {
  background-color: #000;
  color: #fff;
}

#project-cases .pattern:nth-of-type(1) {
  position: absolute;
  right: 0;
  top: -3%;
  width: 23%;
  z-index: 1;
}
#project-cases .tab-container {
  justify-content: start;
}
#project-cases .case-trigger {
  position: relative;
  text-transform: uppercase;
  margin-right: 95px;
  cursor: pointer;
}
#project-cases .cases {
  position: relative;
  width: 100%;
}
#project-cases .cases .case {
  position: absolute;
  width: 100%;
  opacity: 0;
  left: 0;
  top: 0;
  pointer-events: none;
  transition: all 0.3s ease-out;
}
#project-cases .cases .case .col-content {
  width: 40%;
  padding-right: 115px;
}
#project-cases .cases .case .col-image {
  width: 60%;
  padding-left: 115px;
}
#project-cases .cases .case .col-image .img-container {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  clip-path: polygon(88% 0, 100% 20%, 100% 100%, 0 100%, 0 0);
}
#project-cases .cases .case .col-image .img-container:before {
  content: "";
  display: block;
  padding-top: 69%;
}
#project-cases .cases .case .col-image .img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#project-cases .cases .case.active {
  opacity: 1;
}

#project-counter > .pattern {
  position: absolute;
}
#project-counter > .pattern:nth-of-type(1) {
  right: -5%;
  top: 0;
  width: 15%;
}
#project-counter > .pattern:nth-of-type(1) svg path {
  stroke: rgb(255, 211, 80);
}

.numbers {
  position: relative;
  gap: 170px;
  padding: 125px 150px;
}
.numbers .pattern svg path {
  stroke: #F9BB02 !important;
}
.numbers .pattern:nth-of-type(1) {
  position: absolute;
  width: 80%;
  right: 0;
  top: 0;
}
.numbers .pattern:nth-of-type(2) {
  position: absolute;
  width: 80%;
  left: 0;
  bottom: 0;
}
.numbers .number span {
  font: 600 6.875rem/1.2em "Just Sans", sans-serif;
}

#project-scroll .pattern {
  position: absolute;
}
#project-scroll .pattern:nth-of-type(1) {
  left: -7%;
  top: 20%;
  width: 36%;
}
#project-scroll .pattern:nth-of-type(2) {
  right: -7%;
  top: 10%;
  width: 26%;
  transform: scaleX(-1);
}

#team-banner .pattern {
  position: absolute;
}
#team-banner .pattern:nth-of-type(1) {
  left: 12%;
  top: 40%;
  width: 7%;
  max-width: 127px;
}
#team-banner .pattern:nth-of-type(2) {
  left: 17%;
  top: 35%;
  width: 3%;
  max-width: 56px;
}
#team-banner .pattern:nth-of-type(3) {
  left: 81%;
  top: 33%;
  width: 3%;
  max-width: 40px;
}
#team-banner .pattern:nth-of-type(4) {
  left: 84%;
  top: 26%;
  width: 4%;
  max-width: 65px;
}
#team-banner .pattern:nth-of-type(5) {
  left: 87%;
  top: 65%;
  width: 6%;
  max-width: 113px;
}
#team-banner:before {
  content: "";
  position: absolute;
  background: url(../images/pattern-back-single.gif) no-repeat right;
  background-size: contain;
  width: 30%;
  height: 55%;
  left: -25px;
  top: 50%;
  transform: translateY(-50%) scaleX(-1);
}
#team-banner:after {
  content: "";
  position: absolute;
  background: url(../images/pattern-back-single.gif) no-repeat right;
  background-size: contain;
  width: 30%;
  height: 55%;
  right: -50px;
  top: 50%;
  transform: translateY(-50%);
}
#team-banner .wrapper {
  z-index: 2;
}

#team-section .pattern {
  position: absolute;
  left: 0%;
  top: 50%;
  width: 17%;
}

.col-employee:nth-child(3n+2) {
  margin-top: -150px;
}

.employee-card {
  position: relative;
  z-index: 2;
  filter: drop-shadow(0px 3px 4px rgba(50, 50, 0, 0.2));
  -webkit-filter: drop-shadow(0px 3px 4px rgba(50, 50, 0, 0.2));
}
.employee-card .inner {
  border-radius: 25px;
  overflow: hidden;
  background-color: #fff;
  clip-path: polygon(85% 0, 100% 15%, 100% 100%, 0 100%, 0 0);
  transition: all 0.2s;
}
.employee-card .inner .top {
  position: relative;
}
.employee-card .inner .top .img-container {
  position: relative;
  position: relative;
  overflow: hidden;
}
.employee-card .inner .top .img-container:before {
  content: "";
  display: block;
  padding-top: 75%;
}
.employee-card .inner .top .img-container > img,
.employee-card .inner .top .img-container > picture {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.employee-card .inner .top .img-container img {
  transition: all 0.3s ease-out;
}
.employee-card .inner .top .linkedin {
  position: absolute;
  right: 25px;
  bottom: -25px;
  width: 50px;
  height: 50px;
  z-index: 1;
}
.employee-card .inner .top .linkedin svg {
  width: 100%;
  height: 100%;
}
.employee-card .inner .top .linkedin svg path {
  transition: all 0.3s ease-out;
}
.employee-card .inner .top .linkedin:hover svg path {
  fill: #fff;
}
.employee-card .inner .top .linkedin:hover svg path#Path_3 {
  fill: #000;
}
.employee-card .inner .the-content {
  padding: 30px 35px;
}
.employee-card .inner .the-content h3 {
  font: 500 1.6875rem/1.2em "Just Sans", sans-serif;
}
.employee-card .inner .the-content h3 span {
  color: #F9BB02;
}
.employee-card .inner .the-content h4 {
  font: 400 1.25rem/1.2em "Just Sans", sans-serif;
  margin-bottom: 40px;
}
.employee-card .inner .the-content p {
  position: relative;
  padding-left: 32px;
  font-size: 1.125rem;
}
.employee-card .inner .the-content p:before {
  content: "";
  position: absolute;
  background: url(../images/b-icon.svg) no-repeat center;
  background-size: contain;
  width: 20px;
  height: 20px;
  left: 0;
  top: 8px;
}
.employee-card .inner:hover .img-container img {
  transform: scale(1.1);
}

.yellow-card {
  display: flex;
  overflow: hidden;
  gap: 85px;
  background-color: #F9BB02;
  border-radius: 25px;
  clip-path: polygon(94% 0, 100% 20%, 100% 100%, 0 100%, 0 0);
}
.yellow-card .col-image, .yellow-card .col-content {
  width: 50%;
}
.yellow-card .col-image .img-container {
  height: 100%;
  -webkit-mask-image: url(../images/image-mask-black-2.svg);
  mask-image: url(../images/image-mask-black-2.svg);
  mask-repeat: no-repeat;
  mask-position: right;
  mask-size: cover;
}
.yellow-card .col-content {
  padding: 50px 110px 50px 0;
}
.yellow-card .img-container {
  position: relative;
  position: relative;
}
.yellow-card .img-container:before {
  content: "";
  display: block;
  padding-top: 80%;
}
.yellow-card .img-container > img,
.yellow-card .img-container > picture {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.posts-list {
  row-gap: 40px;
}

.post-card {
  filter: drop-shadow(0px 3px 4px rgba(50, 50, 0, 0.2));
}
.post-card .inner {
  border-radius: 25px;
  overflow: hidden;
  background-color: #fff;
  clip-path: polygon(85% 0, 100% 15%, 100% 100%, 0 100%, 0 0);
  transition: all 0.2s;
  cursor: pointer;
}
.post-card .inner .img-container {
  position: relative;
  overflow: hidden;
}
.post-card .inner .img-container:before {
  content: "";
  display: block;
  padding-top: 77%;
}
.post-card .inner .img-container:after {
  content: "";
  position: absolute;
  background-color: #F9BB02;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  opacity: 0;
  transition: all 0.3s ease-out;
}
.post-card .inner .img-container img {
  transition: all 0.3s ease-out;
}
.post-card .inner .the-content {
  padding: 38px;
  margin-bottom: 0;
}
.post-card .inner .the-content h3 {
  font: 500 1.6875rem/1.2em "Just Sans", sans-serif;
}
.post-card .inner .the-content > .d-flex {
  row-gap: 10px;
}
.post-card .cat-label {
  background-color: #FFDE7E;
}
.post-card:hover .inner {
  transform: rotate(-2deg);
}
.post-card:hover .inner .img-container:after {
  opacity: 0.3;
}
.post-card:hover .inner .img-container img {
  transform: scale(1.1);
}

#posts-page .order {
  margin-bottom: 40px;
}
#posts-page .order span {
  position: relative;
  cursor: pointer;
  font: 500 1.125rem/1.2em "Just Sans", sans-serif;
  text-transform: uppercase;
}
#posts-page .order span:after {
  content: "";
  position: absolute;
  background: url(../images/order-arrow.svg);
  width: 15px;
  height: 20px;
  right: -25px;
  top: 0;
  transform: scaleY(-1);
}
#posts-page .order span[data-order=ASC]:after {
  transform: scaleY(1);
}
#posts-page .col-post:nth-child(2n+1) {
  transform: translateY(-50px);
}

.category {
  padding: 12px 20px;
  margin-bottom: 12px;
}

.loading {
  opacity: 0.5;
}

.pagination {
  display: flex;
  align-items: center;
  gap: 20px;
}
.pagination .bullet {
  border-radius: 50%;
  border: 2px dotted #fff;
  width: 32px;
  height: 32px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-out;
}
.pagination .bullet.active, .pagination .bullet:hover {
  border-color: #F9BB02;
}

.intro-card {
  padding: 50px 75px;
  border-radius: 25px;
  clip-path: polygon(93% 0, 100% 30%, 100% 100%, 0 100%, 0 0);
  background-color: #F7F9FA;
}
.intro-card h3 {
  font: 500 1.5rem/1.2em "Just Sans", sans-serif;
}

#post-banner {
  position: relative;
  padding-bottom: 50px;
}
#post-banner .pattern {
  position: absolute;
}
#post-banner .pattern:nth-child(1) {
  right: -5%;
  top: 40%;
  width: 20%;
}
#post-banner .pattern:nth-child(2) {
  left: -5%;
  top: 20%;
  width: 23%;
}

#post-content .col-image .img-container {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  clip-path: polygon(85% 0, 100% 15%, 100% 100%, 0 100%, 0 0);
}
#post-content .col-image .img-container:before {
  content: "";
  display: block;
  padding-top: 90%;
}

.slider-card {
  display: flex;
  align-items: center;
  background-color: #31353F;
  overflow: hidden;
  border-radius: 30px;
  clip-path: polygon(94% 0, 100% 10%, 100% 100%, 0 100%, 0 0);
}
.slider-card .col-image {
  position: absolute;
  width: 50%;
  left: 0;
  top: 0;
  height: 100%;
  border-radius: 30px 0 0 30px;
  overflow: hidden;
}
.slider-card .col-image .img-container {
  position: relative;
  position: relative;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all 0.3s ease-out;
}
.slider-card .col-image .img-container:before {
  content: "";
  display: block;
  padding-top: 100%;
}
.slider-card .col-image .img-container > img,
.slider-card .col-image .img-container > picture {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.slider-card .col-image .img-container.active {
  opacity: 1;
}
.slider-card .col-content {
  margin-left: auto;
  padding: 95px 85px 95px 95px;
  overflow: hidden;
  width: 50%;
}
.slider-card .col-content h2 {
  font: 600 4.6875rem/1.2em "Just Sans", sans-serif;
  margin-bottom: 195px;
}
.slider-card .col-content h3 {
  font: 700 1.25rem/1.2em "Just Sans", sans-serif;
  text-transform: uppercase;
  margin-bottom: 30px;
}
.slider-card .col-content h2, .slider-card .col-content h3 {
  color: #fff;
}
.slider-card .col-content .the-content p {
  color: #fff;
}
.slider-card .navigation {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.slider-card .navigation .swiper-button-next, .slider-card .navigation .swiper-button-prev {
  position: relative;
  transition: all 0.3s ease-out;
}
.slider-card .navigation .swiper-button-next svg path, .slider-card .navigation .swiper-button-next svg line, .slider-card .navigation .swiper-button-prev svg path, .slider-card .navigation .swiper-button-prev svg line {
  stroke: #fff;
  transition: all 0.3s ease-out;
}
.slider-card .navigation .swiper-button-next:after, .slider-card .navigation .swiper-button-prev:after {
  content: none;
}
.slider-card .navigation .swiper-button-prev {
  transform: scaleX(-1);
}
.slider-card .navigation .swiper-button-prev:hover {
  transform: translateX(-5px) scaleX(-1);
}
.slider-card .navigation .swiper-button-prev:hover svg path, .slider-card .navigation .swiper-button-prev:hover svg line {
  stroke: #F9BB02;
}
.slider-card .navigation .swiper-button-next:hover {
  transform: translateX(5px);
}
.slider-card .navigation .swiper-button-next:hover svg path, .slider-card .navigation .swiper-button-next:hover svg line {
  stroke: #F9BB02;
}

#about-team h2 {
  font: 600 6.875rem/1.1em "Just Sans", sans-serif;
  max-width: 1040px;
  margin-inline: auto;
  margin-bottom: 335px;
}
#about-team .col-images {
  position: relative;
  transform: translateX(100px);
}
#about-team .col-images .img-container {
  position: absolute;
  left: 0;
  top: 100%;
  aspect-ratio: 1/1;
  width: 100px;
  height: auto;
  -webkit-mask-image: url(../images/image-mask2.svg);
  mask-image: url(../images/image-mask2.svg);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: cover;
  z-index: 1;
}
#about-team .col-images .img-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
#about-team .col-images .img-container:nth-child(1) {
  width: 54%;
  height: auto;
  left: -25%;
  transform: translateY(-125%);
}
#about-team .col-images .img-container:nth-child(2) {
  width: 49%;
  left: -3%;
  transform: translateY(-55%);
}
#about-team .col-images .img-container:nth-child(3) {
  width: 38%;
  left: 34%;
  transform: translateY(-90%);
}
#about-team .col-images .img-container:nth-child(4) {
  width: 23%;
  left: 60%;
  transform: translateY(-40%);
}

.value-card {
  height: auto;
  margin-bottom: 25px;
}
.value-card .inner {
  position: relative;
  background-color: #fff;
  padding: 35px 55px;
  height: 100%;
  overflow: hidden;
  border-radius: 30px;
  clip-path: polygon(90% 0, 100% 30%, 100% 100%, 0 100%, 0 0);
}
.value-card .inner h3 {
  font-weight: 400;
}
.value-card .inner span {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  font: 700 1.125rem/1.2em "Just Sans", sans-serif;
}
.value-card .inner span:after {
  content: "";
  background: url(../images/slider-arrow.svg) no-repeat center;
  width: 30px;
  height: 15px;
  display: inline-flex;
  top: 3px;
}
.value-card .inner svg {
  width: 75px;
  height: auto;
  z-index: 5;
  overflow: visible;
}
.value-card .inner svg path, .value-card .inner svg g, .value-card .inner svg rect, .value-card .inner svg circle, .value-card .inner svg line {
  transition: all 0.3s ease-out;
  transform-origin: 50%;
}
.value-card .inner svg #Groupe_528 {
  transform-origin: left bottom;
}
.value-card .inner svg#bee #beeLines {
  transform-origin: right bottom;
}
.value-card .inner .hover-state {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  left: 0;
  top: 50%;
  background-color: #31353F;
  padding: 35px 55px;
  overflow: hidden;
  border-radius: 30px;
  transition: all 0.3s ease-out;
}
.value-card .inner .hover-state h3 {
  font-size: 1.5625rem;
  color: #fff;
  max-width: 68%;
}
.value-card .inner:hover svg {
  overflow: visible;
}
.value-card .inner:hover svg #Tracé_172-2 {
  transform: translate(-10px, 0);
  stroke: #fff !important;
}
.value-card .inner:hover svg #Tracé_174 {
  transform: translate(-10px, 0);
  stroke: #fff !important;
  fill: #fff;
}
.value-card .inner:hover svg #Tracé_172 {
  transform: translate(-10px, 0);
}
.value-card .inner:hover svg #Tracé_173 {
  stroke: #fff !important;
}
.value-card .inner:hover svg #Rectangle_154-2 {
  transform: translate(5px, -5px) rotate(2deg);
}
.value-card .inner:hover svg #Rectangle_154-2 path {
  stroke: #fff !important;
}
.value-card .inner:hover svg #Rectangle_155 {
  transform: translate(5px, 5px) rotate(-4deg);
}
.value-card .inner:hover svg #Rectangle_155 path {
  stroke: #fff !important;
}
.value-card .inner:hover svg #Rectangle_154 {
  transform: translate(0, -2px);
}
.value-card .inner:hover svg #Rectangle_156 path {
  stroke: #fff !important;
}
.value-card .inner:hover svg #Groupe_528 {
  transform: translate(-10px, -30px) rotate(47deg);
}
.value-card .inner:hover svg #Groupe_528 path {
  stroke: #fff !important;
}
.value-card .inner:hover svg #Ellipse_26 {
  transform: translate(2px, -54px);
}
.value-card .inner:hover svg #Ellipse_25 {
  transform: translate(5px, -2px);
}
.value-card .inner:hover svg#clock #clockArrow {
  transform: rotate(45deg);
}
.value-card .inner:hover svg#clock path {
  stroke: #fff !important;
}
.value-card .inner:hover svg#clock circle {
  stroke: transparent;
}
.value-card .inner:hover svg#bee #beeLines {
  transform: rotate(-30deg) translateX(50px) translateY(-30px);
}
.value-card .inner:hover svg#bee #beeLines path, .value-card .inner:hover svg#bee #beeLines line {
  stroke: #fff !important;
}
.value-card .inner:hover svg#bee #beeBg {
  transform: rotate(-30deg) translateX(20px) translateY(-10px);
}
.value-card .inner:hover svg#rocket #rocketLines {
  transform: translateY(-25px);
}
.value-card .inner:hover svg#rocket #rocketLines path, .value-card .inner:hover svg#rocket #rocketLines line, .value-card .inner:hover svg#rocket #rocketLines circle {
  stroke: #fff !important;
}
.value-card .inner:hover svg#rocket #rocketCircle {
  transform: translateY(-50px) translateX(25px);
}
.value-card .inner:hover svg#rocket #rocketCircle circle {
  stroke: transparent;
}
.value-card .inner:hover .hover-state {
  opacity: 1;
  transform: scale(1);
  top: 0;
}

#about-values .pattern {
  position: absolute;
  left: 60%;
  top: 10%;
  width: 20%;
}

#about-contact {
  position: relative;
}
#about-contact .pattern {
  position: absolute;
}
#about-contact .pattern:nth-of-type(1) {
  left: -6%;
  top: 15%;
  width: 24%;
  transform: scaleX(-1);
}
#about-contact .pattern:nth-of-type(2) {
  left: -5%;
  top: 80%;
  width: 12%;
}
#about-contact .pattern:nth-of-type(3) {
  right: -4%;
  top: -3%;
  width: 12%;
}
#about-contact .pattern:nth-of-type(4) {
  right: -8%;
  top: 55%;
  width: 25%;
}
#about-contact .img-container {
  position: relative;
}
#about-contact .img-container:before {
  content: "";
  display: block;
  padding-top: 128%;
}

.cat-card {
  border: 2px solid var(--cat-color);
  border-radius: 30px;
  padding: 8px 35px;
  transition: all 0.3s ease-out;
  margin-right: 10px;
  cursor: pointer;
  font: 500 1.125rem/1.2em "Just Sans", sans-serif;
}
.cat-card:hover, .cat-card.active {
  background-color: var(--cat-color);
}

#faq-banner {
  position: relative;
  z-index: 3;
}
#faq-banner .wrapper {
  z-index: 2;
}
#faq-banner .pattern {
  position: absolute;
}
#faq-banner .pattern:nth-of-type(1) {
  left: 62%;
  top: 26%;
  width: 12%;
}
#faq-banner .pattern:nth-of-type(2) {
  left: 56%;
  top: 70%;
  width: 3%;
  z-index: 2;
}
#faq-banner .pattern:nth-of-type(3) {
  left: 89%;
  top: 90%;
  width: 9%;
  transform: scaleX(-1);
  z-index: 2;
}
#faq-banner:before {
  content: "";
  position: absolute;
  background: url(../images/pattern-back-double.webm) no-repeat center;
  background-size: contain;
  width: 58%;
  height: 115%;
  right: -8%;
  top: 20%;
  transform: scale(0.8) rotate(-10deg);
}
#faq-banner .the-content {
  max-width: 490px;
  margin-bottom: 40px;
}

#faq-contact .pattern {
  position: absolute;
  left: 35%;
  top: -20%;
  width: 21%;
}
#faq-contact h2 {
  font-weight: 400;
}

#contact-banner {
  padding-bottom: 200px;
}
#contact-banner .pattern {
  position: absolute;
  right: 0;
  top: 40%;
  transform: scaleX(-1);
  width: 28%;
}
#contact-banner h1 {
  margin-bottom: 150px;
}
#contact-banner .the-content {
  max-width: 485px;
  margin-bottom: 25px;
}
#contact-banner .wrapper {
  z-index: 2;
}

#contact-form .img-container {
  position: absolute;
  left: -9%;
  top: -5%;
  width: 35%;
  pointer-events: none;
}
#contact-form .gform_footer {
  justify-content: left;
}

#service-contact-form {
  position: relative;
}
#service-contact-form .gform_confirmation_message {
  text-align: center;
  font: 300 1.25rem/160% "Just Sans", sans-serif;
}
#service-contact-form .pattern {
  position: absolute;
  left: -5%;
  top: -10%;
  width: 25%;
}
#service-contact-form .gform-footer {
  margin-top: 20px;
  justify-content: center;
  margin-inline: auto;
}

#privacy-banner, #not-found-banner {
  position: relative;
  z-index: 3;
}
#privacy-banner .wrapper, #not-found-banner .wrapper {
  z-index: 4;
}
#privacy-banner .pattern, #not-found-banner .pattern {
  position: absolute;
}
#privacy-banner .pattern:nth-of-type(1), #not-found-banner .pattern:nth-of-type(1) {
  left: 5%;
  top: 50%;
  width: 15%;
}
#privacy-banner .pattern:nth-of-type(2), #not-found-banner .pattern:nth-of-type(2) {
  left: 80%;
  top: 50%;
  width: 9%;
}
#privacy-banner:before, #not-found-banner:before {
  content: "";
  position: absolute;
  background: url(../images/pattern-back-single.gif) no-repeat right;
  background-size: contain;
  width: 30%;
  height: 95%;
  left: -25px;
  top: 30%;
  transform: scaleX(-1);
}
#privacy-banner:after, #not-found-banner:after {
  content: "";
  position: absolute;
  background: url(../images/pattern-back-single.gif) no-repeat right;
  background-size: contain;
  width: 30%;
  height: 95%;
  right: -50px;
  top: 30%;
}
#privacy-banner h1, #not-found-banner h1 {
  font: 600 6.875rem/1.2em "Just Sans", sans-serif;
}

.contact-card {
  position: relative;
  width: 100%;
  justify-content: right;
  min-height: 540px;
  background-color: #F7F9FA;
  overflow: hidden;
  border-radius: 30px;
  clip-path: polygon(90% 0, 100% 20%, 100% 100%, 0 100%, 0 0);
}
.contact-card:before {
  content: "";
  position: absolute;
  background: url(../images/bg-pattern-double-diff.svg) no-repeat center;
  background-size: contain;
  left: 45%;
  top: 75%;
  width: 13%;
  height: 21%;
  z-index: 1;
}
.contact-card .col-image {
  position: absolute;
  height: 100%;
  width: 50%;
  left: -15px;
  top: 0;
  border-radius: 30px 0 0 30px;
  overflow: hidden;
}
.contact-card .col-image .img-container {
  height: 100%;
}
.contact-card .col-content {
  width: 50%;
  padding: 0 80px;
}
.contact-card .col-content p {
  font: 500 1.25rem/1.2em "Just Sans", sans-serif;
}
.contact-card .col-content ul li {
  display: flex;
  margin-bottom: 10px;
  align-items: center;
  gap: 15px;
  font: 500 1.6875rem/1.2em "Just Sans", sans-serif;
}
.contact-card .col-content ul li:before {
  content: "";
  display: inline-flex;
  min-width: 50px;
  height: 2px;
  background-color: #F9BB02;
}

#privacy-content .pattern {
  position: absolute;
}
#privacy-content .pattern:nth-of-type(1) {
  right: -8%;
  top: 30%;
  width: 25%;
}
#privacy-content .pattern:nth-of-type(2) {
  left: -8%;
  top: 45%;
  width: 25%;
  transform: scaleX(-1);
}
#privacy-content .pattern:nth-of-type(3) {
  left: -8%;
  top: 45%;
  width: 25%;
}

#contact-card .pattern {
  position: absolute;
}
#contact-card .pattern:nth-of-type(1) {
  left: 5%;
  top: -20%;
  width: 13%;
}
#contact-card .pattern:nth-of-type(2) {
  right: -9%;
  top: 50%;
  width: 15%;
}

#not-found-banner h1 {
  font: 600 4.6875rem/1.2em "Just Sans", sans-serif;
}
#not-found-banner svg {
  width: 100%;
}

.employee-popup {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease-out;
}
.employee-popup.open {
  opacity: 1;
  pointer-events: all;
}
.employee-popup .wrapper {
  position: relative;
  background-color: #fff;
  padding: 60px 0;
  max-height: 660px;
  min-height: 500px;
  max-width: 1300px;
  margin-inline: auto;
  border-radius: 30px;
  overflow: hidden;
  clip-path: polygon(90% 0, 100% 20%, 100% 100%, 0 100%, 0 0);
}
.employee-popup .wrapper .close {
  position: absolute;
  right: 0;
  top: 0;
}
.employee-popup .wrapper .row, .employee-popup .wrapper form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address, form .gform_body .gform_fields .gfield .employee-popup .wrapper .ginput_container.ginput_container_address, .employee-popup .wrapper form .gform_body .gform_fields, form .gform_body .employee-popup .wrapper .gform_fields {
  width: 90%;
  height: 100%;
  margin-inline: auto;
}
.employee-popup .wrapper .row .col-image, form .gform_body .gform_fields .gfield .employee-popup .wrapper .ginput_container.ginput_container_address .col-image, .employee-popup .wrapper form .gform_body .gform_fields .col-image, form .gform_body .employee-popup .wrapper .gform_fields .col-image {
  position: absolute;
  width: 45%;
  height: 100%;
  left: 0;
  top: 0;
}
.employee-popup .wrapper .row .col-image .img-container, form .gform_body .gform_fields .gfield .employee-popup .wrapper .ginput_container.ginput_container_address .col-image .img-container, .employee-popup .wrapper form .gform_body .gform_fields .col-image .img-container, form .gform_body .employee-popup .wrapper .gform_fields .col-image .img-container {
  height: 100%;
}
.employee-popup .wrapper .row .col-content, form .gform_body .gform_fields .gfield .employee-popup .wrapper .ginput_container.ginput_container_address .col-content, .employee-popup .wrapper form .gform_body .gform_fields .col-content, form .gform_body .employee-popup .wrapper .gform_fields .col-content {
  width: 55%;
  height: 100%;
  padding: 0 75px;
}
.employee-popup .wrapper .row .col-content h3, form .gform_body .gform_fields .gfield .employee-popup .wrapper .ginput_container.ginput_container_address .col-content h3, .employee-popup .wrapper form .gform_body .gform_fields .col-content h3, form .gform_body .employee-popup .wrapper .gform_fields .col-content h3 {
  font: 500 1.6875rem/1.2em "Just Sans", sans-serif;
}
.employee-popup .wrapper .row .col-content h4, form .gform_body .gform_fields .gfield .employee-popup .wrapper .ginput_container.ginput_container_address .col-content h4, .employee-popup .wrapper form .gform_body .gform_fields .col-content h4, form .gform_body .employee-popup .wrapper .gform_fields .col-content h4 {
  font: 400 1.25rem/1.2em "Just Sans", sans-serif;
}
.employee-popup .wrapper .row .col-content .the-content, form .gform_body .gform_fields .gfield .employee-popup .wrapper .ginput_container.ginput_container_address .col-content .the-content, .employee-popup .wrapper form .gform_body .gform_fields .col-content .the-content, form .gform_body .employee-popup .wrapper .gform_fields .col-content .the-content {
  overflow-y: auto;
  scrollbar-width: none;
  max-height: 350px;
}
.employee-popup .wrapper .row .col-content .the-content p, form .gform_body .gform_fields .gfield .employee-popup .wrapper .ginput_container.ginput_container_address .col-content .the-content p, .employee-popup .wrapper form .gform_body .gform_fields .col-content .the-content p, form .gform_body .employee-popup .wrapper .gform_fields .col-content .the-content p {
  font: 100 1.125rem/1.8em "Just Sans", sans-serif;
}
.employee-popup .wrapper .row .col-content .the-content p.strong, form .gform_body .gform_fields .gfield .employee-popup .wrapper .ginput_container.ginput_container_address .col-content .the-content p.strong, .employee-popup .wrapper form .gform_body .gform_fields .col-content .the-content p.strong, form .gform_body .employee-popup .wrapper .gform_fields .col-content .the-content p.strong {
  font-weight: 700;
  line-height: 1.2em;
  position: relative;
  padding-left: 32px;
  margin-bottom: 30px;
}
.employee-popup .wrapper .row .col-content .the-content p.strong:before, form .gform_body .gform_fields .gfield .employee-popup .wrapper .ginput_container.ginput_container_address .col-content .the-content p.strong:before, .employee-popup .wrapper form .gform_body .gform_fields .col-content .the-content p.strong:before, form .gform_body .employee-popup .wrapper .gform_fields .col-content .the-content p.strong:before {
  content: "";
  position: absolute;
  background: url(../images/b-icon.svg) no-repeat center;
  background-size: contain;
  width: 20px;
  height: 20px;
  left: 0;
  top: 8px;
}
.employee-popup .wrapper .row .col-content a, form .gform_body .gform_fields .gfield .employee-popup .wrapper .ginput_container.ginput_container_address .col-content a, .employee-popup .wrapper form .gform_body .gform_fields .col-content a, form .gform_body .employee-popup .wrapper .gform_fields .col-content a {
  font: 600 1.125rem/1.2em "Just Sans", sans-serif;
  gap: 10px;
}

.page-template-faq .collapse .collapse-trigger {
  padding: 40px 150px 40px 95px;
}

.cat-filter {
  row-gap: 10px;
}

.single-post .cat-label {
  background-color: #FFDE7E;
}
.single-post .row-label {
  gap: 30px;
}
.single-post .row-label p {
  font: 300 1.125rem/1.2em "Just Sans", sans-serif;
}
.single-post #post-content h2 {
  margin-top: 50px;
}
.single-post #post-content h2, .single-post #post-content h3 {
  margin-bottom: 20px;
}

.custom-cursor {
  position: relative;
  cursor: none;
}

.cursor {
  position: absolute;
  width: 70px;
  height: 60px;
  display: none;
  align-items: center;
  justify-items: center;
  color: #fff;
  text-align: center;
  z-index: 1000;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.cursor.active {
  display: flex;
  cursor: none !important;
}
.cursor span {
  margin-inline: auto;
}
.cursor:after {
  content: "";
  position: absolute;
  background: url(../images/hexa-cursor.svg) no-repeat center;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.not-found-image {
  position: relative;
  max-width: 500px;
  margin-inline: auto;
  margin-bottom: 40px;
}
.not-found-image:after {
  content: "";
  position: absolute;
  background: url(../images/moving-bees.gif) no-repeat center;
  background-size: contain;
  left: 0;
  top: -80px;
  width: 100%;
  height: 150%;
}

.privacy-policy h2 {
  font-size: 2.5rem;
  margin-top: 40px;
}
.privacy-policy h2, .privacy-policy h3 {
  margin-bottom: 20px;
}

.sticky-box {
  position: sticky;
  height: fit-content;
  overflow: hidden;
  top: 200px;
  right: 20px;
}

.privacy-policy table {
  border: 0 none;
  border-spacing: 0;
}

.privacy-policy table td {
  padding: 10px;
  border-bottom: 1px solid gray;
}

.privacy-policy table td:first-child {
  width: 30%;
}

.privacy-policy table tbody tr:first-child {
  background-color: #ededed;
}

.privacy-policy table tbody tr:first-child td {
  border-bottom: none;
}

.privacy-policy table tbody tr:first-child p {
  font-weight: bold;
}

.privacy-policy table tbody p {
  margin-bottom: 0;
}

blockquote {
  position: relative;
  margin-inline: 0;
  padding-left: 40px;
}
blockquote:before {
  content: "";
  position: absolute;
  background-color: #130E09;
  width: 3px;
  height: 100%;
  left: 0;
  top: 0;
}
blockquote p {
  font-style: italic !important;
}

figure {
  margin: 40px 0;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  height: 140px;
  width: 100%;
  z-index: 99;
  transition: all 0.3s ease-out;
}
header .wrapper {
  position: relative;
  width: 95%;
  transition: all 0.3s ease-out;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .wrapper .mobile-nav-trigger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 45px;
  height: 22px;
  pointer-events: all;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
header .wrapper .mobile-nav-trigger span {
  width: 45px;
  height: 4px;
  display: block;
  background: #130E09;
  flex: 0 0 auto;
  transform-origin: center;
  opacity: 1;
  transition: all 0.3s ease-out;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border-radius: 2px;
}
header .wrapper .mobile-nav-trigger span:nth-child(1) {
  transform: translateY(-3px);
  transition: all 0.3s ease-out;
}
header .wrapper .mobile-nav-trigger span:nth-child(2) {
  position: relative;
  transition: all 0.3s ease-out;
}
header .wrapper .mobile-nav-trigger span:nth-child(2):before, header .wrapper .mobile-nav-trigger span:nth-child(2):after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.3s ease-out;
}
header .wrapper .mobile-nav-trigger span:nth-child(3) {
  transform: translateY(3px);
  transition: all 0.3s ease-out;
}
header .wrapper .mobile-nav-trigger span:nth-child(1), header .wrapper .mobile-nav-trigger span:nth-child(3) {
  width: 35px;
}
header .wrapper .mobile-nav-trigger:hover span:nth-child(2) {
  transition: all 0.3s ease-out 0.2s;
}
header .wrapper .mobile-nav-trigger:hover span:nth-child(2):nth-child(2) {
  position: relative;
  transition: all 0.3s ease-out;
}
header .wrapper .mobile-nav-trigger:hover span:nth-child(2):nth-child(2):before, header .wrapper .mobile-nav-trigger:hover span:nth-child(2):nth-child(2):after {
  background: #F9BB02;
}
header .wrapper .mobile-nav-trigger:hover span:nth-child(1), header .wrapper .mobile-nav-trigger:hover span:nth-child(3) {
  width: 45px;
}
header .wrapper.menu-wrapper .logo {
  z-index: 1;
  width: auto;
  transition: all 0.3s ease-out;
}
header .wrapper.menu-wrapper .logo svg {
  height: 75px;
  max-height: 100%;
}
header .wrapper.menu-wrapper .logo svg .white {
  transition: all 0.3s ease-out;
}
header .wrapper.active .mobile-nav-trigger span:nth-child(1) {
  transform: translateY(13px);
  opacity: 0;
  transition: all 0.3s ease-out;
}
header .wrapper.active .mobile-nav-trigger span:nth-child(3) {
  transform: translateY(-13px);
  opacity: 0;
  transition: all 0.3s ease-out;
}
header .wrapper.active .mobile-nav-trigger span:nth-child(2) {
  position: relative;
  background: transparent;
  transition: all 0.3s ease-out;
}
header .wrapper.active .mobile-nav-trigger span:nth-child(2):before {
  transform: rotateZ(135deg);
  transition: all 0.3s ease-out;
}
header .wrapper.active .mobile-nav-trigger span:nth-child(2):after {
  transform: rotateZ(225deg);
  transition: all 0.3s ease-out;
}
header .wrapper .menu {
  padding: 30px 0;
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 35px;
  height: 100px;
  transition: all 0.3s ease-out;
}
header .wrapper .menu .logo {
  z-index: 1;
  height: 149px;
  transition: all 0.3s ease-out;
}
header .wrapper .menu .logo svg {
  max-height: 100%;
}
header .wrapper .menu nav ul li {
  display: inline-block;
  margin-left: 10px;
}
header .wrapper .menu nav ul li.lang-item a {
  width: 55px;
  height: 55px;
  border-radius: 55px;
  background-color: #F9BB02;
  color: #130E09;
  text-transform: lowercase;
  transition: all 0.3s ease-out;
  display: flex;
  justify-content: center;
  align-items: center;
}
header .wrapper .menu nav ul li.lang-item:hover a {
  color: #F9BB02;
  background-color: #130E09;
}
header .wrapper .menu nav ul li.has_sub_menu {
  padding-bottom: 10px;
  padding-right: 12px;
}
header .wrapper .menu nav ul li.has_sub_menu > a {
  position: relative;
}
header .wrapper .menu nav ul li.has_sub_menu > a:after {
  content: "";
  position: absolute;
  background: url(../images/dropdown-arrow.svg) no-repeat center;
  background-size: contain;
  width: 12px;
  height: 6px;
  right: -18px;
  top: 6px;
  transition: all 0.3s ease-out;
}
header .wrapper .menu nav ul li.has_sub_menu ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  opacity: 0;
  pointer-events: none;
  margin-top: 60px;
  padding: 50px 0 20px;
  width: 100vw;
  position: absolute;
  left: 0;
  top: 0;
  transition: all 0.3s ease-out;
}
header .wrapper .menu nav ul li.has_sub_menu:hover > a:after {
  transform: rotate(180deg);
}
header .wrapper .menu nav ul li.has_sub_menu:hover ul {
  opacity: 1;
  pointer-events: all;
}
header.shrink {
  height: 115px;
  background-color: #130E09;
}
header.shrink .wrapper .menu {
  height: 70px;
}
header.shrink .wrapper .menu .logo {
  height: 40px;
}
header.shrink .wrapper .menu nav ul li.is-btn a span {
  color: #fff;
}
header.shrink .wrapper .menu nav ul li.is-btn a .dot:after {
  background-color: #fff;
}
header.shrink .wrapper .menu nav ul li.lang-item:hover a {
  background-color: #fff;
  color: #000;
}
header.shrink .wrapper.menu-wrapper .logo svg .white {
  fill: #fff;
}
header.shrink .wrapper .mobile-nav-trigger span {
  background-color: #fff;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}

#mobile-nav {
  position: fixed;
  z-index: 1000;
  top: 0px;
  right: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  padding: 0px 0;
  display: flex;
  justify-content: end;
  align-items: start;
  pointer-events: none;
  transition: all 0.3s ease-out;
  transform: translateX(100%);
  -webkit-box-shadow: 0 15px 10px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 15px 10px 10px rgba(0, 0, 0, 0.2);
  opacity: 0;
}
#mobile-nav .wrapper {
  position: relative;
  padding: 120px 80px 50px;
  width: calc(100% - 40px);
  max-width: 680px;
  height: 100%;
  margin: 0;
  background: #F9BB02;
  overflow-y: auto;
  overflow-x: hidden;
}
#mobile-nav .wrapper:after {
  content: "";
  position: absolute;
  background: url(../images/B-menu.svg) no-repeat center;
  background-size: contain;
  right: -25%;
  bottom: 0;
  width: 75%;
  height: 75%;
  pointer-events: none;
}
#mobile-nav nav {
  border-bottom: 1px solid #F9BB02;
  margin-bottom: 20px;
}
#mobile-nav nav.menu-bottom ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  flex-direction: row;
  justify-content: space-between;
}
#mobile-nav nav.menu-bottom ul li a {
  font: 600 1.25rem/100% "Just Sans", sans-serif;
}
#mobile-nav ul {
  width: 100%;
  text-align: left;
}
#mobile-nav ul li {
  margin-bottom: 20px;
}
#mobile-nav ul li a {
  width: 100%;
  display: inline-block;
  position: relative;
  color: #130E09;
  font: 600 2.8125rem/100% "Just Sans", sans-serif;
  padding: 5px 0px;
  transition: all 0.3s ease-out;
  text-transform: lowercase;
}
#mobile-nav ul li a:hover {
  color: black;
}
#mobile-nav ul li.menu-item-has-children {
  transition: all 0.3s ease-out;
  cursor: pointer;
}
#mobile-nav ul li.menu-item-has-children > a:after {
  content: "";
  position: absolute;
  background: url(../images/dropdown-arrow.svg) no-repeat center;
  background-size: contain;
  width: 25px;
  height: 13px;
  right: 0;
  top: 22px;
  transform: rotateZ(0deg);
  transition: all 0.3s ease-out;
}
#mobile-nav ul li.menu-item-has-children.open a:after {
  transform: rotateZ(180deg);
}
#mobile-nav ul li.menu-item-has-children ul {
  display: none;
  width: 100%;
  padding-top: 20px;
}
#mobile-nav ul li.menu-item-has-children ul .service-block {
  padding: 10px 45px;
  z-index: 1;
}
#mobile-nav ul li.menu-item-has-children ul .service-block .icon-container {
  width: 65px;
  height: 80px;
}
#mobile-nav ul li.menu-item-has-children ul .service-block .meta {
  width: 100%;
}
#mobile-nav ul li.menu-item-has-children ul .service-block .meta h4 {
  text-transform: none;
  display: block;
  width: 100%;
  font: normal 1.25rem/100% "Just Sans", sans-serif;
}
#mobile-nav.active {
  transform: translateX(0);
  pointer-events: all;
  opacity: 1;
}

footer {
  position: fixed;
  z-index: 1;
  bottom: 0;
  padding: 300px 0 30px;
  background: #130E09;
  width: 100%;
  height: 90vh;
}
footer small {
  display: none;
}
footer h3 {
  margin-bottom: 50px;
}
footer h2, footer h3, footer h4, footer a, footer strong, footer p {
  color: #fff !important;
}
footer #nav-footer ul li {
  margin-bottom: 25px;
}
footer #nav-footer ul li a {
  text-transform: lowercase;
  font: normal 2.125rem/100% "Just Sans", sans-serif;
  position: relative;
}
footer #nav-footer ul li a:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 0;
  height: 2px;
  background: #F9BB02;
  transition: all 0.3s ease-out;
}
footer #nav-footer ul li a:hover:before {
  width: 75px;
}
footer .footer-decoration {
  position: absolute;
  bottom: -10%;
  left: 35%;
  width: 25%;
}
footer .devweb-footer {
  gap: 15px;
}
footer #copyright {
  text-align: center;
}
footer #copyright p, footer #copyright a {
  font: 400 0.875rem/1.2em "Just Sans", sans-serif;
  color: #FFF4CE !important;
}
footer #copyright .wrapper {
  gap: 5px;
}
footer #copyright #rubik-api-copyright a {
  line-height: 33px;
  color: #FFF4CE !important;
}
footer #copyright #rubik-api-copyright.natural span {
  color: #FFF4CE !important;
}
footer .social-container a {
  margin-right: 10px;
}
footer .social-container a svg > path {
  transition: all 0.3s ease-out;
}
footer .social-container a svg path {
  transition: all 0.3s ease-out;
}
footer .social-container a:hover svg path {
  fill: #fff;
}
footer .social-container a:hover svg #iconFb, footer .social-container a:hover svg #iconInsta path, footer .social-container a:hover svg #iconLinkedIn {
  fill: #000;
}

/*
 * Modify gravity form, chosen and mailpoet styles here
 *
 * Change and modify according to designs
 */
form[data-active-form=true] .gform_footer .gform_button:after {
  opacity: 1;
}
form .gform_body .gform_fields fieldset {
  outline: none;
  border: 0;
  border-radius: 0;
}
form .gform_body .gform_fields .gfield {
  position: relative;
}
form .gform_body .gform_fields .gfield:last-child {
  margin-bottom: 0;
}
form .gform_body .gform_fields .gfield:last-child .ginput_container {
  margin-bottom: 0;
}
form .gform_body .gform_fields .gfield:last-child .ginput_container input, form .gform_body .gform_fields .gfield:last-child .ginput_container textarea {
  margin-bottom: 0;
}
form .gform_body .gform_fields .gfield.gfield--width-third {
  padding: 0;
}
form .gform_body .gform_fields .gfield.gfield--width-half {
  padding: 0;
}
form .gform_body .gform_fields .gfield.gfield--width-full {
  padding: 0;
}
form .gform_body .gform_fields .gfield .gfield_label {
  display: block;
  text-align: left;
  font: 500 1.125rem/1.2em "Just Sans", sans-serif;
  margin-bottom: 10px;
}
form .gform_body .gform_fields .gfield .gfield_label.gfield_label_before_complex {
  margin-bottom: 20px;
}
form .gform_body .gform_fields .gfield .gfield_label .gfield_required {
  display: none;
}
form .gform_body .gform_fields .gfield.hidden_label label, form .gform_body .gform_fields .gfield.hidden_label .gfield_label {
  display: none;
}
form .gform_body .gform_fields .gfield .gfield_description {
  text-align: left;
  font: 400 14px/18px sans-serif;
  margin: 5px 0;
}
form .gform_body .gform_fields .gfield.gform_validation_container {
  display: none;
  content: none;
  padding: 0 0;
  margin: 0 0;
}
form .gform_body .gform_fields .gfield.gfield_error .gfield_description {
  color: red;
  background-color: transparent;
  border: none;
  padding: 5px 0;
}
form .gform_body .gform_fields .gfield .ginput_container {
  position: relative;
}
form .gform_body .gform_fields .gfield .ginput_container input[type=text], form .gform_body .gform_fields .gfield .ginput_container input[type=email], form .gform_body .gform_fields .gfield .ginput_container input[type=tel], form .gform_body .gform_fields .gfield .ginput_container input[type=number] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  max-height: 50px;
  padding: 15px 25px;
  border: 1px solid #130E09;
  border-radius: 50px;
  box-shadow: none;
  background: white;
  color: #130E09;
  font: 300 1.25rem/1.2em "Just Sans", sans-serif;
  transition: all 0.3s ease-out;
}
form .gform_body .gform_fields .gfield .ginput_container input[type=text]:focus, form .gform_body .gform_fields .gfield .ginput_container input[type=email]:focus, form .gform_body .gform_fields .gfield .ginput_container input[type=tel]:focus, form .gform_body .gform_fields .gfield .ginput_container input[type=number]:focus {
  border-color: #F9BB02;
}
form .gform_body .gform_fields .gfield .ginput_container input[type=text]::placeholder, form .gform_body .gform_fields .gfield .ginput_container input[type=email]::placeholder, form .gform_body .gform_fields .gfield .ginput_container input[type=tel]::placeholder, form .gform_body .gform_fields .gfield .ginput_container input[type=number]::placeholder {
  color: #130E09;
  opacity: 1 !important;
}
form .gform_body .gform_fields .gfield .ginput_container textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  max-height: 150px;
  padding: 15px 25px;
  border: 1px solid #130E09;
  border-radius: 25px;
  box-shadow: none;
  background: white;
  color: #130E09;
  font: 300 1.25rem/1.2em "Just Sans", sans-serif;
  transition: all 0.3s ease-out;
  resize: none;
}
form .gform_body .gform_fields .gfield .ginput_container textarea:focus {
  border-color: #F9BB02;
}
form .gform_body .gform_fields .gfield .ginput_container textarea::placeholder {
  color: #130E09;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_address_state {
  position: relative;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_address_state .chosen-container-single {
  position: relative;
  width: 100% !important;
  max-width: 100% !important;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address span {
  margin-bottom: 15px;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address span:last-child {
  margin-bottom: 0;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address span label {
  display: block;
  text-align: left;
  font: 400 14px/18px sans-serif;
  margin: 5px;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_select {
  /*
   * To add "custom" arrow to HTML select in gForm - comment out if Chosen or enhanced UI active - can comment back in mobile since chosen does not work
   */
  /*
  &:after{
  	content: '';
  	display: block;
  	position: absolute;
  	@include v-align(absolute);
  	right: 15px;
  	height: 25px;
  	width: 25px;
  	background: {
  		image: url('../images/forms/angle-down.svg');
  		size: contain;
  		position: center;
  		repeat: no-repeat;
  	}
  }
   */
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_select .chosen-container-single {
  width: 100% !important;
  max-width: 100% !important;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_checkbox .gfield_checkbox .gchoice {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_checkbox .gfield_checkbox .gchoice:last-child {
  margin-bottom: 0;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_checkbox .gfield_checkbox .gchoice input[type=checkbox] {
  display: none;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_checkbox .gfield_checkbox .gchoice input[type=checkbox]:checked + label:after {
  opacity: 1;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_checkbox .gfield_checkbox .gchoice label {
  position: relative;
  display: block;
  font: 400 16px/18px sans-serif;
  padding-left: 40px;
  cursor: pointer;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_checkbox .gfield_checkbox .gchoice label:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  height: 20px;
  width: 20px;
  border: 2px solid black;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_checkbox .gfield_checkbox .gchoice label:after {
  content: "";
  display: block;
  position: absolute;
  top: 6px;
  left: 15px;
  transform: translate(-50%, -50%);
  opacity: 0;
  height: 25px;
  width: 25px;
  background-image: url("../image/forms/check.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_radio .gfield_radio .gchoice {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_radio .gfield_radio .gchoice:last-child {
  margin-bottom: 0;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_radio .gfield_radio .gchoice input[type=radio] {
  display: none;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_radio .gfield_radio .gchoice input[type=radio]:checked + label:after {
  opacity: 1;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_radio .gfield_radio .gchoice label {
  position: relative;
  display: block;
  font: 400 16px/18px sans-serif;
  padding-left: 40px;
  cursor: pointer;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_radio .gfield_radio .gchoice label:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  height: 30px;
  width: 30px;
  border: 2px solid black;
  border-radius: 50%;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_radio .gfield_radio .gchoice label:after {
  content: "";
  display: block;
  position: absolute;
  top: 8px;
  left: 15px;
  transform: translate(-50%, -50%);
  opacity: 0;
  height: 25px;
  width: 25px;
  background-image: url("../image/forms/times.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_consent {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_consent input[type=checkbox] {
  display: none;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_consent input[type=checkbox]:checked + label:after {
  opacity: 1;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_consent label {
  position: relative;
  display: block;
  font: 400 16px/18px sans-serif;
  padding-left: 40px;
  cursor: pointer;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_consent label:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  height: 30px;
  width: 30px;
  border: 2px solid black;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_consent label:after {
  content: "";
  display: block;
  position: absolute;
  top: 8px;
  left: 15px;
  transform: translate(-50%, -50%);
  opacity: 0;
  height: 25px;
  width: 25px;
  background-image: url("../image/forms/check.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_fileupload span.gform_fileupload_rules {
  display: none;
  text-align: left;
  font: 400 14px/18px sans-serif;
  margin: 5px;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_fileupload input[type=file] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  max-height: 50px;
  padding: 15px;
  border: 1px solid #fff;
  border-radius: 30px;
  box-shadow: none;
  background: #fff;
  color: black;
  font: 400 14px/1.2em "Just Sans", sans-serif;
  cursor: pointer;
}
form .gform_body .gform_fields .gfield .ginput_container .gform_fileupload_multifile .gform_drop_area {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 50px;
  max-height: 50px;
  padding: 10px 15px;
  border: none;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  color: black;
  font: 400 14px/1.2em "Just Sans", sans-serif;
  cursor: pointer;
}
form .gform_body .gform_fields .gfield .ginput_container .gform_fileupload_multifile .gform_drop_area span.gform_drop_instructions {
  display: block;
  text-align: left;
  font: 400 14px/14px sans-serif;
  margin-right: 10px;
}
form .gform_body .gform_fields .gfield .ginput_preview {
  display: flex;
  align-items: center;
}
form .gform_body .gform_fields .gfield .ginput_preview button {
  outline: none;
  background: transparent;
  border: 0;
  box-shadow: none;
  height: 30px;
  width: 30px;
  cursor: pointer;
}
form .gform_body .gform_fields .gfield .ginput_preview button .dashicons:before {
  content: "\f335";
}
form .gform_body .gform_fields .gfield .ginput_preview strong {
  display: block;
  text-align: left;
  font: 400 12px/12px sans-serif;
  margin-right: 10px;
}
form .gform_footer {
  position: relative;
  margin-top: 35px;
  justify-content: center;
  width: fit-content;
}
form .gform_footer .gform-loader {
  display: none !important;
  vertical-align: middle;
  width: 30px;
  height: 30px;
  margin: 10px 10px 10px 30px;
}
form .gform_footer .gform_button {
  position: relative;
  overflow: hidden;
  max-height: 50px;
}
form .gform_footer .gform_button:after {
  content: "";
  color: #fff;
  position: absolute;
  background: #F9BB02 url(../images/animAbeille.gif) no-repeat center;
  background-size: contain;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  opacity: 0;
}
form small {
  font-family: "Just Sans", sans-serif;
}

.gform_wrapper.gravity-theme .gform_fields {
  transform: translateX(15px);
}
.gform_wrapper .gform_validation_errors {
  display: block;
  text-align: center;
  margin: 0px auto 30px !important;
  border-radius: 30px !important;
  background: transparent !important;
  border-color: red !important;
}
.gform_wrapper .gform_validation_errors .gform-icon {
  color: red;
}
.gform_wrapper .gform_validation_errors h2, .gform_wrapper .gform_validation_errors .gform_submission_error {
  font: normal 18px/20px sans-serif;
  color: red !important;
}

.gform_confirmation_wrapper {
  display: block;
  text-align: center;
  margin: 0px auto 30px !important;
}
.gform_confirmation_wrapper .gform_confirmation_message {
  display: block;
  text-align: left;
  font: 300 1.25rem/160% "Just Sans", sans-serif;
}

/*
 * Select + Chosen (will apply to gravity forms dropdown automatically)
 */
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  box-shadow: none;
  outline: none;
  width: 100%;
  height: 100%;
  max-height: 55px;
  border: 1px solid #130E09;
  border-radius: 50px;
  padding: 15px 25px !important;
  font: 300 1.25rem/1.2em "Just Sans", sans-serif !important;
  color: #130E09;
  background: white url(../images/collapse-arrow.svg) no-repeat 97% center;
  cursor: pointer;
  transition: all 0.3s ease-out;
}
select:focus {
  border-color: #F9BB02;
}
select::placeholder {
  color: #130E09 !important;
  opacity: 1 !important;
}

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

.gform_wrapper.gravity-theme .gfield_error [aria-invalid=true] {
  border-color: red !important;
}
.gform_wrapper.gravity-theme .gfield_error label {
  color: #130E09 !important;
}

.gform-ajax-spinner {
  display: none !important;
}

.gform-loader, .gform_ajax_spinner {
  position: absolute !important;
  left: 102% !important;
  top: 50% !important;
  translate: 0 -50%;
  max-width: 30px !important;
  max-height: 30px !important;
  border-left-color: #130E09 !important;
  border-right-color: #130E09 !important;
  border-top-color: transparent !important;
  border-bottom-color: transparent !important;
}

@media screen and (max-width: 1375px) {
  #home-banner h1 {
    font-size: 5.625rem;
  }
  #project-cases .cases .case .col-content {
    padding-right: 50px;
  }
  #project-cases .cases .case .col-image {
    padding-left: 50px;
  }
}
@media screen and (max-width: 1355px) {
  .slice #content-cards.wrapper .content-card-row .col-content-card {
    transform: none;
  }
}
@media screen and (max-width: 1200px) {
  .google-maps-module {
    position: relative;
  }
  .google-maps-module:before {
    content: "";
    display: block;
    padding-top: 75%;
  }
  #home-banner h1 {
    font-size: 4.6875rem;
  }
  .slice.rounded-top {
    margin-top: 40px;
  }
  .slice .scrolling-text-container h3 {
    font-size: 6.25rem;
  }
  .slice#home-team {
    padding-top: 50px;
    padding-bottom: 0;
    flex-wrap: wrap;
    row-gap: 40px;
  }
  .slice#home-team .bg-img {
    position: relative;
    width: 100%;
    transform: none;
  }
  .slice#home-team .bg-img .video-container {
    clip-path: none !important;
  }
  .medium-title {
    font-size: 3.125rem;
  }
  .service-block .meta h3 {
    font-size: 1.5625rem;
  }
  .service-swiper .swiper-wrapper .swiper-slide {
    flex-direction: column;
  }
  .service-swiper .swiper-wrapper .swiper-slide .col-image {
    min-width: 1px;
    width: 100%;
    min-height: 1px;
  }
  .service-swiper .swiper-wrapper .swiper-slide .col-content {
    width: 100%;
    min-height: 1px;
  }
  .service-swiper .swiper-wrapper .swiper-slide .col-content h3 {
    margin-bottom: 20px;
  }
  .grey-card {
    gap: 50px;
  }
  .numbers .number span {
    font-size: 4.6875rem;
  }
  .slider-card .col-content h2 {
    font-size: 3.125rem;
  }
  .contact-card .col-content ul li {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 991px) {
  h1 {
    font-size: 3.125rem;
  }
  h3 {
    font-size: 1.75rem;
  }
  .col-reversed {
    flex-direction: column-reverse;
  }
  .banner {
    padding: 200px 0;
  }
  .banner:after {
    max-width: 400px;
    bottom: -5%;
  }
  #home-banner .col-img .img-container.small-img {
    right: unset;
    left: 10%;
  }
  #home-banner .img-wrapper .video-btn {
    width: 55%;
  }
  .service-block {
    padding: 25px 68px;
  }
  .service-block .meta h3 {
    font-size: 1.25rem;
  }
  footer {
    padding: 100px 0;
  }
  footer .row, footer form .gform_body .gform_fields, form .gform_body footer .gform_fields, footer form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address, form .gform_body .gform_fields .gfield footer .ginput_container.ginput_container_address {
    flex-direction: column-reverse;
  }
  footer .footer-decoration {
    width: 70%;
    bottom: -16%;
  }
  #services-about .col-images .img-container:nth-of-type(1) {
    left: 8%;
    top: 20%;
    width: 25%;
  }
  #services-about .col-images .img-container:nth-of-type(2) {
    right: 5%;
    top: 23%;
    width: 30%;
  }
  #services-about .col-images .img-container:nth-of-type(3) {
    left: 50%;
    transform: translateX(-53%);
    top: 33%;
    width: 50%;
  }
  .big-title {
    font-size: 5.625rem;
  }
  .collapse .collapse-trigger {
    padding: 15px 150px 15px 40px;
  }
  .collapse .collapse-trigger .arrow {
    right: 50px;
  }
  .grey-card {
    flex-direction: column;
  }
  #project-solutions.slice.padding-medium {
    padding-bottom: 100px;
  }
  #project-cases .case-trigger {
    font-size: 1.125rem;
    margin-bottom: 10px;
  }
  #project-cases .cases .case {
    flex-direction: column;
  }
  #project-cases .cases .case .col-content, #project-cases .cases .case .col-image {
    width: 100%;
    padding: 0;
  }
  .numbers {
    gap: 75px;
    flex-wrap: wrap;
    padding: 100px 40px;
  }
  .row-nav {
    flex-direction: column;
    padding: 50px 0;
  }
  #project-banner .row .col-image img, #project-banner form .gform_body .gform_fields .col-image img, form .gform_body #project-banner .gform_fields .col-image img, form .gform_body .gform_fields .gfield #project-banner .ginput_container.ginput_container_address .col-image img, #about-banner .row .col-image img, #about-banner form .gform_body .gform_fields .col-image img, form .gform_body #about-banner .gform_fields .col-image img, form .gform_body .gform_fields .gfield #about-banner .ginput_container.ginput_container_address .col-image img {
    mask-size: contain;
  }
  .col-employee:nth-child(3n+2) {
    margin-top: 0;
  }
  .col-employee:nth-child(odd) {
    margin-top: -150px;
  }
  .yellow-card {
    flex-direction: column;
    clip-path: polygon(94% 0, 100% 10%, 100% 100%, 0 100%, 0 0);
    gap: 0;
  }
  .yellow-card .col-image {
    width: 100%;
  }
  .yellow-card .col-image .img-container {
    -webkit-mask-image: none;
    mask-image: none;
  }
  .yellow-card .col-content {
    width: 100%;
    padding: 50px;
  }
  .employee-card .inner:hover .img-container img {
    transform: scale(1);
  }
  .employee-popup .wrapper {
    clip-path: polygon(90% 0, 100% 10%, 100% 100%, 0 100%, 0 0);
  }
  .employee-popup .wrapper .row, .employee-popup .wrapper form .gform_body .gform_fields, form .gform_body .employee-popup .wrapper .gform_fields, .employee-popup .wrapper form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address, form .gform_body .gform_fields .gfield .employee-popup .wrapper .ginput_container.ginput_container_address {
    flex-direction: column;
  }
  .employee-popup .wrapper .row .col-image, .employee-popup .wrapper form .gform_body .gform_fields .col-image, form .gform_body .employee-popup .wrapper .gform_fields .col-image, form .gform_body .gform_fields .gfield .employee-popup .wrapper .ginput_container.ginput_container_address .col-image {
    display: none;
  }
  .employee-popup .wrapper .row .col-content, .employee-popup .wrapper form .gform_body .gform_fields .col-content, form .gform_body .employee-popup .wrapper .gform_fields .col-content, form .gform_body .gform_fields .gfield .employee-popup .wrapper .ginput_container.ginput_container_address .col-content {
    width: 100%;
    padding: 0 20px;
  }
  #posts-page .col-post:nth-child(2n+1) {
    transform: translateY(0);
  }
  #about-banner .row .col-content, #about-banner form .gform_body .gform_fields .col-content, form .gform_body #about-banner .gform_fields .col-content, form .gform_body .gform_fields .gfield #about-banner .ginput_container.ginput_container_address .col-content {
    padding: 100px 0 25px;
  }
  #about-banner .row .col-image .img-container, #about-banner form .gform_body .gform_fields .col-image .img-container, form .gform_body #about-banner .gform_fields .col-image .img-container, form .gform_body .gform_fields .gfield #about-banner .ginput_container.ginput_container_address .col-image .img-container {
    position: relative;
  }
  #about-banner .row .col-image .img-container:before, #about-banner form .gform_body .gform_fields .col-image .img-container:before, form .gform_body #about-banner .gform_fields .col-image .img-container:before, form .gform_body .gform_fields .gfield #about-banner .ginput_container.ginput_container_address .col-image .img-container:before {
    content: "";
    display: block;
    padding-top: 57%;
  }
  .slider-card {
    flex-wrap: wrap;
    clip-path: polygon(90% 0, 100% 10%, 100% 100%, 0 100%, 0 0);
  }
  .slider-card .col-image {
    width: 100%;
    position: relative;
    padding-top: 55%;
    left: 0;
    border-radius: 30px 0 0 0;
  }
  .slider-card .col-content {
    width: 100%;
    padding: 50px;
  }
  .slider-card .col-content h2 {
    margin-bottom: 50px;
  }
  #about-team h2 {
    font-size: 4.375rem;
    margin-bottom: 75%;
  }
  #about-team .col-images {
    padding-top: 20%;
    max-width: 85%;
    transform: translateX(25%);
  }
  .value-card {
    max-width: 590px;
    margin-inline: auto;
  }
  #contact-banner {
    padding: 150px 0 100px;
  }
  #contact-banner h1 {
    margin-bottom: 50px;
  }
  #contact-form .img-container {
    display: none;
  }
  #privacy-banner h1, #not-found-banner h1 {
    font-size: 4.375rem;
  }
  .contact-card {
    flex-wrap: wrap;
    clip-path: polygon(90% 0, 100% 10%, 100% 100%, 0 100%, 0 0);
  }
  .contact-card .col-content {
    width: 100%;
    padding: 50px;
  }
  .contact-card .col-content h2 {
    font-size: 1.375rem;
  }
  .contact-card .col-content .small-title {
    font-size: 1.125rem;
  }
  .contact-card .col-image {
    width: 100%;
    height: fit-content;
    position: relative;
    left: 0;
    border-radius: 30px 0 0 0;
  }
  .contact-card .col-image .img-container {
    position: relative;
  }
  .contact-card .col-image .img-container:before {
    content: "";
    display: block;
    padding-top: 100%;
  }
  #service-about .symbol {
    top: 85%;
  }
  #post-content .sticky-box {
    position: relative;
    top: 0;
    right: 0;
  }
  #post-banner .pattern:nth-child(2) {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .col-employee:nth-child(odd) {
    margin-top: 0;
  }
}
@media screen and (max-width: 680px) {
  .cursor {
    display: none !important;
    cursor: auto !important;
  }
  h1 {
    font-size: 2.1875rem;
  }
  h2 {
    font-size: 1.875rem;
  }
  h2.h1 {
    font-size: 2.1875rem;
  }
  h2 + .the-content {
    margin-top: 30px;
  }
  h3 {
    font-size: 1.5625rem;
  }
  h3.light {
    font-size: 1.25rem;
  }
  h4 {
    font-size: 1.25rem;
  }
  .link span {
    font-size: 1rem;
  }
  #main {
    margin-bottom: 0;
  }
  #main section:last-child {
    padding-bottom: 50px;
  }
  #main section:last-child:after {
    background-size: contain;
  }
  #main section:last-child.yellow-bg:after {
    background-size: 150% auto;
    top: 99%;
  }
  .the-content ul li {
    margin-left: 0;
    font-size: 1.125rem;
  }
  .the-content p {
    font-size: 1.125rem;
  }
  .the-content.big-text p {
    font-size: 1.5625rem;
  }
  .mb-large {
    margin-bottom: 30px;
  }
  .mb-x-large {
    margin-bottom: 30px;
  }
  .padding-medium {
    padding: 50px 0;
  }
  .padding-medium.no-p-top {
    padding-top: 0;
  }
  .padding-medium.no-p-bottom {
    padding-bottom: 0;
  }
  .padding-large {
    padding: 50px 0;
  }
  .padding-large.no-p-top {
    padding-top: 0;
  }
  .padding-large.no-p-bottom {
    padding-bottom: 0;
  }
  .row, form .gform_body .gform_fields, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address {
    row-gap: 25px;
  }
  .slice {
    padding: 50px 0;
  }
  .slice.banner {
    padding: 150px 0 50px !important;
  }
  .slice.services-banner {
    padding: 220px 0 50px;
  }
  .slice.padding-medium {
    padding: 50px 0;
  }
  .slice.padding-large {
    padding: 50px 0;
  }
  .slice.padding-x-large {
    padding: 50px 0;
  }
  .slice .scrolling-text-container .scrolling-text-top {
    -webkit-text-stroke-width: 1px;
  }
  .slice .scrolling-text-container h3 {
    font-size: 2.5rem;
  }
  .slice .tab-container {
    flex-wrap: wrap;
    margin-bottom: 20px;
    margin-top: 30px;
  }
  .slice #home-case-studies {
    margin: 100px auto;
  }
  .slice#home-team h2 {
    margin-bottom: 30px;
  }
  .slice#home-partners .swiper-partner {
    width: calc(100% - 50px);
  }
  .slice#home-services #longLine {
    display: none;
  }
  .slice#home-services.slice #b-animated {
    bottom: 100%;
    left: 60%;
    width: 50%;
  }
  .wrapper {
    width: calc(100% - 40px);
  }
  footer {
    padding: 165px 0 0;
    position: relative;
    height: fit-content;
  }
  footer > .wrapper {
    margin-bottom: 40px;
  }
  footer .row, footer form .gform_body .gform_fields, form .gform_body footer .gform_fields, footer form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address, form .gform_body .gform_fields .gfield footer .ginput_container.ginput_container_address {
    row-gap: 20px;
  }
  footer .col-12:nth-child(2) nav li a:hover, footer form .gform_body .gform_fields .gfield.gfield--width-third:nth-child(2) nav li a:hover, form .gform_body .gform_fields footer .gfield.gfield--width-third:nth-child(2) nav li a:hover, footer form .gform_body .gform_fields .gfield.gfield--width-half:nth-child(2) nav li a:hover, form .gform_body .gform_fields footer .gfield.gfield--width-half:nth-child(2) nav li a:hover, footer form .gform_body .gform_fields .gfield.gfield--width-full:nth-child(2) nav li a:hover, form .gform_body .gform_fields footer .gfield.gfield--width-full:nth-child(2) nav li a:hover, footer form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_full:nth-child(2) nav li a:hover, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address footer .ginput_full:nth-child(2) nav li a:hover, footer form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_left:nth-child(2) nav li a:hover, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address footer .ginput_left:nth-child(2) nav li a:hover, footer form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_right:nth-child(2) nav li a:hover, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address footer .ginput_right:nth-child(2) nav li a:hover {
    padding-left: 0;
  }
  footer .col-12:nth-child(2) nav li a:hover:before, footer form .gform_body .gform_fields .gfield.gfield--width-third:nth-child(2) nav li a:hover:before, form .gform_body .gform_fields footer .gfield.gfield--width-third:nth-child(2) nav li a:hover:before, footer form .gform_body .gform_fields .gfield.gfield--width-half:nth-child(2) nav li a:hover:before, form .gform_body .gform_fields footer .gfield.gfield--width-half:nth-child(2) nav li a:hover:before, footer form .gform_body .gform_fields .gfield.gfield--width-full:nth-child(2) nav li a:hover:before, form .gform_body .gform_fields footer .gfield.gfield--width-full:nth-child(2) nav li a:hover:before, footer form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_full:nth-child(2) nav li a:hover:before, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address footer .ginput_full:nth-child(2) nav li a:hover:before, footer form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_left:nth-child(2) nav li a:hover:before, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address footer .ginput_left:nth-child(2) nav li a:hover:before, footer form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_right:nth-child(2) nav li a:hover:before, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address footer .ginput_right:nth-child(2) nav li a:hover:before {
    opacity: 0;
  }
  footer .slice .wrapper {
    padding: 25px 0 50px;
  }
  footer .footer-decoration {
    width: 100%;
    left: 45%;
    bottom: 35%;
    transform: scaleX(-1);
    rotate: -90deg;
  }
  footer #copyright {
    padding: 20px 0;
  }
  footer #copyright .wrapper {
    flex-direction: column;
  }
  .privacy-policy .the-content .main-content {
    margin-bottom: 0;
  }
  .privacy-policy .the-content .main-content ul li {
    margin-left: 0;
  }
  .page-transition .transition-logo {
    width: 500px;
    height: 500px;
  }
  header .menu-wrapper a.logo svg {
    width: 120px;
  }
  header .wrapper .menu nav ul li.is-btn {
    display: none;
  }
  #home-banner {
    padding: 150px 0 0;
  }
  #home-banner .row, #home-banner form .gform_body .gform_fields, form .gform_body #home-banner .gform_fields, #home-banner form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address, form .gform_body .gform_fields .gfield #home-banner .ginput_container.ginput_container_address {
    row-gap: 75px;
  }
  #home-banner h1 {
    font-size: 2.8125rem;
  }
  #home-banner .col-img .img-container.small-img {
    width: 40%;
  }
  .medium-title {
    font-size: 2.5rem;
    margin-bottom: 30px;
  }
  .service-block {
    padding: 10px 40px;
  }
  .service-block .icon-container {
    width: 45px;
  }
  .service-block .icon-container svg {
    width: 45px;
  }
  .service-block:hover .meta h3 {
    padding-bottom: 0;
  }
  #mobile-nav ul li.menu-item-has-children ul .service-block {
    padding: 30px 25px;
  }
  #mobile-nav ul li.menu-item-has-children ul .service-block .meta h4 {
    font-size: 1rem;
  }
  #mobile-nav .wrapper {
    padding: 120px 40px 50px;
  }
  #mobile-nav ul li a {
    font-size: 1.875rem;
  }
  .service-card .inner .content-wrapper h3 {
    font-size: 1.875rem;
    margin-bottom: 20px;
    max-width: 100%;
  }
  .service-card .inner .content-wrapper .the-content {
    position: relative;
    opacity: 1;
  }
  .service-card .inner .content-wrapper .the-content h4 {
    color: #130E09;
  }
  .service-card .inner:hover {
    pointer-events: none;
    background-color: #fff;
  }
  .service-card .inner:hover .content-wrapper h3 {
    opacity: 1;
  }
  .service-card .inner:hover .link span {
    color: #130E09;
  }
  .service-card .inner:hover .link span:before {
    background-color: #F9BB02;
  }
  .service-card .inner:hover .link span:after {
    background-color: #130E09;
  }
  .service-card .inner:hover svg path, .service-card .inner:hover svg line {
    stroke: #130E09;
  }
  .service-card .inner svg {
    height: 130px;
  }
  #services-about .col-12:first-child, #services-about form .gform_body .gform_fields .gfield.gfield--width-third:first-child, form .gform_body .gform_fields #services-about .gfield.gfield--width-third:first-child, #services-about form .gform_body .gform_fields .gfield.gfield--width-half:first-child, form .gform_body .gform_fields #services-about .gfield.gfield--width-half:first-child, #services-about form .gform_body .gform_fields .gfield.gfield--width-full:first-child, form .gform_body .gform_fields #services-about .gfield.gfield--width-full:first-child, #services-about form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_full:first-child, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address #services-about .ginput_full:first-child, #services-about form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_left:first-child, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address #services-about .ginput_left:first-child, #services-about form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_right:first-child, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address #services-about .ginput_right:first-child {
    margin-bottom: 50px;
  }
  #services-about .col-images {
    min-height: 325px;
  }
  #services-cards {
    padding-bottom: 150px;
  }
  .infinite-scroll-container .infinite-scroll span {
    font-size: 1.5rem;
    padding: 15px 75px;
  }
  .service-swiper .swiper-wrapper .swiper-slide .col-image, .service-swiper .swiper-wrapper .swiper-slide .col-content {
    padding-inline: 0;
  }
  #service-steps {
    padding-bottom: 150px;
  }
  .border-bottom:before {
    left: 0;
  }
  .big-title {
    font-size: 2.5rem;
  }
  .collapse .collapse-trigger {
    padding: 15px 75px 15px 40px;
  }
  .collapse .collapse-trigger h3 {
    font-size: 1.5625rem;
  }
  .collapse .collapse-trigger h4 {
    font-size: 1rem;
  }
  .collapse .collapse-content {
    padding: 0 40px 40px;
  }
  #about-bottom .col-images .pattern:nth-of-type(1) {
    width: 25%;
    top: 25%;
  }
  select {
    padding-right: 50px !important;
    background-position: 93% center;
  }
  .project-card .inner {
    min-height: 1px;
    flex-direction: column;
    clip-path: polygon(90% 0, 100% 10%, 100% 100%, 0 100%, 0 0);
    gap: 0;
  }
  .project-card .inner .col-image {
    border-radius: 20px 0 0 0;
    position: relative;
    width: 100%;
  }
  .project-card .inner .col-image .img-container {
    position: relative;
  }
  .project-card .inner .col-image .img-container:before {
    content: "";
    display: block;
    padding-top: 70%;
  }
  .project-card .inner .col-content {
    width: 100%;
    min-height: 1px;
  }
  .project-card .inner .col-content h3 {
    margin-bottom: 20px;
  }
  .project-card:hover .inner {
    background-color: #fff;
    transform: rotate(0deg);
  }
  .project-card:hover .inner .col-image .img-container:after {
    opacity: 0;
  }
  .project-card:hover .inner .col-image .img-container img {
    transform: scale(1);
  }
  .project-card:hover .inner .col-content h3 {
    color: #130E09;
  }
  .project-card:hover .inner .col-content .link span {
    color: #130E09;
  }
  .project-card:hover .link:hover span:after {
    right: 0;
    transition: all 0.2s ease-in 0.1s;
    background-color: #130E09;
  }
  #project-list.slice.padding-medium {
    padding-bottom: 100px;
  }
  #projects-banner h1 {
    font-size: 3.125rem;
  }
  #projects-banner .gsap-scroll-section {
    margin-top: 50px;
  }
  #projects-banner .gsap-scroll-section span {
    font-size: 2.5rem;
    -webkit-text-stroke-width: 1px;
  }
  #project-banner .row, #project-banner form .gform_body .gform_fields, form .gform_body #project-banner .gform_fields, #project-banner form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address, form .gform_body .gform_fields .gfield #project-banner .ginput_container.ginput_container_address {
    max-width: calc(100% - 40px);
  }
  #project-banner .row .col-image .img-container, #project-banner form .gform_body .gform_fields .col-image .img-container, form .gform_body #project-banner .gform_fields .col-image .img-container, form .gform_body .gform_fields .gfield #project-banner .ginput_container.ginput_container_address .col-image .img-container {
    clip-path: none;
    border-radius: 12px;
    overflow: hidden;
  }
  #project-banner .row .col-content, #project-banner form .gform_body .gform_fields .col-content, form .gform_body #project-banner .gform_fields .col-content, form .gform_body .gform_fields .gfield #project-banner .ginput_container.ginput_container_address .col-content {
    padding-bottom: 50px;
  }
  .terms .term {
    font-size: 1rem;
  }
  .grey-card {
    padding: 45px 20px;
  }
  .grey-card .col-image svg {
    width: 100%;
    min-width: 200px;
    height: auto;
  }
  .slice .content-card h3 {
    font-size: 1rem;
  }
  .numbers {
    gap: 30px;
    padding: 50px 40px;
  }
  .numbers .pattern {
    display: none;
  }
  .number {
    text-align: center;
  }
  #project-solutions.slice.padding-medium {
    padding-bottom: 50px;
  }
  .solutions-swiper .swiper-wrapper .swiper-slide .content-card {
    max-width: 300px;
    margin-inline: auto;
  }
  .solutions-swiper .swiper-wrapper .swiper-slide:hover {
    scale: 1;
  }
  .solutions-swiper .swiper-wrapper .swiper-slide:nth-child(n) .content-card, .solutions-swiper .swiper-wrapper .swiper-slide:nth-child(4n) .content-card {
    transform: rotate(1deg);
  }
  #project-cases {
    padding-top: 50px;
  }
  .testimonial-swiper h3 {
    font-size: 1.25rem;
  }
  #posts-page {
    padding-top: 150px;
  }
  #posts-page .row, #posts-page form .gform_body .gform_fields, form .gform_body #posts-page .gform_fields, #posts-page form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address, form .gform_body .gform_fields .gfield #posts-page .ginput_container.ginput_container_address {
    flex-direction: column;
  }
  #posts-page .row .col-12, #posts-page form .gform_body .gform_fields .col-12, form .gform_body #posts-page .gform_fields .col-12, form .gform_body .gform_fields .gfield #posts-page .ginput_container.ginput_container_address .col-12, form .gform_body .gform_fields #posts-page .row .gfield.gfield--width-third, #posts-page form .gform_body .gform_fields .gfield.gfield--width-third, form .gform_body #posts-page .gform_fields .gfield.gfield--width-third, form .gform_body .gform_fields .gfield #posts-page .ginput_container.ginput_container_address .gfield.gfield--width-third, form .gform_body .gform_fields #posts-page .row .gfield.gfield--width-half, #posts-page form .gform_body .gform_fields .gfield.gfield--width-half, form .gform_body #posts-page .gform_fields .gfield.gfield--width-half, form .gform_body .gform_fields .gfield #posts-page .ginput_container.ginput_container_address .gfield.gfield--width-half, form .gform_body .gform_fields #posts-page .row .gfield.gfield--width-full, #posts-page form .gform_body .gform_fields .gfield.gfield--width-full, form .gform_body #posts-page .gform_fields .gfield.gfield--width-full, form .gform_body .gform_fields .gfield #posts-page .ginput_container.ginput_container_address .gfield.gfield--width-full, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address #posts-page .row .ginput_full, #posts-page form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_full, form .gform_body #posts-page .gform_fields .gfield .ginput_container.ginput_container_address .ginput_full, form .gform_body .gform_fields .gfield #posts-page .ginput_container.ginput_container_address .ginput_full, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address #posts-page .row .ginput_left, #posts-page form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_left, form .gform_body #posts-page .gform_fields .gfield .ginput_container.ginput_container_address .ginput_left, form .gform_body .gform_fields .gfield #posts-page .ginput_container.ginput_container_address .ginput_left, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address #posts-page .row .ginput_right, #posts-page form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_right, form .gform_body #posts-page .gform_fields .gfield .ginput_container.ginput_container_address .ginput_right, form .gform_body .gform_fields .gfield #posts-page .ginput_container.ginput_container_address .ginput_right {
    max-width: 100% !important;
    width: 100%;
  }
  #posts-page .row .col-12.sticky-box, #posts-page form .gform_body .gform_fields .col-12.sticky-box, form .gform_body #posts-page .gform_fields .col-12.sticky-box, form .gform_body .gform_fields .gfield #posts-page .ginput_container.ginput_container_address .col-12.sticky-box, form .gform_body .gform_fields #posts-page .row .sticky-box.gfield.gfield--width-third, #posts-page form .gform_body .gform_fields .sticky-box.gfield.gfield--width-third, form .gform_body #posts-page .gform_fields .sticky-box.gfield.gfield--width-third, form .gform_body .gform_fields .gfield #posts-page .ginput_container.ginput_container_address .sticky-box.gfield.gfield--width-third, form .gform_body .gform_fields #posts-page .row .sticky-box.gfield.gfield--width-half, #posts-page form .gform_body .gform_fields .sticky-box.gfield.gfield--width-half, form .gform_body #posts-page .gform_fields .sticky-box.gfield.gfield--width-half, form .gform_body .gform_fields .gfield #posts-page .ginput_container.ginput_container_address .sticky-box.gfield.gfield--width-half, form .gform_body .gform_fields #posts-page .row .sticky-box.gfield.gfield--width-full, #posts-page form .gform_body .gform_fields .sticky-box.gfield.gfield--width-full, form .gform_body #posts-page .gform_fields .sticky-box.gfield.gfield--width-full, form .gform_body .gform_fields .gfield #posts-page .ginput_container.ginput_container_address .sticky-box.gfield.gfield--width-full, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address #posts-page .row .sticky-box.ginput_full, #posts-page form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .sticky-box.ginput_full, form .gform_body #posts-page .gform_fields .gfield .ginput_container.ginput_container_address .sticky-box.ginput_full, form .gform_body .gform_fields .gfield #posts-page .ginput_container.ginput_container_address .sticky-box.ginput_full, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address #posts-page .row .sticky-box.ginput_left, #posts-page form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .sticky-box.ginput_left, form .gform_body #posts-page .gform_fields .gfield .ginput_container.ginput_container_address .sticky-box.ginput_left, form .gform_body .gform_fields .gfield #posts-page .ginput_container.ginput_container_address .sticky-box.ginput_left, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address #posts-page .row .sticky-box.ginput_right, #posts-page form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .sticky-box.ginput_right, form .gform_body #posts-page .gform_fields .gfield .ginput_container.ginput_container_address .sticky-box.ginput_right, form .gform_body .gform_fields .gfield #posts-page .ginput_container.ginput_container_address .sticky-box.ginput_right {
    position: relative;
    top: 0;
    right: 0;
  }
  #posts-page .order span {
    margin-right: 25px;
  }
  .post-card:hover .inner {
    transform: rotate(0);
  }
  .post-card:hover .inner .img-container img {
    transform: scale(1);
  }
  .post-card:hover .inner .img-container:after {
    opacity: 0;
  }
  .intro-card {
    padding: 20px;
    clip-path: polygon(93% 0, 100% 10%, 100% 100%, 0 100%, 0 0);
  }
  #about-slider {
    padding-bottom: 100px;
  }
  #about-team h2 {
    font-size: 2.5rem;
  }
  #about-team .col-images .img-container:nth-child(1), #about-team .col-images .img-container:nth-child(3), #about-team .col-images .img-container:nth-child(4) {
    transform: translateY(-190%);
  }
  #about-team .col-images .img-container:nth-child(2) {
    transform: translateY(-120%);
  }
  .value-card .inner {
    padding: 25px 30px;
  }
  .value-card .inner .hover-state {
    display: flex;
    align-items: center;
    padding: 25px 30px;
  }
  .value-card .inner .hover-state .the-content {
    margin-bottom: 0;
  }
  .value-card .inner .hover-state h3 {
    font-size: 1rem;
  }
  #faq-banner {
    padding-top: 150px;
  }
  .page-template-faq .collapse .collapse-trigger {
    padding: 30px 120px 30px 40px;
  }
  #faq-collapse {
    padding-bottom: 100px;
  }
  #faq-contact .pattern {
    top: -4%;
  }
  #privacy-banner, #not-found-banner {
    padding-top: 150px;
  }
  #privacy-banner h1, #not-found-banner h1 {
    font-size: 2.5rem;
  }
  .contact-card:before {
    left: 75%;
  }
  #not-found-banner svg {
    height: 30%;
  }
  .not-found-image:after {
    top: -40px;
  }
  .single-project #serviceSymbol {
    display: none;
  }
  .employee-popup .wrapper {
    clip-path: none;
  }
  .employee-popup .wrapper .close {
    top: 20px;
    right: 20px;
  }
  #about-banner .row .col-image .img-container, #about-banner form .gform_body .gform_fields .col-image .img-container, form .gform_body #about-banner .gform_fields .col-image .img-container, form .gform_body .gform_fields .gfield #about-banner .ginput_container.ginput_container_address .col-image .img-container {
    clip-path: none;
    border-radius: 12px;
    overflow: hidden;
  }
  .privacy-policy h2 {
    font-size: 1.75rem;
  }
  #service-about .symbol {
    display: none;
  }
}
@media screen and (max-width: 550px) {
  .slice.rounded-top {
    margin-top: -15px;
  }
  .value-card .inner svg {
    width: 40px;
  }
}
@media screen and (max-width: 450px) {
  .service-block {
    border-radius: 50px;
    padding: 30px 40px;
    flex-direction: column;
    gap: 15px;
  }
  .service-block .meta {
    width: 100%;
    text-align: center;
  }
  .service-block .icon-container {
    width: 75px;
  }
  .service-block .icon-container svg {
    max-height: 100%;
    width: 100%;
  }
}

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