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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

body {
  padding: 0;
  margin: 0;
}

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

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

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

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

.alignright {
  float: right;
}

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

.alignleft {
  float: left;
}

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

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

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

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

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

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

.undo-p {
  margin: 0;
}

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

svg {
  max-height: 100%;
}

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

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

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

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

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

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

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

.flat-all {
  padding: 0;
}

.fleft {
  float: left;
}

.fright {
  float: right;
}

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

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

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

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

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

.row, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address {
  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
 */
/*- 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: #FFFFFF !important;
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
  overflow-x: hidden;
}

#main {
  margin-top: 0;
}

.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: var(--color-secondary);
  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: 120px;
  right: 140px;
  width: 65px;
  height: 65px;
  cursor: pointer;
  z-index: 2;
}
.popup-container .close svg {
  max-width: 100%;
}
.popup-container .lightbox-content {
  display: flex;
  width: 100%;
  height: 100%;
}
.popup-container .lightbox-content > .wrapper {
  width: calc(100% - 80px);
  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%;
}
.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: 100%;
}
.popup-container .lightbox-content .col-image .image > img,
.popup-container .lightbox-content .col-image .image > picture,
.popup-container .lightbox-content .col-image .image > svg {
  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 {
  color: var(--color-title);
  font: 300 60px/120% var(--font-primary);
  margin-bottom: 50px;
}
.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;
  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;
}

#home-service1, #home-service2, #home-service3 {
  margin-top: -1px;
}
#home-service1 .text-module, #home-service1 .button-module, #home-service2 .text-module, #home-service2 .button-module, #home-service3 .text-module, #home-service3 .button-module {
  width: calc(100% - 60px);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
#home-service1 h2, #home-service2 h2, #home-service3 h2 {
  font-size: 2.375rem;
}

#home-service1 .row, #home-service1 form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address, form .gform_body .gform_fields .gfield #home-service1 .ginput_container.ginput_container_address, #home-service2 .row, #home-service2 form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address, form .gform_body .gform_fields .gfield #home-service2 .ginput_container.ginput_container_address, #home-service3 .row, #home-service3 form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address, form .gform_body .gform_fields .gfield #home-service3 .ginput_container.ginput_container_address {
  row-gap: 0;
}
#home-service1 .image-module, #home-service2 .image-module, #home-service3 .image-module {
  text-align: end;
}
#home-service1 h2, #home-service2 h2, #home-service3 h2 {
  color: #000;
}
#home-service1 h4, #home-service2 h4, #home-service3 h4 {
  color: var(--color-tertiary);
  font: 700 1.125rem/3.5em var(--font-primary);
}

#home-service2 .image-module {
  text-align: left;
}

#services h1, #services h2 {
  color: var(--color-primary);
}
#services h2 {
  font: 300 1.875rem/120% var(--font-secondary);
  border-bottom: solid 1px var(--color-tertiary);
}
#services img {
  box-shadow: 6px 6px 4px rgba(6, 95, 135, 0.4);
}

#clinic-title h1 {
  color: var(--color-tertiary);
}

#clinic-gallery .col-12, #clinic-gallery form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_left, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address #clinic-gallery .ginput_left, #clinic-gallery form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_right, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address #clinic-gallery .ginput_right, #clinic-gallery form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_full, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address #clinic-gallery .ginput_full {
  padding: 0 25px;
}
#clinic-gallery .justify-content-md-center {
  justify-content: left !important;
}

.light .the-content h2 {
  font: 300 1.875rem/120% var(--font-secondary);
}

.h1-underlined h1 {
  border-bottom: solid 1px var(--color-tertiary);
}

.h1-blue-underlined h1 {
  border-bottom: solid 2px var(--color-tertiary);
}

.h2-underlined h2 {
  border-bottom: solid 1px var(--color-accent-1);
}

.shadow img {
  box-shadow: 6px 6px 4px rgba(6, 95, 135, 0.4);
}

.blue-titles h1, .blue-titles h2, .blue-titles a {
  color: var(--color-tertiary);
}

.black-titles .the-content h1, .black-titles .the-content h2, .black-titles .the-content h3 {
  color: var(--color-primary);
}

.li-light .the-content ul li {
  font-weight: 400;
}

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

.banner .wrapper, .home-banner .wrapper {
  max-width: 1300px;
  margin-inline: auto;
}

@font-face {
  font-family: "SignPainter"; /* Nom de la police */
  src: url("../font/SignPainter.ttc"); /* Chemin vers le fichier de police */
  /* Ajoutez d'autres formats de police ici pour une meilleure compatibilité */
  /* Exemple : src: url('SignPainter.eot'); pour Internet Explorer */
}
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  transition: all 0.3s ease-in-out;
  background: var(--color-secondary);
  height: 200px;
}
header .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .wrapper .logo .desktopOnly {
  height: 100%;
  width: 100%;
  transition: all 0.3s ease-in-out;
}
header .wrapper .logo,
header .wrapper .logo--mobile {
  height: 160px;
  transition: all 0.3s ease-in-out;
  display: flex;
  align-items: center;
}
header .wrapper .logo img,
header .wrapper .logo--mobile img {
  max-height: 100%;
}
header .wrapper .logo--mobile {
  display: none;
}
header .wrapper nav ul {
  text-align: center;
}
header .wrapper nav ul li {
  cursor: pointer;
  display: inline-block;
  margin-left: 80px;
  position: relative;
}
header .wrapper nav ul li.current-menu-item a {
  color: var(--menu-text-color);
}
header .wrapper nav ul li.menu-item-has-children {
  position: relative;
}
header .wrapper nav ul li.menu-item-has-children:hover > ul {
  display: block;
}
header .wrapper nav ul li.menu-item-has-children > ul {
  display: none;
  position: absolute;
  left: -25px;
  top: 100%;
  width: 360px;
  background: rgba(255, 255, 255, 0.9);
  padding: 60px 25px 25px 25px;
}
header .wrapper nav ul li.menu-item-has-children > ul > li {
  margin-bottom: 20px;
  margin-left: 0;
}
header .wrapper nav ul li.menu-item-has-children > ul > li:last-child {
  margin-bottom: 0;
}
header .wrapper nav ul li.menu-item-has-children > ul > li.current_page_item > a {
  color: var(--menu-text-color);
}
header .wrapper nav ul li.menu-item-has-children > ul > li a {
  font: 500 1.25rem/120% var(--font-primary);
  color: var(--menu-text-color);
  text-transform: capitalize;
}
header .wrapper nav ul li.menu-item-has-children > ul > li a:hover {
  color: var(--color-accent-1);
}
header .wrapper nav ul li.menu-item-has-children > ul > li.current-menu-item > a {
  color: var(--color-accent-1);
}
header .wrapper nav ul li a {
  position: relative;
  font: 600 1.0625rem/120% var(--font-secondary);
  color: var(--menu-text-color);
}
header .wrapper nav ul li a:after {
  /* content: "";
   width: 1px;
   height: 100%;
   background-color: $menu-text-color;
   position: absolute;
   right: -12px;
   top: 0;
   margin: 100px;
   */
}
header .wrapper nav ul li a:hover {
  color: var(--color-primary);
}
header .wrapper nav ul li:last-child a:after {
  content: "";
  background-color: transparent;
}
header.shrink {
  background: #FFFFFF !important;
  height: 120px;
}
header.shrink .logo {
  height: 100px;
}
header.shrink .logo .desktopOnly {
  height: 100px;
}
header .phone a {
  padding: 10px 20px;
  background-color: var(--color-accent-1);
  border-radius: 30px;
  width: fit-content;
  align-self: center;
  color: var(--color-secondary);
  font: 400 1.25rem/120% var(--font-primary);
  white-space: nowrap;
  transition: all 0.3s ease-out;
}
header .phone a:hover {
  background-color: var(--color-primary);
  font-weight: 700;
}
header .header-languages {
  margin: 0 20px;
}
header .header-languages li {
  list-style: none;
}
header .header-languages li a {
  text-transform: uppercase;
  font: 400 1.25rem/120% var(--font-primary);
  color: var(--menu-text-color);
}

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

footer {
  background-image: url("../images/06-BackgroundFooter.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  padding-top: 100px;
}
footer > .wrapper {
  padding: 80px 0;
}
footer p, footer b, footer a, footer h4 {
  font-family: var(--font-secondary);
  color: var(--footer-text-color);
  font-size: 1.0625rem;
  font-weight: 200;
  transition: all 0.3s ease-in-out;
}
footer a:hover {
  color: var(--color-accent-2);
}
footer h4 {
  margin-bottom: 10px;
  font-size: 1.0625rem;
  line-height: 1.4em;
  font-weight: 500;
  font-family: var(--font-secondary);
}
footer .col-nav ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
footer .logo {
  width: 100%;
  height: 100%;
  max-width: 250px;
}
footer .logo svg {
  width: 100%;
  height: 100%;
}
footer .contact-info {
  gap: 40px;
  transform: translateY(40px);
}
footer .contact-info .d-flex:not(.flex-column) {
  gap: 20px;
}
footer .contact-info svg {
  width: 22px;
  height: 22px;
}
footer .col-socials {
  transform: translateY(40px);
}
footer .col-socials ul {
  width: 122px;
  gap: 20px;
}
footer .col-socials ul svg {
  width: 16px;
  height: 16px;
}
footer .dayHours {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 220px;
  margin-bottom: 10px;
}
footer #copyrights {
  background-color: var(--color-secondary);
  padding: 15px 0;
  text-align: center;
}
footer #copyrights .wrapper {
  gap: 5px;
  color: var(--color-text);
  font-weight: 300;
}
footer #copyrights a, footer #copyrights b {
  height: 20px;
  color: var(--color-text);
}
footer #copyrights #rubik-api-copyright {
  margin-top: -2px;
}
footer #copyrights #rubik-api-copyright span {
  color: var(--color-text);
}
footer #copyrights #rubik-api-copyright svg {
  height: 20px;
  margin-top: 2px;
}
footer #copyrights #rubik-api-copyright svg path {
  fill: var(--color-text);
}
footer #copyrights #rubik-api-copyright svg #Rectangle_27, footer #copyrights #rubik-api-copyright svg #Rectangle_29, footer #copyrights #rubik-api-copyright svg #Rectangle_31 {
  fill: var(--color-text);
}
footer .col-nav a:hover {
  text-decoration: underline;
}
footer .phone-wrapper a {
  margin-bottom: 10px;
}

/*
 * Modify gravity form, chosen and mailpoet styles here
 *
 * Change and modify according to designs
 */
form .gform_body .gform_fields {
  gap: 12px !important;
  grid-row-gap: 15px !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: var(--font-primary) 16px/20px sans-serif;
  font-weight: bold;
  margin-bottom: 10px;
}
form .gform_body .gform_fields .gfield .gfield_label.gfield_label_before_complex {
  margin-bottom: 20px;
}
form .gform_body .gform_fields .gfield .gfield_label .gfield_required {
  display: none;
}
form .gform_body .gform_fields .gfield.hidden_label label, form .gform_body .gform_fields .gfield.hidden_label .gfield_label {
  display: none;
}
form .gform_body .gform_fields .gfield .gfield_description {
  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%;
  border-radius: 6px;
  padding: 18px;
  border: 1px solid var(--color-accent-1);
  box-shadow: none;
  background: white;
  color: black;
  font: 300 0.875rem/1.2em var(--font-secondary);
}
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: #313131 !important;
  opacity: 1 !important;
}
form .gform_body .gform_fields .gfield .ginput_container textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  max-height: 150px;
  padding: 15px;
  border: 1px solid var(--color-accent-1);
  border-radius: 10px;
  box-shadow: none;
  background: white;
  color: black;
  font: 400 16px/18px sans-serif;
  font-family: var(--font-secondary);
  resize: none;
}
form .gform_body .gform_fields .gfield .ginput_container textarea::placeholder {
  color: #313131;
  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_textarea {
  padding-bottom: 25px;
}
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: 600 16px/18px sans-serif;
  font-family: var(--font-secondary);
  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 #72B270;
  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: 5px;
  left: 2px;
  opacity: 0;
  height: 9px;
  width: 9px;
  background-color: var(--color-accent-1);
  border-radius: 2px;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_radio .gfield_radio .gchoice {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_radio .gfield_radio .gchoice:last-child {
  margin-bottom: 0;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_radio .gfield_radio .gchoice input[type=radio] {
  display: none;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_radio .gfield_radio .gchoice input[type=radio]:checked + label:after {
  opacity: 1;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_radio .gfield_radio .gchoice label {
  position: relative;
  display: block;
  font: 400 16px/18px sans-serif;
  padding-left: 40px;
  cursor: pointer;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_radio .gfield_radio .gchoice label:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  height: 30px;
  width: 30px;
  border: 2px solid black;
  border-radius: 50%;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_radio .gfield_radio .gchoice label:after {
  content: "";
  display: block;
  position: absolute;
  top: 8px;
  left: 15px;
  transform: translate(-50%, -50%);
  opacity: 0;
  height: 25px;
  width: 25px;
  background-image: url("../image/forms/times.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_consent {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_consent input[type=checkbox] {
  display: none;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_consent input[type=checkbox]:checked + label:after {
  opacity: 1;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_consent label {
  position: relative;
  display: block;
  font: 400 16px/18px sans-serif;
  padding-left: 40px;
  cursor: pointer;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_consent label:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  height: 30px;
  width: 30px;
  border: 2px solid black;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_consent label:after {
  content: "";
  display: block;
  position: absolute;
  top: 8px;
  left: 15px;
  transform: translate(-50%, -50%);
  opacity: 0;
  height: 25px;
  width: 25px;
  background-image: url("../image/forms/check.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
form .gform_body .gform_fields .gfield .ginput_container.ginput_container_fileupload span.gform_fileupload_rules {
  display: 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: auto 0 !important;
  /*
   * 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: 45px !important;
}
.gform_heading .gform_title {
  padding-bottom: 45px !important;
}
.gform_heading .gform_description {
  max-width: 1165px !important;
  display: inline-block;
}

.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;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
.gform_confirmation_wrapper .gform_confirmation_message {
  display: block;
  text-align: center;
  font: bold 18px/32px sans-serif;
}

/*
 * Select + Chosen (will apply to gravity forms dropdown automatically)
 */
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  box-shadow: none;
  outline: none;
  width: 100%;
  height: 100%;
  max-height: 55px;
  border: 1px solid #72B270;
  border-radius: 10px;
  padding: 15px !important;
  color: black;
  background: white url(../images/forms/icon-select.svg) no-repeat 97% center;
  cursor: pointer;
  font-family: var(--font-secondary);
  font-size: 1rem;
}
select::placeholder {
  color: grey !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;
}

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

.single-care .the-content a:hover {
  font-weight: 900;
}

/*- Contenu WYSIWYG -*/
.the-content a {
  font-size: 1.125rem;
  font-family: var(--font-secondary);
  font-weight: 700;
  line-height: 140%;
  color: var(--color-accent-1);
  transition: all 0.3s ease-out;
}
.the-content a:hover {
  color: #000;
}
.the-content strong {
  font-weight: 900;
}
.the-content h1 {
  font: 700 3.4375rem/1.2em var(--font-secondary);
  margin-bottom: 20px;
}
.the-content h2 {
  font: 300 1.875rem/1.2em var(--font-secondary);
  margin-bottom: 20px;
  letter-spacing: 0.42px;
}
.the-content h3 {
  font: 500 1.3125rem/1.25em var(--font-secondary);
  letter-spacing: 0.42px;
  margin-bottom: 20px;
  color: var(--color-primary);
}
.the-content h4 {
  font: 200 1.25rem/120% var(--font-secondary);
  margin-bottom: 35px;
}
.the-content h5 {
  font: 400 1.125rem/120% var(--font-secondary);
  margin-bottom: 35px;
}
.the-content *:last-child {
  margin-bottom: 0;
}
.the-content ul {
  margin-bottom: 20px;
  list-style: disc;
}
.the-content ul li {
  line-height: 140%;
  position: relative;
  margin-left: 20px;
  margin-bottom: 1em;
  color: var(--color-text);
  font: 200 1rem/1.6em var(--font-secondary);
}
.the-content ul li a {
  font-weight: 400;
  color: var(--color-accent-1);
  transition: none;
}
.the-content ul li a:hover {
  text-decoration: underline;
}
.the-content ol {
  margin-bottom: 1em;
}
.the-content ul ul, .the-content ol ul {
  list-style-type: circle;
  list-style-position: inside;
  margin-left: 15px;
}
.the-content ol ol, .the-content ul ol {
  list-style-type: lower-latin;
  list-style-position: inside;
  margin-left: 15px;
}
.the-content p {
  margin-bottom: 1em;
  color: var(--color-text);
  font: 200 1.0625rem/1.6em var(--font-secondary);
}
.the-content hr {
  border-top: 0;
  margin-bottom: 35px;
}

/*- Boutons -*/
.btn {
  z-index: 2;
  padding: 15px 25px;
  transition: all 0.3s ease-in-out;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  cursor: pointer;
  position: relative;
  border: 0px;
  font-size: 1.25rem;
  font-family: var(--font-secondary);
  line-height: 140%;
  /*- Boutons - Primaire -*/
  /*- Boutons - Secondaire -*/
  /*- Boutons - Tertiaire -*/
}
.btn span {
  transform: translateX(0px);
  transition: all 0.3s ease-in-out;
}
.btn.primary {
  font-weight: 300;
  background-color: var(--color-secondary);
  border: 2px solid var(--color-tertiary);
  padding: 12px 20px;
  border-radius: 50px;
  width: fit-content;
}
.btn.primary span {
  color: var(--color-tertiary);
}
.btn.primary:hover {
  background: var(--color-tertiary);
  border-color: var(--color-tertiary);
}
.btn.primary:hover span {
  color: #fff;
}
.btn.secondary {
  background-color: var(--color-secondary);
  border: 1.5px solid var(--color-secondary);
  box-shadow: 0px 5.36364px 5.36364px rgba(0, 0, 0, 0.25);
  padding: 16px;
  border-radius: 8px;
  width: fit-content;
  font-weight: 300;
}
.btn.secondary span {
  color: var(--color-tertiary);
}
.btn.secondary:hover {
  background: var(--color-tertiary);
  border-color: var(--color-tertiary);
}
.btn.secondary:hover span {
  color: #fff;
}
.btn.tertiary {
  transition: all 0.3s ease-out;
  background: #FFFFFF;
  border: 2px solid var(--color-tertiary);
  border-radius: 8.05px;
  padding: 16px;
}
.btn.tertiary span {
  color: var(--color-tertiary);
  font-weight: 300;
  text-transform: uppercase;
  transition: all 0.3s ease-out;
}
.btn.tertiary:hover {
  border: 2.5px solid var(--color-accent-1);
}
.btn.tertiary:hover span {
  font-weight: 600;
  color: var(--color-accent-1);
}

/*- Bouton - Lien simple -*/
.link {
  position: relative;
  font: 900 1.125rem/100% var(--font-secondary);
  border-bottom: 1px solid #2D3E69;
  text-transform: uppercase;
}
.link span {
  display: inline-flex;
  gap: 10px;
  color: #2D3E69;
}
.link:hover {
  border-bottom: 1px solid transparent;
}

/*- Bouton - Lien avec icône -*/
.link-with-icon {
  position: relative;
  font: bold 1rem/100% var(--font-primary);
  display: flex;
  align-items: center;
  gap: 15px;
}
.link-with-icon svg {
  width: auto;
  height: 30px;
}
.link-with-icon span {
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease-in-out;
}
.link-with-icon:hover span {
  border-bottom: 1px solid var(--color-secondary);
}

/*- Largeur du contenu -*/
.wrapper {
  height: 100%;
  margin: 0 auto;
  width: calc(100% - 80px);
  max-width: 1515px;
  /*- Largeur du contenu - Petit -*/
  /*- Largeur du contenu - Moyen -*/
  /*- Largeur du contenu - Large -*/
  /*- Largeur du contenu - Pleine largeur -*/
}
.wrapper.header {
  max-width: 1700px;
}
.wrapper.small {
  max-width: 1300px;
}
.wrapper.medium {
  max-width: 1515px;
}
.wrapper.large {
  max-width: 1680px;
}
.wrapper.full-width {
  width: 100%;
  max-width: 100%;
}

/*- Espacement des colonnes -*/
.row, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address {
  /*- 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: -15px;
  margin-right: -15px;
}
.row.gutter-small > div[class*=col-], form .gform_body .gform_fields .gfield .gutter-small.ginput_container.ginput_container_address > div[class*=col-] {
  padding-left: 15px;
  padding-right: 15px;
}
.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: -75px;
  margin-right: -75px;
}
.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: 75px;
  padding-right: 75px;
}
.row .col-12, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .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 {
  position: relative;
}
.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;
  min-width: 300px;
}

/*- Configurations -*/
.slice {
  position: relative;
}
.slice.content-row {
  /*- Taille du padding -*/
  /*- Taille du padding - Petit -*/
  /*- Taille du padding - Moyen -*/
  /*- 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-] > 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: 10px;
}
.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: 35px;
}
.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: 50px;
}
.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.gutter-medium > div[class*=col-], .slice.content-row form .gform_body .gform_fields .gfield .gutter-medium.ginput_container.ginput_container_address > div[class*=col-], form .gform_body .gform_fields .gfield .slice.content-row .gutter-medium.ginput_container.ginput_container_address > div[class*=col-] {
  margin-bottom: 10px;
}
.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: 100px 0;
}
.slice.content-row.p-size-large {
  padding: 150px 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.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: 100px 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: 150px 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, .slice.content-row.flexible-grid form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address > div[class*=col-].has-color-bg, form .gform_body .gform_fields .gfield .slice.content-row.flexible-grid .ginput_container.ginput_container_address > div[class*=col-].has-color-bg {
  overflow: hidden;
}
.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 {
  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 {
  background-color: var(--block-bg-color);
}
.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;
}

.img-cover .img-container {
  display: flex;
  justify-content: end;
}

.theoplayer-skin .theo-player-wrapper .vjs-control-bar .vjs-control.vjs-button {
  width: 99px !important;
}

/*
	Module: Bannière de page
	Description:
*/
.banner-module {
  height: 50vh;
  min-height: 500px;
  background-color: var(--color-tertiary);
  position: relative;
}
.banner-module h1 {
  font-size: 3.75rem;
  line-height: 120%;
  margin-bottom: 35px;
  text-align: center;
}
.banner-module .image {
  position: relative;
  right: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.banner-module .image > img,
.banner-module .image > picture,
.banner-module .image > svg {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.banner-module .the-content {
  position: relative;
  width: 100%;
  margin: auto 0;
  z-index: 1;
}
.banner-module .banner-arrow {
  position: absolute;
  bottom: 20px;
  left: 50%;
}
.banner-module.is-slider .splide__arrows {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.banner-module.is-slider .splide__arrows .splide__arrow--next, .banner-module.is-slider .splide__arrows .splide__arrow--prev {
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  border-radius: 50%;
  border: none;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}
.banner-module.is-slider .splide__arrows .splide__arrow--next svg, .banner-module.is-slider .splide__arrows .splide__arrow--prev svg {
  max-width: 70%;
  height: auto;
}
.banner-module.is-slider .splide__arrows .splide__arrow--next path, .banner-module.is-slider .splide__arrows .splide__arrow--prev path {
  fill: #fff;
}
.banner-module.is-slider .splide__arrows .splide__arrow--next:hover, .banner-module.is-slider .splide__arrows .splide__arrow--prev:hover {
  background: rgba(0, 0, 0, 0.2);
}
.banner-module.is-slider .splide__arrows .splide__arrow--next {
  right: 2%;
}
.banner-module.is-slider .splide__arrows .splide__arrow--prev {
  left: 2%;
  transform: scaleX(-1);
}
.banner-module.is-slider .splide__pagination {
  position: absolute;
  bottom: 2%;
  left: 50%;
  transform: translateX(-50%);
  gap: 10px;
}
.banner-module.is-slider .splide__pagination li {
  height: 20px;
  width: 20px;
}
.banner-module.is-slider .splide__pagination li button {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #e5e5e5;
  border: 2px solid #e5e5e5;
}
.banner-module.is-slider .splide__pagination li button.is-active {
  background-color: rgb(102, 102, 102);
}
.banner-module.is-slider .splide__track .the-content p {
  text-transform: uppercase;
  color: var(--color-primary);
  font-weight: 800;
}

.home .banner-module {
  height: 80vh;
}

.home-splide, .page-splide {
  position: relative;
}
.home-splide .splide__arrows, .page-splide .splide__arrows {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 100%;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}
.home-splide .splide__arrows .splide__arrow--next, .home-splide .splide__arrows .splide__arrow--prev, .page-splide .splide__arrows .splide__arrow--next, .page-splide .splide__arrows .splide__arrow--prev {
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: none;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
  pointer-events: all;
}
.home-splide .splide__arrows .splide__arrow--next svg, .home-splide .splide__arrows .splide__arrow--prev svg, .page-splide .splide__arrows .splide__arrow--next svg, .page-splide .splide__arrows .splide__arrow--prev svg {
  max-width: 70%;
  height: auto;
}
.home-splide .splide__arrows .splide__arrow--next path, .home-splide .splide__arrows .splide__arrow--prev path, .page-splide .splide__arrows .splide__arrow--next path, .page-splide .splide__arrows .splide__arrow--prev path {
  fill: #fff;
}
.home-splide .splide__arrows .splide__arrow--next:hover, .home-splide .splide__arrows .splide__arrow--prev:hover, .page-splide .splide__arrows .splide__arrow--next:hover, .page-splide .splide__arrows .splide__arrow--prev:hover {
  background: rgba(0, 0, 0, 0.2);
}
.home-splide .splide__arrows .splide__arrow--next, .page-splide .splide__arrows .splide__arrow--next {
  right: 40px;
}
.home-splide .splide__arrows .splide__arrow--prev, .page-splide .splide__arrows .splide__arrow--prev {
  left: 40px;
  transform: scaleX(-1);
}
.home-splide .splide__pagination, .page-splide .splide__pagination {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  gap: 10px;
}
.home-splide .splide__pagination li, .page-splide .splide__pagination li {
  height: 15px;
  width: 15px;
}
.home-splide .splide__pagination li button, .page-splide .splide__pagination li button {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--color-primary);
  border: 2px solid var(--color-secondary);
}
.home-splide .splide__pagination li button.is-active, .page-splide .splide__pagination li button.is-active {
  background-color: rgb(102, 102, 102);
}
.home-splide .splide__track .the-content p, .page-splide .splide__track .the-content p {
  text-transform: uppercase;
  color: var(--color-primary);
  font-weight: 800;
}

/*- CSS temporaire pour la bannière -*/
.home-banner {
  height: 80vh;
  min-height: 500px;
  background-color: var(--color-secondary);
  position: relative;
}
.home-banner h1 {
  color: var(--color-secondary);
  margin-bottom: 3%;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.6);
  font-weight: 600;
  line-height: 75px;
}
.home-banner p {
  color: var(--color-secondary);
  font-size: 2rem;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.6);
}
.home-banner .image {
  position: relative;
  right: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.home-banner .image > img,
.home-banner .image > picture,
.home-banner .image > svg {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.home-banner .the-content {
  position: relative;
  width: 100%;
  margin: auto 0;
  z-index: 1;
  max-width: 840px;
}
.home-banner .banner-arrow {
  position: absolute;
  bottom: 20px;
  left: 50%;
}
.home-banner.is-slider .splide__arrows {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.home-banner.is-slider .splide__arrows .splide__arrow--next, .home-banner.is-slider .splide__arrows .splide__arrow--prev {
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  border-radius: 50%;
  border: none;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}
.home-banner.is-slider .splide__arrows .splide__arrow--next svg, .home-banner.is-slider .splide__arrows .splide__arrow--prev svg {
  max-width: 70%;
  height: auto;
}
.home-banner.is-slider .splide__arrows .splide__arrow--next path, .home-banner.is-slider .splide__arrows .splide__arrow--prev path {
  fill: #fff;
}
.home-banner.is-slider .splide__arrows .splide__arrow--next:hover, .home-banner.is-slider .splide__arrows .splide__arrow--prev:hover {
  background: rgba(0, 0, 0, 0.2);
}
.home-banner.is-slider .splide__arrows .splide__arrow--next {
  right: 2%;
}
.home-banner.is-slider .splide__arrows .splide__arrow--prev {
  left: 2%;
  transform: scaleX(-1);
}
.home-banner.is-slider .splide__pagination {
  position: absolute;
  bottom: 2%;
  left: 50%;
  transform: translateX(-50%);
  gap: 10px;
}
.home-banner.is-slider .splide__pagination li {
  height: 20px;
  width: 20px;
}
.home-banner.is-slider .splide__pagination li button {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #e5e5e5;
  border: 2px solid #e5e5e5;
}
.home-banner.is-slider .splide__pagination li button.is-active {
  background-color: rgb(102, 102, 102);
}
.home-banner.is-slider .splide__track .the-content p {
  text-transform: uppercase;
  color: var(--color-primary);
  font-weight: 800;
}

.banner {
  height: 50vh;
  min-height: 500px;
  background-color: var(--color-tertiary);
  position: relative;
}
.banner h1 {
  font-size: 3.4375rem;
  line-height: 120%;
  margin-bottom: 35px;
  color: var(--color-secondary);
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.6);
}
.banner .image {
  position: relative;
  right: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.banner .image > img,
.banner .image > picture,
.banner .image > svg {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.banner .the-content {
  position: relative;
  width: 100%;
  margin: auto 0;
  z-index: 1;
}
.banner .banner-arrow {
  position: absolute;
  bottom: 20px;
  left: 50%;
}

.home-splide, .page-splide {
  position: relative;
}
.home-splide .splide__arrows, .page-splide .splide__arrows {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 100%;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}
.home-splide .splide__arrows .splide__arrow--next, .home-splide .splide__arrows .splide__arrow--prev, .page-splide .splide__arrows .splide__arrow--next, .page-splide .splide__arrows .splide__arrow--prev {
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: none;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
  pointer-events: all;
}
.home-splide .splide__arrows .splide__arrow--next svg, .home-splide .splide__arrows .splide__arrow--prev svg, .page-splide .splide__arrows .splide__arrow--next svg, .page-splide .splide__arrows .splide__arrow--prev svg {
  max-width: 70%;
  height: auto;
}
.home-splide .splide__arrows .splide__arrow--next path, .home-splide .splide__arrows .splide__arrow--prev path, .page-splide .splide__arrows .splide__arrow--next path, .page-splide .splide__arrows .splide__arrow--prev path {
  fill: #fff;
}
.home-splide .splide__arrows .splide__arrow--next:hover, .home-splide .splide__arrows .splide__arrow--prev:hover, .page-splide .splide__arrows .splide__arrow--next:hover, .page-splide .splide__arrows .splide__arrow--prev:hover {
  background: rgba(0, 0, 0, 0.2);
}
.home-splide .splide__arrows .splide__arrow--next, .page-splide .splide__arrows .splide__arrow--next {
  right: 40px;
}
.home-splide .splide__arrows .splide__arrow--prev, .page-splide .splide__arrows .splide__arrow--prev {
  left: 40px;
  transform: scaleX(-1);
}
.home-splide .splide__pagination, .page-splide .splide__pagination {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  gap: 10px;
}
.home-splide .splide__pagination li, .page-splide .splide__pagination li {
  height: 15px;
  width: 15px;
}
.home-splide .splide__pagination li button, .page-splide .splide__pagination li button {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: var(--color-primary);
  border: 2px solid var(--color-secondary);
}
.home-splide .splide__pagination li button.is-active, .page-splide .splide__pagination li button.is-active {
  background-color: rgb(102, 102, 102);
}
.home-splide .splide__track .the-content p, .page-splide .splide__track .the-content p {
  text-transform: uppercase;
  color: var(--color-primary);
  font-weight: 800;
}

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

/*
	Module: Boutons
	Description:
*/
/*--- Responsive ---*/
/*
	Module: Image
	Description:
*/
.image-module {
  text-align: center;
  margin-bottom: 35px;
  /*- Format de l'image - Carré -*/
  /*- Format de l'image - Portrait -*/
  /*- Format de l'image - Paysage -*/
}
.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,
.image-module.square .img-container > svg {
  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,
.image-module.portrait .img-container > svg {
  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,
.image-module.landscape .img-container > svg {
  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,
.image-module.panoramic .img-container > svg {
  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%;
}
.image-module.img-cover img {
  width: 100%;
}

.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 {
  margin-bottom: 50px;
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}
.gallery-module .img-container {
  position: relative;
}
.gallery-module .img-container > img,
.gallery-module .img-container > picture,
.gallery-module .img-container > svg {
  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:nth-child(3n+1) {
  position: relative;
  width: calc(33% - 15px);
}
.gallery-module .img-container:nth-child(3n+1):before {
  content: "";
  display: block;
  padding-top: 120%;
}
.gallery-module .img-container:nth-child(3n+2) {
  position: relative;
  width: calc(66% - 15px);
}
.gallery-module .img-container:nth-child(3n+2):before {
  content: "";
  display: block;
  padding-top: 60%;
}
.gallery-module .img-container:nth-child(3n+3) {
  position: relative;
  width: 100%;
}
.gallery-module .img-container:nth-child(3n+3):before {
  content: "";
  display: block;
  padding-top: 40%;
}
.gallery-module .img-container a {
  z-index: 2;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

/*
	Module: Slider
	Description:
*/
.slider-module {
  margin-bottom: 50px;
}
.slider-module .splide__slide > div:last-child {
  margin-bottom: 0;
}
.slider-module .splide__arrows {
  position: absolute;
  top: 50%;
  left: -50px;
  width: calc(100% + 100px);
  transform: translateY(-50%);
  pointer-events: none;
  display: flex;
  justify-content: space-between;
  z-index: 2;
}
.slider-module .splide__arrows .splide__arrow {
  pointer-events: all;
  background: transparent;
  border: 0px;
  cursor: pointer;
}
.slider-module .splide__arrows .splide__arrow svg {
  width: 29px;
  height: 28px;
}
.slider-module .splide__arrows .splide__arrow svg path {
  fill: #fff;
}
.slider-module .splide__arrows .splide__arrow.splide__arrow--prev {
  transform: scaleX(-1);
}
.slider-module .splide__pagination {
  display: flex;
  gap: 10px;
  margin-top: 25px;
}
.slider-module .splide__pagination button {
  border-radius: 100%;
  border: 0px;
  width: 10px;
  height: 10px;
  display: inline-block;
  background: var(--color-accent-2);
  padding: 0;
  opacity: 0.3;
  cursor: pointer;
}
.slider-module .splide__pagination button.is-active {
  opacity: 1;
}
.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;
  border: 1px solid var(--color-text);
  background-color: #FFFFFF;
  background-clip: padding-box;
  border-radius: 10px;
  z-index: 2;
}
.collapse-module .collapse-trigger {
  padding: 20px 80px 20px 60px;
  display: flex;
  gap: 25px;
  justify-content: start;
  align-items: center;
  cursor: pointer;
  position: relative;
  font-weight: 500;
  border-bottom: 1px solid transparent;
}
.collapse-module .collapse-trigger .icon {
  width: 50px;
}
.collapse-module .collapse-trigger .icon svg {
  max-width: 100%;
  height: auto;
}
.collapse-module .collapse-trigger .arrow {
  position: absolute;
  right: 30px;
  top: 53%;
  transform: translateY(-50%);
  transition: all 0.3s ease-in-out;
}
.collapse-module .collapse-trigger .arrow svg {
  height: 26px;
  width: 26px;
  transform: rotate(90deg);
}
.collapse-module .collapse-trigger h3 {
  font: bold 1.5625rem/120% var(--font-primary);
}
.collapse-module .collapse-content {
  display: none;
  padding: 20px 60px 40px;
}
.collapse-module.open .arrow {
  transform: translateY(-50%) scaleY(-1);
}
.collapse-module.open .collapse-trigger {
  border-color: #707070;
}

/*
	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 .contact-info {
  display: flex;
  margin-bottom: 15px;
  gap: 15px;
}
.contact-info-module .contact-info .icon {
  width: 25px;
  display: flex;
  justify-content: center;
}
.contact-info-module .contact-info .icon svg {
  height: auto;
  max-width: 100%;
}
.contact-info-module .contact-info.contact-schedule {
  gap: 0;
  flex-direction: column;
}
.contact-info-module .opening-hours-line {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 220px;
  margin-bottom: 5px;
}

/*
	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 {
  position: relative;
  position: relative;
}
.site-content-module .team-member-block .img-container:before {
  content: "";
  display: block;
  padding-top: 115%;
}
.site-content-module .team-member-block .img-container > img,
.site-content-module .team-member-block .img-container > picture,
.site-content-module .team-member-block .img-container > svg {
  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 .content {
  padding: 20px 0;
}
.site-content-module .team-member-block .content h4 {
  font: 300 1.4375rem/1.25em var(--font-primary);
  margin-bottom: 5px;
}
.site-content-module .team-member-block .content h5 {
  font: normal 1.25rem/100% var(--font-secondary);
}
.site-content-module .team-member-block.has-description .content {
  position: absolute;
  z-index: 2;
  padding: 80px 80px;
  top: 0;
  width: 100%;
  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-accent-1);
  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: bold 1.875rem/100% var(--font-secondary);
  color: white;
  transition: all 0.3s ease-in-out;
  transform: translateY(200px);
  opacity: 0;
  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: normal 1.25rem/100% var(--font-secondary);
  color: white;
  transform: translateY(200px);
  transition: all 0.3s ease-in-out;
  opacity: 0;
  margin-bottom: 35px;
}
.site-content-module .team-member-block.has-description .content p {
  transform: translateY(200px);
  transition: all 0.3s ease-in-out;
  color: white;
  opacity: 0;
}
.site-content-module .team-member-block.has-description .content a {
  opacity: 0;
  margin-top: 25px;
  color: white;
  border-color: white !important;
  transform: translateY(200px);
  transition: all 0.3s ease-in-out;
}
.site-content-module .team-member-block.has-description .content a span {
  color: white;
  transition: all 0.3s ease-in-out;
}
.site-content-module .team-member-block.has-description .content a:hover {
  background-color: transparent;
}
.site-content-module .team-member-block.has-description .content a:hover span {
  color: white;
}
.site-content-module .team-member-block.has-description:hover .content {
  opacity: 1;
}
.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 {
  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 a {
  transition: all 0.3s ease-in-out 0.4s;
}
.site-content-module .content-block {
  height: 100%;
  background-color: var(--bg-color);
}
.site-content-module .content-block .img-container {
  position: relative;
  position: relative;
  margin-bottom: 20px;
}
.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,
.site-content-module .content-block .img-container > svg {
  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 h4 {
  font: bold 1.25rem/140% var(--font-primary);
  margin-bottom: 20px;
  color: var(--text-color);
}
.site-content-module .content-block .text-container p {
  margin-bottom: 35px;
  color: var(--text-color);
}

.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;
}

/* Add custom CSS here */
header {
  background: rgba(255, 255, 255, 0) !important;
}
header .wrapper nav ul li.menu-item a:before {
  content: url("../images/icone_hover_menu.svg"); /* Obligatoire pour que ::before fonctionne */
  position: absolute;
  top: -80%;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1; /* Pour placer le pseudo-élément derrière le bouton */
  opacity: 0; /* Initiallement invisible */
  transition: opacity 0.3s ease-in-out; /* Transition douce de l'opacité */
}
header .wrapper nav ul li a:hover {
  color: var(--color-accent-2);
}
header .wrapper nav ul li a:hover::before {
  opacity: 1;
}
header .wrapper nav ul li.lang-item {
  position: relative;
  background: var(--color-accent-2);
  border-radius: 100%;
  padding: 10px;
  transition: all 0.3s ease-in-out;
  width: 40px;
  height: 40px;
}
header .wrapper nav ul li.lang-item a {
  text-transform: uppercase;
  color: #fff !important;
}
header .wrapper nav ul li.lang-item:before {
  content: "";
  position: absolute;
  background: url(../images/coeur.svg) no-repeat center;
  background-size: cover;
  width: 50px;
  height: 50px;
  left: -5px;
  top: -8px;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
header .wrapper nav ul li.lang-item:hover {
  background: transparent;
}
header .wrapper nav ul li.lang-item:hover:before {
  opacity: 1;
}
header .wrapper nav ul li a {
  color: var(--color-text) !important;
  font-weight: 400;
}
header .wrapper nav ul li a::before {
  content: none;
}

.home-banner {
  display: none;
}

main {
  padding-top: 0;
}

.text-primary {
  font-family: "SignPainter", sans-serif;
  color: var(--color-primary);
}

/* Création des boutons */
.btn.primary {
  background-color: var(--color-accent-2) !important;
  border-radius: 6px;
  border: 0;
  color: var(--color-secondary);
  font-family: var(--font-secondary);
  font-size: 1.25rem;
  padding: 8px 20px;
  letter-spacing: 0.5px;
  text-align: center;
  min-width: 165px;
}

.btn.primary::before, .btn.primary::after {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1; /* Pour placer le pseudo-élément derrière le bouton */
  opacity: 0; /* Initiallement invisible */
  transition: opacity 0.7s ease-in-out; /* Transition douce de l'opacité */
}

.btn.primary::before {
  content: url("../images/petit_coeur_rouge_btn.svg"); /* Obligatoire pour que ::before fonctionne */
  top: 0%;
  left: 45%;
  transition: all 0.3s ease-in-out;
}

.btn.primary::after {
  content: url("../images/petit_coeur_noir_or_btn.svg"); /* Obligatoire pour que ::before fonctionne */
  top: 65%;
  left: -40%;
  transition: all 0.3s ease-in-out;
}

.btn.primary:hover:before {
  top: -20%;
  left: 50%;
}
.btn.primary:hover:after {
  top: 75%;
  left: -50%;
}

.btn.primary:hover::before,
.btn.primary:hover::after {
  opacity: 1 !important;
}

.line_after {
  padding: 5px;
  border-right: 1px solid white;
}

.line_after_grey {
  padding: 5px;
  border-right: 1px solid var(--color-secondary);
}

/** Section avec le Formulaire **/
#inscription {
  min-height: 800px;
  height: fit-content;
  padding-top: 250px !important;
}
#inscription .gform_confirmation_wrapper {
  margin-top: 50px !important;
}
#inscription .wrapper {
  justify-content: center;
  background-size: cover;
  background-position: right;
}
#inscription .wrapper h1 {
  text-align: center;
  letter-spacing: 1.4px;
  line-height: 0.7;
  font-size: 100px;
  font-family: "SignPainter", sans-serif;
  color: var(--color-accent-2);
  font-weight: 100;
}
#inscription .wrapper h1 span {
  font: 300 3.125rem/1.2em var(--font-secondary);
  color: var(--color-text);
}
#inscription .wrapper .small-m-b {
  max-width: 500px;
}
#inscription .wrapper .medium-m-b {
  max-width: 500px;
}
#inscription .wrapper form {
  padding-top: 10px;
}
#inscription .wrapper form::before {
  content: url("../images/coeur_moyen_transparent.svg");
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 0;
  top: 8%;
  left: -40%;
}
#inscription .wrapper form input {
  border: 1px solid var(--color-title);
  border-radius: 6px;
  max-height: 42px;
}
#inscription .wrapper form input::placeholder {
  color: var(--color-title);
  font-weight: lighter;
}
#inscription .wrapper form label {
  display: none;
}
#inscription .wrapper form .gform_footer {
  justify-content: center;
  padding: 30px 0;
}

/** Section carousel **/
#nos_certifications .the-content h2 {
  color: #fff;
  font-size: 48px;
  margin-bottom: 10px;
}
#nos_certifications .the-content h3 {
  color: var(--color-accent-2);
}
#nos_certifications .splide__slide {
  display: flex;
  flex-direction: row;
  column-gap: 60px;
}
#nos_certifications .splide__slide h3 {
  color: var(--color-accent-2) !important;
  font-size: 2.125rem;
  margin-bottom: 10px;
  font-weight: 600;
}
#nos_certifications .splide__slide h3 span {
  font-size: 1.3125rem;
}
#nos_certifications .splide__slide p {
  color: var(--color-primary);
}
#nos_certifications .splide__slide .image-module {
  margin-bottom: 0 !important;
  display: flex;
  align-items: center;
  margin-left: 20px;
}
#nos_certifications .splide__slide .image-module .img-container {
  width: 175px !important;
  align-items: center;
}
#nos_certifications .splide__slide .text-module {
  display: flex;
  align-items: center;
  max-width: 400px;
}

/** Citation **/
#citation {
  text-align: center;
  padding-top: 200px;
  padding-bottom: 140px;
}
#citation .the-content {
  position: relative;
  /*Guillemet */
}
#citation .the-content h2 {
  font-size: 3.6875rem;
  letter-spacing: 0.96px;
  z-index: 2;
  position: relative;
}
#citation .the-content h2 span {
  font-family: "SignPainter", sans-serif;
  letter-spacing: 2px;
  font-size: 3.6875rem;
  color: var(--color-accent-2);
  font-weight: 100;
}
#citation .the-content::after {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  content: url("../images/guillemet_droite.svg");
  top: -30%;
  left: 50%;
}
#citation .the-content::before {
  text-align: left;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  content: url("../images/guillemet_gauche.svg");
  top: 90%;
  left: 0;
}

/** Avantages Amora **/
.avantages {
  text-align: center;
  background: transparent linear-gradient(180deg, rgba(239, 239, 239, 0) 0%, #EFEFEF 100%) 0 0 no-repeat padding-box;
}
.avantages h2 {
  margin-bottom: 80px !important;
  margin-top: 30px;
  font-size: 48px !important;
}
.avantages h2::before {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  content: url("../images/coeur_avantages_amora.svg");
  top: -65%;
  left: 55%;
}
.avantages .avantage-col {
  display: flex;
  flex-direction: column;
  justify-content: flex-start !important;
  margin-bottom: 35px;
  align-content: center;
}
.avantages .avantage-col .the-content {
  display: flex;
  justify-content: center !important;
  flex-direction: row;
}
.avantages .avantage-col .the-content p {
  text-align: center;
  font: normal normal 500 1.0625rem/20px Outfit;
  letter-spacing: 0;
  color: #C3986E;
  opacity: 1;
  max-width: 150px;
  align-self: center;
}
.avantages::before {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1;
  content: url("../images/coeur_avantages.svg");
  bottom: -70%;
  right: 40%;
}

.imgs_coeurs .image-module img {
  margin-bottom: 100px;
}

/* Section excellence */
#excellence {
  z-index: 1;
  background-color: #FFFFFF !important;
}
#excellence .excellence-col-text h2 {
  margin-bottom: 50px;
  margin-top: 0;
  font-size: 48px !important;
}
#excellence .excellence-col-text .the-content h3 {
  color: var(--color-accent-2);
  margin-bottom: 0;
}
#excellence .excellence-col-img .img-container {
  position: relative;
}
#excellence .excellence-col-img .img-container:after {
  content: "";
  position: absolute;
  width: 25%;
  height: 25%;
  z-index: 1;
  background: url("../images/triodecoeur.png") no-repeat center;
  background-size: contain;
  top: -2%;
  left: -6%;
}

/* Section Vidéo */
#video .the-content h2 {
  font-size: 48px !important;
}
#video .video_text::before, #video .video_text::after {
  position: absolute;
  width: 10%;
  height: 10%;
  z-index: 1;
}
#video .video_text {
  overflow: visible;
}
#video .video_text p {
  text-align: center;
}
#video .video_text::before {
  content: url("../images/coeur_video_gauche.png");
  top: 50%;
  left: -10%;
}
#video .video_text::after {
  content: url("../images/coeur_vide_droit.png");
  top: -5%;
  right: -10%;
}
#video .text-module {
  max-width: 800px;
  margin-inline: auto;
}
#video .text-module.video {
  width: 100%;
  max-width: 1100px;
  margin-inline: auto;
}

/* Section Fonctionnement */
#fonctionnement {
  position: relative;
  min-height: 966px;
  z-index: 1;
}
#fonctionnement.slice.p-size-medium {
  padding-bottom: 250px;
}
#fonctionnement .text-module {
  text-align: center;
}
#fonctionnement:before {
  content: "";
  position: absolute;
  background: url(../images/wave.svg) no-repeat center bottom;
  background-size: 100% auto;
  width: 100%;
  height: 100%;
  text-align: left;
  bottom: -1px;
  left: 0;
}
#fonctionnement .btn {
  text-align: center;
}
#fonctionnement h2 {
  font-size: 48px;
  color: var(--color-primary);
  margin-bottom: 80px;
}
#fonctionnement h3 {
  color: var(--color-accent-2);
  margin-bottom: 10px;
}
#fonctionnement .splide__slide {
  min-height: 600px;
  border: 2px solid var(--color-accent-2);
  border-radius: 6px;
  padding: 30px 50px;
  justify-content: center;
  overflow: hidden;
}
#fonctionnement .splide__slide .the-content {
  z-index: 3;
}
#fonctionnement .splide__slide .text-module:nth-child(1) {
  position: relative;
  transition: all 0.3s ease-in-out;
  top: 50%;
  transform: translateY(-50%);
}
#fonctionnement .splide__slide h3 {
  color: var(--color-primary);
  font-size: 34px;
}
#fonctionnement .splide__slide h3 span {
  color: var(--color-accent-2);
  line-height: 65px;
}
#fonctionnement .splide__slide p {
  font-size: 1.0625rem;
  color: var(--color-primary);
}
#fonctionnement .splide__slide::after {
  content: "";
  background: url(../images/coeur_fonctionnement.svg) no-repeat bottom;
  position: absolute;
  top: 0;
  right: -20px;
  width: 100%;
  height: 100%;
  z-index: 0;
}
#fonctionnement .splide__slide::before {
  content: ""; /* Obligatoire pour afficher le pseudo-élément */
  position: absolute; /* Position absolue par rapport à l'élément parent */
  top: 0; /* Positionnement au-dessus */
  left: 0; /* Positionnement à gauche */
  width: 100%; /* Occupera toute la largeur */
  height: 100%; /* Occupera toute la hauteur */
  background-color: rgba(195, 152, 110, 0.9); /* Couleur semi-transparente (noir dans cet exemple) */
  z-index: 2; /* Assurez-vous que la superposition est au-dessus du contenu */
  transition: opacity 0.7s ease-in-out; /* Transition douce de l'opacité */
  opacity: 0;
}
#fonctionnement .splide__slide:hover:before {
  opacity: 1;
}
#fonctionnement .splide__slide:hover img {
  opacity: 1;
}
#fonctionnement .splide__slide:hover h3 span {
  color: var(--color-primary);
}
#fonctionnement .splide__slide:hover .text-module:nth-child(1) {
  top: 0;
  transform: translateY(0);
}
#fonctionnement .splide__slide img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.7s ease-in-out; /* Transition douce de l'opacité */
  object-fit: cover;
  object-position: center;
}
#fonctionnement .splide__slide .text-module + .text-module {
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
#fonctionnement .splide__slide:hover .text-module + .text-module, #fonctionnement .splide__slide:hover .text-module {
  display: block;
  opacity: 1;
  position: relative;
  z-index: 100;
}
#fonctionnement .slider-module .splide__arrows {
  width: calc(100% + 200px);
  left: -100px;
}

/*FAQ */
#faq {
  position: relative;
  overflow: visible;
}
#faq h3 {
  color: var(--color-accent-2);
  margin-bottom: 0;
}
#faq h2 {
  font-size: 48px;
  color: var(--color-text);
}
#faq .collapse-trigger {
  min-height: 85px !important;
  color: var(--color-title) !important;
  font-weight: 400;
  overflow: hidden;
  font-size: 21px;
  font-family: var(--font-secondary);
  z-index: 2;
  transition: all 0.3s ease-in-out;
}
#faq::before {
  content: url("../images/coeur_gauche_faq.svg");
  top: 200px;
  left: 5%;
}
#faq::after {
  content: "";
  background: url("../images/coeur_droit_faq.svg") no-repeat center;
  background-size: contain;
  width: 100%;
  max-width: 550px;
  height: 100%;
  max-height: 525px;
  bottom: -250px;
  right: -10%;
}
#faq::after, #faq::before {
  position: absolute;
  z-index: 1;
}
#faq .collapse-module.open .collapse-trigger {
  color: var(--color-accent-2) !important;
}

/* infolettre */
#infolettre {
  z-index: 5;
  margin-bottom: -150px;
}
#infolettre .infolettre-col {
  background-color: var(--color-accent-1);
  display: flex !important;
  flex-direction: row !important;
  border-radius: 10px;
  min-height: 115px;
  padding: 20px 0;
  /*Contenue du formulaire */
}
#infolettre .infolettre-col h2 {
  color: var(--color-primary);
  font-size: 2.5rem;
  font-family: var(--font-secondary);
  text-align: right;
  padding-right: 52px;
}
#infolettre .infolettre-col h2 span {
  font-size: 52px;
  font-family: "SignPainter", sans-serif;
}
#infolettre .infolettre-col .gform_confirmation_wrapper .gform_confirmation_message {
  color: #fff;
}
#infolettre .infolettre-col .text-module, #infolettre .infolettre-col .form-module {
  width: 50%;
}
#infolettre .infolettre-col .text-module {
  height: 100%;
  display: flex;
  align-items: center;
}
#infolettre .infolettre-col .text-module .the-content {
  width: 100%;
}
#infolettre .infolettre-col .form-container {
  height: 100%;
}
#infolettre .infolettre-col .gform_wrapper {
  height: 100%;
}
#infolettre .infolettre-col .gform_wrapper.gravity-theme .gform_validation_errors {
  display: none !important;
}
#infolettre .infolettre-col form {
  display: flex !important;
  flex-direction: row !important;
  height: 100%;
}
#infolettre .infolettre-col form .gform_submission_error {
  font-size: 10px !important;
}
#infolettre .infolettre-col form .ginput_container, #infolettre .infolettre-col form .gform-body {
  justify-content: center;
  align-content: center;
  align-items: center;
  display: flex;
}
#infolettre .infolettre-col form .ginput_container {
  gap: 15px;
}
#infolettre .infolettre-col form .gform-body {
  width: 70%;
  padding-right: 50px;
}
#infolettre .infolettre-col form .gform-body #gform_fields_5 {
  margin-right: 35px;
}
#infolettre .infolettre-col form .gform-body input[type=email] {
  background-color: rgba(255, 255, 255, 0);
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
  padding: 10px;
}
#infolettre .infolettre-col form .gform-body input[type=email]::-webkit-input-placeholder {
  color: var(--color-primary) !important;
}
#infolettre .infolettre-col form .gform-body input[type=email]:-moz-placeholder {
  color: var(--color-primary) !important;
}
#infolettre .infolettre-col form .gform-body input[type=email]::-moz-placeholder {
  color: var(--color-primary) !important;
}
#infolettre .infolettre-col form .gform-body input[type=email]:-ms-input-placeholder {
  color: var(--color-primary) !important;
}
#infolettre .btn.primary {
  max-height: 40px !important;
  margin-bottom: 0 !important;
}
#infolettre .btn.primary:before {
  content: url(../images/petit_coeur_noir_btn.svg);
}
#infolettre .infolettre-col {
  position: relative; /* Assurez-vous que .infolettre-col est positionné de manière relative */
}
#infolettre .infolettre-col::before {
  position: absolute;
  content: url("../images/triple_coeur_infolettre_gauche.svg");
  left: -30px; /* Ajustez cette valeur selon votre mise en page */
  top: -30px; /* Assurez-vous que le pseudo-élément est aligné verticalement */
}
#infolettre .infolettre-col::after {
  position: absolute;
  content: url("../images/triple_coeur_infolettre_droit.svg");
  right: -45px; /* Ajustez cette valeur selon votre mise en page */
  top: 40px; /* Assurez-vous que le pseudo-élément est aligné verticalement */
}

.certifications .slider-module .splide__arrows {
  left: initial;
  right: 0;
  top: revert;
  bottom: 0;
  justify-content: center;
  width: fit-content;
  gap: 20px;
}

.privacy-policy {
  padding-top: 100px;
}
.privacy-policy #main {
  margin-top: 0;
}

@media screen and (max-width: 1795px) {
  .wrapper {
    max-width: calc(100% - 150px);
  }
  .banner .the-content {
    width: calc(37vw - 75px);
  }
}
@media screen and (max-width: 1600px) {
  #fonctionnement .slider-module .splide__arrows {
    width: calc(100% + 75px);
    left: -38px;
  }
}
@media screen and (max-width: 1500px) {
  .wrapper.smaller {
    max-width: calc(100% - 150px);
  }
  .banner h1 {
    font-size: 2.8125rem;
  }
}
@media screen and (max-width: 1425px) {
  header .phone a {
    font-size: 1.125rem;
  }
  header .header-languages {
    margin: 0;
  }
  .modal .btn-close {
    top: 35px;
    right: 35px;
  }
}
@media screen and (max-width: 1350px) {
  header .wrapper nav ul li {
    margin-left: 40px;
  }
  header .wrapper .logo .desktopOnly {
    height: 80px;
  }
}
@media screen and (max-width: 1280px) {
  .banner h1 {
    font-size: 2.375rem;
  }
}
@media screen and (max-width: 1200px) {
  #inscription {
    height: fit-content;
    padding-top: 50px !important;
  }
  #inscription .row .col-auto, #inscription form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .col-auto, form .gform_body .gform_fields .gfield #inscription .ginput_container.ginput_container_address .col-auto {
    max-width: 100% !important;
  }
  #inscription .row .col-auto:nth-child(2), #inscription form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .col-auto:nth-child(2), form .gform_body .gform_fields .gfield #inscription .ginput_container.ginput_container_address .col-auto:nth-child(2) {
    height: 0;
  }
  #inscription .wrapper {
    align-content: start;
  }
  .the-content h1 {
    font-size: 2.8125rem;
  }
  .the-content h2 {
    font-size: 2.0625rem;
  }
  .the-content h3 {
    font-size: 1.375rem;
  }
  .the-content h4 {
    font-size: 1rem;
  }
  #fonctionnement .slider-module.medium-m-b {
    margin-bottom: 0;
  }
  #fonctionnement .slider-module .splide__arrows {
    position: relative;
    top: initial;
    transform: translateY(0) translateX(-50%);
    margin: 30px 0;
    width: fit-content;
    left: 50%;
  }
  .half-text-half-image .row, .half-text-half-image form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address, form .gform_body .gform_fields .gfield .half-text-half-image .ginput_container.ginput_container_address {
    justify-content: center;
    gap: 50px;
  }
  .half-text-half-image .col-text {
    max-width: 800px;
  }
  .half-text-half-image .col-image {
    max-width: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .half-text-half-image .image {
    height: 100%;
    width: 100%;
    max-width: 435px;
    max-height: 535px;
  }
  .half-text-half-image .image:after {
    top: 15px;
    left: 15px;
  }
  .mobileOnly {
    display: block;
  }
  .mobile-nav-trigger,
  #mobile-nav {
    display: block;
  }
  #contact-form {
    padding: 50px 0;
  }
  #contact-form h1 {
    font-size: 2.1875rem;
    padding-bottom: 20px;
  }
  .posts-filters .filter-wrap {
    max-width: 45%;
  }
  .posts-block {
    grid-template-columns: 1fr;
    row-gap: 30px;
  }
  .posts-block .the-content {
    margin-bottom: 15px;
  }
  .post-resume .img-container {
    margin-bottom: 15px;
  }
  #main {
    margin-top: 115px;
  }
  #header {
    height: 90px;
  }
  #header.shrink .mobileOnly {
    height: 100%;
  }
  #header .desktopOnly svg {
    width: 150px;
    height: 135px;
  }
  #header .wrapper > nav {
    display: none;
  }
  #header .header .phone {
    display: none;
  }
  #header .header .header-languages {
    display: none !important;
  }
  #header.active .mobile-nav-trigger span:nth-child(1) {
    transform: translateY(13px);
    opacity: 0;
    transition: all 0.3s ease-in-out;
  }
  #header.active .mobile-nav-trigger span:nth-child(3) {
    transform: translateY(-13px);
    opacity: 0;
    transition: all 0.3s ease-in-out;
  }
  #header.active .mobile-nav-trigger span:nth-child(2) {
    position: relative;
    background: transparent;
    transition: all 0.3s ease-in-out;
  }
  #header.active .mobile-nav-trigger span:nth-child(2):before {
    transform: rotateZ(135deg);
    transition: all 0.3s ease-in-out 0.3s;
  }
  #header.active .mobile-nav-trigger span:nth-child(2):after {
    transform: rotateZ(225deg);
    transition: all 0.3s ease-in-out 0.3s;
  }
  header {
    padding: 30px 0;
  }
  header .wrapper .logo {
    height: 100px;
  }
  header .wrapper .logo .mobileOnly {
    height: 100px;
  }
  header .phone {
    display: none;
  }
  header .header-languages {
    display: none !important;
  }
  header .mobile-nav-trigger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 16px;
    pointer-events: all;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  header .mobile-nav-trigger span {
    width: 30px;
    height: 4px;
    display: block;
    background: var(--color-accent-2);
    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;
    border-radius: 50px;
  }
  header .mobile-nav-trigger span:nth-child(1) {
    transform: translateY(-3px);
    transition: all 0.3s ease-in-out 0.3s;
  }
  header .mobile-nav-trigger span:nth-child(2) {
    position: relative;
    transition: all 0.3s ease-in-out;
  }
  header .mobile-nav-trigger span:nth-child(2):before, header .mobile-nav-trigger span:nth-child(2):after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: var(--color-accent-2);
    transition: all 0.3s ease-in-out;
    border-radius: 50px;
  }
  header .mobile-nav-trigger span:nth-child(3) {
    transform: translateY(3px);
    transition: all 0.3s ease-in-out 0.3s;
  }
  header .mobile-nav-trigger:hover span:nth-child(2) {
    transition: all 0.3s ease-in-out 0.3s;
  }
  header .mobile-nav-trigger:hover span:nth-child(1), header .mobile-nav-trigger:hover span:nth-child(3) {
    transform: translateY(0px);
  }
  header nav {
    display: none;
  }
  #mobile-nav {
    position: fixed;
    z-index: 10;
    top: 0px;
    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: #fff;
    transition: 500ms;
  }
  #mobile-nav .arrow-back {
    display: flex;
    align-items: center;
    gap: 20px;
    cursor: pointer;
  }
  #mobile-nav .arrow-back:before {
    content: "";
    background: url("../images/icon-back-arrow.svg") no-repeat right;
    background-size: contain;
    width: 43px;
    height: 13px;
  }
  #mobile-nav .arrow-back:after {
    content: "Retour";
    font-size: 1.125rem;
    font-weight: bold;
  }
  #mobile-nav .menu-item-dropdown .sub-menu {
    display: none;
    opacity: 1;
  }
  #mobile-nav .btn span {
    font-weight: 600 !important;
  }
  #mobile-nav .sub-menu {
    display: flex;
    flex-direction: column;
    position: absolute;
    gap: 30px;
    top: 115px;
    transform: translateX(100px);
    transition: 500ms;
    opacity: 0;
    pointer-events: none;
  }
  #mobile-nav .sub-menu li {
    margin-bottom: 0 !important;
  }
  #mobile-nav .sub-menu li a {
    font-weight: 500 !important;
    color: var(--color-accent-1) !important;
  }
  #mobile-nav .sub-menu .sub-menu {
    position: relative;
    top: 0;
    transform: translateX(0);
    transition: 0ms;
    padding-left: 45px;
  }
  #mobile-nav .sub-menu .sub-menu li {
    margin-bottom: 0;
    padding-bottom: 5px;
  }
  #mobile-nav .sub-menu li.menu-item-has-children {
    flex-direction: column;
    position: relative;
  }
  #mobile-nav .sub-menu.open {
    opacity: 1;
    left: auto;
    transition: 500ms;
    pointer-events: auto;
  }
  #mobile-nav .dropdown-open {
    pointer-events: none;
  }
  #mobile-nav .dropdown-open a {
    pointer-events: auto;
  }
  #mobile-nav .header-infos--mobile {
    width: 100%;
    padding: 25px 0;
  }
  #mobile-nav .header-infos--mobile > div {
    max-width: 200px;
  }
  #mobile-nav .header-infos--mobile .address {
    font-size: 1rem;
    text-align: center;
  }
  #mobile-nav .phone {
    margin-bottom: 20px;
  }
  #mobile-nav .phone a {
    font: 600 18px var(--font-secondary) !important;
    color: var(--color-primary);
  }
  #mobile-nav .header-languages li {
    list-style: none;
  }
  #mobile-nav .header-languages li a {
    font: 600 18px var(--font-secondary) !important;
    text-transform: uppercase;
    color: var(--color-primary);
  }
  #mobile-nav .wrapper > ul {
    width: 100%;
    transform: translateX(0px);
    transition: 500ms;
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 120px 0 0 0;
    border-bottom: 1px solid var(--color-primary);
    margin-bottom: 20px;
  }
  #mobile-nav .wrapper > ul > li.menu-item-has-children {
    display: flex;
    gap: 6px;
  }
  #mobile-nav .wrapper > ul > li.menu-item-has-children > a {
    position: relative;
  }
  #mobile-nav .wrapper > ul > li.menu-item-has-children > a:after {
    content: "";
    background: url("../images/fleche-menu.svg") no-repeat;
    background-size: contain;
    width: 42px;
    height: 12px;
    position: absolute;
    top: 17px;
    right: -50px;
    transform: translateY(-50%) rotate(0deg);
    opacity: 1 !important;
    transition: 0s;
  }
  #mobile-nav .wrapper > ul li {
    margin-left: 10px;
    margin-bottom: 20px;
  }
  #mobile-nav .wrapper > ul li.link--primary a {
    color: var(--color-accent-1);
  }
  #mobile-nav .wrapper > ul li a {
    position: relative;
    font: 600 18px var(--font-secondary) !important;
    color: var(--color-text);
    padding: 5px 0px;
    transition: all 0.3s ease-in-out;
    display: flex;
    gap: 5px;
  }
  #mobile-nav .wrapper > ul li a:hover {
    color: black;
  }
  #mobile-nav .wrapper > ul li.btn {
    background: none;
    border: none;
    padding: 0;
  }
  #mobile-nav .wrapper > ul li.btn a {
    color: var(--color-accent-1);
  }
  #mobile-nav .wrapper > ul li.socials-container {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 17px;
  }
  #mobile-nav .wrapper > ul li.socials-container p {
    padding: 5px 0px;
    color: white;
    font: bold 18px var(--font-primary);
  }
  #mobile-nav .wrapper > ul li.socials-container a {
    padding: 0 10px 0 0px;
  }
  #mobile-nav .wrapper > ul li.socials-container a svg {
    width: 30px;
  }
  #mobile-nav .wrapper > ul li.socials-container a svg path {
    fill: white;
    transition: all 0.3s ease-in-out;
  }
  #mobile-nav .wrapper > ul li.socials-container a:hover svg {
    max-width: 100%;
  }
  #mobile-nav .wrapper > ul li.socials-container a:hover svg path {
    fill: black;
  }
  #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;
  }
  .section-bleed-out {
    padding-top: 60px;
  }
  .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;
  }
  .certifications .slider-module .splide__arrows {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 25px;
  }
}
@media screen and (max-width: 1080px) {
  .wrapper {
    width: calc(100% - 60px);
  }
  .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) {
  .home-banner p {
    font-size: 1.5625rem;
  }
  .row, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address {
    row-gap: 50px;
  }
  .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;
  }
  .mb-small {
    margin-bottom: 50px;
  }
  .home-banner {
    height: 65vh;
    min-height: 300px;
  }
  .banner {
    height: 100vh;
    min-height: 300px;
    max-height: 450px;
    display: flex;
    flex-direction: column;
  }
  .banner p {
    margin-top: 30px;
  }
  .banner .intro-text {
    margin-bottom: 30px;
  }
  .banner:after {
    transform: scale(0.7);
    top: -30px;
    left: -32px;
  }
  .banner:before {
    transform: scale(0.7);
    left: auto;
    bottom: -32px;
    right: -55px;
    z-index: 1;
  }
  .banner .wrapper {
    display: flex;
  }
  .banner .the-content {
    width: 100%;
    margin: auto;
  }
  .banner .the-content h1 {
    font-size: 2.1875rem;
    width: 100%;
  }
  .banner .the-content h2 {
    font: 300 1.875rem/1.2em var(--font-secondary);
    margin-bottom: 20px;
    letter-spacing: 0.42px;
  }
  .banner .the-content h3 {
    font: 300 1.3125rem/1.25em var(--font-secondary);
    letter-spacing: 0.42px;
    margin-bottom: 20px;
    color: var(--color-primary);
  }
  .banner .image {
    width: 100%;
    height: 100%;
    z-index: 0;
  }
  .banner .image:after {
    opacity: 0.9;
  }
  select {
    background: white url(../images/forms/icon-select.svg) no-repeat 95% center;
  }
  .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: 30px;
    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;
  }
  footer h4 {
    text-align: center;
  }
  footer .contact-info {
    transform: translateY(0);
  }
  footer .contact-info .d-flex:not(.flex-column) {
    transform: translateX(-5px);
  }
  footer .col-socials {
    transform: translateY(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);
  }
  #home-service2 .row, #home-service2 form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address, form .gform_body .gform_fields .gfield #home-service2 .ginput_container.ginput_container_address {
    flex-direction: column-reverse;
  }
  #home-service1 .text-module, #home-service2 .text-module, #home-service3 .text-module {
    margin-top: 35px;
  }
  #home-service1 .button-module, #home-service2 .button-module, #home-service3 .button-module {
    margin-bottom: 35px !important;
  }
  #home-service1.slice.content-row.p-size-large, #home-service2.slice.content-row.p-size-large, #home-service3.slice.content-row.p-size-large {
    padding: 0;
  }
  #home-service1.slice.content-row.p-size-medium, #home-service2.slice.content-row.p-size-medium, #home-service3.slice.content-row.p-size-medium {
    padding: 0;
  }
  .line_after {
    border-right: none;
  }
  #nos_certifications .row, #nos_certifications form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address, form .gform_body .gform_fields .gfield #nos_certifications .ginput_container.ginput_container_address {
    justify-content: left !important;
  }
  #nos_certifications .row .col-12, #nos_certifications form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .col-12, form .gform_body .gform_fields .gfield #nos_certifications .ginput_container.ginput_container_address .col-12, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address #nos_certifications .row .ginput_full, #nos_certifications form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_full, form .gform_body .gform_fields .gfield #nos_certifications .ginput_container.ginput_container_address .ginput_full, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address #nos_certifications .row .ginput_left, #nos_certifications form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_left, form .gform_body .gform_fields .gfield #nos_certifications .ginput_container.ginput_container_address .ginput_left, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address #nos_certifications .row .ginput_right, #nos_certifications form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_right, form .gform_body .gform_fields .gfield #nos_certifications .ginput_container.ginput_container_address .ginput_right {
    max-width: 100% !important;
    flex: none !important;
  }
  #citation {
    padding-top: 150px;
    padding-bottom: 150px;
  }
  #citation h2 {
    font-size: 2.8125rem;
  }
  #excellence .excellence-col-img .img-container::after {
    top: -5%;
  }
  #excellence .excellence-col-text h2 {
    font-size: 2.5rem !important;
  }
  #video .video_text:before {
    display: none;
  }
  #video .video_text:after {
    display: none;
  }
  #infolettre .infolettre-col #gform_5 {
    flex-direction: column !important;
    padding: 20px 0;
  }
  #infolettre .infolettre-col #gform_5 .gform_body {
    width: 100%;
    padding-right: 0;
  }
  #fonctionnement.slice.p-size-medium {
    padding-bottom: 150px;
  }
}
@media screen and (max-width: 767px) {
  .slice {
    position: relative;
  }
  .slice.content-row {
    /*- Taille du padding - Moyen -*/
    /*- Taille du padding - Large -*/
    /*- Padding de la section -*/
  }
  .slice.content-row.p-size-medium {
    padding: 50px 0;
  }
  .slice.content-row.p-size-large {
    padding: 50px 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;
  }
  footer > .wrapper {
    padding: 50px 0;
  }
  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: 30px;
  }
  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;
  }
  .avantages .avantage-col {
    max-width: 50% !important;
  }
}
@media screen and (max-width: 680px) {
  .google-maps-module {
    position: relative;
  }
  .google-maps-module:before {
    content: "";
    display: block;
    padding-top: 75%;
  }
  #inscription {
    background-position: 85% 200px;
    background-repeat: no-repeat;
    height: fit-content;
    padding-top: 50px !important;
  }
  #inscription.slice.p-size-medium {
    padding-bottom: 50px;
  }
  #inscription .row .col-auto, #inscription form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .col-auto, form .gform_body .gform_fields .gfield #inscription .ginput_container.ginput_container_address .col-auto {
    max-width: 100% !important;
  }
  #inscription .row .col-auto:nth-child(2), #inscription form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .col-auto:nth-child(2), form .gform_body .gform_fields .gfield #inscription .ginput_container.ginput_container_address .col-auto:nth-child(2) {
    height: 0;
  }
  #inscription .wrapper {
    align-content: start;
  }
  #inscription .wrapper h1 {
    font-size: 3.125rem;
  }
  #inscription .wrapper h1 span {
    font-size: 1.875rem;
  }
  .home-banner p {
    font-size: 1.125rem;
  }
  .dark-link .the-content ul li a {
    border-bottom: none;
  }
  .dark-link .the-content ul li a:hover {
    border: none;
  }
  .dark-link .the-content a {
    border-bottom: none;
  }
  .dark-link .the-content a:hover {
    border-bottom: none;
  }
  .link {
    border-bottom: none;
  }
  .link:hover {
    border-bottom: none;
  }
  .btn {
    font-size: 0.875rem;
  }
  .the-content h1 {
    font-size: 2.375rem;
  }
  .the-content h2 {
    font-size: 1.75rem;
  }
  .the-content h3 {
    font-size: 1.25rem;
  }
  .the-content h4 {
    font-size: 1rem;
  }
  .wrapper {
    width: calc(100% - 40px);
    max-width: calc(100% - 40px);
  }
  .image-bleed-out {
    height: 400px;
  }
  .splide__arrows {
    width: calc(100% + 40px);
    transform: translateX(-20px) translateY(-110%);
  }
  .single-dropdown {
    padding: 18px 30px;
  }
  .single-dropdown .question span {
    font-size: 1.25rem;
  }
  .home-banner {
    height: 60vh;
  }
  #nos_certifications .the-content {
    text-align: center;
  }
  #nos_certifications .splide__slide {
    flex-direction: column;
    row-gap: 50px;
  }
  #nos_certifications .splide__slide .image-module {
    margin-left: 0;
    justify-content: center;
  }
  #nos_certifications .splide__slide .text-module {
    max-width: 100%;
  }
  #nos_certifications .the-content h2 {
    font-size: 2.5rem;
  }
  #nos_certifications {
    z-index: 2;
  }
  #citation {
    padding-top: 150px;
    padding-bottom: 50px;
    overflow: visible;
    margin-bottom: 100px;
  }
  #citation .the-content h2 {
    font-size: 1.875rem;
  }
  #citation .the-content h2 span {
    font-size: 2.3125rem;
  }
  #citation .the-content:after {
    top: -40%;
    left: 30%;
  }
  #citation .the-content:before {
    top: 100%;
  }
  .collapse-module .collapse-trigger {
    padding: 20px 80px 20px 20px;
  }
  .collapse-module .collapse-content {
    padding: 20px 20px 40px;
  }
  #infolettre .col-12, #infolettre form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_full, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address #infolettre .ginput_full, #infolettre form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_left, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address #infolettre .ginput_left, #infolettre form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_right, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address #infolettre .ginput_right {
    flex-wrap: wrap;
    padding-top: 50px;
    padding-bottom: 35px;
  }
  #infolettre .col-12 .text-module, #infolettre form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_full .text-module, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address #infolettre .ginput_full .text-module, #infolettre form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_left .text-module, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address #infolettre .ginput_left .text-module, #infolettre form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_right .text-module, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address #infolettre .ginput_right .text-module {
    width: 90%;
    height: auto;
    margin-bottom: 5px !important;
    margin-inline: auto;
  }
  #infolettre .col-12 .form-module, #infolettre form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_full .form-module, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address #infolettre .ginput_full .form-module, #infolettre form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_left .form-module, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address #infolettre .ginput_left .form-module, #infolettre form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_right .form-module, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address #infolettre .ginput_right .form-module {
    width: 90%;
    margin-bottom: 0 !important;
    margin-inline: auto;
  }
  #infolettre .infolettre-col form {
    flex-wrap: wrap;
  }
  #infolettre .infolettre-col form .gform-body {
    width: 100%;
  }
  #infolettre .infolettre-col h2 {
    font-size: 1.25rem;
    text-align: left;
  }
  #infolettre .infolettre-col h2 span {
    font-size: 1.875rem;
  }
  #infolettre .infolettre-col:before {
    left: 20px;
    top: -50px;
  }
  #infolettre .infolettre-col:after {
    right: 20px;
    top: 195px;
  }
  footer .row, footer form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address, form .gform_body .gform_fields .gfield footer .ginput_container.ginput_container_address {
    row-gap: 0;
  }
  footer .col-md-12 {
    justify-content: center;
  }
  footer .wrapper.small {
    padding-bottom: 0;
  }
  footer #copyrights .wrapper {
    justify-content: center !important;
  }
  .avantages .row, .avantages form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address, form .gform_body .gform_fields .gfield .avantages .ginput_container.ginput_container_address {
    row-gap: 0;
  }
  #fonctionnement h2 {
    font-size: 2.375rem;
    margin-bottom: 20px;
  }
  #fonctionnement .splide__slide {
    min-height: 1px;
    padding: 30px;
  }
  #fonctionnement .splide__slide:before {
    opacity: 1;
  }
  #fonctionnement .splide__slide:after {
    display: none;
  }
  #fonctionnement .splide__slide img {
    opacity: 1;
  }
  #fonctionnement .splide__slide h3 span {
    color: var(--color-primary);
  }
  #fonctionnement .splide__slide .text-module:nth-child(1) {
    top: 0;
    transform: translateY(0);
  }
  #fonctionnement .splide__slide .text-module + .text-module, #fonctionnement .splide__slide .text-module {
    display: block;
    opacity: 1;
    position: relative;
    z-index: 100;
  }
  #faq h2 {
    font-size: 2.5rem;
  }
}
@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;
  }
  .banner {
    max-height: 380px;
  }
}
@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.5625rem;
  }
  .modal .btn-close {
    top: 15px;
    right: 15px;
  }
}
@media screen and (max-height: 700px) {
  .slice {
    /*- Taille du padding - Large -*/
    /*- Padding de la section -*/
  }
  .slice.p-size-large {
    padding: 50px 0;
  }
  .slice.no-p-bottom {
    padding-bottom: 0px;
  }
  .slice.no-p-top {
    padding-top: 0px;
  }
  .slice.no-p {
    padding-top: 0px;
    padding-bottom: 0px;
  }
}

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