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

.animate__animated, .content-row-three-quarter-content-quarter-img .right-row .img-compare.active .ui-slider-handle,
.content-row-half-content-half-img .right-row .img-compare.active .ui-slider-handle {
  -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, .content-row-three-quarter-content-quarter-img .right-row .img-compare.active .ui-slider-handle,
.content-row-half-content-half-img .right-row .img-compare.active .ui-slider-handle {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.animate__animated.animate__repeat-1, .content-row-three-quarter-content-quarter-img .right-row .img-compare.active .animate__repeat-1.ui-slider-handle,
.content-row-half-content-half-img .right-row .img-compare.active .animate__repeat-1.ui-slider-handle {
  -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, .content-row-three-quarter-content-quarter-img .right-row .img-compare.active .animate__repeat-2.ui-slider-handle,
.content-row-half-content-half-img .right-row .img-compare.active .animate__repeat-2.ui-slider-handle {
  -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, .content-row-three-quarter-content-quarter-img .right-row .img-compare.active .animate__repeat-3.ui-slider-handle,
.content-row-half-content-half-img .right-row .img-compare.active .animate__repeat-3.ui-slider-handle {
  -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, .content-row-three-quarter-content-quarter-img .right-row .img-compare.active .animate__delay-1s.ui-slider-handle,
.content-row-half-content-half-img .right-row .img-compare.active .animate__delay-1s.ui-slider-handle {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
  -webkit-animation-delay: var(--animate-delay);
  animation-delay: var(--animate-delay);
}

.animate__animated.animate__delay-2s, .content-row-three-quarter-content-quarter-img .right-row .img-compare.active .animate__delay-2s.ui-slider-handle,
.content-row-half-content-half-img .right-row .img-compare.active .animate__delay-2s.ui-slider-handle {
  -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, .content-row-three-quarter-content-quarter-img .right-row .img-compare.active .animate__delay-3s.ui-slider-handle,
.content-row-half-content-half-img .right-row .img-compare.active .animate__delay-3s.ui-slider-handle {
  -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, .content-row-three-quarter-content-quarter-img .right-row .img-compare.active .animate__delay-4s.ui-slider-handle,
.content-row-half-content-half-img .right-row .img-compare.active .animate__delay-4s.ui-slider-handle {
  -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, .content-row-three-quarter-content-quarter-img .right-row .img-compare.active .animate__delay-5s.ui-slider-handle,
.content-row-half-content-half-img .right-row .img-compare.active .animate__delay-5s.ui-slider-handle {
  -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, .content-row-three-quarter-content-quarter-img .right-row .img-compare.active .animate__faster.ui-slider-handle,
.content-row-half-content-half-img .right-row .img-compare.active .animate__faster.ui-slider-handle {
  -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, .content-row-three-quarter-content-quarter-img .right-row .img-compare.active .animate__fast.ui-slider-handle,
.content-row-half-content-half-img .right-row .img-compare.active .animate__fast.ui-slider-handle {
  -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, .content-row-three-quarter-content-quarter-img .right-row .img-compare.active .animate__slow.ui-slider-handle,
.content-row-half-content-half-img .right-row .img-compare.active .animate__slow.ui-slider-handle {
  -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, .content-row-three-quarter-content-quarter-img .right-row .img-compare.active .animate__slower.ui-slider-handle,
.content-row-half-content-half-img .right-row .img-compare.active .animate__slower.ui-slider-handle {
  -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, .content-row-three-quarter-content-quarter-img .right-row .img-compare.active .ui-slider-handle,
.content-row-half-content-half-img .right-row .img-compare.active .ui-slider-handle {
    -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], .content-row-three-quarter-content-quarter-img .right-row .img-compare.active [class*=Out].ui-slider-handle,
.content-row-half-content-half-img .right-row .img-compare.active [class*=Out].ui-slider-handle {
    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, .content-row-three-quarter-content-quarter-img .right-row .img-compare.active .ui-slider-handle,
.content-row-half-content-half-img .right-row .img-compare.active .ui-slider-handle {
  -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, .content-row-three-quarter-content-quarter-img .right-row .img-compare.active .animate__flip.ui-slider-handle,
.content-row-half-content-half-img .right-row .img-compare.active .animate__flip.ui-slider-handle {
  -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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .col-lg-6 {
    -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;
  }
}
html {
  scroll-behavior: smooth;
}

body {
  color: #484f65;
  overflow-x: hidden;
  position: relative;
}

a {
  text-decoration: none;
  color: #FFF;
}

p {
  font: 400 16px/1.6em "Montserrat", sans-serif;
}

h2 {
  position: relative;
  display: inline-block;
  font: 400 40px/1.2em "Bree Serif", serif;
  margin-bottom: 40px;
}
h2:after {
  content: "";
  display: block;
  width: 100%;
  max-width: 500px;
  height: 3px;
  background: #ccdf67;
  margin: 25px auto 0;
}

.no-line:after {
  display: none;
}

.the-content p {
  margin-bottom: 25px;
}
.the-content *:last-child {
  margin-bottom: 0;
}

#main {
  position: relative;
  z-index: 3;
  overflow-x: hidden;
}

.wrapper {
  width: 90%;
  margin: 0 auto;
  max-width: 1440px;
}
.wrapper.big {
  width: 100%;
  max-width: 100%;
  padding: 0 40px;
}
.wrapper.small {
  max-width: 750px;
}
.wrapper.small-medium {
  max-width: 810px;
}
.wrapper.medium {
  max-width: 1180px;
}

.buttons.same-width {
  text-align: center;
}
.buttons.same-width a {
  justify-content: center;
  width: 100%;
  max-width: 200px;
}
.buttons a {
  margin-bottom: 15px;
}
.buttons a:last-child {
  margin-bottom: 0;
}

.btn, .error404 .the-content .in-content, .gform_page_footer input[type=submit],
.gform_page_footer input[type=button], .gform_footer .form-submit input[type=submit] {
  display: inline-flex;
  align-items: center;
  border-radius: 23.5px;
  background-color: #4bcfbd;
  padding: 15px 28px;
  font: 400 16px/1em "Montserrat", sans-serif;
  color: #FFF;
  text-align: center;
  -webkit-appearance: none;
  transition: all 0.25s ease-in-out;
}
.btn:hover, .error404 .the-content .in-content:hover, .gform_page_footer input[type=submit]:hover,
.gform_page_footer input[type=button]:hover, .gform_footer .form-submit input[type=submit]:hover {
  background-color: #ccdf67;
}
.btn.with-icon img, .error404 .the-content .with-icon.in-content img, .gform_page_footer input.with-icon[type=submit] img,
.gform_page_footer input.with-icon[type=button] img, .gform_footer .form-submit input.with-icon[type=submit] img {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}
.btn.red, .error404 .the-content .red.in-content, .gform_page_footer input.red[type=submit],
.gform_page_footer input.red[type=button], .gform_footer .form-submit input.red[type=submit] {
  background-color: #ec0b35;
}
.btn.red:hover, .error404 .the-content .red.in-content:hover, .gform_page_footer input.red[type=submit]:hover,
.gform_page_footer input.red[type=button]:hover, .gform_footer .form-submit input.red[type=submit]:hover {
  background-color: #fe2553;
}
.btn.dark-blue, .error404 .the-content .dark-blue.in-content, .gform_page_footer input[type=submit],
.gform_page_footer input[type=button], .gform_footer .form-submit input[type=submit] {
  background-color: #484f65;
}
.btn.dark-blue:hover, .error404 .the-content .dark-blue.in-content:hover, .gform_page_footer input[type=submit]:hover,
.gform_page_footer input[type=button]:hover, .gform_footer .form-submit input[type=submit]:hover {
  background-color: #ccdf67;
}
.btn.white, .error404 .the-content .white.in-content, .gform_page_footer input.white[type=submit],
.gform_page_footer input.white[type=button], .gform_footer .form-submit input.white[type=submit] {
  background-color: #FFF;
  color: #484f65;
}
.btn.white:hover, .error404 .the-content .white.in-content:hover, .gform_page_footer input.white[type=submit]:hover,
.gform_page_footer input.white[type=button]:hover, .gform_footer .form-submit input.white[type=submit]:hover {
  background-color: #4bcfbd;
  color: #FFF;
}

#header {
  position: fixed;
  z-index: 5;
  top: 0;
  left: 0;
  width: 100%;
  height: 250px;
  padding: 10px 0 0 0;
  background: linear-gradient(180deg, white 60%, rgba(255, 255, 255, 0) 100%);
  transition: all 0.25s ease-in-out;
}
#header.active {
  background: none #484f65;
}
#header.active #site-logo .logo {
  display: none;
}
#header.active #site-logo .logo-active {
  display: block;
}
#header.active .mobile-nav-trigger #open-mobile-menu {
  display: none;
}
#header.active .mobile-nav-trigger #close-mobile-menu {
  display: block;
}
#header.active.shrink {
  background-color: #484f65;
  box-shadow: none;
  height: 150px;
}
#header.shrink {
  position: fixed;
  width: 100%;
  height: 105px;
  background-color: #FFF;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.16);
}
#header.shrink #site-logo {
  width: 80px;
}
#header #site-logo {
  transition: all 0.25s ease-in-out;
  width: 94px;
}
#header #site-logo .logo-active {
  display: none;
}
#header .tel {
  color: #4bcfbd;
  margin-right: 25px;
  font: 600 20px/0.75em "Montserrat", sans-serif;
}
#header .urgence {
  padding: 15px;
}
#header .urgence i {
  margin-left: 5px;
}
#header #site-nav ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 20px;
}
#header #site-nav ul li {
  margin-left: 40px;
}
#header #site-nav ul li:first-child {
  margin-left: 0;
}
#header #site-nav ul li:last-child {
  margin-top: 0;
}
#header #site-nav ul li.current-menu-item a {
  color: #4bcfbd;
}
#header #site-nav ul li.current-menu-item a:after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  border-radius: 1.5px;
  background-color: #ccdf67;
  position: absolute;
  top: 100%;
  left: 0;
  transition: all 0.25s ease-in-out;
}
#header #site-nav ul li a {
  position: relative;
  font: 500 17px/1em "Montserrat", sans-serif;
  transition: all 0.25s ease-in-out;
  color: #484f65;
}
#header #site-nav ul li a:after {
  content: "";
  display: block;
  opacity: 0;
  width: 100%;
  height: 3px;
  border-radius: 1.5px;
  background-color: #ccdf67;
  position: absolute;
  top: 100%;
  left: 0;
  transition: all 0.25s ease-in-out;
}
#header #site-nav ul li a:hover {
  color: #4bcfbd;
}
#header #site-nav ul li a:hover:after {
  opacity: 1;
}
#header .mobile-nav-trigger {
  display: none;
  align-items: center;
  width: 30px;
  height: 30px;
  margin-left: 45px;
}
#header .mobile-nav-trigger #close-mobile-menu {
  display: none;
}
#header .mobile-nav-trigger svg {
  width: 100%;
  height: 100%;
}

#mobile-nav {
  position: fixed;
  z-index: 6;
  top: 100px;
  bottom: 0;
  right: 0;
  width: 100%;
  background: #484f65;
  overflow-y: scroll;
  transition: all 0.25s ease-in-out;
  transform: translateX(105%);
  padding: 25px 0 0 25px;
}
#mobile-nav.active {
  transform: translateX(0);
}
#mobile-nav > ul {
  padding-right: 15px;
}
#mobile-nav > ul > li {
  font: bold 20px/1.35em "Montserrat", sans-serif;
  margin-bottom: 25px;
}
#mobile-nav #close-mobile-menu {
  position: absolute;
  top: 60px;
  right: 40px;
}
#mobile-nav #close-mobile-menu svg {
  width: 30px;
  height: 30px;
}

#footer {
  width: 100%;
  padding-top: 105px;
  padding-bottom: 15px;
  background-color: #484f65;
  color: #FFF;
  z-index: 1;
}
#footer .wrapper {
  max-width: 1350px;
  margin: 0 auto;
}
#footer .logo-footer {
  width: 122px;
  margin-bottom: 45px;
}
#footer .logo-reseau {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 84px;
}
#footer .logo-reseau a {
  width: 36px;
  height: 36px;
  margin-top: 0;
  border-radius: 50%;
  background-color: #4bcfbd;
  transition: all 0.25s ease-in-out;
}
#footer .logo-reseau a:hover {
  background-color: #ccdf67;
}
#footer .menu-logo-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 190px 0 0;
  text-align: center;
}
#footer .menu-footer {
  display: flex;
  justify-content: space-between;
  align-items: start;
}
#footer .menu-footer div {
  margin: 0 25px;
  text-align: center;
}
#footer h3 {
  text-align: center;
  font: bold 16px/1.6em "Montserrat", sans-serif;
  color: #ccdf67;
  margin-bottom: 40px;
}
#footer ul li {
  font: 400 16px/1.6em "Montserrat", sans-serif;
  margin-bottom: 5px;
}
#footer ul li a {
  color: #FFF;
  transition: all 0.25s ease-in-out;
}
#footer ul li a:hover {
  color: #4bcfbd;
}
#footer .joindre {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
#footer .joindre .courriel {
  margin-top: 25px;
}
#footer #site-copyright {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 90px;
}
#footer #site-copyright p {
  font: 400 10px/1em "Montserrat", sans-serif;
}
#footer #site-copyright br {
  display: none;
}
#footer #site-copyright span {
  color: #4bcfbd;
}
#footer #site-copyright a {
  color: #4bcfbd;
  transition: all 0.25s ease-in-out;
}
#footer #site-copyright a:hover {
  color: #ccdf67;
}
#footer #site-copyright img {
  width: 16px;
  margin-left: 8px;
}
#footer .footer-placement {
  display: flex;
  justify-content: space-between;
  align-items: start;
}

.slice, .related-news {
  position: relative;
  padding: 130px 0;
}
.slice.padding-half, .padding-half.related-news {
  padding: 65px 0;
}
.slice.padding-top, .padding-top.related-news {
  padding-bottom: 0;
}
.slice.padding-bottom, .padding-bottom.related-news {
  padding-top: 0;
}
.slice.padding-half, .padding-half.related-news {
  padding: 65px 0;
}
.slice.padding-none, .padding-none.related-news {
  padding-top: 0;
  padding-bottom: 0;
}
.slice.bg-white, .bg-white.related-news {
  background: #FFF;
}
.slice.bg-light-grey, .bg-light-grey.related-news {
  background: #f9f9fa;
}
.slice.bg-grey, .related-news {
  background: #ececec;
}
.slice.bg-white-grey-gradient, .bg-white-grey-gradient.related-news {
  background: linear-gradient(180deg, white 65%, #ecedef 100%);
}
.slice.bg-half-grey-half-white, .bg-half-grey-half-white.related-news {
  background: linear-gradient(180deg, #ececec 50%, white 50%);
}
.slice.bg-half-white-half-grey, .bg-half-white-half-grey.related-news {
  background: linear-gradient(180deg, white 50%, #f1f2f4 50%);
}
.slice.bg-aqua, .bg-aqua.related-news {
  background: #4bcfbd;
}

.content-row-banner {
  color: #FFF;
  background-image: none !important;
}
.content-row-banner .banner-content {
  height: 100vh;
  position: relative;
}
.content-row-banner .banner-content::before {
  content: "";
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.5);
}
.content-row-banner .banner-content.big {
  max-height: 810px;
}
.content-row-banner .banner-content.normal {
  max-height: 560px;
}
.content-row-banner .banner-content.normal > img {
  max-height: 100%;
}
.content-row-banner .banner-content.normal .inner {
  padding-top: 280px;
}
.content-row-banner .banner-content > img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  object-fit: cover;
  max-height: 710px;
  height: 100%;
  width: 100%;
}
.content-row-banner .banner-content .inner {
  position: relative;
  height: 100%;
  z-index: 2;
  padding-top: 300px;
}
.content-row-banner .banner-content h1 {
  font: 400 60px/0.92 "Bree Serif", serif;
  color: #484f65;
  text-align: center;
}
.content-row-banner .banner-content h1.home {
  max-width: 810px;
}
.content-row-banner .banner-content .buttons {
  text-align: center;
  margin-top: 35px;
}
.content-row-banner .banner-content .star1 {
  position: absolute;
  left: 0;
  top: 360px;
  width: 190px;
}
.content-row-banner .banner-content .star1 svg path {
  fill: #FFF;
}
.content-row-banner .banner-content .star2 {
  position: absolute;
  right: 250px;
  top: 290px;
  width: 96px;
}
.content-row-banner .banner-content .star2 path {
  fill: #FFF;
}
.content-row-banner .banner-cards {
  position: relative;
  z-index: 5;
  margin-top: -175px;
}
.content-row-banner .banner-cards .card {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.25s ease-in-out;
}
.content-row-banner .banner-cards .card > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.content-row-banner .banner-cards .card:after {
  content: "";
  display: block;
  padding-top: 140%;
}
.content-row-banner .banner-cards .card:before {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 45%, rgba(0, 0, 0, 0.75) 100%);
  transition: all 0.25s ease-in-out;
}
.content-row-banner .banner-cards .card:hover {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  transform: translateY(-20px);
}
.content-row-banner .banner-cards .card:hover:before {
  background: rgba(75, 207, 189, 0.75);
}
.content-row-banner .banner-cards .card:hover .inner {
  transform: translateY(-50px);
}
.content-row-banner .banner-cards .card:hover .inner .btn, .content-row-banner .banner-cards .card:hover .inner .error404 .the-content .in-content, .error404 .the-content .content-row-banner .banner-cards .card:hover .inner .in-content, .content-row-banner .banner-cards .card:hover .inner .gform_page_footer input[type=submit], .gform_page_footer .content-row-banner .banner-cards .card:hover .inner input[type=submit],
.content-row-banner .banner-cards .card:hover .inner .gform_page_footer input[type=button],
.gform_page_footer .content-row-banner .banner-cards .card:hover .inner input[type=button], .content-row-banner .banner-cards .card:hover .inner .gform_footer .form-submit input[type=submit], .gform_footer .form-submit .content-row-banner .banner-cards .card:hover .inner input[type=submit] {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.content-row-banner .banner-cards .card:hover .inner h3:after {
  transform: scaleX(1);
}
.content-row-banner .banner-cards .card .inner {
  position: relative;
  z-index: 2;
  width: 100%;
  text-align: center;
  padding: 0 50px 65px;
  transition: all 0.25s ease-in-out;
}
.content-row-banner .banner-cards .card .inner .btn, .content-row-banner .banner-cards .card .inner .error404 .the-content .in-content, .error404 .the-content .content-row-banner .banner-cards .card .inner .in-content, .content-row-banner .banner-cards .card .inner .gform_page_footer input[type=submit], .gform_page_footer .content-row-banner .banner-cards .card .inner input[type=submit],
.content-row-banner .banner-cards .card .inner .gform_page_footer input[type=button],
.gform_page_footer .content-row-banner .banner-cards .card .inner input[type=button], .content-row-banner .banner-cards .card .inner .gform_footer .form-submit input[type=submit], .gform_footer .form-submit .content-row-banner .banner-cards .card .inner input[type=submit] {
  opacity: 0;
  pointer-events: none;
  transition: all 0.35s ease-in-out;
  margin-bottom: 25px;
  transform: translateY(-25px);
}
.content-row-banner .banner-cards .card .inner h3 {
  position: relative;
  font: 500 30px/1.2em "Montserrat", sans-serif;
  color: #FFF;
  display: inline-block;
}
.content-row-banner .banner-cards .card .inner h3:after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background: #ccdf67;
  margin-top: 15px;
  transition: all 0.25s ease-in-out;
  transform: scaleX(0);
}
.content-row-banner .banner-menu {
  width: 100%;
  background-color: #484f65;
  color: #FFF;
}
.content-row-banner .banner-menu .menu {
  width: 100%;
  display: flex;
}
.content-row-banner .banner-menu .menu a {
  position: relative;
  display: flex;
  align-items: center;
  padding: 15px 15px 15px 55px;
  color: #FFF;
  width: 370px;
  height: 60px;
  font: 400 16px/1.1em "Montserrat", sans-serif;
  transition: all 0.25s ease-in-out;
}
.content-row-banner .banner-menu .menu a:before {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  content: "";
  opacity: 0;
  display: block;
  width: 30px;
  height: 30px;
  left: 12px;
  background-image: url("../images/icon-banner-menu-star.svg");
  transition: all 0.25s ease-in-out;
}
.content-row-banner .banner-menu .menu a.active, .content-row-banner .banner-menu .menu a:hover {
  background: #363b4c;
}
.content-row-banner .banner-menu .menu a.active:before, .content-row-banner .banner-menu .menu a:hover:before {
  opacity: 1;
}

.content-row-form {
  text-align: center;
}
.content-row-form .wrapper {
  max-width: 930px;
  margin: 0 auto;
}
.content-row-form .wrapper .inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.content-row-form .wrapper .inner img {
  display: block;
  margin: 0 auto 40px auto;
  width: 100px;
  height: 100px;
}

.content-row-half-content-half-icons {
  position: relative;
}
.content-row-half-content-half-icons .star3 {
  position: absolute;
  left: 615px;
  top: 840px;
  width: 90px;
}
.content-row-half-content-half-icons .star3 path {
  fill: #c9c9c9;
}
.content-row-half-content-half-icons .star4 {
  position: absolute;
  left: 714px;
  top: 750px;
  width: 149px;
}
.content-row-half-content-half-icons .star4 path {
  fill: #c9c9c9;
}
.content-row-half-content-half-icons .info-col1 h3 {
  font: 400 50px/1.1em "Bree Serif", serif;
  max-width: 400px;
  margin-bottom: 65px;
}
.content-row-half-content-half-icons .info-col1 h3 span {
  color: #4bcfbd;
}
.content-row-half-content-half-icons .info-col1 .the-content p {
  max-width: 670px;
}
.content-row-half-content-half-icons .info-col1 .buttons {
  margin-top: 60px;
}
.content-row-half-content-half-icons .info-col2 {
  display: block;
}
.content-row-half-content-half-icons .info-col2 h3 {
  font: 400 30px/1.2em "Bree Serif", serif;
  text-align: center;
  margin-bottom: 80px;
}
.content-row-half-content-half-icons .info-col2 .info-block {
  margin-bottom: 60px;
}
.content-row-half-content-half-icons .info-col2 .info-block .info-img {
  position: relative;
  margin: 0 auto;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.content-row-half-content-half-icons .info-col2 .info-block .info-img img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  object-position: center;
}
.content-row-half-content-half-icons .info-col2 .info-block p {
  margin: 20px auto 0;
  text-align: center;
  max-width: 200px;
}

.content-row-service-grid {
  position: relative;
}
.content-row-service-grid .star5 {
  position: absolute;
  right: 60px;
  top: 20px;
  width: 212px;
}
.content-row-service-grid .star5 path {
  fill: #ececec;
}
.content-row-service-grid .star6 {
  position: absolute;
  left: 100px;
  top: 1250px;
  width: 128px;
}
.content-row-service-grid .star6 path {
  fill: #c9c9c9;
}
.content-row-service-grid .img-block {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 80px;
}
.content-row-service-grid .img-block:before {
  content: "";
  display: block;
  padding-top: 130%;
}
.content-row-service-grid .img-block img {
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.content-row-service-grid .text-block h2 {
  position: relative;
  font: 400 40px/1.6em "Bree Serif", serif;
  margin: 0 0 50px;
}
.content-row-service-grid .text-block .the-content {
  margin-bottom: 50px;
}
.content-row-service-grid .text-block .grp-btn {
  margin-bottom: 60px;
}
.content-row-service-grid .text-block .grp-btn a {
  margin-right: 15px;
}
.content-row-service-grid .text-block .grp-btn a:last-child {
  margin-right: 0;
}

.left {
  text-align: right;
}
.left .text-block {
  text-align: right;
  margin-right: 50px;
}
.left h2 {
  position: relative;
}
.left h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #ccdf67;
  margin-top: 15px;
  position: absolute;
  left: calc(100% + 20px);
  top: 20px;
  z-index: 1;
}

.right .text-block {
  text-align: left;
  margin-left: 50px;
}
.right h2 {
  position: relative;
}
.right h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #ccdf67;
  margin-top: 15px;
  position: absolute;
  right: calc(100% + 20px);
  top: 20px;
  z-index: 1;
}

.content-row-three-quarters-img-quarter-content .inner-row {
  position: relative;
}
.content-row-three-quarters-img-quarter-content .inner-row.right h2 {
  position: relative;
  font: 400 40px/1.6em "Bree Serif", serif;
  margin-bottom: 50px;
}
.content-row-three-quarters-img-quarter-content .inner-row.right h2::after {
  background: #ec0b35;
}
.content-row-three-quarters-img-quarter-content .inner-row.right .wrapper {
  justify-content: flex-end;
}
.content-row-three-quarters-img-quarter-content .inner-row.right img {
  left: 0;
}
.content-row-three-quarters-img-quarter-content .inner-row .wrapper {
  display: flex;
}
.content-row-three-quarters-img-quarter-content .inner-row .img {
  position: absolute;
  top: 0;
  width: 56%;
  max-width: 1065px;
  border-radius: 0 15px 15px 0;
  overflow: hidden;
}
.content-row-three-quarters-img-quarter-content .inner-row .img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.content-row-three-quarters-img-quarter-content .inner-row .inner {
  width: 100%;
  max-width: 450px;
  padding: 100px 0;
  display: flex;
  flex-direction: column;
  align-items: start;
}
.content-row-three-quarters-img-quarter-content .inner-row .inner i {
  color: #ec0b35;
  font-size: 60px;
  margin-bottom: 35px;
}
.content-row-three-quarters-img-quarter-content .inner-row .inner p {
  max-width: 450px;
}
.content-row-three-quarters-img-quarter-content .inner-row .inner a {
  margin-top: 50px;
}

.block4 {
  position: relative;
}

.content-row-testimonials .star7 {
  position: absolute;
  left: 191px;
  top: 220px;
  width: 112px;
}
.content-row-testimonials .star7 path {
  fill: #ececec;
}
.content-row-testimonials .star8 {
  position: absolute;
  left: 259px;
  top: 275px;
  width: 185px;
}
.content-row-testimonials .star8 path {
  fill: #ececec;
}
.content-row-testimonials .testimonial {
  position: relative;
}
.content-row-testimonials .testimonial svg {
  width: 92px;
  margin-bottom: 25px;
}
.content-row-testimonials .testimonial svg path {
  fill: #ccdf67;
}
.content-row-testimonials .testimonial h2 {
  font: 400 40px/1.2em "Bree Serif", serif;
  margin-bottom: 40px;
  text-align: center;
}
.content-row-testimonials .testimonial p {
  text-align: center;
}
.content-row-testimonials .testimonial .the-content {
  margin-bottom: 40px;
}
.content-row-testimonials .testimonial .nom-opinion {
  font: 400 20px/1.4em "Bree Serif", serif;
}
.content-row-testimonials .testimonial .type-opinion {
  margin-bottom: 50px;
}
.content-row-testimonials .testimonial-slider .slick-dots {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.content-row-testimonials .testimonial-slider .slick-dots li {
  margin-right: 10px;
}
.content-row-testimonials .testimonial-slider .slick-dots li:last-child {
  margin-right: 0;
}
.content-row-testimonials .testimonial-slider .slick-dots li .slick-dot {
  width: 16px;
  height: 16px;
  cursor: pointer;
  border: solid 1px #484f65;
  background-color: #FFF;
  border-radius: 50%;
}
.content-row-testimonials .testimonial-slider .slick-dots .slick-active .slick-dot {
  background-color: #484f65;
}

.category-buttons {
  margin: 90px auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.category-buttons .btn, .category-buttons .error404 .the-content .in-content, .error404 .the-content .category-buttons .in-content, .category-buttons .gform_page_footer input[type=submit], .gform_page_footer .category-buttons input[type=submit],
.category-buttons .gform_page_footer input[type=button],
.gform_page_footer .category-buttons input[type=button], .category-buttons .gform_footer .form-submit input[type=submit], .gform_footer .form-submit .category-buttons input[type=submit] {
  margin-right: 15px;
}
.category-buttons .btn:last-of-type, .category-buttons .error404 .the-content .in-content:last-of-type, .error404 .the-content .category-buttons .in-content:last-of-type, .category-buttons .gform_page_footer input[type=submit]:last-of-type, .gform_page_footer .category-buttons input[type=submit]:last-of-type,
.category-buttons .gform_page_footer input[type=button]:last-of-type,
.gform_page_footer .category-buttons input[type=button]:last-of-type, .category-buttons .gform_footer .form-submit input[type=submit]:last-of-type, .gform_footer .form-submit .category-buttons input[type=submit]:last-of-type {
  margin-right: 0 !important;
}
.category-buttons .btn.active, .category-buttons .error404 .the-content .active.in-content, .error404 .the-content .category-buttons .active.in-content, .category-buttons .gform_page_footer input.active[type=submit], .gform_page_footer .category-buttons input.active[type=submit],
.category-buttons .gform_page_footer input.active[type=button],
.gform_page_footer .category-buttons input.active[type=button], .category-buttons .gform_footer .form-submit input.active[type=submit], .gform_footer .form-submit .category-buttons input.active[type=submit] {
  background-color: #484f65;
}
.category-buttons select {
  margin: 0 auto;
  border: none;
  display: none;
  border-radius: 23.5px;
  background-color: #4bcfbd;
  padding: 15px 28px;
  font: 400 16px/1em "Montserrat", sans-serif;
  color: #FFF;
  text-align-last: center;
  -moz-text-align-last: center;
  -webkit-appearance: none;
}
.category-buttons select:focus {
  outline: none;
}

#blog-list .wrapper {
  max-width: 1410px;
}
#blog-list .wrapper img {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
}
#blog-list .wrapper .info-blog {
  margin-bottom: 95px;
  padding-left: 30px;
  width: 100%;
  max-width: 620px;
}
#blog-list .wrapper .info-blog .time-category {
  font: 400 14px/1.8em "Montserrat", sans-serif;
  margin-bottom: 25px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
#blog-list .wrapper .info-blog .time-category div {
  margin: 0;
  padding: 0 5px;
}
#blog-list .wrapper .info-blog .time-category a {
  color: #4bcfbd;
}
#blog-list .wrapper .info-blog .time-category a:hover {
  color: #ccdf67;
}
#blog-list .wrapper .info-blog h2 {
  font: 400 30px/1.3em "Bree Serif", serif;
  margin-bottom: 35px;
}
#blog-list .wrapper .info-blog h2 a {
  color: #484f65;
}
#blog-list .wrapper .info-blog h2 a:hover {
  color: #4bcfbd;
}
#blog-list .wrapper .info-blog .the-content {
  font: 400 16px/1.6em "Montserrat", sans-serif;
  margin-bottom: 35px;
}
#blog-list .wrapper .info-blog .btn-blog a {
  color: #FFF;
}
#blog-list .wrapper .info-blog .btn-blog a:hover {
  color: #FFF;
}

.pagination {
  text-align: center;
  margin: 60px 0 80px;
}
.pagination .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #4bcfbd;
  color: #FFF;
  font: 400 16px/1em "Montserrat", sans-serif;
  margin-right: 10px;
  margin-bottom: 10px;
  transition: all 0.25s ease-in-out;
}
.pagination .page-numbers.last-child {
  margin-right: 0;
}
.pagination .page-numbers:hover {
  background: #484f65;
}
.pagination .page-numbers.current {
  background: #484f65;
  font-weight: bold;
}
.pagination .page-numbers.next, .pagination .page-numbers.prev {
  font-weight: bold;
}

.blog-interne {
  position: relative;
  z-index: 2;
  margin-top: -80px;
  padding-bottom: 75px;
}
.blog-interne .wrapper .img-blog img {
  object-fit: cover;
  position: relative;
  width: 100%;
  height: 670px;
  border-radius: 20px;
}
.blog-interne .wrapper .info-blog {
  margin: 45px 0;
  width: 100%;
}
.blog-interne .wrapper .info-blog .time-category {
  display: flex;
  font: 400 14px/1.8em "Montserrat", sans-serif;
  margin-bottom: 25px;
}
.blog-interne .wrapper .info-blog .time-category div {
  margin: 0;
  padding: 0 5px;
}
.blog-interne .wrapper .info-blog .time-category a {
  color: #4bcfbd;
  transition: all 0.25s ease-in-out;
}
.blog-interne .wrapper .info-blog .time-category a:hover {
  color: #ccdf67;
}
.blog-interne .wrapper .info-blog h1 {
  font: 400 30px/1.3em "Bree Serif", serif;
  margin-bottom: 35px;
}
.blog-interne .wrapper .info-blog .the-content p {
  font: 400 16px/1.6em "Montserrat", sans-serif;
}
.blog-interne .wrapper .info-blog .btn-blog a {
  color: #FFF;
}
.blog-interne .social-share {
  margin-top: 80px;
}
.blog-interne .social-share > p {
  font: normal 26px/1.3em "Bree Serif", serif;
  margin-bottom: 20px;
}
.blog-interne .social-share .icons {
  display: flex;
}
.blog-interne .social-share .icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #4bcfbd;
  margin: 0 10px 10px 0;
  transition: all 0.25s ease-in-out;
}
.blog-interne .social-share .icons a:hover {
  background: #ccdf67;
}
.blog-interne .social-share .icons a:last-child {
  margin-right: 0;
}
.blog-interne .social-share .icons a img {
  width: 30px;
  height: 30px;
}

.content-row-three-quarters-content-quarter-google-map {
  text-align: center;
}
.content-row-three-quarters-content-quarter-google-map .wrapper {
  width: 100%;
}
.content-row-three-quarters-content-quarter-google-map h2 {
  position: relative;
  display: inline-block;
  font: 400 40px/1.6em "Bree Serif", serif;
  margin-bottom: 40px;
}
.content-row-three-quarters-content-quarter-google-map h2:after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background: #ccdf67;
}
.content-row-three-quarters-content-quarter-google-map .inner {
  width: 70%;
  max-width: 810px;
  margin: 0 auto;
}
.content-row-three-quarters-content-quarter-google-map .inner h2 {
  margin-top: 75px;
}
.content-row-three-quarters-content-quarter-google-map .inner p {
  font: 400 16px/1.6em "Montserrat", sans-serif;
  max-width: 315px;
  margin: 0 auto;
  margin-bottom: 80px;
}
.content-row-three-quarters-content-quarter-google-map .bottom-row {
  background-color: #4bcfbd;
  padding-bottom: 110px;
}

.gform_wrapper {
  margin-bottom: 0;
}
.gform_wrapper .gform_ajax_spinner {
  display: none !important;
}
.gform_wrapper .gf_page_steps {
  margin: 0 auto;
  width: 125px;
  font: 600 18px/2.2em "Montserrat", sans-serif;
  color: #4bcfbd;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.gform_wrapper .gf_page_steps .gf_step {
  position: relative;
  display: flex;
  align-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-color: #43a69a;
}
.gform_wrapper .gf_page_steps .gf_step:before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  top: 20px;
  left: 100%;
  height: 7px;
  background-color: #43a69a;
}
.gform_wrapper .gf_page_steps .gf_step span {
  margin-left: 18px;
}
.gform_wrapper .gf_page_steps .gf_step_active {
  background-color: #FFF;
}
.gform_wrapper .gf_page_steps .gf_step_last:before {
  display: none;
}
.gform_wrapper .gf_page_steps .gf_step_clear {
  display: none;
}
.gform_wrapper .validation_error {
  text-align: center;
  font-family: "Montserrat", sans-serif;
  color: #AB4A2D;
  margin: 10px 0 0 25px;
}
.gform_wrapper .gform_heading {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.gform_wrapper .gform_heading .gform_title {
  position: relative;
  display: inline-block;
  font: 400 40px/1.6em "Bree Serif", serif;
  margin-bottom: 40px;
  color: #FFF;
}
.gform_wrapper .gform_heading .gform_title:after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background: #ccdf67;
}
.gform_wrapper .gform_heading .gform_description {
  font-family: "Montserrat", sans-serif;
  color: #FFF;
}
.gform_wrapper .gform_body {
  padding-top: 25PX;
}
.gform_wrapper .gform_body .gform_fields .gfield {
  padding-bottom: 25px;
}
.gform_wrapper .gform_body .gform_fields .gfield .gfield_label {
  font: 500 16px/2.5em "Montserrat", sans-serif;
  color: #FFF;
  display: flex;
  padding-left: 25px;
}
.gform_wrapper .gform_body .gform_fields .gfield .gfield_label:first-child {
  display: none;
}
.gform_wrapper .gform_body .gform_fields .gfield .ginput_container input,
.gform_wrapper .gform_body .gform_fields .gfield .ginput_container select {
  border-radius: 5px;
  border: none;
  padding-left: 25px;
  font: 500 16px/2.5em "Montserrat", sans-serif;
  color: #484f65;
  width: 100%;
  height: 40px;
  background-color: #FFF;
}
.gform_wrapper .gform_body .gform_fields .gfield .ginput_container input::-webkit-input-placeholder,
.gform_wrapper .gform_body .gform_fields .gfield .ginput_container select::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #484f65;
  opacity: 1;
}
.gform_wrapper .gform_body .gform_fields .gfield .ginput_container input::-moz-placeholder,
.gform_wrapper .gform_body .gform_fields .gfield .ginput_container select::-moz-placeholder {
  /* Firefox 19+ */
  color: #484f65;
  opacity: 1;
}
.gform_wrapper .gform_body .gform_fields .gfield .ginput_container input:-ms-input-placeholder,
.gform_wrapper .gform_body .gform_fields .gfield .ginput_container select:-ms-input-placeholder {
  /* IE 10+ */
  color: #484f65;
  opacity: 1;
}
.gform_wrapper .gform_body .gform_fields .gfield .ginput_container input:-moz-placeholder,
.gform_wrapper .gform_body .gform_fields .gfield .ginput_container select:-moz-placeholder {
  /* Firefox 18- */
  color: #484f65;
  opacity: 1;
}
.gform_wrapper .gform_body .gform_fields .gfield .ginput_container input[type=file],
.gform_wrapper .gform_body .gform_fields .gfield .ginput_container select[type=file] {
  display: none;
}
.gform_wrapper .gform_body .gform_fields .gfield .ginput_container input:focus,
.gform_wrapper .gform_body .gform_fields .gfield .ginput_container select:focus {
  outline: none;
}
.gform_wrapper .gform_body .gform_fields .gfield .ginput_container textarea {
  border-radius: 5px;
  border: none;
  padding-left: 25px;
  font: 500 16px/2.5em "Montserrat", sans-serif;
  color: #484f65;
  width: 100%;
  height: 150px;
}
.gform_wrapper .gform_body .gform_fields .gfield .ginput_container textarea:focus {
  outline: none;
}
.gform_wrapper .gform_body .gform_fields .gfield .ginput_container .faux-file {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background-color: #FFF;
  color: #484f65;
  text-align: left;
  font: 500 16px/2.5em "Montserrat", sans-serif;
  padding-left: 25px;
  border-radius: 5px;
  height: 52px;
}
.gform_wrapper .gform_body .gform_fields .gfield .ginput_container .faux-file:after {
  content: "+";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FFF;
  background-color: #4bcfbd;
  border-radius: 50px;
  width: 27px;
  height: 27px;
  text-align: center;
  font-size: 16px;
  margin-right: 15px;
  transition: all 0.25s ease-in-out;
}
.gform_wrapper .gform_body .gform_fields .gfield .ginput_container .faux-file:hover:after {
  background-color: #ccdf67;
}
.gform_wrapper .gform_body .gform_fields .gfield .ginput_container_date {
  position: relative;
}
.gform_wrapper .gform_body .gform_fields .gfield .ginput_container_date:before {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
  content: "";
  right: 10px;
  width: 20px;
  height: 20px;
  background-image: url("../images/calendar.svg");
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
}
.gform_wrapper .gform_body .gform_fields .gfield .ginput_container_date input {
  position: relative;
  z-index: 1;
}
.gform_wrapper .gform_body .gform_fields .gfield .ginput_container_date span {
  display: none;
}
.gform_wrapper .gform_body .gform_fields .gfield .validation_message {
  text-align: left;
  font-family: "Montserrat", sans-serif;
  color: #AB4A2D;
  margin: 10px 0 0 25px;
}
.gform_wrapper .gform_body .gform_page .gform_page_fields .gfield .validation_message {
  text-align: left;
  font-family: "Montserrat", sans-serif;
  color: #AB4A2D;
  margin: 10px 0 0 25px;
}

.gform_confirmation_message {
  font: 400 18px/1em "Montserrat", sans-serif;
}

.gform_footer {
  margin-top: 40px;
}
.gform_footer .form-submit {
  margin-bottom: 60px;
  position: relative;
  display: inline-block;
}
.gform_footer .form-submit input[type=submit] {
  cursor: pointer;
  position: relative;
  z-index: 1;
  border: none;
  padding: 20px 55px 20px 35px;
}
.gform_footer .form-submit:after {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  right: 35px;
  z-index: 2;
  background-image: url("../images/send.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

.gform_page_footer {
  display: flex;
  align-items: center;
  justify-content: center;
}
.gform_page_footer input[type=submit],
.gform_page_footer input[type=button] {
  cursor: pointer;
  position: relative;
  z-index: 1;
  border: none;
  margin: 20px 10px 60px;
}

.ui-datepicker {
  display: none;
  background: #FFF;
  border-radius: 5px;
  padding: 25px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  z-index: 4 !important;
  margin-top: 5px;
  font-family: "Montserrat", sans-serif;
  width: 100%;
  max-width: 300px;
}
.ui-datepicker .ui-datepicker-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}
.ui-datepicker .ui-datepicker-header > a {
  color: #4bcfbd;
}
.ui-datepicker .ui-datepicker-header > a > span {
  font-size: 12px;
}
.ui-datepicker .ui-datepicker-header .ui-datepicker-title {
  display: flex;
  justify-content: space-between;
}
.ui-datepicker .ui-datepicker-calendar {
  margin: 0;
  width: 100%;
}
.ui-datepicker .ui-datepicker-calendar thead tr th {
  font: bold 12px/1em "Montserrat", sans-serif;
  text-transform: uppercase;
  text-align: center;
  color: #4bcfbd;
}
.ui-datepicker .ui-datepicker-calendar tbody tr td {
  font: 12px/1em "Montserrat", sans-serif;
  text-align: center;
  padding: 10px 4px;
}
.ui-datepicker .ui-datepicker-calendar tbody tr td.ui-datepicker-current-day {
  background: #ccdf67;
  border-radius: 50%;
  color: #4bcfbd;
  font-weight: bold;
}
.ui-datepicker .ui-datepicker-calendar tbody tr td.ui-datepicker-current-day a {
  color: #FFF;
}
.ui-datepicker .ui-datepicker-calendar tbody tr td.ui-datepicker-today {
  border-radius: 50%;
  background: #ececec;
  font-weight: bold;
}
.ui-datepicker .ui-datepicker-calendar tbody tr td.ui-datepicker-today a {
  color: #FFF;
}
.ui-datepicker .ui-datepicker-calendar tbody tr td a {
  color: #4bcfbd;
}

.google-map {
  width: 100%;
  height: 100%;
}

.google-map img {
  max-width: inherit !important;
}

.content-row-three-quarter-content-quarter-img .left-row h2 {
  max-width: none !important;
  margin-bottom: 0 !important;
}
.content-row-three-quarter-content-quarter-img .left-row h2:after {
  margin: 25px 0 !important;
}
.content-row-three-quarter-content-quarter-img .left-row .the-content p {
  max-width: none !important;
}
.content-row-three-quarter-content-quarter-img .right-row img {
  object-fit: fill !important;
  height: auto !important;
}

.content-row-three-quarter-content-quarter-img .star1,
.content-row-half-content-half-img .star1 {
  position: absolute;
  left: 60px;
  bottom: 150px;
  width: 112px;
  z-index: 1;
}
.content-row-three-quarter-content-quarter-img .star1 path,
.content-row-half-content-half-img .star1 path {
  fill: #ccdf67;
}
.content-row-three-quarter-content-quarter-img .star2,
.content-row-half-content-half-img .star2 {
  position: absolute;
  right: 20px;
  top: -95px;
  width: 151px;
}
.content-row-three-quarter-content-quarter-img .star2 path,
.content-row-half-content-half-img .star2 path {
  fill: #ccdf67;
}
.content-row-three-quarter-content-quarter-img .left-row,
.content-row-half-content-half-img .left-row {
  padding: 20px 50px 0 0;
}
.content-row-three-quarter-content-quarter-img .left-row h2,
.content-row-half-content-half-img .left-row h2 {
  width: 100%;
  max-width: 500px;
  font: 400 40px/1.125em "Bree Serif", serif;
  margin-bottom: 60px;
}
.content-row-three-quarter-content-quarter-img .left-row .the-content p,
.content-row-half-content-half-img .left-row .the-content p {
  width: 100%;
  max-width: 585px;
  text-align: left;
}
.content-row-three-quarter-content-quarter-img .left-row .the-content p strong,
.content-row-half-content-half-img .left-row .the-content p strong {
  color: #4bcfbd;
  margin-bottom: 20px;
}
.content-row-three-quarter-content-quarter-img .left-row .the-content p.blue,
.content-row-half-content-half-img .left-row .the-content p.blue {
  color: #4bcfbd;
  margin-bottom: 20px;
  font-weight: bold;
}
.content-row-three-quarter-content-quarter-img .left-row .the-content h3,
.content-row-half-content-half-img .left-row .the-content h3 {
  color: #4bcfbd;
  font: 400 25px/1.2em "Bree Serif", serif;
  margin-top: 60px;
}
.content-row-three-quarter-content-quarter-img .buttons,
.content-row-half-content-half-img .buttons {
  margin-top: 70px;
  display: flex;
}
.content-row-three-quarter-content-quarter-img .buttons div,
.content-row-half-content-half-img .buttons div {
  margin-right: 25px;
}
.content-row-three-quarter-content-quarter-img .buttons div:last-child,
.content-row-half-content-half-img .buttons div:last-child {
  margin-right: 0;
}
.content-row-three-quarter-content-quarter-img .right-row,
.content-row-half-content-half-img .right-row {
  padding-left: 50px;
  padding-right: 50px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.content-row-three-quarter-content-quarter-img .right-row div,
.content-row-half-content-half-img .right-row div {
  margin-top: 10px;
  padding-right: 10px;
}
.content-row-three-quarter-content-quarter-img .right-row img,
.content-row-half-content-half-img .right-row img {
  object-fit: cover;
  border-radius: 15px;
  width: 100%;
  max-width: 819px;
  height: 630px;
  z-index: 0;
}
.content-row-three-quarter-content-quarter-img .right-row .img-compare,
.content-row-half-content-half-img .right-row .img-compare {
  display: block;
  width: 730px;
  height: 730px;
  position: relative;
  border-radius: 15px;
  margin: 0 !important;
}
.content-row-three-quarter-content-quarter-img .right-row .img-compare > div,
.content-row-half-content-half-img .right-row .img-compare > div {
  position: absolute;
  top: 0;
  left: 0;
  width: 730px;
  height: 100% !important;
  margin: 0 !important;
  overflow: hidden;
}
.content-row-three-quarter-content-quarter-img .right-row .img-compare > div.img-1,
.content-row-half-content-half-img .right-row .img-compare > div.img-1 {
  z-index: 1;
}
.content-row-three-quarter-content-quarter-img .right-row .img-compare > div.img-2,
.content-row-half-content-half-img .right-row .img-compare > div.img-2 {
  z-index: 2;
  width: 17%;
}
.content-row-three-quarter-content-quarter-img .right-row .img-compare > div > img,
.content-row-half-content-half-img .right-row .img-compare > div > img {
  position: absolute;
  left: 0;
  top: 0;
  width: 730px;
  height: 100% !important;
}
.content-row-three-quarter-content-quarter-img .right-row .img-compare .ui-slider-handle,
.content-row-half-content-half-img .right-row .img-compare .ui-slider-handle {
  position: absolute;
  z-index: 3;
  left: 0;
  width: 5px;
  height: 100%;
  background: #FFF;
  outline: none;
}
.content-row-three-quarter-content-quarter-img .right-row .img-compare .ui-slider-handle:before,
.content-row-half-content-half-img .right-row .img-compare .ui-slider-handle:before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 50%;
  margin-top: -16px;
  left: 50%;
  margin-left: -16px;
  display: block;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-image: url("../images/icon-img-compare-arrows.svg");
  background-color: #FFF;
  background-position: center;
  background-size: 20px 20px;
  background-repeat: no-repeat;
}
.content-row-three-quarter-content-quarter-img .right-row .img-compare .ui-slider-handle:after,
.content-row-half-content-half-img .right-row .img-compare .ui-slider-handle:after {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  top: 50%;
  margin-top: -20px;
  left: 50%;
  border-radius: 50%;
  margin-left: -20px;
  width: 40px;
  height: 40px;
  transform: scale(1);
  background: rgba(75, 207, 189, 0.5);
  animation: pulse 2s infinite;
}

.content-row-steps .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.content-row-steps .wrapper div {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.content-row-steps .wrapper div:last-child .circle-img:after {
  display: none;
}
.content-row-steps .wrapper div .circle-img {
  position: relative;
  width: 210px;
  height: 210px;
  border: solid 3.5px #4bcfbd;
  border-radius: 50%;
  background: #FFF;
  display: flex;
  justify-content: center;
  align-items: center;
}
.content-row-steps .wrapper div .circle-img:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 100%;
  width: 160%;
  height: 3px;
  background-color: #4bcfbd;
}
.content-row-steps .wrapper div .circle-img img {
  width: 50%;
  height: 50%;
}
.content-row-steps .wrapper div .content h2 {
  text-align: center;
  font: 400 40px/1.2em "Bree Serif", serif;
  margin-top: 40px;
  margin-bottom: 0;
}
.content-row-steps .wrapper div .content p {
  text-align: center;
  max-width: 405px;
  margin-top: 25px;
}

.content-row-full-content .inner-text {
  text-align: center;
}
.content-row-full-content .inner-text .the-content p {
  text-align: center;
}
.content-row-full-content .inner-text .the-content h3 {
  color: #4bcfbd;
  font: 400 25px/1.2em "Bree Serif", serif;
}
.content-row-full-content .inner-text .buttons {
  margin-top: 50px;
}

.content-row-three-quarters-video-quarter-content .image {
  position: relative;
}
.content-row-three-quarters-video-quarter-content .controls {
  position: absolute;
  left: 150px;
  bottom: -85px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.content-row-three-quarters-video-quarter-content .controls a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 103px;
  height: 103px;
  border-radius: 50%;
  border: none;
  background-color: #FFF;
  box-shadow: 0 0 21px rgba(0, 0, 0, 0.19);
}
.content-row-three-quarters-video-quarter-content .controls a img {
  width: 28px;
  height: 38px;
}
.content-row-three-quarters-video-quarter-content .controls p {
  margin-top: 15px;
  font: 400 30px/1.1em "Bree Serif", serif;
  color: #4bcfbd;
}

.content-row-three-quarters-small-img-quarter-content .content-top,
.content-row-three-quarters-video-quarter-content .content-top {
  display: flex;
  align-items: center;
}
.content-row-three-quarters-small-img-quarter-content .content-top .wrapper.big,
.content-row-three-quarters-video-quarter-content .content-top .wrapper.big {
  padding: 0;
}
.content-row-three-quarters-small-img-quarter-content .content-top h2:after,
.content-row-three-quarters-video-quarter-content .content-top h2:after {
  display: none;
}
.content-row-three-quarters-small-img-quarter-content .content-top .left-content.img-video .image,
.content-row-three-quarters-video-quarter-content .content-top .left-content.img-video .image {
  position: relative;
}
.content-row-three-quarters-small-img-quarter-content .content-top .left-content.img-video .image:before,
.content-row-three-quarters-video-quarter-content .content-top .left-content.img-video .image:before {
  content: "";
  display: block;
  width: 518px;
  height: 3px;
  border-radius: 1.5px 0 0 1.5px;
  background-color: #ccdf67;
  position: absolute;
  top: 6.4%;
  right: 0;
  z-index: 2;
}
.content-row-three-quarters-small-img-quarter-content .content-top .left-content.img-video .image img,
.content-row-three-quarters-video-quarter-content .content-top .left-content.img-video .image img {
  width: 100%;
  border-radius: 15px 0 0 15px;
  position: relative;
  z-index: 1;
}
.content-row-three-quarters-small-img-quarter-content .content-top .left-content.not-img,
.content-row-three-quarters-video-quarter-content .content-top .left-content.not-img {
  max-width: 570px;
  margin: 40px 50px 0 150px;
}
.content-row-three-quarters-small-img-quarter-content .content-top .left-content.not-img h2,
.content-row-three-quarters-video-quarter-content .content-top .left-content.not-img h2 {
  font: 400 40px/1.3em "Bree Serif", serif;
  margin-bottom: 45px;
}
.content-row-three-quarters-small-img-quarter-content .content-top .left-content.not-img h3,
.content-row-three-quarters-video-quarter-content .content-top .left-content.not-img h3 {
  font: bold 18px/1.1em "Montserrat", sans-serif;
  color: #4bcfbd;
}
.content-row-three-quarters-small-img-quarter-content .content-top .left-content.not-img ul,
.content-row-three-quarters-video-quarter-content .content-top .left-content.not-img ul {
  margin-left: 1em;
  margin-bottom: 55px;
}
.content-row-three-quarters-small-img-quarter-content .content-top .left-content.not-img ul li,
.content-row-three-quarters-video-quarter-content .content-top .left-content.not-img ul li {
  font: 400 16px/1.6em "Montserrat", sans-serif;
}
.content-row-three-quarters-small-img-quarter-content .content-top .left-content.not-img ul li::before,
.content-row-three-quarters-video-quarter-content .content-top .left-content.not-img ul li::before {
  content: "•";
  color: #4bcfbd;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}
.content-row-three-quarters-small-img-quarter-content .content-top .left-content.not-img p,
.content-row-three-quarters-video-quarter-content .content-top .left-content.not-img p {
  margin-bottom: 65px;
}
.content-row-three-quarters-small-img-quarter-content .content-top .left-content.not-img a,
.content-row-three-quarters-video-quarter-content .content-top .left-content.not-img a {
  margin-bottom: 30px;
}
.content-row-three-quarters-small-img-quarter-content .content-top .right-content.not-img,
.content-row-three-quarters-video-quarter-content .content-top .right-content.not-img {
  max-width: 565px;
  margin: 40px 0 0 105px;
}
.content-row-three-quarters-small-img-quarter-content .content-top .right-content.not-img h2,
.content-row-three-quarters-video-quarter-content .content-top .right-content.not-img h2 {
  font: 400 40px/1.3em "Bree Serif", serif;
  margin-bottom: 45px;
}
.content-row-three-quarters-small-img-quarter-content .content-top .right-content.not-img h3,
.content-row-three-quarters-video-quarter-content .content-top .right-content.not-img h3 {
  font: bold 18px/1.1em "Montserrat", sans-serif;
  color: #4bcfbd;
}
.content-row-three-quarters-small-img-quarter-content .content-top .right-content.not-img ul,
.content-row-three-quarters-video-quarter-content .content-top .right-content.not-img ul {
  margin-left: 1em;
  margin-bottom: 35px;
}
.content-row-three-quarters-small-img-quarter-content .content-top .right-content.not-img ul li,
.content-row-three-quarters-video-quarter-content .content-top .right-content.not-img ul li {
  font: 400 16px/1.6em "Montserrat", sans-serif;
}
.content-row-three-quarters-small-img-quarter-content .content-top .right-content.not-img ul li::before,
.content-row-three-quarters-video-quarter-content .content-top .right-content.not-img ul li::before {
  content: "•";
  color: #4bcfbd;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}
.content-row-three-quarters-small-img-quarter-content .content-top .right-content.not-img p,
.content-row-three-quarters-video-quarter-content .content-top .right-content.not-img p {
  margin-top: 35px;
}
.content-row-three-quarters-small-img-quarter-content .content-top .right-content.not-img a,
.content-row-three-quarters-video-quarter-content .content-top .right-content.not-img a {
  margin: 30px 0;
}
.content-row-three-quarters-small-img-quarter-content .content-top .right-content.img-video .image,
.content-row-three-quarters-video-quarter-content .content-top .right-content.img-video .image {
  position: relative;
}
.content-row-three-quarters-small-img-quarter-content .content-top .right-content.img-video .image:before,
.content-row-three-quarters-video-quarter-content .content-top .right-content.img-video .image:before {
  content: "";
  display: block;
  width: 450px;
  height: 3px;
  border-radius: 0 1.5px 1.5px 0;
  background-color: #ccdf67;
  position: absolute;
  top: 92%;
  left: 0;
  z-index: 2;
}
.content-row-three-quarters-small-img-quarter-content .content-top .right-content.img-video .image img,
.content-row-three-quarters-video-quarter-content .content-top .right-content.img-video .image img {
  width: 100%;
  height: 100%;
  border-radius: 0 15px 15px 0;
  position: relative;
  z-index: 1;
}

.content-row-product {
  padding-top: 25px !important;
}
.content-row-product .produits {
  background-color: #4bcfbd;
  height: 235px;
  border-radius: 15px;
  position: relative;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.24);
}
.content-row-product .produits img {
  position: absolute;
  left: -80px;
  top: -45px;
}
.content-row-product .produits p {
  margin: 0 auto;
  text-align: center;
  font: 400 30px/1.2em "Bree Serif", serif;
  color: #FFF;
  max-width: 700px;
  padding-top: 55px;
}
.content-row-product .produits .buttons {
  text-align: center;
  margin-top: 30px;
}
.content-row-product .produits div {
  padding: 0 5px;
}

.content-row-half-content-half-img-duo .left-img .duo-img {
  position: relative;
}
.content-row-half-content-half-img-duo .left-img .duo-img img:first-of-type {
  width: 100%;
  max-width: 570px;
  height: 636px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 10px 10px rgba(22, 22, 22, 0.24);
}
.content-row-half-content-half-img-duo .left-img .duo-img img:last-of-type {
  width: 100%;
  max-width: 304px;
  height: 338px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 10px 10px rgba(22, 22, 22, 0.24);
  position: absolute;
  top: 355px;
  right: 0;
}
.content-row-half-content-half-img-duo .left-img .content {
  margin-left: 100px;
}
.content-row-half-content-half-img-duo .left-img h2 {
  font: 400 50px/0.96em "Bree Serif", serif;
  margin: 30px 0;
}
.content-row-half-content-half-img-duo .left-img h2:after {
  margin: 25px 0 0 0;
}
.content-row-half-content-half-img-duo .left-img p {
  max-width: 565px;
  margin-bottom: 45px;
}
.content-row-half-content-half-img-duo .left-img h3 {
  font: bold 16px/1.6em "Montserrat", sans-serif;
  color: #4bcfbd;
}
.content-row-half-content-half-img-duo .left-img ul {
  margin-left: 1em;
  margin-bottom: 35px;
}
.content-row-half-content-half-img-duo .left-img ul li {
  font: 400 16px/1.6em "Montserrat", sans-serif;
}
.content-row-half-content-half-img-duo .left-img ul li::before {
  content: "•";
  color: #4bcfbd;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}
.content-row-half-content-half-img-duo .left-img a {
  margin-bottom: 30px;
}
.content-row-half-content-half-img-duo .right-img .duo-img {
  position: relative;
  margin-left: 130px;
}
.content-row-half-content-half-img-duo .right-img .duo-img img:first-of-type {
  width: 100%;
  max-width: 570px;
  height: 636px;
  object-fit: cover;
  object-position: center bottom;
  border-radius: 15px;
  box-shadow: 0 10px 10px rgba(22, 22, 22, 0.24);
}
.content-row-half-content-half-img-duo .right-img .duo-img img:last-of-type {
  width: 100%;
  max-width: 304px;
  height: 338px;
  object-fit: cover;
  object-position: center left;
  border-radius: 15px;
  box-shadow: 0 10px 10px rgba(22, 22, 22, 0.24);
  position: absolute;
  top: 355px;
  left: -70px;
}
.content-row-half-content-half-img-duo .right-img .content h2 {
  font: 400 50px/0.96em "Bree Serif", serif;
  margin: 30px 0;
}
.content-row-half-content-half-img-duo .right-img .content p {
  max-width: 565px;
  margin-bottom: 45px;
}
.content-row-half-content-half-img-duo .right-img .content h3 {
  font: bold 16px/1.6em "Montserrat", sans-serif;
  color: #4bcfbd;
}
.content-row-half-content-half-img-duo .right-img .content ul {
  margin-left: 1em;
  margin-bottom: 35px;
}
.content-row-half-content-half-img-duo .right-img .content ul li {
  font: 400 16px/1.6em "Montserrat", sans-serif;
}
.content-row-half-content-half-img-duo .right-img .content ul li::before {
  content: "•";
  color: #4bcfbd;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}
.content-row-half-content-half-img-duo .right-img .content a {
  margin-bottom: 30px;
}

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

.related-news .title {
  text-align: center;
}
.related-news img {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
}
.related-news .info-blog {
  margin-bottom: 95px;
  padding-left: 30px;
  width: 100%;
  max-width: 620px;
}
.related-news .info-blog .time-category {
  font: 400 14px/1.8em "Montserrat", sans-serif;
  margin-bottom: 25px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.related-news .info-blog .time-category div {
  margin: 0;
  padding: 0 5px;
}
.related-news .info-blog .time-category a {
  color: #4bcfbd;
}
.related-news .info-blog .time-category a:hover {
  color: #ccdf67;
}
.related-news .info-blog h2 {
  font: 400 30px/1.3em "Bree Serif", serif;
  margin-bottom: 35px;
}
.related-news .info-blog h2 a {
  color: #484f65;
}
.related-news .info-blog h2 a:hover {
  color: #4bcfbd;
}
.related-news .info-blog .the-content {
  font: 400 16px/1.6em "Montserrat", sans-serif;
  margin-bottom: 35px;
}
.related-news .info-blog .btn-blog a {
  color: #FFF;
}
.related-news .info-blog .btn-blog a:hover {
  color: #FFF;
}

.error404 .the-content {
  margin: 250px 0;
}
.error404 .the-content h1 {
  font: 400 50px/1.2em "Bree Serif", serif;
  margin-bottom: 30px;
}
.error404 .the-content p {
  font: 300 24px/1.2em "Montserrat", sans-serif;
  max-width: 564px;
}
.error404 #footer {
  position: relative;
  bottom: 0;
  left: 0;
  right: 0;
}

@keyframes pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(75, 207, 189, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(75, 207, 189, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(75, 207, 189, 0);
  }
}
@media (max-width: 1526px) {
  #header #site-nav ul {
    margin: 0 10px 0 20px;
  }
  #header #site-nav ul li {
    margin: 0 10px;
  }
  #header .tel {
    margin-right: 10px;
  }

  .content-row-half-content-half-img .right-row .img-compare {
    margin: 0 auto !important;
    width: 650px;
    height: 650px;
  }
  .content-row-half-content-half-img .right-row .img-compare > div {
    width: 650px;
  }
  .content-row-half-content-half-img .right-row .img-compare > div > img {
    width: 650px;
  }
}
@media (max-width: 1370px) {
  #header #site-nav ul li {
    margin: 0 5px;
  }
  #header #site-nav ul li a {
    font-size: 12px;
  }
  #header .tel {
    font-size: 12px;
  }
  #header .urgence {
    padding: 10px;
    font-size: 12px;
  }
}
@media (max-width: 1280px) {
  .content-row-three-quarters-img-quarter-content .inner-row .img {
    width: 50%;
  }
  .content-row-three-quarters-img-quarter-content .inner-row .inner {
    max-width: none;
    width: 50%;
    padding: 50px 0 50px 30px;
  }

  .content-row-half-content-half-img .right-row .img-compare {
    margin: 0 auto !important;
    width: 550px;
    height: 550px;
  }
  .content-row-half-content-half-img .right-row .img-compare > div {
    width: 550px;
  }
  .content-row-half-content-half-img .right-row .img-compare > div > img {
    width: 550px;
  }
}
@media (max-width: 1095px) {
  #header #site-nav {
    display: none;
  }
  #header .tel {
    font-size: 20px;
  }
  #header .mobile-nav-trigger {
    display: flex;
  }
  #header #mobile-nav {
    top: 150px;
  }

  .btn:not(input[type=submit]), .gform_footer .form-submit input[type=submit]:not(input[type=submit]), .gform_page_footer input[type=submit]:not(input[type=submit]),
.gform_page_footer input[type=button]:not(input[type=submit]), .error404 .the-content .in-content:not(input[type=submit]) {
    padding: 12px;
    font-size: 12px;
  }

  #footer .wrapper {
    max-width: 750px;
  }
  #footer .wrapper .footer-placement .menu-logo-footer {
    margin: 0 40px 0 0;
  }
  #footer .wrapper .footer-placement .menu-logo-footer .logo-footer {
    margin-bottom: 20px;
  }
  #footer .wrapper .footer-placement .menu-footer {
    display: none;
  }
  #footer .wrapper #site-copyright {
    margin-top: 65px;
  }

  .slice, .related-news {
    padding: 65px 0;
  }

  .content-row-banner .banner-content.big {
    max-height: 600px;
  }
  .content-row-banner .banner-content::before {
    height: 135%;
  }
  .content-row-banner .banner-content.normal {
    max-height: 380px;
  }
  .content-row-banner .banner-content.normal:before {
    height: 100%;
  }
  .content-row-banner .banner-content.normal .inner {
    padding-top: 210px;
  }
  .content-row-banner .banner-content .inner {
    padding-top: 240px;
  }
  .content-row-banner .banner-content h1 {
    font-size: 42px;
  }
  .content-row-banner .banner-content .star1 {
    top: 250px;
    width: 120px;
  }
  .content-row-banner .banner-content .star2 {
    right: 100px;
    top: 175px;
    width: 75px;
  }
  .content-row-banner .banner-menu .menu a {
    font-size: 14px;
  }
  .content-row-banner .banner-cards {
    margin-top: -100px;
  }
  .content-row-banner .banner-cards .card:before {
    background: rgba(75, 207, 189, 0.75);
  }
  .content-row-banner .banner-cards .card:hover {
    transform: none;
  }
  .content-row-banner .banner-cards .card:hover .inner {
    transform: none;
  }
  .content-row-banner .banner-cards .card:hover .inner .btn, .content-row-banner .banner-cards .card:hover .inner .gform_footer .form-submit input[type=submit], .gform_footer .form-submit .content-row-banner .banner-cards .card:hover .inner input[type=submit], .content-row-banner .banner-cards .card:hover .inner .gform_page_footer input[type=submit], .gform_page_footer .content-row-banner .banner-cards .card:hover .inner input[type=submit],
.content-row-banner .banner-cards .card:hover .inner .gform_page_footer input[type=button],
.gform_page_footer .content-row-banner .banner-cards .card:hover .inner input[type=button], .content-row-banner .banner-cards .card:hover .inner .error404 .the-content .in-content, .error404 .the-content .content-row-banner .banner-cards .card:hover .inner .in-content {
    transform: translateY(-25px) !important;
  }
  .content-row-banner .banner-cards .card:hover .inner h3:after {
    transform: none;
  }
  .content-row-banner .banner-cards .card .inner .btn, .content-row-banner .banner-cards .card .inner .gform_footer .form-submit input[type=submit], .gform_footer .form-submit .content-row-banner .banner-cards .card .inner input[type=submit], .content-row-banner .banner-cards .card .inner .gform_page_footer input[type=submit], .gform_page_footer .content-row-banner .banner-cards .card .inner input[type=submit],
.content-row-banner .banner-cards .card .inner .gform_page_footer input[type=button],
.gform_page_footer .content-row-banner .banner-cards .card .inner input[type=button], .content-row-banner .banner-cards .card .inner .error404 .the-content .in-content, .error404 .the-content .content-row-banner .banner-cards .card .inner .in-content {
    opacity: 1;
    transform: translateY(-25px);
    pointer-events: auto;
  }
  .content-row-banner .banner-cards .card .inner h3:after {
    transform: scaleX(1);
  }

  .content-row-service-grid .star6 {
    left: unset;
    right: 20px;
    top: 1225px;
  }

  .content-row-three-quarter-content-quarter-img .star1,
.content-row-half-content-half-img .star1 {
    left: 0;
    top: 403px;
    bottom: 0;
    width: 88px;
  }
  .content-row-three-quarter-content-quarter-img .star2,
.content-row-half-content-half-img .star2 {
    right: 30px;
    top: -55px;
    width: 95px;
  }
  .content-row-three-quarter-content-quarter-img .left-row,
.content-row-half-content-half-img .left-row {
    text-align: left;
    padding: 20px 0 0 0;
  }
  .content-row-three-quarter-content-quarter-img .left-row h2,
.content-row-half-content-half-img .left-row h2 {
    margin: 0 auto 25px;
    font-size: 38px;
  }
  .content-row-three-quarter-content-quarter-img .left-row .the-content,
.content-row-half-content-half-img .left-row .the-content {
    margin-bottom: 50px;
  }
  .content-row-three-quarter-content-quarter-img .left-row .the-content p,
.content-row-half-content-half-img .left-row .the-content p {
    margin: 0 auto;
  }
  .content-row-three-quarter-content-quarter-img .left-row .buttons,
.content-row-half-content-half-img .left-row .buttons {
    margin: 0 auto 50px;
    justify-content: center;
  }
  .content-row-three-quarter-content-quarter-img .right-row,
.content-row-half-content-half-img .right-row {
    margin: 0 auto;
  }
  .content-row-three-quarter-content-quarter-img .right-row img,
.content-row-half-content-half-img .right-row img {
    margin: 0 auto;
    height: 458px;
  }
  .content-row-three-quarter-content-quarter-img .right-row div p,
.content-row-half-content-half-img .right-row div p {
    margin-right: 51.297px;
  }
  .content-row-three-quarter-content-quarter-img .right-row .img-compare,
.content-row-half-content-half-img .right-row .img-compare {
    margin: 0 auto !important;
    width: 500px;
    height: 500px;
  }
  .content-row-three-quarter-content-quarter-img .right-row .img-compare > div,
.content-row-half-content-half-img .right-row .img-compare > div {
    width: 500px;
  }
  .content-row-three-quarter-content-quarter-img .right-row .img-compare > div > img,
.content-row-half-content-half-img .right-row .img-compare > div > img {
    width: 500px;
  }

  .content-row-steps .wrapper div .circle-img:after {
    right: -50%;
    width: 50%;
  }
  .content-row-steps .wrapper div .content {
    margin: 0 10px;
  }

  .content-row-three-quarters-small-img-quarter-content .content-top,
.content-row-three-quarters-video-quarter-content .content-top {
    padding: 0;
  }
  .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .row .left-content.not-img, .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .left-content.not-img, .gform_wrapper .gform_body .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_fields .left-content.not-img,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .row .left-content.not-img,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .left-content.not-img,
.gform_wrapper .gform_body .content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_fields .left-content.not-img {
    margin: 0 35px;
  }
  .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .row .left-content.not-img h2, .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .left-content.not-img h2, .gform_wrapper .gform_body .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_fields .left-content.not-img h2,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .row .left-content.not-img h2,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .left-content.not-img h2,
.gform_wrapper .gform_body .content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_fields .left-content.not-img h2 {
    font-size: 26px;
    margin-bottom: 15px;
  }
  .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .row .left-content.not-img h3, .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .left-content.not-img h3, .gform_wrapper .gform_body .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_fields .left-content.not-img h3,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .row .left-content.not-img h3,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .left-content.not-img h3,
.gform_wrapper .gform_body .content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_fields .left-content.not-img h3 {
    font-size: 16px;
    color: #4bcfbd;
  }
  .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .row .left-content.not-img ul, .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .left-content.not-img ul, .gform_wrapper .gform_body .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_fields .left-content.not-img ul,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .row .left-content.not-img ul,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .left-content.not-img ul,
.gform_wrapper .gform_body .content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_fields .left-content.not-img ul {
    margin-left: 1em;
    margin-bottom: 15px;
  }
  .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .row .left-content.not-img ul li, .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .left-content.not-img ul li, .gform_wrapper .gform_body .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_fields .left-content.not-img ul li,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .row .left-content.not-img ul li,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .left-content.not-img ul li,
.gform_wrapper .gform_body .content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_fields .left-content.not-img ul li {
    font: 400 16px/1.6em "Montserrat", sans-serif;
  }
  .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .row .left-content.not-img ul li::before, .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .left-content.not-img ul li::before, .gform_wrapper .gform_body .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_fields .left-content.not-img ul li::before,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .row .left-content.not-img ul li::before,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .left-content.not-img ul li::before,
.gform_wrapper .gform_body .content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_fields .left-content.not-img ul li::before {
    content: "•";
    color: #4bcfbd;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
  }
  .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .row .left-content.not-img p, .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .left-content.not-img p, .gform_wrapper .gform_body .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_fields .left-content.not-img p,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .row .left-content.not-img p,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .left-content.not-img p,
.gform_wrapper .gform_body .content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_fields .left-content.not-img p {
    margin-bottom: 10px;
    margin-top: 5px;
  }
  .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .row .left-content.not-img a, .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .left-content.not-img a, .gform_wrapper .gform_body .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_fields .left-content.not-img a,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .row .left-content.not-img a,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .left-content.not-img a,
.gform_wrapper .gform_body .content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_fields .left-content.not-img a {
    margin: 0 0 30px 0;
  }
  .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .row .left-content.img-video, .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .left-content.img-video, .gform_wrapper .gform_body .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_fields .left-content.img-video,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .row .left-content.img-video,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .left-content.img-video,
.gform_wrapper .gform_body .content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_fields .left-content.img-video {
    position: static;
  }
  .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .row .left-content.img-video .image, .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .left-content.img-video .image, .gform_wrapper .gform_body .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_fields .left-content.img-video .image,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .row .left-content.img-video .image,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .left-content.img-video .image,
.gform_wrapper .gform_body .content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_fields .left-content.img-video .image {
    position: relative;
  }
  .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .row .left-content.img-video .image:not(.video):before, .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .left-content.img-video .image:not(.video):before, .gform_wrapper .gform_body .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_fields .left-content.img-video .image:not(.video):before,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .row .left-content.img-video .image:not(.video):before,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .left-content.img-video .image:not(.video):before,
.gform_wrapper .gform_body .content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_fields .left-content.img-video .image:not(.video):before {
    display: none;
  }
  .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .row .left-content.img-video .image:after, .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .left-content.img-video .image:after, .gform_wrapper .gform_body .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_fields .left-content.img-video .image:after,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .row .left-content.img-video .image:after,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .left-content.img-video .image:after,
.gform_wrapper .gform_body .content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_fields .left-content.img-video .image:after {
    content: "";
    display: block;
    padding-top: 50%;
  }
  .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .row .left-content.img-video .image.video, .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .left-content.img-video .image.video, .gform_wrapper .gform_body .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_fields .left-content.img-video .image.video,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .row .left-content.img-video .image.video,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .left-content.img-video .image.video,
.gform_wrapper .gform_body .content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_fields .left-content.img-video .image.video {
    overflow: hidden;
  }
  .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .row .left-content.img-video .image.video:before, .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .left-content.img-video .image.video:before, .gform_wrapper .gform_body .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_fields .left-content.img-video .image.video:before,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .row .left-content.img-video .image.video:before,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .left-content.img-video .image.video:before,
.gform_wrapper .gform_body .content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_fields .left-content.img-video .image.video:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
    z-index: 2;
    border-radius: 15px 0;
    overflow: hidden;
  }
  .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .row .left-content.img-video .image.video img, .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .left-content.img-video .image.video img, .gform_wrapper .gform_body .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_fields .left-content.img-video .image.video img,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .row .left-content.img-video .image.video img,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .left-content.img-video .image.video img,
.gform_wrapper .gform_body .content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_fields .left-content.img-video .image.video img {
    border-radius: 15px 0;
  }
  .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .row .left-content.img-video .image > img, .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .left-content.img-video .image > img, .gform_wrapper .gform_body .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_fields .left-content.img-video .image > img,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .row .left-content.img-video .image > img,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .left-content.img-video .image > img,
.gform_wrapper .gform_body .content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_fields .left-content.img-video .image > img {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100% !important;
    object-fit: cover;
  }
  .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .row .left-content.img-video .image .controls, .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .left-content.img-video .image .controls, .gform_wrapper .gform_body .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_fields .left-content.img-video .image .controls,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .row .left-content.img-video .image .controls,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .left-content.img-video .image .controls,
.gform_wrapper .gform_body .content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_fields .left-content.img-video .image .controls {
    position: absolute;
    left: 50% !important;
    top: 50%;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 250px;
    height: 166px;
    margin: -83px 0 0 -125px;
  }
  .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .row .left-content.img-video .image .controls a, .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .left-content.img-video .image .controls a, .gform_wrapper .gform_body .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_fields .left-content.img-video .image .controls a,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .row .left-content.img-video .image .controls a,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .left-content.img-video .image .controls a,
.gform_wrapper .gform_body .content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_fields .left-content.img-video .image .controls a {
    width: 75px;
    height: 75px;
  }
  .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .row .left-content.img-video .image .controls a img, .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .left-content.img-video .image .controls a img, .gform_wrapper .gform_body .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_fields .left-content.img-video .image .controls a img,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .row .left-content.img-video .image .controls a img,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .left-content.img-video .image .controls a img,
.gform_wrapper .gform_body .content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_fields .left-content.img-video .image .controls a img {
    width: 28px;
    height: 38px;
  }
  .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .row .left-content.img-video .image .controls p, .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .left-content.img-video .image .controls p, .gform_wrapper .gform_body .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_fields .left-content.img-video .image .controls p,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .row .left-content.img-video .image .controls p,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .left-content.img-video .image .controls p,
.gform_wrapper .gform_body .content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_fields .left-content.img-video .image .controls p {
    font-size: 24px;
  }
  .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .row .right-content.not-img, .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .right-content.not-img, .gform_wrapper .gform_body .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_fields .right-content.not-img,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .row .right-content.not-img,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .right-content.not-img,
.gform_wrapper .gform_body .content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_fields .right-content.not-img {
    margin: 0 35px 0;
  }
  .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .row .right-content.not-img h2, .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .right-content.not-img h2, .gform_wrapper .gform_body .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_fields .right-content.not-img h2,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .row .right-content.not-img h2,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .right-content.not-img h2,
.gform_wrapper .gform_body .content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_fields .right-content.not-img h2 {
    font-size: 26px;
    margin-bottom: 15px;
  }
  .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .row .right-content.not-img h3, .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .right-content.not-img h3, .gform_wrapper .gform_body .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_fields .right-content.not-img h3,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .row .right-content.not-img h3,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .right-content.not-img h3,
.gform_wrapper .gform_body .content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_fields .right-content.not-img h3 {
    font-size: 16px;
    color: #4bcfbd;
  }
  .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .row .right-content.not-img ul, .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .right-content.not-img ul, .gform_wrapper .gform_body .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_fields .right-content.not-img ul,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .row .right-content.not-img ul,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .right-content.not-img ul,
.gform_wrapper .gform_body .content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_fields .right-content.not-img ul {
    margin-left: 1em;
    margin-bottom: 15px;
  }
  .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .row .right-content.not-img ul li, .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .right-content.not-img ul li, .gform_wrapper .gform_body .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_fields .right-content.not-img ul li,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .row .right-content.not-img ul li,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .right-content.not-img ul li,
.gform_wrapper .gform_body .content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_fields .right-content.not-img ul li {
    font: 400 16px/1.6em "Montserrat", sans-serif;
  }
  .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .row .right-content.not-img ul li::before, .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .right-content.not-img ul li::before, .gform_wrapper .gform_body .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_fields .right-content.not-img ul li::before,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .row .right-content.not-img ul li::before,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .right-content.not-img ul li::before,
.gform_wrapper .gform_body .content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_fields .right-content.not-img ul li::before {
    content: "•";
    color: #4bcfbd;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
  }
  .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .row .right-content.not-img p, .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .right-content.not-img p, .gform_wrapper .gform_body .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_fields .right-content.not-img p,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .row .right-content.not-img p,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .right-content.not-img p,
.gform_wrapper .gform_body .content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_fields .right-content.not-img p {
    margin-bottom: 10px;
    margin-top: 5px;
  }
  .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .row .right-content.not-img a, .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .right-content.not-img a, .gform_wrapper .gform_body .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_fields .right-content.not-img a,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .row .right-content.not-img a,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .right-content.not-img a,
.gform_wrapper .gform_body .content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_fields .right-content.not-img a {
    margin: 0 0 30px 0;
  }
  .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .row .right-content.img-video, .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .right-content.img-video, .gform_wrapper .gform_body .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_fields .right-content.img-video,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .row .right-content.img-video,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .right-content.img-video,
.gform_wrapper .gform_body .content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_fields .right-content.img-video {
    position: static;
  }
  .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .row .right-content.img-video .image, .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .right-content.img-video .image, .gform_wrapper .gform_body .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_fields .right-content.img-video .image,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .row .right-content.img-video .image,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .right-content.img-video .image,
.gform_wrapper .gform_body .content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_fields .right-content.img-video .image {
    position: relative;
  }
  .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .row .right-content.img-video .image:not(.video):before, .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .right-content.img-video .image:not(.video):before, .gform_wrapper .gform_body .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_fields .right-content.img-video .image:not(.video):before,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .row .right-content.img-video .image:not(.video):before,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .right-content.img-video .image:not(.video):before,
.gform_wrapper .gform_body .content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_fields .right-content.img-video .image:not(.video):before {
    display: none;
  }
  .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .row .right-content.img-video .image:after, .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .right-content.img-video .image:after, .gform_wrapper .gform_body .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_fields .right-content.img-video .image:after,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .row .right-content.img-video .image:after,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .right-content.img-video .image:after,
.gform_wrapper .gform_body .content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_fields .right-content.img-video .image:after {
    content: "";
    display: block;
    padding-top: 50%;
  }
  .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .row .right-content.img-video .image.video, .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .right-content.img-video .image.video, .gform_wrapper .gform_body .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_fields .right-content.img-video .image.video,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .row .right-content.img-video .image.video,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .right-content.img-video .image.video,
.gform_wrapper .gform_body .content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_fields .right-content.img-video .image.video {
    overflow: hidden;
  }
  .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .row .right-content.img-video .image.video:before, .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .right-content.img-video .image.video:before, .gform_wrapper .gform_body .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_fields .right-content.img-video .image.video:before,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .row .right-content.img-video .image.video:before,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .right-content.img-video .image.video:before,
.gform_wrapper .gform_body .content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_fields .right-content.img-video .image.video:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
    z-index: 2;
  }
  .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .row .right-content.img-video .image > img, .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .right-content.img-video .image > img, .gform_wrapper .gform_body .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_fields .right-content.img-video .image > img,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .row .right-content.img-video .image > img,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .right-content.img-video .image > img,
.gform_wrapper .gform_body .content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_fields .right-content.img-video .image > img {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100% !important;
    object-fit: cover;
  }
  .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .row .right-content.img-video .image .controls, .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .right-content.img-video .image .controls, .gform_wrapper .gform_body .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_fields .right-content.img-video .image .controls,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .row .right-content.img-video .image .controls,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .right-content.img-video .image .controls,
.gform_wrapper .gform_body .content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_fields .right-content.img-video .image .controls {
    position: absolute;
    left: 50% !important;
    top: 50%;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 250px;
    height: 166px;
    margin: -83px 0 0 -125px;
  }
  .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .row .right-content.img-video .image .controls a, .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .right-content.img-video .image .controls a, .gform_wrapper .gform_body .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_fields .right-content.img-video .image .controls a,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .row .right-content.img-video .image .controls a,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .right-content.img-video .image .controls a,
.gform_wrapper .gform_body .content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_fields .right-content.img-video .image .controls a {
    width: 75px;
    height: 75px;
  }
  .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .row .right-content.img-video .image .controls a img, .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .right-content.img-video .image .controls a img, .gform_wrapper .gform_body .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_fields .right-content.img-video .image .controls a img,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .row .right-content.img-video .image .controls a img,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .right-content.img-video .image .controls a img,
.gform_wrapper .gform_body .content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_fields .right-content.img-video .image .controls a img {
    width: 28px;
    height: 38px;
  }
  .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .row .right-content.img-video .image .controls p, .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .right-content.img-video .image .controls p, .gform_wrapper .gform_body .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_fields .right-content.img-video .image .controls p,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .row .right-content.img-video .image .controls p,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .right-content.img-video .image .controls p,
.gform_wrapper .gform_body .content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_fields .right-content.img-video .image .controls p {
    font-size: 24px;
  }

  .content-row-three-quarter-content-quarter-img .left-img .duo-img img:last-of-type,
.content-row-half-content-half-img-duo .left-img .duo-img img:last-of-type {
    max-width: 304px;
    height: 338px;
    top: 355px;
    right: -75px;
  }
  .content-row-three-quarter-content-quarter-img .left-img .content h2,
.content-row-half-content-half-img-duo .left-img .content h2 {
    font-size: 36px;
  }
  .content-row-three-quarter-content-quarter-img .left-img .content p,
.content-row-half-content-half-img-duo .left-img .content p {
    max-width: 565px;
    margin-bottom: 15px;
  }
  .content-row-three-quarter-content-quarter-img .left-img .content ul,
.content-row-half-content-half-img-duo .left-img .content ul {
    margin-bottom: 15px;
  }
  .content-row-three-quarter-content-quarter-img .right-img .duo-img,
.content-row-half-content-half-img-duo .right-img .duo-img {
    position: relative;
    margin-left: 0;
  }
  .content-row-three-quarter-content-quarter-img .right-img .content,
.content-row-half-content-half-img-duo .right-img .content {
    margin-right: 100px;
  }
  .content-row-three-quarter-content-quarter-img .right-img .content h2,
.content-row-half-content-half-img-duo .right-img .content h2 {
    font-size: 36px;
  }
  .content-row-three-quarter-content-quarter-img .right-img .content p,
.content-row-half-content-half-img-duo .right-img .content p {
    max-width: 565px;
    margin-bottom: 15px;
  }
  .content-row-three-quarter-content-quarter-img .right-img .content ul,
.content-row-half-content-half-img-duo .right-img .content ul {
    margin-bottom: 15px;
  }

  .content-row-product .produits {
    height: 200px;
    width: 90%;
    margin: 100px auto 0;
  }
  .content-row-product .produits img {
    width: 200px;
    left: -60px;
    top: -25px;
  }
  .content-row-product .produits p {
    font-size: 22px;
    color: #FFF;
  }

  .content-row-testimonials .star7 {
    left: 10px;
    top: 10px;
  }
  .content-row-testimonials .star8 {
    left: 80px;
    top: 65px;
  }

  .blog-interne .wrapper .img-blog {
    margin-top: 40px;
  }
  .blog-interne .wrapper .img-blog img {
    height: unset;
  }
}
@media (max-width: 1180px) {
  #header {
    background: linear-gradient(180deg, white 50%, rgba(255, 255, 255, 0) 90%);
  }

  .content-row-three-quarters-content-quarter-google-map h2 {
    font-size: 34px;
  }
}
@media (max-width: 768px) {
  #header .tel {
    font-size: 16px;
  }

  #menu-menage .menu a {
    font-size: 11px;
  }

  #footer {
    padding-top: 40px;
  }
  #footer .menu-logo-footer {
    margin: 0 20px 0 0;
  }
  #footer .menu-footer div {
    margin: 0 20px;
  }
  #footer #site-copyright {
    margin-top: 50px;
  }

  .content-row-banner .banner-content.big {
    max-height: 580px;
  }
  .content-row-banner .banner-content .star1 {
    position: relative;
    display: none;
  }
  .content-row-banner .banner-content .star2 {
    position: relative;
    display: none;
  }
  .content-row-banner .banner-cards {
    margin-top: -70px;
  }
  .content-row-banner .banner-cards .card:after {
    padding-top: 100%;
  }
  .content-row-banner .banner-cards .card .inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 10px 20px;
  }
  .content-row-banner .banner-cards .card .inner h3 {
    font-size: 16px;
    order: 1;
  }
  .content-row-banner .banner-cards .card .inner .btn, .content-row-banner .banner-cards .card .inner .gform_footer .form-submit input[type=submit], .gform_footer .form-submit .content-row-banner .banner-cards .card .inner input[type=submit], .content-row-banner .banner-cards .card .inner .gform_page_footer input[type=submit], .gform_page_footer .content-row-banner .banner-cards .card .inner input[type=submit],
.content-row-banner .banner-cards .card .inner .gform_page_footer input[type=button],
.gform_page_footer .content-row-banner .banner-cards .card .inner input[type=button], .content-row-banner .banner-cards .card .inner .error404 .the-content .in-content, .error404 .the-content .content-row-banner .banner-cards .card .inner .in-content {
    margin-bottom: 0;
    margin-top: 60px;
    order: 2;
  }

  .content-row-full-content .inner-text {
    text-align: center;
  }
  .content-row-full-content .inner-text h2 {
    font-size: 24px;
  }

  .content-row-half-content-half-icons .star3 {
    left: -20px;
    bottom: 50px;
    top: auto;
    width: 100px;
  }
  .content-row-half-content-half-icons .star4 {
    left: 50px;
    bottom: 30px;
    top: auto;
    width: 50px;
  }

  .content-row-service-grid .star5 {
    right: 0;
    top: 20px;
    width: 100px;
  }
  .content-row-service-grid .star6 {
    bottom: 300px;
    left: -49px;
    top: unset;
  }
  .content-row-service-grid .img-block {
    margin-bottom: 20px;
  }
  .content-row-service-grid .text-block {
    margin: 0 auto;
  }
  .content-row-service-grid .text-block h2 {
    position: relative;
    font: 400 40px/1.6em "Bree Serif", serif;
    margin: 40px 0 50px;
    text-align: left;
  }
  .content-row-service-grid .text-block .the-content {
    margin-bottom: 50px;
  }
  .content-row-service-grid .text-block .grp-btn {
    margin-bottom: 20px;
  }

  .left {
    text-align: left;
  }
  .left h2::after {
    content: "";
    display: block;
    width: 30px;
    height: 3px;
    background: #ccdf67;
    position: absolute;
    left: 0;
    top: 75px;
    z-index: 1;
  }
  .left .text-block {
    text-align: left;
  }

  .right h2::after {
    content: "";
    display: block;
    width: 30px;
    height: 3px;
    background: #ccdf67;
    position: absolute;
    left: 0;
    top: 75px;
    z-index: 1;
  }

  .content-row-three-quarters-img-quarter-content {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }
  .content-row-three-quarters-img-quarter-content .inner-row {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .content-row-three-quarters-img-quarter-content .inner-row .img {
    order: 2;
    width: 100%;
    height: unset;
    position: static;
    top: auto;
    border-radius: 0;
  }
  .content-row-three-quarters-img-quarter-content .inner-row .img > img {
    position: static;
    display: block;
  }
  .content-row-three-quarters-img-quarter-content .inner-row .wrapper {
    order: 1;
  }
  .content-row-three-quarters-img-quarter-content .inner-row .wrapper .inner {
    width: 100%;
    padding: 35px 0;
    align-items: center;
    text-align: center;
  }
  .content-row-three-quarters-img-quarter-content .inner-row .wrapper .inner h2:after {
    display: none;
  }
  .content-row-three-quarters-img-quarter-content .inner-row .wrapper .inner .the-content p {
    text-align: center;
    margin: 0 auto;
  }

  .content-row-three-quarter-content-quarter-img .left-row,
.content-row-half-content-half-img .left-row {
    text-align: center;
    padding: 20px 0 0 0;
  }
  .content-row-three-quarter-content-quarter-img .left-row h2,
.content-row-half-content-half-img .left-row h2 {
    text-align: left;
    margin: 0 auto 25px;
  }
  .content-row-three-quarter-content-quarter-img .left-row .btn-about,
.content-row-half-content-half-img .left-row .btn-about {
    margin: 70px auto 20px;
  }
  .content-row-three-quarter-content-quarter-img .left-row .buttons,
.content-row-half-content-half-img .left-row .buttons {
    justify-content: center;
  }
  .content-row-three-quarter-content-quarter-img .left-row .the-content p,
.content-row-half-content-half-img .left-row .the-content p {
    text-align: left;
    margin: 0 auto;
  }
  .content-row-three-quarter-content-quarter-img .right-row,
.content-row-half-content-half-img .right-row {
    margin: 0 auto;
    padding: 0;
  }
  .content-row-three-quarter-content-quarter-img .right-row img,
.content-row-half-content-half-img .right-row img {
    margin: 0 auto;
    height: 458px;
  }
  .content-row-three-quarter-content-quarter-img .right-row div p,
.content-row-half-content-half-img .right-row div p {
    margin-right: 0;
  }
  .content-row-three-quarter-content-quarter-img .right-row .img-compare,
.content-row-half-content-half-img .right-row .img-compare {
    margin: 0 auto !important;
    width: 350px;
    height: 350px;
  }
  .content-row-three-quarter-content-quarter-img .right-row .img-compare > div,
.content-row-half-content-half-img .right-row .img-compare > div {
    width: 350px;
  }
  .content-row-three-quarter-content-quarter-img .right-row .img-compare > div > img,
.content-row-half-content-half-img .right-row .img-compare > div > img {
    width: 350px;
  }

  .content-row-three-quarters-content-quarter-google-map .inner h2 {
    margin-top: 35px;
  }
  .content-row-three-quarters-content-quarter-google-map .inner p {
    margin-bottom: 40px;
  }

  .google-map {
    height: 500px;
  }

  .content-row-three-quarters-small-img-quarter-content .content-top .wrapper.big,
.content-row-three-quarters-video-quarter-content .content-top .wrapper.big {
    padding: 0;
  }
  .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .row .col-lg-5, .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .col-lg-5, .gform_wrapper .gform_body .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_fields .col-lg-5,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .row .col-lg-5,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .col-lg-5,
.gform_wrapper .gform_body .content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_fields .col-lg-5 {
    order: 1;
  }
  .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .row .col-lg-5 .left-content.not-img h2, .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .col-lg-5 .left-content.not-img h2, .gform_wrapper .gform_body .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_fields .col-lg-5 .left-content.not-img h2,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .row .col-lg-5 .left-content.not-img h2,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .col-lg-5 .left-content.not-img h2,
.gform_wrapper .gform_body .content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_fields .col-lg-5 .left-content.not-img h2 {
    font: 400 40px/1.3em "Bree Serif", serif;
    margin-bottom: 45px;
  }
  .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .row .col-lg-5 .left-content.not-img h3, .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .col-lg-5 .left-content.not-img h3, .gform_wrapper .gform_body .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_fields .col-lg-5 .left-content.not-img h3,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .row .col-lg-5 .left-content.not-img h3,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .col-lg-5 .left-content.not-img h3,
.gform_wrapper .gform_body .content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_fields .col-lg-5 .left-content.not-img h3 {
    font: bold 18px/1.1em "Montserrat", sans-serif;
    color: #4bcfbd;
  }
  .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .row .col-lg-5 .left-content.not-img ul, .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .col-lg-5 .left-content.not-img ul, .gform_wrapper .gform_body .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_fields .col-lg-5 .left-content.not-img ul,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .row .col-lg-5 .left-content.not-img ul,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .col-lg-5 .left-content.not-img ul,
.gform_wrapper .gform_body .content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_fields .col-lg-5 .left-content.not-img ul {
    margin-left: 1em;
    margin-bottom: 55px;
  }
  .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .row .col-lg-5 .left-content.not-img ul li, .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .col-lg-5 .left-content.not-img ul li, .gform_wrapper .gform_body .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_fields .col-lg-5 .left-content.not-img ul li,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .row .col-lg-5 .left-content.not-img ul li,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .col-lg-5 .left-content.not-img ul li,
.gform_wrapper .gform_body .content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_fields .col-lg-5 .left-content.not-img ul li {
    font: 400 16px/1.6em "Montserrat", sans-serif;
  }
  .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .row .col-lg-5 .left-content.not-img ul li::before, .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .col-lg-5 .left-content.not-img ul li::before, .gform_wrapper .gform_body .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_fields .col-lg-5 .left-content.not-img ul li::before,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .row .col-lg-5 .left-content.not-img ul li::before,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .col-lg-5 .left-content.not-img ul li::before,
.gform_wrapper .gform_body .content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_fields .col-lg-5 .left-content.not-img ul li::before {
    content: "•";
    color: #4bcfbd;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
  }
  .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .row .col-lg-5 .left-content.not-img p, .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .col-lg-5 .left-content.not-img p, .gform_wrapper .gform_body .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_fields .col-lg-5 .left-content.not-img p,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .row .col-lg-5 .left-content.not-img p,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .col-lg-5 .left-content.not-img p,
.gform_wrapper .gform_body .content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_fields .col-lg-5 .left-content.not-img p {
    margin-bottom: 65px;
  }
  .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .row .col-lg-5 .left-content.not-img a, .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .col-lg-5 .left-content.not-img a, .gform_wrapper .gform_body .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_fields .col-lg-5 .left-content.not-img a,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .row .col-lg-5 .left-content.not-img a,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .col-lg-5 .left-content.not-img a,
.gform_wrapper .gform_body .content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_fields .col-lg-5 .left-content.not-img a {
    margin-bottom: 30px;
  }
  .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .row .col-lg-5 .right-content.not-img h2, .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .col-lg-5 .right-content.not-img h2, .gform_wrapper .gform_body .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_fields .col-lg-5 .right-content.not-img h2,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .row .col-lg-5 .right-content.not-img h2,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .col-lg-5 .right-content.not-img h2,
.gform_wrapper .gform_body .content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_fields .col-lg-5 .right-content.not-img h2 {
    font: 400 40px/1.3em "Bree Serif", serif;
    margin-bottom: 45px;
  }
  .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .row .col-lg-5 .right-content.not-img h3, .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .col-lg-5 .right-content.not-img h3, .gform_wrapper .gform_body .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_fields .col-lg-5 .right-content.not-img h3,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .row .col-lg-5 .right-content.not-img h3,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .col-lg-5 .right-content.not-img h3,
.gform_wrapper .gform_body .content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_fields .col-lg-5 .right-content.not-img h3 {
    font: bold 18px/1.1em "Montserrat", sans-serif;
    color: #4bcfbd;
  }
  .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .row .col-lg-5 .right-content.not-img ul, .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .col-lg-5 .right-content.not-img ul, .gform_wrapper .gform_body .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_fields .col-lg-5 .right-content.not-img ul,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .row .col-lg-5 .right-content.not-img ul,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .col-lg-5 .right-content.not-img ul,
.gform_wrapper .gform_body .content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_fields .col-lg-5 .right-content.not-img ul {
    margin-left: 1em;
    margin-bottom: 35px;
  }
  .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .row .col-lg-5 .right-content.not-img ul li, .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .col-lg-5 .right-content.not-img ul li, .gform_wrapper .gform_body .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_fields .col-lg-5 .right-content.not-img ul li,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .row .col-lg-5 .right-content.not-img ul li,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .col-lg-5 .right-content.not-img ul li,
.gform_wrapper .gform_body .content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_fields .col-lg-5 .right-content.not-img ul li {
    font: 400 16px/1.6em "Montserrat", sans-serif;
  }
  .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .row .col-lg-5 .right-content.not-img ul li::before, .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .col-lg-5 .right-content.not-img ul li::before, .gform_wrapper .gform_body .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_fields .col-lg-5 .right-content.not-img ul li::before,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .row .col-lg-5 .right-content.not-img ul li::before,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .col-lg-5 .right-content.not-img ul li::before,
.gform_wrapper .gform_body .content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_fields .col-lg-5 .right-content.not-img ul li::before {
    content: "•";
    color: #4bcfbd;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
  }
  .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .row .col-lg-5 .right-content.not-img p, .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .col-lg-5 .right-content.not-img p, .gform_wrapper .gform_body .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_fields .col-lg-5 .right-content.not-img p,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .row .col-lg-5 .right-content.not-img p,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .col-lg-5 .right-content.not-img p,
.gform_wrapper .gform_body .content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_fields .col-lg-5 .right-content.not-img p {
    margin-top: 35px;
  }
  .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .row .col-lg-5 .right-content.not-img a, .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .col-lg-5 .right-content.not-img a, .gform_wrapper .gform_body .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_fields .col-lg-5 .right-content.not-img a,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .row .col-lg-5 .right-content.not-img a,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .col-lg-5 .right-content.not-img a,
.gform_wrapper .gform_body .content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_fields .col-lg-5 .right-content.not-img a {
    margin: 30px 0;
  }
  .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .row .col-lg-7, .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .col-lg-7, .gform_wrapper .gform_body .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_fields .col-lg-7,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .row .col-lg-7,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .col-lg-7,
.gform_wrapper .gform_body .content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_fields .col-lg-7 {
    order: 2;
  }
  .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .row .col-lg-7 .img-video .image, .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .col-lg-7 .img-video .image, .gform_wrapper .gform_body .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_fields .col-lg-7 .img-video .image,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .row .col-lg-7 .img-video .image,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .col-lg-7 .img-video .image,
.gform_wrapper .gform_body .content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_fields .col-lg-7 .img-video .image {
    display: block;
    width: 90%;
    margin: 0 auto;
    box-shadow: 0 10px 10px rgba(22, 22, 22, 0.24);
    border-radius: 15px;
  }
  .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .row .col-lg-7 .img-video .image img, .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .col-lg-7 .img-video .image img, .gform_wrapper .gform_body .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_fields .col-lg-7 .img-video .image img,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .row .col-lg-7 .img-video .image img,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .col-lg-7 .img-video .image img,
.gform_wrapper .gform_body .content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_fields .col-lg-7 .img-video .image img {
    display: block;
    height: unset;
    border-radius: 15px;
  }
  .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .row .col-lg-7 .img-video .controls, .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .col-lg-7 .img-video .controls, .gform_wrapper .gform_body .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_fields .col-lg-7 .img-video .controls,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .row .col-lg-7 .img-video .controls,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .col-lg-7 .img-video .controls,
.gform_wrapper .gform_body .content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_fields .col-lg-7 .img-video .controls {
    left: 30px;
    bottom: -75px;
  }

  .content-row-half-content-half-img-duo .left-img .wrapper .row, .content-row-half-content-half-img-duo .left-img .wrapper .gform_wrapper .gform_body .gform_fields, .gform_wrapper .gform_body .content-row-half-content-half-img-duo .left-img .wrapper .gform_fields {
    display: flex;
    flex-direction: column;
  }
  .content-row-half-content-half-img-duo .left-img .wrapper .row .col-lg-6:first-child, .content-row-half-content-half-img-duo .left-img .wrapper .gform_wrapper .gform_body .gform_fields .col-lg-6:first-child, .gform_wrapper .gform_body .content-row-half-content-half-img-duo .left-img .wrapper .gform_fields .col-lg-6:first-child {
    order: 2;
  }
  .content-row-half-content-half-img-duo .left-img .wrapper .row .col-lg-6:last-child, .content-row-half-content-half-img-duo .left-img .wrapper .gform_wrapper .gform_body .gform_fields .col-lg-6:last-child, .gform_wrapper .gform_body .content-row-half-content-half-img-duo .left-img .wrapper .gform_fields .col-lg-6:last-child {
    order: 1;
  }
  .content-row-half-content-half-img-duo .left-img .wrapper .row .duo-img, .content-row-half-content-half-img-duo .left-img .wrapper .gform_wrapper .gform_body .gform_fields .duo-img, .gform_wrapper .gform_body .content-row-half-content-half-img-duo .left-img .wrapper .gform_fields .duo-img {
    margin-right: 0;
  }
  .content-row-half-content-half-img-duo .left-img .wrapper .row .duo-img img:first-of-type, .content-row-half-content-half-img-duo .left-img .wrapper .gform_wrapper .gform_body .gform_fields .duo-img img:first-of-type, .gform_wrapper .gform_body .content-row-half-content-half-img-duo .left-img .wrapper .gform_fields .duo-img img:first-of-type {
    height: unset;
    max-width: none;
  }
  .content-row-half-content-half-img-duo .left-img .wrapper .row .duo-img img:last-of-type, .content-row-half-content-half-img-duo .left-img .wrapper .gform_wrapper .gform_body .gform_fields .duo-img img:last-of-type, .gform_wrapper .gform_body .content-row-half-content-half-img-duo .left-img .wrapper .gform_fields .duo-img img:last-of-type {
    top: unset;
    bottom: -20px;
    left: unset;
    right: -20px;
    height: auto;
  }
  .content-row-half-content-half-img-duo .left-img .wrapper .row .content, .content-row-half-content-half-img-duo .left-img .wrapper .gform_wrapper .gform_body .gform_fields .content, .gform_wrapper .gform_body .content-row-half-content-half-img-duo .left-img .wrapper .gform_fields .content {
    margin-left: 0;
  }
  .content-row-half-content-half-img-duo .left-img .wrapper .row .content h2, .content-row-half-content-half-img-duo .left-img .wrapper .gform_wrapper .gform_body .gform_fields .content h2, .gform_wrapper .gform_body .content-row-half-content-half-img-duo .left-img .wrapper .gform_fields .content h2 {
    font-size: 40px;
  }
  .content-row-half-content-half-img-duo .left-img .wrapper .row .content .line, .content-row-half-content-half-img-duo .left-img .wrapper .gform_wrapper .gform_body .gform_fields .content .line, .gform_wrapper .gform_body .content-row-half-content-half-img-duo .left-img .wrapper .gform_fields .content .line {
    margin-bottom: 15px;
  }
  .content-row-half-content-half-img-duo .left-img .wrapper .row .content p, .content-row-half-content-half-img-duo .left-img .wrapper .gform_wrapper .gform_body .gform_fields .content p, .gform_wrapper .gform_body .content-row-half-content-half-img-duo .left-img .wrapper .gform_fields .content p {
    max-width: 565px;
    margin-bottom: 15px;
  }
  .content-row-half-content-half-img-duo .left-img .wrapper .row .content ul, .content-row-half-content-half-img-duo .left-img .wrapper .gform_wrapper .gform_body .gform_fields .content ul, .gform_wrapper .gform_body .content-row-half-content-half-img-duo .left-img .wrapper .gform_fields .content ul {
    margin-bottom: 15px;
  }
  .content-row-half-content-half-img-duo .right-img .wrapper .row, .content-row-half-content-half-img-duo .right-img .wrapper .gform_wrapper .gform_body .gform_fields, .gform_wrapper .gform_body .content-row-half-content-half-img-duo .right-img .wrapper .gform_fields {
    display: flex;
    flex-direction: column;
  }
  .content-row-half-content-half-img-duo .right-img .wrapper .row .col-lg-6:first-child, .content-row-half-content-half-img-duo .right-img .wrapper .gform_wrapper .gform_body .gform_fields .col-lg-6:first-child, .gform_wrapper .gform_body .content-row-half-content-half-img-duo .right-img .wrapper .gform_fields .col-lg-6:first-child {
    order: 1;
  }
  .content-row-half-content-half-img-duo .right-img .wrapper .row .col-lg-6:last-child, .content-row-half-content-half-img-duo .right-img .wrapper .gform_wrapper .gform_body .gform_fields .col-lg-6:last-child, .gform_wrapper .gform_body .content-row-half-content-half-img-duo .right-img .wrapper .gform_fields .col-lg-6:last-child {
    order: 2;
  }
  .content-row-half-content-half-img-duo .right-img .wrapper .row .duo-img, .content-row-half-content-half-img-duo .right-img .wrapper .gform_wrapper .gform_body .gform_fields .duo-img, .gform_wrapper .gform_body .content-row-half-content-half-img-duo .right-img .wrapper .gform_fields .duo-img {
    margin-left: 0;
  }
  .content-row-half-content-half-img-duo .right-img .wrapper .row .duo-img img:first-of-type, .content-row-half-content-half-img-duo .right-img .wrapper .gform_wrapper .gform_body .gform_fields .duo-img img:first-of-type, .gform_wrapper .gform_body .content-row-half-content-half-img-duo .right-img .wrapper .gform_fields .duo-img img:first-of-type {
    max-width: none;
    height: unset;
  }
  .content-row-half-content-half-img-duo .right-img .wrapper .row .duo-img img:last-of-type, .content-row-half-content-half-img-duo .right-img .wrapper .gform_wrapper .gform_body .gform_fields .duo-img img:last-of-type, .gform_wrapper .gform_body .content-row-half-content-half-img-duo .right-img .wrapper .gform_fields .duo-img img:last-of-type {
    top: unset;
    bottom: -20px;
    left: unset;
    right: -20px;
    height: auto;
  }
  .content-row-half-content-half-img-duo .right-img .wrapper .row .content, .content-row-half-content-half-img-duo .right-img .wrapper .gform_wrapper .gform_body .gform_fields .content, .gform_wrapper .gform_body .content-row-half-content-half-img-duo .right-img .wrapper .gform_fields .content {
    margin-right: 0;
  }
  .content-row-half-content-half-img-duo .right-img .wrapper .row .content h2, .content-row-half-content-half-img-duo .right-img .wrapper .gform_wrapper .gform_body .gform_fields .content h2, .gform_wrapper .gform_body .content-row-half-content-half-img-duo .right-img .wrapper .gform_fields .content h2 {
    font-size: 40px;
  }
  .content-row-half-content-half-img-duo .right-img .wrapper .row .content .line, .content-row-half-content-half-img-duo .right-img .wrapper .gform_wrapper .gform_body .gform_fields .content .line, .gform_wrapper .gform_body .content-row-half-content-half-img-duo .right-img .wrapper .gform_fields .content .line {
    margin-bottom: 15px;
  }
  .content-row-half-content-half-img-duo .right-img .wrapper .row .content p, .content-row-half-content-half-img-duo .right-img .wrapper .gform_wrapper .gform_body .gform_fields .content p, .gform_wrapper .gform_body .content-row-half-content-half-img-duo .right-img .wrapper .gform_fields .content p {
    max-width: 565px;
    margin-bottom: 15px;
  }
  .content-row-half-content-half-img-duo .right-img .wrapper .row .content ul, .content-row-half-content-half-img-duo .right-img .wrapper .gform_wrapper .gform_body .gform_fields .content ul, .gform_wrapper .gform_body .content-row-half-content-half-img-duo .right-img .wrapper .gform_fields .content ul {
    margin-bottom: 15px;
  }

  .content-row-product .produits p {
    font-size: 18px;
    max-width: 415px;
    padding-top: 35px;
  }

  .content-row-testimonials .star7,
.content-row-testimonials .star8 {
    display: none;
    position: relative;
  }
  .content-row-testimonials .the-content p {
    margin: 0 auto;
    max-width: 500px;
  }

  #blog-list .wrapper .info-blog,
.related-news .wrapper .info-blog {
    padding: 0 30px;
  }
  #blog-list .wrapper .info-blog .time-category,
.related-news .wrapper .info-blog .time-category {
    flex-direction: column;
    align-items: flex-start;
  }
  #blog-list .wrapper .info-blog .time-category .separator,
.related-news .wrapper .info-blog .time-category .separator {
    display: none;
  }
  #blog-list .wrapper .info-blog .time-category div,
.related-news .wrapper .info-blog .time-category div {
    padding: 0;
  }

  .content-row-steps .wrapper {
    flex-direction: column;
  }
  .content-row-steps .wrapper div {
    margin: 0 auto;
    flex-direction: row;
    align-items: center;
  }
  .content-row-steps .wrapper div .circle-img {
    width: 105px;
    height: 105px;
  }
  .content-row-steps .wrapper div .circle-img:after {
    top: 100%;
    left: 50%;
    width: 3px;
    height: 175%;
  }
  .content-row-steps .wrapper div .content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .content-row-steps .wrapper div .content h2 {
    text-align: left;
    margin-top: 20px;
    font-size: 26px;
  }
  .content-row-steps .wrapper div .content p {
    text-align: left;
    font-size: 12px;
    max-width: 200px;
  }
}
@media (max-width: 991px) {
  .content-row-half-content-half-img .left-row {
    text-align: center;
  }
  .content-row-half-content-half-img .left-row .the-content p {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .wrapper.big {
    padding: 0 20px;
  }

  .content-row-banner .banner-cards {
    margin-top: -35px;
  }
  .content-row-banner .banner-cards .card {
    align-items: center;
    margin-bottom: 20px;
  }
  .content-row-banner .banner-cards .card:after {
    padding-top: 100%;
  }
  .content-row-banner .banner-cards .card:hover {
    transform: none;
  }
  .content-row-banner .banner-cards .card:hover .inner {
    transform: none;
  }
  .content-row-banner .banner-cards .card:hover .inner .btn, .content-row-banner .banner-cards .card:hover .inner .gform_footer .form-submit input[type=submit], .gform_footer .form-submit .content-row-banner .banner-cards .card:hover .inner input[type=submit], .content-row-banner .banner-cards .card:hover .inner .gform_page_footer input[type=submit], .gform_page_footer .content-row-banner .banner-cards .card:hover .inner input[type=submit],
.content-row-banner .banner-cards .card:hover .inner .gform_page_footer input[type=button],
.gform_page_footer .content-row-banner .banner-cards .card:hover .inner input[type=button], .content-row-banner .banner-cards .card:hover .inner .error404 .the-content .in-content, .error404 .the-content .content-row-banner .banner-cards .card:hover .inner .in-content {
    transform: none;
  }
  .content-row-banner .banner-cards .card:hover .inner h3:after {
    transform: none;
  }
  .content-row-banner .banner-cards .card .inner {
    padding: 0;
  }
  .content-row-banner .banner-cards .card .inner h3 {
    font-size: 32px;
  }
}
@media (max-width: 700px) {
  .wrapper.big {
    padding: 0 20px;
  }

  .btn-category {
    margin: 45px auto;
  }
  .btn-category div a .btn, .btn-category div a .gform_footer .form-submit input[type=submit], .gform_footer .form-submit .btn-category div a input[type=submit], .btn-category div a .gform_page_footer input[type=submit], .gform_page_footer .btn-category div a input[type=submit],
.btn-category div a .gform_page_footer input[type=button],
.gform_page_footer .btn-category div a input[type=button], .btn-category div a .error404 .the-content .in-content, .error404 .the-content .btn-category div a .in-content {
    padding: 15px 13px;
  }

  .category-buttons {
    margin: 20px auto 50px;
  }
  .category-buttons .btn, .category-buttons .gform_footer .form-submit input[type=submit], .gform_footer .form-submit .category-buttons input[type=submit], .category-buttons .gform_page_footer input[type=submit], .gform_page_footer .category-buttons input[type=submit],
.category-buttons .gform_page_footer input[type=button],
.gform_page_footer .category-buttons input[type=button], .category-buttons .error404 .the-content .in-content, .error404 .the-content .category-buttons .in-content {
    display: none;
  }
  .category-buttons select {
    display: block;
  }
}
@media (max-width: 680px) {
  .content-row-banner .banner-menu {
    display: none;
  }

  .slice, .related-news {
    padding: 65px 0;
  }
  .slice.padding-half, .padding-half.related-news {
    padding: 35px 0;
  }

  #header {
    height: 100px;
    background-color: #FFF;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.16);
  }
  #header .mobile-nav-trigger {
    margin-left: 15px;
  }
  #header.shrink {
    padding: 10px 0 0 0;
    height: 70px;
  }
  #header.shrink #site-logo {
    width: 50px;
    height: 50px;
  }
  #header #site-logo {
    width: 75px;
    height: 75px;
  }
  #header .tel {
    display: none;
  }
  #header .btn, #header .gform_footer .form-submit input[type=submit], .gform_footer .form-submit #header input[type=submit], #header .gform_page_footer input[type=submit], .gform_page_footer #header input[type=submit],
#header .gform_page_footer input[type=button],
.gform_page_footer #header input[type=button], #header .error404 .the-content .in-content, .error404 .the-content #header .in-content {
    padding: 8px 14px;
    font-size: 12px;
  }
  #header .nav-trigger {
    top: 35px;
    right: 20px;
    margin-left: 20px;
  }
  #header #mobile-nav {
    top: 100px;
  }

  #footer h3 {
    margin-bottom: 20px;
  }
  #footer .footer-placement {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
  }
  #footer .footer-placement .menu-logo-footer {
    flex-direction: row;
    align-items: center;
  }
  #footer .footer-placement .menu-logo-footer .logo-reseau {
    margin: 0 0 20px 30px;
  }
  #footer .footer-placement .joindre .btn, #footer .footer-placement .joindre .gform_footer .form-submit input[type=submit], .gform_footer .form-submit #footer .footer-placement .joindre input[type=submit], #footer .footer-placement .joindre .gform_page_footer input[type=submit], .gform_page_footer #footer .footer-placement .joindre input[type=submit],
#footer .footer-placement .joindre .gform_page_footer input[type=button],
.gform_page_footer #footer .footer-placement .joindre input[type=button], #footer .footer-placement .joindre .error404 .the-content .in-content, .error404 .the-content #footer .footer-placement .joindre .in-content {
    padding: 20px 100px;
    margin: 10px 0;
  }
  #footer .footer-placement .joindre .btn.courriel, #footer .footer-placement .joindre .gform_footer .form-submit input.courriel[type=submit], .gform_footer .form-submit #footer .footer-placement .joindre input.courriel[type=submit], #footer .footer-placement .joindre .gform_page_footer input.courriel[type=submit], .gform_page_footer #footer .footer-placement .joindre input.courriel[type=submit],
#footer .footer-placement .joindre .gform_page_footer input.courriel[type=button],
.gform_page_footer #footer .footer-placement .joindre input.courriel[type=button], #footer .footer-placement .joindre .error404 .the-content .courriel.in-content, .error404 .the-content #footer .footer-placement .joindre .courriel.in-content {
    margin-top: 0;
  }
  #footer #site-copyright {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  #footer #site-copyright img {
    padding: 15px 0;
  }
  #footer #site-copyright span {
    display: none;
  }
  #footer #site-copyright br {
    display: inline;
  }

  .content-row-form .wrapper .inner img {
    width: 75px;
    height: 75px;
  }
  .content-row-form .gform_heading .gform_title {
    font-size: 30px;
  }
  .content-row-form .gform_footer .form-submit {
    margin-bottom: 0;
  }

  .content-row-banner .banner-content {
    height: auto;
    max-height: none !important;
  }
  .content-row-banner .banner-content.show-cards {
    padding-bottom: 35px;
  }
  .content-row-banner .banner-content:not(.show-cards) .inner-banner {
    padding: 100px 0;
  }
  .content-row-banner .banner-content.big {
    max-height: 340px;
  }
  .content-row-banner .banner-content.big .inner {
    padding-top: 100px;
  }
  .content-row-banner .banner-content.normal {
    max-height: 300px;
  }
  .content-row-banner .banner-content.normal .inner {
    padding-top: 165px;
  }
  .content-row-banner .banner-content.normal .inner .buttons {
    margin-top: 10px;
  }
  .content-row-banner .banner-content.normal .inner .buttons .btn, .content-row-banner .banner-content.normal .inner .buttons .gform_footer .form-submit input[type=submit], .gform_footer .form-submit .content-row-banner .banner-content.normal .inner .buttons input[type=submit], .content-row-banner .banner-content.normal .inner .buttons .gform_page_footer input[type=submit], .gform_page_footer .content-row-banner .banner-content.normal .inner .buttons input[type=submit],
.content-row-banner .banner-content.normal .inner .buttons .gform_page_footer input[type=button],
.gform_page_footer .content-row-banner .banner-content.normal .inner .buttons input[type=button], .content-row-banner .banner-content.normal .inner .buttons .error404 .the-content .in-content, .error404 .the-content .content-row-banner .banner-content.normal .inner .buttons .in-content {
    font-size: 12px;
    padding: 10px 16px;
  }
  .content-row-banner .banner-content .inner {
    padding-top: 100px !important;
  }
  .content-row-banner .banner-content .inner-banner {
    padding: 35px 0;
  }
  .content-row-banner .banner-content h1 {
    font-size: 22px;
  }
  .content-row-banner .banner-cards {
    margin-top: -35px;
  }
  .content-row-banner .banner-cards .card {
    margin-bottom: 20px;
  }
  .content-row-banner .banner-cards .card:after {
    padding-top: 100%;
  }
  .content-row-banner .banner-cards .card:hover {
    transform: none;
  }
  .content-row-banner .banner-cards .card:hover .inner {
    transform: none;
  }
  .content-row-banner .banner-cards .card:hover .inner .btn, .content-row-banner .banner-cards .card:hover .inner .gform_footer .form-submit input[type=submit], .gform_footer .form-submit .content-row-banner .banner-cards .card:hover .inner input[type=submit], .content-row-banner .banner-cards .card:hover .inner .gform_page_footer input[type=submit], .gform_page_footer .content-row-banner .banner-cards .card:hover .inner input[type=submit],
.content-row-banner .banner-cards .card:hover .inner .gform_page_footer input[type=button],
.gform_page_footer .content-row-banner .banner-cards .card:hover .inner input[type=button], .content-row-banner .banner-cards .card:hover .inner .error404 .the-content .in-content, .error404 .the-content .content-row-banner .banner-cards .card:hover .inner .in-content {
    transform: none;
  }
  .content-row-banner .banner-cards .card:hover .inner h3:after {
    transform: none;
  }
  .content-row-banner .banner-cards .card .inner {
    padding: 0 25px 0;
  }
  .content-row-banner .banner-cards .card .inner h3 {
    font-size: 24px;
  }
  .content-row-banner .banner-menu {
    display: none;
  }

  .content-row-half-content-half-icons .info-col1 h3 {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .content-row-half-content-half-icons .info-col1 .the-content {
    text-align: left;
  }
  .content-row-half-content-half-icons .info-col1 .the-content p {
    max-width: 670px;
  }
  .content-row-half-content-half-icons .info-col1 .buttons {
    text-align: center;
    margin: 15px auto 60px;
    padding: 17px 34px;
  }
  .content-row-half-content-half-icons .info-col2 {
    display: block;
  }
  .content-row-half-content-half-icons .info-col2 h3 {
    font-size: 28px;
    margin-bottom: 40px;
    position: relative;
  }
  .content-row-half-content-half-icons .info-col2 .info-block {
    margin-bottom: 60px;
  }
  .content-row-half-content-half-icons .info-col2 .info-block .info-img {
    margin: 0 auto;
    width: 112px;
    height: 112px;
    border-radius: 50%;
    background-color: #ccdf67;
  }
  .content-row-half-content-half-icons .info-col2 .info-block p {
    margin: 20px auto 0;
    text-align: center;
    max-width: 200px;
  }

  .content-row-service-grid .img-block:before {
    padding-top: 100%;
  }
  .content-row-service-grid .text-block {
    text-align: left;
  }

  .left {
    display: flex;
    flex-direction: column;
  }

  .content-row-three-quarters-img-quarter-content {
    padding: 50px 0;
  }
  .content-row-three-quarters-img-quarter-content .inner-row {
    display: flex;
    flex-direction: column;
  }
  .content-row-three-quarters-img-quarter-content .inner-row .img {
    margin-top: 50px;
    order: 2;
    border-radius: 0;
  }
  .content-row-three-quarters-img-quarter-content .inner-row .inner {
    order: 1;
  }
  .content-row-three-quarters-img-quarter-content .inner-row .inner i {
    margin-bottom: 15px;
  }
  .content-row-three-quarters-img-quarter-content .inner-row .inner h2 {
    margin-bottom: 15px;
  }

  #blog-list .wrapper .info-blog,
.related-news .wrapper .info-blog {
    padding-left: 0;
    margin-bottom: 45px;
  }
  #blog-list .wrapper .info-blog div,
.related-news .wrapper .info-blog div {
    margin-bottom: 10px;
  }
  #blog-list .wrapper .info-blog h2,
.related-news .wrapper .info-blog h2 {
    margin-bottom: 20px;
    font-size: 24px;
    text-align: center;
  }
  #blog-list .wrapper .info-blog .the-content,
.related-news .wrapper .info-blog .the-content {
    margin-bottom: 20px;
    text-align: left;
  }
  #blog-list .wrapper .info-blog .btn-blog,
.related-news .wrapper .info-blog .btn-blog {
    text-align: left;
  }

  .blog-interne .wrapper .img-blog {
    height: 225px;
    margin-bottom: 25px;
  }
  .blog-interne .wrapper .img-blog img {
    width: 100%;
    height: 100%;
  }
  .blog-interne .wrapper .info-blog {
    margin-bottom: 0;
  }
  .blog-interne .wrapper .info-blog .time-category {
    flex-direction: column;
    align-items: flex-start;
  }
  .blog-interne .wrapper .info-blog .time-category .separator {
    display: none;
  }
  .blog-interne .wrapper .info-blog .time-category div {
    padding: 0;
  }
  .blog-interne .wrapper .info-blog h2 {
    margin-bottom: 15px;
    font-size: 24px;
  }

  .content-row-three-quarters-content-quarter-google-map .inner {
    width: 90%;
  }
  .content-row-three-quarters-content-quarter-google-map .bottom-row {
    padding-bottom: 70px;
  }
  .content-row-three-quarters-content-quarter-google-map .bottom-row .inner h2 {
    margin-top: 30px;
  }

  .content-row-three-quarter-content-quarter-img .star1,
.content-row-three-quarter-content-quarter-img .star2,
.content-row-half-content-half-img .star1,
.content-row-half-content-half-img .star2 {
    display: none;
  }
  .content-row-three-quarter-content-quarter-img .left-row h2,
.content-row-half-content-half-img .left-row h2 {
    font-size: 26px;
    text-align: center;
  }
  .content-row-three-quarter-content-quarter-img .left-row .buttons,
.content-row-half-content-half-img .left-row .buttons {
    flex-direction: column;
    align-items: center;
    margin-top: 35px;
    text-align: center;
    margin-right: 0;
  }
  .content-row-three-quarter-content-quarter-img .left-row .buttons div,
.content-row-half-content-half-img .left-row .buttons div {
    margin-right: 0;
  }
  .content-row-three-quarter-content-quarter-img .left-row .buttons div a,
.content-row-half-content-half-img .left-row .buttons div a {
    margin-right: 0;
    margin-bottom: 10px;
  }
  .content-row-three-quarter-content-quarter-img .right-row,
.content-row-half-content-half-img .right-row {
    padding: 0;
    align-items: center;
    margin-top: 30px;
  }
  .content-row-three-quarter-content-quarter-img .right-row img,
.content-row-half-content-half-img .right-row img {
    width: 100%;
  }
  .content-row-three-quarter-content-quarter-img .right-row p,
.content-row-half-content-half-img .right-row p {
    padding-right: 0;
    font-size: 12px;
  }
  .content-row-three-quarter-content-quarter-img .right-row .img-compare,
.content-row-half-content-half-img .right-row .img-compare {
    margin: 0 auto !important;
    width: 300px;
    height: 300px;
  }
  .content-row-three-quarter-content-quarter-img .right-row .img-compare > div,
.content-row-half-content-half-img .right-row .img-compare > div {
    width: 300px;
  }
  .content-row-three-quarter-content-quarter-img .right-row .img-compare > div > img,
.content-row-half-content-half-img .right-row .img-compare > div > img {
    width: 300px;
  }

  .content-row-full-content .inner-text h2 {
    font-size: 24px;
    margin-bottom: 0;
  }

  .content-row-three-quarters-small-img-quarter-content .content-top,
.content-row-three-quarters-video-quarter-content .content-top {
    padding: 0 0 25px 0;
  }
  .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .row .col-lg-5 .left-content.not-img h2, .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .col-lg-5 .left-content.not-img h2, .gform_wrapper .gform_body .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_fields .col-lg-5 .left-content.not-img h2,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .row .col-lg-5 .left-content.not-img h2,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .col-lg-5 .left-content.not-img h2,
.gform_wrapper .gform_body .content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_fields .col-lg-5 .left-content.not-img h2 {
    font-size: 24px;
    text-align: center;
  }
  .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .row .col-lg-5 .left-content.not-img h3, .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .col-lg-5 .left-content.not-img h3, .gform_wrapper .gform_body .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_fields .col-lg-5 .left-content.not-img h3,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .row .col-lg-5 .left-content.not-img h3,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .col-lg-5 .left-content.not-img h3,
.gform_wrapper .gform_body .content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_fields .col-lg-5 .left-content.not-img h3 {
    font-size: 16px;
  }
  .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .row .col-lg-5 .left-content.img-video .image:before, .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .col-lg-5 .left-content.img-video .image:before, .gform_wrapper .gform_body .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_fields .col-lg-5 .left-content.img-video .image:before,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .row .col-lg-5 .left-content.img-video .image:before,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .col-lg-5 .left-content.img-video .image:before,
.gform_wrapper .gform_body .content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_fields .col-lg-5 .left-content.img-video .image:before {
    display: none;
  }
  .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .row .col-lg-5 .left-content.img-video .image .controls, .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .col-lg-5 .left-content.img-video .image .controls, .gform_wrapper .gform_body .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_fields .col-lg-5 .left-content.img-video .image .controls,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .row .col-lg-5 .left-content.img-video .image .controls,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .col-lg-5 .left-content.img-video .image .controls,
.gform_wrapper .gform_body .content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_fields .col-lg-5 .left-content.img-video .image .controls {
    bottom: -50px;
  }
  .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .row .col-lg-5 .left-content.img-video .image .controls a, .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .col-lg-5 .left-content.img-video .image .controls a, .gform_wrapper .gform_body .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_fields .col-lg-5 .left-content.img-video .image .controls a,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .row .col-lg-5 .left-content.img-video .image .controls a,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .col-lg-5 .left-content.img-video .image .controls a,
.gform_wrapper .gform_body .content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_fields .col-lg-5 .left-content.img-video .image .controls a {
    width: 50px;
    height: 50px;
  }
  .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .row .col-lg-5 .right-content.not-img h2, .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .col-lg-5 .right-content.not-img h2, .gform_wrapper .gform_body .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_fields .col-lg-5 .right-content.not-img h2,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .row .col-lg-5 .right-content.not-img h2,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .col-lg-5 .right-content.not-img h2,
.gform_wrapper .gform_body .content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_fields .col-lg-5 .right-content.not-img h2 {
    font-size: 24px;
    text-align: center;
  }
  .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .row .col-lg-5 .right-content.not-img h3, .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .col-lg-5 .right-content.not-img h3, .gform_wrapper .gform_body .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_fields .col-lg-5 .right-content.not-img h3,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .row .col-lg-5 .right-content.not-img h3,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .col-lg-5 .right-content.not-img h3,
.gform_wrapper .gform_body .content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_fields .col-lg-5 .right-content.not-img h3 {
    font-size: 16px;
  }
  .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .row .col-lg-5 .right-content.img-video .image:before, .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .col-lg-5 .right-content.img-video .image:before, .gform_wrapper .gform_body .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_fields .col-lg-5 .right-content.img-video .image:before,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .row .col-lg-5 .right-content.img-video .image:before,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .col-lg-5 .right-content.img-video .image:before,
.gform_wrapper .gform_body .content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_fields .col-lg-5 .right-content.img-video .image:before {
    display: none;
  }
  .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .row .col-lg-5 .right-content.img-video .image .controls, .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .col-lg-5 .right-content.img-video .image .controls, .gform_wrapper .gform_body .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_fields .col-lg-5 .right-content.img-video .image .controls,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .row .col-lg-5 .right-content.img-video .image .controls,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .col-lg-5 .right-content.img-video .image .controls,
.gform_wrapper .gform_body .content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_fields .col-lg-5 .right-content.img-video .image .controls {
    bottom: -50px;
  }
  .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .row .col-lg-7 .left-content.img-video .image:before, .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .col-lg-7 .left-content.img-video .image:before, .gform_wrapper .gform_body .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_fields .col-lg-7 .left-content.img-video .image:before,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .row .col-lg-7 .left-content.img-video .image:before,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .col-lg-7 .left-content.img-video .image:before,
.gform_wrapper .gform_body .content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_fields .col-lg-7 .left-content.img-video .image:before {
    display: none;
  }
  .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .row .col-lg-7 .right-content.img-video .image:before, .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .col-lg-7 .right-content.img-video .image:before, .gform_wrapper .gform_body .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_fields .col-lg-7 .right-content.img-video .image:before,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .row .col-lg-7 .right-content.img-video .image:before,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .col-lg-7 .right-content.img-video .image:before,
.gform_wrapper .gform_body .content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_fields .col-lg-7 .right-content.img-video .image:before {
    display: none;
  }

  .content-row-half-content-half-img-duo .right-img .wrapper .row .duo-img img:first-of-type, .content-row-half-content-half-img-duo .right-img .wrapper .gform_wrapper .gform_body .gform_fields .duo-img img:first-of-type, .gform_wrapper .gform_body .content-row-half-content-half-img-duo .right-img .wrapper .gform_fields .duo-img img:first-of-type,
.content-row-half-content-half-img-duo .left-img .wrapper .row .duo-img img:first-of-type,
.content-row-half-content-half-img-duo .left-img .wrapper .gform_wrapper .gform_body .gform_fields .duo-img img:first-of-type,
.gform_wrapper .gform_body .content-row-half-content-half-img-duo .left-img .wrapper .gform_fields .duo-img img:first-of-type {
    height: unset;
  }
  .content-row-half-content-half-img-duo .right-img .wrapper .row .duo-img img:last-of-type, .content-row-half-content-half-img-duo .right-img .wrapper .gform_wrapper .gform_body .gform_fields .duo-img img:last-of-type, .gform_wrapper .gform_body .content-row-half-content-half-img-duo .right-img .wrapper .gform_fields .duo-img img:last-of-type,
.content-row-half-content-half-img-duo .left-img .wrapper .row .duo-img img:last-of-type,
.content-row-half-content-half-img-duo .left-img .wrapper .gform_wrapper .gform_body .gform_fields .duo-img img:last-of-type,
.gform_wrapper .gform_body .content-row-half-content-half-img-duo .left-img .wrapper .gform_fields .duo-img img:last-of-type {
    max-width: 165px;
    right: -10px;
    bottom: -10px;
    top: unset;
    left: unset;
  }

  .content-row-product .produits p {
    font-size: 16px;
    padding-top: 55px;
  }
  .content-row-product .produits .buttons a {
    font-size: 12px;
  }
  .content-row-product .produits img {
    width: 115px;
    height: 130px;
    top: -80px;
    left: calc(50% - 48px);
  }

  .content-row-testimonials .testimonial svg {
    width: 75px;
  }
  .content-row-testimonials .testimonial h2 {
    font-size: 24px;
  }

  .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .row .left-content.not-img,
.content-row-three-quarters-small-img-quarter-content .content-top .wrapper .row .right-content.not-img,
.content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .left-content.not-img,
.content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .right-content.not-img,
.gform_wrapper .gform_body .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_fields .left-content.not-img,
.gform_wrapper .gform_body .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_fields .right-content.not-img,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .row .left-content.not-img,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .left-content.not-img,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .right-content.not-img,
.gform_wrapper .gform_body .content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_fields .left-content.not-img,
.gform_wrapper .gform_body .content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_fields .right-content.not-img {
    text-align: left !important;
  }
  .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .row .left-content.not-img > *,
.content-row-three-quarters-small-img-quarter-content .content-top .wrapper .row .right-content.not-img > *,
.content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .left-content.not-img > *,
.content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .right-content.not-img > *,
.gform_wrapper .gform_body .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_fields .left-content.not-img > *,
.gform_wrapper .gform_body .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_fields .right-content.not-img > *,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .row .left-content.not-img > *,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .left-content.not-img > *,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .right-content.not-img > *,
.gform_wrapper .gform_body .content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_fields .left-content.not-img > *,
.gform_wrapper .gform_body .content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_fields .right-content.not-img > * {
    text-align: left !important;
  }

  .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .row .right-content.img-video .image.video, .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .right-content.img-video .image.video, .gform_wrapper .gform_body .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_fields .right-content.img-video .image.video,
.content-row-three-quarters-small-img-quarter-content .content-top .wrapper .row .left-content.img-video .image.video,
.content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .left-content.img-video .image.video,
.gform_wrapper .gform_body .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_fields .left-content.img-video .image.video,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .row .right-content.img-video .image.video,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .right-content.img-video .image.video,
.gform_wrapper .gform_body .content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_fields .right-content.img-video .image.video,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .row .left-content.img-video .image.video,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .left-content.img-video .image.video,
.gform_wrapper .gform_body .content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_fields .left-content.img-video .image.video {
    overflow: hidden;
  }
  .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .row .right-content.img-video .image.video:before, .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .right-content.img-video .image.video:before, .gform_wrapper .gform_body .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_fields .right-content.img-video .image.video:before,
.content-row-three-quarters-small-img-quarter-content .content-top .wrapper .row .left-content.img-video .image.video:before,
.content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .left-content.img-video .image.video:before,
.gform_wrapper .gform_body .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_fields .left-content.img-video .image.video:before,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .row .right-content.img-video .image.video:before,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .right-content.img-video .image.video:before,
.gform_wrapper .gform_body .content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_fields .right-content.img-video .image.video:before,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .row .left-content.img-video .image.video:before,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .left-content.img-video .image.video:before,
.gform_wrapper .gform_body .content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_fields .left-content.img-video .image.video:before {
    display: block;
  }
  .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .row .right-content.img-video .image.video .controls, .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .right-content.img-video .image.video .controls, .gform_wrapper .gform_body .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_fields .right-content.img-video .image.video .controls,
.content-row-three-quarters-small-img-quarter-content .content-top .wrapper .row .left-content.img-video .image.video .controls,
.content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .left-content.img-video .image.video .controls,
.gform_wrapper .gform_body .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_fields .left-content.img-video .image.video .controls,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .row .right-content.img-video .image.video .controls,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .right-content.img-video .image.video .controls,
.gform_wrapper .gform_body .content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_fields .right-content.img-video .image.video .controls,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .row .left-content.img-video .image.video .controls,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .left-content.img-video .image.video .controls,
.gform_wrapper .gform_body .content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_fields .left-content.img-video .image.video .controls {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .row .right-content.img-video .image.video .controls > a, .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .right-content.img-video .image.video .controls > a, .gform_wrapper .gform_body .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_fields .right-content.img-video .image.video .controls > a,
.content-row-three-quarters-small-img-quarter-content .content-top .wrapper .row .left-content.img-video .image.video .controls > a,
.content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .left-content.img-video .image.video .controls > a,
.gform_wrapper .gform_body .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_fields .left-content.img-video .image.video .controls > a,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .row .right-content.img-video .image.video .controls > a,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .right-content.img-video .image.video .controls > a,
.gform_wrapper .gform_body .content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_fields .right-content.img-video .image.video .controls > a,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .row .left-content.img-video .image.video .controls > a,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .left-content.img-video .image.video .controls > a,
.gform_wrapper .gform_body .content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_fields .left-content.img-video .image.video .controls > a {
    width: 40px;
    height: 40px;
  }
  .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .row .right-content.img-video .image.video .controls > a > img, .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .right-content.img-video .image.video .controls > a > img, .gform_wrapper .gform_body .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_fields .right-content.img-video .image.video .controls > a > img,
.content-row-three-quarters-small-img-quarter-content .content-top .wrapper .row .left-content.img-video .image.video .controls > a > img,
.content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .left-content.img-video .image.video .controls > a > img,
.gform_wrapper .gform_body .content-row-three-quarters-small-img-quarter-content .content-top .wrapper .gform_fields .left-content.img-video .image.video .controls > a > img,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .row .right-content.img-video .image.video .controls > a > img,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .right-content.img-video .image.video .controls > a > img,
.gform_wrapper .gform_body .content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_fields .right-content.img-video .image.video .controls > a > img,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .row .left-content.img-video .image.video .controls > a > img,
.content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_wrapper .gform_body .gform_fields .left-content.img-video .image.video .controls > a > img,
.gform_wrapper .gform_body .content-row-three-quarters-video-quarter-content .content-top .wrapper .gform_fields .left-content.img-video .image.video .controls > a > img {
    width: 20px;
    height: 20px;
    border-radius: 0;
  }
}

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