@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: calc(1 * 2);
  animation-iteration-count: calc(1 * 2);
  -webkit-animation-iteration-count: calc(var(--animate-repeat) * 2);
  animation-iteration-count: calc(var(--animate-repeat) * 2);
}

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

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

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

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

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

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

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

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

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

@media print, (prefers-reduced-motion: reduce) {
  .animate__animated {
    -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: calc(1s * 1.3);
  animation-duration: calc(1s * 1.3);
  -webkit-animation-duration: calc(var(--animate-duration) * 1.3);
  animation-duration: calc(var(--animate-duration) * 1.3);
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

body {
  padding: 0;
  margin: 0;
}

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

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

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

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

.alignright {
  float: right;
}

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

.alignleft {
  float: left;
}

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

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

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

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

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

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

.undo-p {
  margin: 0;
}

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

svg {
  max-height: 100%;
}

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

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

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

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

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

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

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

.flat-all {
  padding: 0;
}

.fleft {
  float: left;
}

.fright {
  float: right;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .align-self-xl-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}
/*
 * Vertically align an element without using Flexbox
 */
/*
 * Add a color overlay absolutelly positionned over something
 */
/*
 * Overwrite browser placeholders styles
 */
/*
 * Convert images to background
 */
/*
 * Responsive shapes
 */
/*
 * Remove mobile/iOS default buttons
 */
@font-face {
  font-family: GT America;
  src: url("../fonts/GT-America-Regular.otf");
}
@font-face {
  font-family: GT America;
  font-weight: bold;
  src: url("../fonts/GT-America-Bold.otf");
}
::-moz-selection {
  color: #000;
  background: #FDE015;
}

::selection {
  color: #000;
  background: #FDE015;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #000;
  overflow-x: hidden;
  font-family: GT America, sans-serif;
}
body.active {
  overflow-y: hidden;
}

.the-content *:last-child {
  margin-bottom: 0;
}
.the-content ul {
  list-style-type: none;
  list-style-position: inside;
  margin-bottom: 1em;
}
.the-content ul li::before {
  content: "•";
  color: #FDE015;
  font-weight: bold;
  display: inline-block;
  width: 1em;
}
.the-content ol {
  list-style-type: decimal;
  list-style-position: inside;
  margin-bottom: 1em;
}
.the-content ul ul, .the-content ol ul {
  list-style-type: circle;
  list-style-position: inside;
  margin-left: 15px;
}
.the-content ol ol, .the-content ul ol {
  list-style-type: lower-latin;
  list-style-position: inside;
  margin-left: 15px;
}
.the-content p {
  margin-bottom: 1em;
}
.the-content.line-list ul {
  list-style: outside;
}
.the-content.line-list ul li {
  list-style-type: none;
  display: flex;
  align-items: center;
  margin: 10px 0;
}
.the-content.line-list ul li:before {
  content: "";
  width: 30px;
  min-width: 30px;
  height: 1px;
  background-color: #FDE015;
  display: inline-block;
  margin-right: 15px;
}
.the-content h4 {
  margin-bottom: 8px;
}

.wrapper {
  position: relative;
  height: 100%;
  width: 90%;
  margin: 0 auto;
}

.slice {
  margin: 175px 0;
}

h1 {
  font: normal 80px/1em Teko, sans-serif;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

h2 {
  font: normal 50px/1.1em Teko, sans-serif;
  color: #fff;
}

h3 {
  font: normal 80px/90px Teko, sans-serif;
  color: #fff;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

h4 {
  font: normal 18px/1.2em GT America, sans-serif;
  color: #fff;
  text-transform: uppercase;
}

h5 {
  font: normal 12px/1.2em GT America, sans-serif;
  color: #fff;
}

h6 {
  font: bold 30px/50px GT America, sans-serif;
  color: #fff;
}

p, li {
  font: normal 20px/30px GT America, sans-serif;
  color: #d5dedf;
}

a {
  font: bold 15px/1em GT America, sans-serif;
  color: #fff;
  text-transform: uppercase;
}

.btn {
  display: inline-block;
  color: #fff;
  text-align: center;
  background-color: transparent;
  border: 1px solid #FDE015;
  border-radius: 40px;
  padding: 12px 22px;
  height: fit-content;
  transition: all 250ms ease-in-out;
}
.btn:hover {
  color: #000;
  background-color: #FDE015;
}

.btn-simple {
  color: #fff;
  padding: 8px 5px;
  position: relative;
}
.btn-simple:before {
  content: "";
  position: absolute;
  right: 0;
  transform: rotate(45deg);
  border: 1px solid #FDE015;
  height: 10px;
  width: 10px;
  border-width: 1px 1px 0 0;
  bottom: -5px;
  opacity: 0;
  transition: all 250ms ease-in-out;
}
.btn-simple:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #FDE015;
  transition: all 250ms ease-in-out;
}
.btn-simple:hover:after {
  left: 20px;
}
.btn-simple:hover:before {
  right: -20px;
  opacity: 1;
}
.btn-simple.btn-simple-back:before {
  right: auto;
  left: 0;
  transform: rotate(-135deg);
}
.btn-simple.btn-simple-back:after {
  left: auto;
  right: 0;
}
.btn-simple.btn-simple-back:hover:after {
  left: auto;
  right: 20px;
}
.btn-simple.btn-simple-back:hover:before {
  right: auto;
  left: -20px;
}

.sec-title-left {
  position: absolute;
  left: 0;
  top: 5vh;
  transform: rotate(-90deg);
  transform-origin: 0 0;
  display: flex;
  align-items: center;
}
.sec-title-left h4 {
  margin-right: 15px;
}
.sec-title-left .yellow-line {
  display: block;
  width: 145px;
  height: 1px;
  background-color: #FDE015;
}

.text-underline-yellow {
  text-decoration: underline 1px;
  text-decoration-color: #FDE015;
  text-underline-offset: 4px;
}

.title-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.title-btn .btn {
  margin-top: 10px;
}

.idLink {
  position: relative;
  top: -120px;
  display: block;
  height: 0;
  width: 0;
}

.a-li-serv {
  text-transform: none;
}
.a-li-serv li {
  transition: all 250ms ease-in-out;
}
.a-li-serv:hover li {
  color: #FDE015;
}

.hero {
  min-height: 100vh;
  position: relative;
  background-size: cover;
  overflow: hidden;
}
.hero .fade-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.hero .wrapper {
  width: 50%;
  margin: 0 auto 10vh 0;
  padding: 4% 0 4% 5%;
  background: linear-gradient(90deg, black, rgba(0, 0, 0, 0));
}
.hero .wrapper .hero-content h4 {
  color: #d5dedf;
}
.hero .wrapper .hero-content h1 {
  margin: 30px 0;
}
.hero .wrapper .hero-content .btn {
  margin-right: 20px;
}

.services-blocs {
  margin-top: 0;
  position: relative;
  top: -126px;
}
.services-blocs .wrapper .single-serv {
  padding: 0;
  width: 25%;
}
.services-blocs .wrapper .single-serv a {
  display: block;
  top: 0;
  position: relative;
  background-color: rgba(0, 0, 0, 0.37);
  border: 1px solid #C3C3C3;
  transition: all 250ms ease-in-out;
}
.services-blocs .wrapper .single-serv a .top-side {
  height: 125px;
  padding: 20px;
}
.services-blocs .wrapper .single-serv a .image {
  height: 400px;
}
.services-blocs .wrapper .single-serv a .image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  filter: grayscale(1);
  opacity: 1;
  transition: all 250ms ease-in-out;
}
.services-blocs .wrapper .single-serv:hover a {
  top: -125px;
  border-color: #FDE015;
}
.services-blocs .wrapper .single-serv:hover a img {
  filter: grayscale(0);
  opacity: 1;
}

#about {
  position: relative;
}
#about .sec-title-left {
  top: 16%;
}
#about .wrapper .top-side {
  width: 60%;
  text-align: center;
}
#about .wrapper .top-side .the-content {
  margin: 50px 0;
}
#about .wrapper .bottom-side {
  position: relative;
  margin-top: 75px;
  margin-bottom: 25px;
}
#about .wrapper .bottom-side .image img {
  object-fit: contain;
}
#about .wrapper .bottom-side .dots-wrap .single-dot {
  position: absolute;
  top: 0;
  left: 0;
}
#about .wrapper .bottom-side .dots-wrap .single-dot .dot-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  width: 40px;
  border: 1px solid #FDE015;
  border-radius: 40px;
  position: relative;
  cursor: default;
}
#about .wrapper .bottom-side .dots-wrap .single-dot .dot-icon:before {
  content: "";
  display: block;
  height: 0;
  width: 1px;
  background-color: #FDE015;
  transition: all 250ms ease-in-out;
  left: 50%;
  bottom: 39px;
  position: absolute;
  pointer-events: none;
}
#about .wrapper .bottom-side .dots-wrap .single-dot .dot-icon span {
  color: #fff;
  font: normal 20px/30px GT America, sans-serif;
  transition: all 250ms ease-in-out;
  transform-origin: center;
  height: 30px;
  width: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: -1px;
}
#about .wrapper .bottom-side .dots-wrap .single-dot .dot-icon h5 {
  position: absolute;
  top: -119px;
  left: 70%;
  width: max-content;
  text-transform: uppercase;
  opacity: 0;
  transition: all 250ms ease-in-out;
  pointer-events: none;
}
#about .wrapper .bottom-side .dots-wrap .single-dot .dot-icon:hover span {
  transform: rotate(-90deg);
  margin-left: -2px;
  margin-bottom: -2px;
}
#about .wrapper .bottom-side .dots-wrap .single-dot .dot-icon:hover:before {
  height: 115px;
}
#about .wrapper .bottom-side .dots-wrap .single-dot .dot-icon:hover h5 {
  opacity: 1;
}
#about .wrapper .bottom-side .dots-wrap .single-dot:nth-child(1) {
  left: 14%;
  top: 28%;
}
#about .wrapper .bottom-side .dots-wrap .single-dot:nth-child(2) {
  left: 31%;
  top: 42%;
}
#about .wrapper .bottom-side .dots-wrap .single-dot:nth-child(2) .dot-icon:hover:before {
  height: 170px;
}
#about .wrapper .bottom-side .dots-wrap .single-dot:nth-child(2) h5 {
  top: -174px;
}
#about .wrapper .bottom-side .dots-wrap .single-dot:nth-child(3) {
  left: 48%;
  top: 14%;
}
#about .wrapper .bottom-side .dots-wrap .single-dot:nth-child(3) .dot-icon:hover:before {
  height: 80px;
}
#about .wrapper .bottom-side .dots-wrap .single-dot:nth-child(3) h5 {
  top: -84px;
}
#about .wrapper .bottom-side .dots-wrap .single-dot:nth-child(4) {
  left: 53%;
  top: 57%;
}
#about .wrapper .bottom-side .dots-wrap .single-dot:nth-child(5) {
  left: 70%;
  top: 28%;
}
#about .wrapper .bottom-side .dots-wrap .single-dot:nth-child(6) {
  left: 82%;
  top: 52%;
}
#about .wrapper .bottom-side .dots-wrap .single-dot:nth-child(4) .dot-icon:before, #about .wrapper .bottom-side .dots-wrap .single-dot:nth-child(6) .dot-icon:before {
  top: 39px;
  bottom: auto;
}
#about .wrapper .bottom-side .dots-wrap .single-dot:nth-child(4) h5, #about .wrapper .bottom-side .dots-wrap .single-dot:nth-child(6) h5 {
  bottom: -118px;
  top: auto;
}
#about .wrapper .btn-simple {
  margin-top: 25px;
}

.year-slider .carousel__nav {
  display: none !important;
}

#blog {
  position: relative;
  padding: 120px 0;
}
#blog .full-bg {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-size: cover;
  filter: grayscale(1);
  opacity: 0.07;
}
#blog .wrapper .carousel {
  width: 97%;
  margin-top: 100px;
}
#blog .wrapper .carousel .carousel__viewport {
  max-width: 100%;
  margin: 0 auto;
}
#blog .wrapper .carousel .carousel__nav .carousel__button {
  background-image: url("../images/arrow-slider.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 100px;
  transition: all 250ms ease-in-out;
}
#blog .wrapper .carousel .carousel__nav .carousel__button:before {
  content: "";
  display: block;
  height: 30px;
  width: 30px;
  border: 1px solid #FDE015;
  border-radius: 30px;
  position: absolute;
  left: -10px;
}
#blog .wrapper .carousel .carousel__nav .carousel__button svg {
  display: none;
}
#blog .wrapper .carousel .carousel__nav .carousel__button.is-next {
  transform: scaleX(-1);
  margin-top: -30px;
  margin-right: -3%;
}
#blog .wrapper .carousel .carousel__nav .carousel__button.is-next:before {
  right: -10px;
}
#blog .wrapper .carousel .carousel__nav .carousel__button.is-prev {
  margin-left: -3%;
}
#blog .wrapper .carousel .carousel__nav .carousel__button:hover.is-next {
  margin-right: -3.5%;
}
#blog .wrapper .carousel .carousel__nav .carousel__button:hover.is-prev {
  margin-left: -3.5%;
}
#blog .wrapper .carousel .carousel__dots {
  display: none;
}
#blog .wrapper .carousel .carousel__track {
  align-items: center;
  height: 680px;
}
#blog .wrapper .carousel .carousel__slide {
  color: #fff;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 3% 4%;
  margin: 0 -5px;
  height: 500px;
  width: var(--carousel-slide-width, 38%);
  transition: all 250ms ease-in-out;
  z-index: 0;
}
#blog .wrapper .carousel .carousel__slide .post-cat {
  opacity: 0;
  position: relative;
  z-index: 1;
  left: -15%;
  padding: 3px 12%;
  width: fit-content;
  background-color: #FDE015;
  transition: inherit;
}
#blog .wrapper .carousel .carousel__slide .post-cat h4 {
  color: #000;
  text-transform: uppercase;
  font-weight: bold;
}
#blog .wrapper .carousel .carousel__slide .post-text {
  opacity: 0;
  transition: inherit;
  position: relative;
  z-index: 1;
}
#blog .wrapper .carousel .carousel__slide .post-text h6 {
  text-transform: uppercase;
  margin: 20px 0 8px;
}
#blog .wrapper .carousel .carousel__slide .post-text .the-content p {
  color: #fff;
  font: normal 14px/22px GT America, sans-serif;
}
#blog .wrapper .carousel .carousel__slide .post-filter {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(0deg, black 0%, rgba(2, 2, 2, 0.95) 20%, rgba(2, 2, 2, 0.5) 100%);
}
#blog .wrapper .carousel .carousel__slide.is-selected {
  z-index: 1;
  height: 680px;
  width: var(--carousel-slide-width, 38%);
  overflow: visible;
}
#blog .wrapper .carousel .carousel__slide.is-selected .post-cat {
  opacity: 1;
}
#blog .wrapper .carousel .carousel__slide.is-selected .post-text {
  opacity: 1;
}
#blog .wrapper .carousel .carousel__slide.is-selected .post-filter {
  background: linear-gradient(0deg, black 0%, rgba(2, 2, 2, 0.95) 10%, rgba(84, 84, 80, 0) 70%);
}

.serv-banner {
  position: relative;
  margin-top: 200px;
  min-height: 45vh;
}
.serv-banner .banner-bg {
  opacity: 20%;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  filter: grayscale(1);
}
.serv-banner .banner-bg .black-filter {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, #000308 100%);
}
.serv-banner h4 {
  color: #FDE015;
  margin-bottom: 20px;
}
.serv-banner .banner-content {
  margin-top: 75px;
}
.serv-banner .banner-content .left-side {
  padding: 100px;
  background-color: rgba(0, 0, 0, 0.4);
}
.serv-banner .banner-content .left-side h2 {
  margin-bottom: 20px;
}
.serv-banner .banner-content .left-side .the-content {
  margin-bottom: 30px;
}
.serv-banner .banner-content .left-side .btn {
  margin-top: 10px;
}
.serv-banner .banner-content .image {
  padding: 100px 20px;
}
.serv-banner .banner-content .image img {
  width: 100%;
  min-height: 250px;
  max-height: 550px;
  height: 100%;
  object-fit: cover;
}

.avantages-serv {
  position: relative;
  padding: 120px 0 100px;
  margin: 100px 0;
}
.avantages-serv .full-sec-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 125%;
  opacity: 0.75;
  overflow: hidden;
}
.avantages-serv .full-sec-bg video {
  height: 100%;
  object-fit: cover;
}
.avantages-serv .full-sec-bg:before {
  content: "";
  height: 100%;
  width: 100%;
  z-index: 0;
  position: absolute;
  background: #000;
  background: linear-gradient(0deg, black 0%, rgba(0, 0, 0, 0.75) 20%, rgba(0, 0, 0, 0) 90%, black 100%);
}
.avantages-serv h2 {
  margin-bottom: 100px;
}
.avantages-serv .wrap-avantages .single-avantage {
  padding: 0 50px;
}
.avantages-serv .wrap-avantages .single-avantage svg {
  height: 72px;
  max-width: 72px;
  margin-bottom: 40px;
}
.avantages-serv .wrap-avantages .single-avantage h4 {
  margin-bottom: 20px;
  font-weight: bold;
}

.services-offerts {
  margin: 275px 0;
}
.services-offerts .sec-title-left {
  top: 28vh;
}
.services-offerts .services-offerts-wrap {
  margin-top: 140px;
}
.services-offerts .services-offerts-wrap .single-offert {
  padding: 0 30px 40px;
  border: 1px solid #C3C3C3;
}
.services-offerts .services-offerts-wrap .single-offert .round-icon-wrap {
  border: 1px solid #C3C3C3;
  border-radius: 100px;
  padding: 20px;
  background-color: #000;
  position: relative;
  top: -60px;
  margin-bottom: -20px;
}
.services-offerts .services-offerts-wrap .single-offert .round-icon-wrap svg {
  height: 70px;
  width: 70px;
}
.services-offerts .services-offerts-wrap .single-offert > h2 {
  margin-top: -25px;
  margin-bottom: 30px;
}
.services-offerts .services-offerts-wrap .single-offert .the-content p, .services-offerts .services-offerts-wrap .single-offert .the-content li {
  font: normal 16px/24px GT America, sans-serif;
}
.services-offerts .services-offerts-wrap .single-offert .the-content h4 {
  margin-top: 25px;
}
.services-offerts .services-offerts-wrap .single-offert .the-content ul {
  margin-left: 10px;
  list-style: none;
}
.services-offerts .services-offerts-wrap .single-offert .the-content ul li {
  display: flex;
}
.services-offerts .services-offerts-wrap .single-offert .the-content ul li:before {
  content: "-";
  display: block;
  margin-right: 15px;
  width: 0;
}
.services-offerts .services-offerts-wrap .single-offert .btn {
  margin-top: 50px;
  text-align: center;
}

.page-id-226 .services-offerts .services-offerts-wrap .single-offert:nth-child(1) .round-icon-wrap svg {
  padding: 6px;
}
.page-id-226 .services-offerts .services-offerts-wrap .single-offert:nth-child(2) .round-icon-wrap svg {
  position: relative;
  right: -2px;
}

.nos-services {
  margin: 225px auto;
}
.nos-services .sec-title-left {
  top: 25vh;
}

.serv-footer {
  margin: 250px 0;
}
.serv-footer .bg-right-side {
  position: absolute;
  z-index: -1;
  right: -5vw;
  top: 0;
  height: 100%;
  width: 82%;
  background-size: cover;
  background-position: center;
  filter: grayscale(1);
  opacity: 0.65;
}
.serv-footer .wrapper {
  padding: 90px 0;
}
.serv-footer .left-side {
  padding: 75px 0;
  background: linear-gradient(90deg, black 33%, rgba(0, 0, 0, 0));
  width: 50%;
}
.serv-footer .left-side h4 {
  color: #FDE015;
  margin-bottom: 15px;
}
.serv-footer .left-side .btn {
  min-width: 225px;
  margin-top: 15px;
}

.bold-plus {
  font: bold 27px GT America, sans-serif;
  color: #fff;
  transition: all 250ms ease-in-out;
}

.protection .sec-title-left {
  top: 28vh;
}
.protection .protection-forfaits {
  margin-top: 75px;
}
.protection .protection-forfaits .left-side {
  padding: 0 100px 0 0;
}
.protection .protection-forfaits .right-side {
  position: relative;
  height: 400px;
}
.protection .protection-forfaits .right-side .image {
  height: 400px;
  object-fit: contain;
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0;
  transition: all 250ms ease-in-out;
}
.protection .protection-forfaits .right-side .image .forfait-top-view svg {
  position: absolute;
  top: -40px;
  left: 0;
  width: 170px;
}
.protection .protection-forfaits .right-side .image.open {
  opacity: 1;
}
.protection .protection-forfaits .right-side .image.forfait-img-0 {
  opacity: 1;
}
.protection .protection-forfaits .single-forfait {
  cursor: pointer;
  padding: 15px 30px;
  transition: all 250ms ease-in-out;
  margin: -1px 0 0;
  position: relative;
}
.protection .protection-forfaits .single-forfait:before {
  content: "";
  position: absolute;
  z-index: 1;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  border: 1px solid #C3C3C3;
  transition: all 250ms ease-in-out;
}
.protection .protection-forfaits .single-forfait h4 {
  display: flex;
  align-items: center;
  transition: all 250ms ease-in-out;
}
.protection .protection-forfaits .single-forfait .the-content {
  display: none;
  margin: 10px 0 10px;
  width: 92%;
}
.protection .protection-forfaits .single-forfait.open {
  position: relative;
  z-index: 2;
}
.protection .protection-forfaits .single-forfait.open:before {
  border-color: #FDE015;
  z-index: 2;
}
.protection .protection-forfaits .single-forfait.open h4 {
  color: #FDE015;
}
.protection .protection-forfaits .single-forfait.open .bold-plus {
  transform: rotate(45deg);
}
.protection .protection-forfaits .single-forfait:hover:before {
  border-color: #FDE015;
  z-index: 2;
}
.protection .protection-forfaits .single-forfait:hover h4 {
  color: #FDE015;
}

.slice.faq .faq-service {
  margin-top: 60px;
}
.slice.faq .single-faq {
  cursor: pointer;
  padding: 15px 30px;
  transition: all 250ms ease-in-out;
  margin: -1px 0 0;
  position: relative;
}
.slice.faq .single-faq:before {
  content: "";
  position: absolute;
  z-index: 1;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  border: 1px solid #C3C3C3;
  transition: all 250ms ease-in-out;
}
.slice.faq .single-faq h4 {
  display: flex;
  align-items: center;
  transition: all 250ms ease-in-out;
}
.slice.faq .single-faq .the-content {
  display: none;
  margin: 10px 0 10px;
  width: 92%;
}
.slice.faq .single-faq.open {
  position: relative;
  z-index: 2;
}
.slice.faq .single-faq.open:before {
  border-color: #FDE015;
  z-index: 2;
}
.slice.faq .single-faq.open h4 {
  color: #FDE015;
}
.slice.faq .single-faq.open .bold-plus {
  transform: rotate(45deg);
}
.slice.faq .single-faq:hover:before {
  border-color: #FDE015;
  z-index: 2;
}
.slice.faq .single-faq:hover h4 {
  color: #FDE015;
}

.service-cir {
  position: relative;
}
.service-cir .half-bg {
  display: block;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  z-index: -1;
  top: -8%;
  left: -12vw;
  opacity: 0.06;
  width: 100vw;
  height: 150%;
}
.service-cir .wrapper .the-content p, .service-cir .wrapper .the-content li {
  font: normal 16px/24px GT America, sans-serif;
}
.service-cir .wrapper .left-side {
  padding: 0 0 0 5vw;
}
.service-cir .wrapper .left-side h2 {
  margin-bottom: 80px;
}
.service-cir .wrapper .left-side .single-cir {
  margin: 60px 0;
}
.service-cir .wrapper .left-side .single-cir .cir-icon {
  display: block;
  height: 70px;
  width: 100px;
  margin-right: 70px;
}
.service-cir .wrapper .left-side .single-cir .cir-icon svg {
  height: 70px;
  width: 100px;
}
.service-cir .wrapper .left-side .single-cir .single-cir-title {
  text-transform: uppercase;
  font: normal 16px/24px GT America, sans-serif;
  font-weight: bold;
  color: #fff;
}
.service-cir .wrapper .right-side {
  padding: 0 5vw 0 0;
}
.service-cir .wrapper .right-side h2, .service-cir .wrapper .right-side .img-legend, .service-cir .wrapper .right-side .the-content, .service-cir .wrapper .right-side .btn {
  margin-left: 13%;
}
.service-cir .wrapper .right-side h2 {
  margin-bottom: 20px;
}
.service-cir .wrapper .right-side .img-legend {
  font: normal 16px/24px GT America, sans-serif;
  font-style: italic;
  margin-top: 10px;
  margin-bottom: 30px;
}
.service-cir .wrapper .right-side .btn {
  margin-top: 30px;
}

.service-teinte h5 {
  color: #d5dedf;
  font: normal 16px/24px GT America, sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  margin: 42px 0 10px;
}
.service-teinte .teinte-images {
  position: relative;
  height: 325px;
  margin: 85px 0 0;
}
.service-teinte .teinte-images .svg-wrap {
  position: absolute;
  top: 0;
  width: 90%;
  height: 325px;
  visibility: hidden;
  opacity: 0;
}
.service-teinte .teinte-images .svg-wrap.selected {
  visibility: visible;
  opacity: 1;
}
.service-teinte .teinte-images .svg-wrap svg #VITRE_AVANT_WHITE, .service-teinte .teinte-images .svg-wrap svg #VITRE_ARRIERE_WHITE, .service-teinte .teinte-images .svg-wrap svg #VITRE_ARRIERE_2_WHITE, .service-teinte .teinte-images .svg-wrap svg #LUNETTE_ARRIERE_WHITE {
  fill: #717C89 !important;
}
.service-teinte .teinte-images .svg-wrap svg #VITRE_AVANT, .service-teinte .teinte-images .svg-wrap svg #VITRE_ARRIERE, .service-teinte .teinte-images .svg-wrap svg #VITRE_ARRIERE_2, .service-teinte .teinte-images .svg-wrap svg #LUNETTE_ARRIERE {
  opacity: 0;
}
.service-teinte .teinte-images .svg-wrap .svg-back {
  height: 90%;
  margin: auto 0;
}
.service-teinte .teinte-option {
  cursor: pointer;
  background-color: #000;
  border: 1px solid #C3C3C3;
  padding: 12px 5px;
}
.service-teinte .teinte-option p {
  text-transform: uppercase;
  color: #fff;
  font: normal 18px/1.2em GT America, sans-serif;
}
.service-teinte .teinte-option .color-circle {
  display: block;
  border-radius: 24px;
  height: 24px;
  width: 24px;
  margin-right: 10px;
}
.service-teinte .teinte-option.selected {
  border-color: #FDE015;
  background-color: #FDE015;
}
.service-teinte .teinte-option.selected p {
  color: #000;
}
.service-teinte .teinte-option.option-color {
  padding: 12px 5px 12px 24px;
}
.service-teinte .teinte-option.option-opacity {
  flex-grow: 1;
}
.service-teinte .teinte-option.option-opacity.selected {
  background-color: #EDC000;
  border-color: #EDC000;
}
.service-teinte .right-side > div {
  margin-top: 28px;
}
.service-teinte .right-side > div:nth-child(1) {
  margin-top: 0;
}
.service-teinte .right-side .teinte-front .options-wrap, .service-teinte .right-side .teinte-mid .options-wrap, .service-teinte .right-side .teinte-back .options-wrap {
  position: relative;
  z-index: 2;
}
.service-teinte .right-side .teinte-front .opacity-wrap, .service-teinte .right-side .teinte-mid .opacity-wrap, .service-teinte .right-side .teinte-back .opacity-wrap {
  position: relative;
  z-index: 1;
  top: 0;
  opacity: 1;
  transition: all 250ms ease-in-out;
}
.service-teinte .right-side .teinte-front.closed .opacity-wrap, .service-teinte .right-side .teinte-mid.closed .opacity-wrap, .service-teinte .right-side .teinte-back.closed .opacity-wrap {
  z-index: -1;
  top: -55px;
  opacity: 0;
  pointer-events: none;
}

.teinte-soum-btn {
  margin: 50px 0;
}

.blocs-wrap .single-bloc {
  position: relative;
}
.blocs-wrap .single-bloc .wrapper {
  flex-direction: row;
}
.blocs-wrap .single-bloc.slice {
  margin: 250px 0;
}
.blocs-wrap .single-bloc .bg-shadow-img {
  position: absolute;
  z-index: -1;
  left: -6vw;
  top: -5%;
  height: 110%;
  width: 50vw;
  filter: grayscale(1);
  opacity: 0.2;
  background-size: cover;
  background-repeat: no-repeat;
}
.blocs-wrap .single-bloc .bg-shadow-img .black-gradient {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 60%;
  background: linear-gradient(270deg, black, rgba(0, 0, 0, 0));
}
.blocs-wrap .single-bloc .left-side {
  position: relative;
  padding: 0 3vw 0 0;
}
.blocs-wrap .single-bloc .left-side img {
  height: 440px;
  width: 100%;
  object-fit: cover;
}
.blocs-wrap .single-bloc .left-side .icon {
  position: absolute;
  top: -50px;
  left: -50px;
  height: 100px;
  width: 100px;
  border: 1px solid #FDE015;
  border-radius: 100px;
}
.blocs-wrap .single-bloc .left-side .icon svg {
  height: 60%;
  width: 60%;
}
.blocs-wrap .single-bloc .right-side {
  padding: 0 0 0 3vw;
}
.blocs-wrap .single-bloc .right-side .the-content {
  margin: 25px 0 40px;
}
.blocs-wrap .single-bloc:nth-child(even) .wrapper {
  flex-direction: row-reverse;
}
.blocs-wrap .single-bloc:nth-child(even) .bg-shadow-img {
  right: -6vw;
  left: auto;
}
.blocs-wrap .single-bloc:nth-child(even) .bg-shadow-img .black-gradient {
  right: auto;
  left: 0;
  background: linear-gradient(270deg, rgba(0, 0, 0, 0), black);
}
.blocs-wrap .single-bloc:nth-child(even) .right-side {
  padding: 0 3vw 0 0;
}
.blocs-wrap .single-bloc:nth-child(even) .left-side {
  padding: 0 0 0 3vw;
}
.blocs-wrap .single-bloc:nth-child(even) .left-side .icon {
  left: auto;
  right: -50px;
}

.double-title {
  position: relative;
  margin-bottom: 60px;
}
.double-title h3 {
  position: relative;
  z-index: 2;
}
.double-title .fade-title {
  position: absolute;
  z-index: 1;
  top: -70%;
  opacity: 7%;
  width: 100%;
  font-size: 150px;
  line-height: 1em;
}
.double-title .the-content {
  max-width: 750px;
  margin-inline: auto;
}

.carousel-serv .carousel__slide {
  display: flex;
  justify-content: center;
  align-items: center;
}
.carousel-serv .carousel__slide img {
  object-fit: cover;
  margin: auto;
}
.carousel-serv .carousel__slide:nth-child(1n) {
  width: 600px;
}
.carousel-serv .carousel__slide:nth-child(1n) img {
  width: 600px;
  height: 700px;
}
.carousel-serv .carousel__slide:nth-child(2n) {
  width: 400px;
  margin-left: -75px;
}
.carousel-serv .carousel__slide:nth-child(2n) img {
  width: 400px;
  height: 435px;
}
.carousel-serv .carousel__slide:nth-child(3n) {
  width: 460px;
  margin: 0 20px;
}
.carousel-serv .carousel__slide:nth-child(3n) img {
  width: 460px;
  height: 620px;
}
.carousel-serv .carousel__slide:nth-child(4n) {
  width: 575px;
  margin: 0 30px;
}
.carousel-serv .carousel__slide:nth-child(4n) img {
  width: 575px;
  height: 525px;
}
.carousel-serv .carousel__slide:nth-child(5n) {
  width: 475px;
  margin: 0 10px;
}
.carousel-serv .carousel__slide:nth-child(5n) img {
  width: 475px;
  height: 310px;
}

.carousel-serv-mob .carousel__slide img {
  height: 400px;
  width: 100%;
  object-fit: cover;
}

.carousel-serv, .carousel-serv-mob {
  position: relative;
}
.carousel-serv .carousel__nav, .carousel-serv-mob .carousel__nav {
  width: 84%;
  position: absolute;
  margin: 0 8%;
  top: -10px;
}
.carousel-serv .carousel__nav .carousel__button, .carousel-serv-mob .carousel__nav .carousel__button {
  background-image: url("../images/arrow-slider.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 100px;
  transition: all 250ms ease-in-out;
}
.carousel-serv .carousel__nav .carousel__button:before, .carousel-serv-mob .carousel__nav .carousel__button:before {
  content: "";
  display: block;
  height: 30px;
  width: 30px;
  border: 1px solid #FDE015;
  border-radius: 30px;
  position: absolute;
  left: -10px;
}
.carousel-serv .carousel__nav .carousel__button svg, .carousel-serv-mob .carousel__nav .carousel__button svg {
  display: none;
}
.carousel-serv .carousel__nav .carousel__button.is-next, .carousel-serv-mob .carousel__nav .carousel__button.is-next {
  transform: scaleX(-1);
  margin-top: -25px;
  margin-right: -3%;
}
.carousel-serv .carousel__nav .carousel__button.is-next:before, .carousel-serv-mob .carousel__nav .carousel__button.is-next:before {
  right: -10px;
}
.carousel-serv .carousel__nav .carousel__button.is-prev, .carousel-serv-mob .carousel__nav .carousel__button.is-prev {
  margin-left: -3%;
}
.carousel-serv .carousel__nav .carousel__button:hover.is-next, .carousel-serv-mob .carousel__nav .carousel__button:hover.is-next {
  margin-right: -3.5%;
}
.carousel-serv .carousel__nav .carousel__button:hover.is-prev, .carousel-serv-mob .carousel__nav .carousel__button:hover.is-prev {
  margin-left: -3.5%;
}
.carousel-serv .carousel__dots, .carousel-serv-mob .carousel__dots {
  display: none;
}

.serv-prods .sec-title-left {
  top: 22vh;
}
.serv-prods .title-btn {
  position: relative;
  padding-bottom: 80px;
}
.serv-prods .title-btn .slide-icon {
  position: absolute;
  bottom: 0;
  right: 10%;
}

.carousel-products {
  margin-top: 15px;
}
.carousel-products:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background-color: black;
  width: 10%;
  height: 100%;
  z-index: 1;
}
.carousel-products .carousel__dots {
  display: none;
}
.carousel-products .carousel__slide {
  width: 65vw;
  margin: 0 20px;
  background: linear-gradient(110deg, #1a1a1a 10%, #000 45%);
  padding: 0;
  opacity: 0.3;
  transition: all 250ms ease-in-out;
}
.carousel-products .carousel__slide.is-selected {
  opacity: 1;
}
.carousel-products .carousel__slide .img-placeholder {
  padding: 60px;
  font: bold 78px/100% GT America, sans-serif;
  color: transparent;
  -webkit-text-stroke: 2px;
  -webkit-text-stroke-color: #FDE015;
}
.carousel-products .carousel__slide .left-side {
  padding: 40px 30px 40px 0;
}
.carousel-products .carousel__slide .left-side img {
  height: 446px;
  width: 212px;
  object-fit: contain;
  margin: 0 100px 0 80px;
}
.carousel-products .carousel__slide .left-side .the-content p, .carousel-products .carousel__slide .left-side .the-content li {
  font: normal 16px/24px GT America, sans-serif;
}
.carousel-products .carousel__slide .right-side {
  height: 100%;
  border-left: 1px solid #FDE015;
  padding: 40px;
}
.carousel-products .carousel__slide .right-side .single-note {
  margin: 25px 0;
}
.carousel-products .carousel__slide .right-side .single-note .note-produit {
  position: relative;
  width: 112px;
  margin: 12px auto;
}
.carousel-products .carousel__slide .right-side .single-note .note-produit .note-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 14px;
  background-color: #FDE015;
  display: block;
  margin-left: 1px;
  margin-top: 1px;
}
.carousel-products .carousel__slide .right-side .single-note .note-produit svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 112px;
  height: 16px;
  max-height: 16px;
}
.carousel-products .carousel__slide .right-side h4 {
  text-transform: none;
  font-weight: bold;
}
.carousel-products .carousel__nav {
  display: none;
}

.servs-banner .the-content {
  max-width: 820px;
  padding: 0 25px;
  margin: 75px auto 40px;
}

.servs-gallery .carousel__slide {
  overflow: hidden;
  width: 400px;
  padding: 0;
}
.servs-gallery .carousel__slide img {
  height: 230px;
  width: 400px;
  object-fit: cover;
}
.servs-gallery .carousel__dots {
  display: none;
}
.servs-gallery .carousel-servs {
  position: relative;
}
.servs-gallery .carousel__nav {
  width: 98%;
  position: absolute;
  margin: 0 1%;
  bottom: -30px;
  left: 0;
}
.servs-gallery .carousel__nav .carousel__button {
  background-image: url("../images/arrow-slider.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 100px;
  transition: all 250ms ease-in-out;
}
.servs-gallery .carousel__nav .carousel__button:before {
  content: "";
  display: block;
  height: 30px;
  width: 30px;
  border: 1px solid #FDE015;
  border-radius: 30px;
  position: absolute;
  left: -10px;
}
.servs-gallery .carousel__nav .carousel__button svg {
  display: none;
}
.servs-gallery .carousel__nav .carousel__button.is-next {
  transform: scaleX(-1);
  margin-top: -25px;
  margin-right: 0;
}
.servs-gallery .carousel__nav .carousel__button.is-next:before {
  right: -10px;
}
.servs-gallery .carousel__nav .carousel__button.is-prev {
  margin-left: 0;
}
.servs-gallery .carousel__nav .carousel__button:hover.is-next {
  margin-right: -0.5%;
}
.servs-gallery .carousel__nav .carousel__button:hover.is-prev {
  margin-left: -0.5%;
}

.servs-wrap {
  margin: auto;
}
.servs-wrap .servs-single {
  margin: 150px 0 0;
}
.servs-wrap .servs-single:nth-child(even) {
  flex-direction: row-reverse;
}
.servs-wrap .servs-single .left-side {
  height: 380px;
  width: 380px;
  border: 1px solid #707070;
  border-radius: 380px;
}
.servs-wrap .servs-single .left-side svg {
  height: 200px;
  width: 200px;
}
.servs-wrap .servs-single .right-side {
  min-width: 380px;
}

.post-hero.slice {
  position: relative;
  margin: 125px 0 80px;
  padding-top: 50px;
}
.post-hero.slice .post-hero-bg {
  position: absolute;
  height: 80%;
  width: 100%;
  background-size: cover;
  background-position: center;
  filter: grayscale(1);
}
.post-hero.slice .bg-fade-mid {
  height: 80%;
}
.post-hero.slice .btn-simple {
  margin-bottom: 60px;
}
.post-hero.slice .hero-thumb img {
  height: 625px;
  object-fit: cover;
}
.post-hero.slice .author-text {
  margin-top: 50px;
}

.btn-share {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  overflow: hidden;
  cursor: pointer;
  width: 216px;
  height: 49px;
  background-color: #FDE015;
  border-radius: 80px;
  padding: 0 18px;
  will-change: transform;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  margin-top: 60px;
  border: 1px solid #FDE015;
}
.btn-share a {
  height: 28px;
  width: 28px;
}
.btn-share i {
  opacity: 1;
  height: 28px;
  width: 28px;
  display: block;
}
.btn-share:hover {
  /* transition-delay: .4s; */
}
.btn-share span {
  position: absolute;
  z-index: 99;
  width: 216px;
  height: 49px;
  border: 1px solid #FDE015;
  border-radius: 80px;
  font: bold 15px/1em GT America, sans-serif;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  background-color: #000;
  padding: 15px 25px;
  -webkit-transition: all 1.2s ease;
  transition: all 1.2s ease;
}
.btn-share .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 216px;
  height: 49px;
  border-radius: 80px;
}
.btn-share:hover span {
  -webkit-transition-delay: 0.25s;
  transition-delay: 0.25s;
  -webkit-transform: translateX(-280px);
  transform: translateX(-280px);
}

.post-content.slice {
  margin: 80px 0;
}

.bg-fade-mid {
  position: absolute;
  height: 100%;
  width: 100%;
  background: linear-gradient(0deg, black 0%, rgba(0, 0, 0, 0.9) 30%, rgba(0, 0, 0, 0.8) 70%, black 100%);
}

.quote-wrap {
  margin: 80px 0;
}
.quote-wrap h2 {
  padding: 0 10%;
}
.quote-wrap .quote-mark {
  font-family: Teko, sans-serif;
  font-size: 200px;
  line-height: 1em;
  text-shadow: -1px -1px 0 #FDE015, 1px -1px 0 #FDE015, -1px 1px 0 #FDE015, 1px 1px 0 #FDE015;
  position: relative;
}
.quote-wrap .quote-mark:nth-child(1) {
  top: 20px;
}
.quote-wrap .quote-mark:nth-child(2) {
  top: -20px;
}

.fa-facebook {
  background-image: url("../images/socials/fb-icon.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.fa-linkedin {
  background-image: url("../images/socials/linkedin-icon.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  overflow: initial;
}

.serv-banner .about-title {
  margin-bottom: 60px;
}
.serv-banner .about-banner-img {
  margin-bottom: 90px;
}
.serv-banner .about-banner-img img {
  height: 520px;
  width: 100%;
  object-fit: cover;
}

.year-slider.slice {
  position: relative;
  margin: 25vh 0 40vh;
}
.year-slider.slice .slide-icon {
  position: absolute;
  right: 3%;
  top: 0;
}
.year-slider.slice .years-bg {
  position: absolute;
  top: -200px;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}
.year-slider.slice .years-bg video {
  height: 100%;
  object-fit: cover;
}
.year-slider.slice .years-bg:before {
  content: "";
  height: 100%;
  width: 100%;
  z-index: 0;
  position: absolute;
  background: #000;
  background: linear-gradient(0deg, black 0%, rgba(0, 0, 0, 0.75) 20%, rgba(0, 0, 0, 0) 90%, black 100%);
}
.year-slider.slice .carousel-years {
  width: 100vw;
  cursor: grab;
}
.year-slider.slice .carousel__slide {
  width: 30vw;
  height: 400px;
  padding: 0;
  overflow: hidden;
}
.year-slider.slice .carousel__slide > p {
  font-size: 16px;
  font-weight: bold;
  line-height: 1em;
  color: #fff;
}
.year-slider.slice .carousel__slide .year-content {
  display: block;
  width: 30px;
  height: 30px;
  border: 1px solid #FDE015;
  background-color: #000;
  border-radius: 30px;
  margin-top: 15px;
  transition: all 250ms ease-in-out;
  transition-delay: 0.3s;
}
.year-slider.slice .carousel__slide .year-content .the-content {
  visibility: hidden;
  width: 290px;
  opacity: 0;
  padding: 0;
}
.year-slider.slice .carousel__slide .year-content .the-content p {
  font: normal 16px/24px GT America, sans-serif;
  text-align: center;
}
.year-slider.slice .carousel__slide .year-content.open {
  width: 290px;
  height: fit-content;
  transition-delay: 0s;
}
.year-slider.slice .carousel__slide .year-content.open .the-content {
  visibility: visible;
  transition-delay: 0.3s;
  opacity: 1;
  padding: 15px;
  margin: auto;
}
.year-slider.slice .carousel__slide:nth-child(1) .year-line {
  width: 50%;
  right: 0;
}
.year-slider.slice .carousel__dots {
  display: none;
}
.year-slider.slice .year-line {
  display: block;
  height: 1px;
  width: 100%;
  background-color: #FDE015;
  position: absolute;
  z-index: -1;
  top: 55%;
}

.about-reason {
  margin: auto;
}
.about-reason .left-side {
  padding-right: 9%;
}
.about-reason .left-side .the-content {
  margin-top: 60px;
}
.about-reason .left-side .the-content p {
  font: normal 16px/24px GT America, sans-serif;
}
.about-reason .left-side .image {
  width: 50vw;
  position: relative;
  left: -12vw;
}
.about-reason .right-side .single-reason {
  margin-bottom: 80px;
}
.about-reason .right-side .reason-num {
  display: block;
  width: 300px;
  min-width: 300px;
}
.about-reason .right-side .reason-num h2 {
  color: #FDE015;
  font-size: 250px;
  line-height: 0.8em;
}
.about-reason .right-side .single-reason-title {
  font: normal 16px/24px GT America, sans-serif;
  font-weight: bold;
}
.about-reason .right-side .the-content p {
  font: normal 16px/24px GT America, sans-serif;
}

.contact-banner {
  position: relative;
}
.contact-banner .bg-contact-fade {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, black 0%, rgba(0, 0, 0, 0.8) 40%);
}
.contact-banner .contact-content {
  padding: 2% 4% 150px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0) 130%);
}
.contact-banner .contact-content .left-side .address-wrap {
  margin-bottom: 80px;
}
.contact-banner .contact-content .left-side .address-wrap a {
  margin-top: 30px;
  font: normal 16px/24px GT America, sans-serif;
  color: #d5dedf;
  text-transform: none;
  font-weight: bold;
}
.contact-banner .contact-content .left-side .address-wrap a.contact-address {
  margin-top: 15px;
  font-weight: normal;
  width: 75%;
}
.contact-banner .contact-content .left-side .horaire-wrap .single-day {
  border-bottom: 1px solid #FDE015;
  padding-right: 3%;
}
.contact-banner .contact-content .left-side .horaire-wrap .single-day p {
  font: normal 16px/24px GT America, sans-serif;
  margin: 0.8em 0;
  text-align: right;
}
.contact-banner .contact-content .left-side .horaire-wrap .single-day p .horaire-darker {
  font-size: 13px;
}
.contact-banner .contact-content .left-side .horaire-wrap .single-day p:nth-child(1) {
  font-weight: bold;
}

.bg-hero-banner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: grayscale(1);
}

.google-map {
  height: 90vh;
}

.page-template-promotions .serv-banner {
  padding-bottom: 200px;
}

.promos-wrap {
  background-color: rgba(0, 0, 0, 0.6);
}

.promos-wrap {
  padding: 0;
  margin-top: 80px;
}
.promos-wrap .left-side {
  padding: 0 4% 0 0;
}
.promos-wrap .right-side {
  position: relative;
  height: 100%;
  width: 100%;
}
.promos-wrap .right-side .single-promo-content {
  position: absolute;
  top: 0;
  height: 100%;
  opacity: 0;
  transition: all 300ms ease-in-out;
  visibility: hidden;
  padding: 0 10%;
}
.promos-wrap .right-side .single-promo-content.is-selected {
  opacity: 1;
  visibility: initial;
}
.promos-wrap .right-side h4 {
  font: normal 16px/24px GT America, sans-serif;
  font-weight: bold;
  margin-bottom: 10px;
}
.promos-wrap .right-side .the-content {
  margin: 5px 0 35px;
  padding: 0;
}
.promos-wrap .right-side .the-content p {
  font: normal 16px/24px GT America, sans-serif;
}
.promos-wrap .right-side .btn-share {
  margin-top: 0;
  margin-right: 25px;
}
.promos-wrap .right-side .btn-share, .promos-wrap .right-side .btn-contact {
  margin-bottom: 20px;
}
.promos-wrap .right-side .btn-contact {
  min-width: 216px;
  color: #000;
  background-color: #FDE015;
  height: 49px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.promos-wrap .right-side .btn-contact:hover {
  background-color: transparent;
  color: #FDE015;
}

#promos-carousel .carousel__slide {
  width: var(--carousel-slide-width, 100%);
  padding: 0;
  overflow-y: hidden;
}
#promos-carousel .carousel__slide img {
  height: 500px;
  width: 100%;
  object-fit: cover;
  cursor: pointer;
}
#promos-carousel .carousel__nav .carousel__button {
  background-image: url("../images/arrow-slider.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 80px;
  transition: all 250ms ease-in-out;
}
#promos-carousel .carousel__nav .carousel__button:before {
  content: "";
  display: block;
  height: 30px;
  width: 30px;
  border: 1px solid #FDE015;
  border-radius: 30px;
  position: absolute;
  left: -10px;
}
#promos-carousel .carousel__nav .carousel__button svg {
  display: none;
}
#promos-carousel .carousel__nav .carousel__button.is-next {
  transform: scaleX(-1);
  margin-top: -30px;
  margin-right: -8%;
}
#promos-carousel .carousel__nav .carousel__button.is-next:before {
  right: -10px;
}
#promos-carousel .carousel__nav .carousel__button.is-prev {
  margin-left: -8%;
}
#promos-carousel .carousel__nav .carousel__button:hover.is-next {
  margin-right: -8.5%;
}
#promos-carousel .carousel__nav .carousel__button:hover.is-prev {
  margin-left: -8.5%;
}
#promos-carousel.has-dots {
  margin-bottom: 0;
}

.carousel__dots .carousel__dot {
  width: 32px;
}
.carousel__dots .carousel__dot.is-selected:after {
  background-color: #FDE015;
}
.carousel__dots .carousel__dot:after {
  background-color: transparent;
  opacity: 1;
  border: 1px solid #FDE015;
  height: 16px;
  width: 16px;
  transition: all 250ms ease-in-out;
}

.promo-popup {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 100;
  transition: all 250ms ease-in-out;
  overflow-x: hidden;
  overflow-y: scroll;
}
.promo-popup.popup-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.promo-popup .wrapper {
  height: fit-content;
}
.promo-popup .promo-titles {
  padding-top: 100px;
}
.promo-popup .promo-titles h4 {
  color: #FDE015;
  margin-bottom: 25px;
}
.promo-popup .bg-promo-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  filter: grayscale(1);
  background-size: cover;
  background-position: center;
}
.promo-popup .bg-popup-filter {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(180deg, #000 25%, rgba(0, 0, 0, 0.8) 100%);
}
.promo-popup .left-side img {
  height: 500px;
  width: 100%;
  object-fit: cover;
}
.promo-popup .right-side {
  padding: 0 5%;
}
.promo-popup .right-side h4 {
  color: #FDE015;
}
.promo-popup .promos-wrap {
  margin-bottom: 75px;
}
.promo-popup .close-popup {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 101;
  height: 80px;
  width: 80px;
  background-color: #FDE015;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.promo-popup .close-popup .svg {
  height: 25px;
  width: 25px;
}
.promo-popup .promo-icon {
  position: absolute;
  left: -30px;
  top: -30px;
}
.promo-popup .promo-icon svg {
  height: 130px;
  width: 130px;
}

.page-template-blog .serv-banner {
  padding-bottom: 200px;
}

.month-post {
  margin-top: 80px;
  border: 1px solid #FDE015;
  padding: 0;
}
.month-post .left-side {
  padding: 0;
  background-size: cover;
  background-position: center;
  position: relative;
  min-height: 400px;
}
.month-post .left-side .post-cat {
  position: absolute;
  top: 25px;
  left: -10px;
  background-color: #FDE015;
  min-width: 270px;
}
.month-post .left-side .post-cat h4 {
  color: #000;
  font-weight: bold;
  margin: 0;
  padding: 5px 10px;
  text-align: center;
}
.month-post .right-side {
  padding: 80px;
}
.month-post .right-side .the-content {
  margin: 15px 0 40px;
  padding: 0;
}

.posts-teasers {
  width: 85%;
  margin: 10px auto 0;
}
.posts-teasers .post-teaser {
  width: 47.5%;
  margin: 15px;
  padding: 0 0 20px;
  background: linear-gradient(135deg, #1a1a1a 0%, #0b0b0b 100%);
  border: 1px solid transparent;
  transition: all 250ms ease-in-out;
}
.posts-teasers .post-teaser img {
  height: 300px;
  min-height: 300px;
  width: 100%;
  object-fit: cover;
  transition: all 250ms ease-in-out;
}
.posts-teasers .post-teaser .post-cat {
  width: fit-content;
  min-width: 250px;
  padding: 5px 50px;
  background-color: #FDE015;
  position: relative;
  top: -15px;
  left: -10px;
}
.posts-teasers .post-teaser .post-cat h4 {
  font-weight: bold;
  color: #000;
}
.posts-teasers .post-teaser .post-content {
  height: 100%;
  padding: 10px 40px;
}
.posts-teasers .post-teaser .post-content h4 {
  color: #C3C3C3;
}
.posts-teasers .post-teaser .post-content h6 {
  line-height: 40px;
  margin: 10px 0;
}
.posts-teasers .post-teaser .post-content p {
  font: normal 16px/24px GT America, sans-serif;
  font-weight: bold;
  color: #FDE015;
  text-transform: none;
  margin: auto 0 0;
}
.posts-teasers .post-teaser:hover {
  border: 1px solid #FDE015;
}
.posts-teasers .post-teaser:hover img {
  filter: grayscale(1);
}

.pagination {
  color: #fff;
  margin: auto;
  text-align: end;
  padding: 0 8.4% 0 0;
  margin-top: 25px;
}
.pagination .page-numbers {
  font-weight: normal;
  color: #d5dedf;
  border-left: 1px solid #d5dedf;
  padding: 0 10px 0 12px;
}
.pagination .page-numbers:nth-child(1) {
  border-left: none;
}
.pagination .page-numbers:nth-last-child(1) {
  padding-right: 0;
}
.pagination .page-numbers.current {
  color: #FDE015;
  font-weight: bold;
}

#posts {
  position: relative;
  top: -120px;
}

.category-selector {
  margin-top: 60px;
  padding: 0 0 0 7.6%;
}
.category-selector .cat-list-wrap p {
  font-size: 18px;
}
.category-selector .cat-list-wrap a {
  text-transform: none;
}
.category-selector .cat-list-wrap:hover .cat-list {
  opacity: 1;
  pointer-events: initial;
}
.category-selector .cat-list-wrap .cat-list {
  opacity: 0;
  pointer-events: none;
  transition: all 250ms ease-in-out;
}
.category-selector .cat-list-wrap .cat-list li {
  font-weight: bold;
  margin-right: 45px;
}
.category-selector .cat-list-wrap .cat-list li a {
  color: #d5dedf;
  transition: all 250ms ease-in-out;
}
.category-selector .cat-list-wrap .cat-list li a:hover {
  color: yellow;
}
.category-selector .cat-list-wrap .cat-list li.is-selected a {
  color: #FDE015;
}

.error404 .error-icons {
  margin-bottom: 75px;
}
.error404 .error-icons svg {
  height: 45px;
  width: 68px;
  margin: 0 30px;
  animation-iteration-count: infinite;
  animation-name: flashing;
  opacity: 0.1;
  filter: grayscale(1);
}
.error404 .error-icons svg:nth-child(1) {
  animation-delay: 0.4s;
  animation-duration: 1.4s;
}
.error404 .error-icons svg:nth-child(2) {
  animation-delay: 0.3s;
  animation-duration: 1s;
}
.error404 .error-icons svg:nth-child(3) {
  animation-delay: 0.5s;
  animation-duration: 1.2s;
}
.error404 .error-wrapper {
  background-image: url("../images/404/404-bg.jpg");
  background-size: cover;
  background-position: center;
  margin: 190px 0 50px;
  padding: 60px 0 190px;
  min-height: 61vh;
  width: 100%;
}
.error404 .error-wrapper .bg-fade-mid {
  height: 100%;
  z-index: 1;
  top: 0;
}
.error404 .error-wrapper .error-icons, .error404 .error-wrapper .the-content {
  position: relative;
  z-index: 2;
}
.error404 .error-wrapper h1 {
  font-size: 250px;
  line-height: 0.95em;
  color: #FDE015;
}
.error404 .error-wrapper .btn {
  margin-top: 25px;
  min-width: 280px;
}
.error404 footer {
  margin-top: 0;
}

@keyframes flashing {
  from {
    opacity: 0.1;
    filter: grayscale(1);
  }
  10% {
    filter: grayscale(0);
  }
  50% {
    opacity: 1;
  }
  90% {
    filter: grayscale(0);
  }
  to {
    opacity: 0.1;
    filter: grayscale(1);
  }
}
.points-bg {
  position: absolute;
  top: -200px;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}
.points-bg video,
.points-bg img {
  height: 100%;
  object-fit: cover;
}
.points-bg:before {
  content: "";
  height: 100%;
  width: 100%;
  z-index: 0;
  position: absolute;
  background: #000;
  background: linear-gradient(0deg, black 0%, rgba(0, 0, 0, 0.75) 20%, rgba(0, 0, 0, 0) 90%, black 100%);
}

.video-container {
  position: absolute;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  height: 160px;
  width: 100%;
  z-index: 99;
  margin-bottom: -160px;
  padding: 40px 3%;
  transition: all 250ms ease-in-out;
}
header .bg-filter {
  display: block;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  background: linear-gradient(black 15%, rgba(0, 0, 0, 0.3));
  transition: all 250ms ease-in-out;
}
header .header-left img, header .header-left svg {
  height: 85px;
  object-fit: contain;
  transition: all 250ms ease-in-out;
}
header .header-right {
  gap: 40px;
}
header .header-right .btn-tel {
  transition: all 250ms ease-in-out;
}
header .header-right .btn-tel:hover {
  color: #FDE015;
}
header .header-right .menu-langues {
  margin: 0 10px 0 -10px;
}
header .header-right .menu-langues li {
  padding: 12px 30px;
  border-left: 1px solid white;
  transition: all 250ms ease-in-out;
}
header .header-right .menu-langues li a {
  display: block;
  color: #fff;
  transition: all 250ms ease-in-out;
}
header .header-right .menu-langues li a:hover {
  color: #FDE015;
}
header.shrink, header.active {
  padding: 20px 3%;
  height: 100px;
}
header.shrink .bg-filter, header.active .bg-filter {
  opacity: 1;
}
header.shrink .header-left img, header.shrink .header-left svg, header.active .header-left img, header.active .header-left svg {
  height: 60px;
}
header.active .mobile-tel {
  opacity: 0;
  pointer-events: none;
}
header .site-logo {
  opacity: 1;
  transition: all 250ms ease-in-out;
}
header.sub-open .site-logo {
  opacity: 0;
  pointer-events: none;
}
header.sub-open .arrow-sub-back {
  opacity: 1;
  pointer-events: auto;
}

.mobile-tel {
  display: none;
  border: 1px solid #FDE015;
  border-radius: 40px;
  height: 30px;
  width: 30px;
  opacity: 1;
  transition: all 250ms ease-in-out;
}
.mobile-tel svg {
  height: 18px;
  width: 18px;
}
.mobile-tel:hover svg path {
  fill: #FDE015;
}

#mobile-nav {
  position: fixed;
  z-index: 80;
  top: 0;
  left: -100vw;
  height: 100vh;
  width: 100vw;
  padding: 160px 0 0;
  background-color: #000;
  transition: all 250ms ease-in-out;
}
#mobile-nav.active {
  left: 0;
}
#mobile-nav .top-side {
  position: relative;
  padding: 0 5% 85px;
  height: 100%;
  display: flex;
  align-items: center;
}
#mobile-nav .top-side ul {
  position: relative;
  left: 0;
  transition: all 250ms ease-in-out;
}
#mobile-nav .top-side ul > li {
  width: 25vw;
}
#mobile-nav .top-side ul > li > a {
  font: normal 60px/80px Teko, sans-serif;
  transition: all 250ms ease-in-out;
}
#mobile-nav .top-side ul > li > a:hover {
  color: #FDE015;
}
#mobile-nav .top-side ul > li .sub-menu {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: absolute;
  left: 350px;
  top: 0;
  height: 100%;
  width: fit-content;
  opacity: 0;
  transition: all 250ms ease-in-out;
  text-align: center;
}
#mobile-nav .top-side ul > li .sub-menu li {
  border: 1px solid transparent;
  border-width: 1px 0;
  width: 20vw;
  padding: 15px 0;
  transition: all 250ms ease-in-out;
}
#mobile-nav .top-side ul > li .sub-menu li a {
  font: bold 25px/1em GT America, sans-serif;
  text-transform: none;
  color: #C3C3C3;
  padding: 15px 0;
  opacity: 0.5;
}
#mobile-nav .top-side ul > li .sub-menu li:hover {
  border: 1px solid #FDE015;
  border-width: 1px 0;
}
#mobile-nav .top-side ul > li .sub-menu li:hover a {
  color: #fff;
  opacity: 1;
}
#mobile-nav .top-side ul > li.menu-item-has-children:hover .sub-menu {
  opacity: 1;
}
#mobile-nav .bottom-side {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 25px 5%;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
}
#mobile-nav .bottom-side .left-side h4 {
  margin-right: 20px;
  font-weight: bold;
}
#mobile-nav .bottom-side .left-side .menu-tel {
  transition: all 250ms ease-in-out;
}
#mobile-nav .bottom-side .left-side .menu-tel:hover h4 {
  color: #FDE015;
}
#mobile-nav .bottom-side .left-side .menu-tel h4 {
  transition: all 250ms ease-in-out;
}
#mobile-nav .bottom-side .left-side .menu-address {
  transition: all 250ms ease-in-out;
}
#mobile-nav .bottom-side .left-side .menu-address:hover h4 {
  color: #FDE015;
}
#mobile-nav .bottom-side .left-side .menu-address h4 {
  transition: all 250ms ease-in-out;
  font-weight: normal;
  text-transform: none;
}
#mobile-nav .bottom-side .right-side a {
  margin-left: 5px;
}
#mobile-nav .bottom-side .right-side a svg {
  height: 30px;
  width: 30px;
  fill: #fff;
  transition: all 250ms ease-in-out;
}
#mobile-nav .bottom-side .right-side a:hover svg {
  fill: #FDE015;
}
#mobile-nav.sub-open .nav-mob-img, #mobile-nav.sub-open .mob-bottom {
  left: -100vw;
}

.mobile-nav-trigger {
  cursor: pointer;
}
.mobile-nav-trigger span {
  display: block;
  height: 2px;
  width: 28px;
  background-color: #fff;
  margin: 8px 0;
  border-radius: 10px;
  transition: all 250ms ease-in-out;
}
.mobile-nav-trigger span:nth-child(1) {
  margin-top: 0;
}
.mobile-nav-trigger span:nth-child(3) {
  margin-bottom: 0;
}

header.active .mobile-nav-trigger span:nth-child(1) {
  transform: rotateZ(45deg) translate(6px, 6px);
}
header.active .mobile-nav-trigger span:nth-child(2) {
  opacity: 0;
}
header.active .mobile-nav-trigger span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

.menu-bg-img-1, .menu-bg-img-2 {
  opacity: 0;
  display: block;
  position: absolute;
  right: 0;
  top: 160px;
  height: 100%;
  width: 40vw;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  filter: grayscale(1);
  transition: all 250ms ease-in-out;
}
.menu-bg-img-1.active, .menu-bg-img-2.active {
  opacity: 20%;
}
.menu-bg-img-1 .black-filter, .menu-bg-img-2 .black-filter {
  display: block;
  position: absolute;
  top: 0;
  left: -1px;
  width: 30%;
  height: 100%;
  background: linear-gradient(90deg, black 0%, rgba(0, 0, 0, 0) 100%);
}

.mob-bottom {
  position: absolute;
  z-index: 4;
  bottom: 0;
  left: 0;
  width: 100%;
  transition: all 250ms ease-in-out;
}
.mob-bottom .mob-rdv, .mob-bottom .mob-tel {
  width: 100%;
  padding: 14px 5px;
  text-align: center;
  font: bold 16px/18px GT America, sans-serif;
}
.mob-bottom .mob-rdv {
  background-color: #FDE015;
  color: #000;
}
.mob-bottom .mob-tel {
  background-color: #000;
  color: #fff;
}

.arrow-sub-back {
  position: fixed;
  top: 32px;
  left: 5%;
  opacity: 0;
  pointer-events: none;
  transition: all 250ms ease-in-out;
  align-items: center;
  color: #FDE015;
  font: normal 15px/1em GT America, sans-serif;
  text-transform: uppercase;
}
.arrow-sub-back svg {
  margin-right: 8px;
}
.arrow-sub-back:before {
  content: "";
  width: 18px;
  height: 18px;
  position: absolute;
  left: -4px;
  border: 1px solid #FDE015;
  border-radius: 18px;
}

.nav-mob-img {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  background-position: center;
  background-size: cover;
  opacity: 0.2;
  height: 50vh;
  width: 100%;
  filter: grayscale(1);
  transition: all 250ms ease-in-out;
}
.nav-mob-img:after {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(180deg, #000, rgba(0, 0, 0, 0) 75%);
}

.submenu-services {
  position: fixed !important;
  left: 100vw;
  top: 60px;
  opacity: 0;
  justify-content: start;
  visibility: hidden;
  transition: all 250ms ease-in-out;
}
.submenu-services .splide__track:before {
  content: "";
  display: block;
  height: 1px;
  width: 100%;
  background-color: yellow;
  position: absolute;
  top: 42%;
}
.submenu-services .splide__track:after {
  content: "";
  display: block;
  height: 1px;
  width: 100%;
  background-color: yellow;
  position: absolute;
  top: 58%;
}
.submenu-services.sub-open {
  opacity: 1;
  visibility: visible;
  left: 0 !important;
}
.submenu-services.sub-open li a {
  pointer-events: initial;
}
.submenu-services li {
  width: 100vw;
  padding: 15px 5vw;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #707070;
  opacity: 0.1;
  transition: all 250ms ease-in-out;
}
.submenu-services li.is-visible {
  opacity: 0.2;
}
.submenu-services li.is-active {
  color: #fff;
  opacity: 1;
}
.submenu-services li.is-next, .submenu-services li.is-next {
  color: #707070;
  opacity: 0.4;
}
.submenu-services li a {
  pointer-events: none;
}
.submenu-services .splide__arrows {
  display: none !important;
}

.lang-item {
  list-style: none;
}
.lang-item a {
  transition: all 0.3s ease-out;
}
.lang-item:hover a {
  color: #FDE015;
}

footer {
  position: relative;
  margin-top: 200px;
}
footer .top-side {
  margin-bottom: 35px;
}
footer .top-side .left-side h4 {
  color: #FDE015;
  font-weight: bold;
  margin-bottom: 8px;
}
footer .top-side .left-side .footer-address {
  text-transform: none;
  font: normal 18px/1.2em GT America, sans-serif;
  margin-bottom: 10px;
  transition: all 250ms ease-in-out;
}
footer .top-side .left-side .footer-address:hover {
  color: #FDE015;
}
footer .top-side .left-side .footer-phone {
  font: bold 20px/24px GT America, sans-serif;
  transition: all 250ms ease-in-out;
}
footer .top-side .left-side .footer-phone:hover {
  color: #FDE015;
}
footer .top-side .site-logo img {
  width: 100%;
}
footer .top-side .right-side h4 {
  text-align: right;
  margin-bottom: 8px;
}
footer .top-side .right-side h4:nth-child(1) {
  font-weight: bold;
  color: #FDE015;
}
footer .top-side .right-side h4:nth-child(2) {
  text-transform: none;
}
footer .top-side .right-side .socials-icon {
  margin-top: 6px;
}
footer .top-side .right-side .socials-icon a {
  margin-left: 5px;
}
footer .top-side .right-side .socials-icon a svg {
  height: 25px;
  width: 25px;
  fill: #fff;
  transition: all 250ms ease-in-out;
}
footer .top-side .right-side .socials-icon a:hover svg {
  fill: #FDE015;
}
footer .mid-side {
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-width: 1px 0;
}
footer .mid-side .wrapper {
  padding: 20px 0;
}
footer .mid-side .wrapper ul li {
  margin: 30px 0;
  max-width: 200px;
  text-align: center;
  line-height: 20px;
}
footer .mid-side .wrapper ul li a {
  font: normal 14px/22px GT America, sans-serif;
  color: #d5dedf;
  transition: all 250ms ease-in-out;
}
footer .mid-side .wrapper ul li a:hover {
  color: #FDE015;
}
footer .bottom-side {
  padding: 50px 0;
  font: bold 14px/22px GT America, sans-serif;
  color: #2C2C2C;
}
footer .bottom-side #rubik-api-copyright.natural span, footer .bottom-side #rubik-api-copyright.white span {
  color: #2C2C2C;
}

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

.gform_wrapper .gform_validation_errors {
  display: block;
  text-align: center;
  margin: 30px auto;
}
.gform_wrapper .gform_validation_errors h2, .gform_wrapper .gform_validation_errors .gform_submission_error {
  font: bold 24px/32px sans-serif;
}

.gform_confirmation_wrapper {
  display: block;
  text-align: center;
  margin: 30px auto;
}
.gform_confirmation_wrapper .gform_confirmation_message {
  display: block;
  text-align: center;
  font: bold 22px/32px sans-serif;
  color: #fff;
}

/*
 * 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: 50px;
  border: none;
  border-radius: 0;
  padding: 15px;
  font: 400 16px/18px GT America, sans-serif;
  color: black;
  background: #ffffff;
  cursor: pointer;
}
select::placeholder, select .gf_placeholder {
  color: grey !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_button {
  background-color: transparent;
  border: 1px solid #FDE015;
  border-radius: 40px;
  padding: 12px 22px;
  min-width: 222px;
  color: #fff;
  font: bold 15px/1em GT America, sans-serif;
  text-transform: uppercase;
  transition: all 250ms ease-in-out;
  cursor: pointer;
}
.gform_button:hover {
  color: #000;
  background-color: #FDE015;
}

@media (max-width: 1600px) {
  .service-cir .wrapper .right-side {
    padding: 0;
  }

  .carousel-products:before {
    width: 7%;
  }
  .carousel-products .carousel__slide {
    width: 75vw;
  }

  .posts-teasers .post-teaser {
    width: 46%;
  }
}
@media (max-width: 1500px) {
  .service-teinte .teinte-option.option-color {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media (max-width: 1399px) {
  h1 {
    font: normal 70px/1em Teko, sans-serif;
  }

  h3 {
    font: normal 70px/80px Teko, sans-serif;
  }

  h6 {
    font: bold 26px/40px GT America, sans-serif;
  }

  p {
    font: normal 18px/26px GT America, sans-serif;
  }

  #blog .wrapper .carousel .carousel__slide {
    width: var(--carousel-slide-width, 50%);
  }
  #blog .wrapper .carousel .carousel__slide.is-selected {
    width: var(--carousel-slide-width, 50%);
  }

  .serv-banner .banner-content .left-side {
    padding: 60px 40px;
  }

  .avantages-serv .wrap-avantages .single-avantage {
    padding: 0 20px;
  }

  .protection .protection-forfaits .right-side .image img {
    margin-top: 40px;
  }

  .service-teinte .teinte-images {
    margin: 50px 0 -10px;
  }

  .carousel-products:before {
    width: 0;
  }
  .carousel-products .carousel__slide {
    width: 90vw;
  }

  .carousel-serv .carousel__slide:nth-child(1n) {
    width: 500px;
  }
  .carousel-serv .carousel__slide:nth-child(1n) img {
    width: 500px;
    height: 600px;
  }
  .carousel-serv .carousel__slide:nth-child(2n) {
    width: 300px;
    margin-left: -50px;
  }
  .carousel-serv .carousel__slide:nth-child(2n) img {
    width: 300px;
    height: 335px;
  }
  .carousel-serv .carousel__slide:nth-child(3n) {
    width: 360px;
    margin: 0 20px;
  }
  .carousel-serv .carousel__slide:nth-child(3n) img {
    width: 360px;
    height: 500px;
  }
  .carousel-serv .carousel__slide:nth-child(4n) {
    width: 450px;
    margin: 0 20px;
  }
  .carousel-serv .carousel__slide:nth-child(4n) img {
    width: 450px;
    height: 425px;
  }
  .carousel-serv .carousel__slide:nth-child(5n) {
    width: 350px;
    margin: 0 10px;
  }
  .carousel-serv .carousel__slide:nth-child(5n) img {
    width: 350px;
    height: 250px;
  }

  .servs-wrap .servs-single .left-side {
    height: 260px;
    width: 260px;
  }
  .servs-wrap .servs-single .left-side svg {
    height: 160px;
    width: 160px;
  }

  .contact-banner .contact-content .left-side .address-wrap a.contact-address {
    width: 90%;
  }

  .about-reason .right-side .reason-num {
    width: 240px;
    min-width: 240px;
  }
  .about-reason .right-side .reason-num h2 {
    font-size: 200px;
  }

  .about-reason .left-side {
    padding-right: 0;
  }
}
@media screen and (min-width: 768px) and (max-height: 650px) {
  #mobile-nav .top-side ul > li a {
    font: normal 50px/70px Teko, sans-serif;
  }
  #mobile-nav .top-side ul > li .sub-menu li {
    width: 40vw;
    padding: 5px 0;
  }
  #mobile-nav .top-side ul > li .sub-menu li a {
    font: bold 23px/1em GT America, sans-serif;
    line-height: 28px !important;
  }
  #mobile-nav .top-side > ul > li a {
    line-height: 54px !important;
  }
}
@media (max-width: 1199px) {
  h4 {
    font: normal 16px/1.2em GT America, sans-serif;
  }

  .slice {
    margin: 125px 0;
  }

  .sec-title-left .yellow-line {
    width: 80px;
  }

  #mobile-nav .top-side ul > li a {
    font: normal 50px/70px Teko, sans-serif;
  }
  #mobile-nav .top-side ul > li .sub-menu li {
    width: 40vw;
  }
  #mobile-nav .top-side ul > li .sub-menu li a {
    font: bold 23px/1em GT America, sans-serif;
  }

  footer {
    margin-top: 100px;
  }
  footer .mid-side .wrapper ul {
    flex-wrap: wrap;
  }
  footer .mid-side .wrapper ul li {
    max-width: max-content;
    margin: 10px 50px;
  }

  .hero {
    background-position: 25% 0;
  }
  .hero .wrapper {
    width: 75%;
  }

  .services-blocs {
    top: -226px;
    margin-bottom: -150px;
  }
  .services-blocs .wrapper .single-serv a .top-side {
    height: 100px;
  }
  .services-blocs .wrapper .single-serv a .image {
    height: 300px;
  }

  #about .wrapper .top-side {
    width: 75%;
  }
  #about .wrapper .bottom-side .dots-wrap .single-dot:nth-child(1) {
    left: 12%;
    top: 27%;
  }
  #about .wrapper .bottom-side .dots-wrap .single-dot:nth-child(6) {
    left: 81%;
    top: 49%;
  }

  #blog {
    padding: 80px 0;
  }
  #blog .wrapper .carousel {
    margin-top: 25px;
  }
  #blog .wrapper .carousel .carousel__slide {
    height: 350px;
    width: var(--carousel-slide-width, 60%);
  }
  #blog .wrapper .carousel .carousel__slide.is-selected {
    height: 500px;
    width: var(--carousel-slide-width, 60%);
  }
  #blog .wrapper .carousel .carousel__nav .carousel__button.is-prev {
    margin-left: -5%;
  }
  #blog .wrapper .carousel .carousel__nav .carousel__button.is-next {
    margin-right: -5%;
  }
  #blog .wrapper .carousel .carousel__nav .carousel__button:hover.is-next {
    margin-right: -5.5%;
  }
  #blog .wrapper .carousel .carousel__nav .carousel__button:hover.is-prev {
    margin-left: -5.5%;
  }

  .avantages-serv .wrap-avantages {
    margin-bottom: -100px;
  }
  .avantages-serv .wrap-avantages .single-avantage {
    margin-bottom: 100px;
  }

  .serv-footer .left-side {
    width: 80%;
  }

  .service-cir .wrapper .left-side {
    margin-bottom: 50px;
    padding-left: 0;
  }
  .service-cir .wrapper .left-side h2 {
    text-align: center;
  }
  .service-cir .wrapper .right-side h2, .service-cir .wrapper .right-side .img-legend, .service-cir .wrapper .right-side .the-content, .service-cir .wrapper .right-side .btn {
    margin-left: 0;
  }
  .service-cir .wrapper .right-side h2 {
    text-align: center;
  }
  .service-cir .wrapper .right-side .image {
    display: flex;
    justify-content: center;
  }
  .service-cir .wrapper .right-side .img-legend {
    text-align: center;
  }
  .service-cir .wrapper .right-side .the-content {
    width: 80%;
    margin: auto;
    text-align: center;
  }
  .service-cir .wrapper .right-side .btn {
    width: fit-content;
    margin: 30px auto 0;
  }

  .carousel-products .carousel__slide .right-side {
    border-left: none;
    border-top: 1px solid #FDE015;
    padding-top: 10px;
  }
  .carousel-products .carousel__slide .right-side .single-note {
    min-width: 21%;
    margin: 25px 1.5%;
  }
  .carousel-products .carousel__slide .right-side .single-note h4 br {
    display: none;
  }

  .double-title .fade-title {
    font-size: 90px;
    top: -40%;
  }

  .service-teinte .teinte-images {
    height: 260px;
  }
  .service-teinte .teinte-images .svg-wrap {
    height: 260px;
    width: 100%;
  }

  .promos-wrap .right-side .single-promo-content {
    padding: 0 5%;
  }

  .posts-teasers .post-teaser .post-content h6 {
    font-size: 20px;
    line-height: 1.2em;
  }

  .quote-wrap h2 {
    font-size: 45px;
    padding: 0 8%;
  }

  .about-reason {
    margin: 125px auto;
  }
  .about-reason .right-side .reason-num {
    width: 180px;
    min-width: 180px;
  }
  .about-reason .right-side .reason-num h2 {
    font-size: 150px;
  }

  .serv-banner .about-banner-img img {
    height: 400px;
  }

  .year-slider.slice .carousel__slide {
    width: 400px;
  }
}
@media (max-width: 991px) {
  h1 {
    font: normal 58px/0.9em Teko, sans-serif;
  }

  h3 {
    font: normal 58px/62px Teko, sans-serif;
  }

  a {
    font: bold 15px/1em GT America, sans-serif;
  }

  p, li {
    font: normal 16px/26px GT America, sans-serif;
  }

  #mobile-nav .top-side ul > li {
    width: 40vw;
  }
  #mobile-nav .bottom-side .menu-address {
    display: none;
  }

  footer .top-side .wrapper {
    text-align: center;
  }
  footer .top-side .wrapper .site-logo {
    order: -1;
  }
  footer .top-side .wrapper .left-side, footer .top-side .wrapper .right-side {
    margin-top: 40px;
  }
  footer .top-side .wrapper .right-side .socials-icon a {
    margin-left: 10px;
    margin-right: 10px;
  }
  footer .top-side .wrapper .right-side .socials-icon a svg {
    height: 30px;
    width: 30px;
  }

  .hero .wrapper {
    margin-top: 60px;
    margin-bottom: 0;
  }

  .services-blocs {
    top: 0;
    margin: 0;
  }
  .services-blocs .wrapper {
    width: 100%;
  }
  .services-blocs .wrapper .single-serv {
    width: 50%;
  }
  .services-blocs .wrapper .single-serv a .top-side {
    height: 80px;
  }
  .services-blocs .wrapper .single-serv:hover a {
    top: 0;
  }

  #about .wrapper .sec-title-left {
    top: 12vh;
  }
  #about .wrapper .bottom-side .dots-wrap .single-dot .dot-icon:hover:before {
    height: 85px;
  }
  #about .wrapper .bottom-side .dots-wrap .single-dot:nth-child(1) {
    left: 11%;
    top: 26%;
  }
  #about .wrapper .bottom-side .dots-wrap .single-dot:nth-child(1) h5 {
    top: -89px;
  }
  #about .wrapper .bottom-side .dots-wrap .single-dot:nth-child(2) {
    left: 29%;
    top: 42%;
  }
  #about .wrapper .bottom-side .dots-wrap .single-dot:nth-child(2) h5 {
    top: -114px;
  }
  #about .wrapper .bottom-side .dots-wrap .single-dot:nth-child(2) .dot-icon:hover:before {
    height: 110px;
  }
  #about .wrapper .bottom-side .dots-wrap .single-dot:nth-child(3) {
    left: 46%;
    top: 12%;
  }
  #about .wrapper .bottom-side .dots-wrap .single-dot:nth-child(3) h5 {
    top: -64px;
  }
  #about .wrapper .bottom-side .dots-wrap .single-dot:nth-child(3) .dot-icon:hover:before {
    height: 60px;
  }
  #about .wrapper .bottom-side .dots-wrap .single-dot:nth-child(4) {
    left: 53%;
    top: 53%;
  }
  #about .wrapper .bottom-side .dots-wrap .single-dot:nth-child(4) h5 {
    bottom: -89px;
  }
  #about .wrapper .bottom-side .dots-wrap .single-dot:nth-child(5) {
    left: 70%;
    top: 26%;
  }
  #about .wrapper .bottom-side .dots-wrap .single-dot:nth-child(5) h5 {
    top: -89px;
  }
  #about .wrapper .bottom-side .dots-wrap .single-dot:nth-child(6) {
    left: 80%;
    top: 51%;
  }
  #about .wrapper .bottom-side .dots-wrap .single-dot:nth-child(6) h5 {
    bottom: -89px;
  }

  #blog .wrapper .carousel .carousel__slide .post-text .the-content p {
    font-size: 12px;
  }

  .posts-teasers .post-teaser {
    width: 44.8%;
  }

  .serv-banner .banner-content {
    margin-top: 20px;
  }
  .serv-banner .banner-content .left-side {
    text-align: center;
    background-color: transparent;
  }
  .serv-banner .banner-content .left-side h2 {
    margin-bottom: 15px;
  }

  .protection .protection-forfaits {
    margin-top: 40px;
  }
  .protection .protection-forfaits .left-side {
    padding: 0;
  }
  .protection .protection-forfaits .right-side {
    min-height: 400px;
  }
  .protection .protection-forfaits .right-side .image {
    height: 320px;
  }

  .avantages-serv {
    padding: 0 0 50px;
  }

  .service-teinte .teinte-images {
    margin: 60px 0 50px;
    height: 360px;
  }
  .service-teinte .teinte-images .svg-wrap {
    height: 360px;
  }
  .service-teinte .teinte-images .svg-back {
    margin-top: 30px;
  }

  .carousel-products .carousel__slide {
    background: linear-gradient(180deg, #1a1a1a 10%, #000 45%);
    border: 1px solid rgba(195, 195, 195, 0.2);
  }
  .carousel-products .carousel__slide .left-side {
    padding: 40px;
  }
  .carousel-products .carousel__slide .left-side .product-content {
    margin-top: 40px;
  }

  .blocs-wrap .single-bloc .wrapper {
    flex-direction: column;
  }
  .blocs-wrap .single-bloc .left-side {
    padding: 0;
  }
  .blocs-wrap .single-bloc .left-side img {
    height: 300px;
    object-fit: cover;
    width: 100%;
  }
  .blocs-wrap .single-bloc .right-side {
    text-align: center;
    padding: 40px 3vw 0;
  }
  .blocs-wrap .single-bloc:nth-child(even) .wrapper {
    flex-direction: column;
  }
  .blocs-wrap .single-bloc:nth-child(even) .left-side {
    padding: 0;
  }
  .blocs-wrap .single-bloc:nth-child(even) .right-side {
    text-align: center;
    padding: 40px 3vw 0;
  }

  .servs-wrap .servs-single .left-side {
    height: 200px;
    width: 200px;
  }
  .servs-wrap .servs-single .left-side svg {
    height: 100px;
    width: 100px;
  }

  #promos-carousel .carousel__slide img {
    height: 400px;
  }

  .promos-wrap .left-side {
    padding: 0;
  }

  .promos-wrap .right-side {
    height: 500px;
    margin: 80px 0;
  }
  .promos-wrap .right-side .single-promo-content {
    max-width: 100%;
    max-height: 500px;
    overflow-y: scroll;
    padding: 20px 10%;
  }

  .promo-popup .promos-wrap .right-side {
    height: fit-content;
    margin: 50px 0 40px;
  }

  .page-template-promotions .serv-banner {
    padding-bottom: 20px;
  }

  .month-post .right-side {
    padding: 80px 30px;
  }

  .posts-teasers .post-teaser img {
    height: 240px;
    min-height: 240px;
  }

  .promo-popup .promo-icon {
    position: absolute;
    left: -50px;
    top: -50px;
  }
  .promo-popup .promo-icon svg {
    height: 100px;
    width: 100px;
  }

  .quote-wrap h2 {
    font-size: 40px;
  }

  .contact-content .right-side {
    padding-top: 100px;
  }

  .google-map {
    height: 75vh;
  }

  .about-reason .left-side {
    text-align: center;
    margin-bottom: 80px;
  }
  .about-reason .left-side .image {
    display: none;
  }
}
@media (max-width: 767px) {
  .sec-title-left {
    display: none;
  }

  header {
    height: 120px;
    padding: 20px 5%;
  }
  header .header-left img, header .header-left svg {
    height: 60px;
  }
  header .header-right .btn-rdv, header .header-right .btn-tel {
    display: none;
  }

  header.shrink, header.active {
    padding: 15px 3%;
    height: 80px;
  }
  header.shrink .header-left img, header.shrink .header-left svg, header.active .header-left img, header.active .header-left svg {
    height: 50px;
  }

  header .header-right .menu-langues li {
    padding: 12px 20px;
  }

  header.active .header-right .menu-langues li {
    border-left: none;
  }

  .menu-bg-img-1, .menu-bg-img-2 {
    display: none !important;
  }

  #mobile-nav {
    padding: 110px 0 0;
  }
  #mobile-nav .top-side {
    align-items: start;
    overflow-y: scroll;
    overflow-x: hidden;
    padding: 40px 40px 100px;
  }
  #mobile-nav .top-side ul > li {
    width: 100%;
  }
  #mobile-nav .top-side ul > li.menu-item-has-children {
    display: flex;
    align-items: center;
  }
  #mobile-nav .top-side ul > li.menu-item-has-children span {
    margin-right: 5px;
  }
  #mobile-nav .top-side ul > li.menu-item-has-children > a:after {
    content: "";
    border: 1px solid white;
    transform: rotate(45deg);
    border-width: 1px 1px 0 0;
    width: 14px;
    height: 14px;
    display: inline-block;
    margin-bottom: 8px;
  }
  #mobile-nav .top-side ul > li .sub-menu {
    display: none !important;
  }
  #mobile-nav .bottom-side .menu-address {
    display: none;
  }
  #mobile-nav.sub-open .top-side ul {
    left: -100vw;
  }

  .mobile-tel {
    display: inline-block;
  }

  .hero {
    min-height: 70vh;
  }
  .hero .fade-header {
    display: none;
  }
  .hero .wrapper {
    min-height: 70vh;
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 160px 5% 100px;
    display: flex;
    align-items: center;
    background: linear-gradient(180deg, black, rgba(0, 0, 0, 0));
  }

  #about .wrapper .bottom-side .dots-wrap {
    display: none;
  }

  #blog {
    padding-bottom: 0;
    margin-bottom: 0;
  }
  #blog .wrapper .carousel .carousel__slide {
    height: 400px;
    width: var(--carousel-slide-width, 100%);
    padding: 3% 0;
  }
  #blog .wrapper .carousel .carousel__slide .post-cat {
    left: 0;
  }
  #blog .wrapper .carousel .carousel__slide .post-text {
    padding: 0 8%;
  }
  #blog .wrapper .carousel .carousel__slide .post-text .the-content {
    display: none;
  }
  #blog .wrapper .carousel .carousel__slide.is-selected {
    height: 400px;
    width: var(--carousel-slide-width, 100%);
  }
  #blog .wrapper .carousel .carousel__nav .carousel__button {
    background-image: url("../images/arrow-slider-small.svg");
    width: 35px;
  }
  #blog .wrapper .carousel .carousel__nav .carousel__button:before {
    height: 25px;
    width: 25px;
    left: -7px;
  }

  .posts-teasers .post-teaser {
    width: 75%;
    margin: 15px auto;
  }

  .pagination .page-numbers:nth-last-child(1) {
    padding-right: 10px;
  }

  .serv-banner {
    margin-top: 150px;
  }

  .services-offerts .services-offerts-wrap {
    margin-top: 80px;
  }
  .services-offerts .services-offerts-wrap .single-offert {
    padding: 40px 30px;
  }
  .services-offerts .services-offerts-wrap .single-offert .round-icon-wrap {
    top: -5px;
    padding: 20px;
    margin-bottom: 20px;
  }
  .services-offerts .services-offerts-wrap .single-offert > h2 {
    margin-top: 25px;
    margin-bottom: 15px;
  }

  .serv-footer .wrapper {
    width: 100%;
    padding: 0;
  }
  .serv-footer .wrapper .left-side {
    width: 100%;
    padding: 50px 5vw;
  }
  .serv-footer .wrapper .left-side .btn {
    min-width: 220px;
    margin-top: 20px;
  }
  .serv-footer .bg-right-side {
    width: 100%;
    right: 0;
  }

  .service-cir .half-bg {
    display: none;
  }
  .service-cir .wrapper .left-side h2 {
    margin-bottom: 50px;
  }
  .service-cir .wrapper .left-side .single-cir .cir-icon {
    margin-right: 0;
    margin-bottom: 25px;
  }
  .service-cir .wrapper .left-side .single-cir .cir-content {
    text-align: center;
  }

  .blocs-wrap .single-bloc.slice {
    margin: 160px 0;
  }

  .double-title .fade-title {
    font-size: 70px;
    top: -60%;
  }

  .servs-wrap .servs-single {
    margin: 100px 0 0;
    flex-direction: column;
  }
  .servs-wrap .servs-single:nth-child(even) {
    flex-direction: column;
  }
  .servs-wrap .servs-single .right-side h2 {
    text-align: center;
    margin: 20px 0;
  }

  .promo-popup .left-side img {
    height: 350px;
  }

  .month-post .left-side .post-cat {
    padding: 0 30px;
    min-width: auto;
  }
  .month-post .left-side .post-cat h4 {
    text-align: left;
  }

  .category-selector {
    padding: 0;
    text-align: center;
    margin-top: 30px;
  }
  .category-selector .cat-list-wrap .cat-list {
    justify-content: center;
    margin-top: 10px;
  }
  .category-selector .cat-list-wrap .cat-list li {
    margin: 0 2%;
  }

  .pagination {
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .post-hero.slice {
    margin-top: 85px;
  }
  .post-hero.slice .hero-thumb img {
    height: 400px;
  }

  .quote-wrap .quote-mark {
    font-size: 100px;
    position: initial;
  }
  .quote-wrap h2 {
    font-size: 32px;
    padding: 0 5%;
  }

  .serv-banner .about-banner-img img {
    height: 300px;
  }

  .year-slider.slice {
    margin: 80px 0;
  }

  .servs-gallery .carousel__nav {
    display: none;
  }

  .servs-gallery .carousel__slide, .servs-gallery .carousel__slide img {
    width: 340px;
    height: 200px;
  }
}
@media (max-width: 575px) {
  h1 {
    font: normal 36px/0.9em Teko, sans-serif;
  }

  h2 {
    font: normal 30px/1.1em Teko, sans-serif;
  }

  h3 {
    font: normal 36px/1.1em Teko, sans-serif;
  }

  h4 {
    font: normal 15px/1.2em GT America, sans-serif;
  }

  h6 {
    font: bold 14px/15px GT America, sans-serif;
  }

  a {
    font: bold 14px/1em GT America, sans-serif;
  }

  li, p {
    font: normal 16px/18px GT America, sans-serif;
  }

  .btn-share span {
    font: bold 14px/1em GT America, sans-serif;
    padding: 18px 25px;
  }

  #mobile-nav .top-side ul > li a {
    font: normal 44px/57px Teko, sans-serif;
  }
  #mobile-nav .top-side ul > li .sub-menu li a {
    font: bold 20px/1em GT America, sans-serif;
  }
  #mobile-nav .top-side ul > li.menu-item-has-children > a:after {
    margin-bottom: 5px;
  }

  footer .top-side .left-side .footer-phone {
    font: bold 16px/20px GT America, sans-serif;
  }
  footer .top-side .left-side .footer-address {
    width: 90%;
    margin: 8px auto 10px;
    font: normal 16px/1.2em GT America, sans-serif;
  }

  .hero .wrapper .hero-content .btn {
    margin-bottom: 20px;
  }

  .serv-banner {
    min-height: 35vh;
  }
  .serv-banner h4 {
    margin-bottom: 10px;
  }
  .serv-banner .banner-content .left-side {
    padding: 20px 5px;
  }
  .serv-banner .banner-content .image img {
    height: 350px;
  }

  .avantages-serv h2 {
    margin-bottom: 50px;
  }
  .avantages-serv .wrap-avantages {
    margin-bottom: -50px;
  }
  .avantages-serv .wrap-avantages .single-avantage {
    margin-bottom: 50px;
  }

  .services-offerts .services-offerts-wrap .single-offert {
    padding: 40px 20px;
  }
  .services-offerts .services-offerts-wrap .single-offert h2 {
    margin-bottom: 15px;
  }
  .services-offerts .services-offerts-wrap .single-offert .round-icon-wrap svg {
    height: 60px;
    width: 60px;
  }
  .services-offerts .services-offerts-wrap .single-offert .the-content h4 {
    font-size: 14px;
  }

  .protection .protection-forfaits .left-side .single-forfait.open:hover:before {
    border-color: #FDE015;
  }
  .protection .protection-forfaits .left-side .single-forfait.open:hover h4 {
    color: #FDE015;
  }
  .protection .protection-forfaits .left-side .single-forfait:hover:before {
    border-color: #C3C3C3;
  }
  .protection .protection-forfaits .left-side .single-forfait:hover h4 {
    color: #fff;
  }
  .protection .protection-forfaits .right-side {
    min-height: 320px;
  }
  .protection .protection-forfaits .right-side .image {
    height: 320px;
  }
  .protection .protection-forfaits .right-side .image .forfait-top-view svg {
    width: 160px;
  }

  .service-cir .wrapper .right-side .the-content {
    width: 100%;
  }

  .service-teinte .teinte-option p {
    font-size: 15px;
  }

  .service-teinte .teinte-option.option-opacity {
    width: 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }

  .service-teinte .teinte-images {
    margin: 60px 0 0;
  }
  .service-teinte .teinte-images .svg-back {
    margin-top: 40px;
  }

  .carousel-products .carousel__slide .left-side {
    padding: 25px;
  }
  .carousel-products .carousel__slide .left-side img {
    height: 300px;
  }

  .serv-prods .title-btn .slide-icon {
    height: 50px;
  }

  .blocs-wrap .single-bloc .left-side .icon {
    top: -50px;
    left: -30px;
    height: 60px;
    width: 60px;
  }

  .blocs-wrap .single-bloc:nth-child(even) .left-side .icon {
    left: auto;
    right: -30px;
  }

  .double-title .fade-title {
    display: none;
  }

  .carousel-serv-mob .carousel__slide {
    padding: 30px 0;
  }
  .carousel-serv-mob .carousel__slide img {
    height: 300px;
    width: 100%;
    object-fit: cover;
  }

  .servs-wrap .servs-single .left-side {
    height: 130px;
    width: 130px;
  }
  .servs-wrap .servs-single .left-side svg {
    height: 70px;
    width: 70px;
  }
  .servs-wrap .servs-single .right-side {
    min-width: auto;
    max-width: 100%;
  }

  .promos-wrap .right-side .the-content p {
    font: normal 16px/18px GT America, sans-serif;
  }

  #promos-carousel .carousel__slide img {
    height: 300px;
  }

  .promo-popup .close-popup {
    height: 50px;
    width: 50px;
  }
  .promo-popup .close-popup svg {
    height: 23px;
    width: 23px;
  }

  .promo-popup .promo-titles {
    padding-top: 70px;
  }
  .promo-popup .promo-titles h4 {
    margin-bottom: 10px;
  }

  #promos-carousel .carousel__nav .carousel__button {
    background-image: url("../images/arrow-slider-small.svg");
    width: 35px;
  }

  .promos-wrap .right-side .btn-share {
    margin-right: 0;
  }

  .promos-wrap .right-side .btn-contact {
    min-width: 200px;
    max-width: 100%;
    width: 216px;
  }

  .page-template-blog .slice {
    margin: 30px 0;
  }

  .page-template-blog .serv-banner {
    margin-top: 125px;
  }

  .page-template-blog .serv-footer {
    margin: 75px 0;
  }

  .page-template-blog .serv-banner {
    margin-bottom: 25px;
  }

  .month-post .left-side {
    min-height: 300px;
  }
  .month-post .right-side {
    padding: 30px 20px;
  }

  .category-selector {
    margin-top: 15px;
  }
  .category-selector .cat-list-wrap p {
    font-size: 17px;
  }

  .posts-teasers .post-teaser {
    width: 95%;
  }
  .posts-teasers .post-teaser .post-cat {
    min-width: 180px;
    padding: 5px 30px;
  }

  .posts-teasers .post-teaser .post-content {
    padding: 10px 20px;
  }
  .posts-teasers .post-teaser .post-content h6 {
    font-size: 16px;
    line-height: 1.2em;
  }
  .posts-teasers .post-teaser .post-content p {
    font-size: 14px;
  }

  .promo-popup .promo-icon {
    left: -30px;
    top: -30px;
  }
  .promo-popup .promo-icon svg {
    height: 80px;
    width: 80px;
  }

  .post-hero.slice {
    margin-bottom: 40px;
  }
  .post-hero.slice .hero-thumb img {
    height: 300px;
  }
  .post-hero.slice .btn-share {
    margin-top: 50px;
  }
  .post-hero.slice .author-text {
    margin-top: 30px;
  }

  .post-content.slice {
    margin: 40px 0;
  }

  .quote-wrap h2 {
    font-size: 24px;
    padding: 0 4%;
  }
  .quote-wrap .quote-mark {
    font-size: 70px;
  }

  .error404 .error-wrapper {
    margin: 110px 0 50px;
  }
  .error404 .error-wrapper .btn {
    min-width: 200px;
  }
  .error404 .error-icons {
    margin-bottom: 35px;
  }
  .error404 .error-icons svg {
    height: 35px;
    width: 45px;
    margin: 0 20px;
  }

  .about-reason .right-side .reason-num {
    width: auto;
    min-width: auto;
  }
  .about-reason .right-side .single-reason {
    text-align: center;
  }

  .year-slider.slice .carousel__slide {
    width: 320px;
  }
  .year-slider.slice .carousel__slide .year-content .the-content p {
    font-size: 14px;
    line-height: 20px;
  }

  .carousel-products .carousel__slide .left-side {
    max-width: 100%;
  }

  .page-template-blog .serv-banner {
    padding-bottom: 40px;
  }
}
@media (max-width: 410px) {
  .protection .protection-forfaits {
    margin-top: 30px;
  }
  .protection .protection-forfaits .right-side {
    min-height: 240px;
  }
  .protection .protection-forfaits .right-side .image {
    height: 240px;
  }
  .protection .protection-forfaits .right-side .image .forfait-top-view svg {
    width: 130px;
  }

  .service-teinte .teinte-option, .service-teinte .teinte-option.option-color {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .service-teinte .wrapper {
    width: 96%;
  }
  .service-teinte .teinte-images {
    margin: 60px 0 0;
  }
  .service-teinte .teinte-images .svg-back {
    margin-top: 0;
    flex: 0 0 80%;
    max-width: 80%;
  }

  .error404 .error-wrapper h1 {
    font-size: 160px;
  }
}

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