/*
 * animate.css - https://animate.style/
 * Version - 4.1.1
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2020 Animate.css
 */
:root {
  --animate-duration: 1s;
  --animate-delay: 1s;
  --animate-repeat: 1;
}
.animate__animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-duration: var(--animate-duration);
  animation-duration: var(--animate-duration);
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.animate__animated.animate__infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
.animate__animated.animate__repeat-1 {
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-iteration-count: var(--animate-repeat);
  animation-iteration-count: var(--animate-repeat);
}
.animate__animated.animate__repeat-2 {
  -webkit-animation-iteration-count: 2;
  animation-iteration-count: 2;
  -webkit-animation-iteration-count: calc(var(--animate-repeat) * 2);
  animation-iteration-count: calc(var(--animate-repeat) * 2);
}
.animate__animated.animate__repeat-3 {
  -webkit-animation-iteration-count: 3;
  animation-iteration-count: 3;
  -webkit-animation-iteration-count: calc(var(--animate-repeat) * 3);
  animation-iteration-count: calc(var(--animate-repeat) * 3);
}
.animate__animated.animate__delay-1s {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
  -webkit-animation-delay: var(--animate-delay);
  animation-delay: var(--animate-delay);
}
.animate__animated.animate__delay-2s {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
  -webkit-animation-delay: calc(var(--animate-delay) * 2);
  animation-delay: calc(var(--animate-delay) * 2);
}
.animate__animated.animate__delay-3s {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
  -webkit-animation-delay: calc(var(--animate-delay) * 3);
  animation-delay: calc(var(--animate-delay) * 3);
}
.animate__animated.animate__delay-4s {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
  -webkit-animation-delay: calc(var(--animate-delay) * 4);
  animation-delay: calc(var(--animate-delay) * 4);
}
.animate__animated.animate__delay-5s {
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
  -webkit-animation-delay: calc(var(--animate-delay) * 5);
  animation-delay: calc(var(--animate-delay) * 5);
}
.animate__animated.animate__faster {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-duration: calc(var(--animate-duration) / 2);
  animation-duration: calc(var(--animate-duration) / 2);
}
.animate__animated.animate__fast {
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
  -webkit-animation-duration: calc(var(--animate-duration) * 0.8);
  animation-duration: calc(var(--animate-duration) * 0.8);
}
.animate__animated.animate__slow {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-duration: calc(var(--animate-duration) * 2);
  animation-duration: calc(var(--animate-duration) * 2);
}
.animate__animated.animate__slower {
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-duration: calc(var(--animate-duration) * 3);
  animation-duration: calc(var(--animate-duration) * 3);
}
@media (prefers-reduced-motion: reduce), print {
  .animate__animated {
    -webkit-animation-duration: 1ms !important;
    animation-duration: 1ms !important;
    -webkit-transition-duration: 1ms !important;
    transition-duration: 1ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
  }
  .animate__animated[class*="Out"] {
    opacity: 0;
  }
}
@-webkit-keyframes bounce {
  0%,
  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: translateZ(0);
    transform: translateZ(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: translateZ(0) scaleY(0.95);
    transform: translateZ(0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}
@keyframes bounce {
  0%,
  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: translateZ(0);
    transform: translateZ(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: translateZ(0) scaleY(0.95);
    transform: translateZ(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 {
  0%,
  50%,
  to {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}
@keyframes flash {
  0%,
  50%,
  to {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}
.animate__flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
@keyframes pulse {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(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 {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(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: scaleX(1);
    transform: scaleX(1);
  }
}
@keyframes rubberBand {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(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: scaleX(1);
    transform: scaleX(1);
  }
}
.animate__rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}
@-webkit-keyframes shakeX {
  0%,
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(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 {
  0%,
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
.animate__shakeX {
  -webkit-animation-name: shakeX;
  animation-name: shakeX;
}
@-webkit-keyframes shakeY {
  0%,
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(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 {
  0%,
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(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: rotate(15deg);
    transform: rotate(15deg);
  }
  40% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  60% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }
  80% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }
  to {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
@keyframes swing {
  20% {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
  }
  40% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  60% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }
  80% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }
  to {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
.animate__swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}
@-webkit-keyframes tada {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
  }
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
  }
  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
  }
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
@keyframes tada {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
  }
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
  }
  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
  }
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
.animate__tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}
@-webkit-keyframes wobble {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate(-5deg);
    transform: translate3d(-25%, 0, 0) rotate(-5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate(3deg);
    transform: translate3d(20%, 0, 0) rotate(3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate(-3deg);
    transform: translate3d(-15%, 0, 0) rotate(-3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate(2deg);
    transform: translate3d(10%, 0, 0) rotate(2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate(-1deg);
    transform: translate3d(-5%, 0, 0) rotate(-1deg);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes wobble {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate(-5deg);
    transform: translate3d(-25%, 0, 0) rotate(-5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate(3deg);
    transform: translate3d(20%, 0, 0) rotate(3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate(-3deg);
    transform: translate3d(-15%, 0, 0) rotate(-3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate(2deg);
    transform: translate3d(10%, 0, 0) rotate(2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate(-1deg);
    transform: translate3d(-5%, 0, 0) rotate(-1deg);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}
@-webkit-keyframes jello {
  0%,
  11.1%,
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(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.39062deg) skewY(0.39062deg);
    transform: skewX(0.39062deg) skewY(0.39062deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg);
    transform: skewX(-0.19531deg) skewY(-0.19531deg);
  }
}
@keyframes jello {
  0%,
  11.1%,
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(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.39062deg) skewY(0.39062deg);
    transform: skewX(0.39062deg) skewY(0.39062deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg);
    transform: skewX(-0.19531deg) skewY(-0.19531deg);
  }
}
.animate__jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  transform-origin: center;
}
@-webkit-keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.animate__heartBeat {
  -webkit-animation-name: heartBeat;
  animation-name: heartBeat;
  -webkit-animation-duration: 1.3s;
  animation-duration: 1.3s;
  -webkit-animation-duration: calc(var(--animate-duration) * 1.3);
  animation-duration: calc(var(--animate-duration) * 1.3);
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}
@-webkit-keyframes backInDown {
  0% {
    -webkit-transform: translateY(-1200px) scale(0.7);
    transform: translateY(-1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    -webkit-transform: translateY(0) scale(0.7);
    transform: translateY(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    -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(0) scale(0.7);
    transform: translateY(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    -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(0) scale(0.7);
    transform: translateX(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    -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(0) scale(0.7);
    transform: translateX(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    -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(0) scale(0.7);
    transform: translateX(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    -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(0) scale(0.7);
    transform: translateX(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    -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(0) scale(0.7);
    transform: translateY(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    -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(0) scale(0.7);
    transform: translateY(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInUp {
  -webkit-animation-name: backInUp;
  animation-name: backInUp;
}
@-webkit-keyframes backOutDown {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateY(0) scale(0.7);
    transform: translateY(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    -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(0) scale(0.7);
    transform: translateY(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    -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(0) scale(0.7);
    transform: translateX(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    -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(0) scale(0.7);
    transform: translateX(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    -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(0) scale(0.7);
    transform: translateX(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    -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(0) scale(0.7);
    transform: translateX(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    -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(0) scale(0.7);
    transform: translateY(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    -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(0) scale(0.7);
    transform: translateY(0) scale(0.7);
    opacity: 0.7;
  }
  to {
    -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;
}
@-webkit-keyframes bounceIn {
  0%,
  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: scaleX(1);
    transform: scaleX(1);
  }
}
@keyframes bounceIn {
  0%,
  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: scaleX(1);
    transform: scaleX(1);
  }
}
.animate__bounceIn {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}
@-webkit-keyframes bounceInDown {
  0%,
  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: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes bounceInDown {
  0%,
  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: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}
@-webkit-keyframes bounceInLeft {
  0%,
  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: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes bounceInLeft {
  0%,
  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: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}
@-webkit-keyframes bounceInRight {
  0%,
  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: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes bounceInRight {
  0%,
  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: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}
@-webkit-keyframes bounceInUp {
  0%,
  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(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: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes bounceInUp {
  0%,
  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(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: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}
@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%,
  55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%,
  55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.animate__bounceOut {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}
@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.985);
    transform: translate3d(0, 10px, 0) scaleY(0.985);
  }
  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0) scaleY(3);
    transform: translate3d(0, 2000px, 0) scaleY(3);
  }
}
@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.985);
    transform: translate3d(0, 10px, 0) scaleY(0.985);
  }
  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0) scaleY(3);
    transform: translate3d(0, 2000px, 0) scaleY(3);
  }
}
.animate__bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}
@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0) scaleX(0.9);
    transform: translate3d(20px, 0, 0) scaleX(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0) scaleX(2);
    transform: translate3d(-2000px, 0, 0) scaleX(2);
  }
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0) scaleX(0.9);
    transform: translate3d(20px, 0, 0) scaleX(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0) scaleX(2);
    transform: translate3d(-2000px, 0, 0) scaleX(2);
  }
}
.animate__bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}
@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0) scaleX(0.9);
    transform: translate3d(-20px, 0, 0) scaleX(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0) scaleX(2);
    transform: translate3d(2000px, 0, 0) scaleX(2);
  }
}
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0) scaleX(0.9);
    transform: translate3d(-20px, 0, 0) scaleX(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0) scaleX(2);
    transform: translate3d(2000px, 0, 0) scaleX(2);
  }
}
.animate__bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}
@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.985);
    transform: translate3d(0, -10px, 0) scaleY(0.985);
  }
  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0) scaleY(0.9);
    transform: translate3d(0, 20px, 0) scaleY(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0) scaleY(3);
    transform: translate3d(0, -2000px, 0) scaleY(3);
  }
}
@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.985);
    transform: translate3d(0, -10px, 0) scaleY(0.985);
  }
  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0) scaleY(0.9);
    transform: translate3d(0, 20px, 0) scaleY(0.9);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0) scaleY(3);
    transform: translate3d(0, -2000px, 0) scaleY(3);
  }
}
.animate__bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.animate__fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}
@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}
@-webkit-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}
@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}
@-webkit-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}
@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}
@-webkit-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}
@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}
@-webkit-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}
@-webkit-keyframes fadeInTopLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInTopLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__fadeInTopLeft {
  -webkit-animation-name: fadeInTopLeft;
  animation-name: fadeInTopLeft;
}
@-webkit-keyframes fadeInTopRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInTopRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__fadeInTopRight {
  -webkit-animation-name: fadeInTopRight;
  animation-name: fadeInTopRight;
}
@-webkit-keyframes fadeInBottomLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInBottomLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__fadeInBottomLeft {
  -webkit-animation-name: fadeInBottomLeft;
  animation-name: fadeInBottomLeft;
}
@-webkit-keyframes fadeInBottomRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInBottomRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__fadeInBottomRight {
  -webkit-animation-name: fadeInBottomRight;
  animation-name: fadeInBottomRight;
}
@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.animate__fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}
@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes fadeOutDown {
  0% {
    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 {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes fadeOutDownBig {
  0% {
    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 {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes fadeOutLeft {
  0% {
    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 {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes fadeOutLeftBig {
  0% {
    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 {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes fadeOutRight {
  0% {
    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 {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes fadeOutRightBig {
  0% {
    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 {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes fadeOutUp {
  0% {
    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 {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes fadeOutUpBig {
  0% {
    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 {
  0% {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
}
@keyframes fadeOutTopLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(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 {
  0% {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
}
@keyframes fadeOutTopRight {
  0% {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(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 {
  0% {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
}
@keyframes fadeOutBottomRight {
  0% {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(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 {
  0% {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
}
@keyframes fadeOutBottomLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
}
.animate__fadeOutBottomLeft {
  -webkit-animation-name: fadeOutBottomLeft;
  animation-name: fadeOutBottomLeft;
}
@-webkit-keyframes flip {
  0% {
    -webkit-transform: perspective(400px) scaleX(1) translateZ(0)
      rotateY(-1turn);
    transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) scaleX(1) translateZ(150px)
      rotateY(-190deg);
    transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) scaleX(1) translateZ(150px)
      rotateY(-170deg);
    transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95)
      translateZ(0) rotateY(0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translateZ(0)
      rotateY(0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
    transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
@keyframes flip {
  0% {
    -webkit-transform: perspective(400px) scaleX(1) translateZ(0)
      rotateY(-1turn);
    transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) scaleX(1) translateZ(150px)
      rotateY(-190deg);
    transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) scaleX(1) translateZ(150px)
      rotateY(-170deg);
    transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95)
      translateZ(0) rotateY(0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translateZ(0)
      rotateY(0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
    transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
.animate__animated.animate__flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}
@-webkit-keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateX(-20deg);
    transform: perspective(400px) rotateX(-20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotateX(-5deg);
    transform: perspective(400px) rotateX(-5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateX(-20deg);
    transform: perspective(400px) rotateX(-20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotateX(-5deg);
    transform: perspective(400px) rotateX(-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 {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateY(-20deg);
    transform: perspective(400px) rotateY(-20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotateY(-5deg);
    transform: perspective(400px) rotateY(-5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateY(-20deg);
    transform: perspective(400px) rotateY(-20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotateY(-5deg);
    transform: perspective(400px) rotateY(-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 {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotateX(-20deg);
    transform: perspective(400px) rotateX(-20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}
@keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotateX(-20deg);
    transform: perspective(400px) rotateX(-20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}
.animate__flipOutX {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}
@-webkit-keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotateY(-15deg);
    transform: perspective(400px) rotateY(-15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}
@keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotateY(-15deg);
    transform: perspective(400px) rotateY(-15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}
.animate__flipOutY {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}
@-webkit-keyframes lightSpeedInRight {
  0% {
    -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: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes lightSpeedInRight {
  0% {
    -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: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__lightSpeedInRight {
  -webkit-animation-name: lightSpeedInRight;
  animation-name: lightSpeedInRight;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}
@-webkit-keyframes lightSpeedInLeft {
  0% {
    -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: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes lightSpeedInLeft {
  0% {
    -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: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__lightSpeedInLeft {
  -webkit-animation-name: lightSpeedInLeft;
  animation-name: lightSpeedInLeft;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}
@-webkit-keyframes lightSpeedOutRight {
  0% {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOutRight {
  0% {
    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 {
  0% {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(-30deg);
    transform: translate3d(-100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOutLeft {
  0% {
    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;
}
@-webkit-keyframes rotateIn {
  0% {
    -webkit-transform: rotate(-200deg);
    transform: rotate(-200deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}
@keyframes rotateIn {
  0% {
    -webkit-transform: rotate(-200deg);
    transform: rotate(-200deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}
.animate__rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
  -webkit-transform-origin: center;
  transform-origin: center;
}
@-webkit-keyframes rotateInDownLeft {
  0% {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}
@keyframes rotateInDownLeft {
  0% {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}
.animate__rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}
@-webkit-keyframes rotateInDownRight {
  0% {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}
@keyframes rotateInDownRight {
  0% {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}
.animate__rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}
@-webkit-keyframes rotateInUpLeft {
  0% {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}
@keyframes rotateInUpLeft {
  0% {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}
.animate__rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}
@-webkit-keyframes rotateInUpRight {
  0% {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}
@keyframes rotateInUpRight {
  0% {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}
.animate__rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}
@-webkit-keyframes rotateOut {
  0% {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate(200deg);
    transform: rotate(200deg);
    opacity: 0;
  }
}
@keyframes rotateOut {
  0% {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate(200deg);
    transform: rotate(200deg);
    opacity: 0;
  }
}
.animate__rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
  -webkit-transform-origin: center;
  transform-origin: center;
}
@-webkit-keyframes rotateOutDownLeft {
  0% {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownLeft {
  0% {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0;
  }
}
.animate__rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}
@-webkit-keyframes rotateOutDownRight {
  0% {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownRight {
  0% {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0;
  }
}
.animate__rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}
@-webkit-keyframes rotateOutUpLeft {
  0% {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpLeft {
  0% {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0;
  }
}
.animate__rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}
@-webkit-keyframes rotateOutUpRight {
  0% {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpRight {
  0% {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}
.animate__rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}
@-webkit-keyframes hinge {
  0% {
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%,
  60% {
    -webkit-transform: rotate(80deg);
    transform: rotate(80deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%,
  80% {
    -webkit-transform: rotate(60deg);
    transform: rotate(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: rotate(80deg);
    transform: rotate(80deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%,
  80% {
    -webkit-transform: rotate(60deg);
    transform: rotate(60deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.animate__hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-duration: calc(var(--animate-duration) * 2);
  animation-duration: calc(var(--animate-duration) * 2);
  -webkit-animation-name: hinge;
  animation-name: hinge;
  -webkit-transform-origin: top left;
  transform-origin: top left;
}
@-webkit-keyframes jackInTheBox {
  0% {
    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 {
  0% {
    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;
}
@-webkit-keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate(-120deg);
    transform: translate3d(-100%, 0, 0) rotate(-120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate(-120deg);
    transform: translate3d(-100%, 0, 0) rotate(-120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}
@-webkit-keyframes rollOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate(120deg);
    transform: translate3d(100%, 0, 0) rotate(120deg);
  }
}
@keyframes rollOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate(120deg);
    transform: translate3d(100%, 0, 0) rotate(120deg);
  }
}
.animate__rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}
@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  100% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  100% {
    opacity: 1;
  }
}
.animate__zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}
@-webkit-keyframes zoomInDown {
  0% {
    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 {
  0% {
    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 {
  0% {
    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 {
  0% {
    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 {
  0% {
    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 {
  0% {
    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 {
  0% {
    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 {
  0% {
    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;
}
@-webkit-keyframes zoomOut {
  0% {
    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 {
  0% {
    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;
}
@-webkit-keyframes slideInDown {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes slideInDown {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}
@-webkit-keyframes slideInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes slideInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}
@-webkit-keyframes slideInRight {
  0% {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes slideInRight {
  0% {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}
@-webkit-keyframes slideInUp {
  0% {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes slideInUp {
  0% {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}
@-webkit-keyframes slideOutDown {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes slideOutDown {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(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 {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes slideOutLeft {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(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 {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes slideOutRight {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(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 {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes slideOutUp {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.animate__slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}
.visible-xs {
  display: none;
}
@media only screen and (max-width: 767px) {
  .hidden-xs {
    display: none;
  }
  .visible-xs {
    display: inline-block;
  }
}
.elementor-widget:not(:last-child) {
  margin-bottom: 0 !important;
}
.elementor-section.elementor-section-stretched {
  overflow: hidden;
}
.elementor-location-archive section.elementor-section,
.elementor-location-single section.elementor-section,
.page-content section.elementor-section {
  padding-top: 20px;
  padding-bottom: 20px;
}
#cookie-notice .cn-button.wp-default {
  background-color: #0089c7;
}
.elementor-section.elementor-section-stretched {
  width: 100vw;
  left: 0;
}
@media only screen and (max-width: 767px) {
  .elementor-column-gap-default
    > .elementor-row
    > .elementor-column
    > .elementor-element-populated {
    padding: 15px;
  }
}
@font-face {
  font-family: "GochiHand";
  src: url("assets/fonts/GochiHand-Regular.eot");
  src: url("assets/fonts/GochiHand-Regular.eot?#iefix")
      format("embedded-opentype"),
    url("assets/fonts/GochiHand-Regular.woff2") format("woff2"),
    url("assets/fonts/GochiHand-Regular.woff") format("woff"),
    url("assets/fonts/GochiHand-Regular.ttf") format("truetype"),
    url("assets/fonts/GochiHand-Regular.svg#svgFontName") format("svg");
}
body {
  font-size: 15px;
  color: #262626;
  font-family: "Ubuntu", Sans-serif;
}
a {
  color: #f49100;
}
a:hover {
  color: #f49100;
}
.elementor-widget-text-editor {
  color: #262626;
}
.elementor-widget-text-editor h3 {
  font-weight: bold;
  text-transform: uppercase;
  font-size: 1.5rem;
  color: #0089c7;
}
.elementor-widget-text-editor h3 strong,
.elementor-widget-text-editor h3 b {
  font-weight: bold;
  display: block;
}
@media only screen and (max-width: 1024px) {
  .elementor-widget-text-editor h3 {
    font-size: 1.4rem;
  }
}
@media only screen and (max-width: 767px) {
  .elementor-widget-text-editor h3 {
    font-size: 1.2rem;
  }
}
@media only screen and (max-width: 767px) {
  .elementor-widget-text-editor ul {
    padding-left: 20px;
  }
}
.elementor-widget-heading .elementor-heading-title {
  line-height: 1.2;
  margin-bottom: 20px;
}
.elementor-widget-heading h1,
.elementor-widget-heading .h1 {
  font-weight: 300 !important;
}
.elementor-widget-heading h2,
.elementor-widget-heading .h2 {
  font-weight: bold !important;
  text-transform: uppercase;
  color: #0089c7;
  font-size: 2.6rem;
  margin-bottom: 40px !important;
}
.elementor-widget-heading h2 span,
.elementor-widget-heading .h2 span {
  color: white;
  position: relative;
  z-index: 2;
  display: inline-block;
}
.elementor-widget-heading h2 span::before,
.elementor-widget-heading .h2 span::before {
  content: "";
  position: absolute;
  left: -8px;
  top: -3px;
  width: calc(100% + 16px);
  height: calc(100% + 6px);
  background-color: #f49100;
  z-index: -1;
}
@media only screen and (max-width: 1200px) {
  .elementor-widget-heading h2,
  .elementor-widget-heading .h2 {
    font-size: 2.2rem;
  }
}
@media only screen and (max-width: 1024px) {
  .elementor-widget-heading h2,
  .elementor-widget-heading .h2 {
    font-size: 2rem;
    margin-bottom: 20px !important;
  }
}
@media only screen and (max-width: 767px) {
  .elementor-widget-heading h2,
  .elementor-widget-heading .h2 {
    font-size: 1.4rem;
    margin-bottom: 10px !important;
  }
  .elementor-widget-heading h2 span::before,
  .elementor-widget-heading .h2 span::before {
    left: -6px;
    top: -2px;
    width: calc(100% + 12px);
    height: calc(100% + 4px);
  }
}
.elementor-widget-heading h3 {
  font-size: 1.5rem;
}
@media only screen and (max-width: 1024px) {
  .elementor-widget-heading h3 {
    font-size: 1.4rem;
  }
}
@media only screen and (max-width: 767px) {
  .elementor-widget-heading h3 {
    font-size: 1.1rem;
  }
}
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}
.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}
.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before,
.slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}
.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir="rtl"] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
  display: none;
}
.slick-prev,
.slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 100%;
  border: 3px solid #0089c7;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  cursor: pointer;
  color: transparent;
  outline: none;
  background: transparent;
  z-index: 2;
}
@media only screen and (max-width: 767px) {
  .slick-prev,
  .slick-next {
    width: 30px;
    height: 30px;
  }
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  color: transparent;
  outline: none;
  background: transparent;
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}
.slick-prev:before,
.slick-next:before,
.slick-prev:after,
.slick-next:after {
  content: "";
  opacity: 1;
  position: absolute;
  width: 4px;
  border-radius: 5px;
  height: 16px;
  background-color: #0089c7;
}
@media only screen and (max-width: 767px) {
  .slick-prev:before,
  .slick-next:before,
  .slick-prev:after,
  .slick-next:after {
    height: 10px;
  }
}
.slick-prev {
  left: 20px;
}
@media only screen and (max-width: 767px) {
  .slick-prev {
    left: 0;
  }
}
[dir="rtl"] .slick-prev {
  right: -20px;
  left: auto;
}
@media only screen and (max-width: 767px) {
  [dir="rtl"] .slick-prev {
    right: 0;
  }
}
.slick-prev:before,
[dir="rtl"] .slick-prev:before {
  transform: rotate(-45deg);
  bottom: 5px;
  left: 40%;
}
.slick-prev:after,
[dir="rtl"] .slick-prev:after {
  transform: rotate(45deg);
  top: 4px;
  left: 40%;
}
.slick-next {
  right: 20px;
}
@media only screen and (max-width: 767px) {
  .slick-next {
    right: 0;
  }
}
[dir="rtl"] .slick-next {
  right: auto;
  left: -20px;
}
@media only screen and (max-width: 767px) {
  [dir="rtl"] .slick-next {
    left: 0;
  }
}
.slick-next:before,
[dir="rtl"] .slick-next:before {
  transform: rotate(45deg);
  bottom: 5px;
  right: 40%;
}
.slick-next:after,
[dir="rtl"] .slick-next:after {
  transform: rotate(-45deg);
  top: 4px;
  right: 40%;
}
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}
.slick-dots {
  position: absolute;
  bottom: 20px;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  z-index: 5;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 12px;
  height: 12px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent !important;
}
.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  opacity: 1;
}
.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 12px;
  height: 12px;
  content: "";
  text-align: center;
  opacity: 1;
  background-color: white;
  border: 2px solid white;
  border-radius: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
  background-color: #0089c7;
}
.elementor-3790 {
  position: relative;
  width: 100%;
  z-index: 99;
}
@media only screen and (max-width: 767px) {
  .elementor-3790 {
    position: relative;
  }
}
#header_top .elementor-widget-nav-menu .menu-item {
  position: relative;
}
#header_top .elementor-widget-nav-menu .menu-item .elementor-item {
  color: #0089c7;
  padding: 0 15px;
  font-size: 0.8rem;
}
#header_top .elementor-widget-nav-menu .menu-item .elementor-item:hover {
  color: #f49100;
}
#header_top .elementor-widget-nav-menu .menu-item .elementor-item-active {
  color: #f49100;
}
#header_top .elementor-widget-nav-menu .menu-item::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  height: 16px;
  background-color: #0089c7;
  width: 1px;
  margin: auto 0;
}
#header_top .elementor-widget-nav-menu .menu-item:last-child::after {
  display: none;
}
#header_top .elementor-widget-search-form {
  margin: 0 20px;
}
#header_top .elementor-widget-search-form .elementor-search-form__toggle i {
  background-color: transparent;
  color: #0089c7;
}
#header_top .elementor-widget-wp-widget-polylang {
  display: none;
}
#header_mid .logo {
  padding: 10px;
  max-width: 240px;
}
#header_mid .col-contact span {
  color: #f49100;
}
#header_mid .col-contact .tel {
  background-color: #f49100;
  color: white;
  font-weight: bold;
  padding: 5px 20px;
  border-radius: 20px;
  display: inline-block;
  margin-top: 5px;
  background-image: url("assets/img/phone.svg");
  background-position: 14px center;
  background-size: 16px auto;
  background-repeat: no-repeat;
  padding-left: 38px;
}
#header_mid .elementor-widget-nav-menu .elementor-nav-menu > .menu-item {
  position: relative;
  border: 1px solid white;
  width: 30%;
}
#header_mid
  .elementor-widget-nav-menu
  .elementor-nav-menu
  > .menu-item
  .elementor-item {
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  color: white;
  background-color: #0089c7;
  padding: 8px 15px;
}
#header_mid
  .elementor-widget-nav-menu
  .elementor-nav-menu
  > .menu-item
  .elementor-item:hover {
  background-color: #f49100;
}
#header_mid
  .elementor-widget-nav-menu
  .elementor-nav-menu
  > .menu-item
  .elementor-item-active {
  background-color: #f49100;
}
#header_mid
  .elementor-widget-nav-menu
  .elementor-nav-menu
  > .menu-item
  .elementor-item
  img {
  margin: 0 auto 5px;
  width: 25px !important;
}
#header_mid
  .elementor-widget-nav-menu
  .elementor-nav-menu
  > .menu-item
  .elementor-item
  span {
  width: 100%;
  text-align: center;
  font-size: 0.8rem;
}
#header_bottom {
  overflow: visible;
  -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.1);
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.1);
}
#header_bottom .elementor-widget-nav-menu .elementor-nav-menu > .menu-item {
  position: unset;
}
#header_bottom
  .elementor-widget-nav-menu
  .elementor-nav-menu
  > .menu-item
  .elementor-item {
  color: #0089c7;
  padding: 12px;
}
#header_bottom
  .elementor-widget-nav-menu
  .elementor-nav-menu
  > .menu-item
  .elementor-item:hover {
  color: #f49100;
}
#header_bottom
  .elementor-widget-nav-menu
  .elementor-nav-menu
  > .menu-item
  .elementor-item-active {
  color: #f49100;
}
#header_bottom .elementor-widget-nav-menu .elementor-nav-menu > .menu-item a {
  position: relative;
}
#header_bottom
  .elementor-widget-nav-menu
  .elementor-nav-menu
  > .menu-item
  a::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  height: 16px;
  background-color: #0089c7;
  width: 1px;
  margin: auto 0;
  opacity: 1;
}
#header_bottom
  .elementor-widget-nav-menu
  .elementor-nav-menu
  > .menu-item:last-child
  a::after {
  display: none;
}
#header_bottom
  .elementor-widget-nav-menu
  .elementor-nav-menu
  > .menu-item-has-children
  > a {
  position: relative;
}
#header_bottom
  .elementor-widget-nav-menu
  .elementor-nav-menu
  > .menu-item-has-children
  > a::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  z-index: 99;
  margin: 0 auto;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px 10px 0 10px;
  opacity: 0;
  bottom: 0;
  background-color: transparent;
  border-color: white transparent transparent transparent;
  transition-delay: 0.3s;
  -webkit-transition: opacity 0.1s ease-in, bottom 0.3s ease-in;
  -moz-transition: opacity 0.1s ease-in, bottom 0.3s ease-in;
  -ms-transition: opacity 0.1s ease-in, bottom 0.3s ease-in;
  -o-transition: opacity 0.1s ease-in, bottom 0.3s ease-in;
  transition: opacity 0.1s ease-in, bottom 0.3s ease-in;
}
#header_bottom
  .elementor-widget-nav-menu
  .elementor-nav-menu
  > .menu-item-has-children
  > a.elementor-item.highlighted::before,
#header_bottom
  .elementor-widget-nav-menu
  .elementor-nav-menu
  > .menu-item-has-children
  > a:hover::before {
  bottom: -12px;
  opacity: 1;
  transition-delay: 0.3s;
  -webkit-transition: opacity 0.3s ease-in, bottom 0.3s ease-in;
  -moz-transition: opacity 0.3s ease-in, bottom 0.3s ease-in;
  -ms-transition: opacity 0.3s ease-in, bottom 0.3s ease-in;
  -o-transition: opacity 0.3s ease-in, bottom 0.3s ease-in;
  transition: opacity 0.3s ease-in, bottom 0.3s ease-in;
}
#header_bottom
  .elementor-widget-nav-menu
  .elementor-nav-menu
  > .menu-item
  .sub-menu {
  background-color: #0089c7;
  width: 100% !important;
  left: 0 !important;
  right: 0 !important;
  margin: 0 auto !important;
  max-width: 1040px !important;
  padding: 20px 0;
}
#header_bottom
  .elementor-widget-nav-menu
  .elementor-nav-menu
  > .menu-item
  .sub-menu::before,
#header_bottom
  .elementor-widget-nav-menu
  .elementor-nav-menu
  > .menu-item
  .sub-menu::after {
  content: "";
  width: calc((100vw - 1040px) / 2);
  height: 100%;
  position: absolute;
  background-color: #0089c7;
  top: 0;
}
#header_bottom
  .elementor-widget-nav-menu
  .elementor-nav-menu
  > .menu-item
  .sub-menu::before {
  left: calc((-100vw + 1040px) / 2);
}
#header_bottom
  .elementor-widget-nav-menu
  .elementor-nav-menu
  > .menu-item
  .sub-menu::after {
  right: calc((-100vw + 1040px) / 2);
}
#header_bottom
  .elementor-widget-nav-menu
  .elementor-nav-menu
  > .menu-item
  .sub-menu
  .menu-item {
  display: inline-block;
  width: 33%;
}
#header_bottom
  .elementor-widget-nav-menu
  .elementor-nav-menu
  > .menu-item
  .sub-menu
  .menu-item
  .elementor-sub-item {
  color: white;
  font-weight: normal;
  padding: 15px 10px 15px 20px;
  position: relative;
  width: 80%;
  border: none;
  display: flex;
  white-space: normal;
}
#header_bottom
  .elementor-widget-nav-menu
  .elementor-nav-menu
  > .menu-item
  .sub-menu
  .menu-item
  .elementor-sub-item::after {
  display: none;
}
#header_bottom
  .elementor-widget-nav-menu
  .elementor-nav-menu
  > .menu-item
  .sub-menu
  .menu-item
  .elementor-sub-item.elementor-item-active,
#header_bottom
  .elementor-widget-nav-menu
  .elementor-nav-menu
  > .menu-item
  .sub-menu
  .menu-item
  .elementor-sub-item:hover {
  background-color: #32a0d2;
  color: white;
  text-shadow: 0px 0px 1px white;
}
#header_bottom
  .elementor-widget-nav-menu
  .elementor-nav-menu
  > .menu-item
  .sub-menu
  .menu-item
  .elementor-sub-item::before {
  content: ">";
  position: absolute;
  left: 6px;
  color: white;
}
#header_bottom
  .elementor-widget-nav-menu
  .elementor-nav-menu
  > .menu-item
  .sub-menu
  .menu-item:first-child {
  width: 100%;
}
#header_bottom
  .elementor-widget-nav-menu
  .elementor-nav-menu
  > .menu-item
  .sub-menu
  .menu-item:first-child
  .elementor-sub-item {
  cursor: default;
  color: white;
  font-size: 1.3rem;
  font-weight: bold;
  width: 100%;
  padding: 15px 10px;
}
#header_bottom
  .elementor-widget-nav-menu
  .elementor-nav-menu
  > .menu-item
  .sub-menu
  .menu-item:first-child
  .elementor-sub-item:hover {
  background-color: transparent;
  text-shadow: none;
}
#header_bottom
  .elementor-widget-nav-menu
  .elementor-nav-menu
  > .menu-item
  .sub-menu
  .menu-item:first-child
  .elementor-sub-item::before {
  display: none;
}
#header_bottom
  .elementor-widget-nav-menu
  .elementor-nav-menu
  > .menu-item:nth-child(3)
  .menu-item
  .elementor-sub-item::after,
#header_bottom
  .elementor-widget-nav-menu
  .elementor-nav-menu
  > .menu-item:last-child
  .menu-item
  .elementor-sub-item::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  bottom: 0;
  height: 1px;
  background-color: white;
  opacity: 0.3;
}
#header_bottom
  .elementor-widget-nav-menu
  .elementor-nav-menu
  > .menu-item:nth-child(3)
  .menu-item:first-child
  .elementor-sub-item::after,
#header_bottom
  .elementor-widget-nav-menu
  .elementor-nav-menu
  > .menu-item:nth-child(3)
  .menu-item:nth-last-child(2)
  .elementor-sub-item::after,
#header_bottom
  .elementor-widget-nav-menu
  .elementor-nav-menu
  > .menu-item:nth-child(3)
  .menu-item:nth-last-child(3)
  .elementor-sub-item::after,
#header_bottom
  .elementor-widget-nav-menu
  .elementor-nav-menu
  > .menu-item:nth-child(3)
  .menu-item:nth-last-child(4)
  .elementor-sub-item::after,
#header_bottom
  .elementor-widget-nav-menu
  .elementor-nav-menu
  > .menu-item:nth-child(3)
  .menu-item:last-child
  .elementor-sub-item::after,
#header_bottom
  .elementor-widget-nav-menu
  .elementor-nav-menu
  > .menu-item:last-child
  .menu-item:first-child
  .elementor-sub-item::after,
#header_bottom
  .elementor-widget-nav-menu
  .elementor-nav-menu
  > .menu-item:last-child
  .menu-item:nth-last-child(2)
  .elementor-sub-item::after,
#header_bottom
  .elementor-widget-nav-menu
  .elementor-nav-menu
  > .menu-item:last-child
  .menu-item:nth-last-child(3)
  .elementor-sub-item::after,
#header_bottom
  .elementor-widget-nav-menu
  .elementor-nav-menu
  > .menu-item:last-child
  .menu-item:nth-last-child(4)
  .elementor-sub-item::after,
#header_bottom
  .elementor-widget-nav-menu
  .elementor-nav-menu
  > .menu-item:last-child
  .menu-item:last-child
  .elementor-sub-item::after {
  display: none;
}
#header_bottom
  .elementor-widget-nav-menu
  .elementor-nav-menu
  > .menu-item:nth-child(3)
  .menu-item:last-child
  .elementor-sub-item,
#header_bottom
  .elementor-widget-nav-menu
  .elementor-nav-menu
  > .menu-item:last-child
  .menu-item:last-child
  .elementor-sub-item {
  background-color: #0089c7;
  -webkit-box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.15);
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.15);
  font-weight: bold;
  border: 2px solid white;
  border-radius: 25px;
  padding: 10px 25px;
  width: auto;
  display: inline-block;
  font-size: 1.1rem;
}
#header_bottom
  .elementor-widget-nav-menu
  .elementor-nav-menu
  > .menu-item:nth-child(3)
  .menu-item:last-child
  .elementor-sub-item::before,
#header_bottom
  .elementor-widget-nav-menu
  .elementor-nav-menu
  > .menu-item:last-child
  .menu-item:last-child
  .elementor-sub-item::before {
  display: none;
}
#header_bottom
  .elementor-widget-nav-menu
  .elementor-nav-menu
  > .menu-item:nth-child(3)
  .menu-item:last-child
  .elementor-sub-item:hover,
#header_bottom
  .elementor-widget-nav-menu
  .elementor-nav-menu
  > .menu-item:last-child
  .menu-item:last-child
  .elementor-sub-item:hover {
  text-shadow: none;
  background-color: white;
  color: #0089c7;
}
#header_top_mobile {
  position: fixed;
  z-index: 99;
  left: 0;
  width: 100%;
  top: 0;
  -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.1);
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.1);
}
#header_top_mobile .col-1 {
  width: 55px;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
#header_top_mobile .col-2 {
  width: calc(100% - 155px);
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
#header_top_mobile .col-3 {
  width: 100px;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
#header_top_mobile .elementor-menu-toggle {
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 45px;
  background-color: transparent;
}
#header_top_mobile .elementor-menu-toggle i[class^="eicon"] {
  color: #0089c7;
  font-size: 30px;
}
#header_top_mobile .elementor-menu-toggle .elementor-screen-only {
  position: relative;
  top: unset;
  clip: unset;
  width: auto;
  height: auto;
  font-size: 0.85rem;
  color: #0089c7;
}
#header_top_mobile .elementor-nav-menu--dropdown {
  margin-top: 0 !important;
}
#header_top_mobile
  .elementor-nav-menu--dropdown
  > .elementor-nav-menu
  > .menu-item
  > a {
  color: #0089c7;
  font-weight: bold;
}
#header_top_mobile
  .elementor-nav-menu--dropdown
  > .elementor-nav-menu
  > .menu-item
  > .elementor-item-active,
#header_top_mobile
  .elementor-nav-menu--dropdown
  > .elementor-nav-menu
  > .menu-item
  > .elementor-item.highlighted,
#header_top_mobile
  .elementor-nav-menu--dropdown
  > .elementor-nav-menu
  > .menu-item
  > .elementor-item:focus,
#header_top_mobile
  .elementor-nav-menu--dropdown
  > .elementor-nav-menu
  > .menu-item
  > .elementor-item:hover {
  background-color: #0089c7;
  color: #fff;
}
#header_top_mobile .elementor-nav-menu--dropdown .sub-menu {
  background-color: #0089c7;
}
#header_top_mobile .elementor-nav-menu--dropdown .sub-menu a {
  color: white;
  font-size: 0.9em;
}
#header_top_mobile .elementor-nav-menu--dropdown .sub-menu a::before {
  content: ">";
  position: absolute;
  left: 6px;
  color: white;
}
#header_top_mobile
  .elementor-nav-menu--dropdown
  .sub-menu
  .elementor-sub-item.elementor-item-active,
#header_top_mobile
  .elementor-nav-menu--dropdown
  .sub-menu
  .elementor-sub-item.highlighted,
#header_top_mobile
  .elementor-nav-menu--dropdown
  .sub-menu
  .elementor-sub-item:focus,
#header_top_mobile
  .elementor-nav-menu--dropdown
  .sub-menu
  .elementor-sub-item:hover {
  background-color: #32a0d2;
}
#header_top_mobile .logo img,
#header_top_mobile .logo svg {
  width: 100%;
  max-width: 150px;
}
#header_top_mobile .elementor-search-form__toggle i {
  height: 40px;
  width: 40px;
  border-radius: 100%;
  background-color: #0089c7;
  font-size: 36px;
  color: white;
}
#header_top_mobile .tel {
  display: block;
  height: 40px;
  width: 40px;
  border-radius: 100%;
  overflow: hidden;
  background-color: #f49100;
  background-image: url("assets/img/phone.svg");
  background-repeat: no-repeat;
  background-size: 20px;
  background-position: center;
  color: transparent;
  margin-left: 10px;
}
#header_bottom_mobile {
  position: fixed;
  z-index: 98;
  left: 0;
  width: 100%;
  top: 69px;
  transform: translateY(0);
  -webkit-transition: all 0.5s ease-in;
  -moz-transition: all 0.5s ease-in;
  -ms-transition: all 0.5s ease-in;
  -o-transition: all 0.5s ease-in;
  transition: all 0.5s ease-in;
}
#header_bottom_mobile .elementor-widget-nav-menu {
  width: 100%;
}
#header_bottom_mobile .elementor-widget-nav-menu .elementor-nav-menu {
  width: 100%;
}
#header_bottom_mobile
  .elementor-widget-nav-menu
  .elementor-nav-menu
  > .menu-item {
  position: relative;
  border: 1px solid white;
  width: 33.33%;
}
#header_bottom_mobile
  .elementor-widget-nav-menu
  .elementor-nav-menu
  > .menu-item
  .elementor-item {
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  color: white;
  background-color: #0089c7;
  padding: 10px 5px;
}
#header_bottom_mobile
  .elementor-widget-nav-menu
  .elementor-nav-menu
  > .menu-item
  .elementor-item:hover {
  background-color: #f49100;
}
#header_bottom_mobile
  .elementor-widget-nav-menu
  .elementor-nav-menu
  > .menu-item
  .elementor-item-active {
  background-color: #f49100;
}
#header_bottom_mobile
  .elementor-widget-nav-menu
  .elementor-nav-menu
  > .menu-item
  .elementor-item
  img {
  margin: 0 auto 5px;
  width: 20px !important;
}
#header_bottom_mobile
  .elementor-widget-nav-menu
  .elementor-nav-menu
  > .menu-item
  .elementor-item
  span {
  width: 100%;
  text-align: center;
  font-size: 0.8rem;
}
@media only screen and (max-width: 360px) {
  #header_bottom_mobile
    .elementor-widget-nav-menu
    .elementor-nav-menu
    > .menu-item
    .elementor-item
    span {
    font-size: 0.7rem;
  }
}
#header_bottom_mobile.hide {
  transform: translateY(-100px);
  -webkit-transition: all 0.5s ease-in;
  -moz-transition: all 0.5s ease-in;
  -ms-transition: all 0.5s ease-in;
  -o-transition: all 0.5s ease-in;
  transition: all 0.5s ease-in;
}
@media only screen and (max-width: 767px) {
  main,
  [data-elementor-type="single"],
  [data-elementor-type="archive"] {
    margin-top: 135px;
  }
}
@media only screen and (max-width: 767px) {
  .admin-bar .header {
    top: 0;
  }
}
#footer_top .title,
#footer_mid .title {
  margin-bottom: 10px;
}
#footer_top .title .elementor-heading-title,
#footer_mid .title .elementor-heading-title {
  font-weight: 300;
  font-size: 1.3rem;
  line-height: 1.2;
  margin-bottom: 10px;
}
#footer_top .title .elementor-heading-title b,
#footer_mid .title .elementor-heading-title b {
  font-weight: bold;
}
#footer_top .elementor-column-wrap,
#footer_mid .elementor-column-wrap {
  padding: 20px 10px;
}
#footer_top .col-1,
#footer_mid .col-1 {
  margin-right: auto;
  max-width: 300px;
}
#footer_top .col-2,
#footer_mid .col-2 {
  margin-left: auto;
  margin-right: auto;
  max-width: 300px;
}
#footer_top .col-3,
#footer_mid .col-3 {
  margin-left: auto;
  max-width: 300px;
}
@media only screen and (max-width: 767px) {
  #footer_top div[class^="col-"],
  #footer_top div[class*=" col-"],
  #footer_mid div[class^="col-"],
  #footer_mid div[class*=" col-"] {
    max-width: unset;
  }
}
#footer_top {
  padding-top: 20px;
}
#footer_top .title .elementor-heading-title b {
  display: block;
  text-transform: uppercase;
}
#footer_top .col-1 .title .elementor-heading-title {
  padding-right: 50px;
  background-image: url("assets/img/pin.svg");
  background-repeat: no-repeat;
  background-size: 26px;
  background-position: top right;
  display: inline-block;
}
#footer_top .col-2 .elementor-widget-form .elementor-form-fields-wrapper {
  position: relative;
}
#footer_top
  .col-2
  .elementor-widget-form
  .elementor-form-fields-wrapper
  .elementor-field-type-email {
  width: 100% !important;
  padding: 0;
}
#footer_top
  .col-2
  .elementor-widget-form
  .elementor-form-fields-wrapper
  .elementor-field-type-email
  .elementor-field {
  padding-right: 50px;
  border-radius: 0;
  margin-top: 0 !important;
}
#footer_top
  .col-2
  .elementor-widget-form
  .elementor-form-fields-wrapper
  .elementor-field-type-submit {
  width: 40px !important;
  height: 40px;
  padding: 0;
  position: absolute;
  right: 0;
  top: 0;
  margin-bottom: 0 !important;
}
#footer_top
  .col-2
  .elementor-widget-form
  .elementor-form-fields-wrapper
  .elementor-field-type-submit
  .elementor-button {
  width: 100%;
  border-radius: 0;
  padding: 0 10px;
}
#footer_top
  .col-2
  .elementor-widget-form
  .elementor-form-fields-wrapper
  .elementor-field-type-submit
  .elementor-button
  .elementor-button-icon {
  margin: 0;
}
#footer_top
  .col-2
  .elementor-widget-form
  .elementor-form-fields-wrapper
  .elementor-field-type-submit
  .elementor-button:hover {
  background-color: #0089c7;
}
#footer_top .col-3 .elementor-widget-social-icons .elementor-social-icon {
  margin-right: 10px;
}
#footer_top .col-3 .elementor-widget-social-icons .elementor-social-icon:hover {
  background-color: #f49100;
}
#footer_top .elementor-column-wrap {
  position: relative;
}
#footer_top .elementor-column-wrap::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #262626;
}
@media only screen and (max-width: 767px) {
  #footer_top .elementor-column-wrap::after {
    width: 80%;
    right: 0;
    margin: 0 auto;
  }
}
#footer_mid {
  padding-bottom: 20px;
}
#footer_mid .elementor-widget-wrap {
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
#footer_mid .elementor-widget-wrap .elementor-widget-text-editor {
  margin-bottom: 20px;
}
#footer_mid .elementor-widget-wrap .elementor-widget-button {
  margin-top: auto;
}
@media only screen and (max-width: 767px) {
  #footer_mid .elementor-column-wrap {
    position: relative;
  }
  #footer_mid .elementor-column-wrap::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 1px;
    background-color: #262626;
    width: 80%;
    right: 0;
    margin: 0 auto;
  }
  #footer_mid .col-3 .elementor-column-wrap::after {
    display: none;
  }
}
#footer_bottom {
  padding-top: 20px;
  padding-bottom: 20px;
}
#footer_bottom .elementor-widget-text-editor p {
  margin-bottom: 0;
}
#footer_bottom .elementor-widget-text-editor * {
  font-size: 0.9rem;
  color: white;
}
#footer_bottom .elementor-widget-image img {
  width: 80px;
}
#btn-footer {
  position: fixed;
  z-index: 59;
  bottom: 20px;
  right: 20px;
  width: auto;
}
#btn-footer .elementor-button {
  border-radius: 35px;
  border-color: white;
  padding: 10px 15px;
  margin-top: 0;
  margin-bottom: 0 !important;
  background-color: #c7142a;
  font-size: 0.9rem;
  text-align: left;
  font-weight: normal;
}
#btn-footer .elementor-button .elementor-button-icon {
  margin-right: 10px;
}
#btn-footer .elementor-button .elementor-button-icon svg {
  width: 32px;
}
@media only screen and (max-width: 767px) {
  #btn-footer .elementor-button {
    padding: 10px 7px;
  }
  #btn-footer .elementor-button .elementor-button-icon {
    margin-right: 0;
  }
  #btn-footer .elementor-button-text {
    display: none;
  }
}
form .elementor-field-group {
  margin-bottom: 20px !important;
}
form .elementor-field-group > label {
  font-weight: bold !important;
  margin-bottom: 5px;
}
form .elementor-field-group .elementor-field-textual {
  border: none !important;
  border-radius: 0 !important;
}
form .elementor-field-group .elementor-field-option {
  font-size: 0.85rem;
}
form .elementor-mark-required .elementor-field-label:after {
  color: #f49100;
}
form .select-hidden {
  display: none;
  visibility: hidden;
  padding-right: 10px;
}
form .select {
  cursor: pointer;
  display: inline-block;
  position: relative;
  font-size: 16px;
  color: #979797;
  width: 100%;
  height: 40px;
}
form .select-styled {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border: none;
  border-radius: 3px;
  background-color: #fff;
  padding: 8px 15px;
  -webkit-transition: all 0.2s ease-in;
  -moz-transition: all 0.2s ease-in;
  -ms-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
form .select-styled:after {
  content: "";
  width: 0;
  height: 0;
  border: 5px solid transparent;
  border-color: #979797 transparent transparent transparent;
  position: absolute;
  top: 16px;
  right: 10px;
}
form .select-styled:hover {
  background-color: #fff;
}
form .select-styled:active,
form .select-styled.active {
  background-color: #fff;
}
form .select-styled:active:after,
form .select-styled.active:after {
  top: 9px;
  border-color: transparent transparent #979797 transparent;
}
form .select-options {
  display: none;
  position: absolute;
  top: calc(100% - 1px);
  right: 0;
  left: 0;
  z-index: 999;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none;
  border: none;
  border-radius: 3px;
  background-color: #fff;
}
form .select-options li {
  margin: 0 !important;
  padding: 8px 0;
  text-indent: 15px;
  border-top: 1px solid #e6e6e6;
  -webkit-transition: all 0.15s ease-in;
  -moz-transition: all 0.15s ease-in;
  -ms-transition: all 0.15s ease-in;
  -o-transition: all 0.15s ease-in;
  transition: all 0.15s ease-in;
}
form .select-options li:hover {
  color: #fff;
  background: #979797;
}
form .select-options li::before {
  display: none;
}
form .select-options li[rel="hide"] {
  display: none;
}
form .elementor-widget-container > label,
form .elementor-column > label {
  font-weight: bold !important;
  margin-bottom: 20px;
  width: 100%;
}
form .elementor-widget-container > label span,
form .elementor-column > label span {
  color: #f49100;
}
form .elementor-widget-container > label span[class^="file-"],
form .elementor-widget-container > label span[class*=" file-"],
form .elementor-column > label span[class^="file-"],
form .elementor-column > label span[class*=" file-"] {
  color: #262626;
}
form .elementor-widget-container > label.acceptance,
form .elementor-column > label.acceptance {
  color: #262626;
  font-weight: normal !important;
  font-size: 0.85rem;
}
form .elementor-widget-container > label.acceptance .wpcf7-list-item,
form .elementor-column > label.acceptance .wpcf7-list-item {
  margin: 0;
}
form .elementor-widget-container > label.acceptance span,
form .elementor-column > label.acceptance span {
  color: #262626;
  font-weight: normal !important;
  font-size: 0.85rem;
}
form .mc4wp-checkbox {
  color: #262626;
  font-weight: normal !important;
  font-size: 0.85rem;
}
form input[type="text"],
form input[type="date"],
form input[type="email"],
form input[type="number"],
form input[type="password"],
form input[type="search"],
form input[type="tel"],
form input[type="url"],
form select,
form textarea {
  border: none;
  margin-top: 5px;
  width: 100%;
  border-radius: 0;
  background-color: white !important;
}
form textarea {
  height: 200px;
}
form input[type="file"] {
  margin-top: 5px;
}
form input[type="submit"] {
  border-radius: 25px;
  border: 2px solid #f49100;
  padding: 10px 20px;
  background-color: white;
  color: #f49100;
  font-size: 15px;
  line-height: 1;
}
form input[type="submit"]:hover,
form input[type="submit"]:focus {
  background-color: #f49100;
  color: white;
}
form .align-right {
  text-align: right;
}
form .align-right > * {
  margin-left: auto;
}
form .mandatory {
  font-size: 0.85rem;
}
form .mandatory span {
  color: #f49100;
}
form .wpcf7-response-output {
  border-color: #67c56f !important;
  background-color: #67c56f;
  color: white;
}
.wp-pagenavi {
  text-align: center;
  position: relative;
  padding-top: 20px;
}
.wp-pagenavi::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 50%;
  height: 1px;
  background-color: #979797;
  top: 0;
}
.wp-pagenavi span,
.wp-pagenavi a {
  color: #0089c7;
  border: none;
  font-weight: normal;
  margin: 0 8px;
}
.wp-pagenavi .current {
  color: #f49100;
  font-weight: normal;
}
.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
  position: relative;
}
.wp-pagenavi .previouspostslink::before,
.wp-pagenavi .nextpostslink::before {
  content: "|";
  position: absolute;
  top: 0;
}
.wp-pagenavi .previouspostslink::before {
  right: -8px;
}
.wp-pagenavi .nextpostslink::before {
  left: -8px;
}
.elementor-widget-button .elementor-button {
  border-radius: 25px;
  border: 2px solid transparent;
  padding: 10px 20px;
  margin-top: 20px;
}
.elementor-widget-button.primary .elementor-button {
  background-color: #0089c7;
  border-color: #0089c7;
  color: white;
}
.elementor-widget-button.primary .elementor-button:hover {
  background-color: white;
  color: #0089c7;
}
.elementor-widget-button.accent .elementor-button {
  background-color: #f49100;
  border-color: #f49100;
  color: white;
}
.elementor-widget-button.accent .elementor-button:hover {
  background-color: white;
  color: #f49100;
}
.elementor-widget-button.white-empty .elementor-button {
  background-color: #0089c7;
  border-color: white;
  color: white;
}
.elementor-widget-button.white-empty .elementor-button:hover {
  background-color: white;
  color: #0089c7;
}
.elementor-widget-button.primary-empty .elementor-button {
  background-color: white;
  border-color: #0089c7;
  color: #0089c7;
}
.elementor-widget-button.primary-empty .elementor-button:hover {
  background-color: #0089c7;
  color: white;
}
.elementor-widget-button.accent-empty .elementor-button {
  background-color: white;
  border-color: #f49100;
  color: #f49100;
}
.elementor-widget-button.accent-empty .elementor-button:hover {
  background-color: #f49100;
  color: white;
}
.elementor-widget-button.download .elementor-button {
  padding-right: 55px;
  background-image: url("assets/img/download.svg");
  background-position: calc(100% - 15px) center;
  background-size: 24px auto;
  background-repeat: no-repeat;
}
.elementor-widget-button.download .elementor-button:hover {
  background-image: url("assets/img/download-hover.svg");
}
.elementor-widget-button.video .elementor-button {
  padding-right: 55px;
  background-image: url("assets/img/video.svg");
  background-position: calc(100% - 15px) center;
  background-size: 26px auto;
  background-repeat: no-repeat;
}
.elementor-widget-button.video .elementor-button:hover {
  background-image: url("assets/img/video-hover.svg");
}
@media only screen and (max-width: 767px) {
  .elementor-widget-button.video .elementor-button {
    padding-right: 50px;
    background-size: 24px auto;
  }
}
.elementor-widget-button.more .elementor-button {
  padding-right: 54px;
  padding-left: 5px;
  background-image: url("assets/img/plus.svg");
  background-position: calc(100% - 20px) center;
  background-size: 26px auto;
  background-repeat: no-repeat;
  background-color: transparent;
  color: #f49100;
}
.elementor-widget-button.linkedin .elementor-button {
  padding-right: 40px;
  background-image: url("assets/img/linkedin.svg");
  background-position: calc(100% - 5px) center;
  background-size: 26px auto;
  background-repeat: no-repeat;
}
.elementor-widget-button.linkedin .elementor-button:hover {
  background-image: url("assets/img/linkedin-hover.svg");
}
.elementor-widget-button.tel .elementor-button {
  background-image: url("assets/img/phone.svg");
  background-position: 14px center;
  background-size: 20px auto;
  background-repeat: no-repeat;
  padding-left: 40px;
}
.elementor-widget-button.tel .elementor-button:hover {
  background-image: url("assets/img/phone-hover.svg");
}
.elementor-widget-button.mail .elementor-button {
  background-image: url("assets/img/mail.svg");
  background-position: 14px center;
  background-size: 28px auto;
  background-repeat: no-repeat;
  padding-left: 54px;
}
.elementor-widget-button.mail .elementor-button:hover {
  background-image: url("assets/img/mail-hover.svg");
}
.banner {
  background-image: url("assets/img/ban-small.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
.banner::after {
  content: "";
  height: 60px;
  position: absolute;
  left: 0;
  width: 100%;
  bottom: -2px;
  background-image: url("assets/img/on-ban.svg");
  background-position: center bottom;
  background-size: cover;
  background-repeat: no-repeat;
}
.banner .elementor-container {
  padding: 20px 0;
  min-height: 120px;
}
.banner .elementor-container .elementor-widget-breadcrumbs {
  font-size: 0.9rem;
  color: white;
  font-weight: 300;
  margin-bottom: 10px;
}
.banner .elementor-container .elementor-widget-breadcrumbs > span a {
  color: white;
}
.banner .elementor-container .elementor-widget-breadcrumbs > span:last-child {
  font-weight: bolder;
}
.banner .elementor-container .elementor-widget-heading h1,
.banner .elementor-container .elementor-widget-heading .h1 {
  color: white;
  text-transform: uppercase;
  font-size: 3rem;
  margin-bottom: 0;
}
@media only screen and (max-width: 1024px) {
  .banner .elementor-container .elementor-widget-heading h1,
  .banner .elementor-container .elementor-widget-heading .h1 {
    font-size: 2.4rem;
  }
}
@media only screen and (max-width: 767px) {
  .banner .elementor-container .elementor-widget-heading h1,
  .banner .elementor-container .elementor-widget-heading .h1 {
    font-size: 1.6rem;
  }
}
.section-back {
  padding-bottom: 0 !important;
}
.section-back a {
  color: #262626;
}
.layout-img-txt h2,
.layout-img-txt .elementor-text-editor {
  text-align: right;
}
.layout-img-txt.bg-primary,
.layout-txt-img.bg-primary,
.layout-only-txt.bg-primary {
  background-color: #0089c7;
}
.layout-img-txt.bg-primary .elementor-heading-title,
.layout-img-txt.bg-primary h2,
.layout-img-txt.bg-primary h3,
.layout-img-txt.bg-primary h4,
.layout-txt-img.bg-primary .elementor-heading-title,
.layout-txt-img.bg-primary h2,
.layout-txt-img.bg-primary h3,
.layout-txt-img.bg-primary h4,
.layout-only-txt.bg-primary .elementor-heading-title,
.layout-only-txt.bg-primary h2,
.layout-only-txt.bg-primary h3,
.layout-only-txt.bg-primary h4 {
  color: white;
}
.layout-img-txt.bg-primary .elementor-text-editor p,
.layout-img-txt.bg-primary .elementor-text-editor *,
.layout-txt-img.bg-primary .elementor-text-editor p,
.layout-txt-img.bg-primary .elementor-text-editor *,
.layout-only-txt.bg-primary .elementor-text-editor p,
.layout-only-txt.bg-primary .elementor-text-editor * {
  color: white;
}
.layout-img-txt.bg-primary .elementor-text-editor p a,
.layout-img-txt.bg-primary .elementor-text-editor * a,
.layout-txt-img.bg-primary .elementor-text-editor p a,
.layout-txt-img.bg-primary .elementor-text-editor * a,
.layout-only-txt.bg-primary .elementor-text-editor p a,
.layout-only-txt.bg-primary .elementor-text-editor * a {
  color: #f49100;
}
.layout-img-txt .row-stretch,
.layout-txt-img .row-stretch {
  -webkit-align-items: stretch;
  -moz-align-items: stretch;
  -ms-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}
.layout-img-txt .row-stretch .elementor-bg,
.layout-txt-img .row-stretch .elementor-bg {
  height: 100%;
  width: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 300px;
}
@media only screen and (max-width: 767px) {
  .layout-img-txt .row-stretch .elementor-bg,
  .layout-txt-img .row-stretch .elementor-bg {
    min-height: 200px;
  }
}
.layout-only-txt-shorter .elementor-heading-title,
.layout-only-txt-shorter .elementor-text-editor {
  max-width: 66%;
}
@media only screen and (max-width: 1024px) {
  .layout-only-txt-shorter .elementor-heading-title,
  .layout-only-txt-shorter .elementor-text-editor {
    max-width: 100%;
  }
}
.layout-txt-map .elementor-row {
  -webkit-align-items: flex-end;
  -moz-align-items: flex-end;
  -ms-align-items: flex-end;
  -ms-flex-align: flex-end;
  align-items: flex-end;
}
.layout-txt-map .elementor-row .col-1 {
  margin-bottom: 100px;
  position: relative;
  z-index: 2;
}
.layout-txt-map .elementor-row .elementor-image {
  width: 100%;
}
.layout-txt-map .elementor-row .elementor-image img {
  position: relative;
  left: -200px;
  width: calc(100% + 200px);
  max-width: unset;
}
@media only screen and (max-width: 767px) {
  .layout-txt-map .elementor-row .elementor-image img {
    left: 0px;
    width: 100%;
    max-width: unset;
    margin-top: -180px;
  }
}
@media only screen and (max-width: 460px) {
  .layout-txt-map .elementor-row .elementor-image img {
    margin-top: -100px;
  }
}
.layout-slider .slider {
  max-height: 500px;
  overflow: hidden;
  padding: 0 80px;
}
.layout-slider .slider-img {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 500px;
}
@media only screen and (max-width: 1024px) {
  .layout-slider .slider {
    max-height: 400px;
  }
  .layout-slider .slider-img {
    height: 400px;
  }
}
@media only screen and (max-width: 767px) {
  .layout-slider .slider {
    max-height: 300px;
    padding: 0 40px;
  }
  .layout-slider .slider-img {
    height: 300px;
  }
}
.layout-3-col {
  background-color: #f4f4f4;
}
.layout-3-col .elementor-widget-wrap {
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  top: auto;
}
.layout-3-col .image-round {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 120px;
  height: 120px;
  border-radius: 100%;
  margin: 0 auto 20px;
}
.layout-3-col .elementor-heading-title {
  text-align: center;
  color: #f49100;
  font-size: 1.2rem;
}
.layout-3-col .elementor-widget-button {
  margin-top: auto;
}
@media only screen and (max-width: 767px) {
  .layout-3-col .elementor-column {
    margin-bottom: 20px;
  }
}
.layout-tab-4-col .tab .line,
.layout-tab-3-col .tab .line {
  position: relative;
}
.layout-tab-4-col .tab .line:nth-child(odd),
.layout-tab-3-col .tab .line:nth-child(odd) {
  background-color: #f4f4f4;
}
.layout-tab-4-col .tab .line:nth-child(odd)::before,
.layout-tab-4-col .tab .line:nth-child(odd)::after,
.layout-tab-3-col .tab .line:nth-child(odd)::before,
.layout-tab-3-col .tab .line:nth-child(odd)::after {
  content: "";
  position: absolute;
  top: 0;
  width: 1000px;
  height: 100%;
  background-color: #f4f4f4;
}
.layout-tab-4-col .tab .line:nth-child(odd)::before,
.layout-tab-3-col .tab .line:nth-child(odd)::before {
  left: -999px;
}
.layout-tab-4-col .tab .line:nth-child(odd)::after,
.layout-tab-3-col .tab .line:nth-child(odd)::after {
  right: -999px;
}
.layout-tab-4-col .elementor-widget-heading,
.layout-tab-4-col .elementor-widget-text-editor,
.layout-tab-3-col .elementor-widget-heading,
.layout-tab-3-col .elementor-widget-text-editor {
  max-width: 66%;
}
@media only screen and (max-width: 1024px) {
  .layout-tab-4-col .elementor-widget-heading,
  .layout-tab-4-col .elementor-widget-text-editor,
  .layout-tab-3-col .elementor-widget-heading,
  .layout-tab-3-col .elementor-widget-text-editor {
    max-width: 100%;
  }
}
.layout-tab-4-col div[class^="col-"],
.layout-tab-4-col div[class*=" col-"],
.layout-tab-3-col div[class^="col-"],
.layout-tab-3-col div[class*=" col-"] {
  padding: 10px;
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.layout-tab-4-col div[class^="col-"].col-1,
.layout-tab-4-col div[class*=" col-"].col-1,
.layout-tab-3-col div[class^="col-"].col-1,
.layout-tab-3-col div[class*=" col-"].col-1 {
  width: 120px;
}
.layout-tab-4-col div[class^="col-"].col-1 .image-round,
.layout-tab-4-col div[class*=" col-"].col-1 .image-round,
.layout-tab-3-col div[class^="col-"].col-1 .image-round,
.layout-tab-3-col div[class*=" col-"].col-1 .image-round {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100px;
  height: 100px;
  border-radius: 100%;
}
.layout-tab-4-col div[class^="col-"].col-2,
.layout-tab-4-col div[class*=" col-"].col-2,
.layout-tab-3-col div[class^="col-"].col-2,
.layout-tab-3-col div[class*=" col-"].col-2 {
  width: 150px;
  color: #0089c7;
}
.layout-tab-4-col div[class^="col-"].col-2 b,
.layout-tab-4-col div[class^="col-"].col-2 strong,
.layout-tab-4-col div[class*=" col-"].col-2 b,
.layout-tab-4-col div[class*=" col-"].col-2 strong,
.layout-tab-3-col div[class^="col-"].col-2 b,
.layout-tab-3-col div[class^="col-"].col-2 strong,
.layout-tab-3-col div[class*=" col-"].col-2 b,
.layout-tab-3-col div[class*=" col-"].col-2 strong {
  font-weight: bold;
}
.layout-tab-4-col div[class^="col-"].col-3,
.layout-tab-4-col div[class*=" col-"].col-3,
.layout-tab-3-col div[class^="col-"].col-3,
.layout-tab-3-col div[class*=" col-"].col-3 {
  width: 150px;
}
.layout-tab-4-col div[class^="col-"].col-3 b,
.layout-tab-4-col div[class^="col-"].col-3 strong,
.layout-tab-4-col div[class*=" col-"].col-3 b,
.layout-tab-4-col div[class*=" col-"].col-3 strong,
.layout-tab-3-col div[class^="col-"].col-3 b,
.layout-tab-3-col div[class^="col-"].col-3 strong,
.layout-tab-3-col div[class*=" col-"].col-3 b,
.layout-tab-3-col div[class*=" col-"].col-3 strong {
  font-weight: bold;
}
.layout-tab-4-col div[class^="col-"].col-4,
.layout-tab-4-col div[class*=" col-"].col-4,
.layout-tab-3-col div[class^="col-"].col-4,
.layout-tab-3-col div[class*=" col-"].col-4 {
  width: calc(100% - 620px);
}
.layout-tab-4-col div[class^="col-"].col-5,
.layout-tab-4-col div[class*=" col-"].col-5,
.layout-tab-3-col div[class^="col-"].col-5,
.layout-tab-3-col div[class*=" col-"].col-5 {
  width: 200px;
}
.layout-tab-4-col div[class^="col-"].col-5 .elementor-button,
.layout-tab-4-col div[class*=" col-"].col-5 .elementor-button,
.layout-tab-3-col div[class^="col-"].col-5 .elementor-button,
.layout-tab-3-col div[class*=" col-"].col-5 .elementor-button {
  margin-top: 0 !important;
}
@media only screen and (max-width: 1024px) {
  .layout-tab-4-col div[class^="col-"],
  .layout-tab-4-col div[class*=" col-"],
  .layout-tab-3-col div[class^="col-"],
  .layout-tab-3-col div[class*=" col-"] {
    width: 100% !important;
    text-align: center;
  }
  .layout-tab-4-col div[class^="col-"] .elementor-widget-wrap,
  .layout-tab-4-col div[class*=" col-"] .elementor-widget-wrap,
  .layout-tab-3-col div[class^="col-"] .elementor-widget-wrap,
  .layout-tab-3-col div[class*=" col-"] .elementor-widget-wrap {
    display: block;
  }
  .layout-tab-4-col div[class^="col-"] .image-round,
  .layout-tab-4-col div[class*=" col-"] .image-round,
  .layout-tab-3-col div[class^="col-"] .image-round,
  .layout-tab-3-col div[class*=" col-"] .image-round {
    margin-left: auto;
    margin-right: auto;
  }
}
.layout-tab-3-col .col-4 {
  width: calc(100% - 500px) !important;
}
.layout-download-file {
  background-color: #0089c7;
  margin-top: 60px;
  overflow: visible !important;
}
.layout-download-file .elementor-widget-image,
.layout-download-file .elementor-widget-image > .elementor-widget-container,
.layout-download-file .elementor-image {
  position: relative;
  height: 100%;
}
.layout-download-file .elementor-widget-image img,
.layout-download-file .elementor-widget-image > .elementor-widget-container img,
.layout-download-file .elementor-image img {
  position: absolute;
  right: 0;
  bottom: 0;
  max-height: 200px;
}
.layout-download-file .title {
  color: white;
  font-weight: 300;
  text-transform: uppercase;
  font-size: 1.2rem;
}
.layout-download-file .title span {
  display: block;
  font-weight: bold;
}
.layout-download-file.bg-grey {
  background-color: #f4f4f4;
}
.layout-download-file.bg-grey .title {
  color: #0089c7;
}
@media only screen and (max-width: 767px) {
  .layout-download-file {
    margin-top: 160px;
  }
  .layout-download-file img {
    left: 0;
    margin: 0 auto;
    bottom: -20px !important;
  }
}
.links .elementor-container {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.links .elementor-container > .elementor-row {
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.links
  .elementor-container
  > .elementor-row
  > .elementor-column
  > .elementor-element-populated {
  padding: 0;
  border: 10px solid white;
}
@media only screen and (max-width: 767px) {
  .links
    .elementor-container
    > .elementor-row
    > .elementor-column
    > .elementor-element-populated {
    border-width: 5px;
  }
}
.links .elementor-container > .elementor-row a {
  font-size: 3.6rem;
  color: white;
  text-transform: uppercase;
  padding: 80px 40px 20px;
  font-weight: bold;
  display: block;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  -webkit-transition: background-color 0.3s ease-in;
  -moz-transition: background-color 0.3s ease-in;
  -ms-transition: background-color 0.3s ease-in;
  -o-transition: background-color 0.3s ease-in;
  transition: background-color 0.3s ease-in;
}
.links .elementor-container > .elementor-row a span {
  font-size: 0.9rem;
  display: block;
}
.links .elementor-container > .elementor-row a:hover {
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-transition: background-color 0.3s ease-in;
  -moz-transition: background-color 0.3s ease-in;
  -ms-transition: background-color 0.3s ease-in;
  -o-transition: background-color 0.3s ease-in;
  transition: background-color 0.3s ease-in;
}
@media only screen and (max-width: 1024px) {
  .links .elementor-container > .elementor-row a {
    font-size: 2.8rem;
    padding: 60px 20px 20px;
  }
}
@media only screen and (max-width: 767px) {
  .links .elementor-container > .elementor-row a {
    font-size: 1.4rem;
    padding: 40px 20px 10px;
  }
}
.elementor-widget-search-form .dialog-close-button {
  top: 0;
  background-color: #f49100;
  border-radius: 100%;
  padding: 4px;
  top: 10px;
  right: 10px;
}
.elementor-widget-search-form .dialog-close-button i {
  color: white;
  font-size: 1.6rem;
}
.elementor-widget-search-form .elementor-search-form__input {
  color: #0089c7 !important;
  border-radius: 0;
}
@media only screen and (max-width: 1024px) {
  .elementor-widget-search-form .elementor-search-form__input {
    font-size: 2rem !important;
  }
}
@media only screen and (max-width: 767px) {
  .elementor-widget-search-form .elementor-search-form__input {
    font-size: 1.2rem !important;
  }
}
.search .elementor-post__title a {
  color: #0089c7;
}
.search .elementor-post__read-more {
  text-transform: none !important;
  border-radius: 25px;
  border: 2px solid #f49100;
  padding: 10px 20px;
  color: #f49100;
  line-height: 1;
  font-size: 15px;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -ms-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.search .elementor-post__read-more:hover {
  background-color: #f49100;
  color: white;
  -webkit-transition: all 0.3s ease-in;
  -moz-transition: all 0.3s ease-in;
  -ms-transition: all 0.3s ease-in;
  -o-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
.search .elementor-pagination .current {
  color: #f49100;
  font-weight: bold;
}
.search .elementor-pagination a {
  color: #0089c7;
}
.elementor-popup-modal .dialog-widget-content {
  border-radius: 20px;
  overflow: hidden;
  border: 4px solid white;
}
.elementor-popup-modal .dialog-widget-content .dialog-close-button {
  background-color: #f49100;
  border-radius: 100%;
  padding: 4px;
  top: 10px;
  right: 10px;
}
.elementor-popup-modal .dialog-widget-content .dialog-close-button i {
  color: white;
  font-size: 1.6rem;
}
.elementor-popup-modal .dialog-widget-content .popup-img {
  height: 120px;
}
@media only screen and (max-width: 767px) {
  .elementor-popup-modal .dialog-widget-content .popup-img {
    height: 80px;
  }
}
.elementor-popup-modal .dialog-widget-content .dialog-message section {
  padding-top: 20px;
  padding-bottom: 20px;
}
.elementor-popup-modal
  .dialog-widget-content
  .dialog-message
  .elementor-widget-wrap {
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.elementor-popup-modal
  .dialog-widget-content
  .dialog-message
  .elementor-heading-title {
  font-size: 2rem;
}
.elementor-popup-modal .dialog-widget-content .dialog-message p {
  font-size: 0.95rem;
}
.actualites-header {
  padding-bottom: 0 !important;
}
.actualites-tags {
  padding: 0 !important;
}
.actualites-tags a {
  color: white;
  background-color: #979797;
  display: inline-block;
  padding: 2px 4px;
  text-transform: uppercase;
  margin: 0 2px 4px 0;
}
.actualites-tags a:hover,
.actualites-tags a.selected {
  background-color: #f49100;
}
@media only screen and (max-width: 767px) {
  .actualites-tags a {
    font-size: 0.9rem;
  }
}
.list-actualites {
  overflow: hidden;
}
.list-actualites .actualite {
  padding: 20px 0 !important;
  position: relative;
  min-height: 300px;
}
.list-actualites .actualite::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #979797;
  top: 0;
}
.list-actualites .actualite:first-child::after {
  display: none;
}
.list-actualites .actualite .bg {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 6px;
}
@media only screen and (max-width: 767px) {
  .list-actualites .actualite .bg {
    position: relative;
    width: 100%;
    height: 300px;
  }
}
.list-actualites .actualite .content {
  padding: 20px 0;
  max-width: 500px;
  margin-left: auto;
}
.list-actualites .actualite .content h3 {
  text-transform: uppercase;
  font-weight: bold;
  color: #0089c7;
}
.list-actualites .actualite .content h3 span {
  font-weight: 300;
  color: #f49100;
  display: block;
}
.actualite-header {
  padding-bottom: 0 !important;
}
.actualite-header h2 {
  margin-bottom: 0 !important;
}
.actualite-share {
  padding: 0 !important;
}
.actualite-share .title {
  font-size: 1.2rem;
  color: #0089c7;
  font-weight: bold;
}
.actualite-share .elementor-widget-share-buttons .elementor-share-btn {
  width: 40px;
  height: 40px;
}
.actualite-share .elementor-widget-share-buttons .elementor-share-btn__icon i {
  font-size: 1.3rem;
}
.actualite-share .elementor-widget-share-buttons .fa-linkedin:before {
  content: "\f0e1";
}
.actualite-header .infos,
.list-actualites .infos,
.slider-actus .infos {
  margin-bottom: 10px;
}
.actualite-header .infos .date,
.list-actualites .infos .date,
.slider-actus .infos .date {
  text-transform: uppercase;
  color: #0089c7;
  font-weight: bold;
  margin-right: 10px;
  display: inline-block;
}
.actualite-header .infos .tags,
.list-actualites .infos .tags,
.slider-actus .infos .tags {
  display: inline-block;
}
.actualite-header .infos .tags a,
.list-actualites .infos .tags a,
.slider-actus .infos .tags a {
  color: white;
  background-color: #f49100;
  display: inline-block;
  padding: 2px 4px;
  text-transform: uppercase;
  margin: 0 2px 4px 0;
}
@media only screen and (max-width: 767px) {
  .slider-actus {
    padding: 0 40px;
  }
}
.before-form {
  padding-bottom: 0 !important;
}
.contact-form h3 {
  text-align: center;
}
.contact-form form {
  max-width: 900px;
  margin: 0 auto;
}
.contact-form form .col-1 {
  border-right: 1px solid #979797;
}
@media only screen and (max-width: 767px) {
  .contact-form form .col-1 {
    border-right: none;
  }
}
.contact-form form .elementor-widget-container {
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .contact-form form .wpcf7-file {
    font-size: 0.8rem;
  }
}
.dechets-header {
  padding-bottom: 0 !important;
}
.list-dechets {
  overflow: hidden;
}
.list-dechets .dechet {
  margin: 10px 0;
  padding: 0 !important;
  position: relative;
  min-height: 400px;
}
.list-dechets .dechet:nth-child(odd) {
  background-color: #f4f4f4;
}
.list-dechets .dechet:nth-child(odd)::before,
.list-dechets .dechet:nth-child(odd)::after {
  content: "";
  position: absolute;
  top: 0;
  width: 1000px;
  height: 100%;
  background-color: #f4f4f4;
}
.list-dechets .dechet:nth-child(odd)::before {
  left: -999px;
}
.list-dechets .dechet:nth-child(odd)::after {
  right: -999px;
}
.list-dechets .dechet .bg {
  position: absolute;
  left: 0;
  width: 50%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media only screen and (max-width: 767px) {
  .list-dechets .dechet .bg {
    position: relative;
    width: 100%;
    height: 240px;
  }
}
.list-dechets .dechet .content {
  padding: 20px 0;
  max-width: 500px;
  margin-left: auto;
}
.list-dechets .dechet .content h3 {
  text-transform: uppercase;
  font-weight: bold;
  color: #0089c7;
}
.list-dechets .dechet .content h3 span {
  font-weight: 300;
  color: #f49100;
  display: block;
}
@media only screen and (max-width: 767px) {
  .list-dechets .dechet .content {
    max-width: unset;
  }
}
#popin-video {
  display: none;
  opacity: 0;
}
.home-slider {
  padding: 60px 0 100px !important;
  height: 600px;
}
@media only screen and (max-width: 1024px) {
  .home-slider {
    padding: 20px 0 !important;
    height: 440px;
  }
  .home-slider .elementor-col-50 {
    width: 66%;
  }
}
@media only screen and (max-width: 767px) {
  .home-slider {
    padding: 20px 0 !important;
    height: 540px;
  }
}
@media only screen and (max-width: 767px) and (max-width: 400px) {
  .home-slider {
    height: 600px;
  }
}
@media only screen and (max-width: 767px) {
  .home-slider .elementor-col-50 {
    width: 100%;
  }
}
.home-slider h1 {
  font-size: 3rem;
  color: white !important;
  font-weight: bold !important;
  text-transform: uppercase;
  margin-bottom: 40px !important;
}
.home-slider h1 span {
  color: white;
  position: relative;
  z-index: 2;
}
.home-slider h1 span::before {
  content: "";
  position: absolute;
  left: -8px;
  top: -3px;
  width: calc(100% + 16px);
  height: calc(100% + 6px);
  background-color: #f49100;
  z-index: -1;
}
@media only screen and (max-width: 1200px) {
  .home-slider h1 {
    font-size: 2.6rem;
    margin-bottom: 30px !important;
  }
}
@media only screen and (max-width: 1024px) {
  .home-slider h1 {
    font-size: 2rem;
    margin-bottom: 20px !important;
  }
}
@media only screen and (max-width: 767px) {
  .home-slider h1 {
    font-size: 1.6rem;
    margin-bottom: 0px !important;
  }
}
.home-slider .elementor-text-editor p {
  color: white;
}
.home-slider #wrap-video-ban {
  position: absolute;
  left: 0;
  width: 100%;
  top: 0;
  height: 600px;
  overflow: hidden;
  z-index: -1;
}
@media only screen and (max-width: 1024px) {
  .home-slider #wrap-video-ban {
    height: 440px;
  }
}
@media only screen and (max-width: 767px) {
  .home-slider #wrap-video-ban {
    height: 540px;
  }
}
@media only screen and (max-width: 767px) and (max-width: 400px) {
  .home-slider #wrap-video-ban {
    height: 600px;
  }
}
.home-slider #wrap-video-ban video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media only screen and (max-width: 767px) {
  .home-slider #wrap-video-ban video {
    height: 150%;
    left: 0;
    top: -25%;
  }
}
.home-slider #wrap-video-ban::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 2;
}
.home-slider #wrap-video-ban::after {
  content: "";
  height: 60px;
  position: absolute;
  left: 0;
  width: 100%;
  bottom: -2px;
  background-image: url("assets/img/on-ban.svg");
  background-position: center bottom;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 2;
}
.home-slider .slider-home {
  position: absolute;
  left: 0;
  width: 100%;
  top: 0;
  height: 600px;
  overflow: hidden;
}
@media only screen and (max-width: 1024px) {
  .home-slider .slider-home {
    height: 440px;
  }
}
@media only screen and (max-width: 767px) {
  .home-slider .slider-home {
    height: 540px;
  }
}
@media only screen and (max-width: 767px) and (max-width: 400px) {
  .home-slider .slider-home {
    height: 600px;
  }
}
.home-slider .slider-home .slide {
  height: 600px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 1024px) {
  .home-slider .slider-home .slide {
    height: 440px;
  }
}
@media only screen and (max-width: 767px) {
  .home-slider .slider-home .slide {
    height: 540px;
  }
}
@media only screen and (max-width: 767px) and (max-width: 400px) {
  .home-slider .slider-home .slide {
    height: 600px;
  }
}
.home-slider .slider-home::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: #000000;
  opacity: 0.3;
  z-index: 1;
}
.home-slider .slider-home::after {
  content: "";
  height: 60px;
  position: absolute;
  left: 0;
  width: 100%;
  bottom: -2px;
  background-image: url("assets/img/on-ban.svg");
  background-position: center bottom;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 2;
}
.home-slider .elementor-container {
  position: relative;
  z-index: 2;
}
.home-solutions .elementor-bg {
  position: relative;
  top: -60px;
  background-size: contain !important;
}
@media only screen and (max-width: 767px) {
  .home-solutions .elementor-bg {
    top: 0;
  }
}
.home-vous .elementor-row {
  -webkit-align-items: flex-end;
  -moz-align-items: flex-end;
  -ms-align-items: flex-end;
  -ms-flex-align: flex-end;
  align-items: flex-end;
}
.home-vous .elementor-row .elementor-heading-title {
  max-width: 450px;
  margin-left: auto;
  width: 100%;
}
.home-vous .elementor-row .list-vous {
  max-width: 450px;
  margin-left: auto;
  list-style: none;
  padding: 0;
  width: 100%;
}
.home-vous .elementor-row .list-vous li {
  text-align: left;
  margin-bottom: 20px;
  height: 44px;
  background-color: #0089c7;
  position: relative;
  width: 250px;
  line-height: 44px;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 1.3rem;
  -webkit-transition: background-color 0.3s ease-in;
  -moz-transition: background-color 0.3s ease-in;
  -ms-transition: background-color 0.3s ease-in;
  -o-transition: background-color 0.3s ease-in;
  transition: background-color 0.3s ease-in;
}
.home-vous .elementor-row .list-vous li::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 22px 15px 22px 0;
  border-color: transparent white transparent transparent;
  position: absolute;
  right: 0;
  top: 0;
}
.home-vous .elementor-row .list-vous li::before {
  content: "";
  position: absolute;
  left: -999px;
  width: 1000px;
  top: 0;
  height: 100%;
  background-color: #0089c7;
  -webkit-transition: background-color 0.3s ease-in;
  -moz-transition: background-color 0.3s ease-in;
  -ms-transition: background-color 0.3s ease-in;
  -o-transition: background-color 0.3s ease-in;
  transition: background-color 0.3s ease-in;
}
.home-vous .elementor-row .list-vous li a {
  width: 100%;
  display: inline-block;
  color: white;
}
.home-vous .elementor-row .list-vous li:hover,
.home-vous .elementor-row .list-vous li:hover::before {
  background-color: #f49100;
  -webkit-transition: background-color 0.3s ease-in;
  -moz-transition: background-color 0.3s ease-in;
  -ms-transition: background-color 0.3s ease-in;
  -o-transition: background-color 0.3s ease-in;
  transition: background-color 0.3s ease-in;
}
.home-vous .elementor-row .elementor-image img {
  position: relative;
  bottom: -60px;
}
@media only screen and (max-width: 767px) {
  .home-vous .elementor-row .elementor-image img {
    display: none;
  }
}
.home-sites {
  background-color: #f4f4f4;
}
.home-sites .elementor-row {
  -webkit-align-items: flex-end;
  -moz-align-items: flex-end;
  -ms-align-items: flex-end;
  -ms-flex-align: flex-end;
  align-items: flex-end;
}
.home-sites .elementor-row .col-1 {
  margin-bottom: 100px;
  position: relative;
  z-index: 2;
}
.home-sites .elementor-row .elementor-image {
  width: 100%;
}
.home-sites .elementor-row .elementor-image img {
  position: relative;
  left: -200px;
  width: calc(100% + 200px);
  max-width: unset;
}
@media only screen and (max-width: 767px) {
  .home-sites .elementor-row .elementor-image img {
    left: 0px;
    width: 100%;
    max-width: unset;
    margin-top: -180px;
  }
}
.home-offres {
  background-color: #0089c7;
}
.home-offres .elementor-row {
  -webkit-align-items: flex-end;
  -moz-align-items: flex-end;
  -ms-align-items: flex-end;
  -ms-flex-align: flex-end;
  align-items: flex-end;
}
.home-offres .elementor-row .col-1 {
  margin-bottom: 100px;
}
.home-offres .elementor-row .col-1 .elementor-heading-title {
  color: white;
}
.home-offres .elementor-row .col-1 .elementor-text-editor p,
.home-offres .elementor-row .col-1 .elementor-text-editor * {
  color: white;
}
@media only screen and (max-width: 767px) {
  .home-offres .elementor-row .col-1 {
    margin-bottom: 0;
  }
}
.home-offres .elementor-row .elementor-image {
  width: 100%;
}
.home-offres .elementor-row .elementor-image img {
  position: relative;
  left: -40px;
  width: calc(100% + 40px);
  max-width: unset;
}
@media only screen and (max-width: 767px) {
  .home-offres .elementor-row .elementor-image img {
    left: 0;
    width: 100%;
  }
}
.home-actu {
  padding-bottom: 20px;
}
.home-actu .slider-actus {
  padding: 0 80px;
}
@media only screen and (max-width: 767px) {
  .home-actu .slider-actus {
    padding: 0 40px;
  }
}
.home-actu .slider-actus .slick-prev,
.home-actu .slider-actus .slick-next {
  border-color: #f49100;
}
.home-actu .slider-actus .slick-prev:before,
.home-actu .slider-actus .slick-next:before,
.home-actu .slider-actus .slick-prev:after,
.home-actu .slider-actus .slick-next:after {
  background-color: #f49100;
}
.home-actu .slider-actus .link {
  color: #262626;
  font-weight: bold;
}
.home-actu #sb_wall2659 {
  background-color: transparent;
  border: none;
}
.home-actu .elementor-widget-social-icons .elementor-social-icon {
  margin-right: 10px;
}
.home-actu .elementor-widget-social-icons .elementor-social-icon:hover {
  background-color: #f49100 !important;
}
.home-groupe {
  background-color: #0089c7;
}
.home-groupe .elementor-container {
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.home-groupe .elementor-heading-title {
  color: white !important;
}
.home-groupe .elementor-text-editor p,
.home-groupe .elementor-text-editor * {
  color: white;
}
.home-groupe .elementor-row-last {
  -webkit-align-items: flex-end;
  -moz-align-items: flex-end;
  -ms-align-items: flex-end;
  -ms-flex-align: flex-end;
  align-items: flex-end;
}
.home-groupe .elementor-row-last .col-2,
.home-groupe .elementor-row-last .col-3,
.home-groupe .elementor-row-last .col-4,
.home-groupe .elementor-row-last .col-5 {
  padding: 0 20px;
}
.home-groupe .elementor-row-last .col-2 img,
.home-groupe .elementor-row-last .col-3 img,
.home-groupe .elementor-row-last .col-4 img,
.home-groupe .elementor-row-last .col-5 img {
  max-width: 150px;
}
.home-groupe .elementor-row-last .col-2 .elementor-text-editor,
.home-groupe .elementor-row-last .col-3 .elementor-text-editor,
.home-groupe .elementor-row-last .col-4 .elementor-text-editor,
.home-groupe .elementor-row-last .col-5 .elementor-text-editor {
  color: white;
  text-align: center;
}
.home-groupe .elementor-row-last .col-2 .elementor-text-editor span,
.home-groupe .elementor-row-last .col-3 .elementor-text-editor span,
.home-groupe .elementor-row-last .col-4 .elementor-text-editor span,
.home-groupe .elementor-row-last .col-5 .elementor-text-editor span {
  text-transform: uppercase;
  font-size: 1.4rem;
  font-weight: bold;
  display: block;
}
@media only screen and (max-width: 1024px) {
  .home-groupe .elementor-row-last .col-2 img,
  .home-groupe .elementor-row-last .col-3 img,
  .home-groupe .elementor-row-last .col-4 img,
  .home-groupe .elementor-row-last .col-5 img {
    max-width: 120px;
  }
  .home-groupe .elementor-row-last .col-2 .elementor-text-editor,
  .home-groupe .elementor-row-last .col-3 .elementor-text-editor,
  .home-groupe .elementor-row-last .col-4 .elementor-text-editor,
  .home-groupe .elementor-row-last .col-5 .elementor-text-editor {
    font-size: 0.9rem;
  }
  .home-groupe .elementor-row-last .col-2 .elementor-text-editor span,
  .home-groupe .elementor-row-last .col-3 .elementor-text-editor span,
  .home-groupe .elementor-row-last .col-4 .elementor-text-editor span,
  .home-groupe .elementor-row-last .col-5 .elementor-text-editor span {
    font-size: 1.2rem;
  }
}
@media only screen and (max-width: 767px) {
  .home-groupe .elementor-row-last .col-1 img {
    max-width: 200px;
  }
  .home-groupe .elementor-row-last .col-2,
  .home-groupe .elementor-row-last .col-3,
  .home-groupe .elementor-row-last .col-4,
  .home-groupe .elementor-row-last .col-5 {
    width: 50%;
    padding: 0 5px;
  }
  .home-groupe .elementor-row-last .col-2 img,
  .home-groupe .elementor-row-last .col-3 img,
  .home-groupe .elementor-row-last .col-4 img,
  .home-groupe .elementor-row-last .col-5 img {
    max-width: 100px;
  }
  .home-groupe .elementor-row-last div[class^="col-"],
  .home-groupe .elementor-row-last div[class*=" col-"] {
    margin-bottom: 20px;
  }
}
.offres-header {
  padding-bottom: 0 !important;
}
.offres-header h3 {
  margin-top: 20px;
  margin-bottom: 0 !important;
  color: #262626 important;
}
.list-offres {
  overflow: hidden;
}
.list-offres .line {
  position: relative;
  padding: 20px 0;
}
.list-offres .line:nth-child(odd) {
  background-color: #f4f4f4;
}
.list-offres .line:nth-child(odd)::before,
.list-offres .line:nth-child(odd)::after {
  content: "";
  position: absolute;
  top: 0;
  width: 1000px;
  height: 100%;
  background-color: #f4f4f4;
}
.list-offres .line:nth-child(odd)::before {
  left: -999px;
}
.list-offres .line:nth-child(odd)::after {
  right: -999px;
}
.list-offres .line div[class^="col-"],
.list-offres .line div[class*=" col-"] {
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 5px;
  padding-right: 10px;
}
.list-offres .line div[class^="col-"].col-1,
.list-offres .line div[class*=" col-"].col-1 {
  width: 110px;
}
.list-offres .line div[class^="col-"].col-1 span,
.list-offres .line div[class*=" col-"].col-1 span {
  background-color: #0089c7;
  color: white;
  padding: 2px 10px;
  border-radius: 20px;
}
.list-offres .line div[class^="col-"].col-1 span.lighter,
.list-offres .line div[class*=" col-"].col-1 span.lighter {
  background-color: #00acfa;
}
.list-offres .line div[class^="col-"].col-2,
.list-offres .line div[class*=" col-"].col-2 {
  width: 160px;
}
.list-offres .line div[class^="col-"].col-2 .lieu,
.list-offres .line div[class*=" col-"].col-2 .lieu {
  display: inline-block;
  color: #0089c7;
  font-weight: bold;
  background-image: url("assets/img/pin.svg");
  background-repeat: no-repeat;
  background-position: left bottom;
  padding-left: 35px;
  background-size: 22px auto;
  line-height: 1.1;
  min-height: 31px;
}
.list-offres .line div[class^="col-"].col-2 .lieu span,
.list-offres .line div[class*=" col-"].col-2 .lieu span {
  display: block;
  color: #262626;
  font-weight: normal;
  font-size: 0.9rem;
}
.list-offres .line div[class^="col-"].col-3,
.list-offres .line div[class*=" col-"].col-3 {
  width: calc(100% - 520px);
  padding-right: 20px;
}
.list-offres .line div[class^="col-"].col-3 .title,
.list-offres .line div[class*=" col-"].col-3 .title {
  color: #0089c7;
  text-transform: uppercase;
  font-size: 1.1rem;
  font-weight: bold;
}
@media only screen and (max-width: 1024px) {
  .list-offres .line div[class^="col-"].col-3 .title,
  .list-offres .line div[class*=" col-"].col-3 .title {
    font-size: 1rem;
  }
}
.list-offres .line div[class^="col-"].col-3 .title span,
.list-offres .line div[class*=" col-"].col-3 .title span {
  display: block;
  text-transform: initial;
  color: #262626;
  font-size: 1rem;
  font-weight: normal;
}
.list-offres .line div[class^="col-"].col-4,
.list-offres .line div[class*=" col-"].col-4 {
  width: 120px;
  position: relative;
}
.list-offres .line div[class^="col-"].col-4 .date,
.list-offres .line div[class*=" col-"].col-4 .date {
  line-height: 1.1;
}
.list-offres .line div[class^="col-"].col-4 .date span,
.list-offres .line div[class*=" col-"].col-4 .date span {
  font-weight: bold;
  display: block;
}
.list-offres .line div[class^="col-"].col-5,
.list-offres .line div[class*=" col-"].col-5 {
  width: 130px;
  padding-right: 1px;
}
.list-offres .line div[class^="col-"].col-5 .elementor-button,
.list-offres .line div[class*=" col-"].col-5 .elementor-button {
  margin-top: 0 !important;
}
@media only screen and (max-width: 767px) {
  .list-offres .line div[class^="col-"],
  .list-offres .line div[class*=" col-"] {
    padding: 0 10px;
  }
  .list-offres .line div[class^="col-"].col-1,
  .list-offres .line div[class*=" col-"].col-1 {
    width: 30%;
  }
  .list-offres .line div[class^="col-"].col-2,
  .list-offres .line div[class*=" col-"].col-2 {
    width: 70%;
  }
  .list-offres .line div[class^="col-"].col-3,
  .list-offres .line div[class*=" col-"].col-3 {
    width: 100%;
    margin: 10px 0;
  }
  .list-offres .line div[class^="col-"].col-4,
  .list-offres .line div[class^="col-"].col-5,
  .list-offres .line div[class*=" col-"].col-4,
  .list-offres .line div[class*=" col-"].col-5 {
    width: 50%;
  }
}
.candidature-spontannee-appel {
  background-color: #0089c7;
}
.candidature-spontannee-appel h3 {
  color: white !important;
}
.metiers-list .line {
  padding-top: 20px;
  padding-bottom: 20px;
}
.metiers-list .line:nth-child(odd) .elementor-row {
  -webkit-flex-direction: row-reverse;
  -moz-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.metiers-list .line h3 {
  position: relative;
  padding-top: 40px;
}
.metiers-list .line h3 .before {
  font-family: "GochiHand", "Ubuntu", "Roboto", sans-serif;
  position: absolute;
  color: #0089c7;
  background-color: transparent;
  top: 5px;
  left: 10px;
  font-size: 1.2em;
  -moz-transform: rotate(-5deg);
  -o-transform: rotate(-5deg);
  -ms-transform: rotate(-5deg);
  -webkit-transform: rotate(-5deg);
  transform: rotate(-5deg);
}
.metiers-list .line h3 .after {
  color: white;
  background-color: #f49100;
  padding: 3px 8px;
  display: inline-block;
}
@media only screen and (max-width: 767px) {
  .metiers-list iframe {
    height: 300px;
  }
}
.processus {
  padding-top: 0 !important;
}
.processus .elementor-container {
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.processus .elementor-container .elementor-row {
  padding-bottom: 50px;
}
@media only screen and (max-width: 767px) {
  .processus .elementor-container .elementor-row {
    padding-bottom: 30px;
  }
}
.processus .elementor-container .elementor-row .col-txt {
  position: relative;
}
.processus
  .elementor-container
  .elementor-row
  .col-txt
  .elementor-widget-container {
  opacity: 0;
}
.processus .elementor-container .elementor-row:last-child .line {
  display: none;
}
.processus .elementor-container .elementor-row h3 {
  color: #f49100;
  text-transform: uppercase;
}
.processus
  .elementor-container
  .elementor-row
  .col-img
  .elementor-widget-container {
  opacity: 0;
}
.processus
  .elementor-container
  .elementor-row
  .col-img
  .elementor-widget-container
  .elementor-image
  img {
  height: 200px;
}
@media only screen and (max-width: 1024px) {
  .processus
    .elementor-container
    .elementor-row
    .col-img
    .elementor-widget-container
    .elementor-image
    img {
    height: 170px;
  }
}
@media only screen and (max-width: 767px) {
  .processus
    .elementor-container
    .elementor-row
    .col-img
    .elementor-widget-container
    .elementor-image
    img {
    height: 140px;
  }
}
.processus .elementor-container .elementor-row .count {
  position: absolute;
  top: 0;
  color: #f49100;
  font-family: "GochiHand", "Ubuntu", "Roboto", sans-serif;
  height: 60px;
  width: 60px;
  text-align: center;
  line-height: 60px;
  border-radius: 100%;
  background-color: white;
  border: 3px solid #f49100;
  font-size: 2rem;
  z-index: 2;
  /*opacity: 0;*/
}
.processus .elementor-container .elementor-row .line {
  position: absolute;
  top: 58px;
  width: 10px;
  height: 0;
  max-height: calc(100% + 20px);
  background-color: #0089c7;
  -webkit-transition: height 0.3s linear;
  -moz-transition: height 0.3s linear;
  -ms-transition: height 0.3s linear;
  -o-transition: height 0.3s linear;
  transition: height 0.3s linear;
}
.processus .elementor-container .elementor-row.anime .count {
  animation: zoomIn 0.5s linear 0s 1 normal forwards;
}
.processus .elementor-container .elementor-row.anime .line {
  animation: bigger 0.5s linear 0.5s 1 normal forwards;
}
@-webkit-keyframes bigger {
  0% {
    height: 0;
  }
  100% {
    height: calc(100% + 20px);
  }
}
@keyframes bigger {
  0% {
    height: 0;
  }
  100% {
    height: 300%;
  }
}
.processus
  .elementor-container
  .elementor-row.anime.pair
  .col-txt
  .elementor-widget-container {
  animation: fadeInLeft 0.75s linear 0.75s 1 normal forwards;
}
@media only screen and (max-width: 767px) {
  .processus
    .elementor-container
    .elementor-row.anime.pair
    .col-txt
    .elementor-widget-container {
    animation: fadeInRight 0.75s linear 0.75s 1 normal forwards;
  }
}
.processus
  .elementor-container
  .elementor-row.anime.pair
  .col-img
  .elementor-widget-container {
  animation: fadeInRight 0.75s linear 0.75s 1 normal forwards;
}
.processus
  .elementor-container
  .elementor-row.anime.impair
  .col-img
  .elementor-widget-container {
  animation: fadeInLeft 0.75s linear 0.75s 1 normal forwards;
}
@media only screen and (max-width: 767px) {
  .processus
    .elementor-container
    .elementor-row.anime.impair
    .col-img
    .elementor-widget-container {
    animation: fadeInRight 0.75s linear 0.75s 1 normal forwards;
  }
}
.processus
  .elementor-container
  .elementor-row.anime.impair
  .col-txt
  .elementor-widget-container {
  animation: fadeInRight 0.75s linear 0.75s 1 normal forwards;
}
.processus .elementor-container .pair {
  -webkit-flex-direction: row-reverse;
  -moz-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.processus .elementor-container .pair .col-txt .elementor-widget-wrap {
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  -ms-justify-content: flex-end;
  justify-content: flex-end;
  -ms-flex-pack: flex-end;
  text-align: right;
  padding-right: 60px;
}
@media only screen and (max-width: 767px) {
  .processus .elementor-container .pair .col-txt .elementor-widget-wrap {
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    -ms-justify-content: flex-start;
    justify-content: flex-start;
    -ms-flex-pack: flex-start;
    text-align: left;
    padding-right: 0;
    padding-left: 60px;
  }
}
.processus .elementor-container .pair .col-img .elementor-widget-wrap {
  padding-left: 60px;
}
.processus .elementor-container .pair .count {
  right: -30px;
}
@media only screen and (max-width: 767px) {
  .processus .elementor-container .pair .count {
    right: unset;
    left: -10px;
    top: -160px;
  }
}
.processus .elementor-container .pair .line {
  right: -10px;
}
@media only screen and (max-width: 767px) {
  .processus .elementor-container .pair .line {
    right: unset;
    left: 15px;
    top: -150px;
    max-height: calc(100% + 260px);
  }
}
.processus .elementor-container .impair .col-img .elementor-widget-wrap {
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  -ms-justify-content: flex-end;
  justify-content: flex-end;
  -ms-flex-pack: flex-end;
  padding-right: 60px;
}
@media only screen and (max-width: 767px) {
  .processus .elementor-container .impair .col-img .elementor-widget-wrap {
    padding-right: 0;
    padding-left: 60px;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    -ms-justify-content: flex-start;
    justify-content: flex-start;
    -ms-flex-pack: flex-start;
  }
}
.processus .elementor-container .impair .col-txt .elementor-widget-wrap {
  padding-left: 60px;
}
.processus .elementor-container .impair .count {
  left: -30px;
}
@media only screen and (max-width: 767px) {
  .processus .elementor-container .impair .count {
    left: -10px;
    top: -160px;
  }
}
.processus .elementor-container .impair .line {
  left: 0;
}
@media only screen and (max-width: 767px) {
  .processus .elementor-container .impair .line {
    left: 15px;
    top: -150px;
    max-height: calc(100% + 260px);
  }
}
.performances-list .elementor-container {
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.performances-list .elementor-container .wrap-list {
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.performances-list .elementor-container .wrap-list .perfo {
  background-color: #0089c7;
  text-align: center;
  width: 100%;
  padding: 10px 20px 20px;
}
.performances-list .elementor-container .wrap-list .perfo img {
  width: 100%;
  max-width: 100px;
  margin: 0 auto;
  display: block;
}
.performances-list .elementor-container .wrap-list .perfo .title {
  color: white;
}
@media only screen and (max-width: 1024px) {
  .performances-list .elementor-container .wrap-list .perfo {
    height: 175px;
  }
}
@media only screen and (max-width: 767px) {
  .performances-list .elementor-container .wrap-list .perfo {
    height: auto;
  }
}
.performances-list section.elementor-section {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.details-offre h2 {
  margin-bottom: 0 !important;
}
.details-offre .infos .align-end {
  display: flex;
  -webkit-align-items: flex-end;
  -moz-align-items: flex-end;
  -ms-align-items: flex-end;
  -ms-flex-align: flex-end;
  align-items: flex-end;
}
.details-offre .infos .align-end .type {
  display: inline-block;
  background-color: #0089c7;
  color: white;
  padding: 2px 10px;
  border-radius: 20px;
  margin-right: 20px;
}
.details-offre .infos .align-end .lieu {
  display: inline-block;
  color: #0089c7;
  font-weight: bold;
  min-height: 31px;
  background-image: url("assets/img/pin.svg");
  background-repeat: no-repeat;
  background-position: left bottom;
  padding-left: 35px;
  background-size: 22px auto;
  line-height: 1.1;
}
.details-offre .infos .align-end .lieu span {
  display: block;
  color: #262626;
  font-weight: normal;
  font-size: 0.9rem;
}
.details-offre .infos .date span {
  font-weight: bold;
  color: #0089c7;
}
.details-offre .infos .elementor-button {
  margin-top: 5px !important;
}
@media only screen and (max-width: 767px) {
  .details-offre .infos .elementor-align-right {
    text-align: left;
  }
}
.details-offre .content .bloc {
  margin-bottom: 40px;
}
.details-offre .content .bloc h3 {
  font-weight: bold;
  text-transform: unset;
}
.before-form .elementor-row {
  -webkit-align-items: flex-end;
  -moz-align-items: flex-end;
  -ms-align-items: flex-end;
  -ms-flex-align: flex-end;
  align-items: flex-end;
}
.before-form .elementor-row h2,
.before-form .elementor-row .elementor-button {
  margin-bottom: 20px !important;
}
@media only screen and (max-width: 767px) {
  .before-form .elementor-row h2 {
    margin-bottom: 0 !important;
  }
  .before-form .elementor-align-right {
    text-align: left;
  }
}
.offre_form form {
  max-width: 740px;
  margin: 0 auto;
}
.offre_form form .elementor-column {
  padding: 0 20px;
}
@media only screen and (max-width: 767px) {
  .offre_form form .elementor-column {
    padding: 0;
  }
}
.offre_form form .elementor-button {
  border-radius: 25px;
  border: 2px solid transparent;
  padding: 10px 20px;
  margin-top: 20px;
  background-color: white !important;
  border-color: #f49100 !important;
  color: #f49100 !important;
}
.offre_form form .elementor-button:hover {
  background-color: #f49100 !important;
  color: white !important;
}
.sites-header {
  padding-bottom: 0 !important;
}
.sites-header .elementor-element {
  position: relative;
  z-index: 2;
}
.sites-header .img-header-sites {
  width: 70%;
  margin: -120px 0 0 auto;
}
@media only screen and (max-width: 1024px) {
  .sites-header .img-header-sites {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
  }
}
.list-sites {
  overflow: hidden;
}
.list-sites .line {
  position: relative;
  padding: 20px 0;
}
.list-sites .line:nth-child(odd) {
  background-color: #f4f4f4;
}
.list-sites .line:nth-child(odd)::before,
.list-sites .line:nth-child(odd)::after {
  content: "";
  position: absolute;
  top: 0;
  width: 1000px;
  height: 100%;
  background-color: #f4f4f4;
}
.list-sites .line:nth-child(odd)::before {
  left: -999px;
}
.list-sites .line:nth-child(odd)::after {
  right: -999px;
}
.list-sites .line div[class^="col-"],
.list-sites .line div[class*=" col-"] {
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding-left: 5px;
  padding-right: 10px;
}
.list-sites .line div[class^="col-"].col-1,
.list-sites .line div[class*=" col-"].col-1 {
  width: 90px;
}
.list-sites .line div[class^="col-"].col-1 span,
.list-sites .line div[class*=" col-"].col-1 span {
  background-color: #0089c7;
  color: white;
  padding: 2px 10px;
  border-radius: 20px;
}
.list-sites .line div[class^="col-"].col-1 span.lighter,
.list-sites .line div[class*=" col-"].col-1 span.lighter {
  background-color: #00acfa;
}
.list-sites .line div[class^="col-"].col-2,
.list-sites .line div[class*=" col-"].col-2 {
  width: calc(100% - 755px);
}
.list-sites .line div[class^="col-"].col-2 .elementor-widget-wrap,
.list-sites .line div[class*=" col-"].col-2 .elementor-widget-wrap {
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.list-sites .line div[class^="col-"].col-2 .elementor-widget-wrap span,
.list-sites .line div[class*=" col-"].col-2 .elementor-widget-wrap span {
  display: block;
  font-size: 0.9rem;
}
.list-sites .line div[class^="col-"].col-2 .elementor-widget-wrap span.title,
.list-sites .line div[class*=" col-"].col-2 .elementor-widget-wrap span.title {
  font-weight: bold;
  text-transform: uppercase;
  font-size: 1.1rem;
  color: #0089c7;
}
.list-sites .line div[class^="col-"].col-3,
.list-sites .line div[class*=" col-"].col-3 {
  width: 160px;
  padding-right: 20px;
}
.list-sites .line div[class^="col-"].col-3 img,
.list-sites .line div[class*=" col-"].col-3 img {
  width: 100%;
  max-width: 200px;
}
.list-sites .line div[class^="col-"].col-3 span,
.list-sites .line div[class*=" col-"].col-3 span {
  font-weight: bold;
  text-transform: uppercase;
  font-size: 1.1rem;
}
.list-sites .line div[class^="col-"].col-4,
.list-sites .line div[class*=" col-"].col-4 {
  width: 370px;
  position: relative;
}
.list-sites .line div[class^="col-"].col-4 a,
.list-sites .line div[class*=" col-"].col-4 a {
  display: inline-block;
  padding-left: 32px;
  background-image: url("assets/img/check.svg");
  background-position: left center;
  background-size: 26px auto;
  background-repeat: no-repeat;
  font-size: 0.9rem;
  color: #262626;
  position: absolute;
  top: 50%;
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.list-sites .line div[class^="col-"].col-4 a.recyclage-fers-et-metaux,
.list-sites .line div[class*=" col-"].col-4 a.recyclage-fers-et-metaux {
  width: 160px;
  left: 0;
}
.list-sites .line div[class^="col-"].col-4 a.dechetterie-professionnelle,
.list-sites .line div[class*=" col-"].col-4 a.dechetterie-professionnelle {
  width: 100px;
  left: 60px;
  right: 0;
  margin: 0 auto;
}
.list-sites .line div[class^="col-"].col-4 a.vehicules-hors-d-usage,
.list-sites .line div[class*=" col-"].col-4 a.vehicules-hors-d-usage {
  width: 65px;
  right: 0;
  line-height: 42px;
}
.list-sites .line div[class^="col-"].col-4 a:hover,
.list-sites .line div[class*=" col-"].col-4 a:hover {
  font-weight: bold;
  color: #0089c7;
}
.list-sites .line div[class^="col-"].col-5,
.list-sites .line div[class*=" col-"].col-5 {
  width: 135px;
  padding-right: 1px;
}
.list-sites .line div[class^="col-"].col-5 .elementor-button,
.list-sites .line div[class*=" col-"].col-5 .elementor-button {
  margin-top: 0 !important;
}
@media only screen and (max-width: 1024px) {
  .list-sites .line div[class^="col-"],
  .list-sites .line div[class*=" col-"] {
    padding: 0 10px;
  }
  .list-sites .line div[class^="col-"].col-2,
  .list-sites .line div[class^="col-"].col-3,
  .list-sites .line div[class*=" col-"].col-2,
  .list-sites .line div[class*=" col-"].col-3 {
    width: calc(50% - 90px);
  }
  .list-sites .line div[class^="col-"].col-4,
  .list-sites .line div[class*=" col-"].col-4 {
    padding-top: 20px;
    width: calc(100% - 150px);
    height: 62px;
  }
  .list-sites .line div[class^="col-"].col-5,
  .list-sites .line div[class*=" col-"].col-5 {
    padding-top: 20px;
    width: 150px;
    padding-right: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .list-sites .line div[class^="col-"].col-1,
  .list-sites .line div[class*=" col-"].col-1 {
    order: 0;
    width: 100px;
    -webkit-align-items: center;
    -moz-align-items: center;
    -ms-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 10px;
  }
  .list-sites .line div[class^="col-"].col-3,
  .list-sites .line div[class*=" col-"].col-3 {
    padding-top: 10px;
    order: 1;
    width: calc(100% - 100px);
    margin-bottom: 10px;
  }
  .list-sites .line div[class^="col-"].col-3 img,
  .list-sites .line div[class*=" col-"].col-3 img {
    max-width: 160px;
  }
  .list-sites .line div[class^="col-"].col-2,
  .list-sites .line div[class*=" col-"].col-2 {
    order: 2;
    width: 100%;
  }
  .list-sites .line div[class^="col-"].col-4,
  .list-sites .line div[class*=" col-"].col-4 {
    width: 100%;
    order: 3;
    height: auto;
  }
  .list-sites .line div[class^="col-"].col-4 a,
  .list-sites .line div[class*=" col-"].col-4 a {
    position: relative;
    margin-left: 0 !important;
    margin-right: 5px !important;
    left: 0 !important;
    right: 0 !important;
  }
  .list-sites .line div[class^="col-"].col-5,
  .list-sites .line div[class*=" col-"].col-5 {
    width: 100%;
    order: 4;
  }
  .list-sites .line div[class^="col-"].col-5 .elementor-widget-button,
  .list-sites .line div[class*=" col-"].col-5 .elementor-widget-button {
    text-align: left;
  }
}
.details-site .col-1 {
  padding-right: 20px;
}
@media only screen and (max-width: 767px) {
  .details-site .col-1 {
    padding-right: 0;
  }
}
.details-site .col-2 {
  padding-left: 20px;
}
@media only screen and (max-width: 767px) {
  .details-site .col-2 {
    padding-left: 0;
  }
}
.details-site .line-0 {
  -webkit-align-items: flex-end;
  -moz-align-items: flex-end;
  -ms-align-items: flex-end;
  -ms-flex-align: flex-end;
  align-items: flex-end;
}
.details-site .line-0 .col-2 {
  -webkit-align-items: flex-end;
  -moz-align-items: flex-end;
  -ms-align-items: flex-end;
  -ms-flex-align: flex-end;
  align-items: flex-end;
}
.details-site .line-0 .col-2 .wrap-buttons .elementor-widget-button {
  width: auto;
}
.details-site
  .line-0
  .col-2
  .wrap-buttons
  .elementor-widget-button
  .elementor-button-wrapper {
  text-align: center;
  margin-right: 20px;
}
.details-site
  .line-0
  .col-2
  .wrap-buttons
  .elementor-widget-button
  .elementor-button-wrapper
  .before {
  color: #0089c7;
  font-weight: bold;
  display: block;
}
@media only screen and (max-width: 767px) {
  .details-site
    .line-0
    .col-2
    .wrap-buttons
    .elementor-widget-button
    .elementor-button-wrapper
    .before {
    display: none;
  }
}
.details-site
  .line-0
  .col-2
  .wrap-buttons
  .elementor-widget-button
  .elementor-button-wrapper
  .elementor-button {
  margin: 10px 0;
}
@media only screen and (max-width: 767px) {
  .details-site
    .line-0
    .col-2
    .wrap-buttons
    .elementor-widget-button.tel
    .elementor-button-wrapper {
    margin-right: 15px;
  }
  .details-site
    .line-0
    .col-2
    .wrap-buttons
    .elementor-widget-button.mail
    .elementor-button-wrapper {
    margin-right: 0;
  }
}
.details-site .line-1 {
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  -ms-flex-align: flex-start;
  align-items: flex-start;
}
.details-site .line-1 .elementor-text-editor {
  text-align: justify;
}
.details-site .line-1 .elementor-text-editor .type {
  margin-top: 20px;
}
.details-site .line-1 .elementor-text-editor .type a {
  float: left;
  padding-left: 42px;
  background-image: url("assets/img/check.svg");
  background-position: left center;
  background-size: 32px auto;
  background-repeat: no-repeat;
  font-size: 0.9rem;
  color: #262626;
  text-align: left;
  margin-right: 40px;
}
.details-site .line-1 .elementor-text-editor .type a.recyclage-fers-et-metaux {
  width: 170px;
}
.details-site
  .line-1
  .elementor-text-editor
  .type
  a.dechetterie-professionnelle {
  width: 120px;
}
.details-site .line-1 .elementor-text-editor .type a.vehicules-hors-d-usage {
  width: 75px;
  line-height: 42px;
}
.details-site .line-1 .elementor-text-editor .type a:hover {
  font-weight: bold;
  color: #0089c7;
}
.details-site .line-1 .site-slider {
  height: 400px;
  overflow: hidden;
  border-radius: 20px;
}
@media only screen and (max-width: 767px) {
  .details-site .line-1 .site-slider {
    height: 300px;
  }
}
.details-site .line-1 .site-slider .slider-img {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 400px;
}
@media only screen and (max-width: 767px) {
  .details-site .line-1 .site-slider .slider-img {
    height: 300px;
  }
}
.details-site .line-1 .site-slider .slick-prev,
.details-site .line-1 .site-slider .slick-next {
  border-radius: 0;
  border-color: white;
  top: unset;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.3);
}
.details-site .line-1 .site-slider .slick-prev::before,
.details-site .line-1 .site-slider .slick-prev::after,
.details-site .line-1 .site-slider .slick-next::before,
.details-site .line-1 .site-slider .slick-next::after {
  background-color: white;
}
.details-site .line-1 .site-slider .slick-prev {
  left: unset;
  right: 57px;
}
.details-site .line-1 .site-slider .slick-next {
  right: 20px !important;
}
.details-site .line-2 {
  -webkit-align-items: flex-end;
  -moz-align-items: flex-end;
  -ms-align-items: flex-end;
  -ms-flex-align: flex-end;
  align-items: flex-end;
  margin-top: 40px;
}
.details-site
  .line-2
  .elementor-text-editor
  table
  tbody
  > tr:nth-child(odd)
  > td,
.details-site
  .line-2
  .elementor-text-editor
  table
  tbody
  > tr:nth-child(odd)
  > th {
  background-color: #f4f4f4;
}
.details-site
  .line-2
  .elementor-text-editor
  table
  tbody
  > tr:nth-child(even)
  > td,
.details-site
  .line-2
  .elementor-text-editor
  table
  tbody
  > tr:nth-child(even)
  > th {
  background-color: white;
}
.details-site .line-2 .elementor-text-editor table td {
  border: none;
  color: #0089c7;
  font-weight: 300;
}
.details-site .line-2 .elementor-text-editor table td:first-child {
  font-weight: bold;
  padding-left: 50px;
}
.details-site .line-2 .elementor-text-editor table td b {
  font-weight: bold;
}
@media only screen and (max-width: 767px) {
  .details-site .line-2 .elementor-text-editor table td {
    padding: 10px !important;
  }
}
.details-site .line-2 .site-slider-container {
  width: calc(100% + 20px);
  left: -20px;
  padding-left: 20px;
  position: relative;
}
.details-site .line-2 .site-slider-container .site-slider-default {
  height: 400px;
  border-radius: 20px;
  -webkit-box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
}
@media only screen and (max-width: 767px) {
  .details-site .line-2 .site-slider-container .site-slider-default {
    height: 300px;
  }
}
.details-site .line-2 .site-slider-container .site-slider-default .slider-img {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 400px;
  border-radius: 20px;
}
@media only screen and (max-width: 767px) {
  .details-site
    .line-2
    .site-slider-container
    .site-slider-default
    .slider-img {
    height: 300px;
  }
}
.details-site .line-2 .site-slider-container .site-slider-default .slick-list,
.details-site
  .line-2
  .site-slider-container
  .site-slider-default
  .slick-slider {
  overflow: visible;
}
.details-site .line-2 .site-slider-container .site-slider-default .slick-prev,
.details-site .line-2 .site-slider-container .site-slider-default .slick-next {
  border-radius: 0;
  border-color: #0089c7;
  top: unset;
  bottom: 0;
}
.details-site
  .line-2
  .site-slider-container
  .site-slider-default
  .slick-prev::before,
.details-site
  .line-2
  .site-slider-container
  .site-slider-default
  .slick-prev::after,
.details-site
  .line-2
  .site-slider-container
  .site-slider-default
  .slick-next::before,
.details-site
  .line-2
  .site-slider-container
  .site-slider-default
  .slick-next::after {
  background-color: #0089c7;
}
.details-site .line-2 .site-slider-container .site-slider-default .slick-prev {
  left: unset !important;
  right: 57px;
}
.details-site .line-2 .site-slider-container .site-slider-default .slick-next {
  right: 20px !important;
}
.details-site .line-2 .site-slider-container .site-slider-default .title {
  position: absolute;
  top: 20px;
  display: inline-block;
  left: -20px;
  background-color: #f49100;
  color: white;
  font-size: 1.2rem;
  text-transform: uppercase;
  z-index: 2;
  font-weight: bold;
  padding: 4px 10px;
}
.details-site
  .line-2
  .site-slider-container
  .site-slider-default
  .title::after {
  content: "";
  background-image: url("assets/img/after-title-slider.png");
  width: 20px;
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position: left center;
  position: absolute;
  right: -20px;
  height: 100%;
  top: 0;
}
.details-site
  .line-2
  .site-slider-container
  .site-slider-default
  .elementor-widget-button {
  display: inline-block;
  bottom: 20px;
  left: 20px;
  position: absolute;
}
.site-adresse {
  background-color: #0089c7;
}
.site-adresse .acf-map {
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
  height: 100%;
  z-index: 2;
}
@media only screen and (max-width: 767px) {
  .site-adresse .acf-map {
    position: relative;
    right: 0;
    top: -20px;
    width: 100%;
    height: 300px;
  }
}
.site-adresse .title {
  margin-bottom: 40px;
  text-transform: uppercase;
  font-size: 1.4rem;
  color: white;
  font-weight: bold;
}
.site-adresse .adresse p {
  font-size: 1.1rem;
  font-weight: bold;
  color: white;
  margin-bottom: 40px;
}
.site-adresse img {
  width: 100%;
  max-width: 170px;
}
.solutions-header {
  padding-bottom: 0 !important;
}
.list-solutions {
  overflow: hidden;
}
.list-solutions .solution {
  margin: 10px 0;
  padding: 0 !important;
  position: relative;
  min-height: 400px;
}
.list-solutions .solution:nth-child(odd) {
  background-color: #f4f4f4;
}
.list-solutions .solution:nth-child(odd)::before,
.list-solutions .solution:nth-child(odd)::after {
  content: "";
  position: absolute;
  top: 0;
  width: 1000px;
  height: 100%;
  background-color: #f4f4f4;
}
.list-solutions .solution:nth-child(odd)::before {
  left: -999px;
}
.list-solutions .solution:nth-child(odd)::after {
  right: -999px;
}
.list-solutions .solution .bg {
  position: absolute;
  left: 0;
  width: 50%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media only screen and (max-width: 767px) {
  .list-solutions .solution .bg {
    position: relative;
    width: 100%;
    height: 240px;
  }
}
.list-solutions .solution .content {
  padding: 20px 0;
  max-width: 500px;
  margin-left: auto;
}
.list-solutions .solution .content h3 {
  text-transform: uppercase;
  font-weight: bold;
  color: #0089c7;
}
.list-solutions .solution .content h3 span {
  font-weight: 300;
  color: #f49100;
  display: block;
}
@media only screen and (max-width: 767px) {
  .list-solutions .solution .content {
    max-width: unset;
  }
}

/** Cookies Youtube / Recaptcha **/
.overlay-cookie {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 49;
}
.overlay-cookie .elementor-widget-button {
  margin-top: unset;
}
.overlay-cookie .elementor-button {
  margin-top: 0 !important;
  cursor: pointer;
}
.overlay-cookie > img {
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.overlay-cookie .elementor-button p {
  margin: 0;
}

/** 27/03/23 : Fix CF7 **/
.wpcf7-acceptance .wpcf7-list-item {
  margin: 0;
}
.wpcf7 .elementor-widget-container p > label {
  margin-bottom: 0px;
  display: block;
  font-weight: bold;
}

.wpcf7 label span {
  color: #f49100;
}
.wpcf7 .acceptance,
.wpcf7 .acceptance .wpcf7-list-item-label {
  color: #262626;
  font-weight: normal !important;
  font-size: 14px;
}
.offre_form form .elementor-column.elementor-col-100 {
  display: block;
}