/*!
 * animate.css - https://animate.style/
 * Version - 4.0.0
 * 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: .5s;
  animation-duration: .5s;
  -webkit-animation-duration: calc(var(--animate-duration)/2);
  animation-duration: calc(var(--animate-duration)/2);
}

.animate__animated.animate__fast {
  -webkit-animation-duration: .8s;
  animation-duration: .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;
    -o-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);
    -o-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;
  -ms-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;
  -ms-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;
  -ms-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: .7;
  }
  80% {
    -webkit-transform: translateY(0) scale(0.7);
    transform: translateY(0) scale(0.7);
    opacity: .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: .7;
  }
  80% {
    -webkit-transform: translateY(0) scale(0.7);
    transform: translateY(0) scale(0.7);
    opacity: .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: .7;
  }
  80% {
    -webkit-transform: translateX(0) scale(0.7);
    transform: translateX(0) scale(0.7);
    opacity: .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: .7;
  }
  80% {
    -webkit-transform: translateX(0) scale(0.7);
    transform: translateX(0) scale(0.7);
    opacity: .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: .7;
  }
  80% {
    -webkit-transform: translateX(0) scale(0.7);
    transform: translateX(0) scale(0.7);
    opacity: .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: .7;
  }
  80% {
    -webkit-transform: translateX(0) scale(0.7);
    transform: translateX(0) scale(0.7);
    opacity: .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: .7;
  }
  80% {
    -webkit-transform: translateY(0) scale(0.7);
    transform: translateY(0) scale(0.7);
    opacity: .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: .7;
  }
  80% {
    -webkit-transform: translateY(0) scale(0.7);
    transform: translateY(0) scale(0.7);
    opacity: .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: .7;
  }
  to {
    -webkit-transform: translateY(700px) scale(0.7);
    transform: translateY(700px) scale(0.7);
    opacity: .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: .7;
  }
  to {
    -webkit-transform: translateY(700px) scale(0.7);
    transform: translateY(700px) scale(0.7);
    opacity: .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: .7;
  }
  to {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: .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: .7;
  }
  to {
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
    opacity: .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: .7;
  }
  to {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: .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: .7;
  }
  to {
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
    opacity: .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: .7;
  }
  to {
    -webkit-transform: translateY(-700px) scale(0.7);
    transform: translateY(-700px) scale(0.7);
    opacity: .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: .7;
  }
  to {
    -webkit-transform: translateY(-700px) scale(0.7);
    transform: translateY(-700px) scale(0.7);
    opacity: .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: .75s;
  animation-duration: .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: .75s;
  animation-duration: .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: .75s;
  animation-duration: .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: .75s;
  animation-duration: .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;
  -ms-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;
  -ms-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;
  -ms-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;
  -ms-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;
  -ms-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;
  -ms-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;
  -ms-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;
  -ms-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;
  -ms-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;
  -ms-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;
  -ms-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);
  }
  50% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}

.animate__zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

@-webkit-keyframes zoomInDown {
  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;
  -ms-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;
  -ms-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;
  -ms-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;
  -ms-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;
}

/**
 * Owl Carousel v2.2.0
 * Copyright 2013-2016 David Deutsch
 * Licensed under MIT (https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE)
 */
/*
 *  Owl Carousel - Core
 */
.owl-carousel, .owl-carousel .owl-item {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}

.owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
}

.owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

.owl-nav.disabled,
.owl-dots.disabled {
  display: none;
}

.owl-nav .owl-prev,
.owl-nav .owl-next,
.owl-dot {
  cursor: pointer;
  cursor: hand;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel.owl-loaded {
  display: block;
}

.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}

.owl-carousel.owl-hidden {
  opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel.owl-grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.owl-carousel.owl-rtl {
  direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
  float: right;
}

/* No Js */
.no-js {
  display: block;
}

/*
 *  Owl Carousel - Animate Plugin
 */
.animated {
  -webkit-animation-duration: 1000ms;
  animation-duration: 1000ms;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.owl-animated-in {
  z-index: 0;
}

.owl-animated-out {
  z-index: 1;
}

.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  -webkit-transition: height 250ms ease-in-out;
  -o-transition: height 250ms ease-in-out;
  transition: height 250ms ease-in-out;
}

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-item .owl-lazy {
  opacity: 0;
  -webkit-transition: opacity 400ms ease;
  -o-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}

.owl-item img.owl-lazy {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

/*
 * 	Owl Carousel - Video Plugin
 */
.owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}

.owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: -webkit-transform 100ms ease;
  -webkit-transition: -webkit-transform 100ms ease;
  -o-transition: transform 100ms ease;
  transition: transform 100ms ease;
  transition: transform 100ms ease, -webkit-transform 100ms ease;
}

.owl-video-play-icon:hover {
  -webkit-transform: scale(1.3, 1.3);
  -ms-transform: scale(1.3, 1.3);
  transform: scale(1.3, 1.3);
}

.owl-video-playing .owl-video-tn,
.owl-video-playing .owl-video-play-icon {
  display: none;
}

.owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transition: opacity 400ms ease;
  -o-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}

.owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

*, html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  -o-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
  padding: 0;
  outline: none;
  word-break: break-word;
  -webkit-tap-highlight-color: transparent;
}

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

a, a:visited, a:hover {
  text-decoration: none;
}

ul {
  list-style-type: none;
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

textarea {
  resize: vertical;
}

select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  border-radius: 0px;
}

select::-ms-expand {
  /* for IE 11 */
  display: none;
  border: none;
  border-radius: 0px;
}

input[type=date]::-webkit-inner-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  display: none;
}

::-webkit-input-placeholder,
:-moz-placeholder,
::-moz-placeholder,
:-ms-input-placeholder {
  color: #E2E2E2;
}

.woocommerce-shipping-fields {
  display: none;
}

.woocommerce-checkout p.woocommerce-invalid-required-field span.error {
  color: #db4437;
  display: block !important;
}

.woocommerce-NoticeGroup-checkout {
  display: none;
}

.woocommerce-notices-wrapper {
  margin: 0 !important;
}

.woocommerce-product-gallery__image {
  display: none;
}

.term-description {
  display: none;
}

.woocommerce {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}

.woocommerce .woocommerce-error,
.woocommerce .woocommerce-notices-wrapper {
  width: 100%;
}

.woocommerce .woocommerce-error .woocommerce-message,
.woocommerce .woocommerce-error .woocommerce-error,
.woocommerce .woocommerce-notices-wrapper .woocommerce-message,
.woocommerce .woocommerce-notices-wrapper .woocommerce-error {
  background: #efefef;
  padding-top: 48px;
  padding-bottom: 48px;
  padding-left: 16px;
  padding-right: 16px;
  color: #ff005b;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}

@media only screen and (min-width: 640px) {
  .woocommerce .woocommerce-error .woocommerce-message,
  .woocommerce .woocommerce-error .woocommerce-error,
  .woocommerce .woocommerce-notices-wrapper .woocommerce-message,
  .woocommerce .woocommerce-notices-wrapper .woocommerce-error {
    padding-left: 48px;
    padding-right: 48px;
  }
}

@media only screen and (min-width: 1280px) {
  .woocommerce .woocommerce-error .woocommerce-message,
  .woocommerce .woocommerce-error .woocommerce-error,
  .woocommerce .woocommerce-notices-wrapper .woocommerce-message,
  .woocommerce .woocommerce-notices-wrapper .woocommerce-error {
    padding-left: 96px;
    padding-right: 96px;
  }
}

@media only screen and (min-width: 640px) {
  .woocommerce .woocommerce-error .woocommerce-message,
  .woocommerce .woocommerce-error .woocommerce-error,
  .woocommerce .woocommerce-notices-wrapper .woocommerce-message,
  .woocommerce .woocommerce-notices-wrapper .woocommerce-error {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 48px;
  }
}

.woocommerce .woocommerce-error .woocommerce-message .button,
.woocommerce .woocommerce-error .woocommerce-message .restore-item,
.woocommerce .woocommerce-error .woocommerce-error .button,
.woocommerce .woocommerce-error .woocommerce-error .restore-item,
.woocommerce .woocommerce-notices-wrapper .woocommerce-message .button,
.woocommerce .woocommerce-notices-wrapper .woocommerce-message .restore-item,
.woocommerce .woocommerce-notices-wrapper .woocommerce-error .button,
.woocommerce .woocommerce-notices-wrapper .woocommerce-error .restore-item {
  margin-bottom: 0;
}

.woocommerce .woocommerce-error .woocommerce-error,
.woocommerce .woocommerce-notices-wrapper .woocommerce-error {
  padding: 0;
}

.woocommerce .woocommerce-error li,
.woocommerce .woocommerce-notices-wrapper li {
  padding: 48px;
  font-weight: 700;
  color: #3fa099;
}

@media only screen and (min-width: 640px) {
  .woocommerce .woocommerce-error li,
  .woocommerce .woocommerce-notices-wrapper li {
    text-align: center;
  }
}

.woocommerce .woocommerce-form-coupon-toggle {
  display: none;
  width: 100%;
  text-align: center;
  padding: 48px;
  padding-left: 16px;
  padding-right: 16px;
  background-color: #efefef;
}

@media only screen and (min-width: 640px) {
  .woocommerce .woocommerce-form-coupon-toggle {
    padding-left: 48px;
    padding-right: 48px;
  }
}

@media only screen and (min-width: 1280px) {
  .woocommerce .woocommerce-form-coupon-toggle {
    padding-left: 96px;
    padding-right: 96px;
  }
}

.woocommerce .woocommerce-form-coupon-toggle .woocommerce-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  font-weight: 700;
  color: #ff005b;
}

@media only screen and (min-width: 640px) {
  .woocommerce .woocommerce-form-coupon-toggle .woocommerce-info {
    gap: 48px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.woocommerce .woocommerce-form-coupon-toggle a {
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  margin-bottom: 0;
}

.woocommerce form.checkout_coupon {
  background-color: #efefef;
  padding-left: 16px;
  padding-right: 16px;
  padding: 48px 16px;
  margin-bottom: 96px;
  width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  gap: 24px;
}

@media only screen and (min-width: 640px) {
  .woocommerce form.checkout_coupon {
    padding-left: 48px;
    padding-right: 48px;
  }
}

@media only screen and (min-width: 1280px) {
  .woocommerce form.checkout_coupon {
    padding-left: 96px;
    padding-right: 96px;
  }
}

.woocommerce form.checkout_coupon input {
  max-width: 256px;
}

@media only screen and (min-width: 640px) {
  .woocommerce form.checkout_coupon {
    -ms-grid-columns: 1fr 256px;
        grid-template-columns: 1fr 256px;
  }
  .woocommerce form.checkout_coupon input {
    max-width: none;
  }
  .woocommerce form.checkout_coupon :first-child {
    grid-column: span 2;
  }
}

@media only screen and (min-width: 1280px) {
  .woocommerce form.checkout_coupon {
    -ms-grid-columns: 1fr 644px 256px 1fr;
        grid-template-columns: 1fr 644px 256px 1fr;
  }
  .woocommerce form.checkout_coupon :nth-child(1) {
    -ms-grid-column: 2;
    -ms-grid-column-span: 2;
    grid-column: 2 / span 2;
  }
  .woocommerce form.checkout_coupon :nth-child(2) {
    -ms-grid-column: 2;
    grid-column: 2;
  }
  .woocommerce form.checkout_coupon :nth-child(3) {
    -ms-grid-column: 3;
    grid-column: 3;
  }
}

.woocommerce form.checkout_coupon > * {
  margin: 0;
  padding: 0;
}

.woocommerce form.checkout_coupon > * button {
  margin-bottom: 0;
}

.woocommerce ul.products {
  width: 100%;
  padding-top: 96px;
  padding-bottom: 48px;
  padding-left: 16px;
  padding-right: 16px;
}

@media only screen and (min-width: 640px) {
  .woocommerce ul.products {
    padding-left: 48px;
    padding-right: 48px;
  }
}

@media only screen and (min-width: 1280px) {
  .woocommerce ul.products {
    padding-left: 96px;
    padding-right: 96px;
  }
}

@media only screen and (min-width: 640px) {
  .woocommerce ul.products {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}

@media only screen and (min-width: 1280px) {
  .woocommerce ul.products {
    -ms-grid-columns: 1fr 1fr 1fr;
        grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
  }
}

@media only screen and (min-width: 1600px) {
  .woocommerce ul.products {
    -ms-grid-columns: 1fr 1fr 1fr 1fr;
        grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 48px;
  }
}

.woocommerce ul.products::before {
  content: none;
}

.woocommerce ul.products li.product {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.woocommerce ul.products li.product a.woocommerce-loop-product__link {
  display: block;
  width: 100%;
  position: relative;
}

.woocommerce ul.products li.product a.woocommerce-loop-product__link img {
  width: 100%;
  height: calc(100vw - 32px);
  -o-object-fit: contain;
     object-fit: contain;
  padding: 24px;
  background: #ffffff;
  border: 2px solid #dbdbdb;
  margin-bottom: 48px;
  border-radius: 4px 4px 4px 4px;
  -webkit-transition: all 0.24s ease-in-out;
  -o-transition: all 0.24s ease-in-out;
  transition: all 0.24s ease-in-out;
}

@media only screen and (min-width: 640px) {
  .woocommerce ul.products li.product a.woocommerce-loop-product__link img {
    height: calc((100vw - 96px - 24px) / 2);
  }
}

@media only screen and (min-width: 1280px) {
  .woocommerce ul.products li.product a.woocommerce-loop-product__link img {
    height: calc((100vw - 192px - 48px) / 3);
  }
}

@media only screen and (min-width: 1600px) {
  .woocommerce ul.products li.product a.woocommerce-loop-product__link img {
    height: calc((100vw - 192px - 144px) / 4);
    padding: 48px;
  }
}

.woocommerce ul.products li.product a.woocommerce-loop-product__link h2 {
  font-size: 20px;
  padding-bottom: 24px;
  width: 100%;
  text-align: center;
}

@media only screen and (min-width: 640px) {
  .woocommerce ul.products li.product a.woocommerce-loop-product__link h2 {
    font-size: 24px;
  }
}

.woocommerce ul.products li.product a.woocommerce-loop-product__link span.price {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 16px;
  line-height: 1.6;
  font-family: montserrat;
  font-weight: 500;
  padding: 0 0 24px 0;
  position: relative;
  z-index: 1;
  margin-top: auto;
}

@media only screen and (min-width: 640px) {
  .woocommerce ul.products li.product a.woocommerce-loop-product__link span.price {
    font-size: 20px;
  }
}

.woocommerce ul.products li.product a.button {
  margin-top: auto;
}

.woocommerce ul.products li.product:hover a.woocommerce-loop-product__link img {
  border: 2px solid #d6004c;
}

.woocommerce ul.products li.product:hover a.button {
  background: #d6004c;
}

.woocommerce .woocommerce-product-header {
  width: 100%;
  background: #efefef;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 48px;
  padding-bottom: 48px;
  padding-left: 16px;
  padding-right: 16px;
}

@media only screen and (min-width: 640px) {
  .woocommerce .woocommerce-product-header {
    padding-left: 48px;
    padding-right: 48px;
  }
}

@media only screen and (min-width: 1280px) {
  .woocommerce .woocommerce-product-header {
    padding-left: 96px;
    padding-right: 96px;
  }
}

@media only screen and (min-width: 1280px) {
  .woocommerce .woocommerce-product-header {
    padding-top: 24px;
    padding-bottom: 24px;
  }
}

.woocommerce .woocommerce-product-header .result {
  margin-bottom: 24px;
  width: 100%;
}

@media only screen and (min-width: 1280px) {
  .woocommerce .woocommerce-product-header .result {
    width: auto;
    margin-bottom: 0;
  }
}

.woocommerce .woocommerce-product-header .result p {
  padding: 0;
}

.woocommerce .woocommerce-product-header .orderby {
  width: 100%;
  position: relative;
}

@media only screen and (min-width: 1280px) {
  .woocommerce .woocommerce-product-header .orderby {
    max-width: calc(256px + 64px);
  }
}

.woocommerce .woocommerce-product-header .orderby svg {
  position: absolute;
  top: 0;
  right: 0;
  width: 64px;
  height: 64px;
  background: #ff005b;
  color: #ffffff;
  border-radius: 4px;
  padding: 22px;
  z-index: 1;
  pointer-events: none;
  -webkit-transition: all 0.24s ease-in-out;
  -o-transition: all 0.24s ease-in-out;
  transition: all 0.24s ease-in-out;
}

.woocommerce .woocommerce-product-header .orderby:hover {
  cursor: pointer;
}

.woocommerce .woocommerce-product-header .orderby:hover svg {
  background: #d6004c;
}

.woocommerce .woocommerce-pagination {
  width: 100%;
  background: #efefef;
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 48px;
  padding-bottom: 48px;
}

@media only screen and (min-width: 640px) {
  .woocommerce .woocommerce-pagination {
    padding-left: 48px;
    padding-right: 48px;
  }
}

@media only screen and (min-width: 1280px) {
  .woocommerce .woocommerce-pagination {
    padding-left: 96px;
    padding-right: 96px;
  }
}

.woocommerce .woocommerce-pagination ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.woocommerce .woocommerce-pagination ul li {
  width: 48px;
  height: 48px;
  background: #ffffff;
  line-height: 48px;
  text-align: center;
  border-radius: 4px 4px 4px 4px;
}

.woocommerce .woocommerce-pagination ul li:not(:last-of-type) {
  margin-right: 4px;
}

.woocommerce .woocommerce-pagination ul li a {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 4px 4px 4px 4px;
}

.woocommerce .woocommerce-pagination ul li:hover a {
  background: #dbdbdb;
}

.woocommerce .single-product {
  max-width: auto;
  background: #efefef;
}

.woocommerce .single-product .woocommerce-notices-wrapper {
  margin-top: 0;
}

.woocommerce .single-product .woocommerce-notices-wrapper:empty {
  display: none;
  margin: 0;
}

.woocommerce .single-product .woocommerce-notices-wrapper .woocommerce-message {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

@media only screen and (min-width: 640px) {
  .woocommerce .single-product .woocommerce-notices-wrapper .woocommerce-message {
    text-align: left;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

.woocommerce .single-product .product {
  max-width: 100vw;
}

@media only screen and (min-width: 960px) {
  .woocommerce .single-product .product {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.woocommerce .single-product .product .woocommerce-product-gallery {
  width: calc(100% - 32px);
  margin-left: 16px;
  margin-right: 16px;
  border: 2px solid #efefef;
  margin-bottom: 48px;
  padding: 48px;
  overflow: hidden;
  border-radius: 4px 4px 4px 4px;
}

@media only screen and (min-width: 640px) {
  .woocommerce .single-product .product .woocommerce-product-gallery {
    width: calc(100% - 64px);
    margin-left: 32px;
    margin-right: 32px;
  }
}

@media only screen and (min-width: 960px) {
  .woocommerce .single-product .product .woocommerce-product-gallery {
    width: calc(50% - 48px - 48px);
    margin-left: 48px;
    margin-right: 48px;
    margin-bottom: 96px;
  }
}

@media only screen and (min-width: 1280px) {
  .woocommerce .single-product .product .woocommerce-product-gallery {
    width: calc(50% - 48px - 96px);
    margin-left: 96px;
  }
}

.woocommerce .single-product .product .woocommerce-product-gallery .woocommerce-product-gallery__trigger {
  display: none;
}

.woocommerce .single-product .product .woocommerce-product-gallery .woocommerce-product-gallery__image {
  width: 100%;
  height: 480px;
  position: relative;
  max-width: 480px;
}

.woocommerce .single-product .product .woocommerce-product-gallery .woocommerce-product-gallery__image a {
  pointer-events: none;
  height: 100%;
  width: 100%;
}

.woocommerce .single-product .product .woocommerce-product-gallery .woocommerce-product-gallery__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.woocommerce .single-product .product .flex-control-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 8px;
}

.woocommerce .single-product .product .flex-control-nav li {
  position: relative;
  max-height: 100px;
}

.woocommerce .single-product .product .flex-control-nav li::marker {
  content: none;
}

.woocommerce .single-product .product .flex-control-nav li:nth-child(n+5) {
  display: none;
}

.woocommerce .single-product .product .flex-control-nav:hover li {
  cursor: pointer;
}

.woocommerce .single-product .product .summary {
  width: calc(100% - 32px);
  margin-left: 16px;
  margin-right: 16px;
  margin-bottom: 96px;
}

@media only screen and (min-width: 640px) {
  .woocommerce .single-product .product .summary {
    width: calc(100% - 64px);
    margin-left: 32px;
    margin-right: 32px;
  }
}

@media only screen and (min-width: 960px) {
  .woocommerce .single-product .product .summary {
    width: calc(50% - 48px - 48px);
    margin-left: 48px;
    margin-right: 48px;
  }
}

@media only screen and (min-width: 1280px) {
  .woocommerce .single-product .product .summary {
    width: calc(50% - 48px - 96px);
    margin-right: 96px;
    margin-bottom: 70px;
  }
}

.woocommerce .single-product .product .summary h1 {
  padding-bottom: 24px;
}

.woocommerce .single-product .product .summary .price {
  font-size: 16px !important;
  opacity: 0.6;
}

.woocommerce .single-product .product .summary .price span {
  color: #ff005b;
  font-size: 20px;
  line-height: 1.6;
  font-family: montserrat;
  font-weight: 500;
  padding: 0 0 24px 0;
  position: relative;
  z-index: 1;
}

@media only screen and (min-width: 640px) {
  .woocommerce .single-product .product .summary .price {
    font-size: 24px;
  }
}

.woocommerce .single-product .product .summary .price > del {
  -webkit-filter: grayscale(1) opacity(0.5);
          filter: grayscale(1) opacity(0.5);
}

.woocommerce .single-product .product .summary .woocommerce-product-details__short-description {
  margin-bottom: -24px;
}

@media only screen and (min-width: 1280px) {
  .woocommerce .single-product .product .summary .cart {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.woocommerce .single-product .product .summary .cart .variations {
  margin-bottom: 32px;
}

.woocommerce .single-product .product .summary .cart .variations .label label {
  color: #3fa099;
  font-weight: 700;
}

.woocommerce .single-product .product .summary .cart .variations .value {
  position: relative;
  line-height: 64px;
  height: 64px;
}

.woocommerce .single-product .product .summary .cart .variations .value select {
  width: 100%;
  height: 100%;
  font-family: montserrat;
  font-size: 16px;
  color: #030405;
  padding: 0 16px;
  background: transparent;
  z-index: 1;
  text-align: left;
  position: relative;
}

.woocommerce .single-product .product .summary .cart .variations .value select::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 64px;
  height: 64px;
  pointer-events: none;
  background-image: url(../img/icons/arrow-down-regular-white.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 16px 16px;
  background-color: #3fa099;
  z-index: 1;
  -webkit-transition: 0.25s all ease-in-out;
  -o-transition: 0.25s all ease-in-out;
  transition: 0.25s all ease-in-out;
  border-radius: 4px 4px 4px 4px;
}

.woocommerce .single-product .product .summary .cart .variations .value select:hover {
  cursor: pointer;
}

.woocommerce .single-product .product .summary .cart .variations .value select:hover::after {
  background-color: #317b76;
}

.woocommerce .single-product .product .summary .cart .variations .value a {
  display: none !important;
}

.woocommerce .single-product .product .summary .cart .single_variation_wrap {
  width: 100%;
}

@media only screen and (min-width: 1280px) {
  .woocommerce .single-product .product .summary .cart .quantity {
    width: calc(50% - 24px);
  }
}

.woocommerce .single-product .product .summary .cart .quantity input {
  width: 100%;
  border: 2px solid #efefef;
  height: 64px;
  margin-bottom: 24px;
  border-radius: 4px 4px 4px 4px;
}

.woocommerce .single-product .product .summary .cart .final_price {
  color: #3fa099;
}

.woocommerce .single-product .product .summary .cart .button {
  max-width: none;
  margin-bottom: 24px;
}

@media only screen and (min-width: 1280px) {
  .woocommerce .single-product .product .summary .cart .button {
    width: calc(50% - 24px);
  }
}

.woocommerce .single-product .product .summary .product_meta {
  display: none !important;
}

.woocommerce .single-product .product .wc-tabs-wrapper {
  width: 100%;
}

.woocommerce .single-product .product .wc-tabs-wrapper .wc-tabs {
  display: none;
}

.woocommerce .single-product .product .wc-tabs-wrapper .wc-tab h2 {
  display: none;
}

.woocommerce .single-product .product .related {
  width: 100%;
  background: #ffffff;
  padding-top: 96px;
  padding-bottom: 48px;
  padding-left: 16px;
  padding-right: 16px;
}

@media only screen and (min-width: 640px) {
  .woocommerce .single-product .product .related {
    padding-left: 48px;
    padding-right: 48px;
  }
}

@media only screen and (min-width: 1280px) {
  .woocommerce .single-product .product .related {
    padding-left: 96px;
    padding-right: 96px;
  }
}

.woocommerce .single-product .product .related ul.products {
  padding: 0;
}

@media only screen and (min-width: 1280px) {
  .woocommerce .single-product .product .related ul.products li.product:nth-of-type(n + 4) {
    display: none;
  }
}

@media only screen and (min-width: 1600px) {
  .woocommerce .single-product .product .related ul.products li.product:nth-of-type(4) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .woocommerce .single-product .product .related ul.products li.product:nth-of-type(n + 5) {
    display: none;
  }
}

.woocommerce form.checkout.woocommerce-checkout {
  background-color: #ffffff;
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 96px;
  padding-bottom: 48px;
  gap: 0 24px;
}

@media only screen and (min-width: 640px) {
  .woocommerce form.checkout.woocommerce-checkout {
    padding-left: 48px;
    padding-right: 48px;
  }
}

@media only screen and (min-width: 1280px) {
  .woocommerce form.checkout.woocommerce-checkout {
    padding-left: 96px;
    padding-right: 96px;
  }
}

@media only screen and (min-width: 640px) {
  .woocommerce form.checkout.woocommerce-checkout {
    gap: 0 48px;
  }
}

@media only screen and (min-width: 1280px) {
  .woocommerce form.checkout.woocommerce-checkout {
    gap: 0 96px;
  }
}

.woocommerce form.checkout.woocommerce-checkout .woocommerce-billing-fields .woocommerce-billing-fields__field-wrapper .form-row label {
  padding-left: 0 !important;
  font-weight: 500;
  font-size: 12px;
  color: #3fa099;
  text-transform: uppercase;
}

.woocommerce form.checkout.woocommerce-checkout .woocommerce-billing-fields .woocommerce-billing-fields__field-wrapper .form-row .required {
  color: red;
}

.woocommerce form.checkout.woocommerce-checkout .woocommerce-additional-fields .woocommerce-additional-fields__field-wrapper .form-row label {
  padding-left: 0 !important;
  font-weight: 500;
  font-size: 12px;
  color: #3fa099;
  text-transform: uppercase;
}

@media only screen and (min-width: 640px) {
  .woocommerce form.checkout.woocommerce-checkout .woocommerce-NoticeGroup {
    grid-column: span 2;
  }
}

.woocommerce form.checkout.woocommerce-checkout input,
.woocommerce form.checkout.woocommerce-checkout textarea,
.woocommerce form.checkout.woocommerce-checkout select,
.woocommerce form.checkout.woocommerce-checkout .select2-selection.select2-selection--single {
  background-color: #efefef;
}

.woocommerce form.checkout.woocommerce-checkout #order_review_heading {
  padding: 0 0 48px 0;
  height: 48px;
}

@media only screen and (min-width: 1280px) {
  .woocommerce form.checkout.woocommerce-checkout {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    -ms-grid-rows: auto 96px auto;
        grid-template-rows: auto 96px auto;
  }
  .woocommerce form.checkout.woocommerce-checkout #customer_details {
    -ms-grid-column: 1;
    grid-column: 1;
    -ms-grid-row: 2;
    -ms-grid-row-span: 2;
    grid-row: 2 / span 2;
  }
  .woocommerce form.checkout.woocommerce-checkout #order_review_heading {
    -ms-grid-column: 2;
    grid-column: 2;
    -ms-grid-row: 2;
    grid-row: 2;
  }
  .woocommerce form.checkout.woocommerce-checkout #order_review {
    -ms-grid-column: 2;
    grid-column: 2;
    -ms-grid-row: 3;
    grid-row: 3;
  }
}

.woocommerce form.checkout.woocommerce-checkout table.woocommerce-checkout-review-order-table {
  width: 100%;
  text-align: left;
  border-collapse: separate;
}

.woocommerce form.checkout.woocommerce-checkout table.woocommerce-checkout-review-order-table tr :nth-child(2) {
  text-align: right;
}

.woocommerce form.checkout.woocommerce-checkout table.woocommerce-checkout-review-order-table th {
  vertical-align: top;
}

.woocommerce .woocommerce-terms-and-conditions-wrapper > p > label {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-line-pack: center;
      align-content: center;
  cursor: pointer;
}

.woocommerce .woocommerce-terms-and-conditions-wrapper > p > label::before {
  content: "";
  height: 32px;
  width: 32px;
  border-radius: 4px;
  background-color: #efefef;
  margin-right: 16px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.woocommerce .woocommerce-terms-and-conditions-wrapper > p > label input {
  display: none;
  height: 32px;
}

.woocommerce .woocommerce-terms-and-conditions-wrapper > p > label span {
  font-size: 16px;
  font-weight: 400;
  color: #030405;
  -ms-flex-negative: 1;
      flex-shrink: 1;
}

.woocommerce .woocommerce-terms-and-conditions-wrapper > p > label span.required {
  display: none;
}

.woocommerce .woocommerce-terms-and-conditions-wrapper > p.woocommerce-validated > label::before {
  background-image: url("../img/icons/check-regular-primary.svg");
  background-size: 16px;
  background-position: center;
  background-repeat: no-repeat;
}

.woocommerce .woocommerce-loop-product__link,
.woocommerce .woocommerce-product-gallery {
  position: relative;
  overflow: hidden;
}

.woocommerce .product.sale > .woocommerce-product-gallery::before,
.woocommerce .onsale {
  content: "Aanbieding!";
  padding: 8px 16px;
  border-radius: 4px;
  background-color: #ff005b;
  color: #ffffff;
  z-index: 2;
  width: 400px;
  text-align: center;
  position: absolute;
  top: 30px;
  left: -120px;
  -webkit-transform: rotate(-30deg);
      -ms-transform: rotate(-30deg);
          transform: rotate(-30deg);
}

.woocommerce .product.sale > .woocommerce-product-gallery::before::before,
.woocommerce .onsale::before {
  position: absolute;
  top: 0;
  left: -100%;
  right: -100%;
  bottom: 0;
  background-color: #ff005b;
  z-index: 1;
}

.woocommerce .single-product .onsale {
  display: none;
}

.woocommerce .woocommerce-cart-form {
  margin-top: 96px;
  margin-bottom: 96px;
  width: 100%;
  padding-left: 16px;
  padding-right: 16px;
}

@media only screen and (min-width: 640px) {
  .woocommerce .woocommerce-cart-form {
    padding-left: 48px;
    padding-right: 48px;
  }
}

@media only screen and (min-width: 1280px) {
  .woocommerce .woocommerce-cart-form {
    padding-left: 96px;
    padding-right: 96px;
  }
}

@media screen and (max-width: 1110px) {
  .woocommerce .woocommerce-cart-form table {
    width: 100%;
    border: 2px solid #efefef;
    border-radius: 4px 4px 4px 4px;
    overflow: hidden;
  }
  .woocommerce .woocommerce-cart-form table thead {
    background: #efefef;
  }
  .woocommerce .woocommerce-cart-form table thead tr {
    display: none;
    -ms-grid-columns: 32px (1fr)[4];
        grid-template-columns: 32px repeat(4, 1fr);
    width: 100%;
    font-weight: 700;
    color: #ff005b;
    background: #efefef;
    padding: 48px 16px;
  }
  .woocommerce .woocommerce-cart-form table thead tr .product-thumbnail {
    display: none;
  }
  .woocommerce .woocommerce-cart-form table .cart_item {
    --remove: 48px;
    --image: 96px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -ms-grid-columns: 32px (1fr)[4];
        grid-template-columns: 32px repeat(4, 1fr);
    width: 100%;
    text-align: center;
    border-bottom: 2px solid #efefef;
  }
  .woocommerce .woocommerce-cart-form table .cart_item td {
    width: 100%;
    padding: 16px 32px 16px 16px;
    border-right: 2px solid #efefef;
    border-bottom: 2px solid #efefef;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .woocommerce .woocommerce-cart-form table .cart_item td * {
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .woocommerce .woocommerce-cart-form table .cart_item td::before {
    padding-right: 16px;
    width: 100%;
    text-align: left;
    -ms-flex-negative: 1;
        flex-shrink: 1;
  }
  .woocommerce .woocommerce-cart-form table .cart_item td.product-remove {
    position: absolute;
    top: 0;
    left: 0;
    width: var(--remove);
    height: 96px;
    padding: 0;
  }
  .woocommerce .woocommerce-cart-form table .cart_item td.product-remove a {
    height: 100%;
    width: 100%;
    line-height: 96px;
    background-image: url("../img/icons/trash-grey.svg");
    background-size: 16px;
    background-position: center;
    background-repeat: no-repeat;
    color: transparent;
  }
  .woocommerce .woocommerce-cart-form table .cart_item td.product-remove a:hover {
    background-image: url("../img/icons/trash-secondary.svg");
  }
  .woocommerce .woocommerce-cart-form table .cart_item td.product-thumbnail {
    margin-left: var(--remove);
    height: var(--image);
    width: var(--image);
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .woocommerce .woocommerce-cart-form table .cart_item td.product-thumbnail a,
  .woocommerce .woocommerce-cart-form table .cart_item td.product-thumbnail img {
    height: 100%;
  }
  .woocommerce .woocommerce-cart-form table .cart_item td.product-name {
    width: calc(100% - var(--image) - var(--remove));
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .woocommerce .woocommerce-cart-form table .cart_item td.product-name a {
    width: 100%;
    line-height: 1.2;
  }
  .woocommerce .woocommerce-cart-form table .cart_item td.product-price {
    border-bottom: none;
  }
  .woocommerce .woocommerce-cart-form table .cart_item td.product-price::before {
    content: "Prijs: ";
  }
  .woocommerce .woocommerce-cart-form table .cart_item td.product-quantity {
    border-bottom: none;
    padding: 0 16px 0 16px;
  }
  .woocommerce .woocommerce-cart-form table .cart_item td.product-quantity::before {
    content: "Aantal: ";
  }
  .woocommerce .woocommerce-cart-form table .cart_item td.product-quantity input {
    width: 80px;
    background-color: #efefef;
    text-align: right;
  }
  .woocommerce .woocommerce-cart-form table .cart_item td.product-subtotal {
    border-bottom: none;
  }
  .woocommerce .woocommerce-cart-form table .cart_item td.product-subtotal::before {
    content: "Subtotaal: ";
  }
}

@media screen and (min-width: 1111px) {
  .woocommerce .woocommerce-cart-form table {
    width: 100%;
    border-left: 2px solid #efefef;
    border-radius: 4px 4px 4px 4px;
    overflow: hidden;
  }
  .woocommerce .woocommerce-cart-form table tr th {
    font-weight: 700;
    color: #ff005b;
    background: #efefef;
    padding: 48px 16px;
    text-align: left;
  }
  .woocommerce .woocommerce-cart-form table tr td {
    border-right: 2px solid #efefef;
    border-bottom: 2px solid #efefef;
    padding: 16px;
  }
  .woocommerce .woocommerce-cart-form table tr td.product-remove {
    width: 64px;
    text-align: center;
    height: 100%;
    padding: 0;
  }
  .woocommerce .woocommerce-cart-form table tr td.product-remove a {
    display: block;
    height: 100%;
    width: 100%;
    line-height: 156px;
    background-image: url("../img/icons/trash-grey.svg");
    background-size: 16px;
    background-position: center;
    background-repeat: no-repeat;
    color: transparent;
  }
  .woocommerce .woocommerce-cart-form table tr td.product-remove a:hover {
    background-image: url("../img/icons/trash-secondary.svg");
  }
  .woocommerce .woocommerce-cart-form table tr td.product-thumbnail {
    width: 160px;
  }
  .woocommerce .woocommerce-cart-form table tr td.product-thumbnail a {
    display: block;
    width: 100%;
    padding-top: 100%;
    position: relative;
  }
  .woocommerce .woocommerce-cart-form table tr td.product-thumbnail a img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .woocommerce .woocommerce-cart-form table tr td.product-quantity input {
    width: 80px;
    background-color: #efefef;
  }
}

.woocommerce .woocommerce-cart-form td.actions {
  padding: 48px;
  padding-left: 16px;
  padding-right: 16px;
}

@media only screen and (min-width: 640px) {
  .woocommerce .woocommerce-cart-form td.actions {
    padding-left: 48px;
    padding-right: 48px;
  }
}

@media only screen and (min-width: 1280px) {
  .woocommerce .woocommerce-cart-form td.actions {
    padding-left: 96px;
    padding-right: 96px;
  }
}

.woocommerce .woocommerce-cart-form td.actions .coupon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media only screen and (min-width: 800px) {
  .woocommerce .woocommerce-cart-form td.actions .coupon {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.woocommerce .woocommerce-cart-form td.actions .coupon label {
  padding: 0;
  width: 100%;
  height: 48px;
  font-weight: 700;
  color: #ff005b;
}

.woocommerce .woocommerce-cart-form td.actions .coupon input[type="text"] {
  width: 100%;
  background-color: #efefef;
  height: 64px;
  max-width: 256px;
  margin-bottom: 24px;
}

@media only screen and (min-width: 800px) {
  .woocommerce .woocommerce-cart-form td.actions .coupon input[type="text"] {
    width: calc(50% - 24px);
    margin-bottom: 0;
    margin-right: 48px;
  }
}

.woocommerce .woocommerce-cart-form td.actions .coupon button[type="submit"] {
  width: 100%;
  max-width: 256px;
  min-width: 0;
}

@media only screen and (min-width: 800px) {
  .woocommerce .woocommerce-cart-form td.actions .coupon button[type="submit"] {
    width: calc(50% - 24px);
  }
}

.woocommerce .woocommerce-cart-form td.actions > [type="submit"] {
  margin: 0 0 0 auto;
  float: right;
}

.woocommerce .cart-collaterals {
  margin: 0 0 96px auto;
  max-width: 100%;
  width: 800px;
  padding-left: 16px;
  padding-right: 16px;
}

@media only screen and (min-width: 640px) {
  .woocommerce .cart-collaterals {
    padding-left: 48px;
    padding-right: 48px;
  }
}

@media only screen and (min-width: 1280px) {
  .woocommerce .cart-collaterals {
    padding-left: 96px;
    padding-right: 96px;
  }
}

.woocommerce .cart-collaterals .cart_totals {
  border: 2px solid #efefef;
}

.woocommerce .cart-collaterals .cart_totals h2 {
  background: #efefef;
  padding: 48px;
  color: #ff005b;
  font-weight: 700;
}

.woocommerce .cart-collaterals .cart_totals .shop_table {
  margin: 48px;
  padding: 0 48px;
  width: 100%;
  margin: 48px auto;
}

.woocommerce .cart-collaterals .cart_totals .shop_table tbody tr {
  text-align: left;
}

.woocommerce .cart-collaterals .cart_totals .shop_table tbody tr td {
  text-align: right;
}

.woocommerce .cart-collaterals .cart_totals .shop_table .woocommerce-shipping-destination {
  display: none;
}

.woocommerce .cart-collaterals .cart_totals .wc-proceed-to-checkout {
  padding: 0 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media only screen and (min-width: 1600px) {
  .woocommerce {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .woocommerce .woocommerce-cart-form {
    width: calc(100% - 608px);
    padding-right: 0;
    margin-right: 96px;
  }
  .woocommerce .cart-collaterals {
    padding-left: 0;
  }
}

.woocommerce .cart-empty.woocommerce-info {
  margin-top: 96px;
}

#sidebar {
  display: none;
}

.woocommerce-shipping-methods li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.woocommerce-shipping-methods li + li {
  margin-top: 8px;
}

.woocommerce-shipping-methods li input {
  width: 20px;
  margin-left: 16px;
}

.woocommerce-shipping-methods li label {
  font-size: 16px;
  color: #ff005b;
  width: calc(100% - 36px);
  margin: 0;
  padding: 0;
}

.woocommerce-shipping-methods li input[checked="checked"] + label {
  font-weight: 700;
}

#payment {
  margin-top: 48px;
}

#payment ul {
  margin-bottom: 24px;
}

.payment_method_cheque > label {
  padding-left: 0 !important;
  font-weight: 500;
  font-size: 12px;
  color: #3fa099;
  text-transform: uppercase;
}

span.select2-selection.select2-selection--single {
  height: 64px;
  padding: 16px;
}

span.select2-selection.select2-selection--single:not(:active) {
  border: none;
}

span.select2-dropdown {
  border: none;
}

.payment_method_mollie_wc_gateway_ideal label {
  font-size: 16px !important;
  font-weight: 700 !important;
}

.payment_method_mollie_wc_gateway_ideal img,
.payment_method_mollie_wc_gateway_ideal p:first-of-type {
  display: none;
}

.return-to-shop {
  margin-left: 32px;
}

.woocommerce-order {
  margin-top: 96px;
  margin-bottom: 96px;
  max-width: 1520px;
}

.woocommerce-order-overview {
  padding-bottom: 48px;
}

.woocommerce-table--order-details thead {
  background-color: #efefef;
}

.woocommerce-table--order-details thead tr th {
  padding: 16px;
}

.woocommerce-table--order-details tbody tr {
  background-color: #efefef;
}

.woocommerce-table--order-details tbody tr td {
  padding: 16px;
}

.woocommerce-table--order-details tbody tr td ul.wc-item-meta li p {
  padding-bottom: 0;
}

.woocommerce-table--order-details tbody tr td ul.wc-item-meta li:last-child {
  padding-bottom: 32px;
}

.woocommerce-table--order-details tfoot {
  text-align: left;
}

.woocommerce-customer-details {
  padding-top: 48px;
}

.button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  max-width: 256px;
  padding: 16px;
  border: none;
  font-family: montserrat;
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.6px;
  text-align: center;
  color: #ffffff;
  background: #ff005b;
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin: 0 0 48px 0;
  -webkit-transition: all 0.24s ease-in-out;
  -o-transition: all 0.24s ease-in-out;
  transition: all 0.24s ease-in-out;
  border-radius: 4px 4px 4px 4px;
}

.button:active, .button:visited, .button:focus, .button:hover {
  color: #ffffff;
}

.button:hover {
  cursor: pointer;
  background: #d6004c;
}

.switchcookie {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #030405;
  color: #ffffff;
  -webkit-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  z-index: 9999;
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 48px;
  -webkit-box-shadow: 0px 0px 16px 0px rgba(3, 4, 5, 0.16);
          box-shadow: 0px 0px 16px 0px rgba(3, 4, 5, 0.16);
}

@media only screen and (min-width: 640px) {
  .switchcookie {
    padding-left: 48px;
    padding-right: 48px;
  }
}

@media only screen and (min-width: 1280px) {
  .switchcookie {
    padding-left: 96px;
    padding-right: 96px;
  }
}

@media only screen and (min-width: 1280px) {
  .switchcookie {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.switchcookie p {
  text-align: center;
}

@media only screen and (min-width: 1280px) {
  .switchcookie p {
    padding-right: 48px;
    text-align: left;
  }
}

.switchcookie.disabled {
  opacity: 0;
  -webkit-transform: translateY(100%);
      -ms-transform: translateY(100%);
          transform: translateY(100%);
  pointer-events: none;
}

.gform_wrapper ::-webkit-input-placeholder {
  color: #c6c6c6;
  opacity: 1;
}

.gform_wrapper :-ms-input-placeholder {
  color: #c6c6c6;
  opacity: 1;
}

.gform_wrapper ::-ms-input-placeholder {
  color: #c6c6c6;
  opacity: 1;
}

.gform_wrapper ::placeholder {
  color: #c6c6c6;
  opacity: 1;
}

.gform_wrapper label {
  display: block;
  width: 100%;
  font-size: 12px;
  font-weight: 500;
  color: #ff005b;
  margin-bottom: 12px;
  padding: 0;
  -webkit-appearance: none;
}

.gform_wrapper textarea.textarea.small {
  height: 128px;
}

.gform_wrapper textarea.textarea.medium {
  height: 256px;
}

.gform_wrapper textarea.textarea.large {
  height: 384px;
}

.gform_wrapper .gform_validation_errors h2 {
  padding: 16px 0 16px 32px;
  border-left: 2px solid #db4437;
  margin-bottom: 48px;
  color: #db4437;
  font-family: montserrat;
  font-size: 16px;
  line-height: 2;
  font-weight: 400;
}

.gform_wrapper .gform-body {
  margin-bottom: 24px;
}

.gform_wrapper .gform-body .gform_fields {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.gform_wrapper .gform-body .gform_fields .gfield {
  width: 100%;
  margin-bottom: 24px;
}

@media only screen and (min-width: 1280px) {
  .gform_wrapper .gform-body .gform_fields .gfield--width-half {
    width: calc(50% - 24px);
  }
}

.gform_wrapper .gform-body .gform_fields .gfield.gform_validation_container {
  display: none;
}

.gform_wrapper .gform-body .gform_fields .gfield .validation_message {
  font-size: 12px;
  font-weight: 500;
  color: #db4437;
  padding: 4px 0 0 0;
}

.gform_wrapper .gform_footer {
  position: relative;
  text-align: right;
}

.gform_wrapper .gform_footer .button {
  margin: 0;
}

.gform_wrapper .gform_footer .gform_ajax_spinner {
  position: absolute;
  top: calc(50% - 32px);
  right: 0;
  width: 64px;
  height: 64px;
  padding: 24px;
  z-index: 1;
}

.slider {
  opacity: 0;
  -webkit-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  position: relative;
  width: 100%;
}

.slider.owl-loaded {
  opacity: 1;
  height: auto;
}

.slider .owl-stage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.slider .owl-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
}

.slider .owl-nav {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  width: 100%;
  pointer-events: none;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 16px;
}

@media only screen and (min-width: 640px) {
  .slider .owl-nav {
    padding: 0 48px;
  }
}

@media only screen and (min-width: 1280px) {
  .slider .owl-nav {
    padding: 0 96px;
  }
}

.slider .owl-nav.disabled {
  display: none;
}

.slider .owl-nav .owl-prev,
.slider .owl-nav .owl-next {
  width: 40px;
  height: 40px;
  border: none;
  background: rgba(3, 4, 5, 0.1);
  pointer-events: auto;
  -webkit-transition: 0.25s all ease-in-out;
  -o-transition: 0.25s all ease-in-out;
  transition: 0.25s all ease-in-out;
  position: relative;
  border-radius: 128px 128px 128px 128px;
}

.slider .owl-nav .owl-prev:before,
.slider .owl-nav .owl-next:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid #ffffff;
  background-size: 16px 16px;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(../img/icons/arrow-left-regular-white.svg);
  -webkit-transition: 0.25s background-image ease-in-out, 0.25s border ease-in-out;
  -o-transition: 0.25s background-image ease-in-out, 0.25s border ease-in-out;
  transition: 0.25s background-image ease-in-out, 0.25s border ease-in-out;
  border-radius: 128px 128px 128px 128px;
}

.slider .owl-nav .owl-prev:hover,
.slider .owl-nav .owl-next:hover {
  background: #3fa099;
}

.slider .owl-nav .owl-next:before {
  background-image: url(../img/icons/arrow-right-regular-white.svg);
}

.slider .owl-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  bottom: 16px;
  left: 0;
  width: 100%;
}

@media only screen and (min-width: 640px) {
  .slider .owl-dots {
    bottom: 48px;
  }
}

.slider .owl-dots.disabled {
  display: none;
}

.slider .owl-dots .owl-dot {
  display: block;
  width: 16px;
  height: 16px;
  border: 2px solid #ffffff;
  background: rgba(3, 4, 5, 0.1);
  margin: 0 8px 0 0;
  -webkit-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  border-radius: 128px 128px 128px 128px;
}

.slider .owl-dots .owl-dot:last-child {
  margin: 0;
}

.slider .owl-dots .owl-dot.active {
  background: #3fa099;
}

.slider .owl-dots .owl-dot:hover {
  background: #3fa099;
}

html {
  background: #ff005b;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: montserrat;
  font-size: 16px;
  line-height: 2;
  font-weight: 400;
  color: #030405;
  letter-spacing: 0.6px;
  background: #ffffff;
}

.wrapper {
  width: 100%;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}

@media only screen and (min-width: 640px) {
  .wrapper {
    padding-left: 48px;
    padding-right: 48px;
  }
}

@media only screen and (min-width: 1280px) {
  .wrapper {
    padding-left: 96px;
    padding-right: 96px;
  }
}

h1,
h2 {
  color: #030405;
  font-size: 24px;
  line-height: 1.2;
  font-family: montserrat;
  font-weight: 700;
  padding: 0 0 48px 0;
}

@media only screen and (min-width: 640px) {
  h1,
  h2 {
    font-size: 32px;
  }
}

h3 {
  color: #ff005b;
  font-size: 20px;
  line-height: 1.6;
  font-family: montserrat;
  font-weight: 500;
  padding: 0 0 48px 0;
  position: relative;
  z-index: 1;
}

@media only screen and (min-width: 640px) {
  h3 {
    font-size: 24px;
  }
}

input,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
label,
select,
textarea {
  display: block;
  width: 100%;
  padding: 16px;
  font-family: montserrat;
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
  color: #030405;
  letter-spacing: 0.6px;
  position: relative;
  z-index: 1;
  border: none;
  -webkit-appearance: none;
  -webkit-appearance: button;
  border-radius: 4px 4px 4px 4px;
}

select {
  line-height: 32px;
  height: 64px;
  padding-right: 80px;
}

::-webkit-input-placeholder {
  color: #bcbcbc;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #bcbcbc;
  opacity: 1;
}

::-ms-input-placeholder {
  color: #bcbcbc;
  opacity: 1;
}

::placeholder {
  color: #bcbcbc;
  opacity: 1;
}

a, a:visited, a:active, a:focus {
  color: #ff005b;
  -webkit-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

a:hover {
  color: #d6004c;
}

p {
  padding: 0 0 48px 0;
}

p.dotdotdot {
  opacity: 0;
  -webkit-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

p.dotdotdot.loaded {
  opacity: 1;
}

blockquote {
  position: relative;
  color: #3fa099;
  font-style: italic;
  border-left: 2px solid #3fa099;
  margin: 0 0 48px 0;
  padding: 48px 0 0 16px;
}

blockquote p {
  position: relative;
}

@media only screen and (min-width: 640px) {
  blockquote {
    padding: 48px 0 0 48px;
  }
}

@media only screen and (min-width: 1280px) {
  blockquote {
    padding: 48px 0 0 96px;
  }
}

blockquote:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 128px;
  height: 128px;
  background-image: url(../img/icons/quote-right-solid-secondary.svg);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
  opacity: 0.16;
}

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

strong {
  font-weight: 700;
  color: #3fa099;
}

em {
  color: #707070;
}

.wysiwyg ul {
  padding: 0 0 48px 0;
}

.wysiwyg ul li {
  padding: 0 0 4px 24px;
  position: relative;
}

.wysiwyg ul li:last-of-type {
  padding: 0 0 0 24px;
}

.wysiwyg ul li:before {
  content: "\25E6";
  position: absolute;
  left: 0;
  font-weight: 700;
  color: #ff005b;
}

.loading {
  opacity: 0;
  -webkit-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.loading.page-loaded {
  opacity: 1;
}

::-moz-selection {
  background: #dbdbdb;
  text-shadow: none;
}

::selection {
  background: #dbdbdb;
  text-shadow: none;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-transition: background-color 5000s ease-in-out 0s;
  -o-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
}

.header {
  position: relative;
  z-index: 999;
}

.header__topmenu {
  background: #030405;
}

.header__topmenu .header__submenu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 16px 0;
}

.header__topmenu .header__submenu ul li {
  margin: 0 8px 0 0;
}

@media only screen and (min-width: 640px) {
  .header__topmenu .header__submenu ul li {
    margin: 0 24px 0 0;
  }
}

.header__topmenu .header__submenu ul li:last-of-type {
  margin: 0;
}

.header__topmenu .header__submenu ul li a {
  display: block;
  position: relative;
  height: 40px;
  width: 40px;
  overflow: hidden;
  padding: 0 0 0 40px;
  -webkit-transition: 0.25s all ease-in-out;
  -o-transition: 0.25s all ease-in-out;
  transition: 0.25s all ease-in-out;
  line-height: 40px;
  color: #ffffff;
  white-space: nowrap;
}

.header__topmenu .header__submenu ul li a svg {
  width: 40px;
  height: 40px;
  padding: 12px;
  position: absolute;
  top: 0;
  left: 0;
  color: #ffffff;
  -webkit-transition: 0.25s all ease-in-out;
  -o-transition: 0.25s all ease-in-out;
  transition: 0.25s all ease-in-out;
}

.header__topmenu .header__submenu ul li a:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border: 2px solid #ffffff;
  -webkit-transition: 0.25s all ease-in-out;
  -o-transition: 0.25s all ease-in-out;
  transition: 0.25s all ease-in-out;
  border-radius: 128px 128px 128px 128px;
}

.header__topmenu .header__submenu ul li a:hover {
  cursor: pointer;
}

.header__topmenu .header__submenu ul li a:hover::before {
  border: 2px solid #3fa099;
}

.header__topmenu .header__submenu ul li a:hover svg {
  color: #3fa099;
}

@media only screen and (min-width: 640px) {
  .header__topmenu .header__submenu ul li a.phone {
    padding: 0 0 0 64px;
    width: auto;
  }
}

.header__topmenu .header__submenu.menu-button ul {
  padding: 0 96px 0 0;
}

@media only screen and (min-width: 640px) {
  .header__topmenu .header__submenu.menu-button ul {
    padding: 0 112px 0 0;
  }
}

.header__mainmenu .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__mainmenu .header__logo {
  height: 128px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: auto;
}

.header__mainmenu .header__logo a img {
  height: auto;
  max-height: 80px;
  width: auto;
  max-width: 200px;
  position: relative;
}

@media only screen and (min-width: 640px) {
  .header__mainmenu .header__logo a img {
    max-width: 280px;
  }
}

.header__mainmenu .header__menu {
  display: none;
}

.header__mainmenu .header__menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 0 0 48px;
}

.header__mainmenu .header__menu ul li {
  margin: 0 24px 0 0;
}

.header__mainmenu .header__menu ul li:last-of-type {
  margin: 0;
}

.header__mainmenu .header__menu ul li a {
  color: rgba(3, 4, 5, 0.5);
  -webkit-transition: 0.25s all ease-in-out;
  -o-transition: 0.25s all ease-in-out;
  transition: 0.25s all ease-in-out;
  white-space: nowrap;
}

.header__mainmenu .header__menu ul li.current-menu-item a, .header__mainmenu .header__menu ul li.current-menu-parent a, .header__mainmenu .header__menu ul li.current-menu-ancestor a, .header__mainmenu .header__menu ul li:hover a {
  color: #030405;
}

.header__mainmenu .header__menu ul li .sub-menu {
  display: none;
}

.header__mainmenu .header__menu ul li.highlight a {
  display: inline-block;
  position: relative;
  width: auto;
  padding: 16px;
  text-align: center;
  -webkit-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  font-family: montserrat;
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  z-index: 1;
  text-align: center;
  color: #ffffff;
  background: #db4437;
  border-radius: 4px 4px 4px 4px;
}

.header__mainmenu .header__menu ul li.highlight a:active, .header__mainmenu .header__menu ul li.highlight a:visited, .header__mainmenu .header__menu ul li.highlight a:hover {
  color: #ffffff;
}

@media only screen and (min-width: 640px) {
  .header__mainmenu .header__menu ul li.highlight a {
    padding: 16px 40px;
  }
}

.header__mainmenu .header__menu ul li.highlight a:hover {
  cursor: pointer;
  background: #c63024;
}

.header__mainmenu .header__submenu {
  display: none;
}

@media only screen and (min-width: 800px) {
  .header__mainmenu .header__submenu {
    display: block;
  }
}

.header__mainmenu .header__submenu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 0 0 48px;
}

.header__mainmenu .header__submenu ul li {
  margin: 0 8px 0 0;
}

@media only screen and (min-width: 640px) {
  .header__mainmenu .header__submenu ul li {
    margin: 0 24px 0 0;
  }
}

.header__mainmenu .header__submenu ul li:last-of-type {
  margin: 0;
}

.header__mainmenu .header__submenu ul li a {
  display: block;
  position: relative;
  height: 40px;
  width: 40px;
  overflow: hidden;
  padding: 0 0 0 40px;
  -webkit-transition: 0.25s all ease-in-out;
  -o-transition: 0.25s all ease-in-out;
  transition: 0.25s all ease-in-out;
  line-height: 40px;
  color: #030405;
  white-space: nowrap;
}

.header__mainmenu .header__submenu ul li a svg {
  width: 40px;
  height: 40px;
  padding: 12px;
  position: absolute;
  top: 0;
  left: 0;
  color: #ff005b;
  -webkit-transition: 0.25s all ease-in-out;
  -o-transition: 0.25s all ease-in-out;
  transition: 0.25s all ease-in-out;
}

.header__mainmenu .header__submenu ul li a:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border: 2px solid #ff005b;
  -webkit-transition: 0.25s all ease-in-out;
  -o-transition: 0.25s all ease-in-out;
  transition: 0.25s all ease-in-out;
  border-radius: 128px 128px 128px 128px;
}

.header__mainmenu .header__submenu ul li a:hover {
  cursor: pointer;
}

.header__mainmenu .header__submenu ul li a:hover::before {
  border: 2px solid #3fa099;
}

.header__mainmenu .header__submenu ul li a:hover svg {
  color: #3fa099;
}

@media only screen and (min-width: 1600px) {
  .header__mainmenu .header__submenu ul li a.phone {
    padding: 0 0 0 64px;
    width: auto;
  }
}

.header__mainmenu .header__submenu.menu-button ul {
  padding: 0 96px 0 0;
}

@media only screen and (min-width: 640px) {
  .header__mainmenu .header__submenu.menu-button ul {
    padding: 0 112px 0 0;
  }
}

.header__mainmenu .header__menu-button,
.header__mainmenu .header__search-button,
.header__mainmenu .header__scroll-button {
  position: fixed;
  top: 40px;
  right: 16px;
  width: 48px;
  height: 48px;
  background: #3fa099;
  z-index: 999;
  display: none;
  overflow: hidden;
  border-radius: 128px 128px 128px 128px;
  -webkit-box-shadow: 0px 0px 16px 0px rgba(3, 4, 5, 0.16);
          box-shadow: 0px 0px 16px 0px rgba(3, 4, 5, 0.16);
}

@media only screen and (min-width: 640px) {
  .header__mainmenu .header__menu-button,
  .header__mainmenu .header__search-button,
  .header__mainmenu .header__scroll-button {
    top: 32px;
    right: 48px;
    width: 64px;
    height: 64px;
  }
}

@media only screen and (min-width: 1280px) {
  .header__mainmenu .header__menu-button,
  .header__mainmenu .header__search-button,
  .header__mainmenu .header__scroll-button {
    right: 96px;
  }
}

.header__mainmenu .header__menu-button svg,
.header__mainmenu .header__search-button svg,
.header__mainmenu .header__scroll-button svg {
  position: absolute;
  top: calc(50% - 10px);
  left: calc(50% - 10px);
  width: 20px;
  height: 20px;
  color: #ffffff;
  -webkit-transition: 0.25s all ease-in-out;
  -o-transition: 0.25s all ease-in-out;
  transition: 0.25s all ease-in-out;
}

.header__mainmenu .header__menu-button svg:last-of-type,
.header__mainmenu .header__search-button svg:last-of-type,
.header__mainmenu .header__scroll-button svg:last-of-type {
  top: 48px;
  opacity: 0;
}

@media only screen and (min-width: 640px) {
  .header__mainmenu .header__menu-button svg:last-of-type,
  .header__mainmenu .header__search-button svg:last-of-type,
  .header__mainmenu .header__scroll-button svg:last-of-type {
    top: 64px;
  }
}

.header__mainmenu .header__menu-button:hover,
.header__mainmenu .header__search-button:hover,
.header__mainmenu .header__scroll-button:hover {
  cursor: pointer;
  background: #33837d;
}

.header__mainmenu .header__menu-button:hover svg,
.header__mainmenu .header__search-button:hover svg,
.header__mainmenu .header__scroll-button:hover svg {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}

.header__mainmenu .header__menu-button.active svg, .header__mainmenu .header__menu-button.show svg,
.header__mainmenu .header__search-button.active svg,
.header__mainmenu .header__search-button.show svg,
.header__mainmenu .header__scroll-button.active svg,
.header__mainmenu .header__scroll-button.show svg {
  top: -48px;
  opacity: 0;
}

@media only screen and (min-width: 640px) {
  .header__mainmenu .header__menu-button.active svg, .header__mainmenu .header__menu-button.show svg,
  .header__mainmenu .header__search-button.active svg,
  .header__mainmenu .header__search-button.show svg,
  .header__mainmenu .header__scroll-button.active svg,
  .header__mainmenu .header__scroll-button.show svg {
    top: -64px;
  }
}

.header__mainmenu .header__menu-button.active svg:last-of-type, .header__mainmenu .header__menu-button.show svg:last-of-type,
.header__mainmenu .header__search-button.active svg:last-of-type,
.header__mainmenu .header__search-button.show svg:last-of-type,
.header__mainmenu .header__scroll-button.active svg:last-of-type,
.header__mainmenu .header__scroll-button.show svg:last-of-type {
  top: calc(50% - 8px);
  opacity: 1;
}

@media only screen and (min-width: 640px) {
  .header__mainmenu .header__menu-button.active svg:last-of-type, .header__mainmenu .header__menu-button.show svg:last-of-type,
  .header__mainmenu .header__search-button.active svg:last-of-type,
  .header__mainmenu .header__search-button.show svg:last-of-type,
  .header__mainmenu .header__scroll-button.active svg:last-of-type,
  .header__mainmenu .header__scroll-button.show svg:last-of-type {
    top: calc(50% - 10px);
  }
}

.header__mainmenu .header__scroll-button {
  top: auto;
  bottom: 0;
  margin: 40px 0;
  z-index: 899;
}

@media only screen and (min-width: 640px) {
  .header__mainmenu .header__scroll-button {
    margin: 32px 0;
  }
}

.header__sidemenu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: #030405;
  padding: 40px 16px 0 16px;
  overflow: auto;
  -webkit-transition: 0.5s right ease-in-out;
  -o-transition: 0.5s right ease-in-out;
  transition: 0.5s right ease-in-out;
  z-index: 900;
}

@media only screen and (min-width: 1280px) {
  .header__sidemenu {
    width: 640px;
  }
}

.header__sidemenu.active {
  right: 0;
}

@media only screen and (min-width: 640px) {
  .header__sidemenu {
    padding: 32px 48px 0 48px;
  }
}

@media only screen and (min-width: 1280px) {
  .header__sidemenu {
    padding: 32px 96px 0 96px;
  }
}

.header__sidemenu .header__submenu {
  margin: 0 0 48px 0;
}

.header__sidemenu .header__submenu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 48px;
}

@media only screen and (min-width: 640px) {
  .header__sidemenu .header__submenu ul {
    height: 64px;
  }
}

.header__sidemenu .header__submenu ul li {
  margin: 0 8px 0 0;
}

@media only screen and (min-width: 640px) {
  .header__sidemenu .header__submenu ul li {
    margin: 0 24px 0 0;
  }
}

.header__sidemenu .header__submenu ul li:last-of-type {
  margin: 0;
}

.header__sidemenu .header__submenu ul li a {
  display: block;
  position: relative;
  height: 40px;
  width: 40px;
  overflow: hidden;
  padding: 0 0 0 40px;
  -webkit-transition: 0.25s all ease-in-out;
  -o-transition: 0.25s all ease-in-out;
  transition: 0.25s all ease-in-out;
  line-height: 40px;
  color: #ffffff;
  white-space: nowrap;
}

.header__sidemenu .header__submenu ul li a svg {
  width: 40px;
  height: 40px;
  padding: 12px;
  position: absolute;
  top: 0;
  left: 0;
  color: #ffffff;
  -webkit-transition: 0.25s all ease-in-out;
  -o-transition: 0.25s all ease-in-out;
  transition: 0.25s all ease-in-out;
}

.header__sidemenu .header__submenu ul li a:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border: 2px solid #ffffff;
  -webkit-transition: 0.25s all ease-in-out;
  -o-transition: 0.25s all ease-in-out;
  transition: 0.25s all ease-in-out;
  border-radius: 128px 128px 128px 128px;
}

.header__sidemenu .header__submenu ul li a:hover {
  cursor: pointer;
}

.header__sidemenu .header__submenu ul li a:hover::before {
  border: 2px solid #3fa099;
}

.header__sidemenu .header__submenu ul li a:hover svg {
  color: #3fa099;
}

@media only screen and (min-width: 640px) {
  .header__sidemenu .header__submenu ul li a.phone {
    padding: 0 0 0 64px;
    width: auto;
  }
}

.header__sidemenu .header__submenu.menu-button ul {
  padding: 0 96px 0 0;
}

@media only screen and (min-width: 640px) {
  .header__sidemenu .header__submenu.menu-button ul {
    padding: 0 112px 0 0;
  }
}

.header__sidemenu .header__menu ul li {
  padding: 16px 0 18px;
  position: relative;
  margin: 0 0 48px 0;
}

@media only screen and (min-width: 640px) {
  .header__sidemenu .header__menu ul li {
    padding: 24px 0 26px;
  }
}

.header__sidemenu .header__menu ul li:not(:last-of-type) {
  margin: 0;
}

.header__sidemenu .header__menu ul li:not(:last-of-type):after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #3fa099;
}

.header__sidemenu .header__menu ul li a {
  color: #ffffff;
  font-family: montserrat;
  -webkit-transition: 0.25s all ease-in-out;
  -o-transition: 0.25s all ease-in-out;
  transition: 0.25s all ease-in-out;
  white-space: nowrap;
}

@media only screen and (min-width: 640px) {
  .header__sidemenu .header__menu ul li a {
    font-size: 20px;
  }
}

.header__sidemenu .header__menu ul li.current-menu-item a, .header__sidemenu .header__menu ul li.current-menu-parent a, .header__sidemenu .header__menu ul li.current-menu-ancestor a, .header__sidemenu .header__menu ul li:hover a {
  color: #3fa099;
}

.header__sidemenu .header__menu ul li .sub-menu {
  display: none;
}

.header__searchmenu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: #efefef;
  overflow: auto;
  -webkit-transition: 0.50s right ease-in-out;
  -o-transition: 0.50s right ease-in-out;
  transition: 0.50s right ease-in-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 900;
  padding-left: 16px;
  padding-right: 16px;
}

@media only screen and (min-width: 640px) {
  .header__searchmenu {
    padding-left: 48px;
    padding-right: 48px;
  }
}

@media only screen and (min-width: 1280px) {
  .header__searchmenu {
    padding-left: 96px;
    padding-right: 96px;
  }
}

@media only screen and (min-width: 1280px) {
  .header__searchmenu {
    width: 640px;
  }
}

.header__searchmenu.active {
  right: 0;
}

.header__searchmenu .search {
  padding: 0;
  width: 100%;
  max-width: 512px;
  position: relative;
}

.header__searchmenu .search__input input {
  padding-right: 80px;
}

.header__searchmenu .search__submit {
  position: absolute;
  top: 0;
  right: 0;
  width: 64px;
}

.header__searchmenu .search__submit input {
  background: #ff005b;
  -webkit-transition: all 0.24s ease-in-out;
  -o-transition: all 0.24s ease-in-out;
  transition: all 0.24s ease-in-out;
}

.header__searchmenu .search__submit svg {
  width: 16px;
  height: 16px;
  position: absolute;
  top: calc(50% - 8px);
  left: calc(50% - 8px);
  color: #ffffff;
  -webkit-transition: 0.5s all ease-in-out;
  -o-transition: 0.5s all ease-in-out;
  transition: 0.5s all ease-in-out;
  z-index: 1;
  pointer-events: none;
}

.header__searchmenu .search__submit:hover {
  cursor: pointer;
}

.header__searchmenu .search__submit:hover svg {
  -webkit-transform: scale(1.2);
      -ms-transform: scale(1.2);
          transform: scale(1.2);
}

.header__searchmenu .search__submit:hover input {
  background: #d6004c;
  cursor: pointer;
}

.header--top .header__mainmenu .header__menu-button,
.header--top .header__mainmenu .header__search-button,
.header--top .header__mainmenu .header__scroll-button {
  top: 112px;
}

@media only screen and (min-width: 640px) {
  .header--top .header__mainmenu .header__menu-button,
  .header--top .header__mainmenu .header__search-button,
  .header--top .header__mainmenu .header__scroll-button {
    top: 104px;
  }
}

.header--top .header__mainmenu .header__menu-button,
.header--top .header__mainmenu .header__search-button {
  position: absolute;
}

.header--top .header__mainmenu .header__menu-button.scroll,
.header--top .header__mainmenu .header__search-button.scroll {
  position: fixed;
  top: 40px;
}

@media only screen and (min-width: 640px) {
  .header--top .header__mainmenu .header__menu-button.scroll,
  .header--top .header__mainmenu .header__search-button.scroll {
    top: 32px;
  }
}

.header--button .header__mainmenu .header__submenu ul {
  padding: 0 96px 0 0;
}

@media only screen and (min-width: 640px) {
  .header--button .header__mainmenu .header__submenu ul {
    padding: 0 112px 0 0;
  }
}

@media only screen and (min-width: 1280px) {
  .header--button .header__mainmenu .header__submenu ul li a.phone {
    padding: 0 0 0 64px;
    width: auto;
  }
}

.header--button .header__mainmenu .header__menu-button {
  display: block !important;
}

.footer .footer__topmenu {
  background: #030405;
}

.footer .footer__topmenu .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer .footer__topmenu .footer__logo {
  height: 128px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: auto;
}

.footer .footer__topmenu .footer__logo a img {
  height: auto;
  max-height: 80px;
  width: auto;
  max-width: 200px;
  position: relative;
}

@media only screen and (min-width: 640px) {
  .footer .footer__topmenu .footer__logo a img {
    max-width: 280px;
  }
}

.footer .footer__topmenu .footer__social {
  display: none;
}

@media only screen and (min-width: 1280px) {
  .footer .footer__topmenu .footer__social {
    display: block;
  }
}

.footer .footer__topmenu .footer__social ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 0 0 48px;
  padding: 0 96px 0 0;
}

@media only screen and (min-width: 640px) {
  .footer .footer__topmenu .footer__social ul {
    padding: 0 112px 0 0;
  }
}

.footer .footer__topmenu .footer__social ul li {
  margin: 0 8px 0 0;
}

@media only screen and (min-width: 640px) {
  .footer .footer__topmenu .footer__social ul li {
    margin: 0 24px 0 0;
  }
}

.footer .footer__topmenu .footer__social ul li:last-of-type {
  margin: 0;
}

.footer .footer__topmenu .footer__social ul li a {
  display: block;
  position: relative;
  height: 40px;
  width: 40px;
  overflow: hidden;
  padding: 0 0 0 40px;
  -webkit-transition: 0.25s all ease-in-out;
  -o-transition: 0.25s all ease-in-out;
  transition: 0.25s all ease-in-out;
  line-height: 40px;
  color: #030405;
  white-space: nowrap;
}

.footer .footer__topmenu .footer__social ul li a svg {
  width: 40px;
  height: 40px;
  padding: 12px;
  position: absolute;
  top: 0;
  left: 0;
  color: #ffffff;
  -webkit-transition: 0.25s all ease-in-out;
  -o-transition: 0.25s all ease-in-out;
  transition: 0.25s all ease-in-out;
}

.footer .footer__topmenu .footer__social ul li a:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border: 2px solid #ffffff;
  -webkit-transition: 0.25s all ease-in-out;
  -o-transition: 0.25s all ease-in-out;
  transition: 0.25s all ease-in-out;
  border-radius: 128px 128px 128px 128px;
}

.footer .footer__topmenu .footer__social ul li a:hover {
  cursor: pointer;
}

.footer .footer__topmenu .footer__social ul li a:hover::before {
  border: 2px solid #3fa099;
}

.footer .footer__topmenu .footer__social ul li a:hover svg {
  color: #3fa099;
}

.footer .footer__topmenu .footer__social.menu-button ul {
  padding: 0 96px 0 0;
}

@media only screen and (min-width: 640px) {
  .footer .footer__topmenu .footer__social.menu-button ul {
    padding: 0 112px 0 0;
  }
}

.footer .footer__mainmenu {
  background: #3fa099;
}

.footer .footer__mainmenu .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media only screen and (min-width: 1280px) {
  .footer .footer__mainmenu .footer__social {
    display: none;
  }
}

.footer .footer__mainmenu .footer__social ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 48px 0 48px 0;
}

.footer .footer__mainmenu .footer__social ul li {
  margin: 0 8px 0 0;
}

@media only screen and (min-width: 640px) {
  .footer .footer__mainmenu .footer__social ul li {
    margin: 0 24px 0 0;
  }
}

.footer .footer__mainmenu .footer__social ul li:last-of-type {
  margin: 0;
}

.footer .footer__mainmenu .footer__social ul li a {
  display: block;
  position: relative;
  height: 40px;
  width: 40px;
  overflow: hidden;
  padding: 0 0 0 40px;
  -webkit-transition: 0.25s all ease-in-out;
  -o-transition: 0.25s all ease-in-out;
  transition: 0.25s all ease-in-out;
  line-height: 40px;
  color: #030405;
  white-space: nowrap;
}

.footer .footer__mainmenu .footer__social ul li a:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border: 2px solid #ffffff;
  background-size: 16px 16px;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-transition: 0.25s background-image ease-in-out, 0.25s border ease-in-out;
  -o-transition: 0.25s background-image ease-in-out, 0.25s border ease-in-out;
  transition: 0.25s background-image ease-in-out, 0.25s border ease-in-out;
  border-radius: 128px 128px 128px 128px;
}

.footer .footer__mainmenu .footer__social ul li a.facebook:before {
  background-image: url(../img/icons/facebook-f-brands-white.svg);
}

.footer .footer__mainmenu .footer__social ul li a.twitter:before {
  background-image: url(../img/icons/twitter-brands-white.svg);
}

.footer .footer__mainmenu .footer__social ul li a.linkedin:before {
  background-image: url(../img/icons/linkedin-in-brands-white.svg);
}

.footer .footer__mainmenu .footer__social ul li a.instagram:before {
  background-image: url(../img/icons/instagram-brands-white.svg);
}

.footer .footer__mainmenu .footer__social ul li a.youtube:before {
  background-image: url(../img/icons/youtube-brands-white.svg);
}

.footer .footer__mainmenu .footer__social ul li a:hover:before {
  border: 2px solid #ff005b;
  cursor: pointer;
}

.footer .footer__mainmenu .footer__social ul li a:hover.facebook:before {
  background-image: url(../img/icons/facebook-f-brands-primary.svg);
}

.footer .footer__mainmenu .footer__social ul li a:hover.twitter:before {
  background-image: url(../img/icons/twitter-brands-primary.svg);
}

.footer .footer__mainmenu .footer__social ul li a:hover.linkedin:before {
  background-image: url(../img/icons/linkedin-in-brands-primary.svg);
}

.footer .footer__mainmenu .footer__social ul li a:hover.instagram:before {
  background-image: url(../img/icons/instagram-brands-primary.svg);
}

.footer .footer__mainmenu .footer__social ul li a:hover.youtube:before {
  background-image: url(../img/icons/youtube-brands-primary.svg);
}

.footer .footer__mainmenu .footer__social.menu-button ul {
  padding: 0 96px 0 0;
}

@media only screen and (min-width: 640px) {
  .footer .footer__mainmenu .footer__social.menu-button ul {
    padding: 0 112px 0 0;
  }
}

.footer .footer__mainmenu .footer__disclaimer {
  padding: 0 0 48px 0;
}

@media only screen and (min-width: 1280px) {
  .footer .footer__mainmenu .footer__disclaimer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 48px 0;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.footer .footer__mainmenu .footer__disclaimer ul {
  position: relative;
}

.footer .footer__mainmenu .footer__disclaimer ul:not(:last-of-type) {
  margin: 0 0 48px 0;
}

@media only screen and (min-width: 640px) {
  .footer .footer__mainmenu .footer__disclaimer ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media only screen and (min-width: 1280px) {
  .footer .footer__mainmenu .footer__disclaimer ul:not(:last-of-type) {
    margin: 0 24px 0 0;
    padding: 0 32px 0 0;
  }
  .footer .footer__mainmenu .footer__disclaimer ul:not(:last-of-type):after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border: 2px solid #ffffff;
    border-radius: 128px 128px 128px 128px;
  }
}

.footer .footer__mainmenu .footer__disclaimer ul li {
  text-align: center;
  color: #ffffff;
}

@media only screen and (min-width: 640px) {
  .footer .footer__mainmenu .footer__disclaimer ul li:not(:last-of-type) {
    margin: 0 24px 0 0;
    padding: 0 32px 0 0;
    position: relative;
  }
  .footer .footer__mainmenu .footer__disclaimer ul li:not(:last-of-type):after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border: 2px solid #ffffff;
    border-radius: 128px 128px 128px 128px;
  }
}

.footer .footer__mainmenu .footer__disclaimer ul li a {
  color: #ffffff;
}

@media only screen and (min-width: 640px) {
  .footer .footer__mainmenu .footer__disclaimer ul.address li:not(:last-of-type) {
    margin: 0;
    padding: 0;
  }
  .footer .footer__mainmenu .footer__disclaimer ul.address li:not(:last-of-type):after {
    content: ", ";
    white-space: pre;
    position: relative;
    right: 0;
    top: auto;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    width: auto;
    height: auto;
    border: 0px;
    border-radius: 128px 128px 128px 128px;
  }
}

.footer .footer__logo-extra {
  padding-top: 48px;
  padding-bottom: 48px;
  background-color: #ffffff;
}

.footer .footer__logo-extra .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media only screen and (min-width: 640px) {
  .footer .footer__logo-extra .wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 48px;
  }
}

.footer .footer__logo-extra .wrapper * {
  margin: 0;
  padding: 0;
}

.footer .footer__logo-extra .wrapper img {
  width: 120px;
  height: auto;
}

.footer .footer__logo-extra .wrapper p {
  font-size: 12px;
  color: #030405;
  opacity: 0.8;
}

.card__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.card__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0;
  -webkit-transition: 0.25s all ease-in-out;
  -o-transition: 0.25s all ease-in-out;
  transition: 0.25s all ease-in-out;
  width: 100%;
}

@media only screen and (min-width: 1280px) {
  .card__item {
    width: 50%;
  }
}

@media only screen and (min-width: 1920px) {
  .card__item {
    width: 25%;
  }
}

.card__image--video a {
  position: relative;
}

.card__image--video a:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -32px 0 0 -32px;
  width: 64px;
  height: 64px;
  background-color: #3fa099;
  pointer-events: none;
  -webkit-transition: 0.25s all ease-in-out;
  -o-transition: 0.25s all ease-in-out;
  transition: 0.25s all ease-in-out;
  background-image: url(../img/icons/play-regular-white.svg);
  background-size: 20px 20px;
  background-repeat: no-repeat;
  background-position: 24px center;
  pointer-events: none;
  border-radius: 128px 128px 128px 128px;
}

.card__image--video a:hover:after {
  background-color: #33837d;
}

.card__text {
  padding: 48px 16px 0 16px;
}

@media only screen and (min-width: 640px) {
  .card__text {
    padding: 48px 48px 0 48px;
  }
}

.card__button {
  margin-top: auto;
  padding: 0 16px;
}

@media only screen and (min-width: 640px) {
  .card__button {
    padding: 0 48px;
  }
}

.card__load-more {
  padding: 0 0 48px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.card__load-more .button--disabled {
  background: #030405;
}

.card__load-more .button--disabled:hover {
  background: black;
}

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

.card--center .card__container {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.card--white {
  background: #ffffff;
}

.card--grey {
  background: #efefef;
}

.card--black {
  background: #030405;
}

.card--black .card__load-more .button--disabled {
  background: #ffffff;
  color: #030405;
}

.card--black .card__load-more .button--disabled:hover {
  background: #ebebeb;
}

.card--primary {
  background: #3fa099;
}

.card--secondary {
  background: #ff005b;
}

.card--secondary .card__load-more .button--filled-secondary {
  background: #3fa099;
}

.card--secondary .card__load-more .button--filled-secondary:hover {
  background: #33837d;
}

.card--secondary .card__load-more .button--disabled {
  background: #030405;
}

.card--secondary .card__load-more .button--disabled:hover {
  background: black;
}

.card--basic {
  padding: 96px 0 0 0;
}

.card--basic .card__item {
  background: #ffffff;
  margin: 0 0 96px 0;
  border-radius: 4px 4px 4px 4px;
  overflow: hidden;
}

@media only screen and (min-width: 1280px) {
  .card--basic .card__item {
    margin: 0 0 96px 96px;
    width: calc(50% - 48px);
  }
  .card--basic .card__item:nth-of-type(2n+1) {
    margin: 0 0 96px 0;
  }
}

@media only screen and (min-width: 1920px) {
  .card--basic .card__item {
    width: calc(25% - 72px);
  }
  .card--basic .card__item:nth-of-type(2n+1) {
    margin: 0 0 96px 96px;
  }
  .card--basic .card__item:nth-of-type(4n+1) {
    margin: 0 0 96px 0;
  }
}

.card--basic .card__container {
  padding: 0 16px;
}

@media only screen and (min-width: 640px) {
  .card--basic .card__container {
    padding: 0 48px;
  }
}

@media only screen and (min-width: 1280px) {
  .card--basic .card__container {
    padding: 0 96px;
  }
}

.card--basic .card__load-more {
  padding-left: 16px;
  padding-right: 16px;
}

@media only screen and (min-width: 640px) {
  .card--basic .card__load-more {
    padding-left: 48px;
    padding-right: 48px;
  }
}

@media only screen and (min-width: 1280px) {
  .card--basic .card__load-more {
    padding-left: 96px;
    padding-right: 96px;
  }
}

.card--basic.card--white .card__item {
  background: #efefef;
}

.card--mixed h2, .card--mixed h3, .card--mixed p, .card--mixed li, .card--mixed em {
  color: #ffffff;
}

.card--mixed strong {
  color: #ffffff;
}

.card--mixed p a, .card--mixed li a {
  color: #ffffff;
}

.card--mixed p a:hover, .card--mixed li a:hover {
  color: black;
}

.card--mixed ul li:before {
  color: #3fa099;
}

.card--mixed blockquote {
  border-left: 2px solid #3fa099;
}

.card--mixed blockquote:before {
  background-image: url(../img/icons/quote-right-solid-primary.svg);
}

.card--mixed .card__item {
  padding: 0 0 48px 0;
}

.card--mixed .card__item:nth-child(6n+1) {
  background: #3fa099;
}

.card--mixed .card__item:nth-child(6n+2) {
  background: #62b0aa;
}

.card--mixed .card__item:nth-child(6n+3) {
  background: #ff005b;
}

.card--mixed .card__item:nth-child(6n+4) {
  background: #fc3079;
}

.card--mixed .card__item:nth-child(6n+5) {
  background: #030405;
}

.card--mixed .card__item:nth-child(6n+6) {
  background: #323334;
}

@media only screen and (min-width: 1280px) {
  .card--mixed .card__text {
    padding: 96px 96px 0 96px;
  }
}

.card--mixed .card__button .button--filled-secondary {
  background: #ffffff;
  color: #030405;
}

.card--mixed .card__button .button--filled-secondary:hover {
  background: #ebebeb;
}

@media only screen and (min-width: 640px) {
  .card--mixed .card__button {
    padding: 0 96px;
  }
}

.card--mixed .card__load-more {
  padding: 96px 0 48px 0;
}

.card--icon .card__image {
  padding: 96px 0 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.card--icon .card__image a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  width: 160px;
  height: 160px;
}

.card--icon .card__image a img {
  max-width: 100%;
  max-height: 100%;
  position: relative;
  -webkit-transition: 0.25s all ease-in-out;
  -o-transition: 0.25s all ease-in-out;
  transition: 0.25s all ease-in-out;
}

.card--full .card__image a {
  display: block;
  position: relative;
  overflow: hidden;
  padding: 75% 0 0 0;
}

.card--full .card__image a img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: 0.25s all ease-in-out;
  -o-transition: 0.25s all ease-in-out;
  transition: 0.25s all ease-in-out;
}

.card--round .card__image {
  padding: 96px 0 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.card--round .card__image a {
  display: block;
  position: relative;
  width: 240px;
  height: 240px;
  overflow: hidden;
  border: 2px solid #ffffff;
  border-radius: 50%;
  overflow: hidden;
}

.card--round .card__image a img {
  position: relative;
  -webkit-transition: 0.25s all ease-in-out;
  -o-transition: 0.25s all ease-in-out;
  transition: 0.25s all ease-in-out;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

@media only screen and (min-width: 1280px) {
  .card--three.card--basic .card__item {
    margin: 0 0 96px 48px;
    width: calc(33.333333333333333% - 32px);
  }
  .card--three.card--basic .card__item:nth-of-type(3n+1) {
    margin: 0 0 96px 0px;
  }
}

@media only screen and (min-width: 1920px) {
  .card--three.card--basic .card__item {
    margin: 0 0 96px 96px;
    width: calc(33.333333333333333% - 64px);
  }
  .card--three.card--basic .card__item:nth-of-type(3n+1) {
    margin: 0 0 96px 0px;
  }
}

@media only screen and (min-width: 1280px) {
  .card--three.card--mixed .card__item {
    width: 33.333333333333333%;
  }
}

@media only screen and (min-width: 1920px) {
  .card--three.card--mixed .card__item {
    width: 33.333333333333333%;
  }
}

.card--three.card--mixed .card__text {
  padding: 96px 16px 0 16px;
}

.card--three.card--mixed .card__text h2 {
  font-size: 16px;
}

@media only screen and (min-width: 640px) {
  .card--three.card--mixed .card__text h2 {
    font-size: 20px;
  }
}

@media only screen and (min-width: 640px) {
  .card--three.card--mixed .card__text {
    padding: 96px 48px 0 48px;
  }
}

@media only screen and (min-width: 1280px) {
  .card--three.card--mixed .card__text {
    padding: 96px 48px 0 48px;
  }
}

.content {
  padding: 96px 0 48px 0;
}

.content__button-container {
  width: 100%;
}

.content__button-container .wrapper {
  max-width: 1280px;
}

.content__button-container a {
  margin: 0 48px 24px 0;
}

.content__button-container a:last-of-type {
  margin: 0 0 48px 0;
}

.content__file .wrapper {
  max-width: 1280px;
}

.content__file a {
  display: block;
  margin: 0 0 2px 0;
  background: #3fa099;
  position: relative;
  color: #ffffff;
  font-weight: 500;
  -webkit-transition: 0.25s all ease-in-out;
  -o-transition: 0.25s all ease-in-out;
  transition: 0.25s all ease-in-out;
  padding: 16px 88px 16px 16px;
  z-index: 1;
  background: #db4437;
  background-position: center left;
  background-size: 200%;
  border-radius: 4px 4px 4px 4px;
}

@media only screen and (min-width: 640px) {
  .content__file a {
    padding: 16px 88px 16px 24px;
  }
}

.content__file a:last-of-type {
  margin: 0 0 48px 0;
}

.content__file a svg {
  position: absolute;
  top: 0;
  right: 0;
  width: 64px;
  height: 64px;
  pointer-events: none;
  padding: 22px;
  -webkit-transition: 0.25s all ease-in-out;
  -o-transition: 0.25s all ease-in-out;
  transition: 0.25s all ease-in-out;
}

.content__file a:hover {
  cursor: pointer;
  background: #c63024;
}

.content__file a:hover svg {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}

.content__image {
  max-width: 1408px;
  margin: 0 auto 48px auto;
}

@media only screen and (min-width: 1408px) {
  .content__image {
    overflow: hidden;
    border-radius: 4px 4px 4px 4px;
  }
}

.content__spacer--positive {
  height: 48px;
}

.content__spacer--negative {
  margin: -48px 0 0 0;
}

.content__text .wrapper {
  max-width: 1280px;
}

.content__text-code .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 1600px;
}

.content__text-code h3:nth-child(2) {
  margin-top: -48px;
}

.content__text-code iframe {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
}

.content__text-code .content__col {
  width: 100%;
}

@media only screen and (min-width: 1280px) {
  .content__text-code .content__col {
    width: calc(50% - 48px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .content__text-code .content__col:not(:last-of-type) {
    margin: 0 96px 0 0;
  }
}

.content__text-code .content__col--code {
  padding: 0 0 48px 0;
  min-height: 480px;
}

.content__text-image .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 1600px;
}

.content__text-image h3:nth-child(2) {
  margin-top: -48px;
}

.content__text-image .content__col {
  width: 100%;
}

@media only screen and (min-width: 1280px) {
  .content__text-image .content__col {
    width: calc(50% - 48px);
  }
  .content__text-image .content__col:not(:last-of-type) {
    margin: 0 96px 0 0;
  }
}

.content__text-image .content__col--text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.content__text-image .content__col--image {
  margin: 0 0 48px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.content__text-image .content__col--image img {
  border-radius: 4px 4px 4px 4px;
}

.content__text-video .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 1600px;
}

.content__text-video h3:nth-child(2) {
  margin-top: -48px;
}

.content__text-video .content__col {
  width: 100%;
}

@media only screen and (min-width: 1280px) {
  .content__text-video .content__col {
    width: calc(50% - 48px);
  }
  .content__text-video .content__col:not(:last-of-type) {
    margin: 0 96px 0 0;
  }
}

.content__text-video .content__col--text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.content__text-video .content__col--video {
  padding: 0 0 48px 0;
}

.content__text-video .content__video-container {
  position: relative;
  padding-bottom: 56.25%;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  height: auto;
  background: #030405;
}

.content__text-video .content__video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  -webkit-transition: 0.5s all ease-in-out 1s;
  -o-transition: 0.5s all ease-in-out 1s;
  transition: 0.5s all ease-in-out 1s;
  opacity: 0;
  pointer-events: none;
}

.content__text-video .content__video-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: 0.25s all ease-in-out;
  -o-transition: 0.25s all ease-in-out;
  transition: 0.25s all ease-in-out;
}

.content__text-video .content__video-container:after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -32px 0 0 -32px;
  width: 64px;
  height: 64px;
  background-color: #3fa099;
  pointer-events: none;
  -webkit-transition: 0.25s all ease-in-out;
  -o-transition: 0.25s all ease-in-out;
  transition: 0.25s all ease-in-out;
  background-image: url(../img/icons/play-regular-white.svg);
  background-size: 20px 20px;
  background-repeat: no-repeat;
  background-position: 24px center;
  pointer-events: none;
  border-radius: 128px 128px 128px 128px;
}

.content__text-video .content__video-container:hover {
  cursor: pointer;
}

.content__text-video .content__video-container:hover img {
  opacity: 0.75;
}

.content__text-video .content__video-container:hover:after {
  background-color: #33837d;
}

.content__text-video .content__video-container.active img {
  opacity: 0;
  pointer-events: none;
}

.content__text-video .content__video-container.active iframe {
  opacity: 1;
  pointer-events: all;
}

.content__text-video .content__video-container.active:after {
  opacity: 0;
}

.content__video {
  max-width: 1408px;
  margin: 0 auto 48px auto;
}

.content__video .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.content__video .content__video-container {
  position: relative;
  padding-bottom: 56.25%;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  height: auto;
  background: #030405;
}

.content__video .content__video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  -webkit-transition: 0.5s all ease-in-out 1s;
  -o-transition: 0.5s all ease-in-out 1s;
  transition: 0.5s all ease-in-out 1s;
  opacity: 0;
  pointer-events: none;
}

.content__video .content__video-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: 0.25s all ease-in-out;
  -o-transition: 0.25s all ease-in-out;
  transition: 0.25s all ease-in-out;
}

.content__video .content__video-container:after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -32px 0 0 -32px;
  width: 64px;
  height: 64px;
  background-color: #3fa099;
  pointer-events: none;
  -webkit-transition: 0.25s all ease-in-out;
  -o-transition: 0.25s all ease-in-out;
  transition: 0.25s all ease-in-out;
  background-image: url(../img/icons/play-regular-white.svg);
  background-size: 20px 20px;
  background-repeat: no-repeat;
  background-position: 24px center;
  pointer-events: none;
  border-radius: 128px 128px 128px 128px;
}

.content__video .content__video-container:hover {
  cursor: pointer;
}

.content__video .content__video-container:hover img {
  opacity: 0.75;
}

.content__video .content__video-container:hover:after {
  background-color: #33837d;
}

.content__video .content__video-container.active img {
  opacity: 0;
  pointer-events: none;
}

.content__video .content__video-container.active iframe {
  opacity: 1;
  pointer-events: all;
}

.content__video .content__video-container.active:after {
  opacity: 0;
}

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

.content--center ul li:before {
  position: relative;
  padding: 0 8px 0 0;
}

.content--center .content__button-container a {
  margin: 0 24px 24px 24px;
}

.content--center .content__button-container a:last-of-type {
  margin: 0 24px 48px 24px;
}

.content--center .content__file {
  text-align: left;
}

.content--right .wrapper .content__col {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

@media only screen and (min-width: 1280px) {
  .content--right .wrapper .content__col {
    margin: 0;
  }
}

.content--right .wrapper .content__col:last-of-type {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

@media only screen and (min-width: 1280px) {
  .content--right .wrapper .content__col:last-of-type {
    margin: 0 96px 0 0;
  }
}

.content--white:before, .content--white:after {
  background: #ffffff;
}

.content--grey {
  background: #efefef;
}

.content--grey:before, .content--grey:after {
  background: #efefef;
}

.content--black {
  background: #030405;
}

.content--black:before, .content--black:after {
  background: #030405;
}

.content--black h2, .content--black h3, .content--black p, .content--black li, .content--black em {
  color: #ffffff;
}

.content--primary {
  background: #ff005b;
}

.content--primary:before, .content--primary:after {
  background: #ff005b;
}

.content--primary h2, .content--primary h3, .content--primary p, .content--primary li, .content--primary em {
  color: #ffffff;
}

.content--primary .button {
  border: 2px solid #ffffff;
}

.content--primary .content__file a {
  border: 2px solid #ffffff;
}

.content--secondary {
  background: #3fa099;
}

.content--secondary:before, .content--secondary:after {
  background: #3fa099;
}

.content--secondary h2, .content--secondary h3, .content--secondary p, .content--secondary li, .content--secondary em {
  color: #ffffff;
}

.content--secondary strong {
  color: #ff005b;
}

.content--secondary p a, .content--secondary li a {
  color: #ff005b;
}

.content--secondary p a:hover, .content--secondary li a:hover {
  color: #d6004c;
}

.content--secondary ul li:before {
  color: #ff005b;
}

.content--secondary blockquote {
  border-left: 2px solid #ff005b;
}

.content--secondary blockquote:before {
  background-image: url(../img/icons/quote-right-solid-primary.svg);
}

.content--secondary .button {
  border: 2px solid #ffffff;
}

.content--secondary .content__file a {
  border: 2px solid #ffffff;
}

.content_slider_only {
  aspect-ratio: 1/1;
}

.content_slider_only__slider {
  width: 100%;
  aspect-ratio: 1/1;
}

.content_slider_only__slider img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}

.content_slider_only__slider .owl-nav {
  top: auto;
  bottom: 0px;
  display: none;
}

@media only screen and (min-width: 640px) {
  .content_slider_only__slider .owl-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    top: 50%;
    bottom: auto;
  }
}

.content_slider_only__slider .owl-dots {
  bottom: 96px;
}

@media only screen and (min-width: 640px) {
  .content_slider_only__slider .owl-dots {
    bottom: 64px;
  }
}

.faq {
  padding: 96px 0 48px 0;
}

.faq .wrapper {
  max-width: 1280px;
}

.faq__container {
  margin: 0 0 2px 0;
}

.faq__container:last-of-type {
  margin: 0 0 48px 0;
}

.faq__container .faq__question {
  position: relative;
  background: #3fa099;
  color: #ffffff;
  overflow: hidden;
  border-radius: 4px 4px 4px 4px;
}

.faq__container .faq__question p {
  display: block;
  position: relative;
  font-weight: 500;
  -webkit-transition: 0.25s all ease-in-out;
  -o-transition: 0.25s all ease-in-out;
  transition: 0.25s all ease-in-out;
  padding: 16px 88px 16px 16px;
  background: -webkit-gradient(linear, left top, right top, from(#3fa099), to(#ff005b));
  background: -webkit-linear-gradient(left, #3fa099 0%, #ff005b 100%);
  background: -o-linear-gradient(left, #3fa099 0%, #ff005b 100%);
  background: linear-gradient(to right, #3fa099 0%, #ff005b 100%);
  background-size: 100%;
  background-position: center left;
}

@media only screen and (min-width: 640px) {
  .faq__container .faq__question p {
    padding: 16px 88px 16px 24px;
  }
}

.faq__container .faq__question p:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 64px;
  height: 64px;
  background-image: url(../img/icons/arrow-down-regular-white.svg);
  background-size: 20px 20px;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
  -webkit-transition: 0.25s all ease-in-out;
  -o-transition: 0.25s all ease-in-out;
  transition: 0.25s all ease-in-out;
}

.faq__container .faq__question p:hover {
  cursor: pointer;
  background-size: 150%;
  background-position: center left;
}

.faq__container .faq__question.active p:after {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
  -webkit-animation: none;
          animation: none;
}

.faq__container .faq__answer {
  display: none;
  position: relative;
  padding: 48px 0 0 16px;
  border-left: 2px solid #3fa099;
  margin: 48px 0 48px 0;
}

@media only screen and (min-width: 640px) {
  .faq__container .faq__answer {
    padding: 48px 0 0 48px;
  }
}

@media only screen and (min-width: 1280px) {
  .faq__container .faq__answer {
    padding: 48px 0 0 96px;
  }
}

.faq--grey {
  background: #efefef;
}

.faq--black {
  background: #030405;
}

.faq--black h2, .faq--black h3, .faq--black p, .faq--black li, .faq--black em {
  color: #ffffff;
}

.faq--secondary {
  background: #3fa099;
}

.faq--secondary .faq__question {
  background: #ff005b;
}

.faq--secondary .faq__question p:hover {
  background: #d6004c;
}

.faq--secondary .faq__answer {
  border-left: 2px solid #ff005b;
}

.faq--secondary h2, .faq--secondary h3, .faq--secondary p, .faq--secondary li, .faq--secondary em {
  color: #ffffff;
}

.faq--secondary strong {
  color: #ff005b;
}

.faq--secondary p a, .faq--secondary li a {
  color: #ff005b;
}

.faq--secondary p a:hover, .faq--secondary li a:hover {
  color: #d6004c;
}

.faq--secondary ul li:before {
  color: #ff005b;
}

.faq--secondary blockquote {
  border-left: 2px solid #ff005b;
}

.faq--secondary blockquote:before {
  background-image: url(../img/icons/quote-right-solid-primary.svg);
}

.faq--primary {
  background: #ff005b;
}

.faq--primary h2, .faq--primary h3, .faq--primary p, .faq--primary li, .faq--primary em {
  color: #ffffff;
}

.form {
  padding-top: 96px;
  padding-bottom: 96px;
}

.form .wrapper {
  max-width: 1280px;
}

.form--white .gform_wrapper .gform-body .gform_fields .gfield input,
.form--white .gform_wrapper .gform-body .gform_fields .gfield select,
.form--white .gform_wrapper .gform-body .gform_fields .gfield textarea {
  background: #efefef;
}

.form--grey {
  background: #efefef;
}

.form--black {
  background: #030405;
}

.form--primary {
  background: #3fa099;
}

.form--primary .gform_wrapper label {
  color: #ffffff;
}

.form--primary .gform_wrapper .gform_validation_errors h2 {
  color: #ffffff;
}

.form--primary .gform_wrapper .gform-body .gform_fields .gfield .validation_message {
  color: #ffffff;
}

.form--secondary {
  background: #ff005b;
}

.form--secondary .gform_wrapper label {
  color: #ffffff;
}

.form--secondary .gform_wrapper .gform_validation_errors h2 {
  color: #ffffff;
}

.form--secondary .gform_wrapper .gform-body .gform_fields .gfield .validation_message {
  color: #ffffff;
}

.hero {
  position: relative;
}

@media only screen and (min-width: 1280px) {
  .hero {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    background: #ebebeb;
  }
}

.hero__slider {
  width: 100%;
}

@media only screen and (min-width: 1280px) {
  .hero__slider {
    width: 50%;
  }
}

.hero__slider img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}

.hero__slider .owl-nav {
  top: auto;
  bottom: 0px;
  display: none;
}

@media only screen and (min-width: 640px) {
  .hero__slider .owl-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    top: 50%;
    bottom: auto;
  }
}

.hero__slider .owl-dots {
  bottom: 96px;
}

@media only screen and (min-width: 640px) {
  .hero__slider .owl-dots {
    bottom: 64px;
  }
}

.hero__text {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  text-align: center;
  padding: 48px 0 0 0;
}

@media only screen and (min-width: 1280px) {
  .hero__text {
    width: 50%;
  }
}

.hero__text h3 {
  margin-top: -40px;
}

.hero__text .hero__button-container a {
  margin: 0 24px 24px 24px;
}

.hero__text .hero__button-container a:last-of-type {
  margin: 0 24px 48px 24px;
}

.hero__scroll-button {
  position: absolute;
  bottom: 0;
  right: 16px;
  width: 48px;
  height: 48px;
  background: #3fa099;
  -webkit-transition: all 0.25s ease-in-out;
  -o-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  z-index: 899;
  margin: 40px 0;
  border-radius: 4px 4px 4px 4px;
}

@media only screen and (min-width: 640px) {
  .hero__scroll-button {
    right: 48px;
    width: 64px;
    height: 64px;
    margin: 48px 0;
  }
}

@media only screen and (min-width: 1280px) {
  .hero__scroll-button {
    right: 96px;
  }
}

.hero__scroll-button a {
  display: block;
  width: 100%;
  height: 100%;
}

.hero__scroll-button a svg {
  position: absolute;
  top: calc(50% - 10px);
  left: calc(50% - 10px);
  width: 20px;
  height: 20px;
  color: #ffffff;
  -webkit-transition: 0.25s all ease-in-out;
  -o-transition: 0.25s all ease-in-out;
  transition: 0.25s all ease-in-out;
}

.hero__scroll-button:hover {
  cursor: pointer;
  background: #33837d;
}

.hero__scroll-button:hover svg {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}

.intro_product .intro__product {
  margin-bottom: 0;
}

@media only screen and (min-width: 1280px) {
  .intro_product .intro__product {
    margin-bottom: 48px;
  }
}

.intro {
  padding: 96px 0 48px 0;
  min-width: 100vw;
}

.intro .wrapper {
  max-width: 1280px;
}

.intro__title h1 {
  text-align: center;
  width: 100%;
  position: relative;
}

.intro__title--grey {
  padding: 96px 0 48px 0;
  margin: -96px 0 96px 0;
  background: #efefef;
}

.intro__title--grey h1 {
  color: #ffffff;
}

.intro__title--black {
  padding: 96px 0 48px 0;
  margin: -96px 0 96px 0;
  background: #030405;
}

.intro__title--black h1 {
  color: #ffffff;
}

.intro__title--primary {
  padding: 96px 0 48px 0;
  margin: -96px 0 96px 0;
  background: #3fa099;
}

.intro__title--primary h1 {
  color: #ffffff;
}

.intro__title--secondary {
  padding: 96px 0 48px 0;
  margin: -96px 0 96px 0;
  background: #ff005b;
}

.intro__title--secondary h1 {
  color: #ffffff;
}

.intro__title--image {
  padding: 96px 0 48px 0;
  margin: -96px 0 96px 0;
  position: relative;
  background-position: center center;
  background-size: cover;
}

.intro__title--image:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, right bottom, from(rgba(3, 4, 5, 0.25)), color-stop(40%, rgba(3, 4, 5, 0.5)), to(rgba(3, 4, 5, 0.25)));
  background: -webkit-linear-gradient(top left, rgba(3, 4, 5, 0.25) 0%, rgba(3, 4, 5, 0.5) 40%, rgba(3, 4, 5, 0.25) 100%);
  background: -o-linear-gradient(top left, rgba(3, 4, 5, 0.25) 0%, rgba(3, 4, 5, 0.5) 40%, rgba(3, 4, 5, 0.25) 100%);
  background: linear-gradient(to bottom right, rgba(3, 4, 5, 0.25) 0%, rgba(3, 4, 5, 0.5) 40%, rgba(3, 4, 5, 0.25) 100%);
}

.intro__title--image h1 {
  color: #ffffff;
}

.intro__text {
  text-align: center;
  font-weight: 500;
}

@media only screen and (min-width: 1280px) {
  .intro__text {
    font-size: 20px;
  }
}

.intro__text .intro__button-container a {
  margin: 0 24px 24px 24px;
}

.intro__text .intro__button-container a:last-of-type {
  margin: 0 24px 48px 24px;
}

#empty {
  margin-bottom: -96px;
}

.map {
  position: relative;
  overflow: hidden;
}

.map__map {
  position: absolute;
  top: 0;
  left: 0;
  height: calc(100% + 96px);
  width: 100%;
}

.map__map svg {
  color: #3fa099;
}

.map__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  padding: 96px 16px;
  background: #3fa099;
  background: -webkit-gradient(linear, left top, right top, from(#3fa099), to(rgba(63, 160, 153, 0.75)));
  background: -webkit-linear-gradient(left, #3fa099 0%, rgba(63, 160, 153, 0.75) 100%);
  background: -o-linear-gradient(left, #3fa099 0%, rgba(63, 160, 153, 0.75) 100%);
  background: linear-gradient(to right, #3fa099 0%, rgba(63, 160, 153, 0.75) 100%);
  margin: 96px 0;
  border-radius: 4px 4px 4px 4px;
}

@media only screen and (min-width: 640px) {
  .map__content {
    width: 100%;
    left: 0;
    padding: 96px 48px;
  }
}

@media only screen and (min-width: 1280px) {
  .map__content {
    max-width: calc(50% - 48px);
    background: #3fa099;
  }
}

@media only screen and (min-width: 1920px) {
  .map__content {
    max-width: calc(25% - 72px);
    background: #3fa099;
  }
}

.map__content h2 {
  padding: 0 0 24px 0;
  color: #ffffff;
}

.map__content ul:not(:last-of-type) {
  margin: 0 0 24px 0;
}

.map__content ul li {
  color: #ffffff;
}

.map__content ul li:not(:last-of-type) a {
  margin: 0 0 8px 0;
}

.map__content ul li a {
  display: block;
  position: relative;
  height: 40px;
  width: auto;
  overflow: hidden;
  padding: 0 0 0 64px;
  -webkit-transition: 0.25s all ease-in-out;
  -o-transition: 0.25s all ease-in-out;
  transition: 0.25s all ease-in-out;
  line-height: 40px;
  color: #030405;
  white-space: nowrap;
  color: #ffffff;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
}

.map__content ul li a:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border: 2px solid #ffffff;
  background-size: 16px 16px;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-transition: 0.25s background-image ease-in-out, 0.25s border ease-in-out;
  -o-transition: 0.25s background-image ease-in-out, 0.25s border ease-in-out;
  transition: 0.25s background-image ease-in-out, 0.25s border ease-in-out;
  border-radius: 128px 128px 128px 128px;
}

.map__content ul li a svg {
  width: 40px;
  height: 40px;
  padding: 12px;
  position: absolute;
  top: 0;
  left: 0;
  color: #ffffff;
  -webkit-transition: 0.25s all ease-in-out;
  -o-transition: 0.25s all ease-in-out;
  transition: 0.25s all ease-in-out;
}

.map__content ul li a:hover svg {
  color: #ff005b;
}

.map__content ul li a:hover:before {
  border: 2px solid #ff005b;
  cursor: pointer;
}

.open {
  padding: 96px 0 96px 0;
}

.open .wrapper {
  max-width: 1280px;
}

.open ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.open ul li {
  position: relative;
  width: 100%;
  background: #efefef;
  border-radius: 4px 4px 4px 4px;
}

.open ul li:not(:last-of-type) {
  margin: 0 0 2px 0;
}

@media only screen and (min-width: 1280px) {
  .open ul li {
    width: calc(50% - 48px);
  }
  .open ul li:not(:last-of-type) {
    margin: 0 96px 2px 0;
  }
  .open ul li:not(:last-of-type):nth-of-type(2n+2) {
    margin: 0 0 2px 0;
  }
}

.open ul li p {
  padding: 16px 24px 16px 80px;
  color: #030405;
}

.open ul li span {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 64px;
  height: 64px;
  line-height: 64px;
  text-transform: uppercase;
  text-align: center;
  background: #3fa099;
  color: #ffffff;
  font-weight: 500;
  border-radius: 4px 4px 4px 4px;
}

.open--grey {
  background: #efefef;
}

.open--grey ul li {
  background: #ffffff;
}

.open--black {
  background: #030405;
}

.open--black ul li {
  background: #ffffff;
}

.open--primary {
  background: #ff005b;
}

.open--primary ul li {
  background: #ffffff;
}

.open--secondary {
  background: #3fa099;
}

.open--secondary ul li {
  background: #ffffff;
}

.open--secondary ul li span {
  background: #ff005b;
}

.reference {
  padding: 96px 0 96px 0;
}

.reference .wrapper {
  max-width: 1280px;
}

.reference__slider .owl-nav {
  position: relative;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  padding: 0;
  margin: 96px 0 0 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.reference__slider .owl-nav .owl-prev,
.reference__slider .owl-nav .owl-next {
  background: transparent;
}

.reference__slider .owl-nav .owl-prev:before,
.reference__slider .owl-nav .owl-next:before {
  border: 2px solid #ff005b;
  background-image: url(../img/icons/arrow-left-regular-primary.svg);
}

.reference__slider .owl-nav .owl-prev:hover,
.reference__slider .owl-nav .owl-next:hover {
  background: transparent;
}

.reference__slider .owl-nav .owl-prev:hover:before,
.reference__slider .owl-nav .owl-next:hover:before {
  border: 2px solid #3fa099;
  background-image: url(../img/icons/arrow-left-regular-secondary.svg);
}

.reference__slider .owl-nav .owl-next {
  margin: 0 0 0 8px;
}

.reference__slider .owl-nav .owl-next:before {
  background-image: url(../img/icons/arrow-right-regular-primary.svg);
}

.reference__slider .owl-nav .owl-next:hover:before {
  background-image: url(../img/icons/arrow-right-regular-secondary.svg);
}

.reference__rating {
  padding: 0 0 48px 0;
}

.reference__rating ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.reference__rating ul li {
  display: block;
  position: relative;
  width: 40px;
  height: 40px;
  overflow: hidden;
  margin: 0 8px 0 0;
  -webkit-transition: 0.25s all ease-in-out;
  -o-transition: 0.25s all ease-in-out;
  transition: 0.25s all ease-in-out;
  line-height: 40px;
  color: #030405;
  white-space: nowrap;
  color: #030405;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
}

.reference__rating ul li:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border: 2px solid #efefef;
  background-image: url(../img/icons/star-regular-grey.svg);
  background-size: 16px 16px;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-transition: 0.25s background-image ease-in-out, 0.25s border ease-in-out;
  -o-transition: 0.25s background-image ease-in-out, 0.25s border ease-in-out;
  transition: 0.25s background-image ease-in-out, 0.25s border ease-in-out;
  border-radius: 128px 128px 128px 128px;
}

.reference__rating ul li:hover:before {
  cursor: pointer;
}

.reference__rating--1 ul li:nth-of-type(-n+1):before {
  border: 2px solid #ff005b;
  background-image: url(../img/icons/star-regular-primary.svg);
}

.reference__rating--2 ul li:nth-of-type(-n+2):before {
  border: 2px solid #ff005b;
  background-image: url(../img/icons/star-regular-primary.svg);
}

.reference__rating--3 ul li:nth-of-type(-n+3):before {
  border: 2px solid #ff005b;
  background-image: url(../img/icons/star-regular-primary.svg);
}

.reference__rating--4 ul li:nth-of-type(-n+4):before {
  border: 2px solid #ff005b;
  background-image: url(../img/icons/star-regular-primary.svg);
}

.reference__rating--5 ul li:nth-of-type(-n+5):before {
  border: 2px solid #ff005b;
  background-image: url(../img/icons/star-regular-primary.svg);
}

.reference__person {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media only screen and (min-width: 1280px) {
  .reference__person {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.reference__person .reference__image {
  margin: 0 0 48px 0;
}

@media only screen and (min-width: 1280px) {
  .reference__person .reference__image {
    margin: 0 96px 0 0;
  }
}

.reference__person .reference__image img {
  width: 240px;
  border-radius: 128px 128px 128px 128px;
}

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

@media only screen and (min-width: 1280px) {
  .reference__person .reference__info {
    text-align: left;
  }
}

.reference__person .reference__info p {
  margin-top: -48px;
  font-weight: 500;
  padding: 0;
}

.reference__person .reference__info ul {
  margin-top: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.reference__person .reference__info ul li {
  text-align: left;
}

.reference__person .reference__info ul li:not(:last-of-type) a {
  margin: 0 0 8px 0;
}

.reference__person .reference__info ul li a {
  display: block;
  position: relative;
  height: 40px;
  width: auto;
  overflow: hidden;
  padding: 0 0 0 64px;
  -webkit-transition: 0.25s all ease-in-out;
  -o-transition: 0.25s all ease-in-out;
  transition: 0.25s all ease-in-out;
  line-height: 40px;
  color: #030405;
  white-space: nowrap;
  color: #030405;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
}

.reference__person .reference__info ul li a:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border: 2px solid #ff005b;
  background-size: 16px 16px;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-transition: 0.25s background-image ease-in-out, 0.25s border ease-in-out;
  -o-transition: 0.25s background-image ease-in-out, 0.25s border ease-in-out;
  transition: 0.25s background-image ease-in-out, 0.25s border ease-in-out;
  border-radius: 128px 128px 128px 128px;
}

.reference__person .reference__info ul li a.phone:before {
  background-image: url(../img/icons/mobile-android-regular-primary.svg);
}

.reference__person .reference__info ul li a.mail:before {
  background-image: url(../img/icons/envelope-open-regular-primary.svg);
}

.reference__person .reference__info ul li a:hover:before {
  border: 2px solid #3fa099;
  cursor: pointer;
}

.reference__person .reference__info ul li a:hover.phone:before {
  background-image: url(../img/icons/mobile-android-regular-secondary.svg);
}

.reference__person .reference__info ul li a:hover.mail:before {
  background-image: url(../img/icons/envelope-open-regular-secondary.svg);
}

@media only screen and (min-width: 1280px) {
  .reference--left .reference__slider .owl-nav {
    position: absolute;
    top: auto;
    bottom: 120px;
    -webkit-transform: translateY(50%);
        -ms-transform: translateY(50%);
            transform: translateY(50%);
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

.reference--left .reference__rating ul {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.reference--center .reference__slider .owl-nav {
  position: relative;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  padding: 0;
  margin: 96px 0 0 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media only screen and (min-width: 1280px) {
  .reference--center .reference__slider .owl-nav {
    position: absolute;
    top: auto;
    bottom: 120px;
    -webkit-transform: translateY(50%);
        -ms-transform: translateY(50%);
            transform: translateY(50%);
    padding: 0;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

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

.reference--center .reference__text ul li:before {
  position: relative;
  padding: 0 8px 0 0;
}

@media only screen and (min-width: 1280px) {
  .reference--center .reference__person {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media only screen and (min-width: 1280px) {
  .reference--center .reference__person .reference__image {
    width: calc(50% - 48px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

@media only screen and (min-width: 1280px) {
  .reference--center .reference__person .reference__info {
    width: calc(50% - 48px);
  }
}

.reference--grey {
  background: #efefef;
}

.reference--grey .reference__rating ul li:before {
  border: 2px solid #dbdbdb;
  background-image: url(../img/icons/star-regular-grey-dark.svg);
}

.reference--grey .reference__rating--1 ul li:nth-of-type(-n+1):before {
  border: 2px solid #ff005b;
  background-image: url(../img/icons/star-regular-primary.svg);
}

.reference--grey .reference__rating--2 ul li:nth-of-type(-n+2):before {
  border: 2px solid #ff005b;
  background-image: url(../img/icons/star-regular-primary.svg);
}

.reference--grey .reference__rating--3 ul li:nth-of-type(-n+3):before {
  border: 2px solid #ff005b;
  background-image: url(../img/icons/star-regular-primary.svg);
}

.reference--grey .reference__rating--4 ul li:nth-of-type(-n+4):before {
  border: 2px solid #ff005b;
  background-image: url(../img/icons/star-regular-primary.svg);
}

.reference--grey .reference__rating--5 ul li:nth-of-type(-n+5):before {
  border: 2px solid #ff005b;
  background-image: url(../img/icons/star-regular-primary.svg);
}

.reference--black {
  background: #030405;
}

.reference--black .reference__slider .owl-nav .owl-prev,
.reference--black .reference__slider .owl-nav .owl-next {
  background: transparent;
}

.reference--black .reference__slider .owl-nav .owl-prev:before,
.reference--black .reference__slider .owl-nav .owl-next:before {
  border: 2px solid #ffffff;
  background-image: url(../img/icons/arrow-left-regular-white.svg);
}

.reference--black .reference__slider .owl-nav .owl-prev:hover,
.reference--black .reference__slider .owl-nav .owl-next:hover {
  background: transparent;
}

.reference--black .reference__slider .owl-nav .owl-prev:hover:before,
.reference--black .reference__slider .owl-nav .owl-next:hover:before {
  border: 2px solid #3fa099;
  background-image: url(../img/icons/arrow-left-regular-secondary.svg);
}

.reference--black .reference__slider .owl-nav .owl-next {
  margin: 0 0 0 8px;
}

.reference--black .reference__slider .owl-nav .owl-next:before {
  background-image: url(../img/icons/arrow-right-regular-white.svg);
}

.reference--black .reference__slider .owl-nav .owl-next:hover:before {
  background-image: url(../img/icons/arrow-right-regular-secondary.svg);
}

.reference--black .reference__rating ul li:before {
  border: 2px solid #ffffff;
  background-image: url(../img/icons/star-regular-white.svg);
}

.reference--black .reference__rating--1 ul li:nth-of-type(-n+1):before {
  border: 2px solid #3fa099;
  background-image: url(../img/icons/star-regular-secondary.svg);
}

.reference--black .reference__rating--2 ul li:nth-of-type(-n+2):before {
  border: 2px solid #3fa099;
  background-image: url(../img/icons/star-regular-secondary.svg);
}

.reference--black .reference__rating--3 ul li:nth-of-type(-n+3):before {
  border: 2px solid #3fa099;
  background-image: url(../img/icons/star-regular-secondary.svg);
}

.reference--black .reference__rating--4 ul li:nth-of-type(-n+4):before {
  border: 2px solid #3fa099;
  background-image: url(../img/icons/star-regular-secondary.svg);
}

.reference--black .reference__rating--5 ul li:nth-of-type(-n+5):before {
  border: 2px solid #3fa099;
  background-image: url(../img/icons/star-regular-secondary.svg);
}

.reference--black .reference__person .reference__info ul li a {
  color: #ffffff;
  color: #ffffff;
}

.reference--black .reference__person .reference__info ul li a:before {
  border: 2px solid #ffffff;
}

.reference--black .reference__person .reference__info ul li a.phone:before {
  background-image: url(../img/icons/mobile-android-regular-white.svg);
}

.reference--black .reference__person .reference__info ul li a.mail:before {
  background-image: url(../img/icons/envelope-open-regular-white.svg);
}

.reference--black .reference__person .reference__info ul li a:hover:before {
  border: 2px solid #3fa099;
}

.reference--black .reference__person .reference__info ul li a:hover.phone:before {
  background-image: url(../img/icons/mobile-android-regular-secondary.svg);
}

.reference--black .reference__person .reference__info ul li a:hover.mail:before {
  background-image: url(../img/icons/envelope-open-regular-secondary.svg);
}

.reference--black h2, .reference--black h3, .reference--black p, .reference--black li, .reference--black em {
  color: #ffffff;
}

.reference--black .button--filled-black {
  color: #030405;
  background: #ffffff;
}

.reference--black .button--filled-black:hover {
  background: #ebebeb;
}

.reference--primary {
  background: #ff005b;
}

.reference--primary .reference__slider .owl-nav .owl-prev,
.reference--primary .reference__slider .owl-nav .owl-next {
  background: transparent;
}

.reference--primary .reference__slider .owl-nav .owl-prev:before,
.reference--primary .reference__slider .owl-nav .owl-next:before {
  border: 2px solid #ffffff;
  background-image: url(../img/icons/arrow-left-regular-white.svg);
}

.reference--primary .reference__slider .owl-nav .owl-prev:hover,
.reference--primary .reference__slider .owl-nav .owl-next:hover {
  background: transparent;
}

.reference--primary .reference__slider .owl-nav .owl-prev:hover:before,
.reference--primary .reference__slider .owl-nav .owl-next:hover:before {
  border: 2px solid #3fa099;
  background-image: url(../img/icons/arrow-left-regular-secondary.svg);
}

.reference--primary .reference__slider .owl-nav .owl-next {
  margin: 0 0 0 8px;
}

.reference--primary .reference__slider .owl-nav .owl-next:before {
  background-image: url(../img/icons/arrow-right-regular-white.svg);
}

.reference--primary .reference__slider .owl-nav .owl-next:hover:before {
  background-image: url(../img/icons/arrow-right-regular-secondary.svg);
}

.reference--primary .reference__rating ul li:before {
  border: 2px solid #ffffff;
  background-image: url(../img/icons/star-regular-white.svg);
}

.reference--primary .reference__rating--1 ul li:nth-of-type(-n+1):before {
  border: 2px solid #3fa099;
  background-image: url(../img/icons/star-regular-secondary.svg);
}

.reference--primary .reference__rating--2 ul li:nth-of-type(-n+2):before {
  border: 2px solid #3fa099;
  background-image: url(../img/icons/star-regular-secondary.svg);
}

.reference--primary .reference__rating--3 ul li:nth-of-type(-n+3):before {
  border: 2px solid #3fa099;
  background-image: url(../img/icons/star-regular-secondary.svg);
}

.reference--primary .reference__rating--4 ul li:nth-of-type(-n+4):before {
  border: 2px solid #3fa099;
  background-image: url(../img/icons/star-regular-secondary.svg);
}

.reference--primary .reference__rating--5 ul li:nth-of-type(-n+5):before {
  border: 2px solid #3fa099;
  background-image: url(../img/icons/star-regular-secondary.svg);
}

.reference--primary .reference__person .reference__info h3 {
  color: #3fa099;
}

.reference--primary .reference__person .reference__info ul li a {
  color: #ffffff;
  color: #ffffff;
}

.reference--primary .reference__person .reference__info ul li a:before {
  border: 2px solid #ffffff;
}

.reference--primary .reference__person .reference__info ul li a.phone:before {
  background-image: url(../img/icons/mobile-android-regular-white.svg);
}

.reference--primary .reference__person .reference__info ul li a.mail:before {
  background-image: url(../img/icons/envelope-open-regular-white.svg);
}

.reference--primary .reference__person .reference__info ul li a:hover:before {
  border: 2px solid #3fa099;
}

.reference--primary .reference__person .reference__info ul li a:hover.phone:before {
  background-image: url(../img/icons/mobile-android-regular-secondary.svg);
}

.reference--primary .reference__person .reference__info ul li a:hover.mail:before {
  background-image: url(../img/icons/envelope-open-regular-secondary.svg);
}

.reference--primary h2, .reference--primary h3, .reference--primary p, .reference--primary li, .reference--primary em {
  color: #ffffff;
}

.reference--primary .button--filled-primary {
  background: #3fa099;
}

.reference--primary .button--filled-primary:hover {
  background: #33837d;
}

.reference--secondary {
  background: #3fa099;
}

.reference--secondary .reference__slider .owl-nav .owl-prev,
.reference--secondary .reference__slider .owl-nav .owl-next {
  background: transparent;
}

.reference--secondary .reference__slider .owl-nav .owl-prev:before,
.reference--secondary .reference__slider .owl-nav .owl-next:before {
  border: 2px solid #ffffff;
  background-image: url(../img/icons/arrow-left-regular-white.svg);
}

.reference--secondary .reference__slider .owl-nav .owl-prev:hover,
.reference--secondary .reference__slider .owl-nav .owl-next:hover {
  background: transparent;
}

.reference--secondary .reference__slider .owl-nav .owl-prev:hover:before,
.reference--secondary .reference__slider .owl-nav .owl-next:hover:before {
  border: 2px solid #ff005b;
  background-image: url(../img/icons/arrow-left-regular-primary.svg);
}

.reference--secondary .reference__slider .owl-nav .owl-next {
  margin: 0 0 0 8px;
}

.reference--secondary .reference__slider .owl-nav .owl-next:before {
  background-image: url(../img/icons/arrow-right-regular-white.svg);
}

.reference--secondary .reference__slider .owl-nav .owl-next:hover:before {
  background-image: url(../img/icons/arrow-right-regular-primary.svg);
}

.reference--secondary .reference__rating ul li:before {
  border: 2px solid #ffffff;
  background-image: url(../img/icons/star-regular-white.svg);
}

.reference--secondary .reference__rating--1 ul li:nth-of-type(-n+1):before {
  border: 2px solid #ff005b;
  background-image: url(../img/icons/star-regular-primary.svg);
}

.reference--secondary .reference__rating--2 ul li:nth-of-type(-n+2):before {
  border: 2px solid #ff005b;
  background-image: url(../img/icons/star-regular-primary.svg);
}

.reference--secondary .reference__rating--3 ul li:nth-of-type(-n+3):before {
  border: 2px solid #ff005b;
  background-image: url(../img/icons/star-regular-primary.svg);
}

.reference--secondary .reference__rating--4 ul li:nth-of-type(-n+4):before {
  border: 2px solid #ff005b;
  background-image: url(../img/icons/star-regular-primary.svg);
}

.reference--secondary .reference__rating--5 ul li:nth-of-type(-n+5):before {
  border: 2px solid #ff005b;
  background-image: url(../img/icons/star-regular-primary.svg);
}

.reference--secondary .reference__person .reference__info h3 {
  color: #3fa099;
}

.reference--secondary .reference__person .reference__info ul li a {
  color: #ffffff;
}

.reference--secondary .reference__person .reference__info ul li a:before {
  border: 2px solid #ffffff;
}

.reference--secondary .reference__person .reference__info ul li a.phone:before {
  background-image: url(../img/icons/mobile-android-regular-white.svg);
}

.reference--secondary .reference__person .reference__info ul li a.mail:before {
  background-image: url(../img/icons/envelope-open-regular-white.svg);
}

.reference--secondary .reference__person .reference__info ul li a:hover:before {
  border: 2px solid #ff005b;
}

.reference--secondary .reference__person .reference__info ul li a:hover.phone:before {
  background-image: url(../img/icons/mobile-android-regular-primary.svg);
}

.reference--secondary .reference__person .reference__info ul li a:hover.mail:before {
  background-image: url(../img/icons/envelope-open-regular-primary.svg);
}

.reference--secondary h2, .reference--secondary h3, .reference--secondary p, .reference--secondary li, .reference--secondary em {
  color: #ffffff;
}

.reference--secondary strong {
  color: #ff005b;
}

.reference--secondary p a, .reference--secondary li a {
  color: #ff005b;
}

.reference--secondary p a:hover, .reference--secondary li a:hover {
  color: #d6004c;
}

.reference--secondary ul li:before {
  color: #ff005b;
}

.reference--secondary blockquote {
  border-left: 2px solid #ff005b;
}

.reference--secondary blockquote:before {
  background-image: url(../img/icons/quote-right-solid-primary.svg);
}

.reference--secondary .button--filled-secondary {
  background: #ff005b;
}

.reference--secondary .button--filled-secondary:hover {
  background: #d6004c;
}

.reference--secondary .reference__file a {
  background: #ff005b;
}

.reference--secondary .reference__file a:hover {
  background: #d6004c;
}

.search {
  padding: 96px 0 48px;
}

.search .wrapper {
  max-width: 1280px;
}

.search h2 span {
  color: #ff005b;
}

.search h3 {
  margin-top: -40px;
}

.search a {
  display: block;
  margin: 0 0 2px 0;
  background: #3fa099;
  position: relative;
  color: #ffffff;
  font-weight: 500;
  -webkit-transition: 0.25s all ease-in-out;
  -o-transition: 0.25s all ease-in-out;
  transition: 0.25s all ease-in-out;
  padding: 16px 88px 16px 16px;
  z-index: 1;
  background: -webkit-gradient(linear, left top, right top, from(#3fa099), to(#ff005b));
  background: -webkit-linear-gradient(left, #3fa099 0%, #ff005b 100%);
  background: -o-linear-gradient(left, #3fa099 0%, #ff005b 100%);
  background: linear-gradient(to right, #3fa099 0%, #ff005b 100%);
  background-position: center left;
  background-size: 200%;
  text-align: left;
  border-radius: 4px 4px 4px 4px;
}

@media only screen and (min-width: 640px) {
  .search a {
    padding: 16px 88px 16px 24px;
  }
}

.search a:last-of-type {
  margin: 0 0 48px 0;
}

.search a svg {
  position: absolute;
  top: 0;
  right: 0;
  width: 64px;
  height: 64px;
  pointer-events: none;
  padding: 22px;
  -webkit-transition: 0.25s all ease-in-out;
  -o-transition: 0.25s all ease-in-out;
  transition: 0.25s all ease-in-out;
}

.search a:hover {
  cursor: pointer;
  background-position: center right;
}

.search a:hover svg {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}

.search--white {
  background: #ffffff;
}

.search--white .search__result {
  line-height: 56px;
  border: 2px solid white;
}

.search--white .search__result::before {
  top: -2px;
  right: -2px;
  width: 60px;
  border: 2px solid white;
}

.search--white .search__result::after {
  top: -2px;
  right: -2px;
  width: 60px;
}

.search--grey {
  background: #efefef;
}

.search--grey:before, .search--grey:after {
  background: #efefef;
}

.search--black {
  background: #030405;
}

.search--black h2, .search--black p {
  color: #ffffff;
}

.search--primary {
  background: #ff005b;
}

.search--primary h2, .search--primary p {
  color: #ffffff;
}

.search--secondary {
  background: #3fa099;
}

.search--secondary h2, .search--secondary p {
  color: #ffffff;
}

.search--secondary strong {
  color: #ff005b;
}

.search--secondary a {
  background: #ff005b;
}

.search--secondary a:hover {
  background: #d6004c;
}

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

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

.spacer--white {
  background: #ffffff;
}

.spacer--grey {
  background: #efefef;
}

.spacer--black {
  background: #030405;
}

.spacer--primary {
  background: #ff005b;
}

.spacer--secondary {
  background: #3fa099;
}

.spacer--positive {
  height: 96px;
}

.spacer--negative {
  margin-top: -96px;
}

.table {
  padding: 96px 0 48px 0;
}

.table .wrapper {
  max-width: 1280px;
}

.table__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 0 2px 0;
  overflow: hidden;
  border-radius: 4px 4px 4px 4px;
}

.table__row:last-of-type {
  margin: 0 0 48px 0 !important;
}

.table__row .table__col {
  background: #efefef;
  padding: 16px;
}

@media only screen and (min-width: 640px) {
  .table__row .table__col {
    padding: 16px 24px;
  }
}

.table__row .table__col--left {
  width: 100%;
}

@media only screen and (min-width: 1280px) {
  .table__row .table__col--left {
    width: 50%;
  }
}

.table__row .table__col--right {
  width: 100%;
}

@media only screen and (min-width: 1280px) {
  .table__row .table__col--right {
    width: 50%;
  }
}

.table__row--title {
  margin: 0 0 24px 0;
}

.table__row--title .table__col--left {
  width: 100%;
  background: #3fa099;
  font-weight: 500;
  color: #ffffff;
}

.table__row--title .table__col--right {
  display: none;
}

.table__row--normal .table__col {
  background: #efefef;
}

.table__row--normal .table__col--left {
  font-weight: 500;
  padding: 16px 16px 0 16px;
}

@media only screen and (min-width: 640px) {
  .table__row--normal .table__col--left {
    padding: 16px 24px 0 24px;
  }
}

@media only screen and (min-width: 1280px) {
  .table__row--normal .table__col--left {
    padding: 16px 24px;
  }
}

.table__row--normal .table__col--right {
  padding: 0 16px 16px 16px;
}

@media only screen and (min-width: 640px) {
  .table__row--normal .table__col--right {
    padding: 0 24px 16px 24px;
  }
}

@media only screen and (min-width: 1280px) {
  .table__row--normal .table__col--right {
    padding: 16px 24px;
  }
}

.table__row--note .table__col--left {
  width: 100%;
  background: #ff005b !important;
  font-weight: 500;
  color: #ffffff;
}

.table__row--note .table__col--right {
  display: none;
}

.table--grey {
  background: #efefef;
}

.table--grey .table__row .table__col {
  background: #ffffff;
}

.table--grey .table__row--title .table__col--left {
  background: #3fa099;
}

.table--grey .table__row--normal .table__col {
  background: #ffffff;
}

.table--black {
  background: #030405;
}

.table--black .table__row .table__col {
  background: #ffffff;
}

.table--black .table__row--title .table__col--left {
  background: #3fa099;
}

.table--black .table__row--normal .table__col {
  background: #ffffff;
}

.table--primary {
  background: #ff005b;
}

.table--primary .table__row .table__col {
  background: #ffffff;
}

.table--primary .table__row--title .table__col--left {
  background: #3fa099;
}

.table--primary .table__row--normal .table__col {
  background: #ffffff;
}

.table--secondary {
  background: #3fa099;
}

.table--secondary .table__row .table__col {
  background: #ffffff;
}

.table--secondary .table__row--title .table__col--left {
  background: #ff005b;
}

.table--secondary .table__row--normal .table__col {
  background: #ffffff;
}

.table--secondary .table__row--note {
  border-left: 2px solid #ff005b;
}

.table--border .table__row {
  border: 2px solid #efefef;
}

.table--border .table__row .table__col {
  background: #ffffff;
}

.table--border .table__row .table__col--left {
  color: #ff005b;
  font-weight: 700;
}

.usp__slider .owl-stage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media only screen and (min-width: 1280px) {
  .usp__slider .owl-stage {
    display: inline-block;
  }
}

.usp__slide {
  padding: 0 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media only screen and (min-width: 640px) {
  .usp__slide {
    padding: 0 48px;
  }
}

@media only screen and (min-width: 1280px) {
  .usp__slide {
    padding: 0;
  }
}

.usp p {
  position: relative;
  padding: 48px 0 48px 64px;
  font-weight: 500;
}

.usp p:before {
  content: '';
  position: absolute;
  top: calc(50% - 20px);
  left: 0;
  width: 40px;
  height: 40px;
  border: 2px solid #ff005b;
  background-size: 16px 16px;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-transition: 0.25s background-image ease-in-out, 0.25s border ease-in-out;
  -o-transition: 0.25s background-image ease-in-out, 0.25s border ease-in-out;
  transition: 0.25s background-image ease-in-out, 0.25s border ease-in-out;
  background-image: url(../img/icons/check-regular-primary.svg);
  border-radius: 128px 128px 128px 128px;
}

.usp--grey {
  background: #efefef;
}

.usp--black {
  background: #030405;
  color: #ffffff;
}

.usp--black p:before {
  border: 2px solid #3fa099;
  background-image: url(../img/icons/check-regular-secondary.svg);
}

.usp--primary {
  background: #ff005b;
  color: #ffffff;
}

.usp--primary p:before {
  border: 2px solid #3fa099;
  background-image: url(../img/icons/check-regular-secondary.svg);
}

.usp--secondary {
  background: #3fa099;
  color: #ffffff;
}
