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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

body {
  padding: 0;
  margin: 0;
}

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

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 {
  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, .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 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 576px) {
  .flex-sm-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-sm-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-sm-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-sm-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-sm-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-sm-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-sm-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-sm-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-sm-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .align-items-sm-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-sm-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-sm-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-sm-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-sm-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-sm-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-sm-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-sm-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-sm-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-sm-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-sm-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-sm-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-sm-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-sm-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-sm-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-sm-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-sm-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}
@media (min-width: 768px) {
  .flex-md-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-md-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-md-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-md-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-md-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-md-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-md-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-md-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-md-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-md-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .align-items-md-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-md-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-md-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-md-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-md-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-md-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-md-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-md-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-md-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-md-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-md-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-md-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-md-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-md-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-md-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-md-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-md-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}
@media (min-width: 992px) {
  .flex-lg-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-lg-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-lg-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-lg-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-lg-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-lg-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-lg-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-lg-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-lg-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .align-items-lg-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-lg-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-lg-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-lg-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-lg-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-lg-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-lg-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-lg-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-lg-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-lg-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-lg-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-lg-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-lg-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-lg-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-lg-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-lg-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-lg-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}
@media (min-width: 1200px) {
  .flex-xl-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-xl-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-xl-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-xl-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-xl-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-xl-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-xl-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-xl-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-xl-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .align-items-xl-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-xl-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-xl-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-xl-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-xl-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-xl-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-xl-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-xl-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-xl-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-xl-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-xl-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-xl-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-xl-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-xl-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-xl-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-xl-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-xl-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}
/*
 * Vertically align an element without using Flexbox
 */
/*
 * Add a color overlay absolutelly positionned over something
 */
/*
 * Overwrite browser placeholders styles
 */
/*
 * Convert images to background
 */
/*
 * Responsive shapes
 */
/*
 * Remove mobile/iOS default buttons
 */
/*
 * Change font size from pixels to rem
 */
/*- Menu display -*/
/*- Font -*/
/*- Colors -*/
/*- Flexsite variables -*/
/*- Podding -*/
/*- Wrapper -*/
/*- Gutters -*/
/*- TODO: Enlever cette section de variable -*/
/*-----------------------------------------*/
::-moz-selection {
  color: white;
  background: black;
}

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

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

html,
body {
  box-sizing: border-box;
  font-family: var(--font-secondary);
  color: var(--color-text);
  background-color: #fff;
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
  overflow-x: hidden;
}

#main {
  min-height: 30vh;
}

.mobileOnly {
  display: none;
}

/*- Flexible content -*/
.slice.custom-text-color .the-content * {
  color: var(--text-color);
}
.slice.custom-text-color .the-content li:before {
  background: var(--text-color);
}

.popup-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #F7F4F2;
  z-index: 999;
  display: flex;
  pointer-events: none;
  transform: translateY(-100%);
  transition: all 0.3s ease-in-out;
}
.popup-container.open {
  pointer-events: all;
  transform: translateY(0%);
}
.popup-container .outer-lightbox-content {
  width: 100%;
}
.popup-container .close {
  position: absolute;
  top: 60px;
  right: 60px;
  width: 22px;
  height: 22px;
  cursor: pointer;
  z-index: 2;
}
.popup-container .close svg {
  max-width: 100%;
  transition: all 0.3s ease-in-out;
}
.popup-container .close:hover svg {
  transform: scale(1.1);
}
.popup-container .lightbox-content {
  display: flex;
  width: 100%;
  height: 100%;
}
.popup-container .lightbox-content > .wrapper {
  width: 90%;
  max-width: 1335px;
  margin-inline: auto;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  padding-right: 0px; /* Increase/decrease this value for cross-browser compatibility */
  box-sizing: content-box;
}
.popup-container .lightbox-content > .wrapper .row, .popup-container .lightbox-content > .wrapper form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address, form .gform_body .gform_fields .gfield .popup-container .lightbox-content > .wrapper .ginput_container.ginput_container_address {
  width: 100%;
  margin-inline: -65px;
}
.popup-container .lightbox-content > .wrapper .row .col-12, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .popup-container .lightbox-content > .wrapper .row .ginput_left, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .popup-container .lightbox-content > .wrapper .row .ginput_right, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .popup-container .lightbox-content > .wrapper .row .ginput_full, .popup-container .lightbox-content > .wrapper form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .col-12, .popup-container .lightbox-content > .wrapper form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_left, .popup-container .lightbox-content > .wrapper form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_right, .popup-container .lightbox-content > .wrapper form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_full, form .gform_body .gform_fields .gfield .popup-container .lightbox-content > .wrapper .ginput_container.ginput_container_address .col-12, form .gform_body .gform_fields .gfield .popup-container .lightbox-content > .wrapper .ginput_container.ginput_container_address .ginput_left, form .gform_body .gform_fields .gfield .popup-container .lightbox-content > .wrapper .ginput_container.ginput_container_address .ginput_right, form .gform_body .gform_fields .gfield .popup-container .lightbox-content > .wrapper .ginput_container.ginput_container_address .ginput_full {
  padding-inline: 65px;
}
.popup-container .lightbox-content .col-image .img-container {
  border-radius: 20px;
  overflow: hidden;
}
.popup-container .lightbox-content .col-image .image {
  width: 100%;
  position: relative;
  position: relative;
}
.popup-container .lightbox-content .col-image .image:before {
  content: "";
  display: block;
  padding-top: 140%;
}
.popup-container .lightbox-content .col-image .image > img,
.popup-container .lightbox-content .col-image .image > picture {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.popup-container .lightbox-content .col-text h2 {
  font-size: 40px;
  color: var(--color-title);
  font-family: var(--font-primary);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 10px;
}
.popup-container .lightbox-content .col-text .the-content * {
  color: var(--color-text) !important;
}

.single-article {
  padding: 50px 0;
}
.single-article h1 {
  text-transform: uppercase;
  font-weight: 400;
  font-size: 2.5rem;
}
.single-article h2 {
  margin-bottom: 20px;
}
.single-article h4 {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 1.25rem;
}
.single-article img {
  height: 500px;
  object-fit: cover;
}
.single-article .post-banner {
  margin-bottom: 50px;
  flex-wrap: wrap;
}

/*--------------------------------*/
/*------Transition de page--------*/
/*--------------------------------*/
.page-transition {
  position: fixed;
  top: 0%;
  left: 0%;
  height: 100vh;
  width: 100vw;
  z-index: 999;
  transform-origin: center center;
  opacity: 1;
  transition: all 0.3s ease-in-out;
}
.page-transition .transition-logo {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: var(--bg-image);
  position: fixed;
  width: 300px;
  height: 300px;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  opacity: 1;
  pointer-events: none;
  transition: all 0.3s ease-in-out;
  z-index: 999999;
}
.page-transition:after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  z-index: 999;
  background: var(--bg-color);
  transform-origin: center center;
  transform: translateY(0);
  transition: all 0.3s ease-in-out 0.03s;
}
.page-transition.out {
  pointer-events: none;
  opacity: 0;
}
.page-transition.out:before, .page-transition.out:after {
  transform: translateY(0);
}
.page-transition.out .transition-logo {
  opacity: 0;
}

header {
  position: absolute;
  top: 0;
  left: 0;
  height: fit-content;
  width: 100%;
  z-index: 99;
  transition: all 0.3s ease-in-out;
  background-color: var(--menuBgColor);
  /*
  	&.shrink{
  		transform: translateY(-40px);

  		.wrapper {

  			.menu {

  				.logo{
  					height:40px;
  				}
  			}
  		}
  	}*/
}
header .topbar {
  background: var(--menuBgColor);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 40px;
}
header .topbar a {
  position: relative;
  font: 400 1rem/1.2em var(--font-secondary);
  color: var(--menuTextColor);
  transition: all 0.3s ease-in-out;
}
header .wrapper {
  position: relative;
  width: 95%;
  transition: all 0.3s ease-in-out;
}
header .wrapper .menu {
  padding: 25px 0;
  display: flex;
  justify-content: start;
  align-items: center;
  height: fit-content;
  transition: all 0.3s ease-in-out;
}
header .wrapper .menu .logo {
  z-index: 1;
  height: 50px;
  transition: all 0.3s ease-in-out;
}
header .wrapper .menu .logo img {
  max-height: 100%;
}
header .wrapper .menu nav ul {
  display: flex;
  align-items: center;
}
header .wrapper .menu nav ul li {
  display: inline-block;
  margin-left: 40px;
  padding-bottom: 15px;
  padding-top: 20px;
}
header .wrapper .menu nav ul li:not(.is-btn) a {
  position: relative;
  display: flex;
  gap: 15px;
  align-items: center;
  font: 600 1rem/1.2em var(--font-secondary);
  color: var(--menuTextColor);
  transition: all 0.3s ease-in-out;
}
header .wrapper .menu nav ul li:not(.is-btn) a .icon svg {
  width: 30px;
  height: auto;
}
header .wrapper .menu nav ul li:not(.is-btn):not(.menu-item-has-children) a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 3px;
  background-color: #1F95D3;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
header .wrapper .menu nav ul li:not(.is-btn):not(.menu-item-has-children) a:hover::after {
  transform: scaleX(1);
}
header .wrapper .menu nav ul li.is-btn a {
  position: relative;
  background-color: var(--color-primary);
  min-width: 140px;
  padding: 10px 30px;
  color: #fff;
  font: 500 1rem/1.2em var(--font-primary);
  transition: all 0.3s ease-in-out;
}
header .wrapper .menu nav ul li.is-btn a:hover {
  background-color: var(--color-secondary);
}
header .wrapper .menu nav ul li.menu-item-has-children {
  position: relative;
  padding-right: 12px;
  /*&.current-menu-item{


  		&:before{
  			content:"";
  			background-color:$color-accent-1;
  			position:absolute;
  			left:0;
  			bottom:0px;
  			width:calc(100% - 35px);
  			height:3px;
  		}


  }*/
}
header .wrapper .menu nav ul li.menu-item-has-children > a {
  position: relative;
  padding-right: 25px;
  padding-bottom: 5px;
  padding-top: 5px;
}
header .wrapper .menu nav ul li.menu-item-has-children > a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 3px;
  background-color: #1F95D3;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
header .wrapper .menu nav ul li.menu-item-has-children > a:after {
  content: "";
  position: absolute;
  right: 0;
  width: 15px;
  height: 10px;
  background: url(../images/icon-arrow-menu.svg) no-repeat center center;
  background-size: cover;
  transition: all 0.3s ease-in-out;
}
header .wrapper .menu nav ul li.menu-item-has-children > a:hover::before {
  transform: scaleX(1);
}
header .wrapper .menu nav ul li.menu-item-has-children > a:hover:after {
  transform: rotateZ(180deg);
}
header .wrapper .menu nav ul li.menu-item-has-children ul {
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: start;
  flex-direction: column;
  pointer-events: none;
  padding: 20px 0;
  background-color: var(--menuBgColor);
  position: absolute;
  width: 380px;
  left: -20px;
  top: 99%;
  transition: all 0.3s ease-in-out;
}
header .wrapper .menu nav ul li.menu-item-has-children ul li {
  margin: 0 !important;
  padding: 15px 15px 15px 30px;
  width: 100%;
}
header .wrapper .menu nav ul li.menu-item-has-children ul li a {
  position: relative;
  transition: color 0.4s ease;
  display: inline-block;
  width: fit-content;
}
header .wrapper .menu nav ul li.menu-item-has-children ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 3px;
  background-color: #1F95D3;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
header .wrapper .menu nav ul li.menu-item-has-children ul li:hover {
  background-color: white;
  transition: background-color 0.4s ease;
}
header .wrapper .menu nav ul li.menu-item-has-children ul li:hover a {
  color: var(--menuBgColor);
}
header .wrapper .menu nav ul li.menu-item-has-children ul li:hover a::after {
  transform: scaleX(1);
}
header .wrapper .menu nav ul li.menu-item-has-children:hover .sub-menu {
  opacity: 1;
  pointer-events: all;
}
header #lang-main {
  margin-left: auto;
}
header .sub-menu {
  opacity: 0;
  position: absolute;
  top: 100%;
  left: 0;
  pointer-events: none;
  padding: 50px 0;
  background-color: rgb(var(--color-secondary), 0.8);
  transition: all 0.3s ease-in-out;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 8px 8px 0px;
}
header .sub-menu ul {
  width: 90%;
  margin-inline: auto;
  gap: 30px;
}
header .sub-menu ul .sub-menu-item {
  background-color: var(--menuBgColor);
  border: 1px solid transparent;
  width: 100%;
  max-width: 535px;
  padding: 50px 40px;
  box-shadow: rgba(0, 0, 0, 0.15) 2.4px 2.4px 3.2px;
  transition: all 0.3s ease-in-out;
}
header .sub-menu ul .sub-menu-item h4 {
  position: relative;
  font: 500 1.25rem/1.2em var(--font-primary);
  width: fit-content;
}
header .sub-menu ul .sub-menu-item h4:after {
  content: "";
  position: absolute;
  background: url(../images/link-arrow.svg) no-repeat center;
  background-size: contain;
  width: 8px;
  height: 13px;
  left: 104%;
  top: 7px;
  transition: all 0.3s ease-in-out;
}
header .sub-menu ul .sub-menu-item p {
  font: 400 1rem/1.2em var(--font-primary);
  color: var(--menuTextColor);
}
header .sub-menu ul .sub-menu-item:hover {
  border-color: var(--color-primary);
}
header .sub-menu ul .sub-menu-item:hover h4:after {
  left: 108%;
}
header .sub-menu.active {
  opacity: 1;
  pointer-events: all;
}

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

.mobile-nav-trigger {
  flex-direction: column;
  justify-content: space-between;
  width: 45px;
  height: 22px;
  pointer-events: all;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.mobile-nav-trigger span {
  width: 45px;
  height: 4px;
  display: block;
  background: #FFFFFF;
  flex: 0 0 auto;
  transform-origin: center;
  opacity: 1;
  transition: all 0.3s ease-in-out;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.mobile-nav-trigger span:nth-child(1) {
  transform: translateY(-3px);
  transition: all 0.3s ease-in-out 0.3s;
}
.mobile-nav-trigger span:nth-child(2) {
  position: relative;
  transition: all 0.3s ease-in-out 0.5s;
  border-radius: 20px;
}
.mobile-nav-trigger span:nth-child(3) {
  transform: translateY(3px);
  transition: all 0.3s ease-in-out 0.3s;
  border-radius: 20px;
}

#mobile-nav {
  position: fixed;
  padding-top: 100px;
  z-index: 10;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  max-width: none;
  overflow-x: scroll;
  display: flex;
  justify-content: space-between;
  align-items: start;
  flex-direction: column;
  pointer-events: none;
  transform: translateX(0);
  -webkit-box-shadow: 0 15px 10px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 15px 10px 10px rgba(0, 0, 0, 0.2);
  opacity: 0;
  background-color: var(--menuBgColor);
  transition: 500ms;
}
#mobile-nav .wrapper {
  width: 90%;
  max-width: 95%;
}
#mobile-nav .wrapper ul {
  width: 100%;
  height: 100%;
  transform: translateX(0px);
  transition: 500ms;
  position: relative;
  display: flex;
  flex-direction: column;
  list-style: none;
}
#mobile-nav .wrapper ul > li.menu-item-has-children {
  gap: 6px;
}
#mobile-nav .wrapper ul > li.menu-item-has-children > a {
  position: relative;
  width: fit-content;
}
#mobile-nav .wrapper ul > li.menu-item-has-children > a:after {
  content: "";
  background: url("../images/dropdown-arrow.svg") no-repeat;
  background-size: contain;
  width: 10px;
  height: 10px;
  position: absolute;
  top: 8px;
  right: -20px;
  opacity: 1 !important;
  transition: 0s;
}
#mobile-nav .wrapper ul > li.menu-item-has-children .sub-menu {
  display: none;
  margin-bottom: 15px;
  opacity: 1;
  gap: 10px;
  top: 15px;
  transform: translateX(20px);
}
#mobile-nav .wrapper ul > li.menu-item-has-children .sub-menu li {
  margin-bottom: 0 !important;
  padding: 8px 0;
}
#mobile-nav .wrapper ul > li.menu-item-has-children .sub-menu li.menu-item-has-children {
  flex-direction: column;
  position: relative;
}
#mobile-nav .wrapper ul li {
  width: fit-content;
  margin-bottom: 20px;
}
#mobile-nav .wrapper ul li.is-btn a {
  position: relative;
  background-color: var(--color-primary);
  min-width: 140px;
  padding: 10px 30px;
  color: #fff;
  font: 500 1.125rem/1.2em var(--font-primary);
  transition: all 0.3s ease-in-out;
}
#mobile-nav .wrapper ul li.is-btn a:hover {
  background-color: var(--color-secondary);
}
#mobile-nav .wrapper ul li a {
  position: relative;
  display: flex;
  gap: 15px;
  align-items: center;
  font: 500 1.125rem/1.2em var(--font-secondary);
  color: var(--menuTextColor);
  transition: all 0.3s ease-in-out;
}
#mobile-nav.active {
  transform: translateX(0);
  pointer-events: all;
  opacity: 1;
  display: block;
}
#mobile-nav.open .wrapper > ul {
  transition: 500ms;
  transform: translateX(-100px);
}
#mobile-nav.open .wrapper > ul .menu-item-has-children:after {
  opacity: 0;
}
#mobile-nav.open .wrapper > ul > .menu-item {
  pointer-events: none;
}
#mobile-nav.open .wrapper > ul > .menu-item > a {
  transition: 500ms;
  opacity: 0;
}
#mobile-nav.open .wrapper > ul .btn {
  transition: 500ms;
  background: transparent;
  box-shadow: none;
}

footer {
  background-color: var(--footer-bg-color);
  position: relative;
}
footer ul, footer ol {
  list-style: none;
}
footer .slice > .wrapper {
  padding-block: 100px;
}
footer .phone {
  position: relative;
  padding-left: 25px;
  font: 700 1rem/1.2em var(--font-primary);
  margin-bottom: 22px;
  text-transform: uppercase;
}
footer .phone:before {
  content: "";
  position: absolute;
  background-size: contain;
  width: 20px;
  height: 20px;
  left: 0;
  top: 0;
}
footer .address {
  position: relative;
  padding-left: 25px;
  font: 700 1rem/1.2em var(--font-primary);
  margin-bottom: 22px;
  text-transform: uppercase;
}
footer .address:before {
  content: "";
  position: absolute;
  background-size: contain;
  width: 15px;
  height: 20px;
  left: 0;
  top: 0;
}
footer > .wrapper {
  padding: 80px 0 145px;
  max-width: 1625px;
}
footer p, footer a, footer h4 {
  font: 400 1rem/1.2em var(--font-primary);
  color: var(--footer-text-color);
}
footer b {
  font: 600 1rem/1.2em var(--font-primary);
  color: #fff;
}
footer h4 {
  font: 700 1rem/1.2em var(--font-primary);
  color: var(--color-primary);
  text-transform: uppercase;
  margin-bottom: 15px;
}
footer .col-nav > p {
  position: relative;
  padding-left: 25px;
  font: bold 1rem/1.2em var(--font-primary);
  margin-bottom: 15px;
  text-transform: uppercase;
}
footer .col-nav > p:before {
  content: "";
  position: absolute;
  background-size: contain;
  width: 17px;
  height: 17px;
  left: 0;
  top: 0;
}
footer .col-nav ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
footer .col-nav ul li {
  width: fit-content;
}
footer .col-nav ul li a {
  transition: all 0.3s ease-in-out;
}
footer .col-nav ul li:hover a {
  color: #05C3DE;
}
footer .logo {
  max-width: 270px;
  max-height: 135px;
}
footer .logo svg {
  width: 100%;
  height: 100%;
}
footer .contact-info {
  gap: 18px;
}
footer .dayHours {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 15px;
  max-width: 240px;
}
footer .socials p {
  font: 700 1rem/1.2em var(--font-primary);
  margin-bottom: 10px;
}
footer .socials .d-flex {
  gap: 15px;
}
footer .socials .d-flex a {
  display: flex;
  align-items: center;
}
footer .socials .d-flex a img {
  min-width: 30px;
  min-height: 30px;
}
footer .socials .d-flex a:hover svg path {
  fill: var(--color-tertiary);
}
footer .col-opening-hours > p {
  position: relative;
  padding-left: 25px;
  font: 700 1rem/1.2em var(--font-primary);
  margin-bottom: 22px;
  text-transform: uppercase;
}
footer .col-opening-hours > p:before {
  content: "";
  position: absolute;
  background-size: contain;
  width: 17px;
  height: 17px;
  left: 0;
  top: 0;
}
footer .contact-info a p {
  line-height: 1.8em;
}
footer .contact-info p {
  position: relative;
}
footer .contact-info p:before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  left: 0;
  top: 0;
}
footer .contact-info p.accessibility {
  padding-left: 35px;
}
footer .contact-info p.accessibility:before {
  background: url(../images/Icon_Handicap_Footer.svg) no-repeat center;
  background-size: contain;
}
footer .contact-info p.bus-lines {
  padding-left: 35px;
}
footer .contact-info p.bus-lines:before {
  background: url(../images/Icon_Bus_Footer.svg) no-repeat center;
  background-size: contain;
}
footer .contact-info p.metro {
  padding-left: 35px;
}
footer .contact-info p.metro:before {
  background: url(../images/Icon_Metro_Footer.svg) no-repeat center;
  background-size: contain;
}
footer .contact-info p.parking {
  padding-left: 35px;
}
footer .contact-info p.parking:before {
  background: url(../images/Icon_Parking_Footer.svg) no-repeat center;
  background-size: contain;
}
footer #copyrights {
  padding: 0;
  background-color: white;
  text-align: center;
  border-top: 2px solid var(--color-primary);
}
footer #copyrights p {
  color: #909090;
  font-size: 0.875rem;
}
footer #copyrights a {
  font: 400 1rem/1.2em var(--font-primary);
  color: #909090;
}
footer #copyrights .wrapper {
  gap: 5px;
  padding: 22px 0;
}
footer #copyrights .wrapper span {
  font: 400 1rem/1.2em var(--font-primary);
  color: var(--footerTextColor);
}
footer #copyrights a, footer #copyrights b {
  height: 20px;
  font-weight: 400;
}
footer #copyrights #rubik-api-copyright {
  margin-top: -6px;
}
footer #copyrights #rubik-api-copyright span {
  font: 400 1rem/1.2em var(--font-primary);
  color: var(--footerTextColor);
}
footer #copyrights #rubik-api-copyright svg {
  height: 20px;
  margin-top: 2px;
}
/*
 * Modify gravity form, chosen and mailpoet styles here
 *
 * Change and modify according to designs
 */
form .gform_body {
  margin-bottom: 20px;
}
form .gform_body .gform_fields {
  gap: 20px !important;
  grid-row-gap: 20px !important;
}
form .gform_body .gform_fields fieldset {
  outline: none;
  border: 0;
  border-radius: 0;
  margin-top: 15px;
}
form .gform_body .gform_fields .gfield {
  position: relative;
}
form .gform_body .gform_fields .gfield:last-child {
  margin-bottom: 0;
}
form .gform_body .gform_fields .gfield:last-child .ginput_container {
  margin-bottom: 0;
}
form .gform_body .gform_fields .gfield:last-child .ginput_container input, form .gform_body .gform_fields .gfield:last-child .ginput_container textarea {
  margin-bottom: 0;
}
form .gform_body .gform_fields .gfield .gfield_label {
  display: block;
  text-align: left;
  font: 400 1rem/1.2em var(--font-primary);
  margin-bottom: 10px;
  color: var(--color-text);
}
form .gform_body .gform_fields .gfield .gfield_label.gfield_label_before_complex {
  margin-bottom: 20px;
}
form .gform_body .gform_fields .gfield .gfield_label .gfield_required {
  display: none;
}
form .gform_body .gform_fields .gfield.hidden_label label, form .gform_body .gform_fields .gfield.hidden_label .gfield_label {
  display: block;
  font: 400 1rem/1.2em var(--font-primary);
}
form .gform_body .gform_fields .gfield .gfield_description {
  display: block;
  text-align: left;
  font: 400 14px/18px sans-serif;
  margin: 5px 0;
}
form .gform_body .gform_fields .gfield.gform_validation_container {
  display: none;
  content: none;
  padding: 0 0;
  margin: 0 0;
}
form .gform_body .gform_fields .gfield.gfield_error .gfield_description {
  color: red;
}
form .gform_body .gform_fields .gfield .ginput_container {
  position: relative;
}
form .gform_body .gform_fields .gfield .ginput_container input[type=text], form .gform_body .gform_fields .gfield .ginput_container input[type=email], form .gform_body .gform_fields .gfield .ginput_container input[type=tel], form .gform_body .gform_fields .gfield .ginput_container input[type=number] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  max-height: 50px;
  padding: 17px 25px !important;
  border-radius: 30px;
  border-width: 2px;
  border-color: var(--color-primary);
  border-style: solid;
  background: transparent;
  color: #fff;
  font: 400 1rem/1.2em var(--font-primary);
}
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: #fff !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%;
  min-height: 242px;
  max-height: 150px;
  padding: 17px 25px !important;
  border-radius: 15px;
  border-width: 2px;
  border-color: var(--color-primary);
  border-style: solid;
  background: transparent;
  color: #fff;
  font: 400 1rem/1.2empx sans-serif;
  font-family: var(--font-primary);
  resize: none;
}
form .gform_body .gform_fields .gfield .ginput_container textarea::placeholder {
  color: #fff;
  opacity: 1;
}
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 {
  display: flex;
  column-gap: 50px;
  flex-wrap: wrap;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_checkbox .gfield_checkbox .gchoice {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 15px;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_checkbox .gfield_checkbox .gchoice:last-child {
  margin-bottom: 0;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_checkbox .gfield_checkbox .gchoice input[type=checkbox] {
  display: none;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_checkbox .gfield_checkbox .gchoice input[type=checkbox]:checked + label:after {
  opacity: 1;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_checkbox .gfield_checkbox .gchoice label {
  position: relative;
  display: block;
  font: 400 16px/1.2em var(--font-primary);
  color: #F7F4F2;
  padding-left: 26px;
  cursor: pointer;
  max-width: 100% !important;
}
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: 13px;
  width: 13px;
  border: 1px solid #F7F4F2;
  border-radius: 2px;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_checkbox .gfield_checkbox .gchoice label:after {
  content: "";
  display: block;
  position: absolute;
  top: 2px;
  left: 0;
  opacity: 0;
  height: 13px;
  width: 13px;
  background-color: #F7F4F2;
  border-radius: 2px;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_radio .gfield_radio {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_radio .gfield_radio .gchoice {
  display: flex;
  align-items: center;
}
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: 20px;
  cursor: pointer;
  max-width: 100%;
}
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;
  border: 2px solid var(--color-accent-1);
  height: 13px;
  width: 13px;
  border-radius: 2px;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_radio .gfield_radio .gchoice label:after {
  content: "";
  display: block;
  position: absolute;
  top: 9px;
  left: 6px;
  transform: translate(-50%, -50%);
  opacity: 0;
  height: 13px;
  width: 13px;
  border-radius: 2px;
  background-color: var(--color-accent-1);
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_consent {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_consent input[type=checkbox] {
  display: none;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_consent input[type=checkbox]:checked + label:after {
  opacity: 1;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_consent label {
  position: relative;
  display: block;
  font: 400 16px/18px sans-serif;
  padding-left: 40px;
  cursor: pointer;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_consent label:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  height: 30px;
  width: 30px;
  border: 2px solid black;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_consent label:after {
  content: "";
  display: block;
  position: absolute;
  top: 8px;
  left: 15px;
  transform: translate(-50%, -50%);
  opacity: 0;
  height: 25px;
  width: 25px;
  background-image: url("../image/forms/check.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_fileupload span.gform_fileupload_rules {
  display: block;
  text-align: left;
  font: 400 14px/18px sans-serif;
  margin: 5px;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_fileupload input[type=file] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  max-height: 50px;
  padding: 10px 15px;
  border: 2px solid black;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  color: black;
  font: 400 16px/18px sans-serif;
  cursor: pointer;
}
form .gform_body .gform_fields .gfield .ginput_container .gform_fileupload_multifile .gform_drop_area {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 50px;
  max-height: 50px;
  padding: 10px 15px;
  border: 2px solid black;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  color: black;
  font: 400 16px/18px sans-serif;
  cursor: pointer;
}
form .gform_body .gform_fields .gfield .ginput_container .gform_fileupload_multifile .gform_drop_area span.gform_drop_instructions {
  display: block;
  text-align: left;
  font: 400 14px/14px sans-serif;
  margin-right: 10px;
}
form .gform_body .gform_fields .gfield .ginput_preview {
  display: flex;
  align-items: center;
}
form .gform_body .gform_fields .gfield .ginput_preview button {
  outline: none;
  background: transparent;
  border: 0;
  box-shadow: none;
  height: 30px;
  width: 30px;
  cursor: pointer;
}
form .gform_body .gform_fields .gfield .ginput_preview button .dashicons:before {
  content: "\f335";
}
form .gform_body .gform_fields .gfield .ginput_preview strong {
  display: block;
  text-align: left;
  font: 400 12px/12px sans-serif;
  margin-right: 10px;
}
form .gform_footer {
  position: relative;
  margin-top: 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_heading {
  padding-bottom: 0 !important;
}
.gform_heading .gform_title {
  padding-bottom: 0 !important;
}
.gform_heading .gform_description {
  max-width: 1165px !important;
  display: inline-block;
  margin-bottom: 30px;
}

.modal-form form .gform_body .gform_fields .gfield .ginput_container {
  padding-left: 25px;
}
.modal-form .gform_fields {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap !important;
}
.modal-form .ginput_container_textarea, .modal-form .ginput_container_phone, .modal-form .ginput_container_text {
  padding-left: 0 !important;
}
.modal-form .gfield--width-full {
  width: 100% !important;
}
.modal-form .gfield--width-full textarea {
  max-width: 773px;
}
.modal-form .gfield--width-half {
  max-width: 382px;
  grid-column: auto !important;
  width: 382px;
}
.modal-form .gform_body {
  padding-bottom: 60px;
}
.modal-form .ginput_container_checkbox {
  display: flex !important;
  flex-wrap: wrap !important;
}
.modal-form form .gform_body .gform_fields .gfield .ginput_container input[type=text], .modal-form form .gform_body .gform_fields .gfield .ginput_container input[type=email], .modal-form form .gform_body .gform_fields .gfield .ginput_container input[type=tel], .modal-form 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%;
  border-radius: 10px;
  padding: 18px;
  border: none;
  box-shadow: none;
  background: white;
  color: black;
  font: 400 16px/18px sans-serif;
  font-family: var(--font-secondary);
}
.modal-form .gchoice label {
  position: relative;
}
.modal-form .gchoice label::before {
  background: white;
  border: none !important;
}
.modal-form .gchoice label::after {
  background-color: var(--color-text) !important;
}
.modal-form textarea {
  max-width: 775px;
  border: none !important;
}
.modal-form p {
  font-weight: bold;
}

.gform_wrapper .gform_validation_errors {
  display: block;
  text-align: center;
  margin: 0px auto 30px !important;
}
.gform_wrapper .gform_validation_errors h2, .gform_wrapper .gform_validation_errors .gform_submission_error {
  font: normal 18px/20px sans-serif;
}

.gform_confirmation_wrapper {
  display: block;
  text-align: center;
  margin: 0px auto 30px !important;
}
.gform_confirmation_wrapper .gform_confirmation_message {
  display: block;
  text-align: center;
  font: 400 18px/1.2em var(--font-primary);
  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: 150px;
  padding: 13px !important;
  border: none;
  color: #879090;
  background: #F7F4F2 url(../images/dropdown-arrow.svg) no-repeat 97% center;
  cursor: pointer;
  font: 400 1rem/1.2em var(--font-primary);
}
select::placeholder {
  color: #879090 !important;
  opacity: 1 !important;
  font-family: var(--font-secondary);
}
select option {
  font-family: var(--font-secondary);
}

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

.gravity-theme .ginput_full[data-payment-element=false] .StripeElement {
  background-color: transparent !important;
  border: none !important;
  border-bottom: 1px solid #fff !important;
  border-radius: 0 !important;
}

.card-input input {
  color: #fff !important;
}

small {
  color: #F7F4F2;
  font-family: var(--font-primary);
}

.form-popup {
  padding: 50px 0;
}
.form-popup form .gform_body .gform_fields .gfield .gfield_label, .form-popup form .gform_body .gform_fields .gfield small {
  color: var(--color-accent-1);
}
.form-popup form .gform_body .gform_fields .gfield .ginput_container textarea {
  color: var(--color-accent-1);
}

/*- Titres -*/
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  color: var(--color-title);
}

h1 {
  font: 700 3.125rem/1.2em var(--font-primary);
  margin-bottom: 30px;
  text-wrap: balance;
}

h2 {
  font: 700 1.875rem/1.2em var(--font-primary);
  margin-bottom: 30px;
}

h3 {
  font: 700 1.25rem/1.2em var(--font-primary);
  text-wrap: balance;
  margin-bottom: 35px;
}

h4 {
  font: 700 1.25rem/120% var(--font-primary);
  margin-bottom: 15px;
}
h4 + h2 {
  margin-bottom: 25px;
}

/*- Contenu WYSIWYG -*/
.the-content {
  margin-bottom: 25px;
}
.the-content *:last-child {
  margin-bottom: 0;
}
.the-content ul, .the-content ol {
  margin-bottom: 20px;
  padding-left: 20px;
}
.the-content ul li, .the-content ol li {
  font: 400 1rem/1.8em var(--font-primary);
  color: var(--color-text);
  position: relative;
  margin-bottom: 25px;
}
.the-content ul li:before, .the-content ol li:before {
  content: "";
  background: url(../images/list-bullet.svg) no-repeat center;
  background-size: contain;
  display: block;
  width: 8px;
  height: 8px;
  position: absolute;
  top: 11px;
  left: 0;
}
.the-content ol {
  margin-bottom: 1em;
  counter-reset: item;
}
.the-content ol li {
  position: relative;
  counter-increment: item;
  padding-left: 40px;
  margin-bottom: 10px;
}
.the-content ol li:before {
  content: counter(item, decimal);
  position: absolute;
  background: none;
  left: 0;
  top: 2px;
  width: 25px;
  height: 25px;
  color: #fff;
  font: 600 1rem/1.2em var(--font-primary);
  background-color: var(--color-accent-2);
  text-align: center;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.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;
  color: var(--color-text);
  font: normal 1rem/160% var(--font-secondary);
}
.the-content p small {
  color: var(--color-title);
}
.the-content a {
  color: var(--color-accent-1);
  font-weight: bold;
}
.the-content hr {
  border-top: 0;
  margin-bottom: 35px;
}

/*- Boutons -*/
.btn {
  position: relative;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  border-radius: 10px;
  /*- Boutons - Primaire -*/
  /*- Boutons - Secondaire -*/
  /*- Boutons - Tertiaire -*/
}
.btn span {
  white-space: nowrap;
}
.btn.primary {
  background: var(--color-accent-2);
  padding: 15px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.btn.primary span {
  position: relative;
  font: 600 0.875rem/100% var(--font-secondary);
  color: #fff;
  z-index: 1;
  transition: all 0.3s ease-in-out;
}
.btn.primary svg {
  transform: translateX(0);
  transition: all 0.3s ease-in-out;
}
.btn.primary svg path,
.btn.primary svg line {
  stroke: #fff;
}
.btn.primary:hover {
  background: var(--color-accent-1);
}
.btn.primary:hover svg {
  transform: translateX(5px);
}
.btn.secondary {
  background: var(--color-accent-2);
  padding: 15px 20px;
}
.btn.secondary span {
  position: relative;
  font: 700 1rem/1.2em var(--font-secondary);
  padding-top: 3px;
  color: #fff;
  z-index: 1;
  transition: all 0.3s ease-in-out;
}
.btn.secondary:hover {
  background-color: var(--color-primary);
}
.btn.tertiary {
  position: relative;
  background: var(--color-accent-2);
  padding: 15px 20px;
}
.btn.tertiary span {
  position: relative;
  font: 700 1rem/1.2em var(--font-secondary);
  padding-top: 3px;
  color: var(--color-secondary);
  z-index: 1;
  transition: all 0.3s ease-in-out;
}
.btn.tertiary:hover {
  background-color: var(--color-primary);
}
.btn.tertiary:hover span {
  color: #fff;
}

/*- Bouton - Lien simple -*/
.link {
  position: relative;
  font: 700 1.25rem/1.2em var(--font-primary);
  margin-bottom: 20px;
}
.link span {
  color: var(--color-secondary);
  transition: all 0.2s ease-out;
}
.link:hover span {
  color: var(--color-accent-2);
}

/*- Bouton - Lien avec icône -*/
.link-with-icon {
  position: relative;
  font: 700 1.25rem/1.2em var(--font-primary);
  margin-bottom: 20px;
}
.link-with-icon svg {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  width: auto;
  height: 35px;
}
.link-with-icon svg #Group_382 {
  transition: all 0.3s ease-in-out;
}
.link-with-icon svg path {
  transition: all 0.3s ease-in-out;
}
.link-with-icon span {
  position: relative;
  color: var(--color-secondary);
  transition: all 0.2s ease-out;
}
.link-with-icon:hover span {
  color: var(--color-accent-2);
}
.link-with-icon:hover svg #Group_382 {
  transform: translateY(2px);
}
.link-with-icon:hover svg path {
  stroke: var(--color-tertiary);
}

/*- Largeur du contenu -*/
.wrapper {
  position: relative;
  z-index: 3;
  height: 100%;
  margin: 0 auto;
  width: calc(100% - 100px);
  max-width: 1300px;
  /*- Largeur du contenu - Petit -*/
  /*- Largeur du contenu - Moyen -*/
  /*- Largeur du contenu - Large -*/
  /*- Largeur du contenu - Pleine largeur -*/
}
.wrapper.small {
  max-width: 1080px;
}
.wrapper.medium {
  max-width: 1300px;
}
.wrapper.large {
  max-width: 1712px;
}
.wrapper.full-width {
  width: 100%;
  max-width: 100%;
}

/*- Espacement des colonnes -*/
.row, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address {
  row-gap: 40px;
  /*- Espacement des colonnes - Petit -*/
  /*- Espacement des colonnes - Petit -*/
  /*- Espacement des colonnes - Moyen -*/
  /*- Espacement des colonnes - Large -*/
  /*- Espacement des colonnes - X-Large -*/
}
.row.gutter-none, form .gform_body .gform_fields .gfield .gutter-none.ginput_container.ginput_container_address {
  margin-left: 0;
  margin-right: 0;
}
.row.gutter-none > div[class*=col-], form .gform_body .gform_fields .gfield .gutter-none.ginput_container.ginput_container_address > div[class*=col-] {
  padding-left: 0;
  padding-right: 0;
}
.row.gutter-small, form .gform_body .gform_fields .gfield .gutter-small.ginput_container.ginput_container_address {
  margin-left: -12.5px;
  margin-right: -12.5px;
}
.row.gutter-small > div[class*=col-], form .gform_body .gform_fields .gfield .gutter-small.ginput_container.ginput_container_address > div[class*=col-] {
  padding-left: 12.5px;
  padding-right: 12.5px;
}
.row.gutter-medium, form .gform_body .gform_fields .gfield .gutter-medium.ginput_container.ginput_container_address {
  margin-left: -30px;
  margin-right: -30px;
}
.row.gutter-medium > div[class*=col-], form .gform_body .gform_fields .gfield .gutter-medium.ginput_container.ginput_container_address > div[class*=col-] {
  padding-left: 30px;
  padding-right: 30px;
}
.row.gutter-large, form .gform_body .gform_fields .gfield .gutter-large.ginput_container.ginput_container_address {
  margin-left: -50px;
  margin-right: -50px;
}
.row.gutter-large > div[class*=col-], form .gform_body .gform_fields .gfield .gutter-large.ginput_container.ginput_container_address > div[class*=col-] {
  padding-left: 50px;
  padding-right: 50px;
}
.row.gutter-x-large, form .gform_body .gform_fields .gfield .gutter-x-large.ginput_container.ginput_container_address {
  margin-left: -70px;
  margin-right: -70px;
}
.row.gutter-x-large > div[class*=col-], form .gform_body .gform_fields .gfield .gutter-x-large.ginput_container.ginput_container_address > div[class*=col-] {
  padding-left: 70px;
  padding-right: 70px;
}
.row .col-auto, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .col-auto {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.col-12, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_full, 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 {
  background-size: cover !important;
  background-repeat: no-repeat !important;
}

/*- Configurations -*/
.slice {
  position: relative;
}
.slice.content-row {
  /*- Taille du padding -*/
  /*- Taille du padding - Petit -*/
  /*- Taille du padding - Moyen -*/
  /*- Taille du padding - Large -*/
  /*- Taille du padding - Large -*/
  /*- Padding de la section -*/
  /*- Arrière plan de la section -*/
}
.slice.content-row .row, .slice.content-row form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address, form .gform_body .gform_fields .gfield .slice.content-row .ginput_container.ginput_container_address {
  /*- Espacement des colonnes - Moyen -*/
}
.slice.content-row .row > div[class*=col-].no-m-b, .slice.content-row form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address > div[class*=col-].no-m-b, form .gform_body .gform_fields .gfield .slice.content-row .ginput_container.ginput_container_address > div[class*=col-].no-m-b {
  margin-bottom: 0;
}
.slice.content-row .row > div[class*=col-].small-m-b, .slice.content-row form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address > div[class*=col-].small-m-b, form .gform_body .gform_fields .gfield .slice.content-row .ginput_container.ginput_container_address > div[class*=col-].small-m-b {
  margin-bottom: 25px;
}
.slice.content-row .row > div[class*=col-].medium-m-b, .slice.content-row form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address > div[class*=col-].medium-m-b, form .gform_body .gform_fields .gfield .slice.content-row .ginput_container.ginput_container_address > div[class*=col-].medium-m-b {
  margin-bottom: 50px;
}
.slice.content-row .row > div[class*=col-].large-m-b, .slice.content-row form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address > div[class*=col-].large-m-b, form .gform_body .gform_fields .gfield .slice.content-row .ginput_container.ginput_container_address > div[class*=col-].large-m-b {
  margin-bottom: 75px;
}
.slice.content-row .row > div[class*=col-]:last-child, .slice.content-row form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address > div[class*=col-]:last-child, form .gform_body .gform_fields .gfield .slice.content-row .ginput_container.ginput_container_address > div[class*=col-]:last-child {
  margin-bottom: 0px !important;
}
.slice.content-row .row > div[class*=col-] > div[class*=-module].no-m-b, .slice.content-row form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address > div[class*=col-] > div[class*=-module].no-m-b, form .gform_body .gform_fields .gfield .slice.content-row .ginput_container.ginput_container_address > div[class*=col-] > div[class*=-module].no-m-b {
  margin-bottom: 0;
}
.slice.content-row .row > div[class*=col-] > div[class*=-module].small-m-b, .slice.content-row form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address > div[class*=col-] > div[class*=-module].small-m-b, form .gform_body .gform_fields .gfield .slice.content-row .ginput_container.ginput_container_address > div[class*=col-] > div[class*=-module].small-m-b {
  margin-bottom: 25px;
}
.slice.content-row .row > div[class*=col-] > div[class*=-module].medium-m-b, .slice.content-row form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address > div[class*=col-] > div[class*=-module].medium-m-b, form .gform_body .gform_fields .gfield .slice.content-row .ginput_container.ginput_container_address > div[class*=col-] > div[class*=-module].medium-m-b {
  margin-bottom: 50px;
}
.slice.content-row .row > div[class*=col-] > div[class*=-module].large-m-b, .slice.content-row form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address > div[class*=col-] > div[class*=-module].large-m-b, form .gform_body .gform_fields .gfield .slice.content-row .ginput_container.ginput_container_address > div[class*=col-] > div[class*=-module].large-m-b {
  margin-bottom: 75px;
}
.slice.content-row .row > div[class*=col-] > div[class*=-module]:last-child, .slice.content-row form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address > div[class*=col-] > div[class*=-module]:last-child, form .gform_body .gform_fields .gfield .slice.content-row .ginput_container.ginput_container_address > div[class*=col-] > div[class*=-module]:last-child {
  margin-bottom: 0px !important;
}
.slice.content-row .row > div[class*=col-] > div[class*=-module]:last-child .the-content, .slice.content-row form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address > div[class*=col-] > div[class*=-module]:last-child .the-content, form .gform_body .gform_fields .gfield .slice.content-row .ginput_container.ginput_container_address > div[class*=col-] > div[class*=-module]:last-child .the-content {
  margin-bottom: 0;
}
.slice.content-row .row.gutter-medium > div[class*=col-].has-color-bg.fill-inset > div, .slice.content-row form .gform_body .gform_fields .gfield .gutter-medium.ginput_container.ginput_container_address > div[class*=col-].has-color-bg.fill-inset > div, form .gform_body .gform_fields .gfield .slice.content-row .gutter-medium.ginput_container.ginput_container_address > div[class*=col-].has-color-bg.fill-inset > div {
  position: relative;
  z-index: 2;
}
.slice.content-row .row.gutter-medium > div[class*=col-].has-color-bg.fill-inset:before, .slice.content-row form .gform_body .gform_fields .gfield .gutter-medium.ginput_container.ginput_container_address > div[class*=col-].has-color-bg.fill-inset:before, form .gform_body .gform_fields .gfield .slice.content-row .gutter-medium.ginput_container.ginput_container_address > div[class*=col-].has-color-bg.fill-inset:before {
  left: 30px;
  right: 30px;
}
.slice.content-row.p-size-small {
  padding: 50px 0;
}
.slice.content-row.p-size-medium {
  padding: 90px 0;
}
.slice.content-row.p-size-large {
  padding: 120px 0;
}
.slice.content-row.p-size-large.page-banner {
  padding-top: 50px;
}
.slice.content-row.p-size-x-large {
  padding: 185px 0;
}
.slice.content-row.no-p-bottom {
  padding-bottom: 0px;
}
.slice.content-row.no-p-top {
  padding-top: 0px;
}
.slice.content-row.no-p {
  padding-top: 0px;
  padding-bottom: 0px;
}
.slice.content-row.has-color-bg.bg-contained .wrapper {
  background: var(--bg-color);
}
.slice.content-row.has-color-bg.bg-full-width {
  background: var(--bg-color);
}
.slice.content-row.has-img-bg {
  background-position: center top;
  background-size: cover;
}
.slice.content-row.has-2-color-bg:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 50%;
  height: 100%;
  background-color: var(--bg-color-2);
}
.slice.content-row.flexible_grid .row > div[class*=col-], .slice.content-row.flexible_grid form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address > div[class*=col-], form .gform_body .gform_fields .gfield .slice.content-row.flexible_grid .ginput_container.ginput_container_address > div[class*=col-] {
  /*- Taille du padding -*/
  /*- Taille du padding - Petit -*/
  /*- Taille du padding - Moyen -*/
  /*- Taille du padding - Large -*/
  /*- Padding de la section -*/
  /*- Arrière plan du bloc -*/
}
.slice.content-row.flexible_grid .row > div[class*=col-].m-size-small, .slice.content-row.flexible_grid form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address > div[class*=col-].m-size-small, form .gform_body .gform_fields .gfield .slice.content-row.flexible_grid .ginput_container.ginput_container_address > div[class*=col-].m-size-small {
  padding: 50px 0;
}
.slice.content-row.flexible_grid .row > div[class*=col-].m-size-medium, .slice.content-row.flexible_grid form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address > div[class*=col-].m-size-medium, form .gform_body .gform_fields .gfield .slice.content-row.flexible_grid .ginput_container.ginput_container_address > div[class*=col-].m-size-medium {
  padding: 90px 0;
}
.slice.content-row.flexible_grid .row > div[class*=col-].m-size-large, .slice.content-row.flexible_grid form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address > div[class*=col-].m-size-large, form .gform_body .gform_fields .gfield .slice.content-row.flexible_grid .ginput_container.ginput_container_address > div[class*=col-].m-size-large {
  padding: 120px 0;
}
.slice.content-row.flexible_grid .row > div[class*=col-].no-m-bottom, .slice.content-row.flexible_grid form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address > div[class*=col-].no-m-bottom, form .gform_body .gform_fields .gfield .slice.content-row.flexible_grid .ginput_container.ginput_container_address > div[class*=col-].no-m-bottom {
  padding-bottom: 0px;
}
.slice.content-row.flexible_grid .row > div[class*=col-].no-m-top, .slice.content-row.flexible_grid form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address > div[class*=col-].no-m-top, form .gform_body .gform_fields .gfield .slice.content-row.flexible_grid .ginput_container.ginput_container_address > div[class*=col-].no-m-top {
  padding-top: 0px;
}
.slice.content-row.flexible_grid .row > div[class*=col-].no-m, .slice.content-row.flexible_grid form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address > div[class*=col-].no-m, form .gform_body .gform_fields .gfield .slice.content-row.flexible_grid .ginput_container.ginput_container_address > div[class*=col-].no-m {
  padding-top: 0px;
  padding-bottom: 0px;
}
.slice.content-row.flexible_grid .row > div[class*=col-].has-color-bg.fill-inset, .slice.content-row.flexible_grid form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address > div[class*=col-].has-color-bg.fill-inset, form .gform_body .gform_fields .gfield .slice.content-row.flexible_grid .ginput_container.ginput_container_address > div[class*=col-].has-color-bg.fill-inset {
  overflow: hidden;
  position: relative;
}
.slice.content-row.flexible_grid .row > div[class*=col-].has-color-bg.fill-inset:before, .slice.content-row.flexible_grid form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address > div[class*=col-].has-color-bg.fill-inset:before, form .gform_body .gform_fields .gfield .slice.content-row.flexible_grid .ginput_container.ginput_container_address > div[class*=col-].has-color-bg.fill-inset:before {
  content: "";
  position: absolute;
  width: auto;
  height: 100%;
  background-color: var(--block-bg-color);
}
.slice.content-row.flexible_grid .row > div[class*=col-].has-color-bg.fill-full, .slice.content-row.flexible_grid form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address > div[class*=col-].has-color-bg.fill-full, form .gform_body .gform_fields .gfield .slice.content-row.flexible_grid .ginput_container.ginput_container_address > div[class*=col-].has-color-bg.fill-full {
  position: static;
}
.slice.content-row.flexible_grid .row > div[class*=col-].has-color-bg.fill-full:after, .slice.content-row.flexible_grid form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address > div[class*=col-].has-color-bg.fill-full:after, form .gform_body .gform_fields .gfield .slice.content-row.flexible_grid .ginput_container.ginput_container_address > div[class*=col-].has-color-bg.fill-full:after {
  content: "";
  background-color: var(--bg-color);
  position: absolute;
  width: 50%;
  height: 100vh;
  top: 0;
  left: 50%;
  z-index: -1;
}
.slice.content-row.flexible_grid .row > div[class*=col-].has-img-bg, .slice.content-row.flexible_grid form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address > div[class*=col-].has-img-bg, form .gform_body .gform_fields .gfield .slice.content-row.flexible_grid .ginput_container.ginput_container_address > div[class*=col-].has-img-bg {
  background-position: center top;
  background-size: cover;
}
.slice.content-row.flexible_grid.p-size-small .row > div[class*=col-].has-color-bg.fill-full:after, .slice.content-row.flexible_grid.p-size-small form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address > div[class*=col-].has-color-bg.fill-full:after, form .gform_body .gform_fields .gfield .slice.content-row.flexible_grid.p-size-small .ginput_container.ginput_container_address > div[class*=col-].has-color-bg.fill-full:after {
  top: -50px;
}
.slice.content-row.flexible_grid.p-size-medium .row > div[class*=col-].has-color-bg.fill-full:after, .slice.content-row.flexible_grid.p-size-medium form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address > div[class*=col-].has-color-bg.fill-full:after, form .gform_body .gform_fields .gfield .slice.content-row.flexible_grid.p-size-medium .ginput_container.ginput_container_address > div[class*=col-].has-color-bg.fill-full:after {
  top: -90px;
}
.slice.content-row.flexible_grid.p-size-large .row > div[class*=col-].has-color-bg.fill-full:after, .slice.content-row.flexible_grid.p-size-large form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address > div[class*=col-].has-color-bg.fill-full:after, form .gform_body .gform_fields .gfield .slice.content-row.flexible_grid.p-size-large .ginput_container.ginput_container_address > div[class*=col-].has-color-bg.fill-full:after {
  top: -120px;
}
.slice.content-row.flexible_grid.p-size-x-large .row > div[class*=col-].has-color-bg.fill-full:after, .slice.content-row.flexible_grid.p-size-x-large form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address > div[class*=col-].has-color-bg.fill-full:after, form .gform_body .gform_fields .gfield .slice.content-row.flexible_grid.p-size-x-large .ginput_container.ginput_container_address > div[class*=col-].has-color-bg.fill-full:after {
  top: -185px;
}

.c3d-selector-module .img-container {
  position: relative;
  max-width: 950px;
  margin-inline: auto;
}
.c3d-selector-module .img-container .play-btn {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  gap: 20px;
}
.c3d-selector-module .img-container p {
  font: 700 1.125rem/1.2em var(--font-primary);
  color: var(--color-primary);
  text-transform: uppercase;
}
.c3d-selector-module .img-container:before {
  content: "";
  position: absolute;
  background-color: var(--color-accent-2);
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.8;
  transition: all 0.3s ease-in-out;
}
.c3d-selector-module .img-container:after {
  content: "";
  position: absolute;
  background-color: var(--color-accent-2);
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.8;
}
.c3d-selector-module .img-container path {
  transition: all 0.3s ease-in-out;
  transform-origin: 50%;
}
.c3d-selector-module .img-container:hover:before {
  background-color: var(--color-secondary);
}
.c3d-selector-module .img-container:hover path {
  transform: scale(1.1);
}

.half-color {
  position: relative;
}
.half-color:before {
  content: "";
  position: absolute;
  background-color: #F7F4F2;
  height: 50%;
  width: 100%;
  bottom: 0;
  left: 0;
}

.fancybox-content {
  padding: 0;
}

.popup-video.fancybox-content {
  display: inline;
  background: none;
  aspect-ratio: 16/9;
  overflow: hidden;
  width: 100%;
  max-width: 1280px;
  height: 100%;
  max-height: 720px;
}
.popup-video.fancybox-content > div {
  top: 50%;
  transform: translateY(-50%);
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top: 56.25%;
}
.popup-video.fancybox-content > div > iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.popup-video.fancybox-content svg path {
  fill: white;
}

.order-row {
  margin-bottom: 50px;
  row-gap: 30px;
}
.order-row .categories {
  max-width: 410px;
  width: 100%;
}
.order-row button {
  position: relative;
  background-color: transparent;
  border: none;
}
.order-row button p {
  font: 400 1rem/1.2em var(--font-primary);
  color: var(--color-primary);
  transition: all 0.3s ease-in-out;
}
.order-row button p span {
  font: 700 1.25rem/1.2em var(--font-primary);
}
.order-row button:hover p {
  color: var(--color-accent-2);
}
.order-row button:hover .arrow path {
  stroke: var(--color-accent-2);
}
.order-row button .arrow {
  position: absolute;
  height: 20px;
  width: 9px;
  transform: rotate(90deg);
  right: -10px;
  top: 5px;
}
.order-row button .arrow path {
  transition: all 0.3s ease-in-out;
  stroke: var(--color-primary);
}
.order-row button [data-order=ASC] .arrow {
  transform: rotate(-90deg);
  transform-origin: center center;
  right: -15px;
}
.order-row button [data-order=ASC] .arrow path {
  stroke: var(--color-primary);
}

.posts-block {
  margin-bottom: 50px;
}

.single-post .cat {
  font: 700 1.125rem/1.2em var(--font-secondary);
  color: var(--color-primary);
}

.attention-seeker {
  position: absolute;
  right: 50px;
  bottom: 50px;
}

/** Add custom CSS here **/
.page-id-2 h2 {
  font-size: 3.125rem;
}

.content-row .bg-shape-container {
  position: absolute;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 2;
}
.content-row .bg-shape-container svg {
  width: 100%;
}
.content-row .bg-shape-container svg path {
  fill: var(--shape-color);
}
.content-row .bg-shape-container.shape-top {
  top: -5px;
}
.content-row .bg-shape-container.shape-bottom {
  bottom: -20px;
}
.content-row.statistics_section .row, .content-row.statistics_section form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address, form .gform_body .gform_fields .gfield .content-row.statistics_section .ginput_container.ginput_container_address {
  transform: translateY(75px);
}
.content-row.statistics_section .the-content * {
  color: white !important;
}
.content-row.statistics_section .stats-block {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 100%;
  position: relative;
  border: 3px solid var(--color-accent-3);
  aspect-ratio: 1;
  padding: 15px;
  max-width: 350px;
  z-index: 3;
}
.content-row.statistics_section .stats-block .meta span {
  color: white;
  font: 600 3.375rem/100% var(--font-primary);
  margin-bottom: 25px;
}
.content-row.statistics_section .stats-block .meta p {
  color: white;
  font: 500 1.25rem/1.5 var(--font-primary);
  padding-top: 10px;
}
.content-row.statistics_section .stats-block.block-1 {
  background: #003f72;
}
.content-row.statistics_section .stats-block.block-2 {
  background: #1e95d3;
}
.content-row.statistics_section .stats-block.block-3 {
  background: #7c7c7c;
}
.content-row .business-technology-img {
  transform: translateX(-50px);
}

.privacy-policy a {
  text-decoration: underline;
}

/*
	Module: Bannière de page
	Description:
*/
.banner {
  margin-top: 100px;
  padding-bottom: 50px;
}
.banner::after {
  content: "";
  position: absolute;
  right: -4rem;
  top: 60%;
  width: 260px;
  aspect-ratio: 1;
  transform: translateY(-50%);
  border-radius: 50%;
  background: var(--color-accent-2);
  z-index: 2;
  pointer-events: none;
}
.banner h1 {
  font: 600 3.125rem/1.2em var(--font-primary);
  margin-bottom: 20px;
  color: white;
}
.banner .the-content p {
  font: 500 1.5rem/160% var(--font-primary);
}
.banner .the-content * {
  color: white;
}
.banner .links-container .col-12, .banner .links-container form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_full, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .banner .links-container .ginput_full, .banner .links-container form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_left, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .banner .links-container .ginput_left, .banner .links-container form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_right, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .banner .links-container .ginput_right {
  gap: 75px;
}
.banner .links-container a {
  display: flex;
  gap: 15px;
  align-items: center;
  font: 500 1.5rem/100% var(--font-primary);
  color: var(--color-accent-2);
}

/*
	Module: Texte
	Description:
*/
.text-module {
  margin-bottom: 50px;
}

/*
	Module: Boutons
	Description:
*/
/*--- Responsive ---*/
/*
	Module: Image
	Description:
*/
.image-module {
  position: relative;
  /*- Format de l'image - Carré -*/
  /*- Format de l'image - Portrait -*/
  /*- Format de l'image - Paysage -*/
}
.image-module .fancybox {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.image-module img {
  display: block;
  margin: 0;
}
.image-module.square .img-container {
  position: relative;
  position: relative;
}
.image-module.square .img-container:before {
  content: "";
  display: block;
  padding-top: 100%;
}
.image-module.square .img-container > img,
.image-module.square .img-container > picture {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.image-module.portrait .img-container {
  position: relative;
  position: relative;
}
.image-module.portrait .img-container:before {
  content: "";
  display: block;
  padding-top: 133.33%;
}
.image-module.portrait .img-container > img,
.image-module.portrait .img-container > picture {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.image-module.landscape .img-container {
  position: relative;
  position: relative;
}
.image-module.landscape .img-container:before {
  content: "";
  display: block;
  padding-top: 75%;
}
.image-module.landscape .img-container > img,
.image-module.landscape .img-container > picture {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.image-module.panoramic .img-container {
  position: relative;
  position: relative;
}
.image-module.panoramic .img-container:before {
  content: "";
  display: block;
  padding-top: 40%;
}
.image-module.panoramic .img-container > img,
.image-module.panoramic .img-container > picture {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.image-module.img-as-bg {
  position: static;
}
.image-module.img-as-bg img {
  position: absolute;
  top: 50%;
  min-height: 100%;
  transform: translateY(-50%);
  min-width: 50%;
}

.col-12:first-child .image-module.img-as-bg img, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_full:first-child .image-module.img-as-bg img, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_left:first-child .image-module.img-as-bg img, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_right:first-child .image-module.img-as-bg img {
  right: 50%;
}
.col-12:last-child .image-module.img-as-bg img, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_full:last-child .image-module.img-as-bg img, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_left:last-child .image-module.img-as-bg img, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_right:last-child .image-module.img-as-bg img {
  left: 50%;
}

/*
	Module: Galerie photo
	Description:
*/
.gallery-module .images {
  margin-bottom: 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 30px;
}
.gallery-module .img-container {
  position: relative;
  position: relative;
  height: 515px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.gallery-module .img-container > img,
.gallery-module .img-container > picture {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.gallery-module .img-container img {
  transition: all 0.3s ease-in-out;
}
.gallery-module .img-container:nth-child(6n+1) {
  position: relative;
  width: 59%;
}
.gallery-module .img-container:nth-child(6n+1):before {
  content: "";
  display: block;
  padding-top: 52%;
}
.gallery-module .img-container:nth-child(6n+2) {
  position: relative;
  width: 39%;
}
.gallery-module .img-container:nth-child(6n+2):before {
  content: "";
  display: block;
  padding-top: 100%;
}
.gallery-module .img-container:nth-child(6n+3), .gallery-module .img-container:nth-child(6n+4), .gallery-module .img-container:nth-child(6n+5) {
  position: relative;
  width: calc(33% - 15px);
}
.gallery-module .img-container:nth-child(6n+3):before, .gallery-module .img-container:nth-child(6n+4):before, .gallery-module .img-container:nth-child(6n+5):before {
  content: "";
  display: block;
  padding-top: 30%;
}
.gallery-module .img-container:nth-child(6n+6) {
  position: relative;
  width: 100%;
}
.gallery-module .img-container:nth-child(6n+6):before {
  content: "";
  display: block;
  padding-top: 100%;
}
.gallery-module .img-container:before {
  content: "";
  position: absolute;
  background-color: var(--color-primary);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.gallery-module .img-container:after {
  content: "";
  position: absolute;
  background-size: contain;
  width: 50px;
  height: 50px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.gallery-module .img-container h4 {
  max-width: 320px;
  margin-inline: auto;
  position: relative;
  font: 700 1.5rem/1.2em var(--font-primary);
  color: #fff;
  text-transform: capitalize;
  margin: 0;
  z-index: 2;
  opacity: 0;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.gallery-module .img-container p {
  font: 400 1rem/1.2em var(--font-secondary);
  text-transform: uppercase;
  opacity: 0;
  z-index: 2;
  transition: all 0.3s ease-in-out;
}
.gallery-module .img-container:hover img {
  transform: scale(1.1);
}
.gallery-module .img-container:hover:before {
  opacity: 0.8;
}
.gallery-module .img-container:hover:after {
  opacity: 1;
}
.gallery-module .img-container:hover h4 {
  opacity: 1;
}
.gallery-module .img-container:hover p {
  opacity: 1;
}
.gallery-module .img-container a {
  z-index: 2;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
.gallery-module .btn {
  margin-inline: auto;
}

/*
	Module: Slider
	Description:
*/
.slider-module {
  margin-bottom: 50px;
}
.slider-module .splide__slide {
  margin-bottom: 35px;
}
.slider-module .splide__slide > div:last-child {
  margin-bottom: 0;
}
.slider-module .image-module {
  border-radius: 20px;
  overflow: hidden;
}
.slider-module .splide__arrows {
  position: absolute;
  top: 40%;
  left: 50%;
  width: calc(100% + 100px);
  transform: translateY(-50%) translateX(-50%);
  pointer-events: none;
  display: flex;
  justify-content: space-between;
  z-index: 2;
}
.slider-module .splide__arrows .splide__arrow {
  position: relative;
  pointer-events: all;
  background: transparent;
  cursor: pointer;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider-module .splide__arrows .splide__arrow svg {
  transition: all 0.3s ease-in-out;
  overflow: visible;
}
.slider-module .splide__arrows .splide__arrow svg circle, .slider-module .splide__arrows .splide__arrow svg path {
  transition: all 0.3s ease-in-out;
}
.slider-module .splide__arrows .splide__arrow:hover:before {
  right: 30%;
}
.slider-module .splide__arrows .splide__arrow:hover svg {
  transform: translateX(-15px);
}
.slider-module .splide__arrows .splide__arrow:hover svg circle {
  fill: var(--color-tertiary);
}
.slider-module .splide__arrows .splide__arrow:hover svg path {
  stroke: var(--color-secondary);
}
.slider-module .splide__arrows .splide__arrow.splide__arrow--next {
  transform: rotateZ(180deg);
}
.slider-module .splide__pagination {
  display: flex;
  gap: 10px;
  margin-top: 25px;
}
.slider-module .splide__pagination button {
  border-radius: 100%;
  width: 15px;
  height: 15px;
  display: inline-block;
  background: transparent;
  padding: 0;
  cursor: pointer;
  border: 1px solid var(--color-accent-1);
}
.slider-module .splide__pagination button.is-active {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}
.slider-module.pager-inside .splide__pagination {
  position: absolute;
  bottom: 20px;
  width: 100%;
  left: 0;
}
.slider-module.arrows-inside .splide__arrows {
  left: 15px;
  width: calc(100% - 30px);
}

/*
	Module: Accordeon
	Description:
*/
.collapse-module {
  margin-bottom: 35px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  min-height: 62px;
  transition: all 0.3s ease-in-out;
  border-radius: 60px;
  border: 2px solid transparent;
}
.collapse-module + .collapse-module {
  margin-top: 0;
}
.collapse-module .collapse-trigger {
  font: 700 1.125rem/1.2em var(--font-primary);
  margin-bottom: 0;
  padding: 16px 70px 16px 35px;
  display: flex;
  gap: 25px;
  justify-content: start;
  align-items: center;
  cursor: pointer;
  position: relative;
}
.collapse-module .collapse-trigger .icon {
  width: 5%;
  min-width: 50px;
}
.collapse-module .collapse-trigger .icon svg {
  max-width: 100%;
  height: auto;
}
.collapse-module .collapse-trigger .arrow {
  position: absolute;
  right: 40px;
  top: 53%;
  transform: translateY(-50%);
  transform-origin: 50%;
  transition: all 0.3s ease-in-out;
}
.collapse-module .collapse-trigger .arrow circle {
  transition: all 0.3s ease-in-out;
}
.collapse-module .collapse-trigger h3 {
  font: 700 1rem/1.2em var(--font-primary);
  text-transform: initial;
  transition: all 0.3s ease-in-out;
  color: #003057;
  margin: 0;
}
.collapse-module .collapse-content {
  display: none;
  padding: 18px 60px 40px 85px;
}
.collapse-module .collapse-content .the-content {
  margin-bottom: 10px;
}
.collapse-module.open .arrow {
  transform: translateY(-50%) scaleY(-1);
}

/*
	Module: Google Maps
	Description:
*/
.google-maps-module {
  margin-bottom: 50px;
  position: relative;
}
.google-maps-module:before {
  content: "";
  display: block;
  padding-top: 40%;
}
.google-maps-module .google-map {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  height: 100%;
}

/*
	Module: Informations de contact
	Description:
*/
.contact-info-module {
  margin-bottom: 35px;
}
.contact-info-module p, .contact-info-module b {
  font: 400 1rem/1.6em var(--font-primary);
  max-width: 300px;
}
.contact-info-module b {
  font-weight: 700;
}
.contact-info-module .contact-info {
  display: flex;
  margin-bottom: 35px;
  gap: 20px;
}
.contact-info-module .contact-info .icon {
  width: 25px;
  display: flex;
  justify-content: center;
}
.contact-info-module .contact-info .icon svg {
  height: fit-content;
  max-width: 100%;
  overflow: visible;
  transform: translateY(3px);
  width: 20px;
}
.contact-info-module .contact-info.contact-schedule {
  gap: 20px;
  margin-bottom: 20px;
}
.contact-info-module .opening-hours-line {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 350px;
  margin-bottom: 12px;
  gap: 30px;
}

/*
	Module: Contenu du site
	Description:
*/
.site-content-module {
  margin-bottom: 50px;
  height: 100%;
  /*- Bloc de membre d'équipe -*/
}
.site-content-module:last-child {
  margin-bottom: 0;
}
.site-content-module .team-member-block {
  position: relative;
  display: block;
  width: 100%;
}
.site-content-module .team-member-block .img-container {
  border-radius: 20px;
  overflow: hidden;
  height: 600px;
  position: relative;
  position: relative;
  margin-bottom: 35px;
}
.site-content-module .team-member-block .img-container:before {
  content: "";
  display: block;
  padding-top: 140%;
}
.site-content-module .team-member-block .img-container > img,
.site-content-module .team-member-block .img-container > picture {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.site-content-module .team-member-block .the-content h4 {
  font: 600 1.375rem/100% var(--font-secondary);
  margin-bottom: 15px;
  color: var(--color-primary);
}
.site-content-module .team-member-block .the-content h5 {
  font: normal 1rem/100% var(--font-primary);
  color: var(--color-text);
}
.site-content-module .team-member-block .the-content p {
  max-width: 250px;
  line-height: 1.2em;
}
.site-content-module .team-member-block.has-description {
  overflow: hidden;
}
.site-content-module .team-member-block.has-description .img-container {
  height: 700px;
}
.site-content-module .team-member-block.has-description .the-content h4 {
  font: bold 1.25rem/100% var(--font-primary);
  margin-bottom: 5px;
  color: var(--color-accent-1);
}
.site-content-module .team-member-block.has-description .the-content h5 {
  font: normal 1rem/100% var(--font-primary);
  color: var(--color-text);
}
.site-content-module .team-member-block.has-description .content {
  position: absolute;
  z-index: 2;
  padding: 40px;
  top: 0;
  left: 0;
  width: 100%;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  height: 100%;
  overflow: hidden;
  cursor: pointer;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.site-content-module .team-member-block.has-description .content:before {
  content: "";
  background: var(--color-secondary);
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  transition: all 0.3s ease-in-out;
}
.site-content-module .team-member-block.has-description .content h4 {
  font: 60 1.375rem/100% var(--font-secondary);
  color: white;
  transition: all 0.3s ease-in-out;
  margin-bottom: 10px;
}
.site-content-module .team-member-block.has-description .content h4 sup {
  font-size: 12px;
}
.site-content-module .team-member-block.has-description .content h5 {
  font: 700 1.25rem/100% var(--font-primary);
  color: var(--color-accent-1);
  transition: all 0.3s ease-in-out;
  margin-bottom: 35px;
}
.site-content-module .team-member-block.has-description .content p {
  font: 400 1rem/1.6em var(--font-primary);
  transition: all 0.3s ease-in-out;
  color: white;
  max-width: 100%;
}
.site-content-module .team-member-block.has-description .content .btn {
  margin-top: 25px;
  color: white;
  border-color: white !important;
  transition: all 0.3s ease-in-out;
  padding: 15px 0;
  font: 700 1rem/1.2em var(--font-primary);
  text-transform: uppercase;
}
.site-content-module .team-member-block.has-description .content .btn span {
  color: white;
  transition: all 0.3s ease-in-out;
}
.site-content-module .team-member-block.has-description .content .btn:hover {
  background-color: transparent;
  color: var(--color-tertiary);
}
.site-content-module .team-member-block.has-description:hover .content {
  opacity: 1;
}
.site-content-module .team-member-block.has-description:hover .content:before {
  opacity: 0.8;
}
.site-content-module .team-member-block.has-description:hover .content h4,
.site-content-module .team-member-block.has-description:hover .content h5,
.site-content-module .team-member-block.has-description:hover .content p,
.site-content-module .team-member-block.has-description:hover .content .btn {
  transform: translateY(0px);
  opacity: 1;
}
.site-content-module .team-member-block.has-description:hover .content h4 {
  transition: all 0.3s ease-in-out 0.1s;
}
.site-content-module .team-member-block.has-description:hover .content h5 {
  transition: all 0.3s ease-in-out 0.2s;
}
.site-content-module .team-member-block.has-description:hover .content p {
  transition: all 0.3s ease-in-out 0.3s;
}
.site-content-module .team-member-block.has-description:hover .content .btn {
  transition: all 0.3s ease-in-out 0.4s;
}
.site-content-module .content-block {
  display: block;
  position: relative;
  height: 100%;
  background-color: var(--bg-color);
  border-radius: 15px;
  overflow: hidden;
}
.site-content-module .content-block .img-container {
  position: relative;
  position: relative;
  min-height: 535px;
}
.site-content-module .content-block .img-container:before {
  content: "";
  display: block;
  padding-top: 56.25%;
}
.site-content-module .content-block .img-container > img,
.site-content-module .content-block .img-container > picture {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.site-content-module .content-block .text-container {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 10%;
  width: 100%;
  padding: 30px;
  background-color: var(--color-primary);
  transition: all 0.3s ease-in-out;
}
.site-content-module .content-block .text-container:after {
  content: "";
  position: absolute;
  background: url(../../assets/images/plus-icon.svg) no-repeat center;
  background-size: contain;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  transition: all 0.1s;
}
.site-content-module .content-block .text-container h4 {
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  font: bold 1.25rem/140% var(--font-primary);
  margin-bottom: 0;
  color: var(--text-color);
  transition: all 0.3s ease-in-out;
}
.site-content-module .content-block .text-container p {
  color: var(--text-color);
}
.site-content-module .content-block .text-container .btn-container {
  position: absolute;
  left: 30px;
  bottom: 30px;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.site-content-module .content-block:hover .text-container {
  height: 100%;
  background-color: rgba(237, 28, 37, 0.7529411765);
}
.site-content-module .content-block:hover .text-container:after {
  opacity: 0;
}
.site-content-module .content-block:hover .text-container h4 {
  top: 30px;
  transform: translateY(0);
}
.site-content-module .content-block:hover .text-container .btn-container {
  opacity: 1;
}

.slice.row_3_col .site-content-module .team-member-block.has-description .content {
  padding: 80px 40px;
}
.slice.row_4_col .site-content-module .team-member-block.has-description .content {
  padding: 40px 40px;
}
.slice.row_4_col .site-content-module .team-member-block.has-description .content, .slice.row_3_col .wrapper.small .site-content-module .team-member-block.has-description .content,
.slice .slider-module .site-content-module .team-member-block.has-description .content {
  padding: 80px 40px;
}
.slice.row_4_col .site-content-module .team-member-block.has-description p, .slice.row_3_col .wrapper.small .site-content-module .team-member-block.has-description p,
.slice .slider-module .site-content-module .team-member-block.has-description p {
  display: none;
}

/*
	Module:Bloc solution
	Description:
*/
.solution-module {
  margin-bottom: 0px;
  border-radius: 5px;
  overflow: hidden;
  background-color: white;
  -webkit-box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.15);
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.15);
  height: 100%;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: start;
}
.solution-module .img-container {
  margin-bottom: 20px;
}
.solution-module .img-container.type-image {
  position: relative;
  position: relative;
}
.solution-module .img-container.type-image:before {
  content: "";
  display: block;
  padding-top: 60%;
}
.solution-module .img-container.type-image > img,
.solution-module .img-container.type-image > picture {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.solution-module .img-container.type-icon {
  margin-top: 30px;
  margin-bottom: 10px;
  position: relative;
  position: relative;
}
.solution-module .img-container.type-icon:before {
  content: "";
  display: block;
  padding-top: 30%;
}
.solution-module .img-container.type-icon > img,
.solution-module .img-container.type-icon > picture {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.solution-module .img-container.type-icon img {
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}
.solution-module .meta {
  padding: 25px;
}
.solution-module .meta h4 {
  margin-bottom: 25px;
}
.solution-module .meta .the-content {
  margin-bottom: 25px !important;
}
.solution-module a {
  font: 600 1rem/100% var(--font-primary);
  display: flex;
  gap: 15px;
  align-items: center;
  color: var(--color-accent-2);
}
.solution-module a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 1795px) {
  .wrapper {
    max-width: calc(100% - 150px);
  }
}
@media screen and (max-width: 1500px) {
  .wrapper.smaller {
    max-width: calc(100% - 80px);
  }
  .banner h1 {
    font-size: 2.8125rem;
  }
  .modal .btn-close {
    top: 35px;
    right: 35px;
  }
}
@media screen and (max-width: 1350px) {
  header .wrapper .logo, header .wrapper .logo--mobile {
    width: fit-content;
    height: 65px;
  }
}
@media screen and (max-width: 1280px) {
  header .wrapper nav ul li,
  header.normal .wrapper nav ul li {
    margin-left: 30px;
  }
  .banner h1 {
    font-size: 2.375rem;
  }
}
@media screen and (max-width: 1200px) {
  /*
      header.scss
  */
  header,
  header.normal {
    position: fixed;
  }
  header nav,
  header.normal nav {
    display: none;
  }
  header .mobile-nav-trigger,
  header #mobile-nav,
  header.normal .mobile-nav-trigger,
  header.normal #mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }
  header#header .wrapper .menu,
  header.normal#header .wrapper .menu {
    justify-content: space-between;
  }
  header#header.active .mobile-nav-trigger span:nth-child(1),
  header.normal#header.active .mobile-nav-trigger span:nth-child(1) {
    transform: rotate(45deg) translateY(10px) translateX(3px);
    transition: all 0.3s ease-in-out;
  }
  header#header.active .mobile-nav-trigger span:nth-child(3),
  header.normal#header.active .mobile-nav-trigger span:nth-child(3) {
    transform: rotate(-45deg) translateY(-10px) translateX(3px);
    transform-origin: 50%;
    transition: all 0.3s ease-in-out;
  }
  header#header.active .mobile-nav-trigger span:nth-child(2),
  header.normal#header.active .mobile-nav-trigger span:nth-child(2) {
    position: relative;
    background: transparent;
    transition: all 0.3s ease-in-out;
  }
  .image-bleed-out {
    width: 100%;
    position: relative;
    object-fit: cover;
    max-height: 600px;
    height: 600px;
    top: -210px;
    right: 0;
  }
  .image-bleed-out.image-bleed-out--img-right {
    left: 0;
  }
  .gallery {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 1080px) {
  /*
       Flexsite.scss
  */
  .wrapper {
    width: calc(100% - 60px);
  }
  .slider-module .splide__arrows {
    width: 100%;
  }
  .team-picture-gallery .team-picture-gallery__employee {
    height: 500px;
  }
  .team-picture-gallery .team-picture-gallery__employee .employee__information {
    transition: 250ms;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0;
    padding: 35px;
  }
  .team-picture-gallery .team-picture-gallery__employee .employee__information:before {
    content: "";
    z-index: 0;
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-accent-1);
    opacity: 0.95;
  }
  .team-picture-gallery .team-picture-gallery__employee .employee__information h2 {
    font-size: 1.875rem;
    font-weight: bold;
    color: #F8F7F2;
    position: relative;
    padding-bottom: 5px;
  }
  .team-picture-gallery .team-picture-gallery__employee .employee__information h3 {
    font-size: 1.25rem;
    font-weight: bold;
    font-style: italic;
    font-family: var(--font-secondary);
    color: #C1BAA4;
    position: relative;
    padding-bottom: 45px;
  }
  .team-picture-gallery .team-picture-gallery__employee .employee__information .the-content {
    position: relative;
    padding-bottom: 30px;
  }
  .team-picture-gallery .team-picture-gallery__employee .employee__information .the-content p {
    color: #F8F7F2;
  }
  .team-picture-gallery .team-picture-gallery__employee .employee__information .learn-more {
    position: relative;
  }
  .team-picture-gallery .team-picture-gallery__employee .employee__information .learn-more span {
    font-size: 1.25rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #F8F7F2;
  }
  .team-picture-gallery .team-picture-gallery__employee .employee__information .learn-more:before {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    height: 2px;
    width: 0;
    background: #F8F7F2;
    transition: 250ms;
  }
}
@media screen and (max-width: 991px) {
  .btn-center {
    justify-content: center !important;
  }
  .no-p-top {
    overflow-y: visible !important;
  }
  .reversed .row, .reversed form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address, form .gform_body .gform_fields .gfield .reversed .ginput_container.ginput_container_address {
    flex-direction: column-reverse;
  }
  h1 {
    font-size: 3.125rem;
  }
  h2 {
    font-size: 2.1875rem;
  }
  h3 {
    font-size: 1.75rem;
  }
  h4 {
    font-size: 1.375rem;
  }
  .home-banner {
    height: 50vh;
  }
  .home-banner:after {
    background: var(--color-accent-1);
    opacity: 0.8;
  }
  .home-banner .the-content {
    width: 100%;
    max-width: 100%;
  }
  .home-banner .image {
    width: 100%;
  }
  .home-banner h1 {
    font-size: 3.125rem;
  }
  #header .wrapper {
    width: 90%;
  }
  #header .wrapper .logo svg {
    width: 121px;
  }
  #header .wrapper .logo.desktopOnly {
    display: none;
  }
  #header .wrapper .logo.mobileOnly {
    display: none;
  }
  #header .wrapper .logo--mobile {
    display: block;
  }
  #header .wrapper > nav {
    display: none;
  }
  .banner {
    height: min(100dvh, 450px);
    display: flex;
    flex-direction: column;
  }
  .banner .banner-txt-container, .banner .banner-img-container {
    padding-top: 20px;
  }
  .banner p {
    margin-top: 30px;
  }
  .banner .intro-text {
    margin-bottom: 30px;
  }
  .banner:after {
    width: 160px;
  }
  .banner:before {
    transform: scale(0.7);
    left: auto;
    bottom: -32px;
    right: -55px;
    z-index: 1;
  }
  .banner .wrapper {
    display: flex;
    justify-content: center;
  }
  .banner .wrapper .links-container {
    transform: translateY(30px);
  }
  .banner .the-content {
    width: 100%;
  }
  .banner .the-content h1 {
    font-size: 2.1875rem;
    width: 100%;
  }
  .banner .the-content p {
    font-size: 1.125rem;
  }
  .banner .image {
    width: 100%;
    height: 100%;
    z-index: 0;
  }
  .banner .image:after {
    opacity: 0.9;
  }
  .site-content-module .team-member-block.has-description .img-container {
    height: 100%;
  }
  .site-content-module .team-member-block.has-description .img-container:before {
    padding-top: 130%;
  }
  .slider-module {
    width: 90%;
    margin-inline: auto;
  }
  .modal-employee .image {
    margin: 0;
    max-width: 300px;
    max-height: 300px;
  }
  .modal-employee .row, .modal-employee form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address, form .gform_body .gform_fields .gfield .modal-employee .ginput_container.ginput_container_address {
    gap: 10px;
  }
  .image-bleed-out {
    top: -100px;
  }
  .appointment-block h3 {
    font-size: 2.1875rem;
  }
  footer .row > div:first-child, footer form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address > div:first-child, form .gform_body .gform_fields .gfield footer .ginput_container.ginput_container_address > div:first-child {
    margin-bottom: 20px;
    display: flex;
  }
  footer .row > div:first-child .footer__logo, footer form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address > div:first-child .footer__logo, form .gform_body .gform_fields .gfield footer .ginput_container.ginput_container_address > div:first-child .footer__logo {
    margin: 0 auto;
  }
  section {
    padding: 100px 0;
  }
  .splide--team-members .splide__slide img {
    height: 450px;
    object-fit: cover;
  }
  .intro-title h2 {
    font-size: 2.1875rem;
  }
  .wrapper.smallest {
    max-width: calc(100% - 150px);
  }
  .gallery-module .img-container {
    width: 47%;
  }
  .gallery-module .img-container:before {
    opacity: 0.8;
  }
  .gallery-module .img-container h4 {
    opacity: 1;
  }
  .gallery-module .img-container p {
    opacity: 1;
  }
  .slider-module {
    width: 100%;
  }
  .slider-module .splide__arrows {
    margin-inline: auto;
  }
  .slider-module .splide__arrows .splide__arrow:hover svg circle {
    fill: var(--color-primary);
  }
  .page-id-2 h2 {
    font-size: 1.4375rem;
  }
  .slice.content-row.has-2-color-bg::before {
    content: none;
  }
  .slice.content-row.has-2-color-bg .fill-full::before {
    content: "";
    position: absolute;
    left: 0;
    top: -15px;
    width: 100%;
    height: 110%;
    background-color: #FFFFFF;
    z-index: -1;
  }
}
@media screen and (max-width: 767px) {
  .banner {
    height: auto;
  }
  footer .row > div, footer form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address > div, form .gform_body .gform_fields .gfield footer .ginput_container.ginput_container_address > div {
    margin-bottom: 20px;
  }
  footer .row > div .footer__logo, footer form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address > div .footer__logo, form .gform_body .gform_fields .gfield footer .ginput_container.ginput_container_address > div .footer__logo {
    margin: 0 auto;
  }
  .gallery {
    grid-template-columns: 1fr;
  }
  .gallery .gallery__picture {
    height: 350px;
  }
  .gallery .gallery__picture:nth-child(3n) {
    grid-column: 1/span 1;
  }
  .gallery-module .img-container {
    width: 100% !important;
    height: auto;
    padding-top: 75%;
  }
  .gallery-module .img-container:before {
    background-color: transparent;
  }
  .gallery-module .img-container:hover img {
    transform: scale(1);
  }
  .gallery-module .img-container:hover:after {
    opacity: 0;
  }
  .it-solutions {
    margin-top: 95px;
  }
  .banner .wrapper .links-container {
    transform: translateY(100px);
  }
  .banner .wrapper .links-container .col-12, .banner .wrapper .links-container form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_full, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .banner .wrapper .links-container .ginput_full, .banner .wrapper .links-container form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_left, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .banner .wrapper .links-container .ginput_left, .banner .wrapper .links-container form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_right, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .banner .wrapper .links-container .ginput_right {
    flex-direction: column;
    row-gap: 30px !important;
  }
  .banner .wrapper .links-container a {
    font-size: 1.125rem;
  }
  .banner::after {
    width: 230px;
    transform: translateY(0);
  }
  .content-row.statistics_section .col-12, .content-row.statistics_section form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_full, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .content-row.statistics_section .ginput_full, .content-row.statistics_section form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_left, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .content-row.statistics_section .ginput_left, .content-row.statistics_section form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_right, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .content-row.statistics_section .ginput_right {
    display: flex;
    justify-content: center;
  }
  .content-row.statistics_section .row, .content-row.statistics_section form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address, form .gform_body .gform_fields .gfield .content-row.statistics_section .ginput_container.ginput_container_address {
    transform: translateY(0);
  }
}
@media screen and (max-width: 680px) {
  .row, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address {
    row-gap: 30px;
  }
  h1 {
    font-size: 2.8125rem;
  }
  h2 {
    font-size: 1.875rem;
  }
  h3 {
    font-size: 1.5625rem;
  }
  h4 {
    font-size: 1.25rem;
  }
  .slice.content-row {
    /*- Taille du padding -*/
    /*- Taille du padding - Petit -*/
    /*- Taille du padding - Moyen -*/
    /*- Taille du padding - Large -*/
    /*- Taille du padding - X Large -*/
  }
  .slice.content-row .row > div[class*=col-].large, .slice.content-row form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address > div[class*=col-].large, form .gform_body .gform_fields .gfield .slice.content-row .ginput_container.ginput_container_address > div[class*=col-].large {
    margin-top: 0;
    margin-bottom: 0;
  }
  .slice.content-row .row > div[class*=col-].medium, .slice.content-row form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address > div[class*=col-].medium, form .gform_body .gform_fields .gfield .slice.content-row .ginput_container.ginput_container_address > div[class*=col-].medium {
    margin-top: 0;
    margin-bottom: 0;
  }
  .slice.content-row .row > div[class*=col-].no-m-top, .slice.content-row form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address > div[class*=col-].no-m-top, form .gform_body .gform_fields .gfield .slice.content-row .ginput_container.ginput_container_address > div[class*=col-].no-m-top {
    margin-top: 0;
  }
  .slice.content-row .row > div[class*=col-].no-m-bottom, .slice.content-row form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address > div[class*=col-].no-m-bottom, form .gform_body .gform_fields .gfield .slice.content-row .ginput_container.ginput_container_address > div[class*=col-].no-m-bottom {
    margin-bottom: 0;
  }
  .slice.content-row.p-size-small {
    padding: 50px 0;
  }
  .slice.content-row.p-size-medium {
    padding: 50px 0;
  }
  .slice.content-row.p-size-large {
    padding: 50px 0;
  }
  .slice.content-row.p-size-x-large {
    padding: 50px 0;
  }
  .slice.content-row.no-p-top {
    padding-top: 0px;
  }
  .slice.content-row.no-p-bottom {
    padding-bottom: 0px;
  }
  .slice.content-row.no-p {
    padding-top: 0px;
    padding-bottom: 0px;
  }
  .slice.content-row.has-2-color-bg::before {
    content: none;
  }
  .slice.content-row.has-2-color-bg .fill-full::before {
    content: "";
    position: absolute;
    left: 0;
    top: -15px;
    width: 100%;
    height: 102.5%;
    background-color: #FFFFFF;
    z-index: -1;
  }
  .home-banner .banner-arrow {
    width: 90%;
  }
  .home-banner .the-content .inner {
    width: 90%;
  }
  .home-banner h1 {
    font-size: 2.8125rem;
  }
  .home-splide .splide__track .the-content p {
    font-size: 1rem;
  }
  .home-splide .splide__pagination {
    height: 15px;
    top: unset;
    bottom: 25px;
    transform: translateY(0) translateX(-50%);
    left: 50%;
    flex-direction: row;
  }
  .wrapper {
    width: calc(100% - 40px);
    max-width: calc(100% - 40px);
  }
  .image-bleed-out {
    height: 400px;
  }
  .single-dropdown {
    padding: 18px 30px;
  }
  .single-dropdown .question span {
    font-size: 1.25rem;
  }
  .slider-module .splide__arrows .splide__arrow {
    width: 40px;
    height: 40px;
  }
  footer > .wrapper {
    padding: 50px 0 50px;
  }
  footer #copyrights .wrapper {
    justify-content: center !important;
  }
  .gallery-module .img-container {
    width: 100%;
  }
  .site-content-module .content-block .img-container {
    min-height: 400px;
  }
  .site-content-module .content-block:hover .text-container {
    height: 10%;
    background-color: var(--color-primary);
  }
  .site-content-module .content-block:hover .text-container:after {
    opacity: 1;
  }
  .site-content-module .content-block:hover .text-container h4 {
    top: 50%;
    transform: translateY(-50%);
  }
  .site-content-module .content-block:hover .text-container .btn-container {
    opacity: 0;
  }
  .site-content-module .team-member-block.has-description:hover .content {
    opacity: 0;
  }
  .site-content-module .team-member-block.has-description:hover .content h4,
  .site-content-module .team-member-block.has-description:hover .content h5,
  .site-content-module .team-member-block.has-description:hover .content p,
  .site-content-module .team-member-block.has-description:hover .content a {
    opacity: 0;
  }
  .popup-container .close {
    top: 20px;
    right: 20px;
  }
  .popup-container .col-image {
    display: none;
  }
  .popup-container .lightbox-content {
    padding: 50px 0;
  }
  .popup-container .lightbox-content > .wrapper {
    align-items: start !important;
  }
  .popup-container .lightbox-content > .wrapper .row, .popup-container .lightbox-content > .wrapper form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address, form .gform_body .gform_fields .gfield .popup-container .lightbox-content > .wrapper .ginput_container.ginput_container_address {
    margin-inline: auto;
  }
  .popup-container .lightbox-content > .wrapper .row .col-12, .popup-container .lightbox-content > .wrapper form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .col-12, form .gform_body .gform_fields .gfield .popup-container .lightbox-content > .wrapper .ginput_container.ginput_container_address .col-12, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .popup-container .lightbox-content > .wrapper .row .ginput_full, .popup-container .lightbox-content > .wrapper form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_full, form .gform_body .gform_fields .gfield .popup-container .lightbox-content > .wrapper .ginput_container.ginput_container_address .ginput_full, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .popup-container .lightbox-content > .wrapper .row .ginput_left, .popup-container .lightbox-content > .wrapper form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_left, form .gform_body .gform_fields .gfield .popup-container .lightbox-content > .wrapper .ginput_container.ginput_container_address .ginput_left, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .popup-container .lightbox-content > .wrapper .row .ginput_right, .popup-container .lightbox-content > .wrapper form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_right, form .gform_body .gform_fields .gfield .popup-container .lightbox-content > .wrapper .ginput_container.ginput_container_address .ginput_right {
    padding-inline: 0;
  }
  .pb-large.slice.content-row.p-size-small {
    padding-bottom: 50px;
  }
  .collapse-module .collapse-content {
    padding: 0 20px 20px;
  }
  .collapse-module .collapse-trigger h3 {
    font-size: 1rem;
  }
  .slider-module .splide__arrows .splide__arrow:hover:before {
    right: 0;
  }
  .slider-module .splide__arrows .splide__arrow:hover svg {
    transform: translateX(0);
  }
  .slider-module .splide__arrows .splide__arrow:hover svg circle {
    fill: var(--color-accent-1);
  }
  .slider-module .splide__arrows .splide__arrow:hover svg path {
    stroke: var(--color-accent-1);
  }
  .google-maps-module {
    position: relative;
  }
  .google-maps-module:before {
    content: "";
    display: block;
    padding-top: 75%;
  }
  form .gform_body .gform_fields .gfield .ginput_container.ginput_container_radio .gfield_radio {
    flex-direction: column;
    align-items: start;
  }
}
@media screen and (max-width: 575px) {
  .wrapper footer > .wrapper {
    display: flex;
  }
  .wrapper footer > .wrapper .row, .wrapper footer > .wrapper form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address, form .gform_body .gform_fields .gfield .wrapper footer > .wrapper .ginput_container.ginput_container_address {
    max-width: 290px;
    justify-content: center;
    margin: 0 auto;
  }
  .wrapper footer > .wrapper .row > div, .wrapper footer > .wrapper form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address > div, form .gform_body .gform_fields .gfield .wrapper footer > .wrapper .ginput_container.ginput_container_address > div {
    margin-bottom: 30px;
  }
  .wrapper footer > .wrapper .row > div .footer__logo, .wrapper footer > .wrapper form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address > div .footer__logo, form .gform_body .gform_fields .gfield .wrapper footer > .wrapper .ginput_container.ginput_container_address > div .footer__logo {
    margin: 0 auto;
  }
  .half-text-half-image .big-title {
    font-size: 2.1875rem;
    font-weight: bold;
    margin-bottom: 35px;
  }
}
@media screen and (max-width: 550px) {
  .page-transition .transition-logo {
    width: 250px;
    height: 250px;
  }
  .section-intro h2 {
    font-size: 2.1875rem;
    padding-bottom: 30px;
  }
  .team-picture-gallery {
    grid-template-columns: 1fr;
  }
  .team-picture-gallery .team-picture-gallery__employee {
    height: 450px;
  }
  .single-dropdown {
    padding: 18px 20px;
  }
  .single-dropdown .question span {
    font-size: 1rem;
  }
  .appointment-block h3 {
    font-size: 1.5625rem;
  }
  .popup-video.fancybox-content {
    height: 30%;
    padding: 5px;
    overflow: visible;
  }
  .half-text-half-image .buttons {
    flex-direction: column;
    gap: 20px;
  }
  .half-text-half-image .buttons .btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media screen and (max-width: 450px) {
  .banner .the-content h1 {
    font-size: 1.75rem;
  }
  .banner .the-content p {
    font-size: 1.125rem;
  }
  .modal .btn-close {
    top: 15px;
    right: 15px;
  }
}

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