/*!*************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./node_modules/animate.css/animate.css ***!
  \*************************************************************************************************************************************************************************/
/*!
* animate.css - https://animate.style/
* Version - 4.1.1
* Licensed under the MIT license - http://opensource.org/licenses/MIT
*
* Copyright (c) 2020 Animate.css
*/
:root {
  --animate-duration: 1s;
  --animate-delay: 1s;
  --animate-repeat: 1;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.animate__heartBeat {
  -webkit-animation-name: heartBeat;
  animation-name: heartBeat;
  -webkit-animation-duration: 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;
}

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

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

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

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

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

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

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

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

/* Bouncing entrances  */
@-webkit-keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.animate__bounceIn {
  -webkit-animation-duration: 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 {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0) scaleY(3);
    transform: translate3d(0, -3000px, 0) scaleY(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0) scaleY(0.9);
    transform: translate3d(0, 25px, 0) scaleY(0.9);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.95);
    transform: translate3d(0, -10px, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0) scaleY(0.985);
    transform: translate3d(0, 5px, 0) scaleY(0.985);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0) scaleY(3);
    transform: translate3d(0, -3000px, 0) scaleY(3);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0) scaleY(0.9);
    transform: translate3d(0, 25px, 0) scaleY(0.9);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.95);
    transform: translate3d(0, -10px, 0) scaleY(0.95);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0) scaleY(0.985);
    transform: translate3d(0, 5px, 0) scaleY(0.985);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

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

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

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

/* Bouncing exits  */
@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.animate__bounceOut {
  -webkit-animation-duration: 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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.animate__flipOutX {
  -webkit-animation-duration: 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 {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
.animate__flipOutY {
  -webkit-animation-duration: 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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Specials */
@-webkit-keyframes hinge {
  0% {
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
@keyframes hinge {
  0% {
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.animate__hinge {
  -webkit-animation-duration: 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 {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }
  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }
  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.animate__jackInTheBox {
  -webkit-animation-name: jackInTheBox;
  animation-name: jackInTheBox;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.animate__slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}
/*!******************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/scss/app.scss ***!
  \******************************************************************************************************************************************************/
@charset "UTF-8";
/* Core variables */
/**
 * Variables
*/
/* Typography */
/* Breakpoints */
/* Paths */
/* Grid setup */
/* Colour palette */
/* Components */
/* CSS Reset */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  border: none;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

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

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary,
main {
  display: block;
}

audio,
canvas,
video {
  display: inline-block;
}

body {
  margin: 0;
}

ul {
  list-style-type: none;
}

a {
  background: transparent;
  text-decoration: none;
}

button,
input {
  line-height: normal;
}

input[type=search] {
  -webkit-appearance: textfield;
}

input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
  vertical-align: top;
}

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

textarea:focus,
input:focus {
  outline: 0;
}

input {
  margin: 0;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

/* CSS print */
/**
 * Print Stylesheet
*/
@media print {
  @page {
    margin: 1cm;
  }
  body {
    background: #fff;
    color: #000;
  }
  a {
    page-break-inside: avoid;
  }
  blockquote {
    page-break-inside: avoid;
  }
  table,
  pre {
    page-break-inside: avoid;
  }
  ul, ol, dl {
    page-break-before: avoid;
  }
}
/* Fonts */
/**
 * Fonts
*/
@font-face {
  font-family: "Larsseit";
  src: url(../images/design/Larsseit.44cd92.eot);
  src: url(../images/design/Larsseit.44cd92.eot?#iefix) format("embedded-opentype"), url(../images/design/Larsseit.1a1ca1.woff2) format("woff2"), url(../images/design/Larsseit.5a085f.woff) format("woff"), url(../images/design/Larsseit.14690e.ttf) format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Sreda";
  src: url(../images/design/Sreda.0c89de.eot);
  src: url(../images/design/Sreda.0c89de.eot?#iefix) format("embedded-opentype"), url(../images/design/Sreda.6e06fa.woff2) format("woff2"), url(../images/design/Sreda.f95c83.woff) format("woff"), url(../images/design/Sreda.72ae38.ttf) format("truetype"), url(../images/design/Sreda.458665.svg#Sreda) format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
/* Mixins, helpers and functions */
/**
 * Helper mixins
*/
/* Vendor */
*,
html {
  line-height: 1.5;
  color: #00185C;
  font-family: "Larsseit", sans-serif;
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
}

h1,
.h1 {
  font-size: 60px;
  line-height: 1;
}
@media all and (min-width: 768px) {
  h1,
  .h1 {
    font-size: 60px;
  }
}
@media all and (max-width: 500px) {
  h1,
  .h1 {
    font-size: 48px;
  }
}

h2,
.h2 {
  font-size: 40px;
  line-height: 40px;
}
@media all and (min-width: 768px) {
  h2,
  .h2 {
    font-size: 48px;
    line-height: 56px;
  }
}

h3,
.h3 {
  font-size: 24px;
}
@media all and (min-width: 768px) {
  h3,
  .h3 {
    font-size: 40px;
  }
}

h4,
.h4 {
  font-size: 20px;
}
@media all and (min-width: 768px) {
  h4,
  .h4 {
    font-size: 32px;
  }
}

h5,
.h5 {
  font-size: 20px;
  line-height: 24px;
}
@media all and (min-width: 768px) {
  h5,
  .h5 {
    font-size: 24px;
    line-height: 32px;
  }
}

h6,
.h6 {
  font-size: 16px;
}
@media all and (min-width: 768px) {
  h6,
  .h6 {
    font-size: 20px;
  }
}

p {
  font-size: 12px;
  margin-bottom: 24px;
}
@media all and (min-width: 768px) {
  p {
    font-size: 16px;
  }
}

a {
  color: #00185C;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

:root {
  --animate-delay: 0.5s;
  --animate-duration: 400ms;
}

*,
html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Larsseit", sans-serif !important;
  background: #EFF8FF url(../images/design/grain.37bb79.png);
}
body.body-hidden {
  overflow-y: hidden;
  height: 100%;
  bottom: 0;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
}

.shadow, .talk, .gallery-block, .history, .bg-holder, .intro, .support, .news, .donated, .hero-holder, .drop-bg {
  position: relative;
}
.shadow:after, .talk:after, .gallery-block:after, .history:after, .bg-holder:after, .intro:after, .support:after, .news:after, .donated:after, .hero-holder:after, .drop-bg:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: url("../images/design/Homepage%20&%20About%20(So%20far%20we%20raised).19b1f6.png");
}

.wow {
  visibility: hidden;
}

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

.ml6 .word {
  position: relative;
  display: inline-block;
}

.ml6 .letter {
  display: inline-block;
}

.container {
  max-width: 1280px;
  padding: 72px 20px;
  margin: 0 auto;
}
.container.big-indent {
  padding: 106px 20px;
}
@media all and (max-width: 767px) {
  .container {
    padding: 40px 20px;
  }
  .container.big-indent {
    padding: 40px 20px;
  }
}

.content-area {
  max-width: 820px;
}

.flex-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media all and (max-width: 980px) {
  .flex-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.left-col {
  width: 40%;
}
@media all and (max-width: 980px) {
  .left-col {
    width: 100%;
    margin-bottom: 24px;
  }
}

.right-col {
  width: 48%;
}
@media all and (max-width: 980px) {
  .right-col {
    width: 100%;
  }
}

.centered {
  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;
}
@media all and (max-width: 767px) {
  .centered.mobile-align-left {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .centered.mobile-align-left p,
  .centered.mobile-align-left .h2 {
    text-align: left;
  }
}

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

@media all and (max-width: 767px) {
  .xs-hidden {
    display: none !important;
  }
}

.mt-60 {
  margin-top: -60px !important;
}

.blue-color {
  color: #013AC5;
}

.top-indent, .about-hero, .hero, .vh100 {
  padding: 140px 20px 70px;
}
@media all and (max-width: 980px) {
  .top-indent, .about-hero, .hero, .vh100 {
    padding-bottom: 1px;
  }
}
@media all and (max-width: 767px) {
  .top-indent, .about-hero, .hero, .vh100 {
    padding: 100px 20px 0;
  }
}

.vh100 {
  height: 100vh;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media all and (max-width: 980px) {
  .vh100 {
    height: auto;
  }
}

.btn, .slick-arrow, .btn-fill, .btn-outline {
  padding: 12px 40px;
  border: 1px solid #00185C;
  border-radius: 64px;
  font-size: 14px;
  font-weight: 700;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  background: none;
  text-transform: uppercase;
  cursor: pointer;
}
.btn:hover, .slick-arrow:hover, .btn-fill:hover, .btn-outline:hover {
  background-color: #EFF8FF;
  border: 1px solid transparent;
  letter-spacing: 2px;
  text-decoration: none;
}
.btn.active, .active.slick-arrow, .active.btn-fill, .active.btn-outline, .btn:focus, .slick-arrow:focus, .btn-fill:focus, .btn-outline:focus {
  border: 1px solid #00185C;
}
.btn.disabled, .disabled.slick-arrow, .disabled.btn-fill, .disabled.btn-outline {
  color: #A8A8A8;
  border: 1px solid #A8A8A8;
  pointer-events: none;
  background: none;
}
.btn-outline:hover {
  background: none;
  border: 1px solid #00185C;
}
.btn-outline.active, .btn-outline:focus {
  background-color: #EFF8FF;
}
.btn-fill {
  color: #fff;
  background: #00185C;
  border: 1px solid #00185C;
}
.btn-fill:hover {
  background: #013AC5;
  border: 1px solid #013AC5;
}
.btn-fill.active, .btn-fill:focus {
  background: #EFF8FF;
  border: 1px solid #00185C;
  color: #00185C;
}
.btn-fill.disabled {
  background: #A8A8A8;
  color: #fff;
  pointer-events: none;
}

.hover-state, .gallery-nav-item span, .policy a, .show-more, .filters-list li a, .support .filter-nav li a, .filters a, .nav li a:not(.btn):not(.btn-outline):not(.btn-fill):not(.slick-arrow), .logo, .tab a, .select-styled {
  position: relative;
  -webkit-transition: all 250ms ease-in-out;
  transition: all 250ms ease-in-out;
}
.hover-state:after, .gallery-nav-item span:after, .policy a:after, .show-more:after, .filters-list li a:after, .support .filter-nav li a:after, .filters a:after, .nav li a:not(.btn):not(.btn-outline):not(.btn-fill):not(.slick-arrow):after, .logo:after, .tab a:after, .select-styled:after {
  display: block;
  content: "";
  border-bottom: solid 1px #00185C;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: -webkit-transform 250ms ease-in-out;
  transition: -webkit-transform 250ms ease-in-out;
  transition: transform 250ms ease-in-out;
  transition: transform 250ms ease-in-out, -webkit-transform 250ms ease-in-out;
}
.hover-state.active, .gallery-nav-item span.active, .policy a.active, .active.show-more, .filters-list li a.active, .support .filter-nav li a.active, .filters a.active, .nav li a.active:not(.btn):not(.btn-outline):not(.btn-fill):not(.slick-arrow), .active.logo, .tab a.active, .active.select-styled, .hover-state:hover, .gallery-nav-item span:hover, .policy a:hover, .show-more:hover, .filters-list li a:hover, .support .filter-nav li a:hover, .filters a:hover, .nav li a:hover:not(.btn):not(.btn-outline):not(.btn-fill):not(.slick-arrow), .logo:hover, .tab a:hover, .select-styled:hover {
  letter-spacing: 2px;
  text-decoration: none;
  font-weight: 700;
}
.hover-state.active:after, .gallery-nav-item span.active:after, .policy a.active:after, .active.show-more:after, .filters-list li a.active:after, .support .filter-nav li a.active:after, .filters a.active:after, .nav li a.active:not(.btn):not(.btn-outline):not(.btn-fill):not(.slick-arrow):after, .active.logo:after, .tab a.active:after, .active.select-styled:after, .hover-state:hover:after, .gallery-nav-item span:hover:after, .policy a:hover:after, .show-more:hover:after, .filters-list li a:hover:after, .support .filter-nav li a:hover:after, .filters a:hover:after, .nav li a:hover:not(.btn):not(.btn-outline):not(.btn-fill):not(.slick-arrow):after, .logo:hover:after, .tab a:hover:after, .select-styled:hover:after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.hover-state.active:after, .gallery-nav-item span.active:after, .policy a.active:after, .active.show-more:after, .filters-list li a.active:after, .support .filter-nav li a.active:after, .filters a.active:after, .nav li a.active:not(.btn):not(.btn-outline):not(.btn-fill):not(.slick-arrow):after, .active.logo:after, .tab a.active:after, .active.select-styled:after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

.italic {
  font-style: italic;
}

@-webkit-keyframes border_anim {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}

@keyframes border_anim {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
.bounceInDown {
  opacity: 0;
  -webkit-animation: bounceInDown 1s;
  animation: bounceInDown 1s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.fadeInDown {
  opacity: 0;
  -webkit-animation: fadeInDown 1s;
  animation: fadeInDown 1s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@-webkit-keyframes bounceInDown {
  0%, 60%, 75%, 90%, 100% {
    -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);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    opacity: 1;
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    opacity: 1;
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.animated {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.mfp-with-zoom .mfp-container,
.mfp-with-zoom.mfp-bg {
  opacity: 0;
  -webkit-backface-visibility: hidden;
  /* ideally, transition speed should match zoom duration */
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.mfp-with-zoom.mfp-ready .mfp-container {
  opacity: 1;
}

.mfp-with-zoom.mfp-ready.mfp-bg {
  opacity: 0.8;
}

.mfp-with-zoom.mfp-removing .mfp-container,
.mfp-with-zoom.mfp-removing.mfp-bg {
  opacity: 0;
}

.mfp-counter {
  display: none;
}

.mfp-gallery .mfp-image-holder .mfp-close, .mfp-gallery .mfp-iframe-holder .mfp-close {
  top: -40px;
}
.mfp-gallery .mfp-figure img {
  border-radius: 10px;
  padding: 0 !important;
  max-height: 485px !important;
}
.mfp-gallery .mfp-bottom-bar {
  margin-top: 16px !important;
}
.mfp-gallery .mfp-title {
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-right: 0;
}
.mfp-gallery .mfp-title span {
  font-size: 12px;
  font-weight: 400;
  color: #fff;
  line-height: 16px;
  width: 60%;
}
.mfp-gallery .mfp-arrow {
  width: 68px;
  height: 32px;
  border-radius: 24px;
  border: 1px solid #EFF8FF;
  opacity: 1;
}
@media all and (max-width: 980px) {
  .mfp-gallery .mfp-arrow {
    top: 100%;
    margin-top: -42px !important;
  }
}
.mfp-gallery .mfp-arrow:before {
  content: "";
  border: none;
  width: 15px;
  height: 2px;
  border-radius: 4px;
  left: 50%;
  top: 50%;
  margin: 0 0 0 -7px;
  background: #fff;
}
.mfp-gallery .mfp-arrow:after {
  width: 10px;
  height: 10px;
  border: none;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  margin: 0;
  left: calc(50% - 2px);
  top: 11px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
}
.mfp-gallery .mfp-arrow.mfp-arrow-left {
  left: 5%;
}
@media all and (max-width: 980px) {
  .mfp-gallery .mfp-arrow.mfp-arrow-left {
    left: auto;
    right: calc(10% + 72px);
  }
}
.mfp-gallery .mfp-arrow.mfp-arrow-left:after {
  -webkit-transform: rotate(-225deg);
          transform: rotate(-225deg);
  left: calc(50% - 6px);
}
.mfp-gallery .mfp-arrow.mfp-arrow-right {
  right: 5%;
}
@media all and (max-width: 980px) {
  .mfp-gallery .mfp-arrow.mfp-arrow-right {
    right: 10%;
  }
}
.mfp-gallery .mfp-arrow:hover {
  background: #EFF8FF;
}
.mfp-gallery .mfp-arrow:hover:before {
  background: #00185C;
}
.mfp-gallery .mfp-arrow:hover:after {
  border-color: #00185C;
}
.mfp-gallery .mfp-arrow:focus {
  background: #013AC5;
}
.mfp-gallery .mfp-arrow:focus:before {
  background: #EFF8FF;
}
.mfp-gallery .mfp-arrow:focus:after {
  border-color: #EFF8FF;
}
.mfp-gallery .mfp-arrow:focus-within, .mfp-gallery .mfp-arrow:target, .mfp-gallery .mfp-arrow:active {
  background: #EFF8FF;
}
.mfp-gallery .mfp-arrow:focus-within:before, .mfp-gallery .mfp-arrow:target:before, .mfp-gallery .mfp-arrow:active:before {
  background: #00185C;
}
.mfp-gallery .mfp-arrow:focus-within:after, .mfp-gallery .mfp-arrow:target:after, .mfp-gallery .mfp-arrow:active:after {
  border-color: #00185C;
}

@media all and (max-width: 767px) {
  .mfp-image-holder .mfp-content,
  .mfp-iframe-holder .mfp-content {
    max-width: 90% !important;
    margin: 0 auto;
  }
}

.table-holder {
  width: 100%;
  overflow-x: auto;
  margin-bottom: 48px;
}

table {
  width: 100%;
  border-collapse: collapse;
}
table th {
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
}
table td,
table th {
  border: 1px solid #00185C;
  padding: 24px 16px;
}

.uk .diploma .block-with-img__info .download-list li a {
  font-size: 9px;
}

.diploma .diploma-image-block {
  background-size: 300px 425px;
}

@media all and (max-width: 767px) {
  .diploma .block-with-img__info .download-list p {
    font-size: 32px;
    text-transform: none;
  }
}

@media all and (max-width: 767px) {
  .diploma .block-with-img__info .download-list .first-li-item {
    max-width: 100%;
  }
}

.diploma .block-with-img__info .download-list li {
  padding-top: 15px;
}
@media all and (max-width: 767px) {
  .diploma .block-with-img__info .download-list li {
    border-bottom: none;
  }
  .diploma .block-with-img__info .download-list li.last-of-type {
    border-bottom: 1px solid #00185C;
  }
}

@media all and (max-width: 767px) {
  .diploma-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .diploma-box .block-with-img__info {
    margin: 0 auto 25px;
  }
  .diploma-box .diploma-image-block {
    margin: 0 auto 25px;
  }
  .diploma-box .download-list {
    width: 100%;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

/* Plagins */
.select-hidden {
  display: none;
  visibility: hidden;
  padding-right: 10px;
}

.select {
  cursor: pointer;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  font-size: 14px;
  color: #00185C;
}
@media all and (max-width: 980px) {
  .select {
    font-size: 20px;
    font-weight: 700;
  }
}

.select-styled {
  padding: 5px 14px 5px 5px;
  -webkit-transition: all ease-in 0.2s;
  transition: all ease-in 0.2s;
}
.select-styled:hover {
  letter-spacing: 2px;
}
.select-styled:before {
  content: "";
  width: 12px;
  height: 16px;
  background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTIiIGhlaWdodD0iNyIgdmlld0JveD0iMCAwIDEyIDciIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik0xIDAuNDU1MDc4TDMuNTAwMjUgMi45NTc1NUw2LjAwMDUgNS40NTUwOEw4LjQ5OTc1IDIuOTU3NTVMMTEgMC40NTUwNzgiIHN0cm9rZT0iIzAwMTg1QyIgc3Ryb2tlLW1pdGVybGltaXQ9IjEwIi8+Cjwvc3ZnPgo=) no-repeat 100% 50%;
  position: absolute;
  top: 7px;
  right: 0;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
@media all and (max-width: 980px) {
  .select-styled {
    padding-right: 20px;
  }
  .select-styled:before {
    top: 9px;
  }
}
.select-styled:active:before, .select-styled.active:before {
  -webkit-transform: scale(-1);
          transform: scale(-1);
}

.select-options {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  z-index: 999;
  margin: 0;
  padding: 0;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  list-style: none;
  background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#bfe5ff));
  background: linear-gradient(to bottom, #ffffff 0%, #bfe5ff 100%);
}
.select-options li {
  margin: 0 !important;
  padding: 7px 12px;
  border-top: 1px solid #00185C;
  -webkit-transition: all ease-in 0.15s;
  transition: all ease-in 0.15s;
}
.select-options li:hover, .select-options li.is-selected {
  color: #fff;
  background: #00185C;
}
.select-options li[rel=hide] {
  display: none;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: "";
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  outline: none !important;
  height: 100%;
  min-height: 1px;
}

[dir=rtl] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 1280px;
  padding: 20px;
  margin: 0 auto 57px;
}
@media all and (max-width: 980px) {
  .slick-dots {
    padding: 20px 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.slick-dots li {
  margin: 6px;
  border-radius: 100%;
}
.slick-dots li button {
  font-size: 0;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 1px solid #00185C;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
  background: none;
}
.slick-dots li button:hover {
  -webkit-animation: pulse 1500ms infinite;
          animation: pulse 1500ms infinite;
}
.slick-dots li.slick-active button {
  background: #00185C;
  -webkit-box-shadow: 0 0 0 3px #00185C;
          box-shadow: 0 0 0 3px #00185C;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 #00185C;
            box-shadow: 0 0 0 0 #00185C;
  }
  100% {
    -webkit-box-shadow: 0 0 0 10px rgba(251, 179, 47, 0.0039215686);
            box-shadow: 0 0 0 10px rgba(251, 179, 47, 0.0039215686);
  }
}

@keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 #00185C;
            box-shadow: 0 0 0 0 #00185C;
  }
  100% {
    -webkit-box-shadow: 0 0 0 10px rgba(251, 179, 47, 0.0039215686);
            box-shadow: 0 0 0 10px rgba(251, 179, 47, 0.0039215686);
  }
}
.slick-arrow {
  position: absolute;
  bottom: 0;
  right: 20px;
  border: 1px solid #00185C;
  border-radius: 24px;
  width: 68px;
  height: 32px;
  padding: 0;
  cursor: pointer;
  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;
}
.slick-arrow:hover {
  background: #013AC5;
}
.slick-arrow:hover svg path {
  fill: #EFF8FF;
}
@media all and (max-width: 980px) {
  .slick-arrow {
    bottom: -32px;
    border: none;
  }
}
.slick-arrow.slick-prev {
  right: 100px;
}
@media all and (max-width: 980px) {
  .slick-arrow.slick-prev {
    right: 68px;
  }
}
.slick-arrow.slick-next {
  -webkit-transform: scale(-1);
          transform: scale(-1);
}
@media all and (max-width: 980px) {
  .slick-arrow.slick-next {
    right: 0;
  }
}
.slick-arrow.slick-disabled {
  color: #A8A8A8;
  border-color: #A8A8A8;
  pointer-events: none;
}
.slick-arrow.slick-disabled svg path {
  fill: #A8A8A8;
}

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

.tab {
  margin: 0 10px 40px;
}
.tab a {
  color: rgba(0, 24, 92, 0.5);
  text-transform: uppercase;
  font-weight: 700;
}
.tab a:hover:after {
  border-color: rgba(0, 24, 92, 0.5);
}

.tab.active a {
  color: #00185C;
  letter-spacing: 2px;
}
.tab.active a:after {
  border-color: #00185C;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

.tab-content-holder,
.tab_content {
  width: 100%;
}

.hidden {
  display: none !important;
}

/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
}

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden;
}

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.mfp-container:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
  display: none;
}

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto;
}

.mfp-ajax-cur {
  cursor: progress;
}

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
  cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
      user-select: none;
}

.mfp-loading.mfp-figure {
  display: none;
}

.mfp-hide {
  display: none !important;
}

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044;
}

.mfp-preloader a {
  color: #CCC;
}

.mfp-preloader a:hover {
  color: #FFF;
}

.mfp-s-ready .mfp-preloader {
  display: none;
}

.mfp-s-error .mfp-content {
  display: none;
}

button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  -webkit-box-shadow: none;
          box-shadow: none;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace;
}

.mfp-close:hover,
.mfp-close:focus {
  opacity: 1;
}

.mfp-close:active {
  top: 1px;
}

.mfp-close-btn-in .mfp-close {
  color: #333;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%;
}

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap;
}

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent;
}

.mfp-arrow:active {
  margin-top: -54px;
}

.mfp-arrow:hover,
.mfp-arrow:focus {
  opacity: 1;
}

.mfp-arrow:before,
.mfp-arrow:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent;
}

.mfp-arrow:after {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px;
}

.mfp-arrow:before {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7;
}

.mfp-arrow-left {
  left: 0;
}

.mfp-arrow-left:after {
  border-right: 17px solid #FFF;
  margin-left: 31px;
}

.mfp-arrow-left:before {
  margin-left: 25px;
  border-right: 27px solid #3F3F3F;
}

.mfp-arrow-right {
  right: 0;
}

.mfp-arrow-right:after {
  border-left: 17px solid #FFF;
  margin-left: 39px;
}

.mfp-arrow-right:before {
  border-left: 27px solid #3F3F3F;
}

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: auto;
  max-width: 900px;
}

.mfp-iframe-holder .mfp-close {
  top: -40px;
}

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
          box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto;
}

/* The shadow behind the image */
.mfp-figure {
  line-height: 0;
}

.mfp-figure small {
  color: #BDBDBD;
  display: block;
  font-size: 12px;
  line-height: 14px;
}

.mfp-figure figure {
  margin: 0;
}

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px;
}

.mfp-image-holder .mfp-content {
  max-width: 100%;
  width: auto;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0;
  }
  .mfp-img-mobile img.mfp-img {
    padding: 0;
  }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0;
  }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px;
  }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0;
  }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px;
  }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0;
  }
}
@media all and (max-width: 900px) {
  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0;
  }
  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%;
  }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px;
  }
}
/* Blocks */
header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 260;
}
header.is-sticky {
  position: fixed;
  top: -100px;
  left: 0;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  -webkit-animation: goDown 0.5s ease-in-out forwards;
          animation: goDown 0.5s ease-in-out forwards;
  background: -webkit-gradient(linear, left top, right top, from(rgb(255, 255, 255)), to(rgb(191, 229, 255)));
  background: linear-gradient(to right, rgb(255, 255, 255) 0%, rgb(191, 229, 255) 100%);
}

@-webkit-keyframes goDown {
  0% {
    top: -100px;
  }
  100% {
    top: 0;
  }
}

@keyframes goDown {
  0% {
    top: -100px;
  }
  100% {
    top: 0;
  }
}
.header-holder {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.header-holder .top-notification-bar {
  width: 100%;
  background: #013ac5;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  color: #ffffff;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  height: 28px;
  padding: 4px 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header-holder .top-notification-bar img {
  margin-right: 12px;
}
.header-holder .header-content {
  padding: 26px 20px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 54px;
}

.logo {
  font-size: 19px;
  font-weight: 700;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  color: #00185C;
  z-index: 260;
}
.logo img {
  margin-right: 5px;
}
@media all and (max-width: 767px) {
  .logo {
    font-size: 14px;
  }
}

select {
  display: none;
}

.nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.nav > li {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.nav li {
  margin: 0 12px;
  position: relative;
}
.nav li:last-of-type {
  margin: 0;
}
.nav li .drop-arrow {
  background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTIiIGhlaWdodD0iNyIgdmlld0JveD0iMCAwIDEyIDciIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik0xIDAuNDU1MDc4TDMuNTAwMjUgMi45NTc1NUw2LjAwMDUgNS40NTUwOEw4LjQ5OTc1IDIuOTU3NTVMMTEgMC40NTUwNzgiIHN0cm9rZT0iIzAwMTg1QyIgc3Ryb2tlLW1pdGVybGltaXQ9IjEwIi8+Cjwvc3ZnPgo=) no-repeat 100% 50%;
  width: 12px;
  height: 16px;
  margin-left: 8px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  cursor: pointer;
  -webkit-transition: all ease 0.05s;
  transition: all ease 0.05s;
}
.nav li a {
  font-size: 14px;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
  display: inline-block;
  color: #00185C;
  text-transform: uppercase;
}
.nav li a.btn, .nav li a.btn-outline, .nav li a.btn-fill, .nav li a.slick-arrow {
  padding-left: 24px;
  padding-right: 24px;
  text-decoration: none !important;
}
.nav li .drop {
  position: absolute;
  top: 100%;
  left: -10px;
  border-radius: 10px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  /*background: -moz-linear-gradient(top,  #ffffff 0%, #bfe5ff 100%);
  background: -webkit-linear-gradient(top,  #ffffff 0%,#bfe5ff 100%);
  background: linear-gradient(to bottom,  #ffffff 0%,#bfe5ff 100%);*/
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
  height: 0;
  overflow: hidden;
}
.nav li .drop ul {
  padding: 10px;
}
.nav li .drop ul li {
  margin: 0 0 16px;
}
.nav li .drop ul li a {
  text-transform: uppercase;
}
@media all and (min-width: 981px) {
  .nav li .sub-menu {
    position: absolute;
    top: -394px;
    left: 0;
    display: none;
  }
}
.nav li .sub-menu li {
  margin: 5px 0;
}
.nav li:hover > .drop-arrow {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.nav li:hover > .drop {
  top: 100%;
  height: auto;
}
.nav li:hover .sub-menu {
  top: 100%;
}
@media all and (min-width: 981px) {
  .nav li:hover .sub-menu {
    display: block;
  }
}

@media all and (max-width: 980px) {
  .lang-menu {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 45px;
  }
  .lang-menu li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .lang-menu li a {
    margin-right: 20px;
    font-size: 20px;
  }
  .lang-menu li .sub-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .lang-menu li .sub-menu li {
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .lang-menu li .sub-menu li a {
    opacity: 0.7;
  }
}

.drop-bg {
  background: -webkit-gradient(linear, left top, right top, from(rgb(255, 255, 255)), to(rgb(191, 229, 255)));
  background: linear-gradient(to right, rgb(255, 255, 255) 0%, rgb(191, 229, 255) 100%);
  position: fixed !important;
  top: -554px;
  left: 0;
  width: 100%;
  height: 437px;
  -webkit-transition: top 0.01s ease-in;
  transition: top 0.01s ease-in;
  z-index: 250;
}
.drop-bg.mini {
  height: 150px;
}
.drop-bg.show {
  top: 0;
}

.menu {
  display: none;
}

@media all and (max-width: 1060px) {
  .nav li {
    margin: 0 5px;
  }
}
@media all and (max-width: 980px) {
  .menu {
    display: block;
  }
  .menu {
    width: 64px;
    height: 40px;
    border: 1px solid #00185C;
    border-radius: 64px;
    position: relative;
    z-index: 260;
  }
  .menu > span {
    background-color: #00185C;
    border-radius: 1px;
    height: 1px;
    width: 16px;
    position: absolute;
    left: 25px;
    top: 50%;
    -webkit-transition: height 100ms;
    transition: height 100ms;
  }
  .menu > span:after, .menu > span:before {
    content: "";
    background-color: #00185C;
    border-radius: 1px;
    height: 1px;
    width: 16px;
    position: absolute;
    -webkit-transition: all 200ms;
    transition: all 200ms;
  }
  .menu > span:after {
    top: -4px;
  }
  .menu > span:before {
    bottom: -4px;
  }
  .menu.act > span {
    height: 0;
  }
  .menu.act > span:after, .menu.act > span:before {
    top: 1px;
  }
  .menu.act > span:after {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  .menu.act > span:before {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
  .nav-holder {
    position: fixed;
    top: -100vh;
    left: 0;
    width: 100%;
    height: 100vh;
    background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#bfe5ff));
    background: linear-gradient(to bottom, #ffffff 0%, #bfe5ff 100%);
    padding: 136px 22px 22px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 250;
  }
  .nav-holder.show {
    top: 0;
  }
  .nav-holder .nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    line-height: 24px;
    height: 100%;
    overflow-y: auto;
  }
  .nav-holder .nav > li {
    display: block;
    margin-bottom: 24px;
  }
  .nav-holder .nav > li:last-of-type {
    margin-bottom: 0;
  }
  .nav-holder .nav > li:last-of-type .drop-arrow {
    display: none;
  }
  .nav-holder .nav > li > a {
    font-size: 20px;
    font-weight: 700;
  }
  .nav-holder .nav li .drop-arrow {
    -webkit-transform: none !important;
            transform: none !important;
  }
  .nav-holder .nav li .drop-arrow.open {
    -webkit-transform: rotate(180deg) !important;
            transform: rotate(180deg) !important;
  }
  .nav-holder .nav li .drop {
    display: none !important;
    position: static;
    background: none;
  }
  .nav-holder .nav li .drop li {
    margin-bottom: 8px;
  }
  .nav-holder .nav li .drop li:last-of-type {
    margin-bottom: 0;
  }
  .nav-holder .nav li .drop a {
    font-size: 16px;
    font-weight: 700;
    color: rgba(0, 24, 92, 0.8);
  }
  .nav-holder .nav li .drop.show {
    display: block !important;
    height: auto;
  }
}
@media all and (min-width: 981px) {
  .sub-menu li {
    min-width: 38px;
  }
  .sub-menu li:last-of-type {
    margin-bottom: 38px !important;
  }
}

@media (max-width: 800px) {
  nav .navbar .links {
    display: block;
    margin-top: 20px;
  }
  nav .navbar .links li .arrow {
    line-height: 40px;
  }
  nav .navbar .links li {
    display: block;
  }
  nav .navbar .links li .sub-menu {
    position: relative;
    top: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
    display: none;
  }
  nav .navbar .links li .sub-menu li {
    border-bottom: none;
  }
  .navbar .links li .sub-menu .more-sub-menu {
    display: none;
    position: relative;
    left: 0;
  }
  .navbar .links li .sub-menu .more-sub-menu li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .links li:hover .htmlcss-arrow,
  .links li:hover .js-arrow {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  .navbar .links li .sub-menu .more-sub-menu {
    display: none;
  }
  .navbar .links li .sub-menu .more span {
    /* background: red; */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    /* justify-content: space-between; */
  }
  .links li .sub-menu .more:hover .more-sub-menu {
    display: none;
  }
  nav .navbar .links li:hover .htmlCss-sub-menu,
  nav .navbar .links li:hover .js-sub-menu {
    display: none;
  }
  .navbar .nav-links.show1 .links .htmlCss-sub-menu,
  .navbar .nav-links.show3 .links .js-sub-menu,
  .navbar .nav-links.show2 .links .more .more-sub-menu {
    display: block;
  }
  .navbar .nav-links.show1 .links .htmlcss-arrow,
  .navbar .nav-links.show3 .links .js-arrow {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  .navbar .nav-links.show2 .links .more-arrow {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
}
@media (max-width: 370px) {
  nav .navbar .nav-links {
    max-width: 100%;
  }
}
.hero-holder {
  width: 100%;
}
.hero-holder:after {
  background: url("../images/design/Homepage(hero).7f5eba.png");
}

.hero {
  max-width: 1280px;
  height: auto;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  min-height: 610px;
}
@media all and (max-width: 980px) {
  .hero {
    height: auto;
  }
}
@media all and (max-width: 767px) and (min-height: 812px) {
  .hero {
    height: 100vh;
  }
}
.hero .slick-dots {
  padding-left: 0;
}

@media all and (max-width: 767px) {
  .hero .slick-dots {
    position: absolute;
    bottom: 4px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    margin: 0;
  }
}

.hero-slide, .about-hero-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: auto;
  min-height: 400px;
}
@media all and (max-width: 980px) {
  .hero-slide, .about-hero-slide {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    height: auto;
  }
}
@media all and (max-width: 767px) {
  .hero-slide, .about-hero-slide {
    height: auto;
  }
}
@media all and (max-width: 767px) and (min-height: 812px) {
  .hero-slide, .about-hero-slide {
    height: calc(100vh - 100px);
  }
}
.hero-slide img, .about-hero-slide img {
  max-width: 505px;
  max-height: 100%;
}
@media all and (max-width: 980px) {
  .hero-slide img, .about-hero-slide img {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    max-width: 100%;
    max-height: 360px;
    margin: 0 auto;
    height: auto;
  }
}
@media all and (max-width: 600px) {
  .hero-slide img, .about-hero-slide img {
    max-height: none;
  }
}

.hero-info {
  width: 63%;
  padding: 0 5.6% 10px 8.7%;
}
@media all and (max-width: 1350px) {
  .hero-info {
    padding-right: 0;
  }
}
@media all and (max-width: 980px) {
  .hero-info {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: 100%;
  }
}
@media all and (max-width: 767px) {
  .hero-info {
    padding-left: 0;
    height: auto;
    padding-top: 20px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media all and (max-width: 767px) and (min-height: 812px) {
  .hero-info {
    height: calc(50vh - 50px);
    padding-top: 0;
  }
}
.hero-info .h1 {
  margin: 16px 0 32px;
}
@media all and (max-width: 767px) {
  .hero-info .h1 {
    margin: 8px 0 16px;
  }
}
.hero-info .description {
  margin-bottom: 32px;
}
@media all and (max-width: 767px) {
  .hero-info .description {
    margin-bottom: 7px;
  }
}
@media all and (max-width: 767px) {
  .hero-info .btn-fill {
    position: absolute;
    margin-left: auto;
    margin-right: auto;
    bottom: 70px;
    left: 24%;
    right: 24%;
    text-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media all and (max-width: 500px) {
  .hero-info .btn-fill {
    margin-left: auto;
    margin-right: auto;
    left: 15%;
    right: 15%;
    text-align: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.actions {
  padding: 0 20px;
  width: 100%;
  max-width: 1280px;
  margin: -99px auto 75px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  text-transform: uppercase;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: none;
}
@media all and (max-width: 767px) {
  .actions {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.actions.actions-visible {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 110px;
}

.scroll-icon {
  background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjIiIHZpZXdCb3g9IjAgMCAyMCAyMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTE2LjUyMTUgNy45NTYzMUMxNi41MjE1IDQuMzU0NDUgMTMuNjAxNiAxLjQzNDU3IDkuOTk5NzcgMS40MzQ1N0M2LjM5NzkxIDEuNDM0NTcgMy40NzgwMyA0LjM1NDQ1IDMuNDc4MDMgNy45NTYzMVYxNC4wNDMzQzMuNDc4MDMgMTcuNjQ1MSA2LjM5NzkxIDIwLjU2NSA5Ljk5OTc3IDIwLjU2NUMxMy42MDE2IDIwLjU2NSAxNi41MjE1IDE3LjY0NTEgMTYuNTIxNSAxNC4wNDMzVjcuOTU2MzFaIiBzdHJva2U9IiMwMTNBQzUiLz4KPHBhdGggZD0iTTEwLjAwMDIgNS40Mjk2OVY4LjM3NDQ3IiBzdHJva2U9IiMwMTNBQzUiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIi8+Cjwvc3ZnPgo=) no-repeat;
  color: #013AC5;
  line-height: 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: auto;
  position: relative;
  z-index: 1;
  font-size: 14px;
}
.scroll-icon svg {
  margin-right: 4px;
}
.scroll-icon:hover {
  color: #00185C;
  text-decoration: none;
}
.scroll-icon:hover svg path {
  stroke: #00185C;
}

.donated {
  background: #00185C url(../images/design/flag.74c3c9.png) no-repeat 50% 100%;
  background-size: 517px;
  padding: 20px;
  height: 615px;
}
@media all and (max-width: 980px) {
  .donated {
    background-size: 369px;
  }
}
@media all and (max-width: 767px) {
  .donated {
    height: calc(100vh - 100px);
  }
}
.donated:after {
  background: url("../images/design/Homepage%20&%20About%20(So%20far%20we%20raised).19b1f6.png");
}

.donated-box {
  padding: 50px 80px;
  position: relative;
  z-index: 1;
  height: 100%;
  max-width: 1440px;
  margin: 0 auto;
}
@media all and (max-width: 980px) {
  .donated-box {
    padding: 10px 0;
  }
}
.donated-box__title {
  color: #fff;
  display: block;
  line-height: 1.2;
}
@media all and (max-width: 980px) and (min-width: 501px) {
  .donated-box__title {
    text-align: center;
  }
}
.donated-box__title span {
  color: #fff;
}
.donated-box__title:first-of-type {
  margin-bottom: 0;
}

.text-indent {
  margin-bottom: 24px;
}
@media all and (min-width: 981px) {
  .text-indent {
    margin-left: 12%;
  }
}
@media all and (max-width: 500px) {
  .text-indent {
    text-align: right;
  }
}

.sum {
  color: #FFE23F;
  margin-bottom: 9px;
}

.date {
  color: #fff;
}

.bottom-pos {
  position: absolute;
  bottom: 50px;
  right: 100px;
  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 all and (max-width: 980px) {
  .bottom-pos {
    position: static;
  }
}

.cards {
  scroll-margin-top: 100px;
}
.cards .h2 {
  margin-bottom: 56px;
}
@media all and (max-width: 767px) {
  .cards .h2 {
    margin-bottom: 24px;
  }
}

.card-holder {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.card {
  border: 1px solid #00185C;
  border-radius: 7px;
  -webkit-box-shadow: 0 12px 12px rgba(0, 0, 0, 0.03);
          box-shadow: 0 12px 12px rgba(0, 0, 0, 0.03);
  width: 24%;
  height: 184px;
  padding: 24px;
  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: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  background: #EFF8FF radial-gradient(circle at 80% 30%, rgba(255, 226, 63, 0.6) 0, transparent, transparent 100%);
  cursor: pointer;
  -webkit-transition: all ease-in 0.5s;
  transition: all ease-in 0.5s;
  position: relative;
  margin: 0 12px 12px 0;
}
@media all and (max-width: 980px) {
  .card {
    width: 49%;
  }
}
@media all and (max-width: 650px) {
  .card {
    width: 100%;
  }
}
.card:hover {
  text-decoration: none;
  background: #EFF8FF radial-gradient(circle at 80% 30%, rgba(161, 216, 255, 0.6) 0, transparent, transparent 100%);
}
.card .description {
  text-transform: uppercase;
  color: #013AC5;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
}
.card .title {
  margin-bottom: 0;
}

.plus-icon {
  position: absolute;
  top: 36px;
  right: 24px;
  width: 24px;
  height: 2px;
  background: #013AC5;
  border-radius: 2px;
}
.plus-icon:after {
  content: "";
  width: 24px;
  height: 2px;
  background: #013AC5;
  border-radius: 2px;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  display: block;
}

.min-height-800 {
  min-height: 800px;
}

.concept-block .left-col p {
  text-align: justify;
}
.concept-block .right-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.concept-block .right-col .concept-image {
  width: 48%;
}

#thank-you-form .response.error {
  color: #dc3232;
  font-weight: normal;
  display: block;
  margin-right: 15px;
  font-size: 14px;
}
#thank-you-form .response.success {
  color: #7ea000;
  font-weight: normal;
  display: block;
  margin-right: 15px;
  font-size: 14px;
}
#thank-you-form .row.justify-end {
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
#thank-you-form .wpcf7-not-valid-tip {
  color: #dc3232;
  font-size: 1em;
  font-weight: normal;
  display: block;
}

.not-valid {
  background: #ffffff !important;
  border: 1px solid #FF5656 !important;
}

.contact-form .checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.contact-form .form-message {
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.contact-form .form-message p {
  width: 100%;
}
.contact-form .form-message textarea {
  min-height: 128px;
  height: 140px;
}
.contact-form .justify-end p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.contact-form .checkbox-form {
  -webkit-box-pack: left !important;
      -ms-flex-pack: left !important;
          justify-content: left !important;
}
.contact-form .checkbox-form p {
  line-height: 16px;
  font-size: 12px;
}
.contact-form .checkbox-form a {
  text-decoration: underline;
}
.contact-form .wpcf7-not-valid {
  background: #ffffff !important;
  border: 1px solid #FF5656 !important;
}
.contact-form .wpcf7-not-valid-tip {
  font-size: 12px !important;
}
.contact-form input[type=checkbox] {
  -webkit-appearance: auto !important;
  -moz-appearance: auto !important;
       appearance: auto !important;
  opacity: 1 !important;
  height: 12px;
  width: 12px;
  margin-right: 10px;
  display: block;
  background: #fff;
  border: 0.72px solid #707070;
}
.contact-form input[type=checkbox]:hover {
  cursor: pointer;
}
.contact-form .wpcf7-list-item-label::before, .contact-form .wpcf7-list-item-label::after {
  content: "";
  background: #FF5656;
}
.contact-form .wpcf7-response-output {
  margin: 0 !important;
  padding: 0 !important;
  text-align: right;
  border: none !important;
}

@media all and (max-width: 767px) {
  .thanks-block .contact-form .row .col label {
    font-size: 12px;
  }
  .thanks-block .contact-form .row .col input[type=email],
  .thanks-block .contact-form .row .col input[type=text] {
    font-size: 12px;
  }
  .thanks-block .contact-form .form-message label {
    font-size: 12px;
  }
  .thanks-block .contact-form .form-message textarea {
    height: 130px;
  }
  .thanks-block .contact-form .form-message input[type=email],
  .thanks-block .contact-form .form-message input[type=text] {
    font-size: 12px;
  }
}
.news {
  scroll-margin-top: 100px;
  background: #BFE5FF radial-gradient(circle at 80% 30%, rgba(255, 226, 63, 0.6) 0, transparent, transparent 100%);
}
.news:after {
  background: url("../images/design/Homepage(News).430be2.png");
}
.news .h2 {
  margin-bottom: 64px;
}
@media all and (max-width: 767px) {
  .news .h2 {
    margin-bottom: 24px;
    line-height: 40px;
  }
}
.news.regular ul:not(.products), .news.regular ol {
  margin-bottom: 24px;
  -webkit-padding-start: 40px;
          padding-inline-start: 40px;
  font-size: 12px;
}
@media all and (min-width: 767px) {
  .news.regular ul:not(.products), .news.regular ol {
    font-size: 16px;
  }
}
.news.regular ul:not(.products) {
  list-style-type: disc;
}

.news-holder {
  overflow: hidden;
  position: relative;
  z-index: 1;
}
@media all and (max-width: 980px) {
  .news-holder {
    padding: 0 0 28px;
  }
}

.news-slider {
  padding: 0 0 90px;
}
@media all and (max-width: 980px) {
  .news-slider {
    padding: 0 0 36px;
  }
}
.news-slider .slick-list {
  overflow: visible;
}

.filters {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.filters a {
  color: rgba(0, 24, 92, 0.5);
  text-transform: uppercase;
  font-weight: 700;
}
.filters a:hover:after {
  border-color: rgba(0, 24, 92, 0.5);
}
.filters li {
  margin: 0 20px 24px 0;
}
@media all and (max-width: 767px) {
  .filters li {
    margin-right: 12px;
  }
}
.filters li.active a {
  color: #00185C;
  letter-spacing: 2px;
}
.filters li.active a:after {
  border-color: #00185C;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

.news-slide {
  border-radius: 7px;
  overflow: hidden;
  background: #EFF8FF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  cursor: pointer;
  margin: 0 20px 0 0;
}
.news-slide figure {
  position: relative;
  height: 0;
  display: block;
  overflow: hidden;
  padding-bottom: 64.3432%;
  width: 100%;
  border-radius: 7px 7px 0 0;
}
.news-slide figure img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
.news-slide:hover {
  -webkit-transform: translateY(-0.5rem);
          transform: translateY(-0.5rem);
  text-decoration: none;
}
.news-slide:hover img {
  -webkit-transform: scale(1.03);
          transform: scale(1.03);
}

.news-info {
  padding: 24px;
  min-height: 291px;
}
@media all and (max-width: 767px) {
  .news-info {
    padding: 16px;
    min-height: 184px;
  }
}
.news-info .h5 {
  margin-bottom: 7px;
}
@media all and (max-width: 767px) {
  .news-info .h5 {
    max-height: 100px;
    overflow: hidden;
  }
}

.news-data {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 12px;
}

.group, .news-date {
  font-weight: 700;
  font-size: 10px;
  line-height: 12px;
  text-transform: uppercase;
  color: #A8A8A8;
  margin-right: 12px;
}

.news-date {
  padding-left: 12px;
  border-left: 1px solid #A8A8A8;
}

.source {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 20px;
  color: #013AC5;
  display: block;
}

.support {
  scroll-margin-top: 100px;
  background: #00185C;
  color: #fff;
}
.support:after {
  background: url("../images/design/Hoepage%20Our%20biggest%20support.96820b.png");
}
.support .container {
  position: relative;
}
.support .h2 {
  color: #fff;
  margin-bottom: 74px;
}
@media all and (max-width: 767px) {
  .support .h2 {
    margin-bottom: 40px;
    line-height: 40px;
  }
}
.support .h2 span {
  color: #fff;
}
@media all and (max-width: 767px) {
  .support .h2.ml6 .word {
    overflow: visible;
  }
}
.support .filter-nav {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.support .filter-nav li {
  border-right: 1px solid rgba(239, 248, 255, 0.5);
  margin: 0 0 10px;
  padding: 0 12px;
}
.support .filter-nav li:last-of-type {
  border-right: none;
}
.support .filter-nav li:first-of-type {
  padding-left: 0;
}
.support .filter-nav li a {
  color: rgba(239, 248, 255, 0.5);
  font-size: 14px;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
  text-transform: uppercase;
}
.support .filter-nav li a:hover:after {
  border-color: rgba(239, 248, 255, 0.5);
}
.support .filter-nav li a.active {
  color: #fff;
  letter-spacing: 2px;
  text-decoration: none;
  font-weight: 700;
}
.support .filter-nav li a.active:after {
  border-color: #fff;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

.is-hidden {
  display: none !important;
}

.shown {
  display: block !important;
}

.support-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.support-list li {
  margin: 0 15px 20px 0;
  position: relative;
  z-index: 4;
}
.support-list li a {
  width: 190px;
  height: 64px;
  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;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  text-transform: uppercase;
  color: #fff;
  padding: 12px 8px;
}
.support-list li a:hover {
  text-decoration: none;
}
.support-list li a img {
  max-width: 75%;
  max-height: 75%;
}

.filters-holder {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: 1px solid rgba(239, 248, 255, 0.5);
  margin-bottom: 70px;
  position: relative;
  z-index: 4;
}
@media all and (max-width: 980px) {
  .filters-holder {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    overflow: hidden;
  }
}
@media all and (max-width: 767px) {
  .filters-holder {
    margin-bottom: 20px;
  }
}

.filters-list {
  padding: 4px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 60%;
}
@media all and (max-width: 980px) {
  .filters-list {
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
    width: 100%;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    overflow-x: auto;
    padding: 20px 0;
    border-top: 1px solid rgba(239, 248, 255, 0.5);
  }
}
.filters-list li {
  margin: 0 11px 10px 0;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 1.1;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
@media all and (max-width: 980px) {
  .filters-list li {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin-bottom: 0;
  }
}
.filters-list li a {
  color: rgba(239, 248, 255, 0.5);
}
.filters-list li a:hover {
  letter-spacing: inherit;
}
.filters-list li a:hover:after {
  border-color: rgba(239, 248, 255, 0.5);
}
.filters-list li a.active {
  color: #fff;
  letter-spacing: 2px;
}
.filters-list li a.active:after {
  border-color: #fff;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

.more:before {
  content: "";
  display: block;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(4.62%, #00185C), to(rgba(0, 24, 92, 0.47))), url("../images/design/Hoepage%20Our%20biggest%20support.96820b.png");
  background: linear-gradient(360deg, #00185C 4.62%, rgba(0, 24, 92, 0.47) 100%), url("../images/design/Hoepage%20Our%20biggest%20support.96820b.png");
  width: 100%;
  height: 435px;
  position: absolute;
  bottom: 0;
  z-index: 3;
}
@media all and (max-width: 767px) {
  .more:before {
    height: 245px;
  }
}
.more .support-list li {
  z-index: 2;
}

.show-more-box {
  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: 100%;
  z-index: 4;
}
.show-more-box.showLess:before {
  display: none;
}
.show-more-box.showLess .show-more:before {
  content: "VIEW LESS -";
}

.show-more {
  color: #EFF8FF;
  position: relative;
  display: block;
}
.show-more::before {
  content: "SHOW MORE +";
}
.show-more:hover:after {
  border-color: #EFF8FF;
}

@media all and (max-width: 460px) {
  .show-more-item {
    width: calc(50% - 15px);
  }
  .show-more-item img {
    max-width: 100%;
  }
}

:lang(ua-UA) .show-more-box.showLess .show-more:before {
  content: "Менше -";
}
:lang(ua-UA) .show-more::before {
  content: "Більше +";
}

:lang(lt-LT) .show-more-box.showLess .show-more:before {
  content: "Mažiau -";
}
:lang(lt-LT) .show-more::before {
  content: "Daugiau +";
}

.intro:after {
  background: url("../images/design/Homepage(put%20your%20support).f3db73.png");
}
.intro .container {
  position: relative;
  z-index: 1;
}
.intro .logo {
  z-index: 1;
  font-size: 30px;
  margin-bottom: 40px;
}
@media all and (max-width: 767px) {
  .intro .logo {
    font-size: 21px;
    margin-bottom: 23px;
  }
}
.intro .logo img {
  width: 69px;
}
@media all and (max-width: 767px) {
  .intro .logo img {
    width: 50px;
  }
}
.intro .h2 {
  text-align: center;
  margin-bottom: 32px;
  max-width: 446px;
  line-height: 49px;
}
@media all and (max-width: 767px) {
  .intro .h2 {
    line-height: 40px;
  }
}
.intro p {
  max-width: 700px;
  margin-bottom: 40px;
  text-align: center;
}
@media all and (max-width: 767px) {
  .intro p {
    margin-bottom: 24px;
  }
}

.box-404 {
  max-width: 480px;
  text-align: center;
}
.box-404 p {
  font-size: 20px;
  font-weight: 700;
}

.intro_medical {
  padding: 0 20px;
}
.intro_medical .container {
  position: relative;
  z-index: 1;
}
.intro_medical .logo {
  z-index: 1;
  font-size: 30px;
  margin-bottom: 40px;
}
@media all and (max-width: 767px) {
  .intro_medical .logo {
    font-size: 21px;
    margin-bottom: 23px;
  }
}
.intro_medical .logo img {
  width: 69px;
}
@media all and (max-width: 767px) {
  .intro_medical .logo img {
    width: 50px;
  }
}
.intro_medical .h2 {
  text-align: center;
  margin-bottom: 32px;
  max-width: 446px;
  line-height: 49px;
}
@media all and (max-width: 767px) {
  .intro_medical .h2 {
    line-height: 40px;
  }
}
.intro_medical p {
  max-width: 700px;
  margin-bottom: 40px;
  text-align: center;
}
@media all and (max-width: 767px) {
  .intro_medical p {
    margin-bottom: 24px;
  }
}
.intro_medical ul, .intro_medical ol {
  max-width: 700px;
  -webkit-padding-start: 15px;
          padding-inline-start: 15px;
  font-size: 12px;
}
@media all and (min-width: 767px) {
  .intro_medical ul, .intro_medical ol {
    font-size: 16px;
  }
}
.intro_medical ul {
  list-style-type: disc;
}

.intro_image_and_text .container {
  position: relative;
  z-index: 1;
}
.intro_image_and_text .logo {
  z-index: 1;
  font-size: 30px;
  margin-bottom: 40px;
}
@media all and (max-width: 767px) {
  .intro_image_and_text .logo {
    font-size: 21px;
    margin-bottom: 23px;
  }
}
.intro_image_and_text .logo img {
  width: 69px;
}
@media all and (max-width: 767px) {
  .intro_image_and_text .logo img {
    width: 50px;
  }
}
.intro_image_and_text .h2 {
  text-align: center;
  margin-bottom: 32px;
  max-width: 446px;
  line-height: 49px;
}
@media all and (max-width: 767px) {
  .intro_image_and_text .h2 {
    line-height: 40px;
  }
}
.intro_image_and_text h1, .intro_image_and_text h2, .intro_image_and_text h3, .intro_image_and_text h4, .intro_image_and_text h5, .intro_image_and_text h6 {
  max-width: 740px;
  margin-left: 5vw;
  margin-right: 5vw;
}
.intro_image_and_text p {
  max-width: 740px;
  margin-left: 5vw;
  margin-right: 5vw;
  margin-bottom: 40px;
}
@media all and (max-width: 767px) {
  .intro_image_and_text p {
    margin-bottom: 24px;
  }
}
.intro_image_and_text ul, .intro_image_and_text ol {
  max-width: 740px;
  margin-left: 5vw;
  margin-right: 5vw;
  -webkit-padding-start: 15px;
          padding-inline-start: 15px;
  font-size: 12px;
}
@media all and (min-width: 767px) {
  .intro_image_and_text ul, .intro_image_and_text ol {
    font-size: 16px;
  }
}
.intro_image_and_text ul {
  list-style-type: disc;
}

footer {
  background: #EFF8FF;
  line-height: 1.5;
}
footer .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 40px;
}
@media all and (max-width: 980px) {
  footer .row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
footer .row:last-of-type {
  margin-bottom: 0;
}
footer .row .col {
  max-width: 28%;
  margin-bottom: 40px;
}
@media all and (min-width: 981px) {
  footer .row .col:last-of-type {
    -ms-flex-item-align: end;
        align-self: flex-end;
  }
}
@media all and (max-width: 980px) {
  footer .row .col {
    max-width: 100%;
  }
  footer .row .col:last-of-type {
    margin-bottom: 0;
  }
}
footer .row .col .h2 {
  margin-bottom: 32px;
}
@media all and (max-width: 980px) {
  footer .row .col .h2 {
    margin-bottom: 16px;
  }
}
footer .row .col .h3 {
  margin-bottom: 40px;
  min-height: 96px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media all and (min-width: 981px) {
  footer .row .col .h3 {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}
@media all and (max-width: 980px) {
  footer .row .col .h3 {
    margin-bottom: 16px;
  }
}
@media all and (max-width: 767px) {
  footer .row .col .h3 {
    min-height: auto;
  }
}
@media all and (max-width: 767px) {
  footer .row .col:first-of-type .h3 {
    font-size: 32px;
    line-height: 36px;
  }
}
footer .row .col p {
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
  margin-bottom: 0;
}
@media all and (max-width: 767px) {
  footer .row .col p {
    font-size: 16px;
  }
}
footer .row .col a {
  color: #013AC5;
}
footer .row .col ul li p {
  margin: 0;
}
@media all and (max-width: 767px) {
  footer .row .col ul li p {
    font-size: 14px;
  }
}

.social li {
  margin-bottom: 10px;
  line-height: 1.2;
}
.social li:last-of-type {
  margin-bottom: 0;
}
.social a {
  padding-left: 40px;
  font-size: 10px;
  line-height: 24px;
  text-transform: uppercase;
  font-weight: 700;
  display: inline-block;
}
@media all and (max-width: 767px) {
  .social a {
    font-size: 14px;
  }
}

.face-book {
  background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzY1N182MjcxKSI+CjxwYXRoIGQ9Ik0xNC4yNDk3IDAuNTE1NjQ1QzE0LjgwOSAwLjUxNTY0NSAxNS4zNzIgMC41NDc3NTggMTUuOTMwMiAwLjU3NDczM0MxNi4yOTY1IDAuNTkwMTQ3IDE2LjY2MjkgMC42NDUzODEgMTcgMC42ODM5MTdMMTYuOTc0NCA0LjIyNTM0SDE2LjcwNjlDMTYuMzQwNSA0LjIyNTM0IDE1Ljk2OCA0LjIyNTM0IDE1LjU5OCA0LjIyNTM0QzE1LjMyMDggNC4yMjUzNCAxNS4wNDM1IDQuMjI1MzQgMTQuNzY2MyA0LjIzODE5QzEzLjg3NDggNC4yNjkwMiAxMy4yMTc3IDQuNjIzNTQgMTMuMTcyNSA1Ljc5Mzc0QzEzLjE0NDQgNi42Mzc2NyAxMy4xMjM3IDguNTAyOCAxMy4xMjI1IDguNjAwNDJDMTMuMTY4OSA4LjYwMDQyIDE0LjA1MDYgOC42MDA0MiAxNC45Mzg1IDguNjAwNDJDMTUuMzgzIDguNjAwNDIgMTUuODE2NiA4LjYwMDQyIDE2LjExODIgOC42MDA0MkgxNi44NEMxNi42NTkzIDkuOTYwNzMgMTYuNDkzMiAxMS4yNjcxIDE2LjMxMjQgMTIuNTgyNEgxMy4xMjI1TDEzLjA1MDQgMjIuNTIwOEg5LjEzMjU2TDkuMjA0NjIgMTIuNTY1N0g2TDYuMDI4MDkgOC42MDgxM0g5LjI0NzM2VjguMzExNDFDOS4yNDczNiA3LjUxMzcyIDkuMjQ3MzYgNi43MTYwMyA5LjI3MTc5IDUuOTE4MzRDOS4yNzU5MyA1LjQxMDE1IDkuMzE2NzYgNC45MDMwMiA5LjM5MzkyIDQuNDAxMzJDOS40ODAzMiAzLjgxMjk2IDkuNjc2NzkgMy4yNDg0NSA5Ljk3MTk0IDIuNzQwNDZDMTAuMjY3MSAyLjIzMjQ2IDEwLjY1NTEgMS43OTEwNiAxMS4xMTM1IDEuNDQxNzhDMTEuOTQyNiAwLjgzNjAxMyAxMi45Mjg3IDAuNTEyNzIzIDEzLjkzODMgMC41MTU2NDVIMTQuMjQ5N1oiIGZpbGw9IiMwMDE4NUMiLz4KPC9nPgo8ZGVmcz4KPGNsaXBQYXRoIGlkPSJjbGlwMF82NTdfNjI3MSI+CjxyZWN0IHdpZHRoPSIxMSIgaGVpZ2h0PSIyMiIgZmlsbD0id2hpdGUiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDYgMC41MTU2MjUpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==) no-repeat;
}

.email {
  background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzY1N182Mjc2KSI+CjxwYXRoIGQ9Ik0xNC43MDMxIDExLjkxNzNMMjAuNDk2OSAxNy4yNjE2VjYuNzg1MTZMMTQuNzAzMSAxMS45MTczWiIgZmlsbD0iIzAwMTg1QyIvPgo8bWFzayBpZD0ibWFzazBfNjU3XzYyNzYiIHN0eWxlPSJtYXNrLXR5cGU6bHVtaW5hbmNlIiBtYXNrVW5pdHM9InVzZXJTcGFjZU9uVXNlIiB4PSIzIiB5PSI2IiB3aWR0aD0iMTgiIGhlaWdodD0iMTMiPgo8cGF0aCBkPSJNMjAuNSA2SDMuNVYxOC4wMDFIMjAuNVY2WiIgZmlsbD0id2hpdGUiLz4KPC9tYXNrPgo8ZyBtYXNrPSJ1cmwoI21hc2swXzY1N182Mjc2KSI+CjxwYXRoIGQ9Ik0zLjUgNi41NzQyMkMzLjUgNi41ODA0IDMuNSA2LjU4NTU1IDMuNSA2LjU5MTczVjE3LjE4ODdMOS4yOTA3NSAxMS44NTA2TDMuNSA2LjU3NDIyWiIgZmlsbD0iIzAwMTg1QyIvPgo8cGF0aCBkPSJNMTMuMDU5NSAxMi4xMTY5TDE5Ljk1NjkgNi4wMDgyNEMxOS45NTA4IDYuMDA3MjEgMTkuOTMzNSA2IDE5LjkxOTMgNkg0LjI3MzQ0TDEwLjk2NzkgMTIuMTAwNEMxMS4yNTUyIDEyLjM2MTYgMTEuNjI2NCAxMi41MDcyIDEyLjAxMTkgMTIuNTEwMUMxMi4zOTczIDEyLjUxMjkgMTIuNzcwNiAxMi4zNzI3IDEzLjA2MTUgMTIuMTE1OSIgZmlsbD0iIzAwMTg1QyIvPgo8cGF0aCBkPSJNMTMuNjcwOCAxMi44MzA1QzEzLjIwNzkgMTMuMjM5MiAxMi42MTQgMTMuNDYyMiAxMi4wMDA3IDEzLjQ1NzZDMTEuMzg3MyAxMy40NTMxIDEwLjc5NjcgMTMuMjIxMyAxMC4zMzk4IDEyLjgwNThMOS45ODc3OSAxMi40ODQ0TDQuMDE5NTMgMTcuOTg2M0M0LjAzOTU4IDE3Ljk5MTUgNC4wNTk5IDE3Ljk5NTcgNC4wODAzOSAxNy45OTg3SDE5LjkwODlMMTMuOTkyMyAxMi41NDUyTDEzLjY3MDggMTIuODMwNVoiIGZpbGw9IiMwMDE4NUMiLz4KPC9nPgo8L2c+CjxkZWZzPgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzY1N182Mjc2Ij4KPHJlY3Qgd2lkdGg9IjE3IiBoZWlnaHQ9IjEyIiBmaWxsPSJ3aGl0ZSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMy41IDYpIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==) no-repeat;
}

.youtube {
  background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTIwLjMzMDcgOC41OTk0MUMyMC4zMzA3IDguNTk5NDEgMjAuMTY0NiA3LjQyNzM0IDE5LjY1MzMgNi45MTI3QzE5LjAwNTkgNi4yMzUzNSAxOC4yODIgNi4yMzIwMyAxNy45NSA2LjE5MjE5QzE1LjU3MjcgNi4wMTk1MyAxMi4wMDMzIDYuMDE5NTMgMTIuMDAzMyA2LjAxOTUzSDExLjk5NjdDMTEuOTk2NyA2LjAxOTUzIDguNDI3MzQgNi4wMTk1MyA2LjA1IDYuMTkyMTlDNS43MTc5NyA2LjIzMjAzIDQuOTk0MTQgNi4yMzUzNSA0LjM0NjY4IDYuOTEyN0MzLjgzNTM1IDcuNDI3MzQgMy42NzI2NiA4LjU5OTQxIDMuNjcyNjYgOC41OTk0MUMzLjY3MjY2IDguNTk5NDEgMy41IDkuOTc3MzQgMy41IDExLjM1MlYxMi42NDAyQzMuNSAxNC4wMTQ4IDMuNjY5MzQgMTUuMzkyOCAzLjY2OTM0IDE1LjM5MjhDMy42NjkzNCAxNS4zOTI4IDMuODM1MzUgMTYuNTY0OCA0LjM0MzM2IDE3LjA3OTVDNC45OTA4MiAxNy43NTY4IDUuODQwODIgMTcuNzMzNiA2LjIxOTM0IDE3LjgwNjZDNy41ODA2NiAxNy45MzYxIDEyIDE3Ljk3NiAxMiAxNy45NzZDMTIgMTcuOTc2IDE1LjU3MjcgMTcuOTY5MyAxNy45NSAxNy44QzE4LjI4MiAxNy43NjAyIDE5LjAwNTkgMTcuNzU2OCAxOS42NTMzIDE3LjA3OTVDMjAuMTY0NiAxNi41NjQ4IDIwLjMzMDcgMTUuMzkyOCAyMC4zMzA3IDE1LjM5MjhDMjAuMzMwNyAxNS4zOTI4IDIwLjUgMTQuMDE4MiAyMC41IDEyLjY0MDJWMTEuMzUyQzIwLjUgOS45NzczNCAyMC4zMzA3IDguNTk5NDEgMjAuMzMwNyA4LjU5OTQxWk0xMC4yNDM2IDE0LjIwNDFWOS40MjYxN0wxNC44MzU1IDExLjgyMzRMMTAuMjQzNiAxNC4yMDQxWiIgZmlsbD0iIzAwMTg1QyIvPgo8L3N2Zz4K) no-repeat;
}

.insta {
  background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTE0LjU1OCA2LjY0NDUzSDkuMzkzMjRDOC42ODg5NSA2LjY0NDUzIDguMDI1MTQgNi45MTk3NyA3LjUyMzI0IDcuNDIxNjdDNy4wMjEzMyA3LjkyMzU4IDYuNzQ2MDkgOC41ODczOSA2Ljc0NjA5IDkuMjkxNjdWMTQuNzk2NEM2Ljc0NjA5IDE1LjUwMDcgNy4wMjEzMyAxNi4xNjQ1IDcuNTIzMjQgMTYuNjY2NEM4LjAyNTE0IDE3LjE2ODMgOC42ODg5NSAxNy40NDM2IDkuMzkzMjQgMTcuNDQzNkgxNC41NThDMTUuMjYyMyAxNy40NDM2IDE1LjkyNjEgMTcuMTY4MyAxNi40MjggMTYuNjY2NEMxNi45Mjk5IDE2LjE2NDUgMTcuMjA1MSAxNS41MDA3IDE3LjIwNTEgMTQuNzk2NFY5LjI5MTY3QzE3LjIwNTEgOC41ODczOSAxNi45Mjk5IDcuOTIzNTggMTYuNDI4IDcuNDIxNjdDMTUuOTI2MSA2LjkxOTc3IDE1LjI2MjMgNi42NDQ1MyAxNC41NTggNi42NDQ1M1pNMTEuOTkxOCAxNS4zOTU1QzEwLjExMzcgMTUuMzk1NSA4LjU5MTgxIDEzLjg3MzYgOC41OTE4MSAxMS45OTU1QzguNTkxODEgMTAuMTE3NCAxMC4xMTM3IDguNTk1NDggMTEuOTkxOCA4LjU5NTQ4QzEzLjg2OTkgOC41OTU0OCAxNS4zOTE4IDEwLjExNzQgMTUuMzkxOCAxMS45OTU1QzE1LjM5OTkgMTMuODczNiAxMy44Njk5IDE1LjM5NTUgMTEuOTkxOCAxNS4zOTU1Wk0xNS40NDg1IDkuMzQwMjVDMTUuMDAzMiA5LjM0MDI1IDE0LjYzOSA4Ljk3NTk2IDE0LjYzOSA4LjUzMDcyQzE0LjYzOSA4LjA4NTQ4IDE1LjAwMzIgNy43MjEyIDE1LjQ0ODUgNy43MjEyQzE1Ljg5MzcgNy43MjEyIDE2LjI1OCA4LjA4NTQ4IDE2LjI1OCA4LjUzMDcyQzE2LjI1OCA4Ljk4NDA2IDE1Ljg5MzcgOS4zNDAyNSAxNS40NDg1IDkuMzQwMjVaIiBmaWxsPSIjMDAxODVDIi8+CjxwYXRoIGQ9Ik0xNi44MDA1IDMuNTE5NTNINy4xOTk1MkM1LjE1OTUyIDMuNTE5NTMgMy41IDUuMTg3MTUgMy41IDcuMjM1MjVWMTYuNzYzM0MzLjUgMTguODE5NSA1LjE1OTUyIDIwLjQ3OTEgNy4xOTk1MiAyMC40NzkxSDE2LjgwMDVDMTguODQwNSAyMC40NzkxIDIwLjUgMTguODExNCAyMC41IDE2Ljc2MzNWNy4yMzUyNUMyMC41IDUuMTg3MTUgMTguODQwNSAzLjUxOTUzIDE2LjgwMDUgMy41MTk1M1pNMTguMTUyNCAxNC43OTYyQzE4LjE1MjQgMTYuNzcxNCAxNi41MzMzIDE4LjM5MDUgMTQuNTU4MSAxOC4zOTA1SDkuMzkzMzNDNy40MTgxIDE4LjM5MDUgNS43OTkwNSAxNi43NzE0IDUuNzk5MDUgMTQuNzk2MlY5LjI5MTQ0QzUuNzk5MDUgNy4zMTYyIDcuNDE4MSA1LjY5NzE1IDkuMzkzMzMgNS42OTcxNUgxNC41NTgxQzE2LjUzMzMgNS42OTcxNSAxOC4xNTI0IDcuMzE2MiAxOC4xNTI0IDkuMjkxNDRWMTQuNzk2MloiIGZpbGw9IiMwMDE4NUMiLz4KPHBhdGggZD0iTTExLjk3NjIgMTQuMjIxOUMxMy4yMDU3IDE0LjIyMTkgMTQuMjAyNCAxMy4yMjUyIDE0LjIwMjQgMTEuOTk1N0MxNC4yMDI0IDEwLjc2NjIgMTMuMjA1NyA5Ljc2OTUzIDExLjk3NjIgOS43Njk1M0MxMC43NDY3IDkuNzY5NTMgOS43NSAxMC43NjYyIDkuNzUgMTEuOTk1N0M5Ljc1IDEzLjIyNTIgMTAuNzQ2NyAxNC4yMjE5IDExLjk3NjIgMTQuMjIxOVoiIGZpbGw9IiMwMDE4NUMiLz4KPC9zdmc+Cg==) no-repeat;
}

.policy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 700;
  text-transform: uppercase;
  opacity: 0.5;
  line-height: 1.2;
}
.policy a {
  font-size: 14px;
  line-height: 1.2;
  color: #00185C;
}
@media all and (max-width: 767px) {
  .policy a {
    font-size: 10px;
  }
}
@media all and (max-width: 767px) {
  .policy {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.policy li {
  margin-right: 32px;
}

.scroll-slider-holder {
  position: relative;
  z-index: 1;
  height: 100vh;
  height: 100dvh;
  min-height: -webkit-fit-content;
  min-height: -moz-fit-content;
  min-height: fit-content;
  width: 100%;
}
.scroll-slider-holder .slick-slide {
  position: relative;
  padding: 100px 0 112px;
  height: 100vh;
  height: 100dvh;
}
@media all and (max-width: 980px) {
  .scroll-slider-holder .slick-slide {
    padding: 100px 0 0;
  }
}
.scroll-slider-holder .slick-dots {
  margin-top: -100px;
  position: relative;
  margin-bottom: 0;
}
@media all and (max-height: 605px) {
  .scroll-slider-holder .slick-dots {
    margin-top: -69px;
  }
}
.scroll-slider-holder .actions.actions-visible {
  margin-bottom: 0;
}
@media all and (max-width: 767px) {
  .scroll-slider-holder .actions.actions-visible {
    margin-top: -100px;
  }
}
@media all and (max-height: 605px) {
  .scroll-slider-holder .actions.actions-visible {
    margin-top: -80px;
  }
}
@media all and (min-width: 981px) {
  .end-line:after {
    content: "";
    display: block;
    position: absolute;
    right: 0;
    top: 50%;
    width: 13.67%;
    height: 1px;
    background: #00185C;
  }
  .start-line:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
    width: 13.67%;
    height: 1px;
    background: #00185C;
  }
}
.scroll-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: calc(100vh - 246px);
  min-height: -webkit-fit-content;
  min-height: -moz-fit-content;
  min-height: fit-content;
}
@media all and (max-width: 768px) {
  .scroll-slide {
    height: calc(100vh - 100px);
    min-height: calc(100vh - 100px);
    height: calc(100dvh - 100px);
    min-height: calc(100dvh - 100px);
  }
}
.scroll-slide figure {
  position: relative;
}
.scroll-slide figure img {
  margin: -32px auto 28px;
}
@media all and (max-width: 767px) {
  .scroll-slide figure img {
    max-width: 90%;
  }
}
.scroll-slide figure .h5 {
  margin-bottom: 10px;
}
.scroll-slide figure figcaption {
  margin: 0 auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.scroll-slide figure figcaption.over-image {
  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 all and (min-width: 981px) {
  .scroll-slide figure figcaption.over-image {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -25%;
    margin-left: -25%;
  }
}

.indent {
  text-indent: 54px;
}
@media all and (max-width: 450px) {
  .indent {
    text-indent: 0;
  }
}

.second-indent {
  text-indent: 140px;
}

.highlighted {
  padding: 2px 8px;
  border-radius: 60px;
  text-transform: uppercase;
  background: #FFE23F;
  line-height: 34px;
}

.action-text {
  position: relative;
  z-index: 1;
  font-size: 14px;
}
@media all and (max-width: 767px) {
  .action-text {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    margin: 0;
  }
}

.skip {
  background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMTciIHZpZXdCb3g9IjAgMCAyMSAxNyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTIwLjQwMTUgOC41ODg4NUMyMC40MzU3IDguNTYxMzggMjAuNDYzIDguNTIyMjIgMjAuNDgwMSA4LjQ3NTk4QzIwLjQ5NzMgOC40Mjk3NCAyMC41MDM1IDguMzc4MzMgMjAuNDk4MSA4LjMyNzgxQzIwLjQ5MzggOC4yMjg0OSAyMC40NTkyIDguMTM1MDYgMjAuNDAxNSA4LjA2Njc2TDEzLjAxMDkgMC4xNTI4NEMxMi45MTQ2IDAuMDYxNjExMiAxMi43OTg3IDAuMDA4NzA4OTUgMTIuNjc4MSAwLjAwMDk4MjI4NUMxMi41NTc2IC0wLjAwNjc0MjQ4IDEyLjQzNzkgMC4wMzEwNjMxIDEyLjMzNDcgMC4xMDk1MDdDMTIuMTQxOCAwLjI4MzM2MyAxMi4wOTMxIDAuNTQ0NDEzIDEyLjI4NjQgMC43MTgyNjlMMTkuMDAwMyA3Ljg5MjlMMC45ODMyODggNy44OTI5QzAuNjkxNjQ5IDcuODkyOSAwLjUgOC4wNjY3NiAwLjUgOC4zMjc4MUMwLjUgOC41ODg4NSAwLjY5Mjg5OSA4Ljc2MjcxIDAuOTgzMjg4IDguNzYyNzFIMTkuMDAwM0wxMi4yMzgxIDE1Ljk4MzhDMTIuMTk2NyAxNi4wMTkgMTIuMTYzOCAxNi4wNjc2IDEyLjE0MjYgMTYuMTI0M0MxMi4xMjE1IDE2LjE4MSAxMi4xMTI5IDE2LjI0MzkgMTIuMTE3OSAxNi4zMDYyQzEyLjEyMjggMTYuMzY4NSAxMi4xNDExIDE2LjQyOCAxMi4xNzA3IDE2LjQ3ODRDMTIuMjAwNCAxNi41Mjg4IDEyLjI0MDQgMTYuNTY4MiAxMi4yODY0IDE2LjU5MjZDMTIuMzg5NiAxNi42NzE0IDEyLjUwOTUgMTYuNzA5MiAxMi42MzAyIDE2LjcwMUMxMi43NTA5IDE2LjY5MjggMTIuODY2OCAxNi42MzkgMTIuOTYyNiAxNi41NDY2TDIwLjQwMTUgOC41ODg4NVoiIGZpbGw9IiMwMTNBQzUiLz4KPC9zdmc+Cg==) no-repeat 100% 50%;
  padding-right: 30px;
  color: #013AC5;
  position: relative;
  z-index: 1;
  font-size: 14px;
  -webkit-transition: all ease 1s;
  transition: all ease 1s;
}
@media all and (max-width: 767px) {
  .skip {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-bottom: 7px;
  }
}
@media all and (max-height: 605px) {
  .skip {
    margin-bottom: 3px;
  }
}
.skip:hover {
  text-decoration: none;
  background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMTciIHZpZXdCb3g9IjAgMCAyMSAxNyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTIwLjQwMTUgOC41ODg4NUMyMC40MzU3IDguNTYxMzggMjAuNDYzIDguNTIyMjIgMjAuNDgwMSA4LjQ3NTk4QzIwLjQ5NzMgOC40Mjk3NCAyMC41MDM1IDguMzc4MzMgMjAuNDk4MSA4LjMyNzgxQzIwLjQ5MzggOC4yMjg0OSAyMC40NTkyIDguMTM1MDYgMjAuNDAxNSA4LjA2Njc2TDEzLjAxMDkgMC4xNTI4NEMxMi45MTQ2IDAuMDYxNjExMiAxMi43OTg3IDAuMDA4NzA4OTUgMTIuNjc4MSAwLjAwMDk4MjI4NUMxMi41NTc2IC0wLjAwNjc0MjQ4IDEyLjQzNzkgMC4wMzEwNjMxIDEyLjMzNDcgMC4xMDk1MDdDMTIuMTQxOCAwLjI4MzM2MyAxMi4wOTMxIDAuNTQ0NDEzIDEyLjI4NjQgMC43MTgyNjlMMTkuMDAwMyA3Ljg5MjlMMC45ODMyODggNy44OTI5QzAuNjkxNjQ5IDcuODkyOSAwLjUgOC4wNjY3NiAwLjUgOC4zMjc4MUMwLjUgOC41ODg4NSAwLjY5Mjg5OSA4Ljc2MjcxIDAuOTgzMjg4IDguNzYyNzFIMTkuMDAwM0wxMi4yMzgxIDE1Ljk4MzhDMTIuMTk2NyAxNi4wMTkgMTIuMTYzOCAxNi4wNjc2IDEyLjE0MjYgMTYuMTI0M0MxMi4xMjE1IDE2LjE4MSAxMi4xMTI5IDE2LjI0MzkgMTIuMTE3OSAxNi4zMDYyQzEyLjEyMjggMTYuMzY4NSAxMi4xNDExIDE2LjQyOCAxMi4xNzA3IDE2LjQ3ODRDMTIuMjAwNCAxNi41Mjg4IDEyLjI0MDQgMTYuNTY4MiAxMi4yODY0IDE2LjU5MjZDMTIuMzg5NiAxNi42NzE0IDEyLjUwOTUgMTYuNzA5MiAxMi42MzAyIDE2LjcwMUMxMi43NTA5IDE2LjY5MjggMTIuODY2OCAxNi42MzkgMTIuOTYyNiAxNi41NDY2TDIwLjQwMTUgOC41ODg4NVoiIGZpbGw9IiMwMDE4NUMiLz4KPC9zdmc+Cg==) no-repeat 100% 50%;
  color: #00185C;
}

.arrows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
  z-index: 1;
}
@media all and (max-width: 767px) {
  .arrows {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin-bottom: 7px;
  }
}
@media all and (max-height: 605px) {
  .arrows {
    margin-bottom: 3px;
  }
}
.arrows button {
  background: none;
  border: 1px solid #00185C;
  border-radius: 24px;
}
.arrows .slick-arrow {
  position: static;
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
.arrows .slick-arrow.next {
  -webkit-transform: scale(-1);
          transform: scale(-1);
  margin-left: 4px;
}
.map {
  width: 100%;
  height: 100%;
  background: #fff;
  position: relative;
  z-index: 1;
}
@media all and (max-width: 980px) {
  .map {
    height: calc(100vh - 112px) !important;
    height: calc(100dvh - 112px) !important;
  }
}
@media all and (max-width: 767px) {
  .map {
    height: calc(100dvh - 246px) !important;
    -ms-flex-item-align: start;
        align-self: flex-start;
  }
}

.bg-holder:after {
  background: url("../images/design/About%20(Hero).14e16a.png");
}

.about-hero {
  max-width: 1280px;
  height: 100vh;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  min-height: 610px;
}
@media all and (max-width: 980px) {
  .about-hero {
    padding-top: 100px;
    min-height: auto;
  }
}
.about-hero .slick-dots {
  padding-left: 0;
}

.about-hero-slider {
  display: none;
}
.about-hero-slider.slick-initialized {
  display: block;
}
.about-hero-slider.slick-initialized .about-hero-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.about-hero-slider .slick-dots {
  z-index: 1;
  position: relative;
}
@media all and (min-width: 981px) {
  .about-hero-slider .slick-dots {
    margin-top: -51px;
  }
}

.about-hero-slide {
  display: none;
  min-height: 528px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 0 20px;
}
@media all and (min-width: 981px) {
  .about-hero-slide .h1 {
    max-width: 505px;
  }
  .about-hero-slide .h1.small-title {
    max-width: 460px;
  }
  .about-hero-slide img {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -230px;
    margin-left: -25%;
    max-height: 425px;
    z-index: -1;
  }
}
@media all and (max-width: 980px) {
  .about-hero-slide {
    -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;
    min-height: 60vh;
    height: calc(100vh - 200px);
  }
  .about-hero-slide img {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
    max-width: 90%;
  }
}
@media all and (max-width: 767px) {
  .about-hero-slide .h1 {
    font-size: 32px;
    text-align: center;
  }
}
.about-hero-slide .end {
  -ms-flex-item-align: end;
      align-self: flex-end;
  text-align: end;
}
@media all and (max-width: 980px) {
  .about-hero-slide .end {
    text-align: center;
    -ms-flex-item-align: center;
        align-self: center;
  }
}

.flip-cards-block .container {
  max-width: 880px;
}
@media all and (max-width: 767px) {
  .flip-cards-block .h2 {
    line-height: 40px;
  }
}

.left-indent {
  padding-left: 15%;
  margin-bottom: 0;
}
@media all and (max-width: 767px) {
  .left-indent {
    padding-left: 0;
  }
}

.right-indent {
  padding-right: 15%;
  text-align: right;
}
@media all and (max-width: 767px) {
  .right-indent {
    text-align: left;
  }
}
@media all and (max-width: 485px) {
  .right-indent {
    padding-right: 0;
  }
}

.flip-cards {
  margin-top: 20px;
}
@media all and (min-width: 980px) {
  .flip-cards {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media all and (max-width: 980px) {
  .flip-cards {
    margin-bottom: 32px;
  }
}

.flip-card {
  margin: 0 20px 20px 0;
  width: 190px;
  height: 260px;
  -webkit-perspective: 1000px;
          perspective: 1000px;
  cursor: pointer;
}

.flip-card-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  -webkit-transition: -webkit-transform 0.6s;
  transition: -webkit-transform 0.6s;
  transition: transform 0.6s;
  transition: transform 0.6s, -webkit-transform 0.6s;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  display: block;
}

.flip-card.is-flipped .flip-card-wrapper {
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}

@media all and (min-width: 981px) {
  .flip-card:hover .flip-card-wrapper {
    -webkit-transform: rotateY(180deg);
            transform: rotateY(180deg);
  }
}
.flip-card-wrapper > * {
  pointer-events: none;
}

.flip-card-image {
  width: 100%;
  height: 100%;
  border: 1px solid #00185C;
  border-radius: 7px;
  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;
  padding: 28px;
  position: absolute;
  cursor: pointer;
  z-index: 2;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  background: url(../images/design/grain.37bb79.png) no-repeat;
}
.flip-card-image > img {
  margin: auto;
}

.flip-card-back {
  z-index: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  border-radius: 7px;
  border: 1px solid #00185C;
  font-size: 12px;
  line-height: 16px;
  padding: 16px;
  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;
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
  position: absolute;
  top: 0;
  left: 0;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.flip-card-back span {
  color: #013AC5;
}
.flip-card-back .flip-icon svg {
  fill: #013AC5;
  stroke: #013AC5;
}
.flip-card-back .flip-icon svg .st3 {
  fill: #013AC5;
  stroke: #013AC5;
}
.flip-card-back .flip-icon svg path {
  fill: #013AC5;
  stroke: #013AC5;
}

.flip-icon {
  width: 32px;
  height: 32px;
  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: absolute;
  top: 15px;
  right: 15px;
}
.flip-icon svg {
  max-width: 92%;
  max-height: 92%;
}
.flip-icon img {
  width: 30px;
  height: 30px;
}

.card-title {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 14px;
}

.recognition-block {
  overflow: hidden;
}

.recognition-holder {
  position: relative;
}
.recognition-holder:before {
  content: "";
  display: block;
  position: absolute;
  right: 100%;
  top: 0;
  background: #EFF8FF url(../images/design/grain.37bb79.png);
  width: 100%;
  height: 100%;
  z-index: 1;
}
.recognition-holder .h2 {
  width: 300px;
  float: left;
  margin-bottom: 24px;
  position: relative;
  line-height: 1.2;
  z-index: 2;
}
@media all and (max-width: 980px) {
  .recognition-holder .h2 {
    float: none;
    width: 275px;
    line-height: 40px;
    margin-bottom: 40px;
  }
}

.recognition-slider {
  padding-bottom: 60px;
}
.recognition-slider .slick-arrow {
  bottom: 0;
}
.recognition-slider .slick-dots {
  margin: 57px auto 0;
}
@media all and (max-width: 767px) {
  .recognition-slider {
    padding-bottom: 36px;
  }
}
.recognition-slider .slick-list {
  overflow: visible;
}
@media all and (min-width: 981px) {
  .recognition-slider .slick-list {
    margin-left: 50%;
    position: relative;
  }
  .recognition-slider .slick-list:before {
    content: "";
    display: block;
    position: absolute;
    right: 100%;
    top: 0;
    background: #EFF8FF url(../images/design/grain.37bb79.png);
    width: 100%;
    height: 100%;
    z-index: 1;
  }
}
.recognition-slider .slick-list .img {
  border-radius: 7px;
  border: 1px solid #00185C;
  margin: 0 20px 16px 0;
  width: 295px;
  height: 372px;
  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;
  overflow: hidden;
  background: #fff;
}
.recognition-slider .slick-list .img img {
  max-width: 100%;
}
.recognition-slider .slick-list .description {
  font-weight: 700;
  width: 295px;
}
.recognition-slider .slick-list a:hover {
  text-decoration: none;
}

.history {
  background: #00185C;
  color: #fff;
  overflow: hidden;
}
.history:after {
  background: url("../images/design/About%20(the%20history).e918bb.png");
}
.history .container {
  position: relative;
  z-index: 1;
}
@media all and (max-width: 980px) {
  .history .container {
    padding-bottom: 56px;
  }
}

.event {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 55px;
}
@media all and (max-width: 980px) {
  .event {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 24px;
  }
}
.event__info {
  -ms-flex-preferred-size: 33%;
      flex-basis: 33%;
  margin-bottom: 24px;
}
.event__info .h2 {
  color: #fff;
  margin-bottom: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media all and (max-width: 980px) {
  .event__info .h2 {
    margin-bottom: 24px;
  }
}
.event__info .h2 span {
  color: #fff;
}
.event__info p {
  color: #fff;
}
@media all and (max-width: 980px) {
  .event__info p {
    font-size: 14px;
    line-height: 20px;
  }
  .event__info p:last-of-type {
    margin-bottom: 0;
  }
}
.event__img {
  -ms-flex-preferred-size: 57%;
      flex-basis: 57%;
  border-radius: 6px;
  overflow: hidden;
  margin: 0 auto;
}
.event__img img {
  max-width: 100%;
  height: auto;
}

.loading-bar {
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAloAAAACCAYAAACAGXJZAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAADBSURBVHgB7ZTNCcJAEIXfCEYFD9kKYgfagXagHWgHKUEsISWkA+1AO9AOYgXJQYg/kHHYxKsgoo4w32WXby6PYXiUnzkG4eg6tIaQn3iENqaoObzkCZkLKPW+5AFamKv3zCGuiL1nFK5LiUbvZxdePv6y/9U/eARIHFHhfX1roXpf8kJuJfK+Qup6lKn3N2xcn/bN/mfyDFX6CjvJv23yTyT/WL1/pxN/5a2LrYthXfw1/6z7GFELhmEYhmEYxke4A3K1JHdN6OBZAAAAAElFTkSuQmCC) repeat-x 0 20px;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  counter-reset: my-awesome-counter;
  position: relative;
}
@media all and (max-width: 980px) {
  .loading-bar {
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAloAAAACCAYAAACAGXJZAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAADBSURBVHgB7ZTNCcJAEIXfCEYFD9kKYgfagXagHWgHKUEsISWkA+1AO9AOYgXJQYg/kHHYxKsgoo4w32WXby6PYXiUnzkG4eg6tIaQn3iENqaoObzkCZkLKPW+5AFamKv3zCGuiL1nFK5LiUbvZxdePv6y/9U/eARIHFHhfX1roXpf8kJuJfK+Qup6lKn3N2xcn/bN/mfyDFX6CjvJv23yTyT/WL1/pxN/5a2LrYthXfw1/6z7GFELhmEYhmEYxke4A3K1JHdN6OBZAAAAAElFTkSuQmCC) repeat-x 0 15px;
  }
}
.loading-bar:after {
  content: "";
  display: block;
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAloAAAACCAYAAACAGXJZAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAADBSURBVHgB7ZTNCcJAEIXfCEYFD9kKYgfagXagHWgHKUEsISWkA+1AO9AOYgXJQYg/kHHYxKsgoo4w32WXby6PYXiUnzkG4eg6tIaQn3iENqaoObzkCZkLKPW+5AFamKv3zCGuiL1nFK5LiUbvZxdePv6y/9U/eARIHFHhfX1roXpf8kJuJfK+Qup6lKn3N2xcn/bN/mfyDFX6CjvJv23yTyT/WL1/pxN/5a2LrYthXfw1/6z7GFELhmEYhmEYxke4A3K1JHdN6OBZAAAAAElFTkSuQmCC) repeat-x 0 20px;
  position: absolute;
  left: 100%;
  top: 0;
  width: 100%;
  height: 100%;
}
@media all and (max-width: 980px) {
  .loading-bar:after {
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAloAAAACCAYAAACAGXJZAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAADBSURBVHgB7ZTNCcJAEIXfCEYFD9kKYgfagXagHWgHKUEsISWkA+1AO9AOYgXJQYg/kHHYxKsgoo4w32WXby6PYXiUnzkG4eg6tIaQn3iENqaoObzkCZkLKPW+5AFamKv3zCGuiL1nFK5LiUbvZxdePv6y/9U/eARIHFHhfX1roXpf8kJuJfK+Qup6lKn3N2xcn/bN/mfyDFX6CjvJv23yTyT/WL1/pxN/5a2LrYthXfw1/6z7GFELhmEYhmEYxke4A3K1JHdN6OBZAAAAAElFTkSuQmCC) repeat-x 0 15px;
  }
}
.loading-bar .slick-dots {
  padding-left: 0;
  margin: 57px auto 0;
  padding-bottom: 0;
}
.loading-bar .slick-dots li button {
  border-color: #fff;
}
.loading-bar .slick-dots li.slick-active button {
  background: #fff;
  -webkit-box-shadow: 0 0 0 3px #fff;
          box-shadow: 0 0 0 3px #fff;
}
.loading-bar .slick-arrow {
  right: 0;
}
.loading-bar .slick-arrow.slick-prev {
  right: 72px;
}
.loading-bar .slick-arrow {
  border-color: #EFF8FF;
}
.loading-bar .slick-arrow:not(:hover) svg path {
  fill: #EFF8FF;
}
.loading-bar .slick-arrow:focus-within, .loading-bar .slick-arrow:focus, .loading-bar .slick-arrow:hover {
  background: #EFF8FF;
}
.loading-bar .slick-arrow:focus-within svg path, .loading-bar .slick-arrow:focus svg path, .loading-bar .slick-arrow:hover svg path {
  fill: #00185C;
}
.loading-bar .slick-arrow.slick-disabled {
  background: none;
  border-color: #A8A8A8;
}
.loading-bar .slick-arrow.slick-disabled svg path {
  fill: #A8A8A8;
}

.loading-bar-bullet {
  counter-increment: my-awesome-counter;
  position: relative;
  cursor: pointer;
}
.loading-bar-bullet .loading-bar-info {
  max-width: 440px;
  margin: 52px auto 0;
}
@media all and (max-width: 980px) {
  .loading-bar-bullet .loading-bar-info {
    margin: 46px auto 0;
  }
}
.loading-bar-bullet p {
  color: #fff;
  font-size: 16px;
}
.loading-bar-bullet .h4 {
  color: #fff;
  margin: 20px 0 16px;
}
@media all and (max-width: 980px) {
  .loading-bar-bullet .h4 {
    font-size: 24px;
  }
}

.loading-bar-bullet .loading-bar-info {
  opacity: 0.5;
}
.loading-bar-bullet::before {
  content: counter(my-awesome-counter);
  display: block;
  background: #FFFBFB;
  height: 16px;
  width: 16px;
  border-radius: 100px;
  position: absolute;
  z-index: 2;
  margin-top: 12px;
  cursor: pointer;
  font-size: 0;
  line-height: 0;
}

.slick-current.loading-bar-bullet .loading-bar-info {
  opacity: 1;
}
.slick-current.loading-bar-bullet::before {
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  color: #00185C;
  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;
  height: 40px;
  width: 40px;
  margin-top: 0;
}
@media all and (max-width: 980px) {
  .slick-current.loading-bar-bullet::before {
    font-size: 20px;
    line-height: 24px;
    height: 32px;
    width: 32px;
  }
}

.teams-block {
  scroll-margin-top: 100px;
}
@media all and (max-width: 767px) {
  .teams-block {
    padding-bottom: 20px;
  }
}
.teams-block .h2 {
  margin-bottom: 48px;
}
@media all and (max-width: 767px) {
  .teams-block .h2 {
    margin-bottom: 40px;
  }
}

.team-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-right: -20px;
  /*> div:nth-of-type(5){
    .team-item{
      margin-right: 0;
    }
  }*/
}
.team-items:not(:last-of-type) {
  margin-bottom: 40px;
}

.team-item {
  margin: 0 20px 20px 0;
  width: 232px;
  background: #A1D8FF;
  -webkit-box-shadow: 0 12px 24px 0 rgba(227, 236, 242, 0.5);
          box-shadow: 0 12px 24px 0 rgba(227, 236, 242, 0.5);
  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: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.team-item__img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 232px;
  height: 261px;
}
.team-item figcaption {
  background: #fff;
  padding: 12px;
  font-weight: 700;
}
.team-item figcaption .name {
  font-size: 20px;
  line-height: 24px;
}
.team-item figcaption .description {
  text-transform: uppercase;
  font-size: 10px;
  line-height: 12px;
  color: #013AC5;
}

.gallery-block {
  scroll-margin-top: 100px;
  background: #000B29 url(../images/design/bg-gallery.26c936.png);
  background-size: cover;
  position: relative;
}
.gallery-block:after {
  background: url("../images/design/About%20(Gallery).3d72b6.png");
}
.gallery-block ::-webkit-scrollbar {
  width: 1px;
  height: 1px;
}
.gallery-block ::-webkit-scrollbar-button {
  width: 1px;
  height: 1px;
}
.gallery-block .gallery {
  z-index: 1;
}

@media all and (min-width: 981px) {
  .external {
    overflow: hidden;
    height: 100vh;
    position: relative;
  }
}

.horizontal-scroll-wrapper {
  margin-bottom: 50px;
  padding: 190px 20px 0;
}
.horizontal-scroll-wrapper .slick-arrow {
  border-color: #EFF8FF;
}
.horizontal-scroll-wrapper .slick-arrow:not(:hover) svg path {
  fill: #EFF8FF;
}
.horizontal-scroll-wrapper .slick-arrow:focus-within, .horizontal-scroll-wrapper .slick-arrow:focus, .horizontal-scroll-wrapper .slick-arrow:hover {
  background: #EFF8FF;
}
.horizontal-scroll-wrapper .slick-arrow:focus-within svg path, .horizontal-scroll-wrapper .slick-arrow:focus svg path, .horizontal-scroll-wrapper .slick-arrow:hover svg path {
  fill: #00185C;
}
.horizontal-scroll-wrapper .slick-arrow.slick-disabled {
  background: none;
  border-color: #A8A8A8;
}
.horizontal-scroll-wrapper .slick-arrow.slick-disabled svg path {
  fill: #A8A8A8;
}
@media all and (min-width: 981px) {
  .horizontal-scroll-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;
    width: 100vh;
    -webkit-transform: rotate(-90deg) translate3d(0, -100vh, 0);
            transform: rotate(-90deg) translate3d(0, -100vh, 0);
    -webkit-transform-origin: right top;
            transform-origin: right top;
    overflow-y: auto;
    overflow-x: hidden;
    height: 100vw;
    -webkit-perspective: 1px;
            perspective: 1px;
    -webkit-transform-style: preserve-3d;
            transform-style: preserve-3d;
    padding: calc(7% + 200px) 0 10rem;
    margin-bottom: 0;
  }
}
@media all and (max-width: 767px) {
  .horizontal-scroll-wrapper {
    padding-top: 167px;
    padding-bottom: 15px;
  }
}

.img-wrapper {
  margin: 0 10px;
}
@media all and (min-width: 981px) {
  .img-wrapper {
    margin: 100px 0;
    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;
    -webkit-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
    -webkit-transform: rotate(90deg) translateZ(0.1px) scale(0.9) translateX(0px) translateY(-3vh);
            transform: rotate(90deg) translateZ(0.1px) scale(0.9) translateX(0px) translateY(-3vh);
    -webkit-transition: 1s;
    transition: 1s;
    border-radius: 7px;
  }
}

@media all and (min-width: 981px) {
  .img-wrapper:hover {
    -webkit-transform: rotate(90deg) translateZ(0.1px) scale(1) translateX(0px) translateY(-3vh);
            transform: rotate(90deg) translateZ(0.1px) scale(1) translateX(0px) translateY(-3vh);
    z-index: 1;
  }
}

@media all and (min-width: 981px) {
  .slower {
    -webkit-transform: rotate(90deg) translateZ(-0.2px) scale(1.1) translateX(0%) translateY(15vh);
            transform: rotate(90deg) translateZ(-0.2px) scale(1.1) translateX(0%) translateY(15vh);
  }
  .slower:hover {
    -webkit-transform: rotate(90deg) translateZ(-0.2px) scale(1.2) translateX(0%) translateY(15vh);
            transform: rotate(90deg) translateZ(-0.2px) scale(1.2) translateX(0%) translateY(15vh);
  }
  .slower img {
    max-width: 610px;
  }
  .slower1 {
    -webkit-transform: rotate(90deg) translateZ(-0.25px) scale(1.05) translateX(0%) translateY(8vh);
            transform: rotate(90deg) translateZ(-0.25px) scale(1.05) translateX(0%) translateY(8vh);
  }
  .slower1:hover {
    -webkit-transform: rotate(90deg) translateZ(-0.25px) scale(1.15) translateX(0%) translateY(8vh);
            transform: rotate(90deg) translateZ(-0.25px) scale(1.15) translateX(0%) translateY(8vh);
  }
  .slower2 {
    -webkit-transform: rotate(90deg) translateZ(-0.3px) scale(1.3) translateX(0%) translateY(2vh);
            transform: rotate(90deg) translateZ(-0.3px) scale(1.3) translateX(0%) translateY(2vh);
  }
  .slower2:hover {
    -webkit-transform: rotate(90deg) translateZ(-0.3px) scale(1.4) translateX(0%) translateY(2vh);
            transform: rotate(90deg) translateZ(-0.3px) scale(1.4) translateX(0%) translateY(2vh);
  }
  .slower-down {
    -webkit-transform: rotate(90deg) translateZ(-0.2px) scale(1.1) translateX(-22vh) translateY(19vh);
            transform: rotate(90deg) translateZ(-0.2px) scale(1.1) translateX(-22vh) translateY(19vh);
  }
  .slower-down:hover {
    -webkit-transform: rotate(90deg) translateZ(-0.2px) scale(1.2) translateX(-22vh) translateY(19vh);
            transform: rotate(90deg) translateZ(-0.2px) scale(1.2) translateX(-22vh) translateY(19vh);
  }
  .slower-down img {
    max-width: 175px;
  }
  .faster {
    -webkit-transform: rotate(90deg) translateZ(0.15px) scale(0.9) translateX(-22vh) translateY(-22vh);
            transform: rotate(90deg) translateZ(0.15px) scale(0.9) translateX(-22vh) translateY(-22vh);
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .faster:hover {
    -webkit-transform: rotate(90deg) translateZ(0.15px) scale(1) translateX(-22vh) translateY(-22vh);
            transform: rotate(90deg) translateZ(0.15px) scale(1) translateX(-22vh) translateY(-22vh);
  }
  .faster img {
    max-width: 295px;
  }
  .faster1 {
    -webkit-transform: rotate(90deg) translateZ(0.05px) scale(0.8) translateX(-22vh) translateY(10vh);
            transform: rotate(90deg) translateZ(0.05px) scale(0.8) translateX(-22vh) translateY(10vh);
  }
  .faster1:hover {
    -webkit-transform: rotate(90deg) translateZ(0.05px) scale(0.9) translateX(-22vh) translateY(10vh);
            transform: rotate(90deg) translateZ(0.05px) scale(0.9) translateX(-22vh) translateY(10vh);
  }
  .fastest {
    -webkit-transform: rotate(90deg) translateZ(0.22px) scale(0.7) translateX(-10vh) translateY(-15vh);
            transform: rotate(90deg) translateZ(0.22px) scale(0.7) translateX(-10vh) translateY(-15vh);
  }
  .fastest:hover {
    -webkit-transform: rotate(90deg) translateZ(0.22px) scale(0.8) translateX(-10vh) translateY(-15vh);
            transform: rotate(90deg) translateZ(0.22px) scale(0.8) translateX(-10vh) translateY(-15vh);
  }
  .vertical {
    -webkit-transform: rotate(90deg) translateZ(-0.15px) scale(1.15) translateX(-22vh) translateY(0%);
            transform: rotate(90deg) translateZ(-0.15px) scale(1.15) translateX(-22vh) translateY(0%);
  }
  .vertical:hover {
    -webkit-transform: rotate(90deg) translateZ(-0.15px) scale(1.25) translateX(-22vh) translateY(0%);
            transform: rotate(90deg) translateZ(-0.15px) scale(1.25) translateX(-22vh) translateY(0%);
  }
  .vertical img {
    max-width: 261px;
  }
  .vertical1 {
    -webkit-transform: rotate(90deg) translateZ(-0.15px) scale(1.15) translateX(-22vh) translateY(-20%);
            transform: rotate(90deg) translateZ(-0.15px) scale(1.15) translateX(-22vh) translateY(-20%);
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .vertical1:hover {
    -webkit-transform: rotate(90deg) translateZ(-0.15px) scale(1.25) translateX(-22vh) translateY(-20%);
            transform: rotate(90deg) translateZ(-0.15px) scale(1.25) translateX(-22vh) translateY(-20%);
  }
  .vertical1 img {
    max-width: 261px;
  }
  .last {
    -webkit-transform: rotate(90deg) translateZ(-0.2px) scale(1.1) translateX(25vh) translateY(-8vh);
            transform: rotate(90deg) translateZ(-0.2px) scale(1.1) translateX(25vh) translateY(-8vh);
  }
  .last:hover {
    -webkit-transform: rotate(90deg) translateZ(-0.2px) scale(1.2) translateX(25vh) translateY(-8vh);
            transform: rotate(90deg) translateZ(-0.2px) scale(1.2) translateX(25vh) translateY(-8vh);
  }
}
.img-wrapper a {
  overflow: hidden;
  display: block;
  border-radius: 7px;
}
.img-wrapper a img {
  max-height: 420px;
}
@media all and (min-width: 981px) {
  .img-wrapper a img {
    -webkit-transition: 0.5s;
    transition: 0.5s;
    vertical-align: top;
  }
}

.gallery-nav-holder {
  background: -webkit-gradient(linear, left top, right top, from(rgb(0, 11, 41)), to(rgba(0, 11, 41, 0)));
  background: linear-gradient(to right, rgb(0, 11, 41) 0%, rgba(0, 11, 41, 0) 100%);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: calc(7% + 235px);
  padding: 68px 0 0 7%;
  z-index: 10;
}
@media all and (max-width: 980px) {
  .gallery-nav-holder {
    padding: 40px 0 0 7%;
    width: 100%;
    bottom: auto;
    background: none;
  }
}
@media all and (max-width: 767px) {
  .gallery-nav-holder {
    padding: 40px 0 0 20px;
  }
}
.gallery-nav-holder .slick-arrow {
  border-color: #EFF8FF;
  bottom: 35px;
}
.gallery-nav-holder .slick-arrow:not(:hover) svg path {
  fill: #EFF8FF;
}
.gallery-nav-holder .slick-arrow:focus-within, .gallery-nav-holder .slick-arrow:focus, .gallery-nav-holder .slick-arrow:hover {
  background: #EFF8FF;
}
.gallery-nav-holder .slick-arrow:focus-within svg path, .gallery-nav-holder .slick-arrow:focus svg path, .gallery-nav-holder .slick-arrow:hover svg path {
  fill: #00185C;
}
.gallery-nav-holder .slick-arrow.slick-disabled {
  background: none;
  border-color: #A8A8A8;
}
.gallery-nav-holder .slick-arrow.slick-disabled svg path {
  fill: #A8A8A8;
}
.gallery-nav-holder .slick-slider {
  position: static;
}
.gallery-nav-holder .h2 {
  color: #fff;
  margin-bottom: 56px;
}
.gallery-nav-holder .h2 span {
  color: #fff;
}
@media all and (max-width: 980px) {
  .gallery-nav-holder .h2 {
    margin-bottom: 24px;
  }
}
.gallery-nav-holder .slick-dots {
  padding: 0;
  position: absolute;
  bottom: 0;
}
.gallery-nav-holder .slick-dots li button {
  border-color: #fff;
}
.gallery-nav-holder .slick-dots li.slick-active button {
  background: #fff;
  -webkit-box-shadow: 0 0 0 3px #fff;
          box-shadow: 0 0 0 3px #fff;
}

@media all and (min-width: 980px) {
  .horizontal-scroll-wrapper {
    overflow: hidden;
  }
}

.gallery-scroll-container-desktop {
  position: absolute;
  z-index: 999;
  bottom: 32px;
  right: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.gallery-scroll-container-desktop .trigger-horizontal-scroll {
  display: none;
  border-radius: 24px;
  width: 68px;
  height: 32px;
  border: 1px solid #fff;
  background: transparent;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media all and (min-width: 980px) {
  .gallery-scroll-container-desktop .trigger-horizontal-scroll {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.gallery-scroll-container-desktop .trigger-horizontal-scroll:not(:hover) svg path {
  fill: #EFF8FF;
}
.gallery-scroll-container-desktop .trigger-horizontal-scroll:hover {
  background: #fff;
  cursor: pointer;
}
.gallery-scroll-container-desktop .trigger-horizontal-scroll:hover svg path {
  fill: #00185C;
}
.gallery-scroll-container-desktop .trigger-horizontal-scroll.scroll-disabled {
  background: none;
  border-color: #A8A8A8;
  cursor: auto;
  pointer-events: none;
}
.gallery-scroll-container-desktop .trigger-horizontal-scroll.scroll-disabled svg path {
  fill: #A8A8A8;
}
.gallery-scroll-container-desktop .trigger-horizontal-scroll.gallery-prev-button-desktop {
  margin-right: 20px;
}
.gallery-scroll-container-desktop .trigger-horizontal-scroll.gallery-next-button-desktop {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.gallery-nav-item {
  overflow: hidden;
  margin-bottom: 16px;
}
.gallery-nav-item span {
  cursor: pointer;
  float: left;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: #EFF8FF;
  opacity: 0.5;
}
.gallery-nav-item span:hover:after {
  border-color: #fff;
}
.gallery-nav-item.slick-current span {
  letter-spacing: 8px;
  text-decoration: none;
  font-weight: 700;
  opacity: 1;
}
.gallery-nav-item.slick-current span:after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  border-color: #fff;
}
@media all and (max-width: 980px) {
  .gallery-nav-item {
    margin-right: 12px;
  }
}

#cursor-follower {
  position: absolute;
  pointer-events: none;
  z-index: 2000;
  display: none;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  top: -1000px;
  left: -1000px;
  -webkit-transition: -webkit-transform 0.1s;
  transition: -webkit-transform 0.1s;
  transition: transform 0.1s;
  transition: transform 0.1s, -webkit-transform 0.1s;
  width: 80px;
}

#mobile_confirm {
  position: absolute;
  bottom: 180px;
  display: block;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 1001;
}
#mobile_confirm button {
  border-radius: 64px;
  background: #00185c;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 12px 30px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 10px;
  color: #fff;
  font-family: Larsseit;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  border: none;
}

#map-info .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#map-info .container .donated-block .bar {
  height: 18px;
  width: 351px;
  border: 1px solid #000;
  border-radius: 6px;
  position: relative;
  margin-bottom: 15px;
}
#map-info .container .donated-block .bar .filled {
  position: absolute;
  top: -1px;
  left: -1px;
  border-radius: 6px;
  height: 18px;
  background: rgb(5, 23, 88);
}
#map-info .container .donated-block .bar .filled:after {
  content: "";
  display: block;
  position: absolute;
  top: -9px;
  right: -1px;
  width: 15px;
  height: 30px;
  z-index: 999;
  -webkit-transform: skewX(40deg);
          transform: skewX(40deg);
  background: url(../images/design/grain.37bb79.png);
}
#map-info .container .donated-block .donated-block-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#map-info .container .donated-block .donated-block-info .donated-block-info--donated p,
#map-info .container .donated-block .donated-block-info .donated-block-info--out-of p {
  margin: 0;
  padding: 0;
  color: #00185c;
  font-family: Larsseit;
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
  line-height: 12px; /* 120% */
  text-transform: uppercase;
}
#map-info .container .donated-block .donated-block-info .donated-block-info--donated p span,
#map-info .container .donated-block .donated-block-info .donated-block-info--out-of p span {
  margin-left: 8px;
  font-family: Larsseit;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px; /* 142.857% */
  text-transform: uppercase;
}
#map-info .container .search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
#map-info .container .search .lens {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
}
#map-info .container .search .lens:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 16px;
  width: 16px;
  height: 16px;
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAARCAYAAADUryzEAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAEqSURBVHgBnZLfcYJAEMa/jRRACZaQvGZgBjpIB5oKUoKkgowVYCrIpAKZiZNnO5AO4ntE3D1WDs4DHb+Z4xbY/e2fO0JPz4/AZMbGC1BPed/zKgD6Bn5W8IisGS34kWFYBRC88lZ2Pz54gpe8UmDD8OMT5+AgkqAEOHzxFjrgZMqAulnxHF6JT7xTv8z5GecanGNUUaKAP7eFpDGr5ThgU2grYTPsFmCmzfrd4qrqUsPCDsAcFTzDuUkC0Mz/83FXGeS53WDbAdCnmm/qNKBq0ey04ruwd35Gaz2J3SVEWos/7FHbARqcLa9a24Ga61vquwR058PlB+m5CupnOmRszJwABeKd3XOFthCCV3JpSBw5y6SwPfcqNZABwJhaCFd5THGfBNIf5t06Ad4yV/FrSULuAAAAAElFTkSuQmCC) no-repeat;
}
#map-info .container .search p {
  margin: 0 24px 0 0;
  padding: 0;
  color: #00185c;
  font-family: Larsseit;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px; /* 142.857% */
  text-transform: uppercase;
}
#map-info .container .search input {
  border-radius: 60px;
  border: 1px solid #00185c;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 8px 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  color: #00185c;
  font-family: Larsseit;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 142.857% */
}
#map-info .container .search input::-webkit-input-placeholder {
  color: #00185c;
  /* Body 2 */
  font-family: Larsseit;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 142.857% */
}
#map-info .container .search input::-moz-placeholder {
  color: #00185c;
  /* Body 2 */
  font-family: Larsseit;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 142.857% */
}
#map-info .container .search input:-ms-input-placeholder {
  color: #00185c;
  /* Body 2 */
  font-family: Larsseit;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 142.857% */
}
#map-info .container .search input::-ms-input-placeholder {
  color: #00185c;
  /* Body 2 */
  font-family: Larsseit;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 142.857% */
}
#map-info .container .search input::placeholder {
  color: #00185c;
  /* Body 2 */
  font-family: Larsseit;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 142.857% */
}

#map .leaflet-bottom.leaflet-left .left_info.leaflet-control {
  background: transparent;
  border: none;
}
#map .leaflet-bottom.leaflet-left .left_info.leaflet-control .soldier_info .block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-bottom: 20px;
}
#map .leaflet-bottom.leaflet-left .left_info.leaflet-control .soldier_info .block img {
  width: 80px;
  height: 64px;
}
#map .leaflet-bottom.leaflet-left .left_info.leaflet-control .soldier_info .block p {
  margin: 0;
  font-family: Larsseit;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
}
@media all and (max-width: 767px) {
  #map .leaflet-top.leaflet-left {
    right: 10px;
  }
}
#map .leaflet-top.leaflet-left .left_info {
  border: none;
  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: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100%;
  background: transparent;
}
@media all and (max-width: 767px) {
  #map .leaflet-top.leaflet-left .left_info {
    width: calc(100% - 20px);
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEQAAAACCAYAAADhEnrDAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAB+SURBVHgB7Y+7CYNQAEVPnCBlQho3SDZINoi1CLqBsziC8LTWDXQD3cDST2Np4f+JoJ1Ye4rL5RQX7g3VutO0Nl0fUvkJM09DY+At+9Y/jN+UXxZichEd9j0ppQhkf+kfOuV/yjNk5J677FsqtOZhv36VmppCODs/fVW42DECpvFGo5GKeUsAAAAASUVORK5CYII=) repeat-x 0 50%;
  }
}
#map .leaflet-top.leaflet-left .left_info .tabs {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media all and (max-width: 767px) {
  #map .leaflet-top.leaflet-left .left_info .tabs {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100%;
  }
}
#map .leaflet-top.leaflet-left .left_info .tabs .tab {
  font-family: Larsseit;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  text-transform: uppercase;
  margin-bottom: 56px;
  padding: 8px 16px 8px 48px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 60px;
  background: transparent;
  position: relative;
}
#map .leaflet-top.leaflet-left .left_info .tabs .tab.tab-select-region {
  cursor: pointer;
}
@media all and (max-width: 767px) {
  #map .leaflet-top.leaflet-left .left_info .tabs .tab {
    margin: 0;
    font-size: 0;
    padding: 8px 16px;
  }
}
#map .leaflet-top.leaflet-left .left_info .tabs .tab.tab-make-a-donation {
  margin-bottom: 0;
}
#map .leaflet-top.leaflet-left .left_info .tabs .tab.tab-make-a-donation:before {
  display: none;
}
#map .leaflet-top.leaflet-left .left_info .tabs .tab:before {
  content: "";
  display: block;
  position: absolute;
  top: 100%;
  left: 17px;
  width: 1px;
  height: 56px;
  background-image: url("data:image/svg+xml,%3csvg width=%27100%25%27 height=%27100%25%27 xmlns=%27http://www.w3.org/2000/svg%27%3e%3crect width=%27100%25%27 height=%27100%25%27 fill=%27none%27 stroke=%27black%27 stroke-width=%271%27 stroke-dasharray=%275%27 stroke-dashoffset=%270%27 stroke-linecap=%27square%27/%3e%3c/svg%3e");
}
@media all and (max-width: 767px) {
  #map .leaflet-top.leaflet-left .left_info .tabs .tab:before {
    display: none;
  }
}
#map .leaflet-top.leaflet-left .left_info .tabs .tab.active {
  background: #ffe23f;
}
@media all and (max-width: 767px) {
  #map .leaflet-top.leaflet-left .left_info .tabs .tab.active {
    font-size: 14px;
    padding-left: 42px;
  }
}
#map .leaflet-top.leaflet-left .left_info .tabs .tab.active .count {
  background: #ffe23f;
}
#map .leaflet-top.leaflet-left .left_info .tabs .tab .count {
  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: absolute;
  top: 0;
  left: 0;
  width: 36px;
  height: 36px;
  background: #eff8ff;
  border-radius: 300px;
  border: 1px solid #00185c;
  color: #00185c;
  text-align: center;
  font-family: Larsseit;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
#map .leaflet-top .leaflet-control {
  margin-top: 55px;
}
@media all and (max-width: 767px) {
  #map .leaflet-top .leaflet-control {
    margin-top: 25px;
  }
}
#map .leaflet-tooltip.region-tooltip {
  background-color: #00185c !important;
  color: #ffe23f !important;
  font-family: "Larsseit", sans-serif !important;
  font-size: 10px !important;
  font-style: normal !important;
  font-weight: 700 !important;
  line-height: 12px !important;
  text-transform: uppercase !important;
  border-radius: 7px !important;
  -webkit-box-shadow: 0px 3.0399169922px 18.2395019531px 0px rgba(0, 0, 0, 0.16) !important;
          box-shadow: 0px 3.0399169922px 18.2395019531px 0px rgba(0, 0, 0, 0.16) !important;
  border: none !important; /* Removes default border */
  padding: 10px !important; /* Adds some padding */
}
#map .my-layer {
  -webkit-transition: fill-opacity 300ms;
  transition: fill-opacity 300ms;
}
#map .leaflet-control-attribution {
  display: none;
}
#map .leaflet-control-custom,
#map .leaflet-control {
  border: 1px solid #00185c;
  background: #fff;
}
#map .leaflet-control-custom button,
#map .leaflet-control-custom a,
#map .leaflet-control button,
#map .leaflet-control 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;
  width: 40px;
  height: 40px;
  border: none;
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
  background: transparent;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
#map .leaflet-control-custom button:hover,
#map .leaflet-control-custom a:hover,
#map .leaflet-control button:hover,
#map .leaflet-control a:hover {
  text-decoration: none;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  background: #e9e9e9;
}
#map .leaflet-control-custom button svg,
#map .leaflet-control-custom a svg,
#map .leaflet-control button svg,
#map .leaflet-control a svg {
  width: 20px;
}
#map .leaflet-popup-content-wrapper {
  border-radius: 7px;
  background: #00185C;
}
#map .leaflet-popup-content {
  font-size: 14px;
  font-family: Larsseit;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  text-transform: uppercase;
  color: #fff;
  margin: 16px;
}
#map .leaflet-popup-content span {
  color: #FFE23F;
  display: block;
}
#map .leaflet-popup-tip {
  background: #00185C;
}
#map .leaflet-container a.leaflet-popup-close-button {
  color: #fff;
}

#donate-popup .modal-header,
#donate-helmet-popup .modal-header,
#donate-ship-popup .modal-header {
  padding: 24px 32px 0 32px;
  text-align: right;
  border-bottom: none;
}
#donate-popup .modal-header .close,
#donate-helmet-popup .modal-header .close,
#donate-ship-popup .modal-header .close {
  background: none;
  border: none;
}
#donate-popup .modal-header .close span,
#donate-helmet-popup .modal-header .close span,
#donate-ship-popup .modal-header .close span {
  background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTgiIGhlaWdodD0iMTgiIHZpZXdCb3g9IjAgMCAxOCAxOCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgaWQ9IngiPgo8cGF0aCBpZD0iUGF0aCAxMDgxNiIgZD0iTTAuNzU3ODEyIDAuODgzMDU3TDE2Ljc1NzQgMTYuODgyNiIgc3Ryb2tlPSIjMDAxODVDIiBzdHJva2Utd2lkdGg9IjEuNDQwOSIvPgo8cGF0aCBpZD0iUGF0aCAxMDgxNyIgZD0iTTAuNzU3ODEyIDE2Ljg4MjRMMTYuNzU3NCAwLjg4MjgyNyIgc3Ryb2tlPSIjMDAxODVDIiBzdHJva2Utd2lkdGg9IjEuNDQwOSIvPgo8L2c+Cjwvc3ZnPgo=) no-repeat;
  background-size: 16px 16px;
  display: block;
  width: 16px;
  height: 16px;
}
#donate-popup .modal-body .step,
#donate-helmet-popup .modal-body .step,
#donate-ship-popup .modal-body .step {
  display: none;
}
#donate-popup .modal-body .step.active,
#donate-helmet-popup .modal-body .step.active,
#donate-ship-popup .modal-body .step.active {
  display: block;
}
#donate-popup .modal-footer,
#donate-helmet-popup .modal-footer,
#donate-ship-popup .modal-footer {
  border-top: none;
  padding: 32px 32px 24px 32px;
  text-align: right;
}
#donate-popup .modal-footer #donator_next,
#donate-popup .modal-footer #donator_helmet_next,
#donate-popup .modal-footer #donator_ship_next,
#donate-helmet-popup .modal-footer #donator_next,
#donate-helmet-popup .modal-footer #donator_helmet_next,
#donate-helmet-popup .modal-footer #donator_ship_next,
#donate-ship-popup .modal-footer #donator_next,
#donate-ship-popup .modal-footer #donator_helmet_next,
#donate-ship-popup .modal-footer #donator_ship_next {
  color: #fff;
  padding: 12px 40px;
  background: #00185C;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  border-radius: 64px;
  display: inline-block;
  opacity: 1;
  pointer-events: all;
}
#donate-popup .modal-footer #donator_next.disabled,
#donate-popup .modal-footer #donator_helmet_next.disabled,
#donate-popup .modal-footer #donator_ship_next.disabled,
#donate-helmet-popup .modal-footer #donator_next.disabled,
#donate-helmet-popup .modal-footer #donator_helmet_next.disabled,
#donate-helmet-popup .modal-footer #donator_ship_next.disabled,
#donate-ship-popup .modal-footer #donator_next.disabled,
#donate-ship-popup .modal-footer #donator_helmet_next.disabled,
#donate-ship-popup .modal-footer #donator_ship_next.disabled {
  opacity: 0.7;
  pointer-events: none;
}
#donate-popup .modal-footer #donator_back,
#donate-popup .modal-footer #donator_helmet_back,
#donate-popup .modal-footer #donator_ship_back,
#donate-helmet-popup .modal-footer #donator_back,
#donate-helmet-popup .modal-footer #donator_helmet_back,
#donate-helmet-popup .modal-footer #donator_ship_back,
#donate-ship-popup .modal-footer #donator_back,
#donate-ship-popup .modal-footer #donator_helmet_back,
#donate-ship-popup .modal-footer #donator_ship_back {
  color: #013AC5;
  float: left;
  font-size: 14px;
  padding-left: 4px;
  padding-top: 8px;
}
#donate-popup .modal-footer #donator_back:before,
#donate-popup .modal-footer #donator_helmet_back:before,
#donate-popup .modal-footer #donator_ship_back:before,
#donate-helmet-popup .modal-footer #donator_back:before,
#donate-helmet-popup .modal-footer #donator_helmet_back:before,
#donate-helmet-popup .modal-footer #donator_ship_back:before,
#donate-ship-popup .modal-footer #donator_back:before,
#donate-ship-popup .modal-footer #donator_helmet_back:before,
#donate-ship-popup .modal-footer #donator_ship_back:before {
  display: inline-block;
  position: relative;
  top: 4px;
  left: -4px;
  content: "";
  width: 20px;
  height: 20px;
  background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjEiIHZpZXdCb3g9IjAgMCAyMSAyMSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgaWQ9IkFycm93Ij4KPHBhdGggaWQ9IlBhdGggMTI3MzkiIGQ9Ik0wLjg1NjM1IDEwLjk3MTdDMC44MjIwODUgMTAuOTQ0MiAwLjc5NDc4OCAxMC45MDUxIDAuNzc3NjY2IDEwLjg1ODhDMC43NjA1NDQgMTAuODEyNiAwLjc1NDMxIDEwLjc2MTIgMC43NTk2OTMgMTAuNzEwNkMwLjc2NDA1MyAxMC42MTEzIDAuNzk4NjQ4IDEwLjUxNzkgMC44NTYzNSAxMC40NDk2TDguMjQ2OTEgMi41MzU2OEM4LjM0MzIgMi40NDQ0NSA4LjQ1OTEzIDIuMzkxNTQgOC41Nzk2OSAyLjM4MzgyQzguNzAwMjQgMi4zNzYwOSA4LjgxOTg4IDIuNDEzOSA4LjkyMzA5IDIuNDkyMzRDOS4xMTU5OSAyLjY2NjIgOS4xNjQ3NCAyLjkyNzI1IDguOTcxNDIgMy4xMDExTDIuMjU3NDcgMTAuMjc1N0wyMC4yNzQ1IDEwLjI3NTdDMjAuNTY2MiAxMC4yNzU3IDIwLjc1NzggMTAuNDQ5NiAyMC43NTc4IDEwLjcxMDZDMjAuNzU3OCAxMC45NzE3IDIwLjU2NDkgMTEuMTQ1NSAyMC4yNzQ1IDExLjE0NTVIMi4yNTc0N0w5LjAxOTc1IDE4LjM2NjZDOS4wNjEwNiAxOC40MDE5IDkuMDk0MDMgMTguNDUwNCA5LjExNTE4IDE4LjUwNzFDOS4xMzYzMyAxOC41NjM5IDkuMTQ0ODkgMTguNjI2NyA5LjEzOTk0IDE4LjY4OUM5LjEzNDk5IDE4Ljc1MTMgOS4xMTY3MyAxOC44MTA4IDkuMDg3MDcgMTguODYxMkM5LjA1NzQyIDE4LjkxMTYgOS4wMTc0NiAxOC45NTExIDguOTcxNDIgMTguOTc1NEM4Ljg2ODIgMTkuMDU0MyA4Ljc0ODM1IDE5LjA5MjEgOC42Mjc2NCAxOS4wODM5QzguNTA2OTQgMTkuMDc1NyA4LjM5MTA0IDE5LjAyMTggOC4yOTUyMyAxOC45Mjk1TDAuODU2MzUgMTAuOTcxN1oiIGZpbGw9IiMwMTNBQzUiLz4KPC9nPgo8L3N2Zz4K);
}
#donate-popup .modal-dialog,
#donate-helmet-popup .modal-dialog,
#donate-ship-popup .modal-dialog {
  width: 472px;
  margin-top: 120px;
}
#donate-popup .modal-dialog.step1_active,
#donate-helmet-popup .modal-dialog.step1_active,
#donate-ship-popup .modal-dialog.step1_active {
  width: 926px;
}
@media all and (max-width: 940px) {
  #donate-popup .modal-dialog.step1_active,
  #donate-helmet-popup .modal-dialog.step1_active,
  #donate-ship-popup .modal-dialog.step1_active {
    width: 96%;
  }
}
@media all and (max-width: 980px) {
  #donate-popup .modal-dialog,
  #donate-helmet-popup .modal-dialog,
  #donate-ship-popup .modal-dialog {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media all and (max-width: 767px) {
  #donate-popup .modal-dialog,
  #donate-helmet-popup .modal-dialog,
  #donate-ship-popup .modal-dialog {
    margin-top: 10px;
  }
}
@media all and (max-width: 480px) {
  #donate-popup .modal-dialog,
  #donate-helmet-popup .modal-dialog,
  #donate-ship-popup .modal-dialog {
    width: 100%;
  }
}
#donate-popup .modal-content,
#donate-helmet-popup .modal-content,
#donate-ship-popup .modal-content {
  background: #EFF8FF;
}
#donate-popup .modal-body,
#donate-helmet-popup .modal-body,
#donate-ship-popup .modal-body {
  padding: 30px 32px 0 32px;
}
@media all and (max-width: 940px) {
  #donate-popup #donate-step1,
  #donate-popup #donate-helmet-step1,
  #donate-popup #donate-ship-step1,
  #donate-helmet-popup #donate-step1,
  #donate-helmet-popup #donate-helmet-step1,
  #donate-helmet-popup #donate-ship-step1,
  #donate-ship-popup #donate-step1,
  #donate-ship-popup #donate-helmet-step1,
  #donate-ship-popup #donate-ship-step1 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 25px;
  }
}
#donate-popup #donate-step1 > div,
#donate-popup #donate-helmet-step1 > div,
#donate-popup #donate-ship-step1 > div,
#donate-helmet-popup #donate-step1 > div,
#donate-helmet-popup #donate-helmet-step1 > div,
#donate-helmet-popup #donate-ship-step1 > div,
#donate-ship-popup #donate-step1 > div,
#donate-ship-popup #donate-helmet-step1 > div,
#donate-ship-popup #donate-ship-step1 > div {
  width: 49.8%;
  display: inline-block;
}
@media all and (max-width: 940px) {
  #donate-popup #donate-step1 > div,
  #donate-popup #donate-helmet-step1 > div,
  #donate-popup #donate-ship-step1 > div,
  #donate-helmet-popup #donate-step1 > div,
  #donate-helmet-popup #donate-helmet-step1 > div,
  #donate-helmet-popup #donate-ship-step1 > div,
  #donate-ship-popup #donate-step1 > div,
  #donate-ship-popup #donate-helmet-step1 > div,
  #donate-ship-popup #donate-ship-step1 > div {
    width: 100%;
  }
}
#donate-popup #donate-step1 > div:first-child,
#donate-popup #donate-helmet-step1 > div:first-child,
#donate-popup #donate-ship-step1 > div:first-child,
#donate-helmet-popup #donate-step1 > div:first-child,
#donate-helmet-popup #donate-helmet-step1 > div:first-child,
#donate-helmet-popup #donate-ship-step1 > div:first-child,
#donate-ship-popup #donate-step1 > div:first-child,
#donate-ship-popup #donate-helmet-step1 > div:first-child,
#donate-ship-popup #donate-ship-step1 > div:first-child {
  padding-right: 17px;
}
@media all and (max-width: 940px) {
  #donate-popup #donate-step1 > div:first-child,
  #donate-popup #donate-helmet-step1 > div:first-child,
  #donate-popup #donate-ship-step1 > div:first-child,
  #donate-helmet-popup #donate-step1 > div:first-child,
  #donate-helmet-popup #donate-helmet-step1 > div:first-child,
  #donate-helmet-popup #donate-ship-step1 > div:first-child,
  #donate-ship-popup #donate-step1 > div:first-child,
  #donate-ship-popup #donate-helmet-step1 > div:first-child,
  #donate-ship-popup #donate-ship-step1 > div:first-child {
    padding-right: 0;
  }
}
#donate-popup #donate-step1 > div.donate-type-holder,
#donate-popup #donate-helmet-step1 > div.donate-type-holder,
#donate-popup #donate-ship-step1 > div.donate-type-holder,
#donate-helmet-popup #donate-step1 > div.donate-type-holder,
#donate-helmet-popup #donate-helmet-step1 > div.donate-type-holder,
#donate-helmet-popup #donate-ship-step1 > div.donate-type-holder,
#donate-ship-popup #donate-step1 > div.donate-type-holder,
#donate-ship-popup #donate-helmet-step1 > div.donate-type-holder,
#donate-ship-popup #donate-ship-step1 > div.donate-type-holder {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  float: right;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media all and (max-width: 940px) {
  #donate-popup #donate-step1 > div.donate-type-holder,
  #donate-popup #donate-helmet-step1 > div.donate-type-holder,
  #donate-popup #donate-ship-step1 > div.donate-type-holder,
  #donate-helmet-popup #donate-step1 > div.donate-type-holder,
  #donate-helmet-popup #donate-helmet-step1 > div.donate-type-holder,
  #donate-helmet-popup #donate-ship-step1 > div.donate-type-holder,
  #donate-ship-popup #donate-step1 > div.donate-type-holder,
  #donate-ship-popup #donate-helmet-step1 > div.donate-type-holder,
  #donate-ship-popup #donate-ship-step1 > div.donate-type-holder {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    overflow-x: auto;
  }
}
#donate-popup #donate-step1 .donate-type,
#donate-popup #donate-helmet-step1 .donate-type,
#donate-popup #donate-ship-step1 .donate-type,
#donate-helmet-popup #donate-step1 .donate-type,
#donate-helmet-popup #donate-helmet-step1 .donate-type,
#donate-helmet-popup #donate-ship-step1 .donate-type,
#donate-ship-popup #donate-step1 .donate-type,
#donate-ship-popup #donate-helmet-step1 .donate-type,
#donate-ship-popup #donate-ship-step1 .donate-type {
  display: inline-block;
  float: left;
  border-radius: 7px;
  border: 1px solid var(--blue-800, #00185c);
  background: #fff;
  margin: 3px;
  width: 96px;
  height: 112px;
  text-align: center;
  cursor: pointer;
}
#donate-popup #donate-step1 .donate-type:hover,
#donate-popup #donate-helmet-step1 .donate-type:hover,
#donate-popup #donate-ship-step1 .donate-type:hover,
#donate-helmet-popup #donate-step1 .donate-type:hover,
#donate-helmet-popup #donate-helmet-step1 .donate-type:hover,
#donate-helmet-popup #donate-ship-step1 .donate-type:hover,
#donate-ship-popup #donate-step1 .donate-type:hover,
#donate-ship-popup #donate-helmet-step1 .donate-type:hover,
#donate-ship-popup #donate-ship-step1 .donate-type:hover {
  background: #bfe5ff;
  border-color: #bfe5ff;
  text-decoration: none;
}
#donate-popup #donate-step1 .donate-type.selected,
#donate-popup #donate-helmet-step1 .donate-type.selected,
#donate-popup #donate-ship-step1 .donate-type.selected,
#donate-helmet-popup #donate-step1 .donate-type.selected,
#donate-helmet-popup #donate-helmet-step1 .donate-type.selected,
#donate-helmet-popup #donate-ship-step1 .donate-type.selected,
#donate-ship-popup #donate-step1 .donate-type.selected,
#donate-ship-popup #donate-helmet-step1 .donate-type.selected,
#donate-ship-popup #donate-ship-step1 .donate-type.selected {
  background: #bfe5ff;
  border-color: #bfe5ff;
  text-decoration: none;
}
#donate-popup #donate-step1 .donate-type > img,
#donate-popup #donate-helmet-step1 .donate-type > img,
#donate-popup #donate-ship-step1 .donate-type > img,
#donate-helmet-popup #donate-step1 .donate-type > img,
#donate-helmet-popup #donate-helmet-step1 .donate-type > img,
#donate-helmet-popup #donate-ship-step1 .donate-type > img,
#donate-ship-popup #donate-step1 .donate-type > img,
#donate-ship-popup #donate-helmet-step1 .donate-type > img,
#donate-ship-popup #donate-ship-step1 .donate-type > img {
  max-width: 86px;
  display: inline-block;
}
#donate-popup #donate-step1 .donate-type > div,
#donate-popup #donate-helmet-step1 .donate-type > div,
#donate-popup #donate-ship-step1 .donate-type > div,
#donate-helmet-popup #donate-step1 .donate-type > div,
#donate-helmet-popup #donate-helmet-step1 .donate-type > div,
#donate-helmet-popup #donate-ship-step1 .donate-type > div,
#donate-ship-popup #donate-step1 .donate-type > div,
#donate-ship-popup #donate-helmet-step1 .donate-type > div,
#donate-ship-popup #donate-ship-step1 .donate-type > div {
  color: #00185c;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  text-transform: uppercase;
}
#donate-popup #donate-step1 .donate-type > div.custom,
#donate-popup #donate-helmet-step1 .donate-type > div.custom,
#donate-popup #donate-ship-step1 .donate-type > div.custom,
#donate-helmet-popup #donate-step1 .donate-type > div.custom,
#donate-helmet-popup #donate-helmet-step1 .donate-type > div.custom,
#donate-helmet-popup #donate-ship-step1 .donate-type > div.custom,
#donate-ship-popup #donate-step1 .donate-type > div.custom,
#donate-ship-popup #donate-helmet-step1 .donate-type > div.custom,
#donate-ship-popup #donate-ship-step1 .donate-type > div.custom {
  font-size: 10px;
}
#donate-popup #donate-step1 input[type=checkbox],
#donate-popup #donate-helmet-step1 input[type=checkbox],
#donate-popup #donate-ship-step1 input[type=checkbox],
#donate-helmet-popup #donate-step1 input[type=checkbox],
#donate-helmet-popup #donate-helmet-step1 input[type=checkbox],
#donate-helmet-popup #donate-ship-step1 input[type=checkbox],
#donate-ship-popup #donate-step1 input[type=checkbox],
#donate-ship-popup #donate-helmet-step1 input[type=checkbox],
#donate-ship-popup #donate-ship-step1 input[type=checkbox] {
  -webkit-appearance: checkbox;
     -moz-appearance: checkbox;
          appearance: checkbox;
  width: 12px;
  height: 12px;
  margin-right: 6px;
  position: relative;
  top: 2px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media all and (max-width: 767px) {
  #donate-popup #donate-step1 input[type=checkbox],
  #donate-popup #donate-helmet-step1 input[type=checkbox],
  #donate-popup #donate-ship-step1 input[type=checkbox],
  #donate-helmet-popup #donate-step1 input[type=checkbox],
  #donate-helmet-popup #donate-helmet-step1 input[type=checkbox],
  #donate-helmet-popup #donate-ship-step1 input[type=checkbox],
  #donate-ship-popup #donate-step1 input[type=checkbox],
  #donate-ship-popup #donate-helmet-step1 input[type=checkbox],
  #donate-ship-popup #donate-ship-step1 input[type=checkbox] {
    width: 16px;
    height: 16px;
  }
}
#donate-popup .field,
#donate-helmet-popup .field,
#donate-ship-popup .field {
  padding-bottom: 32px;
}
#donate-popup label,
#donate-helmet-popup label,
#donate-ship-popup label {
  display: block;
  color: #00185c;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  cursor: pointer;
}
#donate-popup label.checkbox-label,
#donate-helmet-popup label.checkbox-label,
#donate-ship-popup label.checkbox-label {
  color: #00185c;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#donate-popup label.checkbox-label a,
#donate-helmet-popup label.checkbox-label a,
#donate-ship-popup label.checkbox-label a {
  text-decoration: underline;
}
#donate-popup input[type=text],
#donate-helmet-popup input[type=text],
#donate-ship-popup input[type=text] {
  color: #00185C;
  width: 100%;
  font-size: 12px;
  line-height: 16px;
  padding-top: 8px;
  padding-bottom: 2px;
  border-top: none;
  border-left: none;
  border-right: none;
  background: transparent;
  border-bottom: solid 1px rgba(0, 24, 92, 0.6);
  padding-left: 5px;
  padding-right: 5px;
  border-radius: 2px 2px 0 0px;
}
#donate-popup #donate-step2,
#donate-popup #donate-helmet-step2,
#donate-popup #donate-ship-step2,
#donate-helmet-popup #donate-step2,
#donate-helmet-popup #donate-helmet-step2,
#donate-helmet-popup #donate-ship-step2,
#donate-ship-popup #donate-step2,
#donate-ship-popup #donate-helmet-step2,
#donate-ship-popup #donate-ship-step2 {
  width: 275px;
  margin: 0 auto;
  text-align: center;
}
#donate-popup #donate-step2 input,
#donate-popup #donate-helmet-step2 input,
#donate-popup #donate-ship-step2 input,
#donate-helmet-popup #donate-step2 input,
#donate-helmet-popup #donate-helmet-step2 input,
#donate-helmet-popup #donate-ship-step2 input,
#donate-ship-popup #donate-step2 input,
#donate-ship-popup #donate-helmet-step2 input,
#donate-ship-popup #donate-ship-step2 input {
  font-size: 20px;
  text-align: center;
}
#donate-popup .big-label,
#donate-helmet-popup .big-label,
#donate-ship-popup .big-label {
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  padding-bottom: 32px;
}
#donate-popup #donate-step3,
#donate-popup #donate-helmet-step3,
#donate-popup #donate-ship-step3,
#donate-helmet-popup #donate-step3,
#donate-helmet-popup #donate-helmet-step3,
#donate-helmet-popup #donate-ship-step3,
#donate-ship-popup #donate-step3,
#donate-ship-popup #donate-helmet-step3,
#donate-ship-popup #donate-ship-step3 {
  text-align: center;
}
#donate-popup #donate-step3 .inside,
#donate-popup #donate-helmet-step3 .inside,
#donate-popup #donate-ship-step3 .inside,
#donate-helmet-popup #donate-step3 .inside,
#donate-helmet-popup #donate-helmet-step3 .inside,
#donate-helmet-popup #donate-ship-step3 .inside,
#donate-ship-popup #donate-step3 .inside,
#donate-ship-popup #donate-helmet-step3 .inside,
#donate-ship-popup #donate-ship-step3 .inside {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  -ms-flex-item-align: stretch;
      align-self: stretch;
}
#donate-popup #donate-step3 .payment-method-list,
#donate-popup #donate-helmet-step3 .payment-method-list,
#donate-popup #donate-ship-step3 .payment-method-list,
#donate-helmet-popup #donate-step3 .payment-method-list,
#donate-helmet-popup #donate-helmet-step3 .payment-method-list,
#donate-helmet-popup #donate-ship-step3 .payment-method-list,
#donate-ship-popup #donate-step3 .payment-method-list,
#donate-ship-popup #donate-helmet-step3 .payment-method-list,
#donate-ship-popup #donate-ship-step3 .payment-method-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-line-pack: start;
      align-content: flex-start;
  gap: 8px;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
#donate-popup #donate-step3 .payment-method-list .payment-method,
#donate-popup #donate-helmet-step3 .payment-method-list .payment-method,
#donate-popup #donate-ship-step3 .payment-method-list .payment-method,
#donate-helmet-popup #donate-step3 .payment-method-list .payment-method,
#donate-helmet-popup #donate-helmet-step3 .payment-method-list .payment-method,
#donate-helmet-popup #donate-ship-step3 .payment-method-list .payment-method,
#donate-ship-popup #donate-step3 .payment-method-list .payment-method,
#donate-ship-popup #donate-helmet-step3 .payment-method-list .payment-method,
#donate-ship-popup #donate-ship-step3 .payment-method-list .payment-method {
  border-radius: 7px;
  border: 1px solid var(--blue-800, #00185c);
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 93.862px;
  height: 75.785px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#donate-popup #donate-step3 .payment-method-list .payment-method:hover,
#donate-popup #donate-helmet-step3 .payment-method-list .payment-method:hover,
#donate-popup #donate-ship-step3 .payment-method-list .payment-method:hover,
#donate-helmet-popup #donate-step3 .payment-method-list .payment-method:hover,
#donate-helmet-popup #donate-helmet-step3 .payment-method-list .payment-method:hover,
#donate-helmet-popup #donate-ship-step3 .payment-method-list .payment-method:hover,
#donate-ship-popup #donate-step3 .payment-method-list .payment-method:hover,
#donate-ship-popup #donate-helmet-step3 .payment-method-list .payment-method:hover,
#donate-ship-popup #donate-ship-step3 .payment-method-list .payment-method:hover {
  background: #bfe5ff;
  border-color: #bfe5ff;
  text-decoration: none;
}
#donate-popup #donate-step3 .payment-method-list .payment-method.selected,
#donate-popup #donate-helmet-step3 .payment-method-list .payment-method.selected,
#donate-popup #donate-ship-step3 .payment-method-list .payment-method.selected,
#donate-helmet-popup #donate-step3 .payment-method-list .payment-method.selected,
#donate-helmet-popup #donate-helmet-step3 .payment-method-list .payment-method.selected,
#donate-helmet-popup #donate-ship-step3 .payment-method-list .payment-method.selected,
#donate-ship-popup #donate-step3 .payment-method-list .payment-method.selected,
#donate-ship-popup #donate-helmet-step3 .payment-method-list .payment-method.selected,
#donate-ship-popup #donate-ship-step3 .payment-method-list .payment-method.selected {
  background: #bfe5ff;
  border-color: #bfe5ff;
  text-decoration: none;
}
#donate-popup #donate-step3 .payment-method-list .payment-method label,
#donate-popup #donate-helmet-step3 .payment-method-list .payment-method label,
#donate-popup #donate-ship-step3 .payment-method-list .payment-method label,
#donate-helmet-popup #donate-step3 .payment-method-list .payment-method label,
#donate-helmet-popup #donate-helmet-step3 .payment-method-list .payment-method label,
#donate-helmet-popup #donate-ship-step3 .payment-method-list .payment-method label,
#donate-ship-popup #donate-step3 .payment-method-list .payment-method label,
#donate-ship-popup #donate-helmet-step3 .payment-method-list .payment-method label,
#donate-ship-popup #donate-ship-step3 .payment-method-list .payment-method label {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
#donate-popup #donate-step3 .payment-method-list .payment-method label .mini-header,
#donate-popup #donate-helmet-step3 .payment-method-list .payment-method label .mini-header,
#donate-popup #donate-ship-step3 .payment-method-list .payment-method label .mini-header,
#donate-helmet-popup #donate-step3 .payment-method-list .payment-method label .mini-header,
#donate-helmet-popup #donate-helmet-step3 .payment-method-list .payment-method label .mini-header,
#donate-helmet-popup #donate-ship-step3 .payment-method-list .payment-method label .mini-header,
#donate-ship-popup #donate-step3 .payment-method-list .payment-method label .mini-header,
#donate-ship-popup #donate-helmet-step3 .payment-method-list .payment-method label .mini-header,
#donate-ship-popup #donate-ship-step3 .payment-method-list .payment-method label .mini-header {
  max-width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: start;
      align-self: flex-start;
  position: relative;
  top: -18px;
}
#donate-popup #donate-step3 .payment-method-list .payment-method label img,
#donate-popup #donate-helmet-step3 .payment-method-list .payment-method label img,
#donate-popup #donate-ship-step3 .payment-method-list .payment-method label img,
#donate-helmet-popup #donate-step3 .payment-method-list .payment-method label img,
#donate-helmet-popup #donate-helmet-step3 .payment-method-list .payment-method label img,
#donate-helmet-popup #donate-ship-step3 .payment-method-list .payment-method label img,
#donate-ship-popup #donate-step3 .payment-method-list .payment-method label img,
#donate-ship-popup #donate-helmet-step3 .payment-method-list .payment-method label img,
#donate-ship-popup #donate-ship-step3 .payment-method-list .payment-method label img {
  max-width: 86%;
}
#donate-popup #donate-step3 .payment-method-list .payment-method input[type=radio],
#donate-popup #donate-helmet-step3 .payment-method-list .payment-method input[type=radio],
#donate-popup #donate-ship-step3 .payment-method-list .payment-method input[type=radio],
#donate-helmet-popup #donate-step3 .payment-method-list .payment-method input[type=radio],
#donate-helmet-popup #donate-helmet-step3 .payment-method-list .payment-method input[type=radio],
#donate-helmet-popup #donate-ship-step3 .payment-method-list .payment-method input[type=radio],
#donate-ship-popup #donate-step3 .payment-method-list .payment-method input[type=radio],
#donate-ship-popup #donate-helmet-step3 .payment-method-list .payment-method input[type=radio],
#donate-ship-popup #donate-ship-step3 .payment-method-list .payment-method input[type=radio] {
  display: none;
}
#donate-popup #donate-step3 .address,
#donate-popup #donate-helmet-step3 .address,
#donate-popup #donate-ship-step3 .address,
#donate-helmet-popup #donate-step3 .address,
#donate-helmet-popup #donate-helmet-step3 .address,
#donate-helmet-popup #donate-ship-step3 .address,
#donate-ship-popup #donate-step3 .address,
#donate-ship-popup #donate-helmet-step3 .address,
#donate-ship-popup #donate-ship-step3 .address {
  /* Caption 2 */
  font-family: Larsseit;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px; /* 142.857% */
  text-transform: uppercase;
}
#donate-popup #donate-step3 .blue,
#donate-popup #donate-helmet-step3 .blue,
#donate-popup #donate-ship-step3 .blue,
#donate-helmet-popup #donate-step3 .blue,
#donate-helmet-popup #donate-helmet-step3 .blue,
#donate-helmet-popup #donate-ship-step3 .blue,
#donate-ship-popup #donate-step3 .blue,
#donate-ship-popup #donate-helmet-step3 .blue,
#donate-ship-popup #donate-ship-step3 .blue {
  color: var(--Blue-700, #013ac5);
  /* Caption 2 */
  font-family: Larsseit;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  text-transform: uppercase;
}
#donate-popup #donate-step3 input[type=checkbox],
#donate-popup #donate-helmet-step3 input[type=checkbox],
#donate-popup #donate-ship-step3 input[type=checkbox],
#donate-helmet-popup #donate-step3 input[type=checkbox],
#donate-helmet-popup #donate-helmet-step3 input[type=checkbox],
#donate-helmet-popup #donate-ship-step3 input[type=checkbox],
#donate-ship-popup #donate-step3 input[type=checkbox],
#donate-ship-popup #donate-helmet-step3 input[type=checkbox],
#donate-ship-popup #donate-ship-step3 input[type=checkbox] {
  -webkit-appearance: checkbox;
     -moz-appearance: checkbox;
          appearance: checkbox;
  width: 12px;
  height: 12px;
  margin-right: 6px;
  position: relative;
  top: 2px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media all and (max-width: 767px) {
  #donate-popup #donate-step3 input[type=checkbox],
  #donate-popup #donate-helmet-step3 input[type=checkbox],
  #donate-popup #donate-ship-step3 input[type=checkbox],
  #donate-helmet-popup #donate-step3 input[type=checkbox],
  #donate-helmet-popup #donate-helmet-step3 input[type=checkbox],
  #donate-helmet-popup #donate-ship-step3 input[type=checkbox],
  #donate-ship-popup #donate-step3 input[type=checkbox],
  #donate-ship-popup #donate-helmet-step3 input[type=checkbox],
  #donate-ship-popup #donate-ship-step3 input[type=checkbox] {
    width: 16px;
    height: 16px;
  }
}

#donate-ship-popup #donate-step1 > div {
  width: 39.8%;
}
@media all and (max-width: 940px) {
  #donate-ship-popup #donate-step1 > div {
    width: 100%;
  }
}
#donate-ship-popup #donate-step1 > div.donate-type-holder {
  width: 59.8%;
}
@media all and (max-width: 940px) {
  #donate-ship-popup #donate-step1 > div.donate-type-holder {
    width: 100%;
  }
}

.soldier span {
  color: #fff;
  font-family: Larsseit;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  display: block;
  text-align: center;
  position: relative;
  top: -9px;
}

.page-template-page-map .slick-slide {
  padding-top: 128px;
}
@media all and (min-width: 980px) {
  .page-template-page-map .marquee {
    top: 128px;
    position: absolute;
    z-index: 999;
  }
}

.why-support-holder {
  background: #A1D8FF url(../images/design/grain.37bb79.png);
}

.why {
  padding: 100px 0 20px;
}
.why .container {
  padding-top: 20px;
  padding-bottom: 20px;
}
.why .actions {
  margin: -25px 0 25px;
}

.why-slider {
  display: none;
  /*.slick-slide.prevSlide{
    opacity: 1 !important;
    .h4{
      opacity: 0;
    }
    .caption{
      opacity: 0;
    }
  }*/
  /*.slick-slide:first-of-type{
    .why-slider-slide img{
      left: 10% !important;
      top: 10% !important;
    }
  }*/
}
.why-slider.slick-initialized {
  display: block;
}
.why-slider .slick-dots {
  margin-bottom: 0;
}
.why-slider .slick-arrow {
  z-index: 1;
}

.why-slider-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media all and (max-width: 980px) {
  .why-slider-slide {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.why-slider-slide .h4 {
  line-height: 1.2;
}
@media all and (min-width: 981px) {
  .why-slider-slide .h4 {
    max-width: 400px;
    margin-top: 52px;
    margin-bottom: 40px;
  }
}
@media all and (max-width: 980px) {
  .why-slider-slide .h4 {
    min-height: 120px;
    margin-bottom: 0;
  }
}
.why-slider-slide__image {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  height: 600px;
  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;
}
@media all and (min-width: 981px) {
  .why-slider-slide__image {
    max-width: 789px;
    width: calc(100% - 501px);
    margin: 0 20px;
  }
}
@media all and (max-width: 980px) {
  .why-slider-slide__image {
    height: 300px;
    width: 100%;
    margin-bottom: 20px;
  }
}
.why-slider-slide__image img {
  position: relative;
  border-radius: 10px;
}
@media all and (max-width: 980px) {
  .why-slider-slide__image img {
    max-height: 100%;
  }
}
.why-slider-slide .caption {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 14px;
}
.why-slider-slide .caption strong {
  font-size: 20px;
  display: block;
}
@media all and (min-width: 981px) {
  .why-slider-slide .caption {
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    text-orientation: mixed;
    margin-top: 52px;
  }
}

.marquee {
  background: #EFF8FF;
  padding: 8px 16px;
  font-size: 12px;
  width: 100%;
  display: block;
  overflow: hidden;
}
.marquee strong {
  font-size: 14px;
  font-weight: 700;
  margin: 0 5px;
}
.marquee span {
  margin-right: 8px;
}

.talk {
  height: 762px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media all and (max-width: 767px) {
  .talk {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    height: 695px;
  }
}
.talk:after {
  background: url("../images/design/Let's%20talk.51d7a1.png");
}
.talk .container {
  position: relative;
  z-index: 1;
}
@media all and (min-width: 981px) {
  .talk .right-col {
    padding-top: 88px;
  }
}

.thanks-block .h1 {
  margin-bottom: 24px;
}
@media all and (max-width: 767px) {
  .thanks-block p {
    font-size: 14px;
    margin-bottom: 0;
  }
}

.contact-form label {
  font-size: 14px;
  line-height: 20px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.contact-form label.disabled {
  color: #A8A8A8;
}
.contact-form textarea,
.contact-form input[type=email],
.contact-form input[type=text] {
  border-radius: 7px;
  border: 1px solid rgba(239, 248, 255, 0.3);
  background: linear-gradient(135deg, rgba(239, 248, 255, 0.78) 0%, rgba(239, 248, 255, 0.14) 100%);
  -webkit-box-shadow: 0px 4px 12px 0px rgba(202, 202, 202, 0.03);
          box-shadow: 0px 4px 12px 0px rgba(202, 202, 202, 0.03);
  font-size: 14px;
  padding: 8px 12px;
  width: 100%;
}
.contact-form textarea::-webkit-input-placeholder, .contact-form input[type=email]::-webkit-input-placeholder, .contact-form input[type=text]::-webkit-input-placeholder {
  color: #A8A8A8;
}
.contact-form textarea::-moz-placeholder, .contact-form input[type=email]::-moz-placeholder, .contact-form input[type=text]::-moz-placeholder {
  color: #A8A8A8;
}
.contact-form textarea:-ms-input-placeholder, .contact-form input[type=email]:-ms-input-placeholder, .contact-form input[type=text]:-ms-input-placeholder {
  color: #A8A8A8;
}
.contact-form textarea::-ms-input-placeholder, .contact-form input[type=email]::-ms-input-placeholder, .contact-form input[type=text]::-ms-input-placeholder {
  color: #A8A8A8;
}
.contact-form textarea::placeholder,
.contact-form input[type=email]::placeholder,
.contact-form input[type=text]::placeholder {
  color: #A8A8A8;
}
.contact-form textarea:hover,
.contact-form input[type=email]:hover,
.contact-form input[type=text]:hover {
  background: #EFF8FF;
}
.contact-form textarea:focus-within, .contact-form textarea:focus,
.contact-form input[type=email]:focus-within,
.contact-form input[type=email]:focus,
.contact-form input[type=text]:focus-within,
.contact-form input[type=text]:focus {
  background: #EFF8FF;
  border-color: #013AC5;
}
.contact-form textarea.error,
.contact-form input[type=email].error,
.contact-form input[type=text].error {
  border-color: #FF5656;
}
.contact-form textarea.disabled,
.contact-form input[type=email].disabled,
.contact-form input[type=text].disabled {
  border-color: #A8A8A8;
  color: #A8A8A8;
}
.contact-form input[type=checkbox] {
  position: relative;
  border: 2px solid #A8A8A8;
  background: #fff;
  border-radius: 2px;
  cursor: pointer;
  line-height: 0;
  margin: 0 0.6em 0 0;
  outline: 0;
  padding: 0 !important;
  vertical-align: text-top;
  height: 12px;
  width: 12px;
  -webkit-appearance: none;
  opacity: 0.5;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.contact-form input[type=checkbox]:hover {
  opacity: 1;
}
.contact-form input[type=checkbox]:checked {
  background-color: #00185C;
  border-color: #00185C;
  opacity: 1;
}
.contact-form input[type=checkbox]:checked:before {
  content: "";
  position: absolute;
  right: 50%;
  top: 50%;
  width: 4px;
  height: 10px;
  border: solid #FFF;
  border-width: 0 2px 2px 0;
  margin: -1px -1px 0 -1px;
  -webkit-transform: rotate(45deg) translate(-50%, -50%);
          transform: rotate(45deg) translate(-50%, -50%);
  z-index: 2;
}
.contact-form input[type=checkbox] + label {
  font-size: 12px;
  line-height: 16px;
  font-weight: 400;
  text-transform: none;
}
.contact-form input[type=checkbox] + label a {
  text-decoration: underline;
}
.contact-form input[type=checkbox] + label a:hover {
  text-decoration: none;
}
.contact-form textarea {
  min-height: 128px;
  resize: none;
}
.contact-form .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 15px;
}
.contact-form .row p {
  margin: 0;
}
.contact-form .col {
  width: 49%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media all and (max-width: 767px) {
  .contact-form .col {
    width: 48%;
  }
}

.checkbox-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.thanks-block.flex-box {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  width: 100%;
}
.thanks-block.flex-box h1 {
  line-height: 64px;
}
@media all and (max-width: 767px) {
  .thanks-block.flex-box h1 {
    width: 100%;
    line-height: 48px;
  }
}
.thanks-block.flex-box h6 {
  line-height: 24px;
}

.thank-you-page {
  padding-right: 0;
}
.thank-you-page .marquee {
  overflow: visible;
}

.page-bg {
  background: rgba(255, 226, 63, 0.9) url(../images/design/page-bg.78e38c.png) no-repeat;
  background-size: 100%;
}
@media all and (max-width: 767px) {
  .page-bg {
    background: rgb(191, 229, 255) url(../images/design/yellow-blur.b3f8f7.png);
    background-size: 100%;
    position: relative;
  }
  .page-bg:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: url("../images/design/Homepage%20&%20About%20(So%20far%20we%20raised).19b1f6.png");
  }
  .page-bg .container {
    position: relative;
    z-index: 1;
  }
}

.reports-bg {
  background: radial-gradient(ellipse at 50% 0%, rgb(161, 216, 255) 0%, rgba(0, 188, 212, 0) 100%);
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(161, 216, 255)), to(rgba(0, 188, 212, 0)));
  background: linear-gradient(180deg, rgb(161, 216, 255) 0%, rgba(0, 188, 212, 0) 100%);
}

.spread-hero {
  padding: 128px 20px 40px;
  max-width: 505px;
  margin: 0 auto;
  text-align: center;
}
@media all and (max-width: 767px) {
  .spread-hero {
    padding: 80px 20px 40px;
  }
}
.spread-hero .h1 {
  margin-bottom: 24px;
}
.spread-hero__sub-title {
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
  margin-bottom: 16px;
}
@media all and (max-width: 767px) {
  .spread-hero__sub-title {
    font-size: 16px;
    margin-bottom: 10px;
  }
}
.spread-hero__description {
  opacity: 0.7;
}
@media all and (max-width: 767px) {
  .spread-hero__description {
    font-size: 14px;
  }
}
.spread-hero__description a {
  text-decoration: underline;
  color: #013AC5;
}
.spread-hero__description a:hover {
  text-decoration: none;
}

.block-with-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 128px;
  position: relative;
}
@media all and (max-width: 767px) {
  .block-with-img {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    margin-bottom: 56px;
  }
  .block-with-img:last-of-type {
    margin-bottom: 0;
  }
}
.block-with-img__info {
  -ms-flex-preferred-size: 60%;
      flex-basis: 60%;
}
@media all and (max-width: 767px) {
  .block-with-img__info {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    width: 100%;
  }
}
.block-with-img__info .h2 {
  margin-bottom: 24px;
}
@media all and (max-width: 767px) {
  .block-with-img__info .h2 {
    font-size: 32px;
    line-height: 36px;
  }
}
.block-with-img__info p {
  margin-bottom: 40px;
}
@media all and (max-width: 767px) {
  .block-with-img__info p {
    max-width: 100%;
    font-size: 14px;
    line-height: 20px;
  }
}
.block-with-img__image {
  -ms-flex-preferred-size: 30%;
      flex-basis: 30%;
  -webkit-box-shadow: 0 19px 39px 0 rgba(0, 0, 0, 0.09);
          box-shadow: 0 19px 39px 0 rgba(0, 0, 0, 0.09);
}
@media all and (max-width: 767px) {
  .block-with-img__image {
    position: relative;
    bottom: 0;
    width: 136px;
  }
}
.block-with-img__image img {
  max-width: 100%;
  height: auto;
}
@media all and (max-width: 767px) {
  .block-with-img .block-with-img__info p {
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 20px;
  }
}
.block-with-img.reverse .block-with-img__image {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.block-with-img.reverse .block-with-img__info {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
@media all and (max-width: 767px) {
  .block-with-img.reverse .block-with-img__image {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .block-with-img.reverse .block-with-img__info {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

.download-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media all and (max-width: 767px) {
  .download-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 50%;
  }
}
.download-list li {
  margin-right: 16px;
  margin-bottom: 16px;
}
@media all and (max-width: 767px) {
  .download-list li {
    margin-right: 10px;
    margin-bottom: 10px;
  }
}
.download-list a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  font-size: 10px;
  line-height: 12px;
  font-weight: 700;
  text-transform: uppercase;
  -webkit-transition: all ease 0.2s;
  transition: all ease 0.2s;
}
.download-list a:hover {
  text-decoration: none;
  color: #013AC5;
}
.download-list a:hover .arrow:after {
  width: 80%;
  left: 10%;
}
.download-list a:hover .arrow svg {
  top: 2px;
}

.arrow {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  margin-left: 4px;
}
.arrow:after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #013AC5;
  position: absolute;
  top: 100%;
  left: 0;
  -webkit-transition: all ease 0.2s;
  transition: all ease 0.2s;
}
.arrow svg {
  position: relative;
  top: 0;
  -webkit-transition: all ease 0.2s;
  transition: all ease 0.2s;
}

.report-list {
  width: 100%;
}
.report-list li:last-of-type a {
  border-bottom: 1px solid #013AC5;
}
.report-list a {
  width: 100%;
  max-width: 820px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-top: 1px solid #013AC5;
  padding: 16px 0;
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
  margin: 0 auto;
}
.report-list a:hover {
  text-decoration: none;
}
.report-list a:hover .arrow:after {
  width: 70%;
  left: 15%;
}
.report-list a:hover .arrow svg {
  top: 5px;
}

@page {
  padding-top: 0;
  padding-bottom: 0;
  margin: 0;
  width: 100%;
  height: 100%;
}
.certificate-box {
  background: url(../images/design/sertificat-bg.1b1024.png) no-repeat 50% 50%;
  background-size: cover;
  overflow: hidden;
  min-height: 100vh;
}

.certificate-container {
  max-width: 1200px;
  padding: 0 20px;
  margin: 30px auto 0;
}

.certificate-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 42px;
}
.certificate-row.center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.certificate-row .logo {
  font-size: 10.5px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.certificate-row .logo img {
  width: 75px;
  margin-right: 0;
}

@media all and (max-width: 800px) {
  .certificate-col {
    width: 48%;
  }
}
.certificate-col.small {
  width: 45%;
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media all and (max-width: 800px) {
  .certificate-col.small {
    width: 50%;
  }
}
.certificate-col .title {
  font-size: 64px;
  line-height: 72px;
  max-width: 520px;
  margin-bottom: 0;
}
@media all and (max-width: 800px) {
  .certificate-col .title {
    font-size: 46px;
    line-height: 65px;
    margin-bottom: 65px;
  }
}
.certificate-col .certificate-image {
  margin-left: auto;
  max-width: 80%;
}
@media all and (max-width: 800px) {
  .certificate-col .certificate-image {
    margin: 0 auto;
  }
}
.certificate-col .description {
  font-size: 20px;
  line-height: 32px;
  margin-bottom: 28px;
  max-width: 523px;
  margin-left: auto;
}
.certificate-col .caption {
  margin-top: auto;
  width: 100%;
}
.certificate-col .captoin-list {
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-left: auto;
  position: relative;
  width: 100%;
}
.certificate-col .captoin-list:after {
  content: "";
  position: absolute;
  left: 43%;
  top: 0;
  width: 1px;
  height: 78px;
  background: #013AC5;
}
.certificate-col .captoin-list li {
  max-width: 50%;
}
.certificate-col .captoin-list span {
  color: #013AC5;
}
.certificate-col .captoin-list p {
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 0;
}
.certificate-col .caption-image {
  margin-left: auto;
}

.initials {
  background: none;
  border: none;
  padding: 5px 15px;
  border-bottom: 1px solid #013AC5;
  width: calc(100% - 20px);
  max-width: 520px;
  font-size: 24px;
}

.comma {
  font-size: 48px;
  line-height: 24px;
  position: relative;
  top: 8px;
  margin-left: 5px;
}

@page table-portrait {
  .certificate-col .title {
    font-size: 48px;
  }
}
.products {
  position: relative;
  text-align: center;
}
.products .products_slider {
  margin: 0 10px;
}
.products .products_slider .progress-bar {
  width: 100%;
  max-width: 100%;
}
.products .products_slider .progress-info {
  white-space: nowrap;
}
.products .product {
  float: left;
  width: 295px;
  margin-bottom: 24px;
}
@media all and (max-width: 630px) {
  .products .product {
    display: inline-block;
    float: none;
  }
}
.products .product .periodic-slide {
  background-size: cover;
  display: inline-block;
  padding: 20px;
  margin: 10px;
  text-align: center;
  color: #00185c;
  border-radius: 15px;
  background: url(../images/design/produck-bg-2.569dc4.png);
  border: 2px solid #00185c;
  background-size: cover;
  background-position: center;
  position: relative;
}
.products .product .periodic-slide .content-wrapper {
  margin-top: 20px;
}
.products .product .periodic-slide .price {
  background: #00185c !important;
  color: white !important;
  font-weight: bold;
  padding: 10px 30px;
  border-radius: 30px;
  white-space: nowrap;
}
.products .product .periodic-slide .e-description {
  position: absolute;
  padding: 20px;
  background: rgba(255, 233, 55, 0.8);
  border-radius: 15px;
  margin: 0;
  font-size: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  opacity: 0;
  line-height: 24px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
}
.products .product .periodic-slide .e-description:hover {
  opacity: 1;
}
.products .product .periodic-slide .e-title {
  border-bottom: 2px solid #00185c;
  padding-bottom: 10px;
  text-transform: uppercase;
  font-size: 20px;
  position: relative;
  z-index: 1;
}
.products .product .periodic-slide .e-title-box {
  height: 40px;
}
.products .slick-prev {
  bottom: -42px;
}
.products .slick-next {
  bottom: -42px;
}

/* Components */
.status-bar {
  background: #BFE5FF;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 2; /*
@media all and (max-width: 980px){
  position: static;
}*/
}

.status-bar-container {
  padding: 32px 20px;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media all and (max-width: 767px) {
  .status-bar-container {
    padding: 10px 20px;
  }
}
@media all and (max-width: 550px) {
  .status-bar-container .logo {
    font-size: 0;
  }
}

.progress-bar {
  background: none !important;
  max-width: calc(100% - 55px);
}

.progress {
  width: 350px;
  max-width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  border-radius: 6px;
  height: 18px;
  background: none !important;
  border: 1px solid #00185C;
  overflow: hidden;
  margin-bottom: 6px;
}
.progress div {
  margin: 0;
  height: 100%;
  background: #00185C;
  position: relative;
}
.progress div:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-bottom: 16px solid #00185C;
  border-right: 5px solid transparent;
  position: absolute;
  right: -5px;
  top: 0;
}

.progress-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.progress-info span {
  font-size: 10px;
  text-transform: uppercase;
  font-weight: 700;
}
.progress-info span a {
  color: #00185C;
}
.progress-info span strong {
  font-size: 14px;
  font-weight: 700;
  color: #00185C;
}

@media all and (max-width: 767px) {
  .search-holder {
    max-width: 60%;
  }
}

.search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media all and (max-width: 767px) {
  .search {
    margin-top: 14px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
  }
}
.search label {
  margin-right: 24px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  line-height: 36px;
}
@media all and (max-width: 550px) {
  .search label {
    font-size: 10px;
    line-height: 36px;
    margin-right: 0;
  }
}
.search .search-box {
  width: 225px;
  height: 36px;
  border: 1px solid #00185C;
  border-radius: 60px;
  padding: 8px 16px 8px 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 100%;
  position: relative;
}
.search .search-box:hover {
  background: #EFF8FF;
  border-color: transparent;
}
.search .search-box:focus-within {
  border-color: #00185C;
}
.search .search-box.error {
  border-color: #FF5656;
}
.search .search-box.disabled {
  border-color: #A8A8A8;
  pointer-events: none;
}
.search .search-box.disabled input[type=search]::-webkit-input-placeholder {
  color: #A8A8A8;
}
.search .search-box.disabled input[type=search]::-moz-placeholder {
  color: #A8A8A8;
}
.search .search-box.disabled input[type=search]:-ms-input-placeholder {
  color: #A8A8A8;
}
.search .search-box.disabled input[type=search]::-ms-input-placeholder {
  color: #A8A8A8;
}
.search .search-box.disabled input[type=search]::placeholder {
  color: #A8A8A8;
}
.search .search-box.disabled svg path {
  stroke: #A8A8A8;
}
.search .search-box label.error {
  position: absolute;
  top: -20px;
  left: 15px;
  line-height: 13px;
  font-size: 13px;
  color: #FF5656;
}
.search input {
  background: none;
  border: none;
  font-size: 14px;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  max-width: calc(100% - 17px);
}
.search input:focus {
  outline: none;
}
.search input[type=search]::-webkit-search-cancel-button {
  -webkit-appearance: none;
}
.search input[type=search]::-webkit-input-placeholder {
  color: #00185C;
}
.search input[type=search]::-moz-placeholder {
  color: #00185C;
}
.search input[type=search]:-ms-input-placeholder {
  color: #00185C;
}
.search input[type=search]::-ms-input-placeholder {
  color: #00185C;
}
.search input[type=search]::placeholder {
  color: #00185C;
}
.search .clear:not(:valid) ~ .search-clear {
  display: none;
}
.search button {
  /*width: 17px;
  height: 17px;
  background: url("../images/design/search.svg") no-repeat center;*/
  background: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border: none;
  cursor: pointer;
}

.error-message {
  color: #FF5656;
}

.modal-container {
  max-width: 472px;
  width: 90%;
  margin: 0 auto;
  padding: 72px 32px 24px;
  background: #EFF8FF;
  border-radius: 7px;
  position: relative;
}
.modal-container .mfp-close {
  width: 16px;
  height: 16px;
  padding: 0;
  background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTgiIGhlaWdodD0iMTkiIHZpZXdCb3g9IjAgMCAxOCAxOSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTEuMDExNzIgMS41TDE3LjAxMjEgMTcuNTAwNCIgc3Ryb2tlPSIjMDAxODVDIiBzdHJva2Utd2lkdGg9IjIiLz4KPHBhdGggZD0iTTEuMDExNzIgMTcuNUwxNy4wMTIxIDEuNDk5NTkiIHN0cm9rZT0iIzAwMTg1QyIgc3Ryb2tlLXdpZHRoPSIyIi8+Cjwvc3ZnPgo=) no-repeat;
  top: 24px;
  right: 32px;
  background-size: cover;
  opacity: 1;
  cursor: pointer;
}

.amount-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-right: -8px;
  margin-bottom: 24px;
}
.amount-list li {
  margin-right: 8px;
  margin-bottom: 8px;
}
.amount-list li a {
  border-radius: 7px;
  border: 1px solid #00185C;
  background: #fff;
  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;
  width: 96px;
  height: 112px;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  text-transform: uppercase;
}
@media all and (max-width: 767px) {
  .amount-list li a {
    width: 74px;
    height: 64px;
  }
}
.amount-list li a span {
  font-size: 10px;
  line-height: 12px;
}
.amount-list li a.active, .amount-list li a:hover {
  background: #BFE5FF;
  border-color: #BFE5FF;
  text-decoration: none;
}
.amount-list li a:focus-within, .amount-list li a:focus {
  background: #BFE5FF;
}
.amount-list li a.disabled {
  border-color: #A8A8A8;
  color: #A8A8A8;
  background: #f1f1f1;
  cursor: default;
}

.modal-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media all and (max-width: 767px) {
  .modal-actions {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.back-btn {
  background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjEiIHZpZXdCb3g9IjAgMCAyMSAyMSIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTAuMTEwMjU2IDExLjA4ODlDMC4wNzU5OTA4IDExLjA2MTQgMC4wNDg2OTQxIDExLjAyMjIgMC4wMzE1NzI0IDEwLjk3NkMwLjAxNDQ1MDcgMTAuOTI5OCAwLjAwODIxNTg3IDEwLjg3ODQgMC4wMTM1OTg5IDEwLjgyNzhDMC4wMTc5NTkxIDEwLjcyODUgMC4wNTI1NTQzIDEwLjYzNTEgMC4xMTAyNTYgMTAuNTY2OEw3LjUwMDgxIDIuNjUyODZDNy41OTcxIDIuNTYxNjMgNy43MTMwMyAyLjUwODczIDcuODMzNTkgMi41MDEwMUM3Ljk1NDE1IDIuNDkzMjggOC4wNzM3OCAyLjUzMTA5IDguMTc3IDIuNjA5NTNDOC4zNjk5IDIuNzgzMzkgOC40MTg2NCAzLjA0NDQzIDguMjI1MzMgMy4yMTgyOUwxLjUxMTM4IDEwLjM5MjlMMTkuNTI4NCAxMC4zOTI5QzE5LjgyMDEgMTAuMzkyOSAyMC4wMTE3IDEwLjU2NjggMjAuMDExNyAxMC44Mjc4QzIwLjAxMTcgMTEuMDg4OSAxOS44MTg4IDExLjI2MjcgMTkuNTI4NCAxMS4yNjI3SDEuNTExMzhMOC4yNzM2NiAxOC40ODM4QzguMzE0OTcgMTguNTE5MSA4LjM0Nzk0IDE4LjU2NzYgOC4zNjkwOSAxOC42MjQzQzguMzkwMjQgMTguNjgxMSA4LjM5ODc5IDE4Ljc0MzkgOC4zOTM4NSAxOC44MDYyQzguMzg4OSAxOC44Njg1IDguMzcwNjQgMTguOTI4IDguMzQwOTggMTguOTc4NEM4LjMxMTMyIDE5LjAyODggOC4yNzEzNyAxOS4wNjgzIDguMjI1MzMgMTkuMDkyNkM4LjEyMjExIDE5LjE3MTQgOC4wMDIyNSAxOS4yMDkyIDcuODgxNTUgMTkuMjAxQzcuNzYwODQgMTkuMTkyOCA3LjY0NDk1IDE5LjEzOSA3LjU0OTE0IDE5LjA0NjdMMC4xMTAyNTYgMTEuMDg4OVoiIGZpbGw9IiMwMTNBQzUiLz4KPC9zdmc+Cg==) no-repeat 0 50%;
  padding-left: 24px;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #013AC5;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.back-btn:hover {
  text-decoration: none;
  padding-left: 28px;
}
@media all and (max-width: 767px) {
  .back-btn {
    margin-top: 24px;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

.blue-link {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #013AC5;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.blue-link:hover {
  text-decoration: none;
}
@media all and (max-width: 767px) {
  .blue-link {
    margin-top: 24px;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

.modal-form {
  margin-bottom: 40px;
}
.modal-form .h6 {
  margin-bottom: 40px;
  text-transform: uppercase;
}
.modal-form input {
  width: 100%;
  max-width: 275px;
  margin: 0 auto;
  background: none;
  border: none;
  border-bottom: 1px solid #00185C;
  padding: 8px;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  text-align: center;
  text-transform: uppercase;
}
.modal-form input:hover {
  background-color: #EFF8FF;
  border-color: #EFF8FF;
}
.modal-form input:focus-within, .modal-form input:focus {
  background-color: #EFF8FF;
  border-color: #00185C;
}
.modal-form input::-webkit-input-placeholder {
  font-weight: 400;
  text-transform: none;
  font-size: 12px;
}
.modal-form input::-moz-placeholder {
  font-weight: 400;
  text-transform: none;
  font-size: 12px;
}
.modal-form input:-ms-input-placeholder {
  font-weight: 400;
  text-transform: none;
  font-size: 12px;
}
.modal-form input::-ms-input-placeholder {
  font-weight: 400;
  text-transform: none;
  font-size: 12px;
}
.modal-form input::placeholder {
  font-weight: 400;
  text-transform: none;
  font-size: 12px;
}
.modal-form input.error {
  border-color: #FF5656;
}
.modal-form input.disabled {
  color: #A8A8A8;
  border-color: #A8A8A8;
}
.modal-form .error-message {
  font-size: 12px;
}

.donation-method-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-line-pack: start;
      align-content: flex-start;
  gap: 8px;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 24px;
}
.donation-method-list a {
  border-radius: 7px;
  border: 1px solid #00185C;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 93px;
  height: 75px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.donation-method-list a.active, .donation-method-list a:hover {
  background: #BFE5FF;
  border-color: #BFE5FF;
}
.donation-method-list a .mini-header {
  max-width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: start;
      align-self: flex-start;
}
.donation-method-list a .paysera {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: baseline;
      align-self: baseline;
}
.donation-method-list a img {
  max-width: 86%;
}

.address {
  /* Caption 2 */
  font-family: Larsseit;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px; /* 142.857% */
  text-transform: uppercase;
}

.blue {
  color: var(--Blue-700, #013AC5);
  /* Caption 2 */
  font-family: Larsseit;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px;
  text-transform: uppercase;
}

input[type=checkbox] {
  -webkit-appearance: checkbox;
     -moz-appearance: checkbox;
          appearance: checkbox;
  width: 12px;
  height: 12px;
  margin: 0;
  margin-right: 6px;
  position: relative;
  top: 2px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media all and (max-width: 767px) {
  input[type=checkbox] {
    width: 16px;
    height: 16px;
  }
}

.modal-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;
  -webkit-box-align: left;
      -ms-flex-align: left;
          align-items: left;
  gap: 24px;
  -ms-flex-item-align: stretch;
      align-self: stretch;
}

label {
  display: block;
  color: #00185C;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  cursor: pointer;
}
label.checkbox-label {
  color: #00185C;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
label.checkbox-label a {
  text-decoration: underline;
}

.card-form {
  margin-bottom: 40px;
}
.card-form .h6 {
  margin-bottom: 40px;
  text-transform: uppercase;
}
.card-form .row {
  margin-bottom: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  position: relative;
}
.card-form .col {
  width: 49%;
}
.card-form input {
  background: #fff;
  border: 1px solid #00185C;
  border-radius: 7px;
  padding: 11px 28px 11px 12px;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #00185C;
  width: 100%;
}
.card-form input::-webkit-input-placeholder {
  color: #00185C;
}
.card-form input::-moz-placeholder {
  color: #00185C;
}
.card-form input:-ms-input-placeholder {
  color: #00185C;
}
.card-form input::-ms-input-placeholder {
  color: #00185C;
}
.card-form input::placeholder {
  color: #00185C;
}
.card-form input::-webkit-outer-spin-button, .card-form input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.card-form input[type=number] {
  -moz-appearance: textfield;
}

.icon-inputs, .icon-info, .icon-lock {
  width: 16px;
  height: 16px;
  position: absolute;
  right: 13px;
  top: 13px;
  border: none;
}

.icon-lock {
  background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTciIGhlaWdodD0iMTciIHZpZXdCb3g9IjAgMCAxNyAxNyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTExLjkzMDggMTUuNzc5M0g0LjI4MjgxQzQuMTE1MjkgMTUuNzc5MyAzLjk0OTQyIDE1Ljc0NjMgMy43OTQ2NiAxNS42ODIxQzMuNjM5OTEgMTUuNjE4IDMuNDk5MzEgMTUuNTI0IDMuMzgwOSAxNS40MDU1QzMuMjYyNDkgMTUuMjg3IDMuMTY4NiAxNS4xNDYzIDMuMTA0NTggMTQuOTkxNUMzLjA0MDU2IDE0LjgzNjcgMy4wMDc2OCAxNC42NzA4IDMuMDA3ODEgMTQuNTAzM1Y3LjI3OTNIMTMuMjA3OFYxNC41MDMzQzEzLjIwNzkgMTQuNjcxIDEzLjE3NSAxNC44MzcxIDEzLjExMDkgMTQuOTkyQzEzLjA0NjcgMTUuMTQ2OSAxMi45NTI2IDE1LjI4NzcgMTIuODM0IDE1LjQwNjJDMTIuNzE1NCAxNS41MjQ3IDEyLjU3NDYgMTUuNjE4NyAxMi40MTk2IDE1LjY4MjdDMTIuMjY0NiAxNS43NDY3IDEyLjA5ODUgMTUuNzc5NiAxMS45MzA4IDE1Ljc3OTNaIiBzdHJva2U9IiMwMDE4NUMiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8cGF0aCBkPSJNNC43MTA5NCA3LjI3OTg2VjUuMTU1ODZDNC43MTA5NCA0LjI1NDEyIDUuMDY5MTUgMy4zODkzMiA1LjcwNjc3IDIuNzUxN0M2LjM0NDQgMi4xMTQwNyA3LjIwOTIgMS43NTU4NiA4LjExMDk0IDEuNzU1ODZDOS4wMTI2NyAxLjc1NTg2IDkuODc3NDggMi4xMTQwNyAxMC41MTUxIDIuNzUxN0MxMS4xNTI3IDMuMzg5MzIgMTEuNTEwOSA0LjI1NDEyIDExLjUxMDkgNS4xNTU4NlY3LjI3OTg2IiBzdHJva2U9IiMwMDE4NUMiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8cGF0aCBkPSJNOC4wNDUgMTEuMTU4NEM4LjI3Njk2IDExLjE1ODQgOC40NjUgMTAuOTcwMyA4LjQ2NSAxMC43Mzg0QzguNDY1IDEwLjUwNjQgOC4yNzY5NiAxMC4zMTg0IDguMDQ1IDEwLjMxODRDNy44MTMwNCAxMC4zMTg0IDcuNjI1IDEwLjUwNjQgNy42MjUgMTAuNzM4NEM3LjYyNSAxMC45NzAzIDcuODEzMDQgMTEuMTU4NCA4LjA0NSAxMS4xNTg0WiIgc3Ryb2tlPSIjMDAxODVDIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPHBhdGggZD0iTTguMDQ2ODggMTIuODM4MlYxMS4xNTgyIiBzdHJva2U9IiMwMDE4NUMiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIvPgo8L3N2Zz4K) no-repeat center;
}

.icon-info {
  background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTciIGhlaWdodD0iMTciIHZpZXdCb3g9IjAgMCAxNyAxNyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTcuNTEwODEgMTUuMjYxOUMxMS4zNzg1IDE1LjI2MTkgMTQuNTEzOCAxMi4xMjY1IDE0LjUxMzggOC4yNTg4NkMxNC41MTM4IDQuMzkxMjEgMTEuMzc4NSAxLjI1NTg2IDcuNTEwODEgMS4yNTU4NkMzLjY0MzE2IDEuMjU1ODYgMC41MDc4MTIgNC4zOTEyMSAwLjUwNzgxMiA4LjI1ODg2QzAuNTA3ODEyIDEyLjEyNjUgMy42NDMxNiAxNS4yNjE5IDcuNTEwODEgMTUuMjYxOVoiIHN0cm9rZT0iIzAwMTg1QyIvPgo8cGF0aCBkPSJNNy45NTQ4MSA5LjI4NzRDNy45MjA4MSA4LjI3NjQgMTAuNTMyOCA4LjE3OTQgMTAuNTMyOCA2LjI1NDRDMTAuNTMyOCA0LjgyMjQgOS4xOTY4MSAzLjg4MzQgNy40NTE4MSAzLjg4MzRDNy4wNzQzNyAzLjgzOTg0IDYuNjkyIDMuODc0ODMgNi4zMjg3MiAzLjk4NjE1QzUuOTY1NDUgNC4wOTc0OCA1LjYyOTEzIDQuMjgyNzUgNS4zNDA5MSA0LjUzMDMxQzUuMDUyNjggNC43Nzc4NyA0LjgxODc4IDUuMDgyMzggNC42NTM4OSA1LjQyNDY4QzQuNDg5MDEgNS43NjY5OSA0LjM5NjcyIDYuMTM5NzEgNC4zODI4MSA2LjUxOTRMNi4wOTE4MSA2LjYwMzRDNi4wODUxNCA2LjQxNTY4IDYuMTE3NDEgNi4yMjg2MSA2LjE4NjU3IDYuMDUzOTdDNi4yNTU3MyA1Ljg3OTMzIDYuMzYwMjkgNS43MjA4OSA2LjQ5MzY3IDUuNTg4NjRDNi42MjcwNiA1LjQ1NjM4IDYuNzg2MzggNS4zNTMxNiA2Ljk2MTYgNS4yODU0OUM3LjEzNjgyIDUuMjE3ODEgNy4zMjQxNiA1LjE4NzE0IDcuNTExODEgNS4xOTU0QzguMzI5ODEgNS4xOTU0IDguODIzODEgNS42NDA0IDguODIzODEgNi4yNTQ0QzguODIzODEgNy41NDI0IDYuMzIzODEgNy40NzA0IDYuNDc2ODEgOS4yODc0SDcuOTU0ODFaTTguMDAyODEgMTIuMjYwNFYxMC41Mjc0SDYuNDU0ODFWMTIuMjYwNEg4LjAwMjgxWiIgZmlsbD0iIzAwMTg1QyIvPgo8L3N2Zz4K) no-repeat center;
  background-size: cover;
}

.modal-info {
  margin-bottom: 40px;
}
.modal-info h6 {
  margin-bottom: 24px;
}
.modal-info__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  text-transform: uppercase;
  margin: 0 0 24px;
}
.modal-info__subtitle {
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  text-transform: uppercase;
  margin: 0 0 24px;
}
.modal-info p {
  margin-bottom: 16px;
}
.modal-info strong {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.qr-code {
  margin-bottom: 16px;
  max-width: 80px;
  height: auto;
}

.smaller {
  margin-top: 16px;
  font-size: 12px;
  line-height: 16px;
}

.modal-content-ways {
  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;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  -ms-flex-item-align: stretch;
      align-self: stretch;
}
.modal-content-ways .banks {
  width: 100%;
  padding-top: 12px;
  border-top: 1px solid var(--Blue-800, #00185C);
  border-bottom: 1px solid var(--Blue-800, #00185C);
  margin-bottom: 24px;
  padding-bottom: -12px;
}
.modal-content-ways .subtitle {
  color: #00185C;
  /* Caption 2 */
  font-family: Larsseit;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 20px; /* 142.857% */
  text-transform: uppercase;
}
.modal-content-ways p {
  font-size: 14px;
}
.modal-content-ways .donation-method-list {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0;
}
.modal-content-ways .donation-method-list a {
  height: 116px;
}
.modal-content-ways .donation-method-list .mini-header {
  color: var(--Blue-400, #EFF8FF);
  text-align: center;
  /* Caption 3 */
  font-family: Larsseit;
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
  line-height: 12px; /* 120% */
  text-transform: uppercase;
  background: var(--Blue-800, #00185C);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 94px;
  height: 40px;
  padding: 8px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  border-radius: 7px 7px 0px 0px;
}
.modal-content-ways .donation-method-list .mini-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 94px;
  height: 76px;
  padding: 19.093px 9.184px 19.093px 9.188px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.modal-content-ways .modal-info__title {
  margin: 0;
}
.modal-content-ways h6 {
  margin: 0;
}

/* Browser specific styles */
/**
 * Dirty hacks, yes internet explorer, we are looking at you
*/
