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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media print, (prefers-reduced-motion: reduce) {
  .animate__animated {
    -webkit-animation-duration: 1ms !important;
    animation-duration: 1ms !important;
    -webkit-transition-duration: 1ms !important;
    transition-duration: 1ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

body {
  padding: 0;
  margin: 0;
}

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

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

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

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

.alignright {
  float: right;
}

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

.alignleft {
  float: left;
}

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

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

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

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

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

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

.undo-p {
  margin: 0;
}

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

svg {
  max-height: 100%;
}

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

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

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

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

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

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

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

.flat-all {
  padding: 0;
}

.fleft {
  float: left;
}

.fright {
  float: right;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .align-self-xl-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}
/*
 * Vertically align an element without using Flexbox
 */
/*
 * Add a color overlay absolutelly positionned over something
 */
/*
 * Overwrite browser placeholders styles
 */
/*
 * Convert images to background
 */
/*
 * Responsive shapes
 */
/*
 * Remove mobile/iOS default buttons
 */
/*- Colors -*/
/*
 * Fonts
 */
@font-face {
  font-family: "Mont";
  src: url("../../fw/core/login/fonts/Mont/Mont-Regular.woff") format("woff");
}
@font-face {
  font-family: "Mont Bold";
  src: url("../../fw/core/login/fonts/Mont/Mont-Bold.woff") format("woff");
}
@font-face {
  font-family: "Mont Heavy";
  src: url("../../fw/core/login/fonts/Mont/Mont-Heavy.woff") format("woff");
}
/*- font -*/
/*- Font sizes -*/
/*- transition -*/
/*- margins -*/
@keyframes flash-1 {
  0%, 100% {
    opacity: 50%;
  }
  50% {
    opacity: 100%;
  }
}
@keyframes hohoho {
  0%, 100% {
    height: 5px;
  }
  50% {
    height: 20px;
  }
}
::-moz-selection {
  color: white;
  background: black;
}

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

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

html,
body {
  box-sizing: border-box;
  font: 18px/100% "Mont", sans-serif;
  line-height: 25px;
  background: #AA1A47;
  color: white;
  scroll-behavior: smooth;
  scroll-padding-top: 60px;
  overflow-x: hidden;
}

.the-content *:last-child {
  margin-bottom: 0;
}
.the-content ul {
  list-style-type: disc;
  list-style-position: inside;
  margin-bottom: 20px;
}
.the-content ol {
  list-style-type: decimal;
  list-style-position: inside;
  margin-bottom: 1em;
}
.the-content ul ul, .the-content ol ul {
  list-style-type: circle;
  list-style-position: inside;
  margin-left: 15px;
}
.the-content ol ol, .the-content ul ol {
  list-style-type: lower-latin;
  list-style-position: inside;
  margin-left: 15px;
}
.the-content li {
  position: relative;
  padding-left: 30px;
  font: normal 18px/120% "Mont", sans-serif;
  list-style: none;
  margin-bottom: 15px;
}
.the-content li:before {
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  left: 0;
  top: 6px;
  background-color: #AA1A47;
}
.the-content h3 {
  font: bold 30px/120% "Mont", sans-serif;
}
.the-content h4 {
  font: bold 22px/120% "Mont", sans-serif;
  margin-bottom: 40px;
}
.the-content p {
  font: normal 18px/160% "Mont", sans-serif;
  margin-bottom: 1em;
}
.the-content p sup {
  font-size: 0.5em;
}
.the-content p a {
  font-weight: bold;
  color: #AA1A47;
  transition: all 0.3s ease-in-out;
}
.the-content p a:hover {
  color: #739FA9;
}
.the-content p a.button {
  color: white;
}
.the-content sup {
  font-size: 0.5em;
}

h2 {
  font-size: 40px;
  line-height: 110%;
  font-family: "Mont", sans-serif;
  margin-bottom: 40px;
}

.button {
  font: bold 18px/100% "Mont", sans-serif !important;
  color: white;
  text-transform: uppercase;
  text-align: center;
  padding: 20px 45px;
  background: #AA1A47;
  display: inline-block;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: 0px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.button span {
  color: white;
  transition: all 0.3s ease-in-out;
}
.button:hover {
  background: #739FA9;
}
.button:hover span {
  color: white;
}
.button.reverse, .slice.tech-support .col-form .button, .slice.content-row.half-image-half-content.has-red-bg .col-text .button, .slice.content-row.special-block-booth.has-red-bg .col-text .button {
  background: white;
}
.button.reverse span, .slice.tech-support .col-form .button span, .slice.content-row.half-image-half-content.has-red-bg .col-text .button span, .slice.content-row.special-block-booth.has-red-bg .col-text .button span {
  color: #AA1A47;
}
.button.reverse:hover, .slice.tech-support .col-form .button:hover, .slice.content-row.half-image-half-content.has-red-bg .col-text .button:hover, .slice.content-row.special-block-booth.has-red-bg .col-text .button:hover {
  background: #739FA9;
}
.button.reverse:hover span, .slice.tech-support .col-form .button:hover span, .slice.content-row.half-image-half-content.has-red-bg .col-text .button:hover span, .slice.content-row.special-block-booth.has-red-bg .col-text .button:hover span {
  color: white;
}

.wrapper {
  position: relative;
  height: 100%;
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
}
.wrapper.smaller {
  max-width: 1115px;
}
.wrapper.medium {
  max-width: 1280px;
}
.wrapper.medium-large {
  max-width: 1440px;
}
.wrapper.large {
  max-width: 1750px;
}
.wrapper.full {
  width: 100%;
  max-width: 100%;
}
.wrapper .the-content {
  max-width: 1080px;
}

.row.gutter-100, form .gform_body .gform_fields .gfield .gutter-100.ginput_container.ginput_container_address, form .gform_body .gutter-100.gform_fields {
  margin-left: -50px;
  margin-right: -50px;
}
.row.gutter-100 > div[class*=col-], form .gform_body .gform_fields .gfield .gutter-100.ginput_container.ginput_container_address > div[class*=col-], form .gform_body .gutter-100.gform_fields > div[class*=col-] {
  padding-left: 50px;
  padding-right: 50px;
}
.row.gutter-180, form .gform_body .gform_fields .gfield .gutter-180.ginput_container.ginput_container_address, form .gform_body .gutter-180.gform_fields {
  margin-left: -90px;
  margin-right: -90px;
}
.row.gutter-180 > div[class*=col-], form .gform_body .gform_fields .gfield .gutter-180.ginput_container.ginput_container_address > div[class*=col-], form .gform_body .gutter-180.gform_fields > div[class*=col-] {
  padding-left: 90px;
  padding-right: 90px;
}

#main {
  margin-top: 100px;
}

.slice .slice-intro {
  padding-top: 90px;
  margin-bottom: 90px;
}
.slice .slice-intro .icon {
  margin-bottom: 20px;
}
.slice .small-title {
  text-transform: uppercase;
  font: bold 22px/100% "Mont", sans-serif;
  margin-bottom: 25px;
}
.slice .big-title {
  font: 40px/120% "Mont Bold", sans-serif;
  line-height: 55px;
}
.slice .big-title p {
  font: 40px/120% "Mont Heavy", sans-serif;
  line-height: 55px;
  max-width: 100%;
}
.slice .big-title .bigText {
  font: 70px/100% "Mont Heavy", sans-serif;
}
.slice.grey-bg {
  background: #EFF2F5;
}
.slice .the-content {
  margin-bottom: 40px;
}
.slice .button-container {
  padding-top: 20px;
}

.home-slider {
  position: relative;
}
.home-slider .splide__slide {
  display: flex;
}
.home-slider .splide__slide .image {
  position: relative;
  position: relative;
  width: 45%;
}
.home-slider .splide__slide .image:before {
  content: "";
  display: block;
  padding-top: 60%;
}
.home-slider .splide__slide .image > img,
.home-slider .splide__slide .image > picture {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.home-slider .splide__slide .content {
  width: 55%;
  background: var(--bg-color) url(../image/banner-pixel.svg) no-repeat right bottom;
  padding: 50px 160px;
  display: flex;
  align-items: center;
}
.home-slider .splide__slide .content .the-content {
  margin-bottom: 0;
}
.home-slider .splide__slide .content .the-content p span {
  white-space: nowrap;
}
.home-slider .splide__slide .content h1 {
  font: bold 60px/110% "Mont", sans-serif;
  color: white;
  margin-bottom: 25px;
}
.home-slider .splide__slide .content p {
  color: white;
  font: normal 22px/160% "Mont", sans-serif;
}
.home-slider .splide__pagination {
  position: absolute;
  top: 50%;
  right: 45px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.home-slider .splide__pagination li {
  display: block;
  width: 12px;
  max-width: 12px;
  height: 14px;
  max-height: 14px;
}
.home-slider .splide__pagination li .splide__pagination__page {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: block;
  width: 12px;
  max-width: 12px;
  height: 14px;
  max-height: 14px;
  border: 1px solid white;
  background: transparent;
  transition: all 0.3s ease-in-out;
}
.home-slider .splide__pagination li .splide__pagination__page.is-active {
  background: white;
}

#about-us {
  margin-top: 90px;
}
#about-us:first-child {
  margin-top: 180px;
}
#about-us .wrapper {
  background: #F7F8F8;
  padding: 80px 200px;
}
#about-us .wrapper .the-content h2 {
  display: inline-block;
  max-width: 940px;
}

#servdentist {
  margin-top: 180px;
}
#servdentist .content-top {
  text-align: center;
}
#servdentist .content-top h2 {
  display: inline-block;
  max-width: 640px;
  color: #404A56;
}
#servdentist .content-top h2 sup {
  font-size: 0.5em;
}
#servdentist .cta-container {
  margin-top: 90px;
  display: flex;
  gap: 20px;
}
#servdentist .cta-container .cta-block {
  width: 33%;
  position: relative;
  position: relative;
  cursor: pointer;
}
#servdentist .cta-container .cta-block:before {
  content: "";
  display: block;
  padding-top: 73%;
}
#servdentist .cta-container .cta-block > img,
#servdentist .cta-container .cta-block > picture {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
#servdentist .cta-container .cta-block .content {
  background: var(--bg-color);
  position: absolute;
  z-index: 2;
  padding: 20px;
  text-align: center;
  bottom: 0px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 70px;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}
#servdentist .cta-container .cta-block .content h4 {
  font: bold 25px/100% "Mont", sans-serif;
  color: white;
  transform: translateY(60px);
  transition: all 0.3s ease-in-out;
}
#servdentist .cta-container .cta-block .content h4 sup {
  font-size: 12px;
}
#servdentist .cta-container .cta-block .content p {
  font: normal 22px "Mont", sans-serif;
  margin-top: 15px;
  color: white;
  transform: translateY(200px);
  transition: all 0.3s ease-in-out 0.1s;
}
#servdentist .cta-container .cta-block .content a {
  margin-top: 25px;
  font: bold 14px "Mont", sans-serif;
  text-transform: uppercase;
  border-bottom: 2px solid white;
  color: white;
  transform: translateY(200px);
  transition: all 0.3s ease-in-out 0.2s;
}
#servdentist .cta-container .cta-block:hover .content {
  height: 100%;
}
#servdentist .cta-container .cta-block:hover .content h4,
#servdentist .cta-container .cta-block:hover .content p,
#servdentist .cta-container .cta-block:hover .content a {
  transform: translateY(0px);
}

#jetrouvemondentiste {
  padding-top: 180px;
}
#jetrouvemondentiste .content-bottom {
  margin-top: 90px;
}
#jetrouvemondentiste .content-bottom .the-content {
  margin-bottom: 40px;
}
#jetrouvemondentiste .content-bottom .the-content h2 img {
  display: inline-block;
  vertical-align: middle;
}
#jetrouvemondentiste .content-bottom .col-image .image {
  position: relative;
  z-index: 2;
}
#jetrouvemondentiste .content-bottom .col-image:before {
  content: "";
  background: url(../image/small-pixel-grid.svg) no-repeat center center;
  background-size: contain;
  width: 440px;
  height: 440px;
  position: absolute;
  top: -20%;
  left: -5%;
  transform: rotateZ(180deg);
}
#jetrouvemondentiste .content-bottom .col-image:after {
  content: "";
  background: url(../image/small-pixel-grid.svg) no-repeat center center;
  background-size: contain;
  width: 440px;
  height: 440px;
  position: absolute;
  bottom: -15%;
  right: -5%;
}

#services {
  margin-top: 180px;
  background: #EFF2F5;
  padding: 160px 0;
  overflow: hidden;
}
#services .wrapper:first-child {
  position: relative;
  z-index: 2;
}
#services .service-container {
  margin-top: 90px;
}
#services .service-container .service-block {
  min-height: 315px;
  text-align: center;
  cursor: pointer;
}
#services .service-container .service-block .content {
  text-align: center;
}
#services .service-container .service-block .content h3 {
  color: #404A56;
  text-transform: uppercase;
  font: bold 22px/100% "Mont", sans-serif;
}
#services .service-container .service-block .image {
  width: 100%;
  position: relative;
  margin-bottom: 40px;
  border: 2px solid #86909B;
  transition: all 0.3s ease-in-out 1s;
  display: block;
}
#services .service-container .service-block .image:before {
  content: "";
  display: block;
  padding-top: 100%;
}
#services .service-container .service-block .image > svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  max-width: 80%;
  max-height: 70%;
  transition: all 0.3s ease-in-out;
}
#services .service-container .service-block .image span.square {
  pointer-events: none;
}
#services .service-container .service-block .image span.square:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 0px;
  height: 0px;
  border-right: 0px solid #AA1A47;
  border-bottom: 0px solid #AA1A47;
  transition: width 0.2s ease-out 0.2s, border-bottom 0s ease-in 0.4s, height 0.2s ease-out 0.4s, border-right 0s ease-in 0.6s;
}
#services .service-container .service-block .image span.square:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0px;
  height: 0px;
  border-left: 0px solid #AA1A47;
  border-top: 0px solid #AA1A47;
  transition: width 0.2s ease-out 0.6s, border-top 0s ease-in 0.8s, height 0.2s ease-out 0.8s, border-left 0s ease-in 1s;
}
#services .service-container .service-block:hover .image {
  border: 2px solid transparent;
  transition: all 0.3s ease-in-out;
}
#services .service-container .service-block:hover .image span.square:before {
  width: 100%;
  height: 100%;
  border-right: 2px solid #AA1A47;
  border-bottom: 2px solid #AA1A47;
  transition: border-right 0s ease-in 0.2s, height 0.2s ease-out 0.2s, border-bottom 0s ease-in 0.4s, width 0.2s ease-out 0.4s;
}
#services .service-container .service-block:hover .image span.square:after {
  width: 100%;
  height: 100%;
  border-left: 2px solid #AA1A47;
  border-top: 2px solid #AA1A47;
  transition: border-left 0s ease-in 0.6s, height 0.2s ease-out 0.6s, border-top 0s ease-in 0.8s, width 0.2s ease-out 0.8s;
}

#privacy-page {
  margin-top: 90px;
}
#privacy-page .wrapper {
  background: #F7F8F8;
  padding: 80px 100px;
}

/*- À propos et Flexible fields -*/
.slice.banner {
  padding-bottom: 125px;
}
.slice.banner.has-decoration {
  background: url(../image/banner-pixel-grid.svg) no-repeat left top;
}
.slice.banner .slice-intro {
  position: relative;
  z-index: 3;
}
.slice.banner .col-image .image {
  position: relative;
}
.slice.banner .col-image .image:before {
  content: "";
  display: block;
  padding-top: 65%;
}
.slice.banner .col-image .image.contain {
  position: relative;
}
.slice.banner .col-image .image.contain > img,
.slice.banner .col-image .image.contain > picture {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.slice.banner .col-image .image.cover {
  position: relative;
}
.slice.banner .col-image .image.cover > img,
.slice.banner .col-image .image.cover > picture {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.slice.banner .col-image .image.has-decoration:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #AA1A47;
  position: absolute;
  top: -20px;
  left: -20px;
}
.slice.banner .col-image .image img {
  z-index: 2;
}
.slice.banner.service .col-image {
  /*&.active{
  	div.square-bg{
  		transform: translateX(0px) translateY(-0%);
  		svg{
  			background:transparent;
  		}
  	}
  	&>svg{
  		opacity:1;
  	}
  }*/
}
.slice.banner.service .col-image .image {
  width: 100%;
  max-width: 410px;
  position: relative;
  border: 2px solid #AA1A47;
  margin: 0 auto;
}
.slice.banner.service .col-image .image:before {
  content: "";
  display: block;
  padding-top: 100%;
}
.slice.banner.service .col-image .squared-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  /*transition: all 0.6s ease-out;
  transform: translateX(-1000px) translateY(-180%);*/
}
.slice.banner.service .col-image .squared-img img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  max-width: 75%;
  max-height: 75%;
  width: 100%;
}
.slice.banner.service .col-image .squared-img svg {
  background: #AA1A47;
  max-width: 100%;
  transition: all 0.2s ease-out 0.5s;
}
.slice.banner.service .col-image .squared-img:before {
  content: "";
  background: #E5EAEF;
  position: absolute;
  bottom: calc(100% + 2px);
  right: 0;
  width: 100%;
  height: 1000px;
  transform: skewX(60deg);
  transform-origin: center bottom;
}
.slice.banner.service .col-image .squared-img:after {
  content: "";
  background: #DBE0E5;
  position: absolute;
  top: -3px;
  right: calc(100% + 2px);
  height: 101%;
  width: 1000px;
  transform: skewY(30deg);
  transform-origin: right center;
}
.slice.values {
  padding: 40px 0 125px;
}
.slice.values .values-container {
  display: flex;
  flex-wrap: wrap;
  margin-left: -50px;
  margin-right: -50px;
}
.slice.values .values-container .value-block {
  width: 50%;
  display: flex;
  justify-content: center;
  margin-bottom: 90px;
  padding: 0 50px;
}
.slice.values .values-container .value-block .image {
  position: relative;
  position: relative;
  margin-right: 40px;
  min-width: 130px;
}
.slice.values .values-container .value-block .image:before {
  content: "";
  display: block;
  padding-top: 100%;
}
.slice.values .values-container .value-block .image > img,
.slice.values .values-container .value-block .image > picture {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.slice.values .values-container .value-block .image + .inner {
  width: calc(100% - 33%);
}
.slice.values .values-container .value-block .inner {
  max-width: 400px;
}
.slice.values .values-container .value-block .inner h4 {
  color: #AA1A47;
  font-size: 20px;
}
.slice.values .values-container .value-block .inner .the-content {
  margin-bottom: 0;
}
.slice.values .values-container .value-block:nth-child(3), .slice.values .values-container .value-block:nth-child(4) {
  margin-bottom: 0;
}
.slice.values .button-container {
  margin-top: 90px;
  text-align: center;
}
.slice.team .team-block {
  position: relative;
  margin-bottom: 30px;
}
.slice.team .team-block .image {
  position: relative;
  position: relative;
}
.slice.team .team-block .image:before {
  content: "";
  display: block;
  padding-top: 100%;
}
.slice.team .team-block .image > img,
.slice.team .team-block .image > picture {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.slice.team .team-block .infos {
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 100%;
  text-align: center;
}
.slice.team .team-block .infos * {
  color: white;
  font-size: 20px;
}
.slice.about-cta {
  padding: 180px 0 180px;
}
.slice.about-cta .cta {
  background-color: #AA1A47;
  background-position: 95% center;
  background-size: auto 100%;
  background-repeat: no-repeat;
  padding: 105px;
}
.slice.about-cta .cta .col-text {
  width: 50%;
}
.slice.about-cta .cta .col-text .small-title {
  color: white;
  margin-bottom: 20px;
}
.slice.about-cta .cta .col-text .big-title {
  color: white;
  margin-bottom: 40px;
}
.slice.about-cta .cta .col-text .the-content * {
  color: white;
}
.slice.partner {
  background-color: var(--slice-color);
  padding: 90px 0;
  position: relative;
}
.slice.partner .slice-bg {
  position: relative;
  width: 50%;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
}
.slice.partner .slice-bg > img,
.slice.partner .slice-bg > picture {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.slice.partner .slice-bg img {
  mix-blend-mode: luminosity;
}
.slice.partner .slice-bg:after {
  content: "";
  background: -moz-linear-gradient(left, #739fa9 0%, #739fa9 27%, rgba(115, 159, 169, 0) 100%);
  background: -webkit-linear-gradient(left, #739fa9 0%, #739fa9 27%, rgba(115, 159, 169, 0) 100%);
  background: linear-gradient(to right, #739fa9 0%, #739fa9 27%, rgba(115, 159, 169, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#739fa9", endColorstr="#00739fa9",GradientType=1 );
  position: absolute;
  width: 20%;
  height: 100%;
  left: 0px;
  top: 0;
  z-index: 3;
}
.slice.partner .slice-icon {
  position: absolute;
  width: 200px;
  left: 40px;
  top: 50%;
  transform: translateY(-50%);
}
.slice.partner h3 {
  font: bold 80px/110% "Mont", sans-serif;
  color: white;
  margin-bottom: 20px;
}
.slice.partner .the-content {
  margin-bottom: 0;
}
.slice.partner .the-content * {
  color: white;
}

/*- Flexible content -*/
.slice.form .slice-intro, .slice.form .col-form {
  padding-top: 0;
}
.slice.form .col-card-result {
  padding: 0 !important;
}
.slice.form .col-card-result .card-preview .image {
  position: relative;
  position: relative;
}
.slice.form .col-card-result .card-preview .image:before {
  content: "";
  display: block;
  padding-top: 60%;
}
.slice.form .col-card-result .card-preview .image > img,
.slice.form .col-card-result .card-preview .image > picture {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.slice.form .col-card-result .card-cover-preview {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.slice.form .col-card-result .card-cover-preview .card-cover-title {
  font: bold 1.17em "Mont", sans-serif;
  margin-bottom: 20px;
}
.slice.form .col-card-result .card-cover-preview img {
  max-height: 500px;
  max-width: 500px;
}
.slice.form .col-card-result .message-preview {
  border: 1px solid #404A56;
  width: fit-content;
  display: none;
  justify-content: center;
  align-items: center;
  padding: 5%;
  margin: 0 auto 50px;
}
.slice.form .col-card-result .message-preview .inner {
  max-width: 405px;
}
.slice.form .col-card-result .message-preview .inner .message-title {
  font-weight: bold;
  font-size: 14px;
  width: fit-content;
  margin: 0 auto 25px;
}
.slice.form .col-card-result .message-preview .inner .message-contenu {
  font-size: 14px;
  margin-bottom: 25px;
}
.slice.form .col-card-result .message-preview .inner .message-signature {
  font: normal 22px/140% "sadey-ann", sans-serif;
  margin-bottom: 15px;
}
.slice.form .col-card-result .message-preview .inner .message-logo {
  display: none;
  font: bold 14px/100% "Mont", sans-serif;
}
.slice.content-row .messages {
  width: 85%;
  margin: 0 auto;
}
.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.no-m-bottom {
  margin-bottom: 0px;
}
.slice.content-row.no-m-top {
  margin-top: 0px;
}
.slice.content-row.no-m {
  margin-top: 0px;
  margin-bottom: 0px;
}
.slice.content-row.has-decoration {
  background: url(../image/slice-pixel-bg.svg) repeat left top;
  background-size: contain;
}
.slice.content-row.has-grey-bg {
  background: #EFF2F5;
  overflow: hidden;
}
.slice.content-row.has-grey-bg.big-padding {
  padding: 180px 0;
}
.slice.content-row.has-red-bg {
  background: #AA1A47;
  overflow: hidden;
}
.slice.content-row.columned-content.has-grey-bg {
  padding: 40px 0 125px;
}
.slice.content-row.columned-content .row-break {
  height: 0;
  width: 100%;
  clear: both;
}
.slice.content-row.columned-content .row-block .content-block {
  overflow: hidden;
  display: flex;
  align-items: start;
  margin-bottom: 90px;
}
.slice.content-row.columned-content .row-block .content-block .image {
  position: relative;
  position: relative;
  margin-right: 40px;
  min-width: 130px;
}
.slice.content-row.columned-content .row-block .content-block .image:before {
  content: "";
  display: block;
  padding-top: 100%;
}
.slice.content-row.columned-content .row-block .content-block .image > img,
.slice.content-row.columned-content .row-block .content-block .image > picture {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.slice.content-row.columned-content .row-block .content-block .content {
  width: calc(100% - 33%);
}
.slice.content-row.columned-content .row-block .content-block .content h4 {
  color: #AA1A47;
  font-size: 20px;
}
.slice.content-row.columned-content .row-block .content-block .content .the-content {
  margin-bottom: 0;
}
.slice.content-row.columned-content .row-block .content-block .hidden-link {
  display: none;
}
.slice.content-row.columned-content .column-block {
  justify-content: center;
}
.slice.content-row.columned-content .column-block .content-block {
  width: calc(33% - 27px);
  max-width: 490px;
  border: 2px solid #AA1A47;
  padding: 40px;
  margin: 0 15px 30px;
  transition: all 0.3s ease-in-out 0.9s;
}
.slice.content-row.columned-content .column-block .content-block .image {
  display: block;
  width: 100%;
  margin-bottom: 20px;
  position: relative;
  position: relative;
}
.slice.content-row.columned-content .column-block .content-block .image:before {
  content: "";
  display: block;
  padding-top: 50%;
}
.slice.content-row.columned-content .column-block .content-block .image > img,
.slice.content-row.columned-content .column-block .content-block .image > picture {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.slice.content-row.columned-content .column-block .content-block .image > img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  max-width: 70%;
  max-height: 70%;
  transition: all 0.3s ease-in-out 0.6s;
}
.slice.content-row.columned-content .column-block .content-block .content {
  text-align: center;
}
.slice.content-row.columned-content .column-block .content-block .content h4 {
  color: #AA1A47;
  text-transform: uppercase;
  font: bold 22px/100% "Mont", sans-serif;
  margin-bottom: 25px;
}
.slice.content-row.columned-content .column-block .content-block .content .the-content ul {
  display: inline-block;
  text-align: left;
  margin: 0 auto;
}
.slice.content-row.columned-content .column-block .content-block .content .the-content ul li {
  font-weight: 600;
}
.slice.content-row.columned-content .column-block .content-block span.square {
  display: none;
}
.slice.content-row.columned-content .column-block .content-block.has-link span.square {
  display: inline-block;
  pointer-events: none;
}
.slice.content-row.columned-content .column-block .content-block.has-link span.square:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 0px;
  height: 0px;
  border-right: 0px solid #404A56;
  border-bottom: 0px solid #404A56;
  transition: width 0.2s ease-out 0.2s, border-bottom 0s ease-in 0.4s, height 0.2s ease-out 0.4s, border-right 0s ease-in 0.6s;
}
.slice.content-row.columned-content .column-block .content-block.has-link span.square:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0px;
  height: 0px;
  border-left: 0px solid #404A56;
  border-top: 0px solid #404A56;
  transition: width 0.2s ease-out 0.6s, border-top 0s ease-in 0.8s, height 0.2s ease-out 0.8s, border-left 0s ease-in 1s;
}
.slice.content-row.columned-content .column-block .content-block.has-link:hover {
  transition: all 0.3s ease-in-out;
  border: 2px solid transparent;
}
.slice.content-row.columned-content .column-block .content-block.has-link:hover span.square:before {
  width: 100%;
  height: 100%;
  border-right: 2px solid #404A56;
  border-bottom: 2px solid #404A56;
  transition: border-right 0s ease-in 0.2s, height 0.2s ease-out 0.2s, border-bottom 0s ease-in 0.4s, width 0.2s ease-out 0.4s;
}
.slice.content-row.columned-content .column-block .content-block.has-link:hover span.square:after {
  width: 100%;
  height: 100%;
  border-left: 2px solid #86909B;
  border-top: 2px solid #86909B;
  transition: border-left 0s ease-in 0.6s, height 0.2s ease-out 0.6s, border-top 0s ease-in 0.8s, width 0.2s ease-out 0.8s;
}
.slice.content-row.columned-content .featured-block {
  margin-top: 90px;
  display: flex;
  justify-content: center;
  gap: 20px;
}
.slice.content-row.columned-content .featured-block .cta-block {
  display: block;
  width: calc(50% - 20px);
  position: relative;
  position: relative;
  cursor: pointer;
}
.slice.content-row.columned-content .featured-block .cta-block:before {
  content: "";
  display: block;
  padding-top: 73%;
}
.slice.content-row.columned-content .featured-block .cta-block > img,
.slice.content-row.columned-content .featured-block .cta-block > picture {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.slice.content-row.columned-content .featured-block .cta-block .content {
  background: var(--bg-color);
  position: absolute;
  z-index: 2;
  padding: 20px;
  text-align: center;
  bottom: 0px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 70px;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}
.slice.content-row.columned-content .featured-block .cta-block .content h4 {
  font: bold 25px/100% "Mont", sans-serif;
  color: white;
  transform: translateY(45px);
  transition: all 0.3s ease-in-out;
}
.slice.content-row.columned-content .featured-block .cta-block .content h4 sup {
  font-size: 12px;
}
.slice.content-row.columned-content .featured-block .cta-block .content p {
  font: normal 22px "Mont", sans-serif;
  margin-top: 15px;
  color: white;
  transform: translateY(200px);
  transition: all 0.3s ease-in-out 0.1s;
}
.slice.content-row.columned-content .featured-block .cta-block .content a {
  margin-top: 25px;
  font: bold 14px "Mont", sans-serif;
  text-transform: uppercase;
  border-bottom: 2px solid white;
  color: white;
  transform: translateY(200px);
  transition: all 0.3s ease-in-out 0.2s;
}
.slice.content-row.columned-content .featured-block .cta-block:hover .content {
  height: 100%;
}
.slice.content-row.columned-content .featured-block .cta-block:hover .content h4,
.slice.content-row.columned-content .featured-block .cta-block:hover .content p,
.slice.content-row.columned-content .featured-block .cta-block:hover .content a {
  transform: translateY(0px);
}
.slice.content-row.columned-content .bottom-text-container .the-content {
  margin: 40px auto 40px;
}
.slice.content-row.columned-content .button-container {
  margin-top: 20px;
}
.slice.content-row.half-image-half-content, .slice.content-row.special-block-booth {
  position: relative;
}
.slice.content-row.half-image-half-content .slice-bg, .slice.content-row.special-block-booth .slice-bg {
  position: relative;
  width: 50%;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
}
.slice.content-row.half-image-half-content .slice-bg > img,
.slice.content-row.half-image-half-content .slice-bg > picture, .slice.content-row.special-block-booth .slice-bg > img,
.slice.content-row.special-block-booth .slice-bg > picture {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.slice.content-row.half-image-half-content .slice-bg img, .slice.content-row.special-block-booth .slice-bg img {
  mix-blend-mode: luminosity;
}
.slice.content-row.half-image-half-content .slice-bg:after, .slice.content-row.special-block-booth .slice-bg:after {
  content: "";
  background: -moz-linear-gradient(left, white 0%, white 27%, rgba(255, 255, 255, 0) 100%);
  background: -webkit-linear-gradient(left, white 0%, white 27%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(to right, white 0%, white 27%, rgba(255, 255, 255, 0) 100%);
  position: absolute;
  width: 20%;
  height: 100%;
  left: 0px;
  top: 0;
  z-index: 3;
}
.slice.content-row.half-image-half-content .col-text .slice-intro, .slice.content-row.special-block-booth .col-text .slice-intro {
  padding-top: 0;
  margin-bottom: 40px;
}
.slice.content-row.half-image-half-content .col-text .the-content, .slice.content-row.special-block-booth .col-text .the-content {
  margin-bottom: 25px;
}
.slice.content-row.half-image-half-content .col-text .button-container, .slice.content-row.special-block-booth .col-text .button-container {
  padding-top: 0;
}
.slice.content-row.half-image-half-content .col-text .collapses-container, .slice.content-row.special-block-booth .col-text .collapses-container {
  margin-top: 40px;
  background-color: var(--bg-color);
}
.slice.content-row.half-image-half-content .col-text .collapses-container + .collapses-container, .slice.content-row.special-block-booth .col-text .collapses-container + .collapses-container {
  margin-top: 20px;
}
.slice.content-row.half-image-half-content .col-text .collapses-container .collapse-trigger, .slice.content-row.special-block-booth .col-text .collapses-container .collapse-trigger {
  position: relative;
  color: white;
  text-transform: uppercase;
  font: bold 22px/100% "Mont", sans-serif;
  padding: 25px 85px 25px 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
}
.slice.content-row.half-image-half-content .col-text .collapses-container .collapse-trigger:before, .slice.content-row.special-block-booth .col-text .collapses-container .collapse-trigger:before {
  transform: rotateZ(90deg);
}
.slice.content-row.half-image-half-content .col-text .collapses-container .collapse-trigger:after, .slice.content-row.half-image-half-content .col-text .collapses-container .collapse-trigger:before, .slice.content-row.special-block-booth .col-text .collapses-container .collapse-trigger:after, .slice.content-row.special-block-booth .col-text .collapses-container .collapse-trigger:before {
  content: "";
  width: 30px;
  height: 3px;
  background: white;
  position: absolute;
  right: 55px;
  top: 35px;
  transition: all 0.3s ease-in-out;
  transform-origin: center;
  will-change: transform;
}
.slice.content-row.half-image-half-content .col-text .collapses-container .collapse-trigger.open:before, .slice.content-row.special-block-booth .col-text .collapses-container .collapse-trigger.open:before {
  transform: rotateZ(225deg) !important;
}
.slice.content-row.half-image-half-content .col-text .collapses-container .collapse-trigger.open:after, .slice.content-row.special-block-booth .col-text .collapses-container .collapse-trigger.open:after {
  transform: rotateZ(135deg) !important;
}
.slice.content-row.half-image-half-content .col-text .collapses-container .collapse-trigger:hover:before, .slice.content-row.special-block-booth .col-text .collapses-container .collapse-trigger:hover:before {
  transform: rotateZ(0deg);
}
.slice.content-row.half-image-half-content .col-text .collapses-container .collapse-trigger:hover:after, .slice.content-row.special-block-booth .col-text .collapses-container .collapse-trigger:hover:after {
  transform: rotateZ(-90deg);
}
.slice.content-row.half-image-half-content .col-text .collapses-container .collapse-content, .slice.content-row.special-block-booth .col-text .collapses-container .collapse-content {
  display: none;
  padding: 25px 40px;
}
.slice.content-row.half-image-half-content .col-text .collapses-container .collapse-content .the-content *, .slice.content-row.special-block-booth .col-text .collapses-container .collapse-content .the-content * {
  color: white;
}
.slice.content-row.half-image-half-content .col-text .collapses-container .collapse-content .the-content ul li:before, .slice.content-row.special-block-booth .col-text .collapses-container .collapse-content .the-content ul li:before {
  background: white;
}
.slice.content-row.half-image-half-content .col-image .image, .slice.content-row.special-block-booth .col-image .image {
  display: block;
  position: relative;
  /*@include background_image(cover);*/
}
.slice.content-row.half-image-half-content .col-image .image:before, .slice.content-row.special-block-booth .col-image .image:before {
  content: "";
  display: block;
  padding-top: 65%;
}
.slice.content-row.half-image-half-content .col-image .image.contain, .slice.content-row.special-block-booth .col-image .image.contain {
  position: relative;
}
.slice.content-row.half-image-half-content .col-image .image.contain > img,
.slice.content-row.half-image-half-content .col-image .image.contain > picture, .slice.content-row.special-block-booth .col-image .image.contain > img,
.slice.content-row.special-block-booth .col-image .image.contain > picture {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.slice.content-row.half-image-half-content .col-image .image.cover, .slice.content-row.special-block-booth .col-image .image.cover {
  position: relative;
}
.slice.content-row.half-image-half-content .col-image .image.cover > img,
.slice.content-row.half-image-half-content .col-image .image.cover > picture, .slice.content-row.special-block-booth .col-image .image.cover > img,
.slice.content-row.special-block-booth .col-image .image.cover > picture {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.slice.content-row.half-image-half-content .col-image .image.squared-img, .slice.content-row.special-block-booth .col-image .image.squared-img {
  /*border:2px solid $dark-red;*/
  position: relative;
}
.slice.content-row.half-image-half-content .col-image .image.squared-img:before, .slice.content-row.special-block-booth .col-image .image.squared-img:before {
  content: "";
  display: block;
  padding-top: 100%;
}
.slice.content-row.half-image-half-content .col-image .image.squared-img .img-trail, .slice.content-row.special-block-booth .col-image .image.squared-img .img-trail {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.slice.content-row.half-image-half-content .col-image .image.squared-img .img-trail:before, .slice.content-row.special-block-booth .col-image .image.squared-img .img-trail:before {
  content: "";
  background: #E5EAEF;
  position: absolute;
  bottom: 100%;
  right: 0;
  width: 100%;
  height: 1000px;
  transform: skewX(-60deg);
  transform-origin: center bottom;
}
.slice.content-row.half-image-half-content .col-image .image.squared-img .img-trail:after, .slice.content-row.special-block-booth .col-image .image.squared-img .img-trail:after {
  content: "";
  background: #DBE0E5;
  position: absolute;
  top: 0;
  left: 100%;
  right: auto;
  height: 100%;
  width: 1000px;
  transform: skewY(-30deg);
  transform-origin: left center;
}
.slice.content-row.half-image-half-content .col-image .image .img-icon, .slice.content-row.special-block-booth .col-image .image .img-icon {
  position: absolute;
  top: 0;
  transform: translateY(-50%) translateX(-50%);
  left: auto;
}
.slice.content-row.half-image-half-content .col-image .image img.hide-on-active, .slice.content-row.special-block-booth .col-image .image img.hide-on-active {
  opacity: 1;
  transition: all 0.5s ease-in-out 0.5s;
}
.slice.content-row.half-image-half-content .col-image .image img.show-on-active, .slice.content-row.special-block-booth .col-image .image img.show-on-active {
  opacity: 0;
  transition: all 0.5s ease-in-out 0.5s;
}
.slice.content-row.half-image-half-content .col-image .image.active .show-on-active, .slice.content-row.special-block-booth .col-image .image.active .show-on-active {
  opacity: 1;
}
.slice.content-row.half-image-half-content .col-image .image.active .hide-on-active, .slice.content-row.special-block-booth .col-image .image.active .hide-on-active {
  opacity: 0;
}
.slice.content-row.half-image-half-content .col-image .play-icon, .slice.content-row.special-block-booth .col-image .play-icon {
  display: inline-block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
}
.slice.content-row.half-image-half-content .img-left .col-text, .slice.content-row.special-block-booth .img-left .col-text {
  order: 2;
}
.slice.content-row.half-image-half-content .img-left .col-image, .slice.content-row.special-block-booth .img-left .col-image {
  order: 1;
}
.slice.content-row.half-image-half-content .img-left .col-image.col-lg-5, .slice.content-row.special-block-booth .img-left .col-image.col-lg-5 {
  margin-left: 0px !important;
  margin-right: 8.333%;
}
.slice.content-row.half-image-half-content .img-left .col-image .image.squared-img, .slice.content-row.special-block-booth .img-left .col-image .image.squared-img {
  /*border:2px solid $dark-red;*/
  position: relative;
}
.slice.content-row.half-image-half-content .img-left .col-image .image.squared-img:before, .slice.content-row.special-block-booth .img-left .col-image .image.squared-img:before {
  content: "";
  display: block;
  padding-top: 100%;
}
.slice.content-row.half-image-half-content .img-left .col-image .image.squared-img .img-trail:before, .slice.content-row.special-block-booth .img-left .col-image .image.squared-img .img-trail:before {
  transform: skewX(60deg);
}
.slice.content-row.half-image-half-content .img-left .col-image .image.squared-img .img-trail:after, .slice.content-row.special-block-booth .img-left .col-image .image.squared-img .img-trail:after {
  right: 100%;
  left: auto;
  transform: skewY(30deg);
  transform-origin: right center;
}
.slice.content-row.half-image-half-content .img-left .col-image .img-icon, .slice.content-row.special-block-booth .img-left .col-image .img-icon {
  transform: translateY(-50%) translateX(50%);
  right: 0;
  left: auto;
}
.slice.content-row.half-image-half-content.has-red-bg .col-text .big-title,
.slice.content-row.half-image-half-content.has-red-bg .col-text .small-title,
.slice.content-row.half-image-half-content.has-red-bg .col-text .the-content *, .slice.content-row.special-block-booth.has-red-bg .col-text .big-title,
.slice.content-row.special-block-booth.has-red-bg .col-text .small-title,
.slice.content-row.special-block-booth.has-red-bg .col-text .the-content * {
  color: white;
}
.slice.content-row.title-with-icon {
  background: url(../image/bg-quote.svg) no-repeat center center;
}
.slice.content-row.title-with-icon .wrapper {
  text-align: center;
}
.slice.content-row.title-with-icon .wrapper h2 {
  font: bold 60px/120% "Mont", sans-serif;
  margin-top: 25px;
  color: #404A56;
}
.slice.content-row.title-with-icon .wrapper h2 strong {
  color: #AA1A47;
}
.slice.content-row.video-grid .wrapper > .the-content {
  margin: 40px auto;
}
.slice.content-row.video-grid .video-block {
  margin-bottom: 30px;
}
.slice.content-row.video-grid .video-block .image {
  position: relative;
  position: relative;
}
.slice.content-row.video-grid .video-block .image:before {
  content: "";
  display: block;
  padding-top: 65%;
}
.slice.content-row.video-grid .video-block .image > img,
.slice.content-row.video-grid .video-block .image > picture {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.slice.content-row.video-grid .video-block .play-icon {
  display: inline-block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
}
.slice.content-row.stats-block {
  background: #EFF2F5;
  overflow: hidden;
  margin: 0;
  padding-top: 250px;
  position: relative;
}
.slice.content-row.stats-block .bg-title {
  font: bold 175px/100% "Mont", sans-serif;
  position: absolute;
  top: 140px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  color: #404A56;
  opacity: 0.05;
}
.slice.content-row.stats-block .block .circle {
  padding: 10px;
  position: relative;
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.slice.content-row.stats-block .block .circle:before {
  content: "";
  display: block;
  padding-top: 100%;
}
.slice.content-row.stats-block .block .circle > span {
  position: relative;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  z-index: 2;
  transform: translateX(-50%) translateY(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
}
.slice.content-row.stats-block .block .circle > span:before {
  content: "";
  display: block;
  padding-top: 100%;
}
.slice.content-row.stats-block .block .circle > span.color-draw {
  z-index: 3;
}
.slice.content-row.stats-block .block .circle h4 {
  color: #AA1A47;
  font: bold 100px/80% "Mont", sans-serif;
  margin-top: -20px;
}
.slice.content-row.stats-block .block .circle h4 sup {
  font-size: 40px;
}
.slice.content-row.half-image-half-steps {
  position: relative;
}
.slice.content-row.half-image-half-steps .col-text h4 {
  font: bold 22px/100% "Mont", sans-serif;
  color: #404A56;
  text-transform: uppercase;
  margin-bottom: 40px;
}
.slice.content-row.half-image-half-steps .col-text .steps-container .step {
  display: flex;
  border-bottom: 1px solid rgba(64, 74, 86, 0.3);
}
.slice.content-row.half-image-half-steps .col-text .steps-container .step:last-child {
  border-bottom: 0px solid rgba(64, 74, 86, 0.3);
}
.slice.content-row.half-image-half-steps .col-text .steps-container .step .number {
  font: bold 60px/100% "Mont", sans-serif;
  color: #AA1A47;
  width: 60px;
  padding: 40px 0;
  align-items: center;
}
.slice.content-row.half-image-half-steps .col-text .steps-container .step .content {
  width: calc(100% - 60px);
  padding: 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.slice.content-row.half-image-half-steps .col-text .steps-container .step .content > * {
  width: 100%;
}
.slice.contact-form {
  padding-bottom: 125px;
  background: url(../image/bg-form-contact.svg) no-repeat center top;
  background-size: cover;
}
.slice.map-container {
  position: relative;
  min-height: 750px;
}
.slice.map-container .wrapper {
  min-height: 750px;
  display: flex;
  justify-content: start;
  align-items: center;
  pointer-events: none;
}
.slice.map-container .wrapper .text-container {
  width: 50%;
  max-width: 500px;
  background: white;
  padding: 75px;
  -webkit-box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.2);
  pointer-events: all;
}
.slice.map-container .wrapper .text-container h4 {
  display: flex;
  align-items: center;
  justify-content: start;
  margin-bottom: 10px;
  text-transform: uppercase;
  font-size: 18px;
}
.slice.map-container .wrapper .text-container h4 svg {
  margin-right: 10px;
}
.slice.map-container .wrapper .text-container .the-content:last-child {
  margin-bottom: 0;
}
.slice.map-container .google-map {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.slice.map-container .text-container {
  z-index: 5;
  background: white;
  -webkit-box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.1);
  padding: 90px 75px;
  pointer-events: all;
  width: calc(100% - 40px);
  max-width: 500px;
}
.slice.map-container .text-container p {
  margin-bottom: 40px;
}
.slice.map-container .text-container p:last-child {
  margin-bottom: 0;
}
.slice.tech-support {
  background: #AA1A47 url(../image/bg-gears.svg) no-repeat -10% 175%;
  overflow: hidden;
  padding: 125px 0;
}
.slice.tech-support .col-text .slice-intro {
  padding-top: 0;
  margin-bottom: 40px;
}
.slice.tech-support .col-text .big-title,
.slice.tech-support .col-text .small-title,
.slice.tech-support .col-text .the-content * {
  color: white;
}
.slice.tech-support .col-form h3 {
  color: white;
}
.slice.tech-support .col-form .gform_page_footer.top_label {
  margin-top: 20px;
}
.slice.tech-support .col-form form .gform_footer {
  text-align: left;
}
.slice.tech-support .col-form label,
.slice.tech-support .col-form .gfield_label {
  color: white;
}
.slice.tech-support .col-form form .gform_body .gform_fields .gfield .ginput_container.ginput_container_fileupload span.gform_fileupload_rules {
  color: white;
}
.slice.tech-support .col-form form .gform_body .gform_fields .gfield .gfield_description {
  color: white;
  margin-bottom: 20px;
}
.slice.tech-support .col-form form .gform_body .gform_fields .gfield.gfield_error .validation_message {
  padding: 5px !important;
  border: 1px solid red;
}
.slice.tech-support .col-form form .gform_body .gform_fields .gfield .ginput_container.ginput_container_checkbox .gfield_checkbox .gchoice label:before {
  border: 2px solid white;
}
.slice.tech-support .col-form form .gform_body .gform_fields .gfield .ginput_container.ginput_container_checkbox .gfield_checkbox .gchoice label:after {
  background-image: url("../image/forms/check-white.svg");
}
.slice.tech-support .col-form form .gform_body .gform_fields .gfield .ginput_container.ginput_container_fileupload span.gform_fileupload_rules {
  color: white;
}
.slice.tech-support .col-form form .gform_body .gform_fields .gfield .ginput_container.ginput_container_fileupload input[type=file] {
  border: 2px solid white;
  color: white;
}
.slice.tech-support .col-form .gf_progressbar_title {
  font: bold 18px "Open Sans", sans-serif;
  color: white;
  margin-bottom: 20px;
}
.slice.tech-support .col-form .gf_progressbar {
  display: none;
}
.slice.tech-support .col-form .business_hours_list_item {
  color: white;
}
.slice.tech-support .col-form .button {
  color: #AA1A47;
}
.slice.tech-support .col-form .button:hover {
  color: white;
}

.page-transition {
  position: fixed;
  top: 50%;
  left: 50%;
  height: 130%;
  width: 130%;
  z-index: 999;
  transform-origin: center center;
  transform: translateX(-50%) translateY(-50%);
  transition: all 0.3s ease-in-out 0.5s;
  display: flex;
  justify-content: start;
  align-items: start;
  flex-wrap: wrap;
  gap: 0;
}
.page-transition .transition-square {
  width: calc(100% / 10);
  position: relative;
  overflow: hidden;
  transform-origin: center center;
  background-color: #AA1A47;
}
.page-transition .transition-square:after {
  content: "";
  padding-top: 100%;
  width: 100%;
  display: block;
}
.page-transition .transition-logo {
  background: url(https://infosignmedia.agencerubik.dev/wp-content/uploads/2022/05/infosignmedia-logo.svg) no-repeat center center;
  background-size: 70% auto;
  position: fixed;
  width: 550px;
  height: 550px;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  opacity: 1;
  pointer-events: none;
  transition: all 0.3s ease-in-out 0.8s;
  z-index: 999999;
}
.page-transition.out {
  pointer-events: none;
}
.page-transition.out .transition-logo {
  opacity: 0;
  transition: all 0.3s ease-in-out 0.2s;
}

.centered-text .the-content {
  margin: auto;
}

.game-infos .big-title p, .game-notice .big-title p {
  font: 50px/100% "Mont Heavy", sans-serif;
}
.game-infos p, .game-notice p {
  max-width: 873px;
  font-size: 18px;
  margin: 0 auto;
  text-align: center;
}
.game-infos p strong, .game-notice p strong {
  font: 18px/100% "Mont Bold", sans-serif !important;
}
.game-infos p.disclaimer, .game-notice p.disclaimer {
  margin-top: 30px;
  font-size: 14px;
}
.game-infos table, .game-infos th, .game-infos td, .game-notice table, .game-notice th, .game-notice td {
  border: 2px solid white;
  border-collapse: collapse;
  padding: 20px;
}
.game-infos table, .game-notice table {
  width: calc(100% - 80px);
  margin: 45px auto 0;
}
.game-infos table .table-title, .game-notice table .table-title {
  text-transform: uppercase;
  font: 25px/100% "Mont Bold", sans-serif;
}
.game-infos table td, .game-notice table td {
  text-align: center;
}
.game-infos table td h3, .game-infos table td p, .game-notice table td h3, .game-notice table td p {
  display: inline;
}
.game-infos table td h3, .game-notice table td h3 {
  font: 40px/100% "Mont Bold", sans-serif;
  margin-right: 40px;
}
.game-infos table td p, .game-notice table td p {
  font: 25px/100% "Mont", sans-serif;
}
.game-infos table td.sold-out, .game-notice table td.sold-out {
  background: #404A56;
}

.game .game-content {
  gap: 25px;
  max-width: 1149px;
  padding: 90px 0 180px;
}
.game .card-holder {
  max-height: 169px;
}
.winner, .loser {
  text-align: center;
}
.winner .big-title, .loser .big-title {
  font: 50px/100% "Mont Heavy", sans-serif;
}
.winner > p:last-of-type, .loser > p:last-of-type {
  margin-bottom: 50px;
  font: 14px/100% "Mont", sans-serif;
}
.winner .prize-container, .loser .prize-container {
  border: 3px solid #FFA2B8;
  width: fit-content;
  padding: 30px;
  margin: 40px 0 55px;
  font: 30px/100% "Mont", sans-serif;
  line-height: 41px;
}
.winner .prize-container p, .loser .prize-container p {
  display: inline;
}
.winner .prize-container p strong, .loser .prize-container p strong {
  font-family: "Mont Bold", sans-serif;
}

#prize {
  max-width: 1000px;
  margin-bottom: 100px;
}

.confirmation {
  padding: 100px 0 175px;
  margin: 0 auto;
  max-width: 700px;
  text-align: center;
}
.confirmation .big-title {
  margin-bottom: 25px;
}
.confirmation p {
  font-size: 18px;
}

.wrapper.mobile, .game-notice {
  display: none;
}

.language-switcher {
  margin-bottom: 50px;
}
.language-switcher li {
  list-style: none;
}
.language-switcher li a {
  font-size: 15px;
  margin-bottom: 50px;
  border: 2px solid #CB4061;
  padding: 0 10px;
  border-radius: 35px;
  transition: all 0.3s ease-in-out;
}
.language-switcher li a:hover {
  border-color: white;
}

header {
  position: relative;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  z-index: 99;
  transition: all 0.3s ease-in-out;
  background: #404A56;
  display: flex;
  flex-direction: column;
  color: white;
}
header span.red {
  color: #CB4061;
}
header #snow {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
header .header-content {
  display: flex;
  justify-content: space-between;
  padding: 0 130px;
  height: 100%;
}
header .header-content .message-noel {
  padding-right: 60px;
}
header .header-content .message-noel .big-title {
  font: 200px/100% "Mont Heavy", sans-serif;
  line-height: 85% !important;
}
header .header-content .message-noel .wishes {
  font: 32px/100% "Mont Bold", sans-serif;
  line-height: 38px;
}
header .header-content .santa {
  display: flex;
  align-items: end;
  width: 30vw;
  z-index: -2;
}
header .header-content .santa img, header .header-content .santa svg {
  width: auto;
}
header .header-content .header-infos .logo img {
  max-height: 100%;
}
header .header-content .header-infos .small-title {
  font: 32px/100% "Mont Heavy", sans-serif;
  text-align: right;
  padding: 60px 0 30px;
  line-height: 38px;
}
header .header-content .header-infos p {
  max-width: 430px;
  text-align: right;
}
header .header-content .header-infos .button {
  margin-top: 50px;
  border-radius: 34px;
  background: #CB4061;
}
header .header-content .header-infos .button span {
  font: 20px/100% "Mont Bold", sans-serif;
  text-transform: none;
}
header .header-content .header-infos .button:hover {
  background: #00C989;
}

.decorations g.cls-211 > g:not(#Guilande) {
  animation-fill-mode: both;
  animation-iteration-count: infinite;
  animation-name: flash-1;
}
.decorations g.cls-211 > g:not(#Guilande):nth-child(odd) {
  animation-duration: 1.8s;
}
.decorations g.cls-211 > g:not(#Guilande):nth-child(3n+1) {
  animation-duration: 1.4s;
}

.header-content.mobile {
  display: none;
}

footer {
  position: relative;
  padding: 30px 0;
  background: #002E2D;
  color: white;
}
footer #copyrights {
  margin: 0 70px;
  text-align: center;
}
footer #copyrights #rubik-api-copyright a {
  line-height: 33px;
}

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

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

.gform_confirmation_wrapper {
  display: block;
  text-align: center;
  margin: 0px auto 30px !important;
}
.gform_confirmation_wrapper .gform_confirmation_message {
  display: block;
  text-align: center;
  font: 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 #404A56;
  border-radius: 0;
  padding: 15px !important;
  font: 400 18px/20px sans-serif !important;
  color: black;
  background: white url(../image/arrow-dropdown.svg) no-repeat 98% center;
  cursor: pointer;
}
select::placeholder {
  color: grey !important;
  opacity: 1 !important;
}

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

@media screen and (max-width: 1450px) {
  header .header-container .col-content {
    padding: 24px 60px;
  }
  header .header-container .col-content .header-content {
    margin-top: 15px;
  }
  header .header-container .col-content .header-content h1 {
    margin-bottom: 24px;
  }
  header .header-container .col-content .header-content .banniere-etapes {
    margin: 20px 0;
  }

  .home-slider .splide__slide .content {
    padding: 50px 60px;
  }

  .slice.banner .cartes-reg, .slice.banner .cartes-den {
    margin: 0;
  }
  .slice.content-row.stats-block {
    padding-top: 190px;
  }
  .slice.content-row.stats-block .bg-title {
    font-size: 110px;
    top: 90px;
  }
  .slice.partner h3 {
    font-size: 60px;
  }
  .slice.partner .slice-icon {
    left: 0;
  }

  footer .col-phone p {
    font-size: 16px;
  }
  footer .col-menu nav ul li a {
    font: normal 16px/100% "Mont", sans-serif;
  }
  footer .col-social a {
    margin-left: 10px;
  }
}
@media screen and (max-width: 1366px) {
  #header .wrapper > nav {
    display: none;
  }
  #header .mobile-nav-trigger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 45px;
    height: 22px;
    pointer-events: all;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  #header .mobile-nav-trigger span {
    width: 45px;
    height: 4px;
    display: block;
    background: white;
    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;
  }
  #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: white;
    transition: all 0.3s ease-in-out;
  }
  #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.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;
  }

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

  #mobile-nav {
    position: fixed;
    z-index: 10;
    top: 0px;
    right: 0;
    width: 100%;
    max-width: 350px;
    height: 100vh;
    overflow-x: scroll;
    padding-top: 140px;
    background: #AA1A47;
    display: flex;
    justify-content: center;
    align-items: start;
    pointer-events: none;
    transition: all 0.3s ease-in-out;
    transform: translateX(100%);
    -webkit-box-shadow: 0 15px 10px 10px rgba(0, 0, 0, 0.2);
    box-shadow: 0 15px 10px 10px rgba(0, 0, 0, 0.2);
    opacity: 0;
  }
  #mobile-nav > ul {
    width: calc(100% - 40px);
    text-align: left;
  }
  #mobile-nav > ul li {
    margin-bottom: 20px;
  }
  #mobile-nav > ul li a {
    display: inline-block;
    position: relative;
    color: white;
    font: bold 18px "Mont", sans-serif;
    padding: 5px 0px;
    transition: all 0.3s ease-in-out;
  }
  #mobile-nav > ul li a:hover {
    color: #739FA9;
  }
  #mobile-nav > ul li.socials-container {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 17px;
  }
  #mobile-nav > ul li.socials-container p {
    padding: 5px 0px;
    color: white;
    font: bold 18px "Mont", sans-serif;
  }
  #mobile-nav > ul li.socials-container a {
    padding: 0 10px 0 0px;
  }
  #mobile-nav > ul li.socials-container a svg {
    width: 30px;
  }
  #mobile-nav > ul li.socials-container a svg path {
    fill: white;
    transition: all 0.3s ease-in-out;
  }
  #mobile-nav > ul li.socials-container a:hover svg {
    max-width: 100%;
  }
  #mobile-nav > ul li.socials-container a:hover svg path {
    fill: #739FA9;
  }
  #mobile-nav > ul li.menu-item-has-children {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
  }
  #mobile-nav > ul li.menu-item-has-children .arrow {
    content: "";
    width: 20px;
    height: 20px;
    background: url("../image/icon-arrow-dd_white.svg") no-repeat center center;
    background-size: contain;
    flex: 0 0 auto;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  #mobile-nav > ul li.menu-item-has-children .arrow.open {
    transform: rotateZ(180deg);
  }
  #mobile-nav > ul li.menu-item-has-children .sub-menu {
    display: none;
    width: 100%;
    padding-left: 20px;
    padding-bottom: 10px;
  }
  #mobile-nav > ul li.menu-item-has-children .sub-menu li {
    margin-bottom: 10px;
  }
  #mobile-nav > ul li.menu-item-has-children .sub-menu li a {
    font-size: 17px;
    font-weight: normal;
  }
  #mobile-nav.active {
    transform: translateX(0);
    pointer-events: all;
    opacity: 1;
  }
}
@media screen and (max-width: 1280px) {
  .button {
    font-size: 16px;
  }

  .wrapper {
    width: calc(100% - 80px);
  }

  h2 {
    font-size: 30px;
    margin-bottom: 40px;
  }

  .the-content h3 {
    font-size: 25px;
  }
  .the-content p,
.the-content li {
    font-size: 16px;
  }

  .home-slider .splide__slide .content h1 {
    font-size: 45px;
  }
  .home-slider .splide__slide .content p {
    font-size: 18px;
  }

  #servdentist,
#services {
    margin-top: 90px;
  }
  #servdentist .service-container .service-block .content h3,
#services .service-container .service-block .content h3 {
    font-size: 18px;
  }

  #services {
    padding: 90px 0;
  }

  .slice .small-title {
    font-size: 20px;
  }
  .slice .big-title {
    font-size: 35px;
  }
  .slice.banner .slice-intro .big-title {
    font-size: 50px;
    max-width: 75%;
    margin: 0 auto 40px;
  }
  .slice.contact-form .big-title {
    font-size: 40px;
  }

  /*- Flexible content -*/
  .slice.content-row {
    padding: 90px 0;
    margin: 90px 0;
  }
  .slice.content-row.has-grey-bg.big-padding {
    padding: 125px 0;
  }
  .slice.content-row.half-image-half-content .col-image .image .img-icon, .slice.content-row.special-block-booth .col-image .image .img-icon {
    width: 100px;
  }
  .slice.content-row.half-image-half-content .col-image .image .img-icon svg, .slice.content-row.special-block-booth .col-image .image .img-icon svg {
    max-width: 100%;
  }
  .slice.content-row.half-image-half-content .col-image .play-icon, .slice.content-row.special-block-booth .col-image .play-icon {
    width: 100px;
  }
  .slice.content-row.half-image-half-content .col-image .play-icon svg, .slice.content-row.special-block-booth .col-image .play-icon svg {
    max-width: 100%;
  }
  .slice.content-row.half-image-half-steps .col-text .steps-container .step .number {
    width: 30px;
  }
  .slice.content-row.half-image-half-steps .col-text .steps-container .step .content {
    width: calc( 100% - 30px);
  }
  .slice.content-row.columned-content .column-block .content-block .content h4 {
    font-size: 20px;
  }
  .slice.content-row.title-with-icon .wrapper h2 {
    font: bold 50px/120% "Mont", sans-serif;
  }

  footer .col-social a {
    width: 35px;
    display: inline-block;
  }
  footer .col-social a svg {
    max-width: 100%;
  }
}
@media screen and (max-width: 1199px) {
  #footer .col-logo {
    margin-bottom: 40px;
  }
  #footer .col-phone {
    text-align: right;
    margin-bottom: 40px;
  }
  #footer .col-menu {
    justify-content: start;
  }
  #footer .col-menu.col-services {
    justify-content: end;
  }
  #footer .col-menu nav {
    max-width: 100%;
  }

  .slice .slice-intro {
    padding-top: 60px;
    margin-bottom: 60px;
  }

  body {
    font: 16px/20px "Mont", sans-serif;
  }

  header .decorations {
    height: 100px;
  }
  header .header-content {
    padding: 0 50px;
    position: relative;
    height: calc(100vh - 100px);
  }
  header .header-content .message-noel {
    padding: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  header .header-content .message-noel .big-title {
    max-width: 200px;
    font-size: 150px !important;
  }
  header .header-content .message-noel .wishes {
    font: 24px/100% "Mont Bold", sans-serif;
  }
  header .header-content .santa {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
  }
  header .header-content .header-infos {
    z-index: 1;
    justify-content: center;
  }
  header .header-content .header-infos .small-title {
    padding: 30px 0 15px;
  }
  header .header-content .header-infos p {
    max-width: 320px;
  }
  header .header-content .header-infos .button {
    margin-top: 25px;
  }

  h1.big-title {
    font-size: 48px !important;
    line-height: 50px !important;
  }

  .slice.about-cta .cta {
    background-position: 100% center;
  }

  .game-infos .big-title {
    font: 35px/100% "Mont Bold", sans-serif;
  }
  .game-infos .big-title span.bigText {
    display: block;
    font: 50px/100% "Mont Heavy", sans-serif;
  }
  .game-infos > p {
    line-height: 25px;
  }
  .game-infos table tbody tr td h3 {
    margin: 0;
  }
  .game-infos table tbody tr td p {
    display: block;
  }

  .game-notice .big-title {
    margin-bottom: 20px;
  }

  .game .game-content {
    gap: 10px;
    padding-bottom: 50px;
  }
  .game .game-content .card-holder {
    max-height: 116px;
    max-width: 116px;
  }

  .loser .big-title {
    font: 35px/100% "Mont Heavy", sans-serif;
  }
  .loser .prize-container p {
    font: 24px/100% "Mont", sans-serif;
    line-height: 30px;
  }
  .loser .prize-container p, .loser .prize-container p strong {
    display: block;
  }

  .winner .big-title {
    font: 35px/100% "Mont Heavy", sans-serif;
  }
  .winner .prize-container {
    max-width: 75vw;
  }
  .winner .prize-container p {
    font: 24px/100% "Mont", sans-serif;
    line-height: 30px;
  }
  .winner .prize-container p, .winner .prize-container p strong {
    display: inline;
  }

  .confirmation p {
    line-height: 25px;
  }
}
@media screen and (max-width: 1080px) {
  header .header-content .santa {
    width: 50vw;
  }

  .slice.content-row {
    padding: 0 !important;
    margin: 0 !important;
  }

  .row.gutter-180, form .gform_body .gutter-180.gform_fields, form .gform_body .gform_fields .gfield .gutter-180.ginput_container.ginput_container_address {
    margin-left: -50px;
    margin-right: -50px;
  }
  .row.gutter-180 > div[class*=col-], form .gform_body .gutter-180.gform_fields > div[class*=col-], form .gform_body .gform_fields .gfield .gutter-180.ginput_container.ginput_container_address > div[class*=col-] {
    padding-left: 50px;
    padding-right: 50px;
  }

  #about-us {
    margin-top: 40px;
  }
  #about-us .wrapper {
    background: #F7F8F8;
    padding: 80px 100px;
  }

  #servdentist .cta-container .cta-block .content {
    height: 60px;
  }
  #servdentist .cta-container .cta-block .content h4 {
    font-size: 22px;
    transform: translateY(52px);
  }
  #servdentist .cta-container .cta-block .content p {
    font-size: 18px;
  }

  #contact {
    padding-bottom: 90px;
  }

  #footer {
    margin-top: 100px;
  }
  #footer #copyrights {
    margin: 0 20px;
  }
  #footer #copyrights div:not(#rubik-api-copyright) {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }
  #footer .col-12, #footer form .gform_body .gform_fields .gfield.gfield--width-third, form .gform_body .gform_fields #footer .gfield.gfield--width-third, #footer form .gform_body .gform_fields .gfield.gfield--width-half, form .gform_body .gform_fields #footer .gfield.gfield--width-half, #footer form .gform_body .gform_fields .gfield.gfield--width-full, form .gform_body .gform_fields #footer .gfield.gfield--width-full, #footer form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_full, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address #footer .ginput_full, #footer form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_left, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address #footer .ginput_left, #footer form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_right, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address #footer .ginput_right {
    margin-bottom: 40px;
  }
  #footer .col-12.col-phone, #footer form .gform_body .gform_fields .col-phone.gfield.gfield--width-third, form .gform_body .gform_fields #footer .col-phone.gfield.gfield--width-third, #footer form .gform_body .gform_fields .col-phone.gfield.gfield--width-half, form .gform_body .gform_fields #footer .col-phone.gfield.gfield--width-half, #footer form .gform_body .gform_fields .col-phone.gfield.gfield--width-full, form .gform_body .gform_fields #footer .col-phone.gfield.gfield--width-full, #footer form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .col-phone.ginput_full, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address #footer .col-phone.ginput_full, #footer form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .col-phone.ginput_left, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address #footer .col-phone.ginput_left, #footer form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .col-phone.ginput_right, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address #footer .col-phone.ginput_right {
    text-align: right;
  }

  .slice .big-title br {
    display: none;
  }
  .slice.banner.service .slice-intro {
    margin-bottom: 140px;
  }
  .slice.team .team-block .infos {
    padding: 0 5px;
  }
  .slice.team .team-block .infos * {
    font-size: 15px;
  }
  .slice.about-cta .cta {
    padding: 60px;
    background-size: 35% auto;
  }
  .slice.tech-support .col-text .slice-intro {
    margin-bottom: 40px;
  }
  .slice.content-row.columned-content .column-block .content-block {
    width: calc(50% - 30px);
  }
  .slice.content-row.stats-block .bg-title {
    font-size: 90px;
    top: 90px;
  }
  .slice.content-row.stats-block .block .circle h4 {
    font-size: 70px;
  }
  .slice.content-row.title-with-icon .wrapper h2 {
    font: bold 40px/120% "Mont", sans-serif;
  }
}
@media screen and (max-width: 991px) {
  .page-transition .transition-square {
    width: calc(100% / 8);
  }

  .button {
    font-size: 15px !important;
  }

  .home-slider .splide__slide .content h1 {
    font-size: 35px;
  }
  .home-slider .splide__pagination {
    right: 20px;
  }

  #about-us .wrapper {
    padding: 60px;
  }

  #servdentist .cta-container {
    flex-wrap: wrap;
    justify-content: center;
  }
  #servdentist .cta-container .cta-block {
    width: calc(50% - 10px);
  }

  #jetrouvemondentiste {
    padding-top: 50px;
  }
  #jetrouvemondentiste .content-bottom .col-image {
    margin-bottom: 40px;
  }

  #services .service-container .service-block {
    margin-bottom: 40px;
  }
  #services .service-container .service-block .image {
    float: none !important;
    margin: 0 auto 20px;
  }
  #services .service-container .service-block .content {
    padding: 0px !important;
    width: 90%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }

  form .gform_body .gform_fields .gfield .gfield_label {
    font: normal 16px/18px sans-serif;
  }

  .home-slider .splide__slide .content h1 {
    font-size: 30px;
  }

  .slice > .wrapper.full > .slice-intro {
    padding-left: 40px;
    padding-right: 40px;
  }
  .slice.banner {
    padding-bottom: 90px;
  }
  .slice.banner .slice-intro {
    position: relative;
    z-index: 3;
  }
  .slice.banner .slice-intro .big-title {
    font-size: 45px;
    max-width: 100%;
  }
  .slice.banner .col-image {
    margin-bottom: 40px;
  }
  .slice.values .values-container {
    justify-content: space-between;
  }
  .slice.values .values-container .value-block {
    width: 100%;
  }
  .slice.values .values-container .value-block .inner {
    width: calc(100% - 130px);
    max-width: 100%;
  }
  .slice.about-cta {
    padding: 90px 0 90px;
  }
  .slice.about-cta .cta {
    background-position: center 40px;
    padding-top: 420px;
  }
  .slice.about-cta .cta .col-text {
    width: 100%;
  }
  .slice.map-container .wrapper .text-container {
    padding: 50px;
  }
  .slice.content-row {
    padding: 50px 0;
    margin: 50px 0;
  }
  .slice.content-row.stats-block {
    padding-top: 160px;
  }
  .slice.content-row.stats-block .bg-title {
    font-size: 70px;
  }
  .slice.content-row.stats-block .block .circle h4 {
    font-size: 50px;
    margin-top: -10px;
  }
  .slice.content-row.stats-block .block .circle h4 sup {
    font-size: 20px;
  }
  .slice.content-row.columned-content .row-block .content-block {
    align-items: center;
  }
  .slice.content-row.columned-content .row-block .content-block .content {
    width: 100%;
  }
  .slice.content-row.columned-content .row-block .col-12:last-child .content-block, .slice.content-row.columned-content .row-block form .gform_body .gform_fields .gfield.gfield--width-third:last-child .content-block, form .gform_body .gform_fields .slice.content-row.columned-content .row-block .gfield.gfield--width-third:last-child .content-block, .slice.content-row.columned-content .row-block form .gform_body .gform_fields .gfield.gfield--width-half:last-child .content-block, form .gform_body .gform_fields .slice.content-row.columned-content .row-block .gfield.gfield--width-half:last-child .content-block, .slice.content-row.columned-content .row-block form .gform_body .gform_fields .gfield.gfield--width-full:last-child .content-block, form .gform_body .gform_fields .slice.content-row.columned-content .row-block .gfield.gfield--width-full:last-child .content-block, .slice.content-row.columned-content .row-block form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_full:last-child .content-block, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .slice.content-row.columned-content .row-block .ginput_full:last-child .content-block, .slice.content-row.columned-content .row-block form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_left:last-child .content-block, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .slice.content-row.columned-content .row-block .ginput_left:last-child .content-block, .slice.content-row.columned-content .row-block form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_right:last-child .content-block, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .slice.content-row.columned-content .row-block .ginput_right:last-child .content-block {
    margin-bottom: 40px;
  }
  .slice.content-row.half-image-half-content .slice-bg, .slice.content-row.special-block-booth .slice-bg {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    width: 100%;
    height: auto;
    margin-bottom: 40px;
    position: relative;
    position: relative;
  }
  .slice.content-row.half-image-half-content .slice-bg:before, .slice.content-row.special-block-booth .slice-bg:before {
    content: "";
    display: block;
    padding-top: 50%;
  }
  .slice.content-row.half-image-half-content .slice-bg > img,
.slice.content-row.half-image-half-content .slice-bg > picture, .slice.content-row.special-block-booth .slice-bg > img,
.slice.content-row.special-block-booth .slice-bg > picture {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  .slice.content-row.half-image-half-content .slice-bg:after, .slice.content-row.special-block-booth .slice-bg:after {
    background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, white 100%);
    background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, white 100%);
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, white 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#00ffffff", endColorstr="#ffffff",GradientType=0 );
    width: 100%;
    height: 20%;
    bottom: -1px;
    top: auto;
  }
  .slice.content-row.half-image-half-content .img-left .col-text,
.slice.content-row.half-image-half-content .img-right .col-text, .slice.content-row.special-block-booth .img-left .col-text,
.slice.content-row.special-block-booth .img-right .col-text {
    order: 2;
  }
  .slice.content-row.half-image-half-content .img-left .col-image,
.slice.content-row.half-image-half-content .img-right .col-image, .slice.content-row.special-block-booth .img-left .col-image,
.slice.content-row.special-block-booth .img-right .col-image {
    order: 1;
  }
  .slice.content-row.half-image-half-content .col-image, .slice.content-row.special-block-booth .col-image {
    margin-bottom: 40px;
  }
  .slice.content-row.half-image-half-content .col-image .image.squared-img, .slice.content-row.special-block-booth .col-image .image.squared-img {
    max-width: 450px;
    margin: 40px auto 0;
  }
  .slice.content-row.half-image-half-steps .col-image {
    margin-bottom: 40px;
  }
  .slice.content-row.half-image-half-steps .col-text h4 {
    margin-bottom: 20px;
  }
  .slice.content-row.half-image-half-steps .col-text .steps-container .step .number {
    padding: 20px 0;
  }
  .slice.content-row.half-image-half-steps .col-text .steps-container .step .content {
    padding: 20px 20px 20px 40px;
  }

  header .header-container {
    flex-direction: column;
  }
  header .header-container .col-content {
    max-width: 100vw;
  }
  header .header-container .col-content .header-content {
    margin-top: 50px;
  }
  header .header-container .col-image {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
    width: 100vw;
  }
  header .header-container .col-image .header-image {
    height: 70%;
    width: 70%;
    margin: 0 auto;
  }

  .game .game-content .card-holder {
    max-height: 106px;
    max-width: 106px;
  }

  #privacy-page .wrapper {
    background: #F7F8F8;
    padding: 50px 50px;
  }
}
@media only screen and (-webkit-min-device-pixel-ratio: 1.25), only screen and (min-resolution: 192dpi) {
  /* Retina-specific styles go here */
  header .header-content .message-noel .big-title {
    font: 145px/100% "Mont Heavy", sans-serif;
  }

  .game .card-holder {
    max-height: 169px;
    max-width: 169px;
  }
}
@media screen and (max-height: 420px) {
  header .button {
    display: none;
  }

  .wrapper.mobile {
    display: initial;
  }

  .wrapper.desktop {
    display: none;
  }

  .header-content {
    display: none !important;
  }
  .header-content.mobile {
    display: initial !important;
  }
  .header-content.mobile .header-infos p {
    line-height: 20px;
  }
}
@media screen and (max-width: 767px) {
  .wrapper.mobile {
    display: initial;
  }

  header .button {
    display: none;
  }

  .wrapper.desktop {
    display: none;
  }

  header .header-content {
    padding: 0 25px;
  }
  header .header-content:not(.mobile) {
    display: none !important;
  }
  header .header-content.mobile {
    display: initial !important;
  }
  header .header-content.mobile .header-infos p {
    line-height: 20px;
  }
  header .header-content .message-noel .big-title {
    font-size: 50px !important;
    max-width: none;
  }
  header .header-content .header-infos .small-title {
    text-align: left;
    padding: 15px 0;
    font: 18px/100% "Mont Heavy", sans-serif;
  }
  header .header-content .header-infos .small-title br {
    display: none;
  }
  header .header-content .header-infos p {
    text-align: left;
  }

  .game-infos {
    padding: 0 20px;
  }
  .game-infos p br {
    display: none;
  }

  footer {
    margin-top: 50px !important;
  }

  h1.big-title {
    font-size: 36px !important;
  }

  .big-title {
    font-size: 28px !important;
  }
  .big-title br {
    display: none;
  }

  header .header-container .col-content .header-content {
    margin: 0;
    padding: 0;
    width: 100%;
  }
  header .header-container .col-image {
    position: relative;
  }
  header .header-container .col-image .header-image {
    width: 80%;
    height: 80%;
  }
  header .header-container .col-image .header-image img {
    object-position: center 30%;
  }

  .cartes-reg .carte-singular, .cartes-den .carte-singular {
    width: 40%;
  }

  .messages .message-singular {
    margin: 0 10px 30px;
  }
  .messages .message-singular .message-titre {
    margin-top: 20px;
  }

  .page-transition .transition-square {
    width: calc(100% / 5);
  }

  .wrapper {
    width: calc(100% - 40px);
  }

  .home-slider .splide__slide {
    flex-wrap: wrap;
  }
  .home-slider .splide__slide .image {
    width: 100%;
    position: relative;
  }
  .home-slider .splide__slide .image:before {
    content: "";
    display: block;
    padding-top: 40%;
  }
  .home-slider .splide__slide .content {
    width: 100%;
    padding: 40px 20px;
  }
  .home-slider .splide__pagination {
    flex-direction: row;
    right: 50%;
    top: auto;
    bottom: 10px;
    transform: translateY(0%) translateX(50%);
  }

  #servdentist .cta-container .cta-block {
    min-width: 320px;
  }

  #jetrouvemondentiste .content-bottom .col-image:before, #jetrouvemondentiste .content-bottom .col-image:after {
    width: 220px;
    height: 220px;
  }

  #contact .wrapper {
    flex-wrap: wrap;
  }
  #contact .wrapper .col-text,
#contact .wrapper .col-form {
    width: 100%;
  }
  #contact .wrapper .col-form form .gform_body .gform_fields {
    margin-left: 0px;
    margin-right: 0px;
  }
  #contact .wrapper .col-form form .gform_fields .gfield.gfield--width-full {
    padding-left: 0px;
    padding-right: 0px;
  }

  .slice .small-title {
    margin-bottom: 15px;
  }
  .slice.banner .slice-intro .big-title {
    font-size: 40px;
  }
  .slice.banner .col-image .image.has-decoration:after {
    top: -15px;
    left: -15px;
  }
  .slice.partner h3 {
    font-size: 40px;
    position: relative;
    z-index: 3;
  }
  .slice.partner .the-content {
    position: relative;
    z-index: 3;
  }
  .slice.map-container .wrapper {
    align-items: end;
    justify-content: center;
    padding-bottom: 50px;
  }
  .slice.map-container .wrapper .text-container {
    width: 100%;
    max-width: 100%;
  }
  .slice.content-row.columned-content .featured-block .cta-block {
    width: 100%;
  }
  .slice.content-row.columned-content .column-block .content-block {
    width: 100%;
  }
  .slice.content-row.stats-block .block .circle {
    max-width: 220px;
    margin: 0 auto 20px;
  }
  .slice.content-row.stats-block .block .the-content {
    max-width: 550px;
    margin: 0 auto 40px;
  }

  #footer .col-menu {
    display: none;
  }
}
@media screen and (max-width: 680px) {
  .button {
    padding: 20px 25px;
  }

  #servdentist .cta-container .cta-block {
    width: 100%;
    max-width: 480px;
  }

  #servdentist, #services,
#servdentist .cta-container,
#servdentist .content-bottom,
#contact {
    margin-top: 60px;
  }

  #servdentist .content-bottom h2 img {
    margin-top: 5px;
  }

  #services .service-container .service-block,
#services .service-container .service-block:first-child {
    margin-top: 90px;
  }

  #services .service-container .service-block .image {
    max-width: 300px;
  }
  #services .service-container .service-block .image > svg {
    max-width: 70%;
  }
  #services .service-container .service-block .image .square-bg svg {
    max-width: 99%;
  }

  #services {
    padding: 60px 0;
  }

  #contact {
    padding-bottom: 60px;
  }
}
@media screen and (max-width: 550px) {
  #services .service-container .service-block {
    margin-top: 40px;
    margin-bottom: 20px;
  }
  #services .service-container .service-block .content ul li {
    width: 100%;
  }

  #about-us .wrapper {
    padding: 40px 20px;
  }

  #contact .wrapper .col-text {
    padding-right: 0px;
  }

  #footer .col-12, #footer form .gform_body .gform_fields .gfield.gfield--width-third, form .gform_body .gform_fields #footer .gfield.gfield--width-third, #footer form .gform_body .gform_fields .gfield.gfield--width-half, form .gform_body .gform_fields #footer .gfield.gfield--width-half, #footer form .gform_body .gform_fields .gfield.gfield--width-full, form .gform_body .gform_fields #footer .gfield.gfield--width-full, #footer form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_full, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address #footer .ginput_full, #footer form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_left, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address #footer .ginput_left, #footer form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .ginput_right, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address #footer .ginput_right {
    text-align: center;
  }
  #footer .col-12.col-phone, #footer form .gform_body .gform_fields .col-phone.gfield.gfield--width-third, form .gform_body .gform_fields #footer .col-phone.gfield.gfield--width-third, #footer form .gform_body .gform_fields .col-phone.gfield.gfield--width-half, form .gform_body .gform_fields #footer .col-phone.gfield.gfield--width-half, #footer form .gform_body .gform_fields .col-phone.gfield.gfield--width-full, form .gform_body .gform_fields #footer .col-phone.gfield.gfield--width-full, #footer form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .col-phone.ginput_full, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address #footer .col-phone.ginput_full, #footer form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .col-phone.ginput_left, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address #footer .col-phone.ginput_left, #footer form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address .col-phone.ginput_right, form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address #footer .col-phone.ginput_right {
    text-align: center;
  }
  #footer #copyrights {
    padding-top: 0;
  }
  #footer #copyrights .wrapper {
    flex-direction: column;
    text-align: center;
  }
  #footer #copyrights #rubik-api-copyright {
    justify-content: center;
  }

  .slice .big-title {
    font-size: 30px;
  }
  .slice .slice-intro {
    padding-top: 60px;
    margin-bottom: 60px;
  }
  .slice.banner.has-decoration {
    background-size: 50% auto;
  }
  .slice.banner .slice-intro .big-title {
    font-size: 35px;
  }
  .slice.contact-form .big-title {
    font-size: 35px;
  }
  .slice.values {
    padding: 40px 0 90px;
  }
  .slice.values .values-container .value-block {
    width: 100%;
    margin-bottom: 40px !important;
    flex-direction: column;
  }
  .slice.values .values-container .value-block .image {
    max-width: 130px;
    margin: 0 auto 40px;
  }
  .slice.values .values-container .value-block .inner {
    width: 100% !important;
    max-width: 100% !important;
  }
  .slice.values .button-container {
    margin-top: 40px;
  }
  .slice.about-cta .cta {
    padding-top: 350px;
    background-size: auto 275px;
  }
  .slice.content-row.half-image-half-content .col-image .image .img-icon {
    width: 70px;
  }
  .slice.content-row.stats-block .bg-title {
    font-size: 50px;
  }
  .slice.content-row.title-with-icon .wrapper h2 {
    font: bold 30px/120% "Mont", sans-serif;
  }
  .slice.content-row.columned-content .row-block .content-block {
    flex-direction: column;
    margin-bottom: 40px;
  }
  .slice.content-row.columned-content .row-block .content-block .image {
    margin-bottom: 20px;
    margin-right: 0;
  }

  .page-transition .transition-logo {
    width: 250px;
    height: 250px;
  }
}
@media screen and (max-width: 420px) {
  #main {
    margin-top: 0;
  }

  .home-slider .splide__slide .content h1 {
    font-size: 30px;
  }

  .big-title {
    line-height: 32px !important;
  }

  header h1.big-title {
    line-height: 36px !important;
  }

  .small-title {
    line-height: 24px !important;
  }

  header .header-container h2 {
    margin-bottom: 20px !important;
  }
  header .header-container .col-content {
    padding: 26px 20px;
  }
  header .header-container .col-content .header-top .logo img {
    max-height: 80%;
  }
  header .header-container .col-content .header-top .btn-anglais {
    margin-bottom: 15px;
  }
  header .header-container .col-content .header-content .button {
    margin: 0 auto;
  }
  header .header-container .col-image {
    min-height: 0;
  }
  header .header-container .col-image .header-image {
    margin: 0 auto 35px;
  }

  .cartes-reg .carte-singular, .cartes-den .carte-singular {
    margin-bottom: 30px;
  }

  .slice.content-row .wrapper .row, .slice.content-row .wrapper form .gform_body .gform_fields, form .gform_body .slice.content-row .wrapper .gform_fields, .slice.content-row .wrapper form .gform_body .gform_fields .gfield .ginput_container.ginput_container_address, form .gform_body .gform_fields .gfield .slice.content-row .wrapper .ginput_container.ginput_container_address, .slice.content-row .wrapper .messages {
    width: 100%;
    margin: 0;
  }
  .slice.content-row .wrapper .row .message-titre, .slice.content-row .wrapper form .gform_body .gform_fields .message-titre, form .gform_body .slice.content-row .wrapper .gform_fields .message-titre, form .gform_body .gform_fields .gfield .slice.content-row .wrapper .ginput_container.ginput_container_address .message-titre, .slice.content-row .wrapper .messages .message-titre {
    margin-bottom: 20px;
  }
  .slice.content-row .wrapper .row .message-singular, .slice.content-row .wrapper form .gform_body .gform_fields .message-singular, form .gform_body .slice.content-row .wrapper .gform_fields .message-singular, form .gform_body .gform_fields .gfield .slice.content-row .wrapper .ginput_container.ginput_container_address .message-singular, .slice.content-row .wrapper .messages .message-singular {
    padding: 25px;
    margin: 30px 0;
  }

  .slice.form .col-form {
    padding-top: 50px;
  }
  .slice.form .col-form form .gform_body .gform_fields {
    margin: 0;
  }

  .slice.form .col-card-result .message-preview {
    margin: 0 50px 50px;
  }

  .slice.form .col-card-result .card-cover-title {
    margin: 0 30px;
  }
  .slice.form .col-card-result .card-cover-preview img {
    max-height: 300px;
    max-width: 300px;
  }

  .cartes-den {
    gap: 30px;
  }

  footer {
    margin-top: 50px;
  }
  footer .wrapper .col-xl-10 p {
    flex-direction: column;
    row-gap: 20px;
    font-size: 17px;
  }
  footer .wrapper .col-xl-10 p a {
    margin: 0;
  }

  h2 {
    font-size: 25px;
    margin-bottom: 40px;
  }

  #gform_fields_1 {
    margin: 0 !important;
  }

  #servdentist .cta-container .cta-block .content {
    height: auto;
    position: relative;
    bottom: auto;
  }
  #servdentist .cta-container .cta-block .content h4,
#servdentist .cta-container .cta-block .content p,
#servdentist .cta-container .cta-block .content a {
    transform: translateY(0px);
  }
  #servdentist .cta-container .cta-block:hover .content {
    height: auto;
  }
  #servdentist .cta-container .cta-block:hover .content h4,
#servdentist .cta-container .cta-block:hover .content p,
#servdentist .cta-container .cta-block:hover .content a {
    transform: translateY(0px);
  }

  .gform_body .gform_fields #field_1_12 select {
    padding-right: 36px !important;
  }
  .gform_body .gform_fields #field_1_16, .gform_body .gform_fields #field_1_18 {
    display: flex !important;
    flex-direction: column !important;
  }
  .gform_body .gform_fields #field_1_24 label:after {
    top: 18px;
  }
  .gform_body .gform_fields .gsection {
    margin: 0 !important;
    padding-bottom: 0 !important;
  }

  .gform_footer {
    justify-content: center;
  }

  .slice .slice-intro {
    padding-top: 40px;
    margin-bottom: 40px;
  }
  .slice.banner {
    padding-bottom: 45px;
  }
  .slice.values {
    padding: 40px 0;
  }
  .slice.about-cta {
    padding: 0 0 60px;
  }
  .slice.about-cta .cta {
    padding: 300px 20px 40px;
  }
  .slice.about-cta .cta .col-text {
    text-align: center;
  }
  .slice.partner {
    padding-bottom: 350px;
  }
  .slice.partner .slice-bg {
    width: 100%;
    height: 300px;
    top: auto;
    bottom: 0;
  }
  .slice.partner .slice-bg:after {
    background: -moz-linear-gradient(top, #739fa9 0%, rgba(115, 159, 169, 0) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, #739fa9 0%, rgba(115, 159, 169, 0) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, #739fa9 0%, rgba(115, 159, 169, 0) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#739fa9", endColorstr="#00739fa9",GradientType=0 );
    /* IE6-9 */
    width: 100%;
    height: 20%;
  }
  .slice.partner .slice-icon {
    top: 60px;
    transform: translateY(0%);
  }
  .slice.content-row {
    padding-top: 0;
    padding-bottom: 0;
  }
  .slice.content-row.stats-block .bg-title {
    font-size: 60px;
    white-space: normal !important;
    top: 45px;
  }
  .slice.content-row.columned-content.has-grey-bg {
    padding: 40px 0 60px;
  }
  .slice.content-row.columned-content .column-block .content-block {
    padding: 20px;
  }
  .slice.content-row.half-image-half-steps .col-text .steps-container .step .number {
    font-size: 45px;
  }
  .slice.content-row.half-image-half-steps .col-text .steps-container .step .content {
    padding: 20px 20px 20px 20px;
  }
}

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