@charset "UTF-8";
@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  30% {
    -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg);
  }
  70% {
    -webkit-transform: rotate(10deg);
            transform: rotate(10deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
@keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  30% {
    -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg);
  }
  70% {
    -webkit-transform: rotate(10deg);
            transform: rotate(10deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
*, 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;
}

/**
 * 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;
  transition: height 250ms ease-in-out;
}

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-item .owl-lazy {
  opacity: 0;
  -webkit-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;
  transition: transform 100ms ease;
  transition: transform 100ms ease, -webkit-transform 100ms ease;
}

.owl-video-play-icon:hover {
  -webkit-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;
  transition: opacity 400ms ease;
}

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

/*!
 * 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: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-duration: calc(var(--animate-duration) / 2);
  animation-duration: calc(var(--animate-duration) / 2);
}

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

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

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

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

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

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
@keyframes pulse {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
.animate__pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

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

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

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

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

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

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

@-webkit-keyframes wobble {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate(-5deg);
    transform: translate3d(-25%, 0, 0) rotate(-5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate(3deg);
    transform: translate3d(20%, 0, 0) rotate(3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate(-3deg);
    transform: translate3d(-15%, 0, 0) rotate(-3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate(2deg);
    transform: translate3d(10%, 0, 0) rotate(2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate(-1deg);
    transform: translate3d(-5%, 0, 0) rotate(-1deg);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes wobble {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate(-5deg);
    transform: translate3d(-25%, 0, 0) rotate(-5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate(3deg);
    transform: translate3d(20%, 0, 0) rotate(3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate(-3deg);
    transform: translate3d(-15%, 0, 0) rotate(-3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate(2deg);
    transform: translate3d(10%, 0, 0) rotate(2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate(-1deg);
    transform: translate3d(-5%, 0, 0) rotate(-1deg);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes jello {
  0%, 11.1%, to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
@keyframes jello {
  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.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.animate__jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  transform-origin: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.animate__fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

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

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

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.animate__fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

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

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

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes flip {
  0% {
    -webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
    transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
    transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
    transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translateZ(0) rotateY(0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translateZ(0) rotateY(0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
    transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
@keyframes flip {
  0% {
    -webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
    transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
    transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
    transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translateZ(0) rotateY(0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translateZ(0) rotateY(0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
    transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
.animate__animated.animate__flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}

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

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

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

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

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

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

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

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

@-webkit-keyframes rotateIn {
  0% {
    -webkit-transform: rotate(-200deg);
    transform: rotate(-200deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}
@keyframes rotateIn {
  0% {
    -webkit-transform: rotate(-200deg);
    transform: rotate(-200deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}
.animate__rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
  -webkit-transform-origin: center;
  transform-origin: center;
}

@-webkit-keyframes rotateInDownLeft {
  0% {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}
@keyframes rotateInDownLeft {
  0% {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}
.animate__rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}

@-webkit-keyframes rotateInDownRight {
  0% {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}
@keyframes rotateInDownRight {
  0% {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}
.animate__rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}

@-webkit-keyframes rotateInUpLeft {
  0% {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}
@keyframes rotateInUpLeft {
  0% {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}
.animate__rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}

@-webkit-keyframes rotateInUpRight {
  0% {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}
@keyframes rotateInUpRight {
  0% {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}
.animate__rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}

@-webkit-keyframes rotateOut {
  0% {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate(200deg);
    transform: rotate(200deg);
    opacity: 0;
  }
}
@keyframes rotateOut {
  0% {
    opacity: 1;
  }
  to {
    -webkit-transform: rotate(200deg);
    transform: rotate(200deg);
    opacity: 0;
  }
}
.animate__rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
  -webkit-transform-origin: center;
  transform-origin: center;
}

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

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

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

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

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

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

@-webkit-keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate(-120deg);
    transform: translate3d(-100%, 0, 0) rotate(-120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate(-120deg);
    transform: translate3d(-100%, 0, 0) rotate(-120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.animate__rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

@-webkit-keyframes rollOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate(120deg);
    transform: translate3d(100%, 0, 0) rotate(120deg);
  }
}
@keyframes rollOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate(120deg);
    transform: translate3d(100%, 0, 0) rotate(120deg);
  }
}
.animate__rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}

@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  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;
  transform-origin: center bottom;
}

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

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

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

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

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

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

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

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

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

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

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

.button {
  display: inline-block;
  position: relative;
  width: auto;
  min-width: 240px;
  padding: 16px;
  text-align: center;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  margin: 0 0 48px 0;
  font-family: "Nunito", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 2;
  z-index: 1;
  text-align: center;
  color: #ffffff;
  background: #e7383e;
  border-radius: 16px 16px 16px 16px;
}
.button:active, .button:visited, .button:hover {
  color: #ffffff;
}
@media only screen and (min-width: 640px) {
  .button {
    padding: 16px 40px;
  }
}
.button:hover {
  -webkit-animation: none 0.5s 1;
          animation: none 0.5s 1;
  cursor: pointer;
  background: rgb(210.600896861, 25.399103139, 31.7488789238);
}

.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: rgba(1, 1, 1, 0.96);
  color: #ffffff;
  -webkit-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(1, 1, 1, 0.16);
          box-shadow: 0px 0px 16px 0px rgba(1, 1, 1, 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%);
          transform: translateY(100%);
  pointer-events: none;
}

button,
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],
select,
textarea,
label {
  font-family: "Nunito", sans-serif;
  font-size: 16px;
  color: #010101;
  letter-spacing: 0.6px;
  line-height: 2;
  font-weight: 400;
  padding: 0 16px;
  border: none;
  position: relative;
  -webkit-appearance: none;
  -webkit-appearance: button;
  border-radius: 16px 16px 16px 16px;
}

button {
  padding: 0;
}

.gform_wrapper .gform_validation_errors .validation_error {
  padding: 16px 0 16px 16px;
  border-left: 2px solid #e7383e;
  margin-bottom: 48px;
  color: #e7383e;
}

form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  /* respect gravity forms 2.5 layout editor */
  /* respect gravity forms 2.5 layout editor */
}
form input {
  width: 100%;
  height: 64px;
  line-height: 64px;
}
form textarea {
  display: block;
  width: 100%;
  padding: 16px;
  border: none;
  height: 144px;
}
form label {
  display: block;
  width: 100%;
  font-size: 12px;
  font-weight: 600;
  color: #e7383e;
  margin-bottom: 12px;
  padding: 0;
  -webkit-appearance: none;
}
form .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;
}
form .gfield {
  width: 100%;
}
@media only screen and (min-width: 1280px) {
  form .gfield--width-half {
    width: calc(50% - 24px);
  }
  form .gfield--width-third {
    width: calc(33.33333% - 32px);
  }
}
form .gform_body {
  margin-bottom: 72px;
}
form .gform_body *.gfield {
  margin-bottom: 24px;
}
form .gform_body *.gfield.hide {
  visibility: hidden;
  height: 0px;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
form .gform_body * .gfield_description {
  margin: -22px 0 24px 0;
  font-style: italic;
}
form .gform_body *.gfield_error label {
  color: #e7383e;
}
form .gform_body *.gfield_visibility_hidden {
  display: none;
}
form .gform_body *.gform_validation_container {
  display: none;
}
form .gform_body * .validation_message {
  display: none;
}
form .gform_body * .ginput_container_select {
  width: 100%;
  background: #ffffff;
  line-height: 64px;
  height: 64px;
  position: relative;
  border-radius: 16px 16px 16px 16px;
  overflow: hidden;
}
form .gform_body * .ginput_container_select select {
  width: 100%;
  height: 100%;
  font-family: "Nunito", sans-serif;
  font-size: 16px;
  color: #010101;
  padding: 0 16px;
  background: transparent;
  z-index: 1;
  text-align: left;
}
form .gform_body * .ginput_container_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: #005da4;
  z-index: 1;
  -webkit-transition: 0.25s all ease-in-out;
  transition: 0.25s all ease-in-out;
  border-radius: 16px 16px 16px 16px;
}
form .gform_body * .ginput_container_select:hover::after {
  background-color: rgb(0, 64.0792682927, 113);
}
form .gform_body * .ginput_container_select select:hover {
  cursor: pointer !important;
}
form .gform_body * .ginput_container_checkbox .gfield_checkbox {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0;
}
form .gform_body * .ginput_container_checkbox .gfield_checkbox li {
  position: relative;
  display: block;
  width: 100%;
  border-radius: 16px 16px 16px 16px;
  overflow: hidden;
  background: #ffffff;
}
form .gform_body * .ginput_container_checkbox .gfield_checkbox li:not(:first-of-type) {
  margin-top: 2px;
}
form .gform_body * .ginput_container_checkbox .gfield_checkbox li input {
  display: block;
  width: 64px;
  height: 64px;
  -webkit-appearance: none;
  -webkit-transition: 0.25s all ease-in-out;
  transition: 0.25s all ease-in-out;
  position: absolute;
  top: 0;
  left: 0;
}
form .gform_body * .ginput_container_checkbox .gfield_checkbox li input:after {
  content: "";
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  background-image: url(../img/icons/check-regular-white.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 16px 16px;
  background-color: rgb(213.5, 213.5, 213.5);
  -webkit-transition: 0.25s all ease-in-out;
  transition: 0.25s all ease-in-out;
  border-radius: 16px 16px 16px 16px;
}
form .gform_body * .ginput_container_checkbox .gfield_checkbox li input:checked:after {
  background-color: #005da4;
}
form .gform_body * .ginput_container_checkbox .gfield_checkbox li input:hover::after {
  background-color: #bcbcbc;
}
form .gform_body * .ginput_container_checkbox .gfield_checkbox li input:hover:checked:after {
  background-color: rgb(0, 64.0792682927, 113);
}
form .gform_body * .ginput_container_checkbox .gfield_checkbox li label {
  padding: 16px 16px 16px 64px;
  min-height: 64px;
  color: #010101;
  font-size: 16px;
  font-weight: 400;
  text-transform: initial;
  margin: 0;
}
form .gform_body * .ginput_container_checkbox .gfield_checkbox li label:hover {
  cursor: pointer;
}
form .gform_body * .ginput_container_total {
  width: 100%;
  height: 64px;
  line-height: 64px;
  padding: 0 16px;
  background: rgb(213.5, 213.5, 213.5);
  border-radius: 16px 16px 16px 16px;
}
form .gform_footer {
  position: relative;
  text-align: right;
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}
form .gform_footer .gform_ajax_spinner {
  width: 64px;
  height: 64px;
  padding: 24px;
  position: absolute;
  top: 50%;
  right: 4px;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  z-index: 99999;
}
@media only screen and (min-width: 1280px) {
  form .gform_footer .gform_ajax_spinner {
    bottom: 24px;
    right: 0px;
  }
}
form .gform_footer .button {
  margin: 0;
}

.slider {
  opacity: 0;
  -webkit-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-nav {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-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(1, 1, 1, 0.1);
  pointer-events: auto;
  -webkit-transition: 0.25s all ease-in-out;
  transition: 0.25s all ease-in-out;
  position: relative;
  border-radius: 100px 100px 100px 100px;
}
.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;
  transition: 0.25s background-image ease-in-out, 0.25s border ease-in-out;
  border-radius: 100px 100px 100px 100px;
}
.slider .owl-nav .owl-prev:hover,
.slider .owl-nav .owl-next:hover {
  background: #005da4;
}
.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(1, 1, 1, 0.1);
  margin: 0 8px 0 0;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  border-radius: 100px 100px 100px 100px;
}
.slider .owl-dots .owl-dot:last-child {
  margin: 0;
}
.slider .owl-dots .owl-dot.active {
  background: #005da4;
}
.slider .owl-dots .owl-dot:hover {
  background: #005da4;
}

html {
  background: #e7383e;
}

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

body {
  font-family: "Nunito", sans-serif;
  font-size: 16px;
  line-height: 2;
  font-weight: 400;
  color: #010101;
  letter-spacing: 0.6px;
  background: #ffffff;
}

.wrapper {
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
}
@media only screen and (min-width: 640px) {
  .wrapper {
    padding: 0 48px;
  }
}
@media only screen and (min-width: 1280px) {
  .wrapper {
    padding: 0 96px;
  }
}

h1,
h2 {
  color: #010101;
  font-size: 24px;
  line-height: 1.2;
  font-family: "Nunito", sans-serif;
  font-weight: 700;
  padding: 0 0 48px 0;
}
@media only screen and (min-width: 640px) {
  h1,
  h2 {
    font-size: 32px;
  }
}

h3 {
  color: #e7383e;
  font-size: 20px;
  line-height: 1.6;
  font-family: "Nunito", sans-serif;
  font-weight: 600;
  padding: 0 0 48px 0;
  position: relative;
  z-index: 1;
}
@media only screen and (min-width: 640px) {
  h3 {
    font-size: 24px;
  }
}

a, a:visited, a:active, a:focus {
  color: #e7383e;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
a:hover {
  color: rgb(0, 64.0792682927, 113);
}

p {
  padding: 0 0 48px 0;
}
p.dotdotdot {
  opacity: 0;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
p.dotdotdot.loaded {
  opacity: 1;
}

blockquote {
  position: relative;
  color: #005da4;
  font-style: italic;
  border-left: 2px solid #005da4;
  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: #e7383e;
}

em {
  color: rgb(111.5, 111.5, 111.5);
}

.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: "◦";
  position: absolute;
  left: 0;
  font-weight: 700;
  color: #005da4;
}
.wysiwyg ul li a, .wysiwyg ul li a:visited, .wysiwyg ul li a:active, .wysiwyg ul li a:focus {
  color: #005da4;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.wysiwyg ul li a:hover {
  color: rgb(0, 64.0792682927, 113);
}

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

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

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

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

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

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

::-moz-selection {
  background: rgb(213.5, 213.5, 213.5);
  text-shadow: none;
}

::selection {
  background: rgb(213.5, 213.5, 213.5);
  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;
  transition: background-color 5000s ease-in-out 0s;
}

.header {
  position: relative;
  z-index: 999;
}
.header__topmenu {
  background: #010101;
}
.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;
  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;
  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;
  transition: 0.25s all ease-in-out;
  border-radius: 100px 100px 100px 100px;
}
.header__topmenu .header__submenu ul li a:hover {
  cursor: pointer;
}
.header__topmenu .header__submenu ul li a:hover::before {
  border: 2px solid #005da4;
}
.header__topmenu .header__submenu ul li a:hover svg {
  color: #005da4;
}
@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;
  background: #ffffff;
  border-radius: 0 0 16px 16px;
  padding: 16px;
}
.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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header__mainmenu .header__menu .lang-switcher li:not(:last-of-type) {
  margin-right: 16px;
}
.header__mainmenu .header__menu .lang-switcher li a {
  text-transform: uppercase;
}
.header__mainmenu .header__menu .lang-switcher li.wpml-ls-current-language a, .header__mainmenu .header__menu .lang-switcher li:hover a {
  color: #010101;
}
.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;
  text-transform: capitalize;
}
.header__mainmenu .header__menu ul li:last-of-type {
  margin: 0;
}
.header__mainmenu .header__menu ul li a {
  color: rgba(1, 1, 1, 0.5);
  -webkit-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: #010101;
}
.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;
  transition: all 0.25s ease-in-out;
  font-family: "Nunito", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 2;
  z-index: 1;
  text-align: center;
  color: #ffffff;
  background: #e7383e;
  border-radius: 16px 16px 16px 16px;
}
.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 {
  -webkit-animation: none 0.5s 1;
          animation: none 0.5s 1;
  cursor: pointer;
  background: rgb(210.600896861, 25.399103139, 31.7488789238);
}
.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;
  transition: 0.25s all ease-in-out;
  line-height: 40px;
  color: #ffffff;
  white-space: nowrap;
}
.header__mainmenu .header__submenu ul li a svg {
  width: 40px;
  height: 40px;
  padding: 12px;
  position: absolute;
  top: 0;
  left: 0;
  color: #e7383e;
  -webkit-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 #e7383e;
  -webkit-transition: 0.25s all ease-in-out;
  transition: 0.25s all ease-in-out;
  border-radius: 100px 100px 100px 100px;
}
.header__mainmenu .header__submenu ul li a:hover {
  cursor: pointer;
}
.header__mainmenu .header__submenu ul li a:hover::before {
  border: 2px solid #005da4;
}
.header__mainmenu .header__submenu ul li a:hover svg {
  color: #005da4;
}
.header__mainmenu .header__submenu ul li a.phone {
  color: #010101;
}
@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: #005da4;
  z-index: 999;
  display: none;
  overflow: hidden;
  border-radius: 100px 100px 100px 100px;
  -webkit-box-shadow: 0px 0px 16px 0px rgba(1, 1, 1, 0.16);
          box-shadow: 0px 0px 16px 0px rgba(1, 1, 1, 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;
  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: rgb(0, 64.0792682927, 113);
}
.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);
          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: #010101;
  padding: 40px 16px 0 16px;
  overflow: auto;
  -webkit-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;
  transition: 0.25s all ease-in-out;
  line-height: 40px;
  color: #005da4;
  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;
  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;
  transition: 0.25s all ease-in-out;
  border-radius: 100px 100px 100px 100px;
}
.header__sidemenu .header__submenu ul li a:hover {
  cursor: pointer;
}
.header__sidemenu .header__submenu ul li a:hover::before {
  border: 2px solid #005da4;
}
.header__sidemenu .header__submenu ul li a:hover svg {
  color: #005da4;
}
.header__sidemenu .header__submenu ul li a.phone {
  color: #010101;
}
@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: #005da4;
}
.header__sidemenu .header__menu ul li a {
  color: #ffffff;
  font-family: "Nunito", sans-serif;
  -webkit-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 .sub-menu {
  display: none;
}
.header__searchmenu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: #efefef;
  overflow: auto;
  -webkit-transition: 0.5s right ease-in-out;
  transition: 0.5s 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;
}
@media only screen and (min-width: 1280px) {
  .header__searchmenu {
    width: 640px;
  }
}
.header__searchmenu.active {
  right: 0;
}
@media only screen and (min-width: 640px) {
  .header__searchmenu {
    padding: 32px 48px 0 48px;
  }
}
@media only screen and (min-width: 1280px) {
  .header__searchmenu {
    padding: 32px 96px 0 96px;
  }
}
.header__searchmenu .search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0;
  width: 100%;
  max-width: 280px;
  position: relative;
}
@media only screen and (min-width: 640px) {
  .header__searchmenu .search {
    max-width: 400px;
  }
}
.header__searchmenu .search__input {
  width: 100%;
  height: 48px;
}
@media only screen and (min-width: 640px) {
  .header__searchmenu .search__input {
    height: 64px;
  }
}
.header__searchmenu .search__input input {
  display: block;
  width: 100%;
  height: 100%;
  line-height: 48px;
  padding: 0 64px 0 16px;
  border: none;
  border-radius: 16px 16px 16px 16px;
}
@media only screen and (min-width: 640px) {
  .header__searchmenu .search__input input {
    height: 64px;
    padding: 0 80px 0 16px;
    border-radius: 16px 16px 16px 16px;
  }
}
.header__searchmenu .search__submit {
  position: absolute;
  top: 0;
  right: 0;
  width: 48px;
  height: 48px;
}
@media only screen and (min-width: 640px) {
  .header__searchmenu .search__submit {
    width: 64px;
    height: 64px;
  }
}
.header__searchmenu .search__submit svg {
  width: 48px;
  height: 48px;
  padding: 16px;
  position: absolute;
  top: 0;
  left: 0;
  color: #ffffff;
  -webkit-transition: 0.5s all ease-in-out;
  transition: 0.5s all ease-in-out;
}
@media only screen and (min-width: 640px) {
  .header__searchmenu .search__submit svg {
    width: 64px;
    height: 64px;
    padding: 22px;
  }
}
.header__searchmenu .search__submit input {
  display: block;
  height: 100%;
  width: 100%;
  background: #005da4;
  border: none;
  -webkit-transition: 0.25s all ease-in-out;
  transition: 0.25s all ease-in-out;
  border-radius: 16px 16px 16px 16px;
}
.header__searchmenu .search__submit:hover {
  cursor: pointer;
}
.header__searchmenu .search__submit:hover svg {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.header__searchmenu .search__submit:hover input {
  background: rgb(0, 64.0792682927, 113);
  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;
}
.header--home .header__menu .lang-switcher li.wpml-ls-current-language a, .header--home .header__menu .lang-switcher li:hover a {
  color: #ffffff;
}
.header--home .header__menu ul li a {
  color: rgba(255, 255, 255, 0.64);
}
.header--home .header__menu ul li.current-menu-item a, .header--home .header__menu ul li.current-menu-parent a, .header--home .header__menu ul li.current-menu-ancestor a, .header--home .header__menu ul li:hover a {
  color: #ffffff;
}
.header--home .header__submenu ul li a svg {
  color: #ffffff;
}
.header--home .header__submenu ul li a:before {
  border: 2px solid #e7383e;
}
.header--home .header__submenu ul li a:hover::before {
  border: 2px solid #005da4;
}
.header--home .header__submenu ul li a:hover svg {
  color: #ffffff;
}
.header--home .header__submenu ul li a.phone {
  color: #ffffff;
}
.header--home .header__submenu.menu-button ul {
  padding: 0 96px 0 0;
}
@media only screen and (min-width: 640px) {
  .header--home .header__submenu.menu-button ul {
    padding: 0 112px 0 0;
  }
}

.footer .footer__topmenu {
  background: #ffffff;
}
.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__logo p {
  display: none;
  padding: 20px 16px;
  font-weight: 700;
}
@media only screen and (min-width: 720px) {
  .footer .footer__topmenu .footer__logo p {
    display: block;
  }
}
.footer .footer__topmenu .footer__logo .logo {
  display: none;
}
@media only screen and (min-width: 480px) {
  .footer .footer__topmenu .footer__logo .logo {
    padding-left: 24px;
    display: block;
  }
}
@media only screen and (min-width: 720px) {
  .footer .footer__topmenu .footer__logo .logo {
    padding-left: 0;
  }
}
.footer .footer__topmenu .footer__logo .logo img {
  margin-top: -8px;
}
.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;
  transition: 0.25s all ease-in-out;
  line-height: 40px;
  color: #010101;
  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: #e7383e;
  -webkit-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 #e7383e;
  -webkit-transition: 0.25s all ease-in-out;
  transition: 0.25s all ease-in-out;
  border-radius: 100px 100px 100px 100px;
}
.footer .footer__topmenu .footer__social ul li a:hover {
  cursor: pointer;
}
.footer .footer__topmenu .footer__social ul li a:hover::before {
  border: 2px solid #005da4;
}
.footer .footer__topmenu .footer__social ul li a:hover svg {
  color: #005da4;
}
.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: #005da4;
}
.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;
  transition: 0.25s all ease-in-out;
  line-height: 40px;
  color: #010101;
  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;
  transition: 0.25s background-image ease-in-out, 0.25s border ease-in-out;
  border-radius: 100px 100px 100px 100px;
}
.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 #e7383e;
  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;
  }
}
.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%);
            transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border: 2px solid #ffffff;
    border-radius: 100px 100px 100px 100px;
  }
}
.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%);
            transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border: 2px solid #ffffff;
    border-radius: 100px 100px 100px 100px;
  }
}
.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%);
            transform: translateY(-50%);
    width: auto;
    height: auto;
    border: 0px;
    border-radius: 100px 100px 100px 100px;
  }
}

.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 0 48px 0;
  -webkit-transition: 0.25s all ease-in-out;
  transition: 0.25s all ease-in-out;
  width: 100%;
  position: relative;
}
@media only screen and (min-width: 1280px) {
  .card__item {
    width: 50%;
  }
}
@media only screen and (min-width: 1920px) {
  .card__item {
    width: 25%;
  }
}
.card__category {
  border-radius: 16px 16px 16px 16px;
  position: absolute;
  width: calc(100% - 32px);
  height: 64px;
  line-height: 64px;
  top: -24px;
  left: 16px;
  z-index: 1;
  color: #ffffff;
  text-align: center;
  font-weight: 700;
}
@media only screen and (min-width: 640px) {
  .card__category {
    width: calc(100% - 96px);
    left: 48px;
  }
}
.card__category svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 64px;
  height: 64px;
  padding: 10px;
  color: #ffffff;
}
.card__category--education {
  background: #ec7d10;
}
.card__category--necessaries {
  background: #ab43db;
}
.card__category--sport {
  background: #e1518d;
}
.card__category--housing {
  background: #ffbc0a;
}
.card__category--health {
  background: #58b455;
}
.card__image a img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.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: #005da4;
  pointer-events: none;
  -webkit-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: 100px 100px 100px 100px;
}
.card__image--video a:hover:after {
  background-color: rgb(0, 64.0792682927, 113);
}
.card__text {
  padding: 96px 16px 0 16px;
}
@media only screen and (min-width: 640px) {
  .card__text {
    padding: 96px 48px 0 48px;
  }
}
.card__text p {
  max-height: 480px;
}
.card__button {
  margin-top: auto;
  padding: 0 16px;
}
@media only screen and (min-width: 640px) {
  .card__button {
    padding: 0 48px;
  }
}
.card__load-more {
  margin-top: -48px;
  padding: 0 0 48px 0;
}
.card__load-more .button--disabled {
  background: #010101;
}
.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: #010101;
}
.card--black .card__load-more .button--disabled {
  background: #ffffff;
  color: #010101;
}
.card--black .card__load-more .button--disabled:hover {
  background: rgb(229.5, 229.5, 229.5);
}
.card--primary {
  background: #005da4;
}
.card--secondary {
  background: #e7383e;
}
.card--secondary .card__load-more .button--filled-secondary {
  background: #005da4;
}
.card--secondary .card__load-more .button--filled-secondary:hover {
  background: rgb(0, 64.0792682927, 113);
}
.card--secondary .card__load-more .button--disabled {
  background: #010101;
}
.card--secondary .card__load-more .button--disabled:hover {
  background: black;
}
.card--basic {
  padding: 96px 0 0 0;
}
.card--basic .card__image {
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  overflow: hidden;
}
.card--basic .card__item {
  background: #ffffff;
  margin: 0 0 96px 0;
  border-radius: 16px 16px 16px 16px;
}
@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--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: #005da4;
}
.card--mixed blockquote {
  border-left: 2px solid #005da4;
}
.card--mixed blockquote:before {
  background-image: url(../img/icons/quote-right-solid-primary.svg);
}
.card--mixed .card__item:nth-child(6n+1) {
  background: #005da4;
}
.card--mixed .card__item:nth-child(6n+2) {
  background: rgb(47.8, 122.2, 179);
}
.card--mixed .card__item:nth-child(6n+3) {
  background: #e7383e;
}
.card--mixed .card__item:nth-child(6n+4) {
  background: rgb(232.6, 92.6, 97.4);
}
.card--mixed .card__item:nth-child(6n+5) {
  background: #010101;
}
.card--mixed .card__item:nth-child(6n+6) {
  background: rgb(48.6, 48.6, 48.6);
}
@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: #010101;
}
.card--mixed .card__button .button--filled-secondary:hover {
  background: rgb(229.5, 229.5, 229.5);
}
@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;
  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: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-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;
  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__item {
    width: 33.3333333333%;
  }
}
@media only screen and (min-width: 1920px) {
  .card#three .card__item {
    width: 33.3333333333%;
  }
}
.card#three .card__text {
  padding: 96px 16px 0 16px;
}
.card#three .card__text h2 {
  font-size: 16px;
}
@media only screen and (min-width: 640px) {
  .card#three .card__text h2 {
    font-size: 20px;
  }
}
@media only screen and (min-width: 640px) {
  .card#three .card__text {
    padding: 96px 48px 0 48px;
  }
}
@media only screen and (min-width: 1280px) {
  .card#three .card__text {
    padding: 96px 48px 0 48px;
  }
}
.card#three-basic .card__item {
  margin: 0 0 144px 0px;
}
@media only screen and (min-width: 1280px) {
  .card#three-basic .card__item {
    margin: 0 0 166px 48px;
    width: calc(33.3333333333% - 32px);
  }
  .card#three-basic .card__item:nth-of-type(3n+1) {
    margin: 0 0 166px 0px;
  }
}
@media only screen and (min-width: 1920px) {
  .card#three-basic .card__item {
    margin: 0 0 166px 96px;
    width: calc(33.3333333333% - 64px);
  }
  .card#three-basic .card__item:nth-of-type(3n+1) {
    margin: 0 0 166px 0px;
  }
}
.card.project .card__item:nth-of-type(n+3) {
  display: none;
}
@media only screen and (min-width: 1280px) {
  .card.project .card__item:nth-of-type(n+3) {
    display: block;
  }
}

.content {
  padding: 96px 0 48px 0;
}
.content__button-container {
  width: 100%;
}
.content__button-container .wrapper {
  max-width: 960px;
}
@media only screen and (min-width: 1280px) {
  .content__button-container .wrapper {
    max-width: 1120px;
  }
}
.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: 960px;
}
@media only screen and (min-width: 1280px) {
  .content__file .wrapper {
    max-width: 1120px;
  }
}
.content__file a {
  display: block;
  margin: 0 0 2px 0;
  background: #005da4;
  position: relative;
  color: #ffffff;
  font-weight: 600;
  -webkit-transition: 0.25s all ease-in-out;
  transition: 0.25s all ease-in-out;
  padding: 16px 88px 16px 16px;
  z-index: 1;
  background: #e7383e;
  background-position: center left;
  background-size: 200%;
  border-radius: 16px 16px 16px 16px;
}
@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;
  transition: 0.25s all ease-in-out;
}
.content__file a:hover {
  cursor: pointer;
  background: rgb(210.600896861, 25.399103139, 31.7488789238);
}
.content__file a:hover svg {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.content__image {
  max-width: 1408px;
  margin: 0 auto 48px auto;
  padding: 0 64px;
}
@media only screen and (min-width: 1408px) {
  .content__image {
    overflow: hidden;
    border-radius: 16px 16px 16px 16px;
  }
}
.content__spacer--positive {
  height: 48px;
}
.content__spacer--negative {
  margin: -48px 0 0 0;
}
.content__text .wrapper {
  max-width: 960px;
}
@media only screen and (min-width: 1280px) {
  .content__text .wrapper {
    max-width: 1120px;
  }
}
@media only screen and (min-width: 1280px) {
  .content__text h2 {
    font-size: 48px;
  }
}
.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;
}
@media only screen and (min-width: 1280px) {
  .content__text-image .content__col--text h2 {
    font-size: 48px;
  }
}
.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: 16px 16px 16px 16px;
}
.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;
  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;
  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: #005da4;
  pointer-events: none;
  -webkit-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: 100px 100px 100px 100px;
}
.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: rgb(0, 64.0792682927, 113);
}
.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;
  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;
  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: #005da4;
  pointer-events: none;
  -webkit-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: 100px 100px 100px 100px;
}
.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: rgb(0, 64.0792682927, 113);
}
.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: #010101;
}
.content--black:before, .content--black:after {
  background: #010101;
}
.content--black h2, .content--black h3, .content--black p, .content--black li, .content--black em {
  color: #ffffff;
}
.content--primary {
  background: #e7383e;
}
.content--primary:before, .content--primary:after {
  background: #e7383e;
}
.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: #005da4;
}
.content--secondary:before, .content--secondary:after {
  background: #005da4;
}
.content--secondary h2, .content--secondary h3, .content--secondary p, .content--secondary li, .content--secondary em {
  color: #ffffff;
}
.content--secondary strong {
  color: #e7383e;
}
.content--secondary p a, .content--secondary li a {
  color: #e7383e;
}
.content--secondary p a:hover, .content--secondary li a:hover {
  color: rgb(210.600896861, 25.399103139, 31.7488789238);
}
.content--secondary ul li:before {
  color: #e7383e;
}
.content--secondary blockquote {
  border-left: 2px solid #e7383e;
}
.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;
}

.faq {
  padding: 96px 0 48px 0;
}
.faq .wrapper {
  max-width: 960px;
}
@media only screen and (min-width: 1280px) {
  .faq .wrapper {
    max-width: 1120px;
  }
}
.faq__container {
  margin: 0 0 2px 0;
}
.faq__container:last-of-type {
  margin: 0 0 48px 0;
}
.faq__container .faq__question {
  position: relative;
  background: #005da4;
  color: #ffffff;
  overflow: hidden;
  border-radius: 16px 16px 16px 16px;
}
.faq__container .faq__question p {
  display: block;
  position: relative;
  font-weight: 600;
  -webkit-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(#005da4), to(#e7383e));
  background: linear-gradient(to right, #005da4 0%, #e7383e 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;
  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);
          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 #005da4;
  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: #010101;
}
.faq--black h2, .faq--black h3, .faq--black p, .faq--black li, .faq--black em {
  color: #ffffff;
}
.faq--secondary {
  background: #005da4;
}
.faq--secondary .faq__question {
  background: #e7383e;
}
.faq--secondary .faq__question p:hover {
  background: rgb(210.600896861, 25.399103139, 31.7488789238);
}
.faq--secondary .faq__answer {
  border-left: 2px solid #e7383e;
}
.faq--secondary h2, .faq--secondary h3, .faq--secondary p, .faq--secondary li, .faq--secondary em {
  color: #ffffff;
}
.faq--secondary strong {
  color: #e7383e;
}
.faq--secondary p a, .faq--secondary li a {
  color: #e7383e;
}
.faq--secondary p a:hover, .faq--secondary li a:hover {
  color: rgb(210.600896861, 25.399103139, 31.7488789238);
}
.faq--secondary ul li:before {
  color: #e7383e;
}
.faq--secondary blockquote {
  border-left: 2px solid #e7383e;
}
.faq--secondary blockquote:before {
  background-image: url(../img/icons/quote-right-solid-primary.svg);
}
.faq--primary {
  background: #e7383e;
}
.faq--primary h2, .faq--primary h3, .faq--primary p, .faq--primary li, .faq--primary em {
  color: #ffffff;
}

.form {
  padding: 96px 0 96px 0;
}
.form .wrapper {
  max-width: 1120px;
}
@media only screen and (min-width: 1280px) {
  .form__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .form__container .form__left {
    width: calc(50% - 48px);
    margin: 0 96px 0 0;
  }
  .form__container .form__right {
    width: calc(50% - 48px);
  }
  .form__container .form__textarea--1 textarea {
    height: 64px;
  }
  .form__container .form__textarea--2 textarea {
    height: 200px;
  }
  .form__container .form__textarea--3 textarea {
    height: 336px;
  }
  .form__container .form__textarea--4 textarea {
    height: 472px;
  }
  .form__container .form__textarea--5 textarea {
    height: 608px;
  }
  .form__container .form__textarea--6 textarea {
    height: 744px;
  }
  .form__container .form__textarea--7 textarea {
    height: 880px;
  }
  .form__container .form__textarea--8 textarea {
    height: 1016px;
  }
}
.form--white form input,
.form--white form textarea {
  background: #efefef;
}
.form--white form .gform_body li .ginput_container.ginput_container_select {
  background: #efefef;
}
.form--white form .gform_body li .ginput_container.ginput_container_checkbox ul li {
  background: #efefef;
}
.form--grey {
  background: #efefef;
}
.form--black {
  background: #010101;
}
.form--black form label,
.form--black form .gfield_description,
.form--black form .validation_error {
  color: #ffffff;
}
.form--primary {
  background: #005da4;
}
.form--primary form .gfield_html,
.form--primary form .gfield_html * {
  color: #ffffff;
}
.form--primary form .gfield_description,
.form--primary form .gfield_description * {
  color: #ffffff;
}
.form--primary form .gfield_label {
  color: #ffffff;
}
.form--primary form .ginput_container.ginput_container_select::after {
  background-color: #e7383e;
}
.form--primary form .ginput_container.ginput_container_select:hover::after {
  background-color: rgb(210.600896861, 25.399103139, 31.7488789238);
}
.form--primary form .ginput_container.ginput_container_checkbox .gfield_checkbox li input:checked::after {
  background-color: #e7383e;
}
.form--primary form .ginput_container.ginput_container_checkbox .gfield_checkbox li input:hover:checked:after {
  background-color: rgb(210.600896861, 25.399103139, 31.7488789238);
}
.form--primary form .gform_footer .button {
  background: #e7383e;
}
.form--primary form .gform_footer .button:hover {
  background: rgb(210.600896861, 25.399103139, 31.7488789238);
}
.form--secondary {
  background: #e7383e;
}
.form--secondary form .gfield_html,
.form--secondary form .gfield_html * {
  color: #ffffff;
}
.form--secondary form .gfield_description,
.form--secondary form .gfield_description * {
  color: #ffffff;
}
.form--secondary form .gfield_label {
  color: #ffffff;
}
.form--secondary form .gform_footer .button {
  background: #005da4;
}
.form--secondary form .gform_footer .button:hover {
  background: rgb(0, 64.0792682927, 113);
}
.form#form-hearts {
  position: relative;
  overflow: hidden;
}
.form#form-hearts:before {
  content: "";
  position: absolute;
  background-image: url("../img/achtergrond-wit-open-hartjes.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.16;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.hero {
  position: relative;
  margin-top: -128px;
  height: 100vh;
}
.hero:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 20vh;
  width: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(1, 1, 1, 0.75)), to(transparent));
  background: linear-gradient(to bottom, rgba(1, 1, 1, 0.75) 0%, transparent);
  z-index: 99;
}
.hero__slider .hero__container {
  height: 100vh;
  min-height: 640px;
}
.hero__slider .hero__container--top {
  height: 100vh;
}
.hero__slider .hero__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
}
.hero__slider .hero__image:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(1, 1, 1, 0)), color-stop(50%, rgba(1, 1, 1, 0.5)), to(rgba(1, 1, 1, 0.25)));
  background: linear-gradient(to bottom, rgba(1, 1, 1, 0) 0%, rgba(1, 1, 1, 0.5) 50%, rgba(1, 1, 1, 0.25) 100%);
}
.hero__slider .hero__text {
  width: 100%;
  height: 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;
  padding: 48px 0 0 0;
}
@media only screen and (min-width: 640px) {
  .hero__slider .hero__text {
    width: 60%;
  }
}
.hero__slider .hero__text h1 {
  color: #ffffff;
  font-size: 32px;
}
@media only screen and (min-width: 640px) {
  .hero__slider .hero__text h1 {
    font-size: 48px;
  }
}
@media only screen and (min-width: 1280px) {
  .hero__slider .hero__text h1 {
    font-size: 64px;
  }
}
.hero__slider .hero__text h3 {
  color: #ffffff;
  margin-top: -40px;
}
.hero__slider .owl-nav {
  top: auto;
  bottom: 0px;
  display: none;
}
.hero__slider .owl-dots {
  bottom: 96px;
  display: none;
}
@media only screen and (min-width: 640px) {
  .hero__slider .owl-dots {
    bottom: 64px;
  }
}
.hero__scroll-button {
  position: absolute;
  bottom: 0;
  right: 16px;
  width: 48px;
  height: 48px;
  background: #005da4;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  z-index: 899;
  margin: 40px 0;
  border-radius: 100px 100px 100px 100px;
}
@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;
  transition: 0.25s all ease-in-out;
}
.hero__scroll-button:hover {
  cursor: pointer;
  background: rgb(0, 64.0792682927, 113);
}
.hero__scroll-button:hover svg {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.intro {
  padding: 96px 0 48px 0;
  position: relative;
}
.intro .wrapper {
  max-width: 800px;
}
@media only screen and (min-width: 1280px) {
  .intro .wrapper {
    max-width: 1120px;
  }
}
.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: #010101;
}
.intro__title--black h1 {
  color: #ffffff;
}
.intro__title--primary {
  padding: 96px 0 48px 0;
  margin: -96px 0 96px 0;
  background: #005da4;
}
.intro__title--primary h1 {
  color: #ffffff;
}
.intro__title--secondary {
  padding: 96px 0 48px 0;
  margin: -96px 0 96px 0;
  background: #e7383e;
}
.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(1, 1, 1, 0.25)), color-stop(40%, rgba(1, 1, 1, 0.5)), to(rgba(1, 1, 1, 0.25)));
  background: linear-gradient(to bottom right, rgba(1, 1, 1, 0.25) 0%, rgba(1, 1, 1, 0.5) 40%, rgba(1, 1, 1, 0.25) 100%);
}
.intro__title--image h1 {
  color: #ffffff;
}
.intro__text {
  text-align: center;
  font-weight: 600;
}
@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;
}

#home-intro:after {
  content: "";
  position: absolute;
  bottom: -32px;
  right: 8%;
  width: 64px;
  height: 64px;
  background: url("../img/blauw-hartje.png");
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-transform: rotate(10deg);
          transform: rotate(10deg);
}
#home-intro:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 10%;
  width: 80%;
  border-bottom: 1px solid #005da4;
}

.map {
  position: relative;
  overflow: hidden;
}
.map__map {
  position: absolute;
  top: 0;
  left: 0;
  height: calc(100% + 96px);
  width: 100%;
}
.map__map svg {
  color: #005da4;
}
.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: #005da4;
  background: -webkit-gradient(linear, left top, right top, from(#005da4), to(rgba(0, 93, 164, 0.75)));
  background: linear-gradient(to right, #005da4 0%, rgba(0, 93, 164, 0.75) 100%);
  margin: 96px 0;
  border-radius: 16px 16px 16px 16px;
}
@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: #005da4;
  }
}
@media only screen and (min-width: 1920px) {
  .map__content {
    max-width: calc(25% - 72px);
    background: #005da4;
  }
}
.map__content h2 {
  padding: 0 0 24px 0;
  color: #010101;
}
.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;
  transition: 0.25s all ease-in-out;
  line-height: 40px;
  color: #010101;
  white-space: nowrap;
  color: #ffffff;
  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;
  transition: 0.25s background-image ease-in-out, 0.25s border ease-in-out;
  border-radius: 100px 100px 100px 100px;
}
.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;
  transition: 0.25s all ease-in-out;
}
.map__content ul li a:hover svg {
  color: #e7383e;
}
.map__content ul li a:hover:before {
  border: 2px solid #e7383e;
  cursor: pointer;
}
.open {
  padding: 96px 0 96px 0;
}
.open .wrapper {
  max-width: 960px;
}
@media only screen and (min-width: 1280px) {
  .open .wrapper {
    max-width: 1120px;
  }
}
.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: 16px 16px 16px 16px;
}
.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: #010101;
}
.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: #005da4;
  color: #ffffff;
  font-weight: 600;
  border-radius: 16px 16px 16px 16px;
}
.open--grey {
  background: #efefef;
}
.open--grey ul li {
  background: #ffffff;
}
.open--black {
  background: #010101;
}
.open--black ul li {
  background: #ffffff;
}
.open--primary {
  background: #e7383e;
}
.open--primary ul li {
  background: #ffffff;
}
.open--secondary {
  background: #005da4;
}
.open--secondary ul li {
  background: #ffffff;
}
.open--secondary ul li span {
  background: #e7383e;
}

.reference {
  padding: 96px 0 96px 0;
}
.reference .wrapper {
  max-width: 960px;
}
@media only screen and (min-width: 1280px) {
  .reference .wrapper {
    max-width: 1120px;
  }
}
.reference__slider .owl-nav {
  position: relative;
  -webkit-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 #e7383e;
  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 #005da4;
  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;
  transition: 0.25s all ease-in-out;
  line-height: 40px;
  color: #010101;
  white-space: nowrap;
  color: #010101;
  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;
  transition: 0.25s background-image ease-in-out, 0.25s border ease-in-out;
  border-radius: 100px 100px 100px 100px;
}
.reference__rating ul li:hover:before {
  cursor: pointer;
}
.reference__rating--1 ul li:nth-of-type(-n+1):before {
  border: 2px solid #e7383e;
  background-image: url(../img/icons/star-regular-primary.svg);
}
.reference__rating--2 ul li:nth-of-type(-n+2):before {
  border: 2px solid #e7383e;
  background-image: url(../img/icons/star-regular-primary.svg);
}
.reference__rating--3 ul li:nth-of-type(-n+3):before {
  border: 2px solid #e7383e;
  background-image: url(../img/icons/star-regular-primary.svg);
}
.reference__rating--4 ul li:nth-of-type(-n+4):before {
  border: 2px solid #e7383e;
  background-image: url(../img/icons/star-regular-primary.svg);
}
.reference__rating--5 ul li:nth-of-type(-n+5):before {
  border: 2px solid #e7383e;
  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: 100px 100px 100px 100px;
}
.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: 600;
  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;
  transition: 0.25s all ease-in-out;
  line-height: 40px;
  color: #010101;
  white-space: nowrap;
  color: #010101;
  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 #e7383e;
  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;
  transition: 0.25s background-image ease-in-out, 0.25s border ease-in-out;
  border-radius: 100px 100px 100px 100px;
}
.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 #005da4;
  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%);
            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);
          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%);
            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 rgb(213.5, 213.5, 213.5);
  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 #e7383e;
  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 #e7383e;
  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 #e7383e;
  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 #e7383e;
  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 #e7383e;
  background-image: url(../img/icons/star-regular-primary.svg);
}
.reference--black {
  background: #010101;
}
.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 #005da4;
  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 #005da4;
  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 #005da4;
  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 #005da4;
  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 #005da4;
  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 #005da4;
  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 #005da4;
}
.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: #010101;
  background: #ffffff;
}
.reference--black .button--filled-black:hover {
  background: rgb(229.5, 229.5, 229.5);
}
.reference--primary {
  background: #e7383e;
}
.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 #005da4;
  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 #005da4;
  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 #005da4;
  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 #005da4;
  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 #005da4;
  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 #005da4;
  background-image: url(../img/icons/star-regular-secondary.svg);
}
.reference--primary .reference__person .reference__info h3 {
  color: #005da4;
}
.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 #005da4;
}
.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: #005da4;
}
.reference--primary .button--filled-primary:hover {
  background: rgb(0, 64.0792682927, 113);
}
.reference--secondary {
  background: #005da4;
}
.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 #e7383e;
  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 #e7383e;
  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 #e7383e;
  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 #e7383e;
  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 #e7383e;
  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 #e7383e;
  background-image: url(../img/icons/star-regular-primary.svg);
}
.reference--secondary .reference__person .reference__info h3 {
  color: #e7383e;
}
.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 #e7383e;
}
.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: #e7383e;
}
.reference--secondary p a, .reference--secondary li a {
  color: #e7383e;
}
.reference--secondary p a:hover, .reference--secondary li a:hover {
  color: rgb(210.600896861, 25.399103139, 31.7488789238);
}
.reference--secondary ul li:before {
  color: #e7383e;
}
.reference--secondary blockquote {
  border-left: 2px solid #e7383e;
}
.reference--secondary blockquote:before {
  background-image: url(../img/icons/quote-right-solid-primary.svg);
}
.reference--secondary .button--filled-secondary {
  background: #e7383e;
}
.reference--secondary .button--filled-secondary:hover {
  background: rgb(210.600896861, 25.399103139, 31.7488789238);
}
.reference--secondary .reference__file a {
  background: #e7383e;
}
.reference--secondary .reference__file a:hover {
  background: rgb(210.600896861, 25.399103139, 31.7488789238);
}

.search {
  padding: 96px 0 48px;
}
.search .wrapper {
  max-width: 960px;
}
@media only screen and (min-width: 1280px) {
  .search .wrapper {
    max-width: 1120px;
  }
}
.search h2 span {
  color: #e7383e;
}
.search h3 {
  margin-top: -40px;
}
.search a {
  display: block;
  margin: 0 0 2px 0;
  background: #005da4;
  position: relative;
  color: #ffffff;
  font-weight: 600;
  -webkit-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(#005da4), to(#e7383e));
  background: linear-gradient(to right, #005da4 0%, #e7383e 100%);
  background-position: center left;
  background-size: 200%;
  text-align: left;
  border-radius: 16px 16px 16px 16px;
}
@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;
  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);
          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: #010101;
}
.search--black h2, .search--black p {
  color: #ffffff;
}
.search--primary {
  background: #e7383e;
}
.search--primary h2, .search--primary p {
  color: #ffffff;
}
.search--secondary {
  background: #005da4;
}
.search--secondary h2, .search--secondary p {
  color: #ffffff;
}
.search--secondary strong {
  color: #e7383e;
}
.search--secondary a {
  background: #e7383e;
}
.search--secondary a:hover {
  background: rgb(210.600896861, 25.399103139, 31.7488789238);
}
.search--left {
  text-align: left;
}
.search--center {
  text-align: center;
}

.spacer--white {
  background: #ffffff;
}
.spacer--grey {
  background: #efefef;
}
.spacer--black {
  background: #010101;
}
.spacer--primary {
  background: #e7383e;
}
.spacer--secondary {
  background: #005da4;
}
.spacer--positive {
  height: 96px;
}
.spacer--negative {
  margin-top: -96px;
}

.table {
  padding: 96px 0 48px 0;
}
.table .wrapper {
  max-width: 960px;
}
@media only screen and (min-width: 1280px) {
  .table .wrapper {
    max-width: 1120px;
  }
}
.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: 16px 16px 16px 16px;
}
.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: #005da4;
  font-weight: 600;
  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: 600;
  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: #e7383e !important;
  font-weight: 600;
  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: #005da4;
}
.table--grey .table__row--normal .table__col {
  background: #ffffff;
}
.table--black {
  background: #010101;
}
.table--black .table__row .table__col {
  background: #ffffff;
}
.table--black .table__row--title .table__col--left {
  background: #005da4;
}
.table--black .table__row--normal .table__col {
  background: #ffffff;
}
.table--primary {
  background: #e7383e;
}
.table--primary .table__row .table__col {
  background: #ffffff;
}
.table--primary .table__row--title .table__col--left {
  background: #005da4;
}
.table--primary .table__row--normal .table__col {
  background: #ffffff;
}
.table--secondary {
  background: #005da4;
}
.table--secondary .table__row .table__col {
  background: #ffffff;
}
.table--secondary .table__row--title .table__col--left {
  background: #e7383e;
}
.table--secondary .table__row--normal .table__col {
  background: #ffffff;
}
.table--secondary .table__row--note {
  border-left: 2px solid #e7383e;
}

.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: 600;
}
.usp p:before {
  content: "";
  position: absolute;
  top: calc(50% - 20px);
  left: 0;
  width: 40px;
  height: 40px;
  border: 2px solid #e7383e;
  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;
  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: 100px 100px 100px 100px;
}
.usp--grey {
  background: #efefef;
}
.usp--black {
  background: #010101;
  color: #ffffff;
}
.usp--black p:before {
  border: 2px solid #005da4;
  background-image: url(../img/icons/check-regular-secondary.svg);
}
.usp--primary {
  background: #e7383e;
  color: #ffffff;
}
.usp--primary p:before {
  border: 2px solid #005da4;
  background-image: url(../img/icons/check-regular-secondary.svg);
}
.usp--secondary {
  background: #005da4;
  color: #ffffff;
}