@charset "UTF-8";/*!
 * 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: calc(1 * 2);
  animation-iteration-count: calc(1 * 2);
  -webkit-animation-iteration-count: calc(var(--animate-repeat) * 2);
  animation-iteration-count: calc(var(--animate-repeat) * 2);
}
.animate__animated.animate__repeat-3 {
  -webkit-animation-iteration-count: calc(1 * 3);
  animation-iteration-count: calc(1 * 3);
  -webkit-animation-iteration-count: calc(var(--animate-repeat) * 3);
  animation-iteration-count: calc(var(--animate-repeat) * 3);
}
.animate__animated.animate__delay-1s {
  -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: calc(1s * 2);
  animation-delay: calc(1s * 2);
  -webkit-animation-delay: calc(var(--animate-delay) * 2);
  animation-delay: calc(var(--animate-delay) * 2);
}
.animate__animated.animate__delay-3s {
  -webkit-animation-delay: calc(1s * 3);
  animation-delay: calc(1s * 3);
  -webkit-animation-delay: calc(var(--animate-delay) * 3);
  animation-delay: calc(var(--animate-delay) * 3);
}
.animate__animated.animate__delay-4s {
  -webkit-animation-delay: calc(1s * 4);
  animation-delay: calc(1s * 4);
  -webkit-animation-delay: calc(var(--animate-delay) * 4);
  animation-delay: calc(var(--animate-delay) * 4);
}
.animate__animated.animate__delay-5s {
  -webkit-animation-delay: calc(1s * 5);
  animation-delay: calc(1s * 5);
  -webkit-animation-delay: calc(var(--animate-delay) * 5);
  animation-delay: calc(var(--animate-delay) * 5);
}
.animate__animated.animate__faster {
  -webkit-animation-duration: calc(1s / 2);
  animation-duration: calc(1s / 2);
  -webkit-animation-duration: calc(var(--animate-duration) / 2);
  animation-duration: calc(var(--animate-duration) / 2);
}
.animate__animated.animate__fast {
  -webkit-animation-duration: calc(1s * 0.8);
  animation-duration: calc(1s * 0.8);
  -webkit-animation-duration: calc(var(--animate-duration) * 0.8);
  animation-duration: calc(var(--animate-duration) * 0.8);
}
.animate__animated.animate__slow {
  -webkit-animation-duration: calc(1s * 2);
  animation-duration: calc(1s * 2);
  -webkit-animation-duration: calc(var(--animate-duration) * 2);
  animation-duration: calc(var(--animate-duration) * 2);
}
.animate__animated.animate__slower {
  -webkit-animation-duration: calc(1s * 3);
  animation-duration: calc(1s * 3);
  -webkit-animation-duration: calc(var(--animate-duration) * 3);
  animation-duration: calc(var(--animate-duration) * 3);
}
@media print, (prefers-reduced-motion: reduce) {
  .animate__animated {
    -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: calc(1s * 1.3);
  animation-duration: calc(1s * 1.3);
  -webkit-animation-duration: calc(var(--animate-duration) * 1.3);
  animation-duration: calc(var(--animate-duration) * 1.3);
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}
/* Back entrances */
@-webkit-keyframes backInDown {
  0% {
    -webkit-transform: translateY(-1200px) scale(0.7);
    transform: translateY(-1200px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes backInDown {
  0% {
    -webkit-transform: translateY(-1200px) scale(0.7);
    transform: translateY(-1200px) scale(0.7);
    opacity: 0.7;
  }

  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

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

  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

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

  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

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

  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

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

  80% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

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

  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

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

  80% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInUp {
  -webkit-animation-name: backInUp;
  animation-name: backInUp;
}
/* Back exits */
@-webkit-keyframes backOutDown {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateY(700px) scale(0.7);
    transform: translateY(700px) scale(0.7);
    opacity: 0.7;
  }
}
@keyframes backOutDown {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }

  20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

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

  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

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

  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

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

  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

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

  20% {
    -webkit-transform: translateX(0px) scale(0.7);
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }

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

  20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

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

  20% {
    -webkit-transform: translateY(0px) scale(0.7);
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }

  100% {
    -webkit-transform: translateY(-700px) scale(0.7);
    transform: translateY(-700px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutUp {
  -webkit-animation-name: backOutUp;
  animation-name: backOutUp;
}
/* Bouncing entrances  */
@-webkit-keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }

  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes bounceIn {
  from,
  20%,
  40%,
  60%,
  80%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }

  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.animate__bounceIn {
  -webkit-animation-duration: calc(1s * 0.75);
  animation-duration: calc(1s * 0.75);
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}
@-webkit-keyframes bounceInDown {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0) scaleY(3);
    transform: translate3d(0, -3000px, 0) scaleY(3);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0) scaleY(0.9);
    transform: translate3d(0, 25px, 0) scaleY(0.9);
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.95);
    transform: translate3d(0, -10px, 0) scaleY(0.95);
  }

  90% {
    -webkit-transform: translate3d(0, 5px, 0) scaleY(0.985);
    transform: translate3d(0, 5px, 0) scaleY(0.985);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInDown {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0) scaleY(3);
    transform: translate3d(0, -3000px, 0) scaleY(3);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0) scaleY(0.9);
    transform: translate3d(0, 25px, 0) scaleY(0.9);
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.95);
    transform: translate3d(0, -10px, 0) scaleY(0.95);
  }

  90% {
    -webkit-transform: translate3d(0, 5px, 0) scaleY(0.985);
    transform: translate3d(0, 5px, 0) scaleY(0.985);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}
@-webkit-keyframes bounceInLeft {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0) scaleX(3);
    transform: translate3d(-3000px, 0, 0) scaleX(3);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0) scaleX(1);
    transform: translate3d(25px, 0, 0) scaleX(1);
  }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0) scaleX(0.98);
    transform: translate3d(-10px, 0, 0) scaleX(0.98);
  }

  90% {
    -webkit-transform: translate3d(5px, 0, 0) scaleX(0.995);
    transform: translate3d(5px, 0, 0) scaleX(0.995);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInLeft {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0) scaleX(3);
    transform: translate3d(-3000px, 0, 0) scaleX(3);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0) scaleX(1);
    transform: translate3d(25px, 0, 0) scaleX(1);
  }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0) scaleX(0.98);
    transform: translate3d(-10px, 0, 0) scaleX(0.98);
  }

  90% {
    -webkit-transform: translate3d(5px, 0, 0) scaleX(0.995);
    transform: translate3d(5px, 0, 0) scaleX(0.995);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}
@-webkit-keyframes bounceInRight {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0) scaleX(3);
    transform: translate3d(3000px, 0, 0) scaleX(3);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0) scaleX(1);
    transform: translate3d(-25px, 0, 0) scaleX(1);
  }

  75% {
    -webkit-transform: translate3d(10px, 0, 0) scaleX(0.98);
    transform: translate3d(10px, 0, 0) scaleX(0.98);
  }

  90% {
    -webkit-transform: translate3d(-5px, 0, 0) scaleX(0.995);
    transform: translate3d(-5px, 0, 0) scaleX(0.995);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInRight {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0) scaleX(3);
    transform: translate3d(3000px, 0, 0) scaleX(3);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0) scaleX(1);
    transform: translate3d(-25px, 0, 0) scaleX(1);
  }

  75% {
    -webkit-transform: translate3d(10px, 0, 0) scaleX(0.98);
    transform: translate3d(10px, 0, 0) scaleX(0.98);
  }

  90% {
    -webkit-transform: translate3d(-5px, 0, 0) scaleX(0.995);
    transform: translate3d(-5px, 0, 0) scaleX(0.995);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}
@-webkit-keyframes bounceInUp {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0) scaleY(5);
    transform: translate3d(0, 3000px, 0) scaleY(5);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }

  75% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.95);
    transform: translate3d(0, 10px, 0) scaleY(0.95);
  }

  90% {
    -webkit-transform: translate3d(0, -5px, 0) scaleY(0.985);
    transform: translate3d(0, -5px, 0) scaleY(0.985);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInUp {
  from,
  60%,
  75%,
  90%,
  to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }

  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0) scaleY(5);
    transform: translate3d(0, 3000px, 0) scaleY(5);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }

  75% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.95);
    transform: translate3d(0, 10px, 0) scaleY(0.95);
  }

  90% {
    -webkit-transform: translate3d(0, -5px, 0) scaleY(0.985);
    transform: translate3d(0, -5px, 0) scaleY(0.985);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}
/* Bouncing exits  */
@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  50%,
  55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }

  50%,
  55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.animate__bounceOut {
  -webkit-animation-duration: calc(1s * 0.75);
  animation-duration: calc(1s * 0.75);
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}
@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.985);
    transform: translate3d(0, 10px, 0) scaleY(0.985);
  }

  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0) scaleY(3);
    transform: translate3d(0, 2000px, 0) scaleY(3);
  }
}
@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(0.985);
    transform: translate3d(0, 10px, 0) scaleY(0.985);
  }

  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }

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

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

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

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

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

  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0) scaleY(0.9);
    transform: translate3d(0, 20px, 0) scaleY(0.9);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0) scaleY(3);
    transform: translate3d(0, -2000px, 0) scaleY(3);
  }
}
@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(0.985);
    transform: translate3d(0, -10px, 0) scaleY(0.985);
  }

  40%,
  45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0) scaleY(0.9);
    transform: translate3d(0, 20px, 0) scaleY(0.9);
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0) scaleY(3);
    transform: translate3d(0, -2000px, 0) scaleY(3);
  }
}
.animate__bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}
/* Fading entrances  */
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}
@-webkit-keyframes fadeInTopLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInTopLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInTopLeft {
  -webkit-animation-name: fadeInTopLeft;
  animation-name: fadeInTopLeft;
}
@-webkit-keyframes fadeInTopRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInTopRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInTopRight {
  -webkit-animation-name: fadeInTopRight;
  animation-name: fadeInTopRight;
}
@-webkit-keyframes fadeInBottomLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInBottomLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInBottomLeft {
  -webkit-animation-name: fadeInBottomLeft;
  animation-name: fadeInBottomLeft;
}
@-webkit-keyframes fadeInBottomRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInBottomRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInBottomRight {
  -webkit-animation-name: fadeInBottomRight;
  animation-name: fadeInBottomRight;
}
/* Fading exits */
@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
.animate__fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}
@-webkit-keyframes fadeOutTopLeft {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
}
@keyframes fadeOutTopLeft {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0);
  }
}
.animate__fadeOutTopLeft {
  -webkit-animation-name: fadeOutTopLeft;
  animation-name: fadeOutTopLeft;
}
@-webkit-keyframes fadeOutTopRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
}
@keyframes fadeOutTopRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0);
  }
}
.animate__fadeOutTopRight {
  -webkit-animation-name: fadeOutTopRight;
  animation-name: fadeOutTopRight;
}
@-webkit-keyframes fadeOutBottomRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
}
@keyframes fadeOutBottomRight {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0);
  }
}
.animate__fadeOutBottomRight {
  -webkit-animation-name: fadeOutBottomRight;
  animation-name: fadeOutBottomRight;
}
@-webkit-keyframes fadeOutBottomLeft {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
}
@keyframes fadeOutBottomLeft {
  from {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0);
  }
}
.animate__fadeOutBottomLeft {
  -webkit-animation-name: fadeOutBottomLeft;
  animation-name: fadeOutBottomLeft;
}
/* Flippers */
@-webkit-keyframes flip {
  from {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  to {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
@keyframes flip {
  from {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0)
      rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  to {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
.animate__animated.animate__flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}
@-webkit-keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

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

  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.animate__flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}
@-webkit-keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }

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

  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
.animate__flipOutY {
  -webkit-animation-duration: calc(1s * 0.75);
  animation-duration: calc(1s * 0.75);
  -webkit-animation-duration: calc(var(--animate-duration) * 0.75);
  animation-duration: calc(var(--animate-duration) * 0.75);
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}
/* Lightspeed */
@-webkit-keyframes lightSpeedInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes lightSpeedInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__lightSpeedInRight {
  -webkit-animation-name: lightSpeedInRight;
  animation-name: lightSpeedInRight;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}
@-webkit-keyframes lightSpeedInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(30deg);
    transform: translate3d(-100%, 0, 0) skewX(30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: skewX(-20deg);
    transform: skewX(-20deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: skewX(5deg);
    transform: skewX(5deg);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes lightSpeedInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(30deg);
    transform: translate3d(-100%, 0, 0) skewX(30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: skewX(-20deg);
    transform: skewX(-20deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: skewX(5deg);
    transform: skewX(5deg);
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__lightSpeedInLeft {
  -webkit-animation-name: lightSpeedInLeft;
  animation-name: lightSpeedInLeft;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}
@-webkit-keyframes lightSpeedOutRight {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOutRight {
  from {
    opacity: 1;
  }

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

  to {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(-30deg);
    transform: translate3d(-100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOutLeft {
  from {
    opacity: 1;
  }

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateIn {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInDownLeft {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInDownRight {
  from {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInUpLeft {
  from {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInUpRight {
  from {
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}
/* Rotating exits */
@-webkit-keyframes rotateOut {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
@keyframes rotateOut {
  from {
    opacity: 1;
  }

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

  to {
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownLeft {
  from {
    opacity: 1;
  }

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

  to {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownRight {
  from {
    opacity: 1;
  }

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

  to {
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpLeft {
  from {
    opacity: 1;
  }

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

  to {
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpRight {
  from {
    opacity: 1;
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
.animate__rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}
/* Specials */
@-webkit-keyframes hinge {
  0% {
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%,
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40%,
  80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
@keyframes hinge {
  0% {
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%,
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40%,
  80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.animate__hinge {
  -webkit-animation-duration: calc(1s * 2);
  animation-duration: calc(1s * 2);
  -webkit-animation-duration: calc(var(--animate-duration) * 2);
  animation-duration: calc(var(--animate-duration) * 2);
  -webkit-animation-name: hinge;
  animation-name: hinge;
  -webkit-transform-origin: top left;
  transform-origin: top left;
}
@-webkit-keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }

  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }

  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }

  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }

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

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }

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

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
@keyframes rollOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
.animate__rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}
/* Zooming entrances */
@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

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

  50% {
    opacity: 1;
  }
}
.animate__zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}
@-webkit-keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

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

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

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

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

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

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

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

  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}
/* Zooming exits */
@-webkit-keyframes zoomOut {
  from {
    opacity: 1;
  }

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

  to {
    opacity: 0;
  }
}
@keyframes zoomOut {
  from {
    opacity: 1;
  }

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

  to {
    opacity: 0;
  }
}
.animate__zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}
@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }

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

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

  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
  }
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }

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

  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
  }
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }

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

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

  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}
/* Sliding entrances */
@-webkit-keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

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

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

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

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

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

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.animate__slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}
/* Sliding exits */
@-webkit-keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

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

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

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

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

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

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

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

/* required styles */
.leaflet-pane,
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-tile-container,
.leaflet-pane > svg,
.leaflet-pane > canvas,
.leaflet-zoom-box,
.leaflet-image-layer,
.leaflet-layer {
  position: absolute;
  left: 0;
  top: 0;
}

.leaflet-container {
  overflow: hidden;
}

.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
}

/* Prevents IE11 from highlighting tiles in blue */
.leaflet-tile::-moz-selection {
  background: transparent;
}
.leaflet-tile::selection {
  background: transparent;
}

/* Safari renders non-retina tile on retina better with this, but Chrome is worse */
.leaflet-safari .leaflet-tile {
  image-rendering: -webkit-optimize-contrast;
}

/* hack that prevents hw layers "stretching" when loading new tiles */
.leaflet-safari .leaflet-tile-container {
  width: 1600px;
  height: 1600px;
  -webkit-transform-origin: 0 0;
}

.leaflet-marker-icon,
.leaflet-marker-shadow {
  display: block;
}

/* .leaflet-container svg: reset svg max-width decleration shipped in Joomla! (joomla.org) 3.x */
/* .leaflet-container img: map is broken in FF if you have max-width: 100% on tiles */
.leaflet-container .leaflet-overlay-pane svg {
  max-width: none !important;
  max-height: none !important;
}

.leaflet-container .leaflet-marker-pane img,
.leaflet-container .leaflet-shadow-pane img,
.leaflet-container .leaflet-tile-pane img,
.leaflet-container img.leaflet-image-layer,
.leaflet-container .leaflet-tile {
  max-width: none !important;
  max-height: none !important;
  width: auto;
  padding: 0;
}

.leaflet-container.leaflet-touch-zoom {
  touch-action: pan-x pan-y;
}

.leaflet-container.leaflet-touch-drag {
  /* Fallback for FF which doesn't support pinch-zoom */
  touch-action: none;
  touch-action: pinch-zoom;
}

.leaflet-container.leaflet-touch-drag.leaflet-touch-zoom {
  touch-action: none;
}

.leaflet-container {
  -webkit-tap-highlight-color: transparent;
}

.leaflet-container a {
  -webkit-tap-highlight-color: rgba(51, 181, 229, 0.4);
}

.leaflet-tile {
  filter: inherit;
  visibility: hidden;
}

.leaflet-tile-loaded {
  visibility: inherit;
}

.leaflet-zoom-box {
  width: 0;
  height: 0;
  box-sizing: border-box;
  z-index: 800;
}

/* workaround for https://bugzilla.mozilla.org/show_bug.cgi?id=888319 */
.leaflet-overlay-pane svg {
  -moz-user-select: none;
}

.leaflet-pane {
  z-index: 400;
}

.leaflet-tile-pane {
  z-index: 200;
}

.leaflet-overlay-pane {
  z-index: 400;
}

.leaflet-shadow-pane {
  z-index: 500;
}

.leaflet-marker-pane {
  z-index: 600;
}

.leaflet-tooltip-pane {
  z-index: 650;
}

.leaflet-popup-pane {
  z-index: 700;
}

.leaflet-map-pane canvas {
  z-index: 100;
}

.leaflet-map-pane svg {
  z-index: 200;
}

.leaflet-vml-shape {
  width: 1px;
  height: 1px;
}

.lvml {
  behavior: url(#default#VML);
  display: inline-block;
  position: absolute;
}

/* control positioning */
.leaflet-control {
  position: relative;
  z-index: 800;
  pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
  pointer-events: auto;
}

.leaflet-top,
.leaflet-bottom {
  position: absolute;
  z-index: 1000;
  pointer-events: none;
}

.leaflet-top {
  top: 0;
}

.leaflet-right {
  right: 0;
}

.leaflet-bottom {
  bottom: 0;
}

.leaflet-left {
  left: 0;
}

.leaflet-control {
  float: left;
  clear: both;
}

.leaflet-right .leaflet-control {
  float: right;
}

.leaflet-top .leaflet-control {
  margin-top: 10px;
}

.leaflet-bottom .leaflet-control {
  margin-bottom: 10px;
}

.leaflet-left .leaflet-control {
  margin-left: 10px;
}

.leaflet-right .leaflet-control {
  margin-right: 10px;
}

/* zoom and fade animations */
.leaflet-fade-anim .leaflet-popup {
  opacity: 0;
  transition: opacity 0.2s linear;
}

.leaflet-fade-anim .leaflet-map-pane .leaflet-popup {
  opacity: 1;
}

.leaflet-zoom-animated {
  transform-origin: 0 0;
}

svg.leaflet-zoom-animated {
  will-change: transform;
}

.leaflet-zoom-anim .leaflet-zoom-animated {
  transition: transform 0.25s cubic-bezier(0, 0, 0.25, 1);
}

.leaflet-zoom-anim .leaflet-tile,
.leaflet-pan-anim .leaflet-tile {
  transition: none;
}

.leaflet-zoom-anim .leaflet-zoom-hide {
  visibility: hidden;
}

/* cursors */
.leaflet-interactive {
  cursor: pointer;
}

.leaflet-grab {
  cursor: grab;
}

.leaflet-crosshair,
.leaflet-crosshair .leaflet-interactive {
  cursor: crosshair;
}

.leaflet-popup-pane,
.leaflet-control {
  cursor: auto;
}

.leaflet-dragging .leaflet-grab,
.leaflet-dragging .leaflet-grab .leaflet-interactive,
.leaflet-dragging .leaflet-marker-draggable {
  cursor: move;
  cursor: grabbing;
}

/* marker & overlays interactivity */
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-image-layer,
.leaflet-pane > svg path,
.leaflet-tile-container {
  pointer-events: none;
}

.leaflet-marker-icon.leaflet-interactive,
.leaflet-image-layer.leaflet-interactive,
.leaflet-pane > svg path.leaflet-interactive,
svg.leaflet-image-layer.leaflet-interactive path {
  pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
  pointer-events: auto;
}

/* visual tweaks */
.leaflet-container {
  background: #ddd;
  outline-offset: 1px;
}

.leaflet-container a {
  color: #0078A8;
}

.leaflet-zoom-box {
  border: 2px dotted #38f;
  background: rgba(255, 255, 255, 0.5);
}

/* general typography */
.leaflet-container {
  font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.5;
}

/* general toolbar styles */
.leaflet-bar {
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.65);
  border-radius: 4px;
}

.leaflet-bar a {
  background-color: #fff;
  border-bottom: 1px solid #ccc;
  width: 26px;
  height: 26px;
  line-height: 26px;
  display: block;
  text-align: center;
  text-decoration: none;
  color: black;
}

.leaflet-bar a,
.leaflet-control-layers-toggle {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  display: block;
}

.leaflet-bar a:hover,
.leaflet-bar a:focus {
  background-color: #f4f4f4;
}

.leaflet-bar a:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

.leaflet-bar a:last-child {
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom: none;
}

.leaflet-bar a.leaflet-disabled {
  cursor: default;
  background-color: #f4f4f4;
  color: #bbb;
}

.leaflet-touch .leaflet-bar a {
  width: 30px;
  height: 30px;
  line-height: 30px;
}

.leaflet-touch .leaflet-bar a:first-child {
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
}

.leaflet-touch .leaflet-bar a:last-child {
  border-bottom-left-radius: 2px;
  border-bottom-right-radius: 2px;
}

/* zoom control */
.leaflet-control-zoom-in,
.leaflet-control-zoom-out {
  font: bold 18px "Lucida Console", Monaco, monospace;
  text-indent: 1px;
}

.leaflet-touch .leaflet-control-zoom-in, .leaflet-touch .leaflet-control-zoom-out {
  font-size: 22px;
}

/* layers control */
.leaflet-control-layers {
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.4);
  background: #fff;
  border-radius: 5px;
}

.leaflet-control-layers-toggle {
  background-image: url(images/layers.png);
  width: 36px;
  height: 36px;
}

.leaflet-retina .leaflet-control-layers-toggle {
  background-image: url(images/layers-2x.png);
  background-size: 26px 26px;
}

.leaflet-touch .leaflet-control-layers-toggle {
  width: 44px;
  height: 44px;
}

.leaflet-control-layers .leaflet-control-layers-list,
.leaflet-control-layers-expanded .leaflet-control-layers-toggle {
  display: none;
}

.leaflet-control-layers-expanded .leaflet-control-layers-list {
  display: block;
  position: relative;
}

.leaflet-control-layers-expanded {
  padding: 6px 10px 6px 6px;
  color: #333;
  background: #fff;
}

.leaflet-control-layers-scrollbar {
  overflow-y: scroll;
  overflow-x: hidden;
  padding-right: 5px;
}

.leaflet-control-layers-selector {
  margin-top: 2px;
  position: relative;
  top: 1px;
}

.leaflet-control-layers label {
  display: block;
  font-size: 13px;
  font-size: 1.08333em;
}

.leaflet-control-layers-separator {
  height: 0;
  border-top: 1px solid #ddd;
  margin: 5px -10px 5px -6px;
}

/* Default icon URLs */
.leaflet-default-icon-path { /* used only in path-guessing heuristic, see L.Icon.Default */
  background-image: url(images/marker-icon.png);
}

/* attribution and scale controls */
.leaflet-container .leaflet-control-attribution {
  background: #fff;
  background: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.leaflet-control-attribution,
.leaflet-control-scale-line {
  padding: 0 5px;
  color: #333;
  line-height: 1.4;
}

.leaflet-control-attribution a {
  text-decoration: none;
}

.leaflet-control-attribution a:hover,
.leaflet-control-attribution a:focus {
  text-decoration: underline;
}

.leaflet-attribution-flag {
  display: inline !important;
  vertical-align: baseline !important;
  width: 1em;
  height: 0.6669em;
}

.leaflet-left .leaflet-control-scale {
  margin-left: 5px;
}

.leaflet-bottom .leaflet-control-scale {
  margin-bottom: 5px;
}

.leaflet-control-scale-line {
  border: 2px solid #777;
  border-top: none;
  line-height: 1.1;
  padding: 2px 5px 1px;
  white-space: nowrap;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.8);
  text-shadow: 1px 1px #fff;
}

.leaflet-control-scale-line:not(:first-child) {
  border-top: 2px solid #777;
  border-bottom: none;
  margin-top: -2px;
}

.leaflet-control-scale-line:not(:first-child):not(:last-child) {
  border-bottom: 2px solid #777;
}

.leaflet-touch .leaflet-control-attribution,
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
  box-shadow: none;
}

.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
  border: 2px solid rgba(0, 0, 0, 0.2);
  background-clip: padding-box;
}

/* popup */
.leaflet-popup {
  position: absolute;
  text-align: center;
  margin-bottom: 20px;
}

.leaflet-popup-content-wrapper {
  padding: 1px;
  text-align: left;
  border-radius: 12px;
}

.leaflet-popup-content {
  margin: 13px 24px 13px 20px;
  line-height: 1.3;
  font-size: 13px;
  font-size: 1.08333em;
  min-height: 1px;
}

.leaflet-popup-content p {
  margin: 17px 0;
  margin: 1.3em 0;
}

.leaflet-popup-tip-container {
  width: 40px;
  height: 20px;
  position: absolute;
  left: 50%;
  margin-top: -1px;
  margin-left: -20px;
  overflow: hidden;
  pointer-events: none;
}

.leaflet-popup-tip {
  width: 17px;
  height: 17px;
  padding: 1px;
  margin: -10px auto 0;
  pointer-events: auto;
  transform: rotate(45deg);
}

.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
  background: white;
  color: #333;
  box-shadow: 0 3px 14px rgba(0, 0, 0, 0.4);
}

.leaflet-container a.leaflet-popup-close-button {
  position: absolute;
  top: 0;
  right: 0;
  border: none;
  text-align: center;
  width: 24px;
  height: 24px;
  font: 16px/24px Tahoma, Verdana, sans-serif;
  color: #757575;
  text-decoration: none;
  background: transparent;
}

.leaflet-container a.leaflet-popup-close-button:hover,
.leaflet-container a.leaflet-popup-close-button:focus {
  color: #585858;
}

.leaflet-popup-scrolled {
  overflow: auto;
}

.leaflet-oldie .leaflet-popup-content-wrapper {
  -ms-zoom: 1;
}

.leaflet-oldie .leaflet-popup-tip {
  width: 24px;
  margin: 0 auto;
  -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)";
  filter: progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678);
}

.leaflet-oldie .leaflet-control-zoom,
.leaflet-oldie .leaflet-control-layers,
.leaflet-oldie .leaflet-popup-content-wrapper,
.leaflet-oldie .leaflet-popup-tip {
  border: 1px solid #999;
}

/* div icon */
.leaflet-div-icon {
  background: #fff;
  border: 1px solid #666;
}

/* Tooltip */
/* Base styles for the element that has a tooltip */
.leaflet-tooltip {
  position: absolute;
  padding: 6px;
  background-color: #fff;
  border: 1px solid #fff;
  border-radius: 3px;
  color: #222;
  white-space: nowrap;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  pointer-events: none;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.leaflet-tooltip.leaflet-interactive {
  cursor: pointer;
  pointer-events: auto;
}

.leaflet-tooltip-top:before,
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
  position: absolute;
  pointer-events: none;
  border: 6px solid transparent;
  background: transparent;
  content: "";
}

/* Directions */
.leaflet-tooltip-bottom {
  margin-top: 6px;
}

.leaflet-tooltip-top {
  margin-top: -6px;
}

.leaflet-tooltip-bottom:before,
.leaflet-tooltip-top:before {
  left: 50%;
  margin-left: -6px;
}

.leaflet-tooltip-top:before {
  bottom: 0;
  margin-bottom: -12px;
  border-top-color: #fff;
}

.leaflet-tooltip-bottom:before {
  top: 0;
  margin-top: -12px;
  margin-left: -6px;
  border-bottom-color: #fff;
}

.leaflet-tooltip-left {
  margin-left: -6px;
}

.leaflet-tooltip-right {
  margin-left: 6px;
}

.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
  top: 50%;
  margin-top: -6px;
}

.leaflet-tooltip-left:before {
  right: 0;
  margin-right: -12px;
  border-left-color: #fff;
}

.leaflet-tooltip-right:before {
  left: 0;
  margin-left: -12px;
  border-right-color: #fff;
}

/* Printing */
@media print {
  /* Prevent printers from removing background-images of controls. */
  .leaflet-control {
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
}
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

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

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

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

/**
    mq() takes up to three optional parameters:

    $from: inclusive min-width boundary
    $until: exclusive max-width boundary
    $and: additional custom directives
 */
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, sub, sup, 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 {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

[v-cloak] {
  display: none;
}

.delay1 {
  animation-delay: 0.3s;
}
@media (max-width: 35.99em) {
  .delay1 {
    animation-delay: 0.3s;
  }
}

.delay2 {
  animation-delay: 0.6s;
}
@media (max-width: 35.99em) {
  .delay2 {
    animation-delay: 0.3s;
  }
}

.delay3 {
  animation-delay: 0.9s;
}
@media (max-width: 35.99em) {
  .delay3 {
    animation-delay: 0.3s;
  }
}

.delay4 {
  animation-delay: 1.2s;
}
@media (max-width: 35.99em) {
  .delay4 {
    animation-delay: 0.3s;
  }
}

.delay5 {
  animation-delay: 1.5s;
}
@media (max-width: 35.99em) {
  .delay5 {
    animation-delay: 0.3s;
  }
}

.delay6 {
  animation-delay: 1.8s;
}
@media (max-width: 35.99em) {
  .delay6 {
    animation-delay: 0.3s;
  }
}

.delay7 {
  animation-delay: 2.1s;
}
@media (max-width: 35.99em) {
  .delay7 {
    animation-delay: 0.3s;
  }
}

.delay8 {
  animation-delay: 2.4s;
}
@media (max-width: 35.99em) {
  .delay8 {
    animation-delay: 0.3s;
  }
}

.delay9 {
  animation-delay: 2.7s;
}
@media (max-width: 35.99em) {
  .delay9 {
    animation-delay: 0.3s;
  }
}

.delay10 {
  animation-delay: 3s;
}
@media (max-width: 35.99em) {
  .delay10 {
    animation-delay: 0.3s;
  }
}

/*------------------------------------*\
    # Type
\*------------------------------------*/
*, html, body {
  font-size: 15px;
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}
@media (min-width: 93.75em) {
  *, html, body {
    font-size: 17px;
  }
}
@media (max-width: 61.99em) {
  *, html, body {
    font-size: 14px;
  }
}
@media (max-width: 47.99em) {
  *, html, body {
    font-size: 14px;
  }
}
@media (max-width: 35.99em) {
  *, html, body {
    font-size: 14px;
  }
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 36px;
  line-height: 1.25em;
  font-weight: var(--headingsWeight, 600);
  font-family: var(--fontHeadings);
  text-transform: var(--headingsTransform, none);
}
h1:first-child, h2:first-child, h3:first-child, h4:first-child, h5:first-child, h6:first-child {
  margin-top: 0;
}

h1 {
  font-size: 2.6666666667rem;
  margin-bottom: 24px;
  color: var(--h1, var(--headings, var(--txt)));
}
@media (max-width: 74.99em) {
  h1 {
    font-size: 2.4242424242rem;
  }
}
@media (max-width: 61.99em) {
  h1 {
    font-size: 1.975308642rem;
  }
}
@media (max-width: 35.99em) {
  h1 {
    font-size: 1.6666666667rem;
  }
}

h2 {
  font-size: 2.2222222222rem;
  margin-bottom: 20px;
  color: var(--h2, var(--headings, var(--txt)));
}
@media (max-width: 74.99em) {
  h2 {
    font-size: 2.4242424242rem;
  }
}
@media (max-width: 61.99em) {
  h2 {
    font-size: 1.975308642rem;
  }
}
@media (max-width: 35.99em) {
  h2 {
    font-size: 1.6666666667rem;
  }
}

h3 {
  font-size: 1.6666666667rem;
  margin-bottom: 15px;
  color: var(--h3, var(--headings, var(--txt)));
}
@media (max-width: 61.99em) {
  h3 {
    font-size: 1.568627451rem;
  }
}
@media (max-width: 35.99em) {
  h3 {
    font-size: 1.4814814815rem;
  }
}

h4 {
  font-size: 1.568627451rem;
  margin-bottom: 14.1176470588px;
  color: var(--h4, var(--headings, var(--txt)));
}

h5 {
  font-size: 1.4814814815rem;
  margin-bottom: 13.3333333333px;
  color: var(--h5, var(--headings, var(--txt)));
}

h6 {
  font-size: 1.3333333333rem;
  margin-bottom: 12px;
  color: var(--h6, var(--headings, var(--txt)));
}

p, div, span {
  font-size: 1rem;
  line-height: 1.5em;
  color: var(--txt);
}

p {
  margin-bottom: 20px;
}
p:last-of-type {
  margin-bottom: 0;
}

a {
  color: var(--link, var(--txt));
  transition: color 0.3s ease-in-out;
  text-decoration: none;
}
a:hover {
  color: var(--linkHover);
  text-decoration: none;
}

ul,
ol {
  margin: 20px 0 20px 20px;
}
ul li,
ol li {
  margin-top: 10px;
  line-height: 1.5em;
  color: var(--list, var(--txt));
}
ul ul,
ul ol,
ol ul,
ol ol {
  margin-top: 0;
}

ul {
  margin-left: 0;
}
ul li {
  list-style: none outside none;
  padding-left: 1.6666666667rem;
  position: relative;
}
ul li::before {
  content: "";
  position: absolute;
  top: 0.3333333333rem;
  left: 0;
  width: 0.9333333333rem;
  height: 0.9333333333rem;
  display: inline-block;
  border-radius: 50px;
  background-color: var(--listDot, var(--paletteColor1));
}
ul ul li {
  list-style: disc;
}

ol li {
  list-style: decimal;
}

.txt-c1 {
  color: var(--paletteColor1);
}

hr {
  height: 1px;
  margin: 60px 0;
  border: none;
  background-color: var(--hr);
  width: 100%;
}

blockquote {
  margin: 30px 0;
  font-size: 1.5333333333rem;
  line-height: 1.5em;
  color: #1d1c1c;
  text-align: center;
  font-style: italic;
}

table {
  width: 100%;
  margin: 30px 0;
  border-collapse: collapse;
  overflow-x: auto;
  display: block;
}

table.oc-alternate-rows tbody tr:nth-child(2n) {
  background: #f5f5f5;
}

th {
  font-weight: 600;
  background-color: #fffefe;
}

th, td {
  padding: 1rem;
  border: 1px solid #DADADA;
  text-align: left;
}

figure {
  margin: 30px 0;
}
figure img {
  margin: 0;
}

figcaption {
  margin-top: 10px;
  color: #373535;
  font-size: 1.0666666667rem;
}

pre {
  display: block;
  margin: 0 0 40px 0;
  padding: 20px;
  background-color: #f9f9f9;
  border: 1px solid #DADADA;
  overflow: auto;
  border-radius: 3px;
}
pre code {
  position: static;
  padding: 0;
  border: none;
  line-height: 1.5em;
}

code {
  position: relative;
  top: -0.2em;
  padding: 3px;
  font-family: Courier New, Courier, monospace;
  font-size: 0.8333333333rem;
  color: #282828;
  line-height: 1em;
  pointer-events: none;
  border: 1px solid #DADADA;
  border-radius: 3px;
}

em,
i,
.italic {
  font-style: italic;
}

strong,
b,
.bold {
  font-weight: 600;
}

img {
  max-width: 100%;
  display: block;
}
img.unradius {
  border-radius: 0;
}
img::-moz-selection {
  background: transparent;
}
img::selection {
  background: transparent;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--body, #fff);
}

.blocked {
  overflow: hidden;
}

.site-wrapper {
  display: flex;
  flex-flow: column;
  min-height: 100vh;
  overflow: hidden;
}
@media (max-width: 61.99em) {
  .site-wrapper {
    overflow: hidden;
    position: relative;
  }
}

.extra {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}

@media (max-width: 61.99em) {
  .map {
    max-height: 400px;
  }
}
@media (max-width: 35.99em) {
  .map {
    max-height: 250px;
  }
}

.padding-container {
  padding-left: 8vw;
  padding-right: 8vw;
}
@media (max-width: 93.74em) {
  .padding-container {
    padding-left: 100px;
    padding-right: 100px;
  }
}
@media (max-width: 74.99em) {
  .padding-container {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media (max-width: 47.99em) {
  .padding-container {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (max-width: 35.99em) {
  .padding-container {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.padding-container-left {
  padding-left: 8vw;
}
@media (max-width: 93.74em) {
  .padding-container-left {
    padding-left: 100px;
  }
}
@media (max-width: 74.99em) {
  .padding-container-left {
    padding-left: 50px;
  }
}
@media (max-width: 47.99em) {
  .padding-container-left {
    padding-left: 30px;
  }
}
@media (max-width: 35.99em) {
  .padding-container-left {
    padding-left: 20px;
  }
}
.padding-container-right {
  padding-right: 8vw;
}
@media (max-width: 93.74em) {
  .padding-container-right {
    padding-right: 100px;
  }
}
@media (max-width: 74.99em) {
  .padding-container-right {
    padding-right: 50px;
  }
}
@media (max-width: 47.99em) {
  .padding-container-right {
    padding-right: 30px;
  }
}
@media (max-width: 35.99em) {
  .padding-container-right {
    padding-right: 20px;
  }
}

.padding-vertical {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media (max-width: 74.99em) {
  .padding-vertical {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media (max-width: 35.99em) {
  .padding-vertical {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.padding-vertical-top {
  padding-top: 100px;
}
@media (max-width: 74.99em) {
  .padding-vertical-top {
    padding-top: 60px;
  }
}
@media (max-width: 35.99em) {
  .padding-vertical-top {
    padding-top: 40px;
  }
}
.padding-vertical-bottom {
  padding-bottom: 100px;
}
@media (max-width: 74.99em) {
  .padding-vertical-bottom {
    padding-bottom: 60px;
  }
}
@media (max-width: 35.99em) {
  .padding-vertical-bottom {
    padding-bottom: 40px;
  }
}

.margin-container {
  margin-left: 8vw;
  margin-right: 8vw;
}
@media (max-width: 93.74em) {
  .margin-container {
    margin-left: 100px;
    margin-right: 100px;
  }
}
@media (max-width: 74.99em) {
  .margin-container {
    margin-left: 50px;
    margin-right: 50px;
  }
}
@media (max-width: 47.99em) {
  .margin-container {
    margin-left: 30px;
    margin-right: 30px;
  }
}
@media (max-width: 35.99em) {
  .margin-container {
    margin-left: 20px;
    margin-right: 20px;
  }
}
.margin-container-left {
  margin-left: 8vw;
}
@media (max-width: 93.74em) {
  .margin-container-left {
    margin-left: 100px;
  }
}
@media (max-width: 74.99em) {
  .margin-container-left {
    margin-left: 50px;
  }
}
@media (max-width: 47.99em) {
  .margin-container-left {
    margin-left: 30px;
  }
}
@media (max-width: 35.99em) {
  .margin-container-left {
    margin-left: 20px;
  }
}
.margin-container-right {
  margin-right: 8vw;
}
@media (max-width: 93.74em) {
  .margin-container-right {
    margin-right: 100px;
  }
}
@media (max-width: 74.99em) {
  .margin-container-right {
    margin-right: 50px;
  }
}
@media (max-width: 47.99em) {
  .margin-container-right {
    margin-right: 30px;
  }
}
@media (max-width: 35.99em) {
  .margin-container-right {
    margin-right: 20px;
  }
}

.margin-vertical {
  margin-top: 100px;
  margin-bottom: 100px;
}
@media (max-width: 74.99em) {
  .margin-vertical {
    margin-top: 60px;
    margin-bottom: 60px;
  }
}
@media (max-width: 35.99em) {
  .margin-vertical {
    margin-top: 40px;
    margin-bottom: 40px;
  }
}
.margin-vertical-top {
  margin-top: 100px;
}
@media (max-width: 74.99em) {
  .margin-vertical-top {
    margin-top: 60px;
  }
}
@media (max-width: 35.99em) {
  .margin-vertical-top {
    margin-top: 40px;
  }
}
.margin-vertical-bottom {
  margin-bottom: 100px;
}
@media (max-width: 74.99em) {
  .margin-vertical-bottom {
    margin-bottom: 60px;
  }
}
@media (max-width: 35.99em) {
  .margin-vertical-bottom {
    margin-bottom: 40px;
  }
}

footer {
  margin-top: auto;
}

.no-gutters > .col-left {
  padding-right: 30px;
}
@media (max-width: 61.99em) {
  .no-gutters > .col-left {
    padding-right: 0;
  }
}
.no-gutters > .col-right {
  padding-left: 30px;
}
@media (max-width: 61.99em) {
  .no-gutters > .col-right {
    padding-left: 0;
  }
}

.col-left, .col-right, col-inside {
  margin-bottom: 30px;
}

.leaflet-marker-icon {
  width: auto !important;
}

.nd li {
  padding-left: 0;
  list-style: none;
}
.nd li::before {
  content: none;
}

.input {
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
}
.input__label {
  font-size: 0.8rem;
  margin-bottom: 5px;
}
.input__label--checkbox {
  font-size: 0.7333333333rem;
  line-height: 1.0666666667rem;
}
.input__item {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  border: none;
  outline: none;
  padding: 5px 10px;
  font-size: 0.9333333333rem;
}
.input--checkbox, .input--radio {
  display: inline-block;
  position: relative;
}
.input--checkbox .input__label, .input--radio .input__label {
  margin: 0;
  cursor: pointer;
}
.input--checkbox .input__label--checkbox, .input--radio .input__label--checkbox {
  padding-left: 35px;
}
@media (max-width: 35.99em) {
  .input--checkbox .input__label--checkbox, .input--radio .input__label--checkbox {
    padding-left: 20px;
  }
}
.input--checkbox .input__label--radio, .input--radio .input__label--radio {
  padding-left: 35px;
}
@media (max-width: 35.99em) {
  .input--checkbox .input__label--radio, .input--radio .input__label--radio {
    padding-left: 20px;
  }
}
.input--checkbox .input__item, .input--radio .input__item {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.input--checkbox .input__item:hover ~ .input__checkmark, .input--radio .input__item:hover ~ .input__checkmark {
  background-color: #ac7352;
}
.input--checkbox .input__item:checked ~ .input__checkmark, .input--radio .input__item:checked ~ .input__checkmark {
  background-color: #ac7352;
}
.input--checkbox .input__item:checked ~ .input__checkmark:after, .input--radio .input__item:checked ~ .input__checkmark:after {
  display: block;
}
.input--checkbox .input__checkmark, .input--radio .input__checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 26px;
  width: 26px;
  background-color: #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  border: 1px solid #ac7352;
  transition: background-color 0.3s ease-in-out;
}
@media (max-width: 35.99em) {
  .input--checkbox .input__checkmark, .input--radio .input__checkmark {
    height: 15px;
    width: 15px;
    top: 1px;
  }
}
.input--checkbox .input__checkmark--radio, .input--radio .input__checkmark--radio {
  display: flex;
  align-items: center;
  border-radius: 50%;
  justify-content: center;
  right: unset;
  left: 0;
  top: -1px;
}
@media (max-width: 35.99em) {
  .input--checkbox .input__checkmark--radio, .input--radio .input__checkmark--radio {
    top: 1px;
  }
}
.input--checkbox .input__checkmark::after, .input--radio .input__checkmark::after {
  content: "";
  position: absolute;
  display: none;
  left: 10px;
  top: 6px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 1.5px 1.5px 0;
  transform: rotate(45deg);
}
@media (max-width: 35.99em) {
  .input--checkbox .input__checkmark::after, .input--radio .input__checkmark::after {
    left: 6px;
    top: 2px;
    width: 4px;
    height: 8px;
  }
}
.input--checkbox .input__checkmark--radio::after, .input--radio .input__checkmark--radio::after {
  border-radius: 50%;
  background: white;
  border: none;
  width: 8px;
  height: 8px;
  position: static;
}
@media (max-width: 35.99em) {
  .input--checkbox .input__checkmark--radio::after, .input--radio .input__checkmark--radio::after {
    width: 5px;
    height: 5px;
  }
}

.modal-header .close span {
  font-size: 2rem;
  line-height: 1.1;
}

.modal-title {
  font-size: 1.2rem;
}

.header {
  position: relative;
}
.header-wrapper {
  position: relative;
  z-index: 99995;
  display: flex;
  justify-content: space-between;
  align-items: center;
  -moz-column-gap: 20px;
       column-gap: 20px;
  width: 100%;
  min-height: 80px;
  background-color: var(--headerBg, #fff);
  transition: background-color 0.3s ease-in-out, transform 0.3s ease;
  border-radius: var(--headerRadius, 0);
}
.header-wrapper.margin-container, .header-wrapper.margin-container-left, .header-wrapper.margin-container-right {
  width: -webkit-fill-available;
  width: -moz-available;
}
.header--sticky .header__logo--sticky {
  display: none;
}
.header--sticky .header-wrapper.fixed {
  position: fixed;
  top: 0;
  background-color: var(--headerStickyBg, var(--headerBg));
}
.header--sticky .header-wrapper.fixed .header__logo--sticky {
  display: block;
}
.header--sticky .header-wrapper.fixed .header__logo--main, .header--sticky .header-wrapper.fixed .header__logo--absolute {
  display: none;
}
.header--sticky .header-wrapper.fixed .header__right:after {
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  opacity: 1;
}
.header--sticky .header-wrapper.fixed .header__menuItem hr {
  background-color: var(--headerStickyHr, var(--headerHr));
}
.header--sticky .header-wrapper.fixed .header__menuLink span {
  color: var(--headerStickyLink);
}
.header--sticky .header-wrapper.fixed .header__menuLink svg {
  fill: var(--headerStickyLink);
}
.header--sticky .header-wrapper.fixed .header__menuLink .arrow:after {
  border-color: var(--headerStickyLink) !important;
}
.header--sticky .header-wrapper.fixed .header__menuLink:active > span, .header--sticky .header-wrapper.fixed .header__menuLink--active > span, .header--sticky .header-wrapper.fixed .header__menuLink--open > span, .header--sticky .header-wrapper.fixed .header__menuLink:hover > span {
  color: var(--headerStickyLinkHover);
}
.header--sticky .header-wrapper.fixed .header__menuLink:active > svg, .header--sticky .header-wrapper.fixed .header__menuLink--active > svg, .header--sticky .header-wrapper.fixed .header__menuLink--open > svg, .header--sticky .header-wrapper.fixed .header__menuLink:hover > svg {
  fill: var(--headerStickyLinkHover);
}
.header--sticky .header-wrapper.fixed .header__menuLink:active > .arrow:after, .header--sticky .header-wrapper.fixed .header__menuLink--active > .arrow:after, .header--sticky .header-wrapper.fixed .header__menuLink--open > .arrow:after, .header--sticky .header-wrapper.fixed .header__menuLink:hover > .arrow:after {
  border-color: var(--headerStickyLinkHover) !important;
}
.header--sticky .header-wrapper.fixed .header__hamburger span {
  background: var(--headerStickyLink, var(--headerLink));
}
.header--sticky .header-wrapper.fixed .header__hamburger:hover span {
  background: var(--headerStickyLinkHover, var(--headerLinkHover));
}
.header--absolute .header-wrapper {
  position: absolute;
  top: 0;
  background-color: var(--headerAbsoluteBg, transparent);
}
.header--absolute .header__logo--main, .header--absolute .header__logo--sticky {
  display: none;
}
.header--absolute .header__menuItem hr {
  background-color: var(--headerAbsoluteHr, var(--headerHr));
}
.header--absolute .header__menuLink span {
  color: var(--headerAbsoluteLink, var(--headerLink));
}
.header--absolute .header__menuLink svg {
  fill: var(--headerAbsoluteLink, var(--headerLink));
}
.header--absolute .header__menuLink .arrow:after {
  border-color: var(--headerAbsoluteLink, var(--headerLink)) !important;
}
.header--absolute .header__menuLink:active > span, .header--absolute .header__menuLink--active > span, .header--absolute .header__menuLink--open > span, .header--absolute .header__menuLink:hover > span {
  color: var(--headerAbsoluteLinkHover, var(--headerLinkHover));
}
.header--absolute .header__menuLink:active > svg, .header--absolute .header__menuLink--active > svg, .header--absolute .header__menuLink--open > svg, .header--absolute .header__menuLink:hover > svg {
  fill: var(--headerAbsoluteLinkHover, var(--headerLinkHover));
}
.header--absolute .header__menuLink:active > .arrow:after, .header--absolute .header__menuLink--active > .arrow:after, .header--absolute .header__menuLink--open > .arrow:after, .header--absolute .header__menuLink:hover > .arrow:after {
  border-color: var(--headerAbsoluteLinkHover, var(--headerLinkHover)) !important;
}
.header--absolute .header__hamburger span {
  background: var(--headerAbsoluteLink, var(--headerLink));
}
.header--absolute .header__hamburger:hover span {
  background: var(--headerAbsoluteLinkHover, var(--headerLinkHover));
}
.header--vertical-centered .header-wrapper {
  flex-direction: column;
  padding-top: 20px;
  padding-bottom: 20px;
}
.header--vertical .header-wrapper {
  flex-direction: column;
  align-items: flex-start;
  padding-top: 20px;
  padding-bottom: 20px;
}
.header--vertical .header__right {
  justify-content: space-between;
  width: 100%;
}
.header__branding {
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
  align-items: center;
  flex: 1;
}
.header__logo {
  position: relative;
  z-index: 2;
}
.header__logo--mobile {
  display: none;
}
.header__logo img {
  height: auto;
  min-width: 100px;
}
@media (max-width: 61.99em) {
  .header__logo img {
    max-width: 140px;
  }
}
@media (max-width: 26.25em) {
  .header__logo img {
    max-width: 120px;
  }
}
.header--spacer {
  display: none;
}
.header--spacer.show {
  display: block;
}
.header__right {
  display: flex;
  align-items: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
  position: relative;
  padding-right: 20px;
  min-height: 80px;
}
@media (max-width: 86.25em) {
  .header__right {
    padding-right: 0;
  }
}
.header__right:after {
  background-color: var(--body);
  content: "";
  right: 0;
  top: 0;
  position: absolute;
  width: 100vw;
  height: 100%;
  border-radius: 0 0 10px 0;
  z-index: -1;
  opacity: 0.85;
  transition: ease 0.3s all;
}
@media (max-width: 86.25em) {
  .header__right:after {
    right: -100px;
    border-radius: 0;
  }
}
@media (max-width: 74.99em) {
  .header__right:after {
    right: -50px;
  }
}
@media (max-width: 61.99em) {
  .header__right:after {
    right: 0;
  }
}
.header__contact {
  position: relative;
  display: flex;
  -moz-column-gap: 10px;
       column-gap: 10px;
  row-gap: 10px;
  align-items: center;
  padding-left: 20px;
  min-height: 80px;
}
@media (max-width: 86.25em) {
  .header__contact {
    position: absolute;
    right: 0;
    top: 80px;
    right: 100px;
    min-height: unset;
    padding-left: 10px;
    padding-right: 5px;
  }
}
@media (max-width: 74.99em) {
  .header__contact {
    right: 50px;
  }
}
@media (max-width: 61.99em) {
  .header__contact {
    position: relative;
  }
}
.header__contact:after {
  background-color: var(--paletteColor1);
  content: "";
  left: 0;
  top: 0;
  position: absolute;
  width: 100vw;
  height: 100%;
  border-radius: 0 0 0 10px;
  z-index: -1;
}
@media (max-width: 86.25em) {
  .header__contact:after {
    width: 100%;
    border-radius: 0 0 10px 10px;
  }
}
.header__contact a {
  display: flex;
  -moz-column-gap: 10px;
       column-gap: 10px;
  align-items: center;
  padding: 20px 10px;
}
@media (max-width: 86.25em) {
  .header__contact a {
    padding: 13px 10px;
  }
}
.header__contact a:hover span {
  color: var(--paletteColor8);
}
.header__contact a:hover svg {
  fill: var(--paletteColor8);
}
.header__contact a.btn {
  border: 1px solid var(--paletteColor5);
  padding: 5px 20px;
  align-self: center;
  color: var(--paletteColor5);
  border-radius: var(--btnRadius, 0);
  transition: ease 0.3s all;
}
@media (max-width: 93.74em) {
  .header__contact a.btn {
    padding: 5px 10px;
  }
}
.header__contact a.btn:hover {
  background-color: var(--paletteColor5);
  color: var(--paletteColor1);
}
.header__contact a span {
  color: var(--paletteColor5);
  transition: ease 0.3s all;
  font-weight: var(--menuWeight, 600);
}
@media (max-width: 105em) {
  .header__contact a span {
    display: none;
  }
}
@media (max-width: 86.25em) {
  .header__contact a span {
    display: inline-block !important;
  }
}
.header__contact a svg {
  fill: var(--paletteColor5);
  width: 22px;
  height: 22px;
}
.header__nav {
  display: flex;
  align-items: center;
  -moz-column-gap: 30px;
       column-gap: 30px;
  min-height: 80px;
}
.header__nav--visible {
  transform: translate(0, 0);
}
.header__menuList {
  display: flex;
  justify-content: flex-end;
  align-items: stretch;
  margin: 0;
  min-height: 80px;
}
.header__menuList.icons-above .header__menuLink {
  flex-direction: column;
  text-align: center;
}
.header__menuList.icons-above .header__menuItem--hasSubmenu .header__menuLink .arrow {
  margin-bottom: -25px;
  margin-top: -15px;
  z-index: 99;
  position: relative;
}
.header__menuList.trigger--click .header__submenu:after {
  display: none;
}
.header__menuList.trigger--hover .header__menuItem--hasSubmenu:hover > .header__submenu {
  transform: scaleY(1);
  opacity: 1;
}
.header__menuList.trigger--hover .header__submenuItem--hasSubmenu:hover > .header__submenu {
  transform: scaleY(1);
  opacity: 1;
}
.header__menuList.trigger--hover .header__submenuItem--hasSubmenu:hover > .header__submenu:after {
  display: none;
}
.header__menuItem {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}
.header__menuItem::before {
  display: none;
}
.header__menuItem hr {
  height: 100%;
  background-color: var(--headerHr);
  width: 1px;
  margin: 0 5px;
  opacity: 0.1;
}
.header__menuItem--toRight > .header__submenu {
  left: unset;
  right: 0;
}
.header__menuItem--hasSubmenu .header__menuLink .arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -7px;
}
.header__menuItem--hasSubmenu .header__menuLink .arrow:after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-top: 1px solid var(--headerLink);
  border-left: 1px solid var(--headerLink);
  transform: rotate(225deg);
}
.header__menuLink {
  padding: 20px 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: var(--menuRadius, 0);
  text-transform: var(--menuTransform, initial);
  white-space: nowrap;
  transition: ease-in-out 0.6s all;
  height: 100%;
}
@media (max-width: 113.6875em) {
  .header__menuLink {
    padding: 20px 10px;
  }
}
@media (max-width: 64.375em) {
  .header__menuLink {
    padding: 20px 7px;
  }
}
.header__menuLink[data-hover] {
  display: flex;
}
.header__menuLink svg {
  width: 25px;
  height: 25px;
  fill: var(--headerLink);
  transition: ease 0.3s all;
}
.header__menuLink span {
  color: var(--headerLink);
  font-weight: var(--menuWeight, 600);
  font-family: var(--menuFont, var(--font, unset));
  font-size: 1.0666666667rem;
  line-height: normal;
  transition: ease 0.3s all;
}
@media (max-width: 113.6875em) {
  .header__menuLink span {
    font-size: 1rem;
  }
}
.header__menuLink .arrow:after {
  border-color: var(--headerLink) !important;
  transition: ease 0.3s all;
}
.header__menuLink--open {
  background-color: var(--headerSubmenuBg, var(--headerBg));
}
.header__menuLink:active span, .header__menuLink--active span, .header__menuLink--open span, .header__menuLink:hover span {
  color: var(--headerLinkHover);
}
.header__menuLink:active svg, .header__menuLink--active svg, .header__menuLink--open svg, .header__menuLink:hover svg {
  fill: var(--headerLinkHover);
}
.header__menuLink:active .arrow:after, .header__menuLink--active .arrow:after, .header__menuLink--open .arrow:after, .header__menuLink:hover .arrow:after {
  border-color: var(--headerLinkHover) !important;
}

.footer {
  background-color: var(--footerBg);
  padding-top: 50px;
  padding-bottom: 50px;
  display: flex;
  row-gap: 40px;
  -moz-column-gap: 40px;
       column-gap: 40px;
  z-index: 2;
  position: relative;
}
.footer span, .footer p, .footer div, .footer svg path {
  color: var(--footerTxt);
  fill: var(--footerTxt);
}
.footer a {
  color: var(--footerLink);
}
.footer a:hover {
  color: var(--footerLinkHover);
}
.footer p {
  margin: 0;
}
.footer hr {
  background-color: var(--footerHr);
}
.footer svg {
  width: 25px;
  height: auto;
  max-width: unset;
}
.footer .title {
  display: block;
  font-weight: 600;
  margin-bottom: 30px;
  color: var(--footerHeadings);
}
.footer .logo img {
  height: auto;
}
.footer .social {
  display: flex;
  align-items: center;
  -moz-column-gap: 15px;
       column-gap: 15px;
}
.footer .social svg {
  transition: ease 0.3s all;
  opacity: 0.8;
}
.footer .social svg:hover {
  opacity: 1;
}
.footer .social svg:hover path {
  fill: var(--footerLinkHover);
}
.footer .social svg path {
  transition: ease 0.3s all;
}
.footer .form span {
  color: var(--txt);
}
.footer .form {
  max-width: 700px;
  margin-bottom: 0;
}
@media (max-width: 74.99em) {
  .footer .form {
    max-width: 100%;
  }
}
.footer .form__required-info {
  margin-top: 10px;
}
.footer .form__group {
  margin-top: -20px;
}
.footer .nav.start {
  justify-content: flex-start;
}
.footer .nav.end {
  justify-content: flex-end;
}
.footer .nav.center {
  justify-content: center;
}
.footer .nav.space .header__menuList {
  width: 100%;
  justify-content: space-between;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
.footer .nav.space .header__menuLink {
  padding: 20px 0px;
}
.footer .nav .header__menuList {
  padding: 0;
}
.footer .nav .header__menuLink:hover span {
  color: var(--footerLinkHover);
}
.footer .block {
  padding: 40px;
  background: rgba(255, 255, 255, 0.03);
  transition: ease 0.3s all;
}
.footer .contact .list {
  display: flex;
  flex-direction: column;
  row-gap: 15px;
}
.footer .contact .list a {
  display: flex;
  -moz-column-gap: 15px;
       column-gap: 15px;
  align-items: center;
}
.footer .contact .list a:hover svg, .footer .contact .list a:hover svg path {
  fill: var(--footerLinkHover);
}
.footer .contact .list a svg, .footer .contact .list a svg path {
  transition: ease 0.3s all;
}
.footer.icons-bg svg {
  width: 40px;
  height: 40px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.03);
  transition: ease 0.3s all;
}
.footer.icons-bg a:hover svg {
  fill: var(--footerTxt) !important;
  background-color: var(--footerLinkHover) !important;
}
.footer.icons-bg a:hover svg path {
  fill: var(--footerTxt) !important;
}
.footer.icons-bg .block svg {
  background: rgba(255, 255, 255, 0.03);
}
.footer.icons-border svg {
  width: 40px;
  height: 40px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: ease 0.3s all;
}
.footer.icons-border a:hover svg {
  border-color: var(--footerLinkHover) !important;
  fill: var(--footerLinkHover) !important;
}
.footer.icons-border a:hover svg path {
  fill: var(--footerLinkHover) !important;
}
.footer.footer01 {
  justify-content: space-between;
}
.footer.footer01.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 93.74em) {
  .footer.footer01.grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 47.99em) {
  .footer.footer01.grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 93.74em) {
  .footer.footer01 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 40px;
  }
}
@media (max-width: 47.99em) {
  .footer.footer01 {
    grid-template-columns: 1fr;
  }
}
.footer.footer02 {
  display: grid;
  grid-template-columns: minmax(200px, 350px) minmax(200px, 350px) auto;
}
@media (max-width: 93.74em) {
  .footer.footer02 {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 47.99em) {
  .footer.footer02 {
    grid-template-columns: 1fr;
  }
}
.footer.footer02 .logo {
  display: block;
  margin-bottom: 20px;
}
.footer.footer02 > div:last-of-type {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}
@media (max-width: 93.74em) {
  .footer.footer02 > div:last-of-type {
    justify-content: flex-start;
  }
}
.footer.footer02 > div:last-of-type .title {
  margin-bottom: 0;
}
.footer.footer03 {
  display: grid;
  grid-template-columns: minmax(300px, 50%) auto;
  align-items: start;
}
@media (max-width: 61.99em) {
  .footer.footer03 {
    grid-template-columns: 1fr;
  }
}
.footer.footer03 .logo {
  display: block;
  margin-bottom: 20px;
}
.footer.footer03 .contact {
  row-gap: 40px;
  -moz-column-gap: 40px;
       column-gap: 40px;
  display: grid;
  align-items: start;
}
@media (max-width: 61.99em) {
  .footer.footer03 .contact {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }
}
@media (max-width: 47.99em) {
  .footer.footer03 .contact {
    grid-template-columns: 1fr;
  }
}
.footer.footer03 .social {
  justify-content: flex-end;
}
@media (max-width: 61.99em) {
  .footer.footer03 .form {
    order: 2;
  }
}
.footer.footer03 > div:last-of-type {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  row-gap: 40px;
}
@media (max-width: 61.99em) {
  .footer.footer03 > div:last-of-type {
    align-items: flex-start;
  }
}
.footer.footer03 > div:last-of-type .title {
  margin-bottom: 0;
}
.footer.footer04 {
  display: grid;
  grid-template-columns: minmax(300px, 50%) auto;
}
@media (max-width: 93.74em) {
  .footer.footer04 {
    grid-template-columns: auto 400px;
  }
}
@media (max-width: 74.99em) {
  .footer.footer04 {
    grid-template-columns: 1fr;
  }
}
.footer.footer04 .block:nth-child(2), .footer.footer04 .block:nth-child(3) {
  background-color: transparent;
}
@media (max-width: 47.99em) {
  .footer.footer04 .block:nth-child(3) {
    background: rgba(255, 255, 255, 0.03);
  }
  .footer.footer04 .block:nth-child(4) {
    background-color: transparent;
  }
}
.footer.footer04 .left {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 40px;
}
.footer.footer04 .left.blocks {
  gap: 0;
}
@media (max-width: 47.99em) {
  .footer.footer04 .left {
    grid-template-columns: 1fr;
  }
}
.footer.footer04 .logo {
  display: block;
  margin-bottom: 20px;
}
.footer.footer04 > div:last-of-type {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  row-gap: 40px;
}
.footer.footer04 > div:last-of-type .title {
  margin-bottom: 0;
}
.footer.footer05 {
  flex-direction: column;
}
.footer.footer05 .top {
  display: grid;
  grid-template-columns: minmax(200px, 25%) auto;
  align-items: center;
  position: relative;
  margin-top: 8vw;
}
@media (max-width: 61.99em) {
  .footer.footer05 .top {
    grid-template-columns: 1fr;
    row-gap: 40px;
  }
}
@media (max-width: 61.99em) {
  .footer.footer05 .top img {
    max-width: 140px;
  }
}
.footer.footer05 .top .nav {
  display: flex;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
@media (max-width: 61.99em) {
  .footer.footer05 .top .nav {
    flex-direction: column;
    row-gap: 20px;
  }
}
@media (max-width: 61.99em) {
  .footer.footer05 .top .nav .header__menuLink {
    padding: 10px 0;
  }
}
.footer.footer05 .top .nav .social {
  font-size: 0;
}
.footer.footer05 .top .bg {
  position: absolute;
  width: 100vw;
  max-width: unset;
  height: auto;
  left: -8vw;
  bottom: -40px;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;
  pointer-events: none;
  opacity: 0.5;
}
@media (max-width: 93.74em) {
  .footer.footer05 .top .bg {
    left: -100px;
  }
}
@media (max-width: 74.99em) {
  .footer.footer05 .top .bg {
    left: -50px;
  }
}
@media (max-width: 61.99em) {
  .footer.footer05 .top .bg {
    height: 120%;
    -o-object-fit: cover;
       object-fit: cover;
    opacity: 0.4;
  }
}
@media (max-width: 47.99em) {
  .footer.footer05 .top .bg {
    left: -30px;
  }
}
@media (max-width: 35.99em) {
  .footer.footer05 .top .bg {
    left: -20px;
  }
}
.footer.footer05 .bottom {
  padding-top: 60px;
  border-top: 3px solid rgba(255, 255, 255, 0.07);
  display: grid;
  align-items: start;
  grid-template-columns: 1fr 1fr;
  row-gap: 40px;
  -moz-column-gap: 40px;
       column-gap: 40px;
}
@media (max-width: 83.75em) {
  .footer.footer05 .bottom {
    grid-template-columns: 1fr minmax(400px, 60%);
  }
}
@media (max-width: 61.99em) {
  .footer.footer05 .bottom {
    grid-template-columns: 100%;
  }
}
.footer.footer05 .bottom.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 93.74em) {
  .footer.footer05 .bottom.grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 47.99em) {
  .footer.footer05 .bottom.grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 61.99em) {
  .footer.footer05 .bottom .contact .list {
    flex-direction: row;
    -moz-column-gap: 40px;
         column-gap: 40px;
    flex-wrap: wrap;
  }
}
.footer.footer05 .bottom .social {
  margin-top: 20px;
}
.footer.footer05 .bottom .form {
  max-width: unset;
}
@media (min-width: 62em) and (max-width: 83.75em) {
  .footer.footer05 .bottom .form__group {
    flex-direction: column;
  }
}
.footer.footer05 .bottom-left {
  display: grid;
  grid-template-columns: 1fr 1fr;
  -moz-column-gap: 40px;
       column-gap: 40px;
  row-gap: 40px;
}
@media (max-width: 83.75em) {
  .footer.footer05 .bottom-left {
    grid-template-columns: 100%;
  }
}
@media (max-width: 61.99em) {
  .footer.footer05 .bottom-left {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 35.99em) {
  .footer.footer05 .bottom-left {
    grid-template-columns: 100%;
  }
}
.footer.footer05 .bottom-left p {
  margin-bottom: 10px;
}
.footer.footer05 .bottom-left p:last-of-type {
  margin-bottom: 0;
}
.footer.footer06 {
  justify-content: space-between;
}
@media (max-width: 74.99em) {
  .footer.footer06 {
    flex-direction: column;
  }
}
.footer.footer06 .left {
  row-gap: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 74.99em) {
  .footer.footer06 .left {
    flex-direction: column-reverse;
  }
}
.footer.footer06 .left .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  -moz-column-gap: 40px;
       column-gap: 40px;
}
@media (max-width: 74.99em) {
  .footer.footer06 .left .top {
    flex-direction: column;
    align-items: flex-start;
    row-gap: 40px;
  }
}
.footer.footer06 .left .top .title {
  margin: 0;
}
.footer.footer06 .left .nav {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 20px;
}
@media (max-width: 74.99em) {
  .footer.footer06 .left .nav {
    border-top: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 0;
    padding-bottom: 40px;
  }
}
.footer.footer06 .left .nav .header__menuList {
  -moz-column-gap: 40px;
       column-gap: 40px;
}
@media (max-width: 23.75em) {
  .footer.footer06 .social {
    align-items: flex-start;
    flex-direction: column;
    row-gap: 15px;
  }
}

.prefooter {
  height: 80vh;
  background-size: cover;
  background-position: center center;
  position: relative;
}
@media (max-width: 74.99em) {
  .prefooter {
    aspect-ratio: 16/9;
    height: unset;
  }
}
.prefooter a {
  position: absolute;
  left: 8vw;
  top: 100px;
}
@media (max-width: 93.74em) {
  .prefooter a {
    left: 100px;
  }
}
@media (max-width: 74.99em) {
  .prefooter a {
    left: unset;
    right: 50px;
    top: 50px;
  }
}
@media (max-width: 47.99em) {
  .prefooter a {
    right: 30px;
    top: 30px;
  }
}
.prefooter a img {
  background-color: #fff;
  padding: 20px;
  height: auto;
}
@media (max-width: 93.74em) {
  .prefooter a img {
    max-width: 23vw;
  }
}
@media (max-width: 61.99em) {
  .prefooter a img {
    max-width: 33vw;
  }
}

.footer-small {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
  padding-bottom: 15px;
  border-top: 1px solid var(--inputBorder);
}
@media (max-width: 35.99em) {
  .footer-small {
    flex-direction: column;
    row-gap: 10px;
  }
}
.footer-small a, .footer-small span, .footer-small p, .footer-small div {
  color: #4E5360;
  font-size: 14px;
}
.footer-small a:hover {
  color: var(--linkHover);
}
@media (max-width: 74.99em) {
  .footer-small__copyright {
    padding-right: 25px;
  }
}
@media (max-width: 47.99em) {
  .footer-small__copyright {
    padding-right: 40px;
  }
}
@media (max-width: 35.99em) {
  .footer-small__copyright {
    padding-right: 0;
  }
}
.footer-small__realization {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.footer-small__realization span {
  transition: color 0.3s ease-in-out;
}
.footer-small__realization:hover span {
  color: var(--linkHover);
}
.footer-small__realization img {
  margin-left: 15px;
}

.subsite.site-wrapper {
  background-color: var(--bodySubsite);
}
.subsite-default {
  position: relative;
}
.subsite-default > h1 {
  margin-bottom: 40px;
}
.subsite-hero {
  background-color: var(--heroBg);
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 140px;
  padding-bottom: 90px;
  position: relative;
  min-height: 40vh;
}
.subsite-hero:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 100%);
}
.subsite-hero * {
  color: var(--heroTxt);
}
.subsite-hero > *:last-of-type {
  margin-bottom: 0;
}
.subsite-hero__content {
  position: relative;
  z-index: 1;
}
.subsite-hero h1 {
  margin-top: 0;
  font-weight: 700;
}
.subsite-hero .subtitle {
  font-weight: 300;
  font-size: 1.6rem;
  color: var(--headings);
}
.subsite-hero .subtitle strong {
  font-weight: 700;
  color: var(--paletteColor1);
}
.subsite-sidebar {
  display: grid;
  grid-template-columns: 1fr var(--sidebarWidth, 400px);
  -moz-column-gap: 100px;
       column-gap: 100px;
  row-gap: 40px;
  align-items: start;
}
.subsite-sidebar--left {
  grid-template-columns: var(--sidebarWidth, 400px) 1fr;
}
.subsite__sidebar--block {
  padding: 40px;
  background-color: var(--sidebarBg);
  box-shadow: var(--sidebarShadow, unset);
  border-radius: var(--sidebarRadius, 0);
  border: var(--sidebarBorderSize, 0 solid) var(--sidebarBorder);
  margin-bottom: 40px;
}
.subsite__sidebar--block:last-of-type {
  margin-bottom: 0;
}
.subsite__sidebar--block p, .subsite__sidebar--block div, .subsite__sidebar--block span {
  color: var(--sidebarTxt);
}
.subsite__sidebar--block a {
  color: var(--sidebarLink);
}
.subsite__sidebar--block a:hover {
  color: var(--sidebarLinkHover);
}
.subsite__sidebar--block h1, .subsite__sidebar--block h2, .subsite__sidebar--block h3, .subsite__sidebar--block h4, .subsite__sidebar--block h5, .subsite__sidebar--block h6 {
  color: var(--sidebarHeadings);
}
.subsite__sidebar--block hr {
  background-color: var(--sidebarHr);
}
.subsite__sidebar--block ul li, .subsite__sidebar--block ol li {
  color: var(--sidebarTxt);
}
.subsite__sidebar--block ul li::before {
  background-color: var(--sidebarDecor);
}
.subsite__content {
  z-index: 3;
  position: relative;
}
.subsite__content h2 {
  margin-bottom: 40px;
}
.subsite__content--block {
  padding: 40px;
  background-color: var(--contentBg);
  box-shadow: var(--contentShadow, unset);
  border-radius: var(--contentRadius, 0);
  border: var(--contentBorderSize, 0 solid) var(--contentBorder);
}
.subsite__content > div:last-of-type {
  margin-bottom: 0;
}
.subsite__content--gap-xl {
  margin-bottom: 100px;
}
.subsite__content--gap-lg {
  margin-bottom: 80px;
}
.subsite__content--gap-md {
  margin-bottom: 60px;
}
.subsite__content--gap-sm {
  margin-bottom: 40px;
}
.subsite__content--gap-xs {
  margin-bottom: 20px;
}
.subsite__content--gap-line {
  margin-bottom: 2px;
}
.subsite__content .icons-set {
  -moz-column-gap: 60px;
       column-gap: 60px;
}
@media (max-width: 93.74em) {
  .subsite__content .icons-set {
    -moz-column-gap: 40px;
         column-gap: 40px;
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 47.99em) {
  .subsite__content .icons-set {
    grid-template-columns: 100%;
  }
}
.subsite__thumb {
  font-size: 0;
}
.subsite__title h1 {
  margin: 0;
}
.subsite__summary--block .subsite__summary--single {
  flex-direction: column;
  row-gap: 10px;
}
.subsite__summary--single {
  display: flex;
  -moz-column-gap: 10px;
       column-gap: 10px;
  align-items: center;
}
.subsite__summary--single svg {
  width: 35px;
  height: 35px;
  fill: var(--icon);
}
.subsite__summary__icon {
  font-size: 0;
}
.subsite__summary__data {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 20px;
       column-gap: 20px;
  row-gap: 10px;
}
.subsite__share .button {
  -moz-column-gap: 10px;
       column-gap: 10px;
  display: flex;
  align-items: center;
}
.subsite__share .button svg {
  width: 25px;
  height: 25px;
}

.grid {
  display: grid;
  -moz-column-gap: 60px;
       column-gap: 60px;
  row-gap: 60px;
}
@media (max-width: 74.99em) {
  .grid {
    -moz-column-gap: 40px;
         column-gap: 40px;
    row-gap: 40px;
  }
}
.grid-1 {
  grid-template-columns: minmax(0, 1fr);
}
.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (max-width: 47.99em) {
  .grid-2 {
    grid-template-columns: minmax(0, 1fr);
  }
}
.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
@media (max-width: 74.99em) {
  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 47.99em) {
  .grid-3 {
    grid-template-columns: minmax(0, 1fr);
  }
}
.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
@media (max-width: 93.74em) {
  .grid-4 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 74.99em) {
  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 47.99em) {
  .grid-4 {
    grid-template-columns: minmax(0, 1fr);
  }
}
.grid-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
@media (max-width: 116.25em) {
  .grid-5 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media (max-width: 93.74em) {
  .grid-5 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 74.99em) {
  .grid-5 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 47.99em) {
  .grid-5 {
    grid-template-columns: minmax(0, 1fr);
  }
}
.grid-1-2 {
  grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
}
@media (max-width: 74.99em) {
  .grid-1-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 47.99em) {
  .grid-1-2 {
    grid-template-columns: minmax(0, 1fr);
  }
}
.grid-2-1 {
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
}
@media (max-width: 74.99em) {
  .grid-2-1 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 47.99em) {
  .grid-2-1 {
    grid-template-columns: minmax(0, 1fr);
  }
}
.grid--no-gap {
  -moz-column-gap: 0;
       column-gap: 0;
  row-gap: 0;
}
.grid--gap-xxl {
  -moz-column-gap: 100px;
       column-gap: 100px;
  row-gap: 100px;
}
.grid--gap-xl {
  -moz-column-gap: 80px;
       column-gap: 80px;
  row-gap: 80px;
}
.grid--gap-lg {
  -moz-column-gap: 40px;
       column-gap: 40px;
  row-gap: 40px;
}
.grid--gap-sm {
  -moz-column-gap: 30px;
       column-gap: 30px;
  row-gap: 30px;
}
.grid--gap-xs {
  -moz-column-gap: 20px;
       column-gap: 20px;
  row-gap: 20px;
}
.grid--gap-line {
  -moz-column-gap: 1px;
       column-gap: 1px;
  row-gap: 1px;
}
.grid--v-center {
  align-items: center;
}
@media (max-width: 61.99em) {
  .grid--reverse-md .grid-column:nth-child(2) {
    order: -1;
  }
}
@media (max-width: 47.99em) {
  .grid--reverse-sm .grid-column:nth-child(2) {
    order: -1;
  }
}
@media (max-width: 35.99em) {
  .grid--reverse-xs .grid-column:nth-child(2) {
    order: -1;
  }
}

.cards.slick-slider {
  grid-template-columns: 100%;
}
.cards.slick-slider .slick-slide {
  margin: 0 30px;
}
.cards.slick-slider .slick-list {
  margin: 0 -30px;
}
.cards.slick-slider.grid--gap-sm .slick-slide {
  margin: 0 20px;
}
.cards.slick-slider.grid--gap-sm .slick-list {
  margin: 0 -20px;
}
.cards.slick-slider.grid--gap-xl .slick-slide {
  margin: 0 50px;
}
.cards.slick-slider.grid--gap-xl .slick-list {
  margin: 0 -50px;
}
.cards.slick-slider.grid--gap-lg .slick-slide {
  margin: 0 40px;
}
.cards.slick-slider.grid--gap-lg .slick-list {
  margin: 0 -40px;
}
.cards.slick-slider.grid--gap-xs .slick-slide {
  margin: 0 10px;
}
.cards.slick-slider.grid--gap-xs .slick-list {
  margin: 0 -10px;
}
.cards.slick-slider.grid--gap-line .slick-slide {
  margin: 0 1px;
}
.cards.slick-slider.grid--gap-line .slick-list {
  margin: 0 -1px;
}
.cards-more.right {
  text-align: right;
}
.cards-more.center {
  text-align: center;
}
.cards-more.left {
  text-align: left;
}
.cards.images--gap .card {
  row-gap: 30px;
}
.cards.images--gap .card--block {
  border-radius: var(--cardRadius, 0);
}
.cards.images--gap .card__thumb {
  border-radius: var(--cardRadius, 0);
}
.cards.images--separated .card--block {
  border-radius: 0 0 var(--cardRadius, 0) var(--cardRadius, 0);
}
.cards.images--separated .card__thumb {
  border-radius: var(--cardRadius, 0) var(--cardRadius, 0) 0 0;
}
.cards.images--separated.images--gap .card--block {
  border-radius: var(--cardRadius, 0);
}
.cards.images--separated.images--gap .card__thumb {
  border-radius: var(--cardRadius, 0);
}
.cards.images--under .card__thumb {
  order: 1;
}
.cards.images--under.images--separated .card--block {
  border-radius: var(--cardRadius, 0) var(--cardRadius, 0) 0 0;
}
.cards.images--under.images--separated .card__thumb {
  border-radius: 0 0 var(--cardRadius, 0) var(--cardRadius, 0);
}
.cards.images--under.images--separated.images--gap .card--block {
  border-radius: var(--cardRadius, 0);
}
.cards.images--under.images--separated.images--gap .card__thumb {
  border-radius: var(--cardRadius, 0);
}
.cards.info--content .card .info {
  order: -1;
}
.cards.info--title .card .title {
  order: -1;
}
.cards.info--title .card .info {
  order: -1;
}
.cards.info--footer .card .content {
  flex: 1;
}
.cards.info--footer .card .info {
  display: flex;
  justify-content: space-between;
  -moz-column-gap: 10px;
       column-gap: 10px;
  flex-wrap: wrap;
  padding-top: 20px;
  border-top: 1px solid var(--cardHr);
}
.cards > [data-hover] {
  display: flex;
}
.cards .card {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.cards .card--block {
  background-color: var(--cardBg);
  border-radius: var(--cardRadius, 0);
  border: var(--cardBorderSize, 0 solid) var(--cardBorder);
  padding: var(--cardPadding);
  height: 100%;
  gap: 30px;
  transition: ease 0.3s all;
}
@media (max-width: 74.99em) {
  .cards .card--block {
    padding: 30px;
  }
}
.cards .card--block:hover {
  background-color: var(--cardBgHover);
  border-color: var(--cardBorderHover, var(--cardBorder));
}
.cards .card--block .title {
  color: var(--cardHeadings, var(--cardTxt));
  font-size: 1.2rem;
  font-weight: 700;
}
.cards .card--block p, .cards .card--block .date, .cards .card--block .info span {
  color: var(--cardTxt);
}
.cards .card--block .info span svg {
  fill: var(--cardTxt);
}
.cards .card--block .content {
  gap: 20px !important;
}
.cards .card--block .categories {
  display: flex;
  flex-wrap: nowrap;
  gap: 5px;
}
.cards .card--block .categories span, .cards .card--block .categories a {
  color: var(--cardLink);
}
.cards .card--block .author {
  color: var(--cardLink);
}
.cards .card--banner {
  position: relative;
  border-radius: var(--cardRadius, 0);
  overflow: hidden;
}
.cards .card--banner .card__main {
  position: absolute;
  height: 100%;
  padding: var(--cardPadding);
  z-index: 1;
  width: 100%;
}
.cards .card--banner .card__main:hover .content:after {
  opacity: 0;
}
.cards .card--banner .card__main:hover .content p, .cards .card--banner .card__main:hover .button {
  opacity: 1;
  transform: translateY(0);
}
.cards .card--banner .card__main .content {
  z-index: 1;
}
.cards .card--banner .card__main .content:after {
  background: linear-gradient(0, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 200px;
  z-index: -1;
  transition: ease 0.3s all;
}
.cards .card--banner .card__main .content a, .cards .card--banner .card__main .content p, .cards .card--banner .card__main .content div, .cards .card--banner .card__main .content span {
  color: #fff;
}
.cards .card--banner .card__main .content p {
  opacity: 0;
  transform: translateY(50px);
  transition: ease 0.3s opacity, ease 0.6s transform;
}
.cards .card--banner .card__main .button {
  z-index: 1;
  transform: translateY(50px);
  opacity: 0;
  transition: ease 0.3s opacity, ease 0.6s transform, ease 0.3s color, ease 0.3s background-color;
  border-color: #fff;
  color: #fff !important;
  position: relative;
}
.cards .card--banner .card__main .button:hover {
  background-color: #fff;
  color: var(--paletteColor1) !important;
}
.cards .card--banner .card__thumb {
  height: 100%;
}
.cards .card--simple {
  gap: 30px;
}
.cards .card--simple .title {
  color: var(--headings);
}
.cards .card--simple2 {
  row-gap: 30px;
}
.cards .card--simple2 .card__thumb {
  position: relative;
}
.cards .card--simple2 .card__thumb:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
}
.cards .card--simple2 .info {
  display: flex;
  -moz-column-gap: 20px;
       column-gap: 20px;
  row-gap: 10px;
  justify-content: space-between;
}
.cards .card--simple2 .info > span {
  display: flex;
  flex-direction: column;
}
.cards .card--simple2 .info > span:last-of-type {
  text-align: right;
}
.cards .card--simple2 .info > span span.catalog-card__guests {
  justify-content: flex-end;
}
.cards .card--simple2 .info > span span:first-of-type {
  font-weight: 600;
  color: var(--headings);
}
.cards .card--simple2 .info > span span.excerpt {
  display: inline-block;
  margin-top: 10px;
  font-size: 12px;
}
.cards .card--simple2 .info span {
  align-items: unset !important;
}
.cards .card--simple2 svg {
  fill: var(--paletteColor1);
}
.cards .card--simple2 .title2 {
  z-index: 1;
  bottom: 0;
  padding: 20px;
  color: var(--headings);
  position: absolute;
  font-weight: 700;
  font-size: 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  -moz-column-gap: 20px;
       column-gap: 20px;
  width: 100%;
}
.cards .card--simple2 .title2 span {
  color: var(--paletteColor1);
  font-weight: 700;
}
.cards .card__thumb {
  font-size: 0;
  display: flex;
  border-radius: var(--cardRadius, 0);
  overflow: hidden;
}
.cards .card__thumb img {
  width: 100%;
  height: auto;
}
.cards .card__thumb .price {
  position: absolute;
  background-color: #fff;
  padding: 10px 20px;
  border-radius: var(--cardRadius, 0) 0 0 var(--cardRadius, 0);
  right: 0;
  top: 20px;
  transition: ease 0.3s all;
  font-size: 1rem;
  font-weight: 600;
}
.cards .card__thumb[data-hover*=overlay]:hover .price {
  opacity: 0;
}
.cards .card__main {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
  flex-grow: 1;
}
.cards .card .content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cards .card .button--set {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
.cards .card .button--set.inline {
  flex-direction: row;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
@media (max-width: 35.99em) {
  .cards .card .button--set.inline {
    flex-direction: column;
  }
}
.cards .card .button--set.inline.full > .button:first-of-type {
  width: unset;
  padding-left: 20px;
  padding-right: 20px;
}
@media (max-width: 35.99em) {
  .cards .card .button--set.inline.full > .button:first-of-type {
    width: 100%;
  }
}
.cards .card .button--set.inline.full form .button {
  padding-left: 20px;
  padding-right: 20px;
}
.cards .card .button--set.inline.full form, .cards .card .button--set.inline.full form .button, .cards .card .button--set.inline.full .button {
  width: 100%;
}
.cards .card .info span {
  display: flex;
  -moz-column-gap: 5px;
       column-gap: 5px;
  align-items: center;
}
.cards .card .info span svg {
  width: 20px;
  height: 20px;
}
.cards .card .title {
  font-weight: var(--headingsWeight, 600);
  font-family: var(--fontHeadings);
  text-transform: var(--headingsTransform, none);
}
.cards .card .align--left {
  text-align: left;
}
.cards .card .align--center {
  text-align: center;
}
.cards .card .align--center .categories {
  justify-content: center;
}
.cards .card .align--center .button {
  margin: 0 auto;
}
.cards .card .align--right {
  text-align: right;
}
.cards .card .align--right .categories {
  justify-content: flex-end;
}
.cards .card .align--right .button {
  margin: 0 0 0 auto;
}

@media (min-width: 75em) and (max-width: 102.5em) {
  .apartments-list.grid-4 {
    grid-template-columns: 1fr 1fr;
    -moz-column-gap: 40px;
         column-gap: 40px;
    row-gap: 40px;
  }
}
@media (max-width: 74.99em) {
  .apartments-list.grid-4 {
    -moz-column-gap: 40px;
         column-gap: 40px;
    row-gap: 40px;
  }
}
@media (min-width: 75em) and (max-width: 102.5em) {
  .apartments-list.grid-4 .card--simple2 {
    flex-direction: row;
    -moz-column-gap: 30px;
         column-gap: 30px;
    display: grid;
    grid-template-columns: 40% auto;
  }
}
@media (min-width: 75em) and (max-width: 102.5em) {
  .apartments-list.grid-4 .card--simple2 .card__thumb {
    aspect-ratio: 4/3;
  }
}
@media (min-width: 75em) and (max-width: 86.25em) {
  .apartments-list.grid-4 .card--simple2 .card__thumb {
    aspect-ratio: 1/1;
  }
}
@media (min-width: 75em) and (max-width: 102.5em) {
  .apartments-list.grid-4 .card--simple2 .card__thumb .title2 {
    font-size: 0;
    justify-content: flex-start;
    -moz-column-gap: 0;
         column-gap: 0;
  }
}
.apartments-list.grid-4 .card--simple2 .title {
  display: none;
  color: var(--headings);
  font-weight: 700;
}
@media (min-width: 75em) and (max-width: 102.5em) {
  .apartments-list.grid-4 .card--simple2 .title {
    display: block;
    position: relative;
    text-align: left;
  }
}
@media (min-width: 75em) and (max-width: 86.25em) {
  .apartments-list.grid-4 .card--simple2 .info {
    flex-direction: column;
  }
}
@media (max-width: 21.875em) {
  .apartments-list.grid-4 .card--simple2 .info {
    flex-direction: column;
  }
}
@media (min-width: 75em) and (max-width: 86.25em) {
  .apartments-list.grid-4 .card--simple2 .info > span {
    text-align: left;
  }
}
@media (max-width: 21.875em) {
  .apartments-list.grid-4 .card--simple2 .info > span {
    text-align: left;
  }
}
@media (min-width: 75em) and (max-width: 86.25em) {
  .apartments-list.grid-4 .card--simple2 .info > span .catalog-card__guests {
    justify-content: unset;
  }
}
@media (max-width: 21.875em) {
  .apartments-list.grid-4 .card--simple2 .info > span .catalog-card__guests {
    justify-content: unset;
  }
}
.apartment__header {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
  -moz-column-gap: 100px;
       column-gap: 100px;
  row-gap: 60px;
}
@media (max-width: 93.74em) {
  .apartment__header {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    -moz-column-gap: 60px;
         column-gap: 60px;
  }
}
@media (max-width: 74.99em) {
  .apartment__header {
    -moz-column-gap: 40px;
         column-gap: 40px;
  }
}
@media (max-width: 61.99em) {
  .apartment__header {
    grid-template-columns: 100%;
  }
}
.apartment__header-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  row-gap: 20px;
}
@media (max-width: 61.99em) {
  .apartment__header-info {
    row-gap: 40px;
  }
}
@media (max-width: 22.5em) {
  .apartment__header-info {
    row-gap: 20px;
  }
}
.apartment__header-info > div {
  position: relative;
  z-index: 2;
}
.apartment__header-info h1 {
  color: #fff;
  font-size: 2.2666666667rem;
  font-weight: 700;
  text-transform: uppercase;
}
.apartment__header-info .price {
  color: #fff;
  text-align: center;
  font-size: 1.6rem;
}
@media (max-width: 61.99em) {
  .apartment__header-info .price {
    text-align: left;
  }
}
.apartment__header-info .price strong {
  text-transform: uppercase;
  font-weight: 700;
}
.apartment__header-info .list {
  row-gap: 20px;
  -moz-column-gap: 20px;
       column-gap: 20px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 61.99em) {
  .apartment__header-info .list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 41.25em) {
  .apartment__header-info .list {
    grid-template-columns: 100%;
  }
}
.apartment__header-info .list-single {
  display: flex;
  align-items: center;
  padding: 25px 20px;
  border-radius: 8px;
  transition: ease 0.3s all;
  -moz-column-gap: 30px;
       column-gap: 30px;
  background-color: var(--cardBg);
  border-radius: var(--cardRadius, 0);
  border: var(--cardBorderSize, 0 solid) var(--cardBorder);
}
@media (max-width: 61.99em) {
  .apartment__header-info .list-single:first-of-type {
    grid-column: 1/-1;
  }
}
@media (max-width: 61.99em) {
  .apartment__header-info .list-single {
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
}
@media (max-width: 22.5em) {
  .apartment__header-info .list-single {
    flex-direction: column;
    text-align: center;
    row-gap: 20px;
  }
}
.apartment__header-info .list-single:hover {
  background-color: var(--cardBgHover);
  border-color: var(--cardBorderHover, var(--cardBorder));
}
.apartment__header-info .list-single p {
  color: #fff;
  margin-bottom: 0;
  font-size: 1rem;
}
.apartment__header-info .list-single p strong {
  font-size: 1.2rem;
}
.apartment__header-info .list-single svg {
  width: 50px;
  height: auto;
  fill: #fff;
}
@media (max-width: 61.99em) {
  .apartment__header-info .list-single svg {
    width: 30px;
  }
}
@media (max-width: 61.99em) {
  .apartment__header-info form {
    text-align: center;
  }
}
.apartment__header-info .button {
  width: 100%;
  font-size: 1.0666666667rem;
}
@media (max-width: 61.99em) {
  .apartment__header-info .button {
    width: auto;
  }
}
.apartment__header-slider {
  position: relative;
  aspect-ratio: 16/9;
  width: 100%;
}
@media (max-width: 93.74em) {
  .apartment__header-slider {
    aspect-ratio: 4/3;
  }
}
@media (max-width: 74.99em) {
  .apartment__header-slider {
    aspect-ratio: 1/1;
  }
}
@media (max-width: 61.99em) {
  .apartment__header-slider {
    aspect-ratio: 4/3;
    max-width: 600px;
    margin: 0 auto;
  }
}
.apartment__header-slider .apartment__photo {
  position: absolute;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  top: 0;
  left: 0;
  border-radius: 20px;
}
.apartment__header-slider .slide-photo {
  width: 100%;
  height: 100%;
  background-size: cover;
}
.apartment__header-slider .slick-slider, .apartment__header-slider .slick-list, .apartment__header-slider .slick-track {
  height: 100%;
}
.apartment__header-slider .slick-slide * {
  font-size: 0;
}
.apartment__content {
  display: grid;
  grid-template-columns: 3fr 2fr;
  -moz-column-gap: 100px;
       column-gap: 100px;
  row-gap: 60px;
}
@media (max-width: 93.74em) {
  .apartment__content {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    -moz-column-gap: 60px;
         column-gap: 60px;
  }
}
@media (max-width: 74.99em) {
  .apartment__content {
    -moz-column-gap: 40px;
         column-gap: 40px;
  }
}
@media (max-width: 61.99em) {
  .apartment__content {
    grid-template-columns: 100%;
    text-align: center;
  }
}
.apartment__content-description .button {
  margin-top: 40px;
}
.apartment__content-amenities {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-content: center;
}
@media (max-width: 31.25em) {
  .apartment__content-amenities {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 21.25em) {
  .apartment__content-amenities {
    grid-template-columns: repeat(2, 1fr);
  }
}
.apartment__content-amenities .single {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px;
  border-radius: 8px;
  transition: ease 0.3s all;
}
.apartment__content-amenities .single:hover {
  background-color: var(--cardBgHover);
}
.apartment__content-amenities .single img, .apartment__content-amenities .single svg {
  width: 85px;
  height: auto;
}
@media (max-width: 47.99em) {
  .apartment__content-amenities .single img, .apartment__content-amenities .single svg {
    width: 50px;
  }
}
.apartment__content-amenities .single svg {
  fill: var(--icon);
}
.apartment__content-amenities .single p {
  font-size: 1rem;
}
.apartment__amenities {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  -moz-column-gap: 100px;
       column-gap: 100px;
  row-gap: 60px;
}
@media (max-width: 93.74em) {
  .apartment__amenities {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    -moz-column-gap: 60px;
         column-gap: 60px;
  }
}
@media (max-width: 74.99em) {
  .apartment__amenities {
    -moz-column-gap: 40px;
         column-gap: 40px;
  }
}
@media (max-width: 61.99em) {
  .apartment__amenities {
    grid-template-columns: 100%;
    text-align: center;
  }
}
.apartment__amenities.full {
  grid-template-columns: 100%;
  position: relative;
}
.apartment__amenities.full:after {
  content: "";
  background-color: #000;
  opacity: 0.03;
  width: 100%;
  height: 100%;
  position: absolute;
}
.apartment__amenities.full .apartment__amenities-about {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.apartment__amenities.full .button {
  width: auto;
}
.apartment__amenities-slider {
  position: relative;
  z-index: 1;
  aspect-ratio: 16/9;
  width: 100%;
}
@media (max-width: 93.74em) {
  .apartment__amenities-slider {
    aspect-ratio: 4/3;
  }
}
@media (max-width: 74.99em) {
  .apartment__amenities-slider {
    aspect-ratio: 1/1;
  }
}
@media (max-width: 61.99em) {
  .apartment__amenities-slider {
    aspect-ratio: 4/3;
    max-width: 600px;
    margin: 0 auto;
  }
}
.apartment__amenities-slider .amenities__photo {
  position: absolute;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  top: 0;
  left: 0;
  border-radius: 20px;
}
.apartment__amenities-slider .slide-photo {
  width: 100%;
  height: 100%;
  background-size: cover;
}
.apartment__amenities-slider .slick-slider, .apartment__amenities-slider .slick-list, .apartment__amenities-slider .slick-track {
  height: 100%;
}
.apartment__amenities-slider .slick-slide * {
  font-size: 0;
}
.apartment__amenities-about {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.apartment__amenities-about .button {
  width: 100%;
  margin-top: 40px;
}
@media (max-width: 61.99em) {
  .apartment__amenities-about .button {
    width: auto;
  }
}
.apartment__localization {
  display: grid;
  grid-template-columns: 2fr 3fr;
  -moz-column-gap: 100px;
       column-gap: 100px;
  row-gap: 60px;
}
@media (max-width: 93.74em) {
  .apartment__localization {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    -moz-column-gap: 60px;
         column-gap: 60px;
  }
}
@media (max-width: 74.99em) {
  .apartment__localization {
    -moz-column-gap: 40px;
         column-gap: 40px;
  }
}
@media (max-width: 61.99em) {
  .apartment__localization {
    grid-template-columns: 100%;
  }
}
@media (max-width: 61.99em) {
  .apartment__localization-about {
    order: 1;
    text-align: center;
  }
}
.apartment__localization-about h2 {
  margin-bottom: 10px;
}
.apartment__localization-about h3 {
  margin-top: 0;
  margin-bottom: 40px;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--paletteColor1);
}
.apartment__localization-about h4 {
  margin-bottom: 20px;
  font-size: 1.0666666667rem;
  font-weight: 600;
}
.apartment__localization-about p, .apartment__localization-about span, .apartment__localization-about .place {
  font-size: 1rem;
  line-height: 2.1333333333rem;
}
.apartment__localization-about .place {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 8px;
  padding: 0 10px;
  transition: ease 0.3s all;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
@media (max-width: 61.99em) {
  .apartment__localization-about .place {
    max-width: 400px;
    margin: 0 auto;
  }
}
@media (max-width: 23.75em) {
  .apartment__localization-about .place {
    flex-direction: column;
  }
}
.apartment__localization-about .place:after {
  content: "";
  border: 1px dashed var(--paletteColor5);
  width: 100%;
  height: 1px;
  position: relative;
  display: inline-block;
  flex: 1;
  order: -1;
}
@media (max-width: 23.75em) {
  .apartment__localization-about .place:after {
    order: 2;
  }
}
.apartment__localization-about .place:hover {
  background-color: var(--cardBgHover);
}
.apartment__localization-about .place__name {
  order: -1;
}
@media (max-width: 61.99em) {
  .apartment__localization-about .place__name {
    text-align: left;
  }
}
.apartment__localization-about .place svg {
  width: 30px;
  height: 30px;
  fill: var(--txt);
}
.apartment__localization-about .place svg path {
  fill: var(--txt);
}
.apartment__localization-about .button {
  margin-top: 40px;
}
@media (max-width: 61.99em) {
  .apartment__localization-map {
    aspect-ratio: 16/9;
  }
}
@media (max-width: 61.99em) {
  .apartment__localization-map {
    height: auto !important;
    aspect-ratio: 4/3;
  }
}
.apartment__localization-map .leaflet-container {
  border-radius: 20px;
  height: 100%;
}
.apartment__faq {
  display: grid;
  grid-template-columns: 2fr 3fr;
  -moz-column-gap: 100px;
       column-gap: 100px;
  row-gap: 60px;
}
@media (max-width: 93.74em) {
  .apartment__faq {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    -moz-column-gap: 60px;
         column-gap: 60px;
  }
}
@media (max-width: 74.99em) {
  .apartment__faq {
    -moz-column-gap: 40px;
         column-gap: 40px;
  }
}
@media (max-width: 61.99em) {
  .apartment__faq {
    grid-template-columns: 100%;
  }
}
@media (max-width: 61.99em) {
  .apartment__faq-about {
    text-align: center;
  }
}
.apartment__faq-about h2 {
  font-size: 1.6666666667rem;
  font-weight: 700;
  margin-bottom: 50px;
}
.apartment__faq-about p {
  font-size: 1.0666666667rem;
  line-height: 2.1333333333rem;
}
.apartment .button--link {
  cursor: pointer;
  border: unset;
  box-shadow: unset;
  padding: 0;
  margin-top: 40px;
  display: inline-block;
  color: var(--link);
  opacity: 0.5;
  transition: all 0.3s ease;
  text-decoration: underline;
  font-size: 1rem;
  font-weight: 700;
  background-color: unset;
}
.apartment .button--link:hover {
  color: var(--linkHover);
  opacity: 1;
}

.header__submenu {
  position: absolute;
  display: flex;
  flex-direction: column;
  background: var(--headerSubmenuBg, var(--headerBg));
  border-radius: var(--submenuRadius, 0);
  align-items: flex-start;
  justify-content: flex-start;
  max-width: unset;
  left: 0;
  top: 100%;
  padding: 10px 0;
  height: auto;
  max-height: 900px;
  min-width: 280px;
  opacity: 1;
  z-index: 9;
  transform: scaleY(1);
  transform-origin: top center;
  transition: opacity 0.6s ease-in-out, transform 0.3s ease-in-out;
  list-style: none;
  margin: 0;
}
.header__submenu--hidden {
  opacity: 0;
  transform: scaleY(0);
}
.header__submenu:after {
  content: "";
  width: 100%;
  height: 30px;
  position: absolute;
  top: -30px;
  left: 0;
}
.header__submenuItem {
  margin: 0;
  padding: 0;
  list-style: none;
  display: block;
  width: 100%;
}
.header__submenuItem::before {
  display: none;
}
.header__submenuItem hr {
  height: 1px;
  background-color: var(--headerSubmenuHr);
  width: 100%;
  margin: 0;
  opacity: 0.1;
}
.header__submenuItem span {
  flex: 1;
}
.header__submenuItem--header span {
  color: var(--headerSubmenuLink, var(--headerLink));
  padding: 10px 20px;
  display: block;
  font-weight: 700;
  font-size: 0.9333333333rem;
  text-transform: uppercase;
}
.header__submenuItem--hasSubmenu.header__submenuItem--toRight .header__submenu {
  left: unset !important;
  right: 100% !important;
  margin-left: 0 !important;
  margin-right: 10px !important;
}
.header__submenuItem--hasSubmenu.header__submenuItem--toRight .header__submenu:before {
  left: unset;
  right: -10px;
}
.header__submenuItem--hasSubmenu.header__submenuItem--toRight > .header__submenuLink {
  padding-right: 20px;
  padding-left: 50px;
}
.header__submenuItem--hasSubmenu.header__submenuItem--toRight > .header__submenuLink .arrow {
  right: unset;
  left: 0;
  transform: rotate(180deg);
}
.header__submenuItem--hasSubmenu > .header__submenuLink {
  padding-right: 50px;
}
.header__submenuItem--hasSubmenu > .header__submenuLink .arrow {
  width: 50px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  right: 0;
}
.header__submenuItem--hasSubmenu > .header__submenuLink .arrow:after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-top: 1px solid #FFF;
  border-left: 1px solid #FFF;
  transform: rotate(135deg);
}
.header__submenuLink {
  align-items: center;
  padding: 15px 20px;
  display: flex;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
.header__submenuLink[data-hover] {
  display: flex;
}
.header__submenuLink svg {
  width: 25px;
  height: 25px;
  fill: var(--headerSubmenuLink, var(--headerLink));
  transition: ease 0.3s all;
}
.header__submenuLink span {
  color: var(--headerSubmenuLink, var(--headerLink));
  line-height: initial;
  transition: ease 0.3s all;
  font-weight: var(--submenuWeight, 400);
  text-transform: var(--submenuTransform, initial);
  font-family: var(--submenuFont, var(--font, unset));
  font-size: 1.0666666667rem;
}
.header__submenuLink .arrow:after {
  border-color: var(--headerSubmenuLink, var(--headerLink)) !important;
  transition: ease 0.3s all;
}
.header__submenuLink:active span, .header__submenuLink--active span, .header__submenuLink--open span, .header__submenuLink:hover span {
  color: var(--headerSubmenuLinkHover, var(--headerLinkHover));
}
.header__submenuLink:active svg, .header__submenuLink--active svg, .header__submenuLink--open svg, .header__submenuLink:hover svg {
  fill: var(--headerSubmenuLinkHover, var(--headerLinkHover));
}
.header__submenuLink:active .arrow:after, .header__submenuLink--active .arrow:after, .header__submenuLink--open .arrow:after, .header__submenuLink:hover .arrow:after {
  border-color: var(--headerSubmenuLinkHover, var(--headerLinkHover)) !important;
}
.header__submenu .header__submenu {
  left: 100%;
  top: 0;
  right: 0;
  margin-left: 10px;
}
.header__submenu .header__submenu:before {
  content: "";
  position: absolute;
  left: -10px;
  top: 0;
  width: 100%;
  height: 100%;
  display: block;
  opacity: 0;
}

.header__hamburger {
  display: none;
  width: 40px;
  height: 30px;
  position: relative;
  transform: rotate(0deg);
  transition: 0.5s ease-in-out;
  cursor: pointer;
}
@media (max-width: 61.99em) {
  .header__hamburger {
    display: block;
  }
}
.header__hamburger span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: var(--headerLink);
  border-radius: 9px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}
.header__hamburger span:nth-child(1) {
  top: 0;
}
.header__hamburger span:nth-child(2), .header__hamburger span:nth-child(3) {
  top: 50%;
  transform: rotate(0deg) translateY(-50%);
}
.header__hamburger span:nth-child(3) {
  opacity: 0;
}
.header__hamburger span:nth-child(4) {
  bottom: 0;
}
.header__hamburger--open span {
  background: var(--headerLinkHover);
}
.header__hamburger--open span:nth-child(1) {
  top: 50%;
  width: 0%;
  left: 50%;
}
.header__hamburger--open span:nth-child(2) {
  transform: rotate(45deg);
}
.header__hamburger--open span:nth-child(3) {
  transform: rotate(-45deg);
  opacity: 1;
}
.header__hamburger--open span:nth-child(4) {
  bottom: 50%;
  width: 0%;
  left: 50%;
}
@media (max-width: 61.99em) {
  .header--mobile .header__logo--sticky {
    display: none;
  }
  .header--mobile .header__logo--absolute {
    display: none;
  }
  .header--mobile .header__logo--mobile {
    display: block;
  }
  .header--mobile .header-wrapper {
    position: fixed;
    top: 0;
    width: 100%;
  }
  .header--mobile .header__nav {
    transform: translate(0, 0);
  }
  .header--mobile .header__logo--light {
    display: none;
  }
  .header__right {
    -moz-column-gap: 20px;
         column-gap: 20px;
    position: unset;
    padding-right: 0;
  }
  .header__right:after {
    border-radius: 0;
  }
  .header__right .lang-picker .button {
    padding: 10px;
  }
  .header__nav {
    display: block;
    overflow: auto;
    position: absolute;
    width: 100%;
    top: 100%;
    right: 0;
    height: 100vh;
    background: var(--headerSubmenuBg);
    z-index: 3;
    transform-origin: 0 0;
    transform: translate(100%, 0);
    transition: transform 0.5s ease-in-out;
    padding-top: 15px;
    padding-bottom: 105px;
    border-bottom: 80px solid var(--headerSubmenuBg);
    align-items: flex-start;
    flex-direction: column;
  }
  .header__menuList {
    flex-direction: column;
    width: 100%;
  }
  .header__menuItem {
    flex-direction: column;
  }
  .header__menuLink {
    flex-direction: row !important;
    width: 100%;
    text-align: unset !important;
    -moz-column-gap: 20px;
         column-gap: 20px;
    white-space: normal;
    padding: 20px 0;
  }
  .header__menuLink span {
    color: var(--headerSubmenuLink, var(--headerLink));
    flex: 1;
    font-size: 1.4666666667rem;
  }
  .header__menuLink svg {
    fill: var(--headerSubmenuLink, var(--headerLink));
    min-width: 25px;
  }
  .header__menuLink .arrow {
    margin-bottom: 0 !important;
    margin-top: 0 !important;
  }
  .header__menuLink .arrow:after {
    border-color: var(--headerSubmenuLink, var(--headerLink)) !important;
  }
  .header__submenu {
    position: relative;
    top: 0;
    left: 0;
    right: unset;
    width: 100%;
    max-height: unset;
    transition: opacity 0.6s ease-in-out, transform 0.3s ease-in-out, height 0.3s ease;
  }
  .header__submenu--hidden {
    height: 0;
    padding: 0;
  }
  .header__submenuLink {
    border-radius: var(--menuRadius, 0);
  }
  .header__submenuLink .arrow {
    transform: rotate(90deg);
  }
  .header__submenu .header__submenu {
    left: 0;
    top: 0;
    right: 0;
    margin: 0;
  }
  .header__submenuItem hr {
    margin: 10px 0px;
  }
  .header__submenuItem--hasSubmenu.header__submenuItem--toRight > .header__submenuLink {
    padding-left: 20px;
    padding-right: 50px;
  }
  .header__submenuItem--hasSubmenu.header__submenuItem--toRight > .header__submenuLink .arrow {
    right: 0;
    left: unset;
    transform: rotate(90deg);
  }
  .header__submenuItem--hasSubmenu.header__submenuItem--toRight .header__submenu {
    left: 0 !important;
    top: 0 !important;
    right: 0 !important;
    margin: 0 !important;
  }
}
@media (max-width: 26.25em) {
  .header__menuLink span {
    font-size: 1.3333333333rem;
  }
  .header .lang-picker .button .code {
    display: none;
  }
}

.hotresSubmit button.button, .button {
  color: var(--btnTxt) !important;
  background-color: var(--btnBg, transparent);
  border: var(--btnBorderSize, 0 solid) var(--btnBorder);
  border-radius: var(--btnRadius, 0);
  text-transform: var(--btnTransform);
  font-family: var(--btnFont, initial);
  font-weight: var(--btnWeight);
  padding: var(--btnPadding);
  transition-property: color, border, background-color;
  transition-duration: 0.3s;
  transition-timing-function: ease-in-out;
  display: inline-block;
  line-height: 15px;
  text-align: center;
  align-self: flex-start;
  cursor: pointer;
  font-size: 15px;
}
.hotresSubmit button.button:hover, .hotresSubmit button.button.active, .button:hover, .button.active {
  color: var(--btnTxtHover) !important;
  border-color: var(--btnBorderHover);
  background-color: var(--btnBgHover, transparent);
}
.hotresSubmit button.button:hover span, .hotresSubmit button.button:hover i, .hotresSubmit button.button.active span, .hotresSubmit button.button.active i, .button:hover span, .button:hover i, .button.active span, .button.active i {
  color: var(--btnTxtHover) !important;
}
.hotresSubmit button.button:hover svg, .hotresSubmit button.button.active svg, .button:hover svg, .button.active svg {
  fill: var(--btnTxtHover) !important;
}
.hotresSubmit button.button span, .hotresSubmit button.button i, .button span, .button i {
  color: var(--btnTxt) !important;
  transition: ease 0.3s all;
}
.hotresSubmit button.button svg, .button svg {
  fill: var(--btnTxt) !important;
  transition: ease 0.3s all;
}
.hotresSubmit button.button[data-hover]:before, .hotresSubmit button.button[data-hover]:after, .hotresSubmit button.button[data-hover][data-hover*=fade]:hover, .button[data-hover]:before, .button[data-hover]:after, .button[data-hover][data-hover*=fade]:hover {
  background-color: var(--btnBgHover, red);
}
.hotresSubmit button.button--secondary, .button--secondary {
  background-color: var(--btn2Bg, transparent);
  color: var(--btn2Txt, unset) !important;
  border: var(--btn2BorderSize, 0 solid) var(--btn2Border, unset);
  border-radius: var(--btn2Radius, 0);
  padding: var(--btn2Padding);
  text-transform: var(--btn2Transform, unset);
  font-family: var(--btn2Font, initial);
  font-weight: var(--btn2Weight);
}
.hotresSubmit button.button--secondary:hover, .hotresSubmit button.button--secondary.active, .button--secondary:hover, .button--secondary.active {
  color: var(--btn2TxtHover, unset) !important;
  border-color: var(--btn2BorderHover, unset);
  background-color: var(--btn2BgHover, unset);
}
.hotresSubmit button.button--secondary:hover span, .hotresSubmit button.button--secondary:hover i, .hotresSubmit button.button--secondary.active span, .hotresSubmit button.button--secondary.active i, .button--secondary:hover span, .button--secondary:hover i, .button--secondary.active span, .button--secondary.active i {
  color: var(--btn2TxtHover, unset) !important;
}
.hotresSubmit button.button--secondary:hover svg, .hotresSubmit button.button--secondary.active svg, .button--secondary:hover svg, .button--secondary.active svg {
  fill: var(--btn2TxtHover, unset) !important;
}
.hotresSubmit button.button--secondary span, .hotresSubmit button.button--secondary i, .button--secondary span, .button--secondary i {
  color: var(--btn2Txt, unset) !important;
}
.hotresSubmit button.button--secondary svg, .button--secondary svg {
  fill: var(--btn2Txt, unset) !important;
}
.hotresSubmit button.button--xs, .button--xs {
  padding: 10px 30px;
}
.hotresSubmit button.button--sm, .button--sm {
  padding: 15px 25px;
}
.hotresSubmit button.button--md, .button--md {
  padding: 20px 30px;
}
.hotresSubmit button.button--lg, .button--lg {
  padding: 25px 35px;
}
.hotresSubmit button.button--xl, .button--xl {
  padding: 30px 40px;
}
.hotresSubmit button.button--noradius, .button--noradius {
  border-radius: 0;
}
.hotresSubmit button.button--shadow, .button--shadow {
  box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.1);
}
.hotresSubmit button.button--full, .button--full {
  width: 100%;
}
.hotresSubmit button.buttons, .buttons {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 10px;
       column-gap: 10px;
  row-gap: 10px;
}

[data-hover] {
  display: inline-block;
  position: relative;
  transform: perspective(1px) translateZ(0);
  overflow: hidden;
  transition: ease 0.3s color, ease 0.3s background, ease 0.3s opacity, ease 0.3s transform, ease 0.3s border-color;
}
[data-hover]:after, [data-hover]:before {
  background-color: #ac7352;
}

[data-hover*=overlay]:after, [data-hover*=overlay]:before {
  z-index: 0 !important;
  opacity: 0.5;
}
[data-hover*=overlay][data-hover*=o1]:hover:after, [data-hover*=overlay][data-hover*=o1]:hover:before {
  opacity: 0.1;
}
[data-hover*=overlay][data-hover*=o2]:hover:after, [data-hover*=overlay][data-hover*=o2]:hover:before {
  opacity: 0.2;
}
[data-hover*=overlay][data-hover*=o3]:hover:after, [data-hover*=overlay][data-hover*=o3]:hover:before {
  opacity: 0.3;
}
[data-hover*=overlay][data-hover*=o4]:hover:after, [data-hover*=overlay][data-hover*=o4]:hover:before {
  opacity: 0.4;
}
[data-hover*=overlay][data-hover*=o5]:hover:after, [data-hover*=overlay][data-hover*=o5]:hover:before {
  opacity: 0.5;
}
[data-hover*=overlay][data-hover*=o6]:hover:after, [data-hover*=overlay][data-hover*=o6]:hover:before {
  opacity: 0.6;
}
[data-hover*=overlay][data-hover*=o7]:hover:after, [data-hover*=overlay][data-hover*=o7]:hover:before {
  opacity: 0.7;
}
[data-hover*=overlay][data-hover*=o8]:hover:after, [data-hover*=overlay][data-hover*=o8]:hover:before {
  opacity: 0.8;
}
[data-hover*=overlay][data-hover*=o9]:hover:after, [data-hover*=overlay][data-hover*=o9]:hover:before {
  opacity: 0.9;
}
[data-hover*=overlay][data-hover*=o10]:hover:after, [data-hover*=overlay][data-hover*=o10]:hover:before {
  opacity: 1;
}
[data-hover*=overlay] .icon {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: ease 0.3s all;
  color: #fff;
}
[data-hover*=overlay] .icon:hover {
  opacity: 1;
}
[data-hover*=overlay] .icon svg {
  width: 24px;
  height: 24px;
  fill: #fff;
  transition: ease 0.3s all;
}

[data-hover*=bg1]:after, [data-hover*=bg1]:before, [data-hover*=fade][data-hover*=bg1]:hover, [data-hover*=fade][data-hover*=bg1].active {
  background-color: var(--bg1) !important;
}

[data-hover*=color1]:hover, [data-hover*=color1].active {
  color: var(--color1) !important;
}
[data-hover*=color1][data-hover*=span]:hover span, [data-hover*=color1][data-hover*=span].active span {
  color: var(--color1) !important;
}
[data-hover*=color1][data-hover*=svg]:hover svg, [data-hover*=color1][data-hover*=svg].active svg {
  fill: var(--color1) !important;
}
[data-hover*=color1].header__menuLink:hover .arrow:after, [data-hover*=color1].header__submenuLink:hover .arrow:after, [data-hover*=color1].header__menuLink.active .arrow:after, [data-hover*=color1].header__submenuLink.active .arrow:after {
  border-color: var(--color1) !important;
}

[data-hover*=bg2]:after, [data-hover*=bg2]:before, [data-hover*=fade][data-hover*=bg2]:hover, [data-hover*=fade][data-hover*=bg2].active {
  background-color: var(--bg2) !important;
}

[data-hover*=color2]:hover, [data-hover*=color2].active {
  color: var(--color2) !important;
}
[data-hover*=color2][data-hover*=span]:hover span, [data-hover*=color2][data-hover*=span].active span {
  color: var(--color2) !important;
}
[data-hover*=color2][data-hover*=svg]:hover svg, [data-hover*=color2][data-hover*=svg].active svg {
  fill: var(--color2) !important;
}
[data-hover*=color2].header__menuLink:hover .arrow:after, [data-hover*=color2].header__submenuLink:hover .arrow:after, [data-hover*=color2].header__menuLink.active .arrow:after, [data-hover*=color2].header__submenuLink.active .arrow:after {
  border-color: var(--color2) !important;
}

[data-hover*=bg3]:after, [data-hover*=bg3]:before, [data-hover*=fade][data-hover*=bg3]:hover, [data-hover*=fade][data-hover*=bg3].active {
  background-color: var(--bg3) !important;
}

[data-hover*=color3]:hover, [data-hover*=color3].active {
  color: var(--color3) !important;
}
[data-hover*=color3][data-hover*=span]:hover span, [data-hover*=color3][data-hover*=span].active span {
  color: var(--color3) !important;
}
[data-hover*=color3][data-hover*=svg]:hover svg, [data-hover*=color3][data-hover*=svg].active svg {
  fill: var(--color3) !important;
}
[data-hover*=color3].header__menuLink:hover .arrow:after, [data-hover*=color3].header__submenuLink:hover .arrow:after, [data-hover*=color3].header__menuLink.active .arrow:after, [data-hover*=color3].header__submenuLink.active .arrow:after {
  border-color: var(--color3) !important;
}

[data-hover*=bg4]:after, [data-hover*=bg4]:before, [data-hover*=fade][data-hover*=bg4]:hover, [data-hover*=fade][data-hover*=bg4].active {
  background-color: var(--bg4) !important;
}

[data-hover*=color4]:hover, [data-hover*=color4].active {
  color: var(--color4) !important;
}
[data-hover*=color4][data-hover*=span]:hover span, [data-hover*=color4][data-hover*=span].active span {
  color: var(--color4) !important;
}
[data-hover*=color4][data-hover*=svg]:hover svg, [data-hover*=color4][data-hover*=svg].active svg {
  fill: var(--color4) !important;
}
[data-hover*=color4].header__menuLink:hover .arrow:after, [data-hover*=color4].header__submenuLink:hover .arrow:after, [data-hover*=color4].header__menuLink.active .arrow:after, [data-hover*=color4].header__submenuLink.active .arrow:after {
  border-color: var(--color4) !important;
}

[data-hover*=bg5]:after, [data-hover*=bg5]:before, [data-hover*=fade][data-hover*=bg5]:hover, [data-hover*=fade][data-hover*=bg5].active {
  background-color: var(--bg5) !important;
}

[data-hover*=color5]:hover, [data-hover*=color5].active {
  color: var(--color5) !important;
}
[data-hover*=color5][data-hover*=span]:hover span, [data-hover*=color5][data-hover*=span].active span {
  color: var(--color5) !important;
}
[data-hover*=color5][data-hover*=svg]:hover svg, [data-hover*=color5][data-hover*=svg].active svg {
  fill: var(--color5) !important;
}
[data-hover*=color5].header__menuLink:hover .arrow:after, [data-hover*=color5].header__submenuLink:hover .arrow:after, [data-hover*=color5].header__menuLink.active .arrow:after, [data-hover*=color5].header__submenuLink.active .arrow:after {
  border-color: var(--color5) !important;
}

[data-hover*=bg6]:after, [data-hover*=bg6]:before, [data-hover*=fade][data-hover*=bg6]:hover, [data-hover*=fade][data-hover*=bg6].active {
  background-color: var(--bg6) !important;
}

[data-hover*=color6]:hover, [data-hover*=color6].active {
  color: var(--color6) !important;
}
[data-hover*=color6][data-hover*=span]:hover span, [data-hover*=color6][data-hover*=span].active span {
  color: var(--color6) !important;
}
[data-hover*=color6][data-hover*=svg]:hover svg, [data-hover*=color6][data-hover*=svg].active svg {
  fill: var(--color6) !important;
}
[data-hover*=color6].header__menuLink:hover .arrow:after, [data-hover*=color6].header__submenuLink:hover .arrow:after, [data-hover*=color6].header__menuLink.active .arrow:after, [data-hover*=color6].header__submenuLink.active .arrow:after {
  border-color: var(--color6) !important;
}

[data-hover*=bg7]:after, [data-hover*=bg7]:before, [data-hover*=fade][data-hover*=bg7]:hover, [data-hover*=fade][data-hover*=bg7].active {
  background-color: var(--bg7) !important;
}

[data-hover*=color7]:hover, [data-hover*=color7].active {
  color: var(--color7) !important;
}
[data-hover*=color7][data-hover*=span]:hover span, [data-hover*=color7][data-hover*=span].active span {
  color: var(--color7) !important;
}
[data-hover*=color7][data-hover*=svg]:hover svg, [data-hover*=color7][data-hover*=svg].active svg {
  fill: var(--color7) !important;
}
[data-hover*=color7].header__menuLink:hover .arrow:after, [data-hover*=color7].header__submenuLink:hover .arrow:after, [data-hover*=color7].header__menuLink.active .arrow:after, [data-hover*=color7].header__submenuLink.active .arrow:after {
  border-color: var(--color7) !important;
}

[data-hover*=bg8]:after, [data-hover*=bg8]:before, [data-hover*=fade][data-hover*=bg8]:hover, [data-hover*=fade][data-hover*=bg8].active {
  background-color: var(--bg8) !important;
}

[data-hover*=color8]:hover, [data-hover*=color8].active {
  color: var(--color8) !important;
}
[data-hover*=color8][data-hover*=span]:hover span, [data-hover*=color8][data-hover*=span].active span {
  color: var(--color8) !important;
}
[data-hover*=color8][data-hover*=svg]:hover svg, [data-hover*=color8][data-hover*=svg].active svg {
  fill: var(--color8) !important;
}
[data-hover*=color8].header__menuLink:hover .arrow:after, [data-hover*=color8].header__submenuLink:hover .arrow:after, [data-hover*=color8].header__menuLink.active .arrow:after, [data-hover*=color8].header__submenuLink.active .arrow:after {
  border-color: var(--color8) !important;
}

[data-hover*=bg9]:after, [data-hover*=bg9]:before, [data-hover*=fade][data-hover*=bg9]:hover, [data-hover*=fade][data-hover*=bg9].active {
  background-color: var(--bg9) !important;
}

[data-hover*=color9]:hover, [data-hover*=color9].active {
  color: var(--color9) !important;
}
[data-hover*=color9][data-hover*=span]:hover span, [data-hover*=color9][data-hover*=span].active span {
  color: var(--color9) !important;
}
[data-hover*=color9][data-hover*=svg]:hover svg, [data-hover*=color9][data-hover*=svg].active svg {
  fill: var(--color9) !important;
}
[data-hover*=color9].header__menuLink:hover .arrow:after, [data-hover*=color9].header__submenuLink:hover .arrow:after, [data-hover*=color9].header__menuLink.active .arrow:after, [data-hover*=color9].header__submenuLink.active .arrow:after {
  border-color: var(--color9) !important;
}

[data-hover*=bg10]:after, [data-hover*=bg10]:before, [data-hover*=fade][data-hover*=bg10]:hover, [data-hover*=fade][data-hover*=bg10].active {
  background-color: var(--bg10) !important;
}

[data-hover*=color10]:hover, [data-hover*=color10].active {
  color: var(--color10) !important;
}
[data-hover*=color10][data-hover*=span]:hover span, [data-hover*=color10][data-hover*=span].active span {
  color: var(--color10) !important;
}
[data-hover*=color10][data-hover*=svg]:hover svg, [data-hover*=color10][data-hover*=svg].active svg {
  fill: var(--color10) !important;
}
[data-hover*=color10].header__menuLink:hover .arrow:after, [data-hover*=color10].header__submenuLink:hover .arrow:after, [data-hover*=color10].header__menuLink.active .arrow:after, [data-hover*=color10].header__submenuLink.active .arrow:after {
  border-color: var(--color10) !important;
}

[data-hover*=overlay][data-hover*=fade][data-hover*=bg]:hover {
  background-color: transparent !important;
}

[data-hover*=grow]:hover {
  transform: scale(1.1);
}

[data-hover*=grow-sm]:hover {
  transform: scale(1.05);
}

[data-hover*=shrink]:hover {
  transform: scale(0.9);
}

[data-hover*=float-up]:hover {
  transform: translateY(-10px);
}

[data-hover*=float-down]:hover {
  transform: translateY(10px);
}

[data-hover*=float-left]:hover {
  transform: translateX(-10px);
}

[data-hover*=float-right]:hover {
  transform: translateX(10px);
}

[data-hover*=rotate5]:hover {
  transform: rotate(5deg);
}

[data-hover*=rotate-5]:hover {
  transform: rotate(-5deg);
}

[data-hover*=fade]:hover {
  color: #fff;
}

[data-hover*="overlay fade"]:hover {
  background-color: unset;
  color: unset;
}

[data-hover*="overlay fade"]:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: ease 0.3s all;
}

[data-hover*="overlay fade"]:hover:after {
  opacity: 0.5;
}

[data-hover*=move-left]:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  transition: ease 0.3s all;
  z-index: -1;
  transform: perspective(1px) translateZ(0);
}

[data-hover*=move-left]:hover {
  color: #fff;
}

[data-hover*=move-left]:hover:after {
  width: 100%;
}

[data-hover*=overlay][data-hover*=move-left][data-hover*=move-right]:hover:after {
  width: 50%;
}

[data-hover*=move-right]:before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 0;
  transition: ease 0.3s all;
  z-index: -1;
  transform: perspective(1px) translateZ(0);
}

[data-hover*=move-right]:hover {
  color: #fff;
}

[data-hover*=move-right]:hover:before {
  width: 100%;
}

[data-hover*=overlay][data-hover*=move-right][data-hover*=move-left]:hover:before {
  width: 50%;
}

[data-hover*=move-top]:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 0;
  width: 100%;
  transition: ease 0.3s all;
  z-index: -1;
  transform: perspective(1px) translateZ(0);
}

[data-hover*=move-top]:hover {
  color: #fff;
}

[data-hover*=move-top]:hover:after {
  height: 100%;
}

[data-hover*=overlay][data-hover*=move-top][data-hover*=move-bottom]:hover:after {
  height: 50%;
}

[data-hover*=move-bottom]:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0;
  transition: ease 0.3s all;
  z-index: -1;
  transform: perspective(1px) translateZ(0);
}

[data-hover*=move-bottom]:hover {
  color: #fff;
}

[data-hover*=move-bottom]:hover:before {
  height: 100%;
}

[data-hover*=overlay][data-hover*=move-bottom][data-hover*=move-top]:hover:before {
  height: 50%;
}

[data-hover*=expand-h]:before {
  content: "";
  position: absolute;
  right: 50%;
  top: 0;
  height: 100%;
  width: 0;
  transition: ease 0.3s all;
  z-index: -1;
  transform: perspective(1px) translateZ(0) translateX(50%);
}

[data-hover*=expand-h]:hover {
  color: #fff;
}

[data-hover*=expand-h]:hover:before {
  width: 100%;
}

[data-hover*=expand-v]:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 0;
  transition: ease 0.3s all;
  z-index: -1;
  transform: perspective(1px) translateZ(0) translateY(-50%);
}

[data-hover*=expand-v]:hover {
  color: #fff;
}

[data-hover*=expand-v]:hover:before {
  height: 100%;
}

[data-hover*=expand-center]:before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 100%;
  transition: ease 0.3s all;
  z-index: -1;
  transform: perspective(1px) translateZ(0) scale(0);
}

[data-hover*=expand-center]:hover {
  color: #fff;
}

[data-hover*=expand-center]:hover:before {
  transform: perspective(1px) translateZ(0) scale(1);
}

[data-hover*=blob-]:before {
  content: "";
  position: absolute;
  height: 10px;
  width: 10px;
  transition: ease 0.5s all;
  border-radius: 100%;
  z-index: -1;
  transform: perspective(1px) translateZ(0) scale(0);
}

[data-hover*=blob-top-left]:before {
  left: 0;
  top: 0;
  border-top-left-radius: 0;
}

[data-hover*=blob-top-right]:before {
  right: 0;
  top: 0;
  border-top-right-radius: 0;
}

[data-hover*=blob-bottom-left]:before {
  left: 0;
  bottom: 0;
  border-bottom-left-radius: 0;
}

[data-hover*=blob-bottom-right]:before {
  right: 0;
  bottom: 0;
  border-bottom-right-radius: 0;
}

[data-hover*=blob-]:hover {
  color: #fff;
}

[data-hover*=blob-]:hover:before {
  transform: perspective(1px) translateZ(0) scale(100);
}

/*
[data-hover*='underline'] {
    overflow: hidden;
    float: left;
}*/
[data-hover*=underline]:after {
  content: "";
  height: 1px;
  position: absolute;
  bottom: 0;
  width: 0;
  transition: ease 0.3s all;
}

[data-hover*=underline-left]:after {
  left: 0;
}

[data-hover*=underline-right]:after {
  right: 0;
}

[data-hover*=underline-center]:after {
  left: 50%;
  transform: translateX(-50%);
}

[data-hover*=underline]:hover:after {
  width: 100%;
}

[data-hover*=underline-float]:after {
  left: 0;
  height: 0;
  width: 100%;
}

[data-hover*=underline-float]:hover:after {
  left: 0;
  height: 1px;
}

/*
[data-hover*='overline'] {
    overflow: hidden;
    float: left;
}*/
[data-hover*=overline]:before {
  content: "";
  height: 1px;
  position: absolute;
  top: 0;
  width: 0;
  transition: ease 0.3s all;
}

[data-hover*=overline-left]:before {
  left: 0;
}

[data-hover*=overline-right]:before {
  right: 0;
}

[data-hover*=overline-center]:before {
  left: 50%;
  transform: translateX(-50%);
}

[data-hover*=overline]:hover:before {
  width: 100%;
}

[data-hover*=overline-float]:before {
  left: 0;
  height: 0;
  width: 100%;
}

[data-hover*=overline-float]:hover:before {
  left: 0;
  height: 1px;
}

/*
[data-hover*='leftline'] {
    overflow: hidden;
    float: left;
}*/
[data-hover*=leftline]:before {
  content: "";
  width: 1px;
  position: absolute;
  left: 0;
  height: 0;
  transition: ease 0.3s all;
}

[data-hover*=leftline-top]:before {
  top: 0;
}

[data-hover*=leftline-bottom]:before {
  bottom: 0;
}

[data-hover*=leftline-center]:before {
  top: 50%;
  transform: translateY(-50%);
}

[data-hover*=leftline]:hover:before {
  height: 100%;
}

[data-hover*=leftline-float]:before {
  top: 0;
  height: 100%;
  width: 0;
}

[data-hover*=leftline-float]:hover:before {
  width: 1px;
}

/*
[data-hover*='rightline'] {
    overflow: hidden;
    float: left;
}*/
[data-hover*=rightline]:after {
  content: "";
  width: 1px;
  position: absolute;
  right: 0;
  height: 0;
  transition: ease 0.3s all;
}

[data-hover*=rightline-top]:after {
  top: 0;
}

[data-hover*=rightline-bottom]:after {
  bottom: 0;
}

[data-hover*=rightline-center]:after {
  top: 50%;
  transform: translateY(-50%);
}

[data-hover*=rightline]:hover:after {
  height: 100%;
}

[data-hover*=rightline-float]:after {
  top: 0;
  height: 100%;
  width: 0;
}

[data-hover*=rightline-float]:hover:after {
  width: 1px;
}

[data-hover*=icon-show] span {
  line-height: inherit;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  transition: ease 0.3s all;
}

[data-hover*=icon-show] .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  transition: ease 0.3s all;
  opacity: 0;
}

[data-hover*=icon-show]:hover .icon {
  right: 20px;
  opacity: 1;
}

[data-hover*=icon-show]:hover span {
  opacity: 0;
}

[data-hover*=icon-push-left] {
  transition: ease 0.3s all;
}
[data-hover*=icon-push-left] .icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -20px;
  transition: ease 0.3s all;
}
[data-hover*=icon-push-left]:hover {
  padding-left: 50px;
}
[data-hover*=icon-push-left]:hover .icon {
  left: 20px;
}

[data-hover*=icon-push-right] {
  transition: ease 0.3s all;
}
[data-hover*=icon-push-right] .icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -20px;
  transition: ease 0.3s right;
}
[data-hover*=icon-push-right]:hover {
  padding-right: 50px;
}
[data-hover*=icon-push-right]:hover .icon {
  right: 20px;
}

[data-hover*=icon-space-left] .icon {
  transition: ease 0.3s all;
  margin-right: 20px;
}

[data-hover*=icon-space-left]:hover .icon {
  margin-right: 40px;
}

[data-hover*=icon-space-right] .icon {
  transition: ease 0.3s all;
  margin-left: 20px;
}

[data-hover*=icon-space-right]:hover .icon {
  margin-left: 40px;
}

[data-animation*=rotate]:hover [data-animation*=this] {
  animation: 1s linear infinite rotate;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.cookie {
  background: rgba(0, 0, 0, 0.9);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 15px;
  padding-bottom: 15px;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
@media (max-width: 35.99em) {
  .cookie {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.cookie__text {
  color: #FFFFFF;
  width: 100%;
  text-align: center;
  font-size: 0.9333333333rem;
}
.cookie__text span {
  color: inherit;
  font-size: inherit;
}
@media (max-width: 35.99em) {
  .cookie__text {
    margin-right: 0;
    margin-bottom: 10px;
  }
}
.cookie__more {
  color: #FFFFFF;
}

.cookie-consent {
  position: fixed;
  z-index: 99999;
  width: 100%;
  max-width: 700px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-radius: 10px;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2);
}
@media (max-width: 61.99em) {
  .cookie-consent:not(.position-full) {
    max-width: 560px;
  }
}
@media (max-width: 37.5em) {
  .cookie-consent:not(.position-full) {
    max-width: unset;
    left: unset !important;
    right: 0 !important;
    bottom: 0 !important;
    border-radius: 0;
  }
  .cookie-consent:not(.position-full) .cookie-consent__footer {
    padding-bottom: 10px;
  }
}
@media (max-width: 27.5em) {
  .cookie-consent:not(.position-full) .close {
    display: flex;
    position: absolute;
    top: -60px;
    right: 10px;
    background: #fff;
    border-radius: 100%;
    height: 44px;
    width: 44px;
    padding: 0;
  }
}
.cookie-consent.position-left {
  left: 20px;
}
.cookie-consent.position-right {
  right: 20px;
}
.cookie-consent.position-center {
  right: 50%;
  transform: translateX(50%);
}
.cookie-consent.position-full {
  bottom: 50%;
  right: 50%;
  transform: translateX(50%) translateY(50%);
  width: 100%;
  height: 100%;
  max-width: unset;
  border-radius: 0;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.8);
}
@media (max-width: 61.99em) {
  .cookie-consent.position-full {
    padding: 20px;
  }
}
@media (max-width: 27.5em) {
  .cookie-consent.position-full .cookie-consent__header {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
.cookie-consent.position-full .cookie-consent__main {
  max-width: 700px;
  background-color: #fff;
  border-radius: 10px;
  overflow: auto;
}
.cookie-consent.tiny {
  width: unset;
  max-width: unset;
}
.cookie-consent.tiny.position-full {
  bottom: 10px;
  right: 10px;
  transform: unset;
  height: unset;
}
.cookie-consent.tiny .cookie-consent__main {
  display: none;
}
.cookie-consent.tiny .cookie-consent__open {
  display: block;
}
.cookie-consent__open {
  display: none;
  padding: 10px 20px;
  background-color: var(--paletteColor1);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  transition: ease 0.3s all;
}
.cookie-consent__open:hover {
  background-color: var(--paletteColor2);
}
.cookie-consent__open.hidden {
  display: none;
}
.cookie-consent__header {
  display: flex;
  flex-wrap: wrap;
}
.cookie-consent__header .tab, .cookie-consent__header .close {
  padding: 10px 10px;
  cursor: pointer;
  flex: 1;
  text-align: center;
  font-weight: bold;
  border-bottom: 3px solid var(--paletteColor5);
  transition: ease 0.3s all;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 37.5em) {
  .cookie-consent__header .tab, .cookie-consent__header .close {
    height: 45px;
  }
}
.cookie-consent__header .tab.active, .cookie-consent__header .tab:hover, .cookie-consent__header .close.active, .cookie-consent__header .close:hover {
  border-color: var(--paletteColor1);
  color: var(--paletteColor1);
}
.cookie-consent__header .close {
  display: none;
  flex: 0;
  padding: 10px 20px;
}
.cookie-consent__header .close.visible {
  display: flex;
}
.cookie-consent__footer {
  display: flex;
  -moz-column-gap: 10px;
       column-gap: 10px;
  padding: 20px;
  row-gap: 10px;
}
@media (max-width: 37.5em) {
  .cookie-consent__footer {
    flex-wrap: wrap;
  }
}
.cookie-consent__footer .btn {
  padding: 10px;
  cursor: pointer;
  flex: 1;
  text-align: center;
  font-weight: bold;
  border: 3px solid var(--paletteColor5);
  border-radius: 10px;
  transition: ease 0.3s all;
  white-space: nowrap;
}
.cookie-consent__footer .btn.active, .cookie-consent__footer .btn:hover {
  border-color: var(--paletteColor1);
  color: var(--paletteColor1);
}
.cookie-consent__footer .btn.main {
  border-color: var(--paletteColor1);
  background-color: var(--paletteColor1);
  color: #fff;
}
@media (max-width: 37.5em) {
  .cookie-consent__footer .btn.main {
    flex: 2;
  }
}
@media (max-width: 27.5em) {
  .cookie-consent__footer .btn.main {
    flex: unset;
    width: 100%;
  }
}
.cookie-consent__footer .btn.hidden {
  display: none;
}
.cookie-consent__content {
  padding: 20px 20px 0 20px;
  max-height: 50vh;
  overflow: auto;
}
@media (max-width: 27.5em) {
  .cookie-consent__content {
    max-height: 40vh;
  }
}
.cookie-consent__content p {
  font-size: 1rem;
}
.cookie-consent__content .tab {
  display: none;
}
.cookie-consent__content .tab.active {
  display: block;
}
.cookie-consent__content .group {
  display: flex;
  align-items: flex-start;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 2px solid var(--paletteColor5);
  -moz-column-gap: 20px;
       column-gap: 20px;
}
.cookie-consent__content .group__content {
  flex: 1;
}
.cookie-consent__content .group__content--title {
  font-weight: 700;
}
.cookie-consent__content .group__content .count {
  background-color: var(--paletteColor1);
  border-radius: 100px;
  font-size: 10px;
  margin-left: 10px;
  display: inline-flex;
  width: 18px;
  height: 18px;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 400;
}
.cookie-consent__content .group__content p {
  font-size: 1rem;
}
.cookie-consent__content .group label .checker {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1/1;
  transition: ease 0.3s all;
  padding: 10px;
  border-radius: 5px;
  cursor: pointer;
  border: 3px solid var(--paletteColor5);
}
.cookie-consent__content .group label .checker:after {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='150.657' height='100.657' viewBox='0 0 150.657 100.657'%3E%3Cg transform='translate(-387.672 -497.672)'%3E%3Cline x2='52' y2='52' transform='translate(390.5 540.5)' fill='none' stroke='%23FFF' stroke-width='8'/%3E%3Cline y1='95' x2='95' transform='translate(440.5 500.5)' fill='none' stroke='%23FFF' stroke-width='8'/%3E%3C/g%3E%3C/svg%3E%0A");
  width: 20px;
  height: 20px;
  display: block;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: ease 0.3s opacity;
}
.cookie-consent__content .group label input {
  cursor: pointer;
  display: none;
}
.cookie-consent__content .group label input:disabled ~ .checker {
  cursor: not-allowed;
  opacity: 0.5;
}
.cookie-consent__content .group label input:checked ~ .checker, .cookie-consent__content .group label input:hover ~ .checker {
  background: var(--paletteColor1);
  border-color: var(--paletteColor1);
}
.cookie-consent__content .group label input:checked ~ .checker:after, .cookie-consent__content .group label input:hover ~ .checker:after {
  opacity: 1;
}

.mobile-bar {
  background-color: var(--paletteColor1);
  display: none;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media (max-width: 61.99em) {
  .mobile-bar {
    display: flex;
  }
}
.mobile-bar .socials {
  display: flex;
}
.mobile-bar__link {
  padding: 13px;
  display: flex;
  align-items: center;
  -moz-column-gap: 13px;
       column-gap: 13px;
  transition: ease 0.3s all;
  height: 54px;
}
.mobile-bar__link:hover {
  background-color: var(--paletteColor2);
}
.mobile-bar__link:hover span {
  color: var(--btnTxtHover);
}
.mobile-bar__link:hover svg {
  fill: var(--btnTxtHover);
}
@media (max-width: 33.125em) {
  .mobile-bar__link.email span {
    display: none;
  }
}
.mobile-bar__link span {
  color: var(--btnTxt);
}
.mobile-bar__link svg {
  width: 25px;
  height: 25px;
  fill: var(--btnTxt);
  transition: ease 0.3s all;
}

.scroll-top {
  position: absolute;
  top: -60px;
  right: 10px;
  font-size: 0;
  display: none;
}
.scroll-top a {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease 0.3s all;
  padding: 12px;
}
.scroll-top a:not(.button) svg {
  fill: var(--txt);
}
.scroll-top a svg {
  transform: rotate(180deg);
}

.popup {
  visibility: hidden;
  position: fixed;
  z-index: 99999;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.popup.opened {
  visibility: visible;
}
.popup.opened .popup__main {
  top: 0;
}
.popup.opened .popup__bg {
  opacity: 1;
}
.popup__close {
  position: fixed;
  cursor: pointer;
  top: 20px;
  right: 20px;
  z-index: 2;
  font-size: 0;
}
.popup__close svg {
  fill: #fff;
}
@media (max-width: 61.99em) {
  .popup__close svg {
    fill: var(--txt);
    width: 25px;
    height: 25px;
  }
}
.popup__bg {
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  z-index: 0;
  background: rgba(0, 0, 0, 0.7);
  position: absolute;
  transition: ease-in-out 0.3s;
  opacity: 0;
}
.popup__bg.blur {
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}
.popup__main {
  top: -100vh;
  overflow: auto;
  height: 100%;
  position: relative;
  z-index: 1;
  transition: ease-in-out 0.7s;
}
.popup--full {
  z-index: 99999;
}
.popup--full h1, .popup--full h2, .popup--full h3, .popup--full h4, .popup--full h5, .popup--full h6, .popup--full p, .popup--full div, .popup--full span {
  color: #fff;
}
.popup--full .form__input--has-content ~ .form__label,
.popup--full .form__input:focus ~ .form__label,
.popup--full .form__required-info,
.popup--full .form__rodo span {
  color: #fff;
}
@media (max-width: 61.99em) {
  .popup--full .popup__close {
    right: 0;
  }
}
.popup--full .popup__close svg {
  fill: #fff;
}
.popup:not(.popup--full) h1, .popup:not(.popup--full) h2, .popup:not(.popup--full) h3, .popup:not(.popup--full) h4, .popup:not(.popup--full) h5, .popup:not(.popup--full) h6 {
  font-size: 150%;
}
.popup:not(.popup--full) .popup__close {
  margin-right: 0;
}
.popup--sidebar-left .popup__main, .popup--sidebar-right .popup__main {
  max-width: 400px;
  width: 100%;
  padding: 30px;
  background-color: #fff;
}
@media (max-width: 61.99em) {
  .popup--sidebar-left .popup__main, .popup--sidebar-right .popup__main {
    max-width: 100%;
  }
}
.popup--sidebar-left .popup__main h1, .popup--sidebar-right .popup__main h1 {
  font-size: 1.4666666667rem;
}
.popup--sidebar-left .popup__main h2, .popup--sidebar-right .popup__main h2 {
  font-size: 1.3333333333rem;
}
.popup--sidebar-left .popup__main h3, .popup--sidebar-right .popup__main h3 {
  font-size: 1.2rem;
}
.popup--sidebar-left .popup__main .form, .popup--sidebar-right .popup__main .form {
  margin-bottom: 0;
}
.popup--sidebar-left .popup__main .form__group, .popup--sidebar-right .popup__main .form__group {
  flex-direction: column;
}
.popup--sidebar-left .popup__main .form .submitSection.inline, .popup--sidebar-right .popup__main .form .submitSection.inline {
  flex-direction: column;
}
.popup--sidebar-left .popup__main .form .submit, .popup--sidebar-right .popup__main .form .submit {
  margin-top: 20px;
}
.popup--sidebar-right .popup__close {
  right: 0;
  left: 20px;
}
.popup--sidebar-right .popup__main {
  margin: 0 0 0 auto;
}
.popup--full .popup__main {
  transition: ease-in-out 0.3s;
}
.popup--full .popup__content {
  margin: 0 auto;
  max-width: 767px;
}
.popup[class*=popup--box] {
  height: unset;
  width: unset;
}
.popup[class*=popup--box].opened .popup__close {
  opacity: 1;
  transition: ease-in-out 0.3s all 0.5s;
}
.popup[class*=popup--box] .popup__close {
  position: absolute;
  transition: ease-in-out 0.3s all;
  opacity: 0;
}
.popup[class*=popup--box] .popup__close svg {
  width: 20px;
  height: 20px;
  fill: var(--link);
}
.popup[class*=popup--box] .popup__main {
  max-width: 400px;
  max-height: 90vh;
  width: 100%;
  padding: 30px;
  background-color: #fff;
}
@media (max-width: 35.99em) {
  .popup[class*=popup--box] .popup__main {
    max-width: 100%;
    max-height: 80vh;
  }
}
.popup[class*=popup--box] h1 {
  font-size: 1.4666666667rem;
}
.popup[class*=popup--box] h2 {
  font-size: 1.3333333333rem;
}
.popup[class*=popup--box] h3 {
  font-size: 1.2rem;
}
.popup[class*=popup--box] .form {
  margin-bottom: 0;
}
.popup[class*=popup--box] .form__group {
  flex-direction: column;
}
.popup[class*=popup--box] .form .submitSection.inline {
  flex-direction: column;
}
.popup[class*=popup--box] .form .submit {
  margin-top: 20px;
}
.popup--box-right-bottom {
  bottom: 20px;
  right: 20px;
}
@media (max-width: 35.99em) {
  .popup--box-right-bottom {
    bottom: 0;
    right: 0;
  }
}
.popup--box-left-bottom {
  bottom: 20px;
  left: 20px;
}
@media (max-width: 35.99em) {
  .popup--box-left-bottom {
    bottom: 0;
    left: 0;
  }
}
.popup.animation--slide-bottom .popup__main {
  bottom: -100vh;
  top: unset;
}
.popup.animation--slide-bottom.opened .popup__main {
  bottom: 0;
  top: unset;
}
.popup.animation--slide-left .popup__main {
  left: -100vw;
  top: 0;
}
.popup.animation--slide-left.opened .popup__main {
  left: 0;
  top: 0;
}
.popup.animation--slide-right .popup__main {
  right: -100vw;
  top: 0;
}
.popup.animation--slide-right.opened .popup__main {
  right: 0;
  top: 0;
}

.separator {
  display: inline-block;
  width: 100%;
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 0;
}
.separator[class*=bg1] {
  border-color: var(--bg1) !important;
}
.separator[class*=bg1] svg path {
  fill: var(--bg1) !important;
}
.separator.line2[class*=bg1] {
  background: linear-gradient(90deg, transparent 0%, var(--bg1) 50%, transparent 100%);
}
.separator[class*=bg2] {
  border-color: var(--bg2) !important;
}
.separator[class*=bg2] svg path {
  fill: var(--bg2) !important;
}
.separator.line2[class*=bg2] {
  background: linear-gradient(90deg, transparent 0%, var(--bg2) 50%, transparent 100%);
}
.separator[class*=bg3] {
  border-color: var(--bg3) !important;
}
.separator[class*=bg3] svg path {
  fill: var(--bg3) !important;
}
.separator.line2[class*=bg3] {
  background: linear-gradient(90deg, transparent 0%, var(--bg3) 50%, transparent 100%);
}
.separator[class*=bg4] {
  border-color: var(--bg4) !important;
}
.separator[class*=bg4] svg path {
  fill: var(--bg4) !important;
}
.separator.line2[class*=bg4] {
  background: linear-gradient(90deg, transparent 0%, var(--bg4) 50%, transparent 100%);
}
.separator[class*=bg5] {
  border-color: var(--bg5) !important;
}
.separator[class*=bg5] svg path {
  fill: var(--bg5) !important;
}
.separator.line2[class*=bg5] {
  background: linear-gradient(90deg, transparent 0%, var(--bg5) 50%, transparent 100%);
}
.separator[class*=bg6] {
  border-color: var(--bg6) !important;
}
.separator[class*=bg6] svg path {
  fill: var(--bg6) !important;
}
.separator.line2[class*=bg6] {
  background: linear-gradient(90deg, transparent 0%, var(--bg6) 50%, transparent 100%);
}
.separator[class*=bg7] {
  border-color: var(--bg7) !important;
}
.separator[class*=bg7] svg path {
  fill: var(--bg7) !important;
}
.separator.line2[class*=bg7] {
  background: linear-gradient(90deg, transparent 0%, var(--bg7) 50%, transparent 100%);
}
.separator[class*=bg8] {
  border-color: var(--bg8) !important;
}
.separator[class*=bg8] svg path {
  fill: var(--bg8) !important;
}
.separator.line2[class*=bg8] {
  background: linear-gradient(90deg, transparent 0%, var(--bg8) 50%, transparent 100%);
}
.separator[class*=bg9] {
  border-color: var(--bg9) !important;
}
.separator[class*=bg9] svg path {
  fill: var(--bg9) !important;
}
.separator.line2[class*=bg9] {
  background: linear-gradient(90deg, transparent 0%, var(--bg9) 50%, transparent 100%);
}
.separator[class*=bg10] {
  border-color: var(--bg10) !important;
}
.separator[class*=bg10] svg path {
  fill: var(--bg10) !important;
}
.separator.line2[class*=bg10] {
  background: linear-gradient(90deg, transparent 0%, var(--bg10) 50%, transparent 100%);
}
.separator.line {
  border-top: 1px solid var(--hr, var(--paletteColor5));
}
.separator.thick {
  border-top: 4px solid var(--hr, var(--paletteColor5));
}
.separator.dot {
  border-top: 6px dotted var(--hr, var(--paletteColor5));
}
.separator.dash {
  border-top: 3px dashed var(--hr, var(--paletteColor5));
}
.separator.double {
  border-top: 4px double var(--hr, var(--paletteColor5));
}
.separator.gradient {
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--hr, var(--paletteColor5)) 50%, transparent 100%);
}
.separator svg path {
  fill: var(--hr, var(--paletteColor5));
}
.separator.m1 {
  margin-top: 10px;
  margin-bottom: 10px;
}
.separator.m2 {
  margin-top: 20px;
  margin-bottom: 20px;
}
.separator.m3 {
  margin-top: 40px;
  margin-bottom: 40px;
}
.separator.m4 {
  margin-top: 50px;
  margin-bottom: 50px;
}
.separator.m5 {
  margin-top: 60px;
  margin-bottom: 60px;
}
.separator.m6 {
  margin-top: 90px;
  margin-bottom: 90px;
}
.separator.margin-top {
  margin-bottom: 0;
}
.separator.margin-bottom {
  margin-top: 0;
}
.separator.nomargin {
  display: inline-block;
  margin-top: 0;
  margin-bottom: 0;
}

.divider {
  position: absolute;
  width: 100%;
  left: 0;
  z-index: 1;
  top: -1px;
  font-size: 0;
  pointer-events: none;
}
.divider[data-divider*=top] {
  top: -1px;
}
.divider[data-divider*=top][data-divider*=gradient]:before {
  content: "";
  width: 100%;
  height: 100px;
  position: absolute;
  background: linear-gradient(0deg, transparent 0%, var(--body) 100%);
}
.divider[data-divider*=bottom] {
  top: unset;
  bottom: -1px;
}
.divider[data-divider*=bottom][data-divider*=gradient]:before {
  content: "";
  width: 100%;
  height: 100px;
  position: absolute;
  background: linear-gradient(0deg, transparent 0%, var(--body) 100%);
}
.divider[data-divider*=rotate] {
  transform: rotate(180deg);
}
.divider[data-divider*=flip] {
  transform: scaleX(-1);
}
.divider[data-divider*=rotate][data-divider*=flip] {
  transform: rotate(180deg) scaleX(-1);
}
.divider[data-divider*=h50] svg {
  height: 50px;
}
.divider[data-divider*=h50][data-divider*=gradient]:before {
  height: 50px;
}
.divider[data-divider*=h100] svg {
  height: 100px;
}
.divider[data-divider*=h100][data-divider*=gradient]:before {
  height: 100px;
}
.divider[data-divider*=h150] svg {
  height: 150px;
}
.divider[data-divider*=h150][data-divider*=gradient]:before {
  height: 150px;
}
.divider[data-divider*=h200] svg {
  height: 200px;
}
.divider[data-divider*=h200][data-divider*=gradient]:before {
  height: 200px;
}
.divider[data-divider*=h250] svg {
  height: 250px;
}
.divider[data-divider*=h250][data-divider*=gradient]:before {
  height: 250px;
}
.divider[data-divider*=h300] svg {
  height: 300px;
}
.divider[data-divider*=h300][data-divider*=gradient]:before {
  height: 300px;
}
.divider[data-divider*=hauto] svg {
  height: auto;
}
.divider .fill {
  fill: var(--body);
}
.divider svg {
  width: 100%;
}

.divider[data-divider*=bg1][data-divider*=gradient]:before {
  background: linear-gradient(0deg, transparent 0%, var(--bg1) 100%);
}
.divider[data-divider*=bg1] .fill {
  fill: var(--bg1);
}

.divider[data-divider*=bg2][data-divider*=gradient]:before {
  background: linear-gradient(0deg, transparent 0%, var(--bg2) 100%);
}
.divider[data-divider*=bg2] .fill {
  fill: var(--bg2);
}

.divider[data-divider*=bg3][data-divider*=gradient]:before {
  background: linear-gradient(0deg, transparent 0%, var(--bg3) 100%);
}
.divider[data-divider*=bg3] .fill {
  fill: var(--bg3);
}

.divider[data-divider*=bg4][data-divider*=gradient]:before {
  background: linear-gradient(0deg, transparent 0%, var(--bg4) 100%);
}
.divider[data-divider*=bg4] .fill {
  fill: var(--bg4);
}

.divider[data-divider*=bg5][data-divider*=gradient]:before {
  background: linear-gradient(0deg, transparent 0%, var(--bg5) 100%);
}
.divider[data-divider*=bg5] .fill {
  fill: var(--bg5);
}

.divider[data-divider*=bg6][data-divider*=gradient]:before {
  background: linear-gradient(0deg, transparent 0%, var(--bg6) 100%);
}
.divider[data-divider*=bg6] .fill {
  fill: var(--bg6);
}

.divider[data-divider*=bg7][data-divider*=gradient]:before {
  background: linear-gradient(0deg, transparent 0%, var(--bg7) 100%);
}
.divider[data-divider*=bg7] .fill {
  fill: var(--bg7);
}

.divider[data-divider*=bg8][data-divider*=gradient]:before {
  background: linear-gradient(0deg, transparent 0%, var(--bg8) 100%);
}
.divider[data-divider*=bg8] .fill {
  fill: var(--bg8);
}

.divider[data-divider*=bg9][data-divider*=gradient]:before {
  background: linear-gradient(0deg, transparent 0%, var(--bg9) 100%);
}
.divider[data-divider*=bg9] .fill {
  fill: var(--bg9);
}

.divider[data-divider*=bg10][data-divider*=gradient]:before {
  background: linear-gradient(0deg, transparent 0%, var(--bg10) 100%);
}
.divider[data-divider*=bg10] .fill {
  fill: var(--bg10);
}

.divider[data-divider*=o1] {
  opacity: 0.1;
}

.divider[data-divider*=o2] {
  opacity: 0.2;
}

.divider[data-divider*=o3] {
  opacity: 0.3;
}

.divider[data-divider*=o4] {
  opacity: 0.4;
}

.divider[data-divider*=o5] {
  opacity: 0.5;
}

.divider[data-divider*=o6] {
  opacity: 0.6;
}

.divider[data-divider*=o7] {
  opacity: 0.7;
}

.divider[data-divider*=o8] {
  opacity: 0.8;
}

.divider[data-divider*=o9] {
  opacity: 0.9;
}

.overlay {
  background: #000;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0.3;
}
.overlay[data-overlay*=o1] {
  opacity: 0.1;
}
.overlay[data-overlay*=o2] {
  opacity: 0.2;
}
.overlay[data-overlay*=o3] {
  opacity: 0.3;
}
.overlay[data-overlay*=o4] {
  opacity: 0.4;
}
.overlay[data-overlay*=o5] {
  opacity: 0.5;
}
.overlay[data-overlay*=o6] {
  opacity: 0.6;
}
.overlay[data-overlay*=o7] {
  opacity: 0.7;
}
.overlay[data-overlay*=o8] {
  opacity: 0.8;
}
.overlay[data-overlay*=o9] {
  opacity: 0.9;
}

.overlay[data-overlay*=bg1] {
  background-color: var(--bg1);
}

.overlay[data-overlay*=bg2] {
  background-color: var(--bg2);
}

.overlay[data-overlay*=bg3] {
  background-color: var(--bg3);
}

.overlay[data-overlay*=bg4] {
  background-color: var(--bg4);
}

.overlay[data-overlay*=bg5] {
  background-color: var(--bg5);
}

.overlay[data-overlay*=bg6] {
  background-color: var(--bg6);
}

.overlay[data-overlay*=bg7] {
  background-color: var(--bg7);
}

.overlay[data-overlay*=bg8] {
  background-color: var(--bg8);
}

.overlay[data-overlay*=bg9] {
  background-color: var(--bg9);
}

.overlay[data-overlay*=bg10] {
  background-color: var(--bg10);
}

@media (min-width: 36em) {
  .hide-from-xs {
    display: none !important;
  }
}

@media (max-width: 35.99em) {
  .hide-until-xs {
    display: none !important;
  }
}

@media (min-width: 36em) and (max-width: 35.99em) {
  .hide-xs-xs {
    display: none !important;
  }
}

@media (min-width: 36em) and (max-width: 47.99em) {
  .hide-xs-sm {
    display: none !important;
  }
}

@media (min-width: 36em) and (max-width: 61.99em) {
  .hide-xs-md {
    display: none !important;
  }
}

@media (min-width: 36em) and (max-width: 74.99em) {
  .hide-xs-lg {
    display: none !important;
  }
}

@media (min-width: 36em) and (max-width: 93.74em) {
  .hide-xs-xl {
    display: none !important;
  }
}

@media (min-width: 36em) and (max-width: 119.99em) {
  .hide-xs-xxl {
    display: none !important;
  }
}

@media (min-width: 48em) {
  .hide-from-sm {
    display: none !important;
  }
}

@media (max-width: 47.99em) {
  .hide-until-sm {
    display: none !important;
  }
}

@media (min-width: 48em) and (max-width: 35.99em) {
  .hide-sm-xs {
    display: none !important;
  }
}

@media (min-width: 48em) and (max-width: 47.99em) {
  .hide-sm-sm {
    display: none !important;
  }
}

@media (min-width: 48em) and (max-width: 61.99em) {
  .hide-sm-md {
    display: none !important;
  }
}

@media (min-width: 48em) and (max-width: 74.99em) {
  .hide-sm-lg {
    display: none !important;
  }
}

@media (min-width: 48em) and (max-width: 93.74em) {
  .hide-sm-xl {
    display: none !important;
  }
}

@media (min-width: 48em) and (max-width: 119.99em) {
  .hide-sm-xxl {
    display: none !important;
  }
}

@media (min-width: 62em) {
  .hide-from-md {
    display: none !important;
  }
}

@media (max-width: 61.99em) {
  .hide-until-md {
    display: none !important;
  }
}

@media (min-width: 62em) and (max-width: 35.99em) {
  .hide-md-xs {
    display: none !important;
  }
}

@media (min-width: 62em) and (max-width: 47.99em) {
  .hide-md-sm {
    display: none !important;
  }
}

@media (min-width: 62em) and (max-width: 61.99em) {
  .hide-md-md {
    display: none !important;
  }
}

@media (min-width: 62em) and (max-width: 74.99em) {
  .hide-md-lg {
    display: none !important;
  }
}

@media (min-width: 62em) and (max-width: 93.74em) {
  .hide-md-xl {
    display: none !important;
  }
}

@media (min-width: 62em) and (max-width: 119.99em) {
  .hide-md-xxl {
    display: none !important;
  }
}

@media (min-width: 75em) {
  .hide-from-lg {
    display: none !important;
  }
}

@media (max-width: 74.99em) {
  .hide-until-lg {
    display: none !important;
  }
}

@media (min-width: 75em) and (max-width: 35.99em) {
  .hide-lg-xs {
    display: none !important;
  }
}

@media (min-width: 75em) and (max-width: 47.99em) {
  .hide-lg-sm {
    display: none !important;
  }
}

@media (min-width: 75em) and (max-width: 61.99em) {
  .hide-lg-md {
    display: none !important;
  }
}

@media (min-width: 75em) and (max-width: 74.99em) {
  .hide-lg-lg {
    display: none !important;
  }
}

@media (min-width: 75em) and (max-width: 93.74em) {
  .hide-lg-xl {
    display: none !important;
  }
}

@media (min-width: 75em) and (max-width: 119.99em) {
  .hide-lg-xxl {
    display: none !important;
  }
}

@media (min-width: 93.75em) {
  .hide-from-xl {
    display: none !important;
  }
}

@media (max-width: 93.74em) {
  .hide-until-xl {
    display: none !important;
  }
}

@media (min-width: 93.75em) and (max-width: 35.99em) {
  .hide-xl-xs {
    display: none !important;
  }
}

@media (min-width: 93.75em) and (max-width: 47.99em) {
  .hide-xl-sm {
    display: none !important;
  }
}

@media (min-width: 93.75em) and (max-width: 61.99em) {
  .hide-xl-md {
    display: none !important;
  }
}

@media (min-width: 93.75em) and (max-width: 74.99em) {
  .hide-xl-lg {
    display: none !important;
  }
}

@media (min-width: 93.75em) and (max-width: 93.74em) {
  .hide-xl-xl {
    display: none !important;
  }
}

@media (min-width: 93.75em) and (max-width: 119.99em) {
  .hide-xl-xxl {
    display: none !important;
  }
}

@media (min-width: 120em) {
  .hide-from-xxl {
    display: none !important;
  }
}

@media (max-width: 119.99em) {
  .hide-until-xxl {
    display: none !important;
  }
}

@media (min-width: 120em) and (max-width: 35.99em) {
  .hide-xxl-xs {
    display: none !important;
  }
}

@media (min-width: 120em) and (max-width: 47.99em) {
  .hide-xxl-sm {
    display: none !important;
  }
}

@media (min-width: 120em) and (max-width: 61.99em) {
  .hide-xxl-md {
    display: none !important;
  }
}

@media (min-width: 120em) and (max-width: 74.99em) {
  .hide-xxl-lg {
    display: none !important;
  }
}

@media (min-width: 120em) and (max-width: 93.74em) {
  .hide-xxl-xl {
    display: none !important;
  }
}

@media (min-width: 120em) and (max-width: 119.99em) {
  .hide-xxl-xxl {
    display: none !important;
  }
}

.invisible {
  visibility: hidden !important;
}

.visible {
  visibility: visible !important;
}

.ratio--1 {
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}
.ratio--4-3 {
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
}
.ratio--16-9 {
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
}
.ratio--5-4 {
  aspect-ratio: 5/4;
  -o-object-fit: cover;
     object-fit: cover;
}
.ratio--5-3 {
  aspect-ratio: 5/3;
  -o-object-fit: cover;
     object-fit: cover;
}
.ratio--image img {
  -o-object-fit: cover;
     object-fit: cover;
}

body.hidden-scroll {
  overflow: hidden;
}

.sl-overlay {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: #000;
  opacity: 0.7;
  display: none;
  z-index: 99995;
  cursor: pointer;
}

.sl-wrapper {
  z-index: 99996;
}
.sl-wrapper button {
  border: 0 none;
  background: transparent;
  font-size: 28px;
  padding: 0;
  cursor: pointer;
}
.sl-wrapper button:hover {
  opacity: 0.7;
}
.sl-wrapper .sl-close {
  display: none;
  position: fixed;
  right: 30px;
  top: 30px;
  z-index: 99999;
  margin-top: -14px;
  margin-right: -14px;
  height: 44px;
  width: 44px;
  line-height: 44px;
  font-family: Arial, Baskerville, monospace;
  color: #fff;
  font-size: 3rem;
}
.sl-wrapper .sl-close:focus {
  outline: none;
}
.sl-wrapper .sl-counter {
  display: none;
  position: fixed;
  top: 30px;
  left: 30px;
  z-index: 99997;
  color: #fff;
  font-size: 1rem;
}
.sl-wrapper .sl-counter span {
  color: #fff;
}
.sl-wrapper .sl-navigation {
  width: 100%;
  display: none;
}
.sl-wrapper .sl-navigation button {
  position: fixed;
  top: 50%;
  margin-top: -22px;
  height: 44px;
  width: 22px;
  line-height: 44px;
  text-align: center;
  display: block;
  z-index: 999999;
  font-family: Arial, Baskerville, monospace;
  color: #fff;
}
.sl-wrapper .sl-navigation button.sl-next {
  right: 5px;
  font-size: 2rem;
}
.sl-wrapper .sl-navigation button.sl-prev {
  left: 5px;
  font-size: 2rem;
}
.sl-wrapper .sl-navigation button:focus {
  outline: none;
}
@media (min-width: 35.5em) {
  .sl-wrapper .sl-navigation button {
    width: 44px;
  }
  .sl-wrapper .sl-navigation button.sl-next {
    right: 10px;
    font-size: 3rem;
  }
  .sl-wrapper .sl-navigation button.sl-prev {
    left: 10px;
    font-size: 3rem;
  }
}
@media (min-width: 50em) {
  .sl-wrapper .sl-navigation button {
    width: 44px;
  }
  .sl-wrapper .sl-navigation button.sl-next {
    right: 20px;
    font-size: 3rem;
  }
  .sl-wrapper .sl-navigation button.sl-prev {
    left: 20px;
    font-size: 3rem;
  }
}
.sl-wrapper .sl-image {
  position: fixed;
  touch-action: none;
  z-index: 99999;
}
.sl-wrapper .sl-image img {
  border-radius: 10px;
  margin: 0;
  padding: 0;
  display: block;
  border: 0 none;
  width: 100%;
  height: auto;
}
@media (min-width: 35.5em) {
  .sl-wrapper .sl-image img {
    border: 0 none;
  }
}
@media (min-width: 50em) {
  .sl-wrapper .sl-image img {
    border: 0 none;
  }
}
.sl-wrapper .sl-image img[style*="scale(2)"] {
  cursor: move;
}
.sl-wrapper .sl-image iframe {
  background: #000;
  border: 0 none;
}
@media (min-width: 35.5em) {
  .sl-wrapper .sl-image iframe {
    border: 0 none;
  }
}
@media (min-width: 50em) {
  .sl-wrapper .sl-image iframe {
    border: 0 none;
  }
}
.sl-wrapper .sl-image .sl-caption {
  display: none;
  padding: 10px;
  color: #fff;
  background: rgba(0, 0, 0, 0.8);
  font-size: 1rem;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.sl-wrapper .sl-image .sl-caption.pos-top {
  bottom: auto;
  top: 0;
}
.sl-wrapper .sl-image .sl-caption.pos-outside {
  bottom: auto;
}
.sl-wrapper .sl-image .sl-download {
  display: none;
  position: absolute;
  bottom: 5px;
  right: 5px;
  color: #fff;
  z-index: 99997;
}

.sl-spinner {
  display: none;
  border: 5px solid #333;
  border-radius: 40px;
  height: 40px;
  left: 50%;
  margin: -20px 0 0 -20px;
  opacity: 0;
  position: fixed;
  top: 50%;
  width: 40px;
  z-index: 99998;
  animation: pulsate 1s ease-out infinite;
}

.sl-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

.sl-transition {
  transition: transform ease 200ms;
}
@keyframes pulsate {
  0% {
    transform: scale(0.1);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: scale(1.2);
    opacity: 0;
  }
}
div#flags {
  display: flex;
  gap: 15px;
  align-items: center;
}
div#flags a {
  display: flex;
  gap: 10px;
  align-items: center;
}
div#flags a span {
  color: var(--link);
  transition: ease 0.3s all;
}
div#flags a:hover svg {
  opacity: 1;
}
div#flags a:hover span {
  color: var(--linkHover);
}
div#flags .code {
  text-transform: uppercase;
}
div#flags .flag {
  font-size: 0;
}
div#flags .flag svg {
  width: 30px;
  height: auto;
  opacity: 0.5;
  transition: ease 0.3s all;
}
div#flags .active-lang svg {
  opacity: 1;
}
@media (max-width: 61.99em) {
  div#flags {
    margin-left: 15px;
    margin-top: 15px;
  }
  div#flags img {
    width: 30px;
  }
}

.lang-picker {
  position: relative;
  display: inline-block;
}
.lang-picker .button {
  display: flex;
  align-items: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
.lang-picker .button:hover .arrow svg line {
  stroke: var(--btnTxtHover);
}
.lang-picker .button.button--secondary:hover .arrow svg line {
  stroke: var(--btn2TxtHover);
}
.lang-picker .button.button--secondary .arrow svg line {
  stroke: var(--btn2Txt);
}
.lang-picker .button .code {
  text-transform: uppercase;
}
.lang-picker .button .flag {
  font-size: 0;
}
.lang-picker .button .flag svg {
  width: 30px;
  height: auto;
}
.lang-picker .button .icon {
  display: flex;
}
.lang-picker .button .icon svg {
  width: 28px;
  height: auto;
}
.lang-picker .button .arrow svg {
  width: 14px;
  height: auto;
}
.lang-picker .button .arrow svg line {
  stroke-width: 2;
  stroke: var(--btnTxt);
}
.lang-picker .list {
  display: none;
  position: absolute;
  z-index: 9;
  top: 100%;
  margin: 10px 0 0 0;
  padding: 0;
  width: 100%;
  background-color: var(--headerSubmenuBg, var(--headerBg));
  border-radius: var(--submenuRadius, 0);
  overflow: hidden;
  margin-top: 20px;
}
.lang-picker .list li {
  list-style: none;
  padding: 0;
  margin: 0;
}
.lang-picker .list li:after {
  display: block;
  content: "";
  width: 100%;
  height: 1px;
  background-color: var(--headerSubmenuHr);
  opacity: 0.1;
}
.lang-picker .list li:last-of-type:after {
  display: none;
}
.lang-picker .list li.current a span {
  color: var(--headerSubmenuLinkHover, var(--headerLinkHover));
}
.lang-picker .list li:before {
  display: none;
}
.lang-picker .list a {
  padding: 10px 10px;
  display: flex;
  align-items: center;
  color: var(--headerSubmenuLink, var(--headerLink));
  text-decoration: none;
  transition: ease 0.3s all;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
.lang-picker .list a:hover span {
  color: var(--headerSubmenuLinkHover, var(--headerLinkHover));
}
.lang-picker .list a span {
  transition: ease 0.3s all;
  color: var(--headerSubmenuLink, var(--headerLink));
}
.lang-picker .list img {
  max-width: unset;
}
.lang-picker .list .flag {
  font-size: 0;
}
.lang-picker .list .flag svg {
  width: 30px;
  height: auto;
}
.lang-picker .list .code {
  text-transform: uppercase;
}
.lang-picker .list--autowidth {
  width: auto;
}
.lang-picker .list--toright {
  right: 0;
}
.lang-picker .list--right {
  top: 0;
  left: 100%;
  margin: 0 0 0 10px;
}
.lang-picker .list--left {
  top: 0;
  right: 100%;
  margin: 0 10px 0 0;
}
.lang-picker .list--above {
  top: unset;
  bottom: 100%;
  margin: 0 0 10px 0;
}
.lang-picker--opened .label .arrow svg {
  transform: rotate(180deg);
}

.slick-arrow {
  position: absolute;
  z-index: 2;
  top: 50%;
  transform: translate(0, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  padding: 15px;
  background: var(--btnBg);
  fill: var(--btnTxt);
  stroke: var(--btnTxt);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  transition: ease 0.3s all;
  border-radius: var(--btnRadius);
  opacity: 0.9;
  cursor: pointer;
}
.slick-arrow:hover {
  background-color: var(--btnBgHover);
  fill: var(--btnTxtHover);
  stroke: var(--btnTxtHover);
  opacity: 1;
}
.slick-arrow line {
  stroke-width: 2;
}
.slick-next {
  right: 40px;
}
.slick-prev {
  left: 20px;
  transform: translate(0, -50%) rotate(180deg);
}
.slick-dots {
  display: flex;
  justify-content: center;
  gap: 5px;
}
.slick-dots li {
  display: block;
  padding: 0;
  margin: 0;
  font-size: 0;
}
.slick-dots li:before {
  display: none;
}
.slick-dots li.slick-active button {
  background-color: var(--btnBgHover);
  opacity: 1;
}
.slick-dots li button {
  border-radius: 20px;
  width: 10px;
  height: 10px;
  border: 0;
  background-color: var(--btnBg);
  padding: 0;
  transition: ease 0.3s all;
  font-size: 0;
  opacity: 0.5;
  cursor: pointer;
}
.slick-dots li button:hover {
  background-color: var(--btnBgHover);
  opacity: 1;
}
.slick-disabled {
  opacity: 0;
  pointer-events: none;
}
.slick-slider .slick-slide > div {
  font-size: 0 !important;
}
.slick-slider.arrows:hover .slick-arrow {
  opacity: 1;
}
.slick-slider.arrows .slick-arrow {
  opacity: 0;
}
.slick-slider.arrows--sides-bottom .slick-arrow {
  top: unset;
  bottom: 20px;
  transform: unset;
}
.slick-slider.arrows--sides-bottom .slick-arrow.slick-prev {
  transform: rotate(180deg);
}
.slick-slider.arrows--sides-top .slick-arrow {
  top: 20px;
  transform: unset;
}
.slick-slider.arrows--sides-top .slick-arrow.slick-prev {
  transform: rotate(180deg);
}
.slick-slider.arrows--bottom-left .slick-arrow {
  top: unset;
  bottom: 20px;
  transform: unset;
}
.slick-slider.arrows--bottom-left .slick-arrow.slick-prev {
  transform: rotate(180deg);
}
.slick-slider.arrows--bottom-left .slick-arrow.slick-next {
  left: 80px;
  right: unset;
}
.slick-slider.arrows--bottom-right .slick-arrow {
  top: unset;
  bottom: 20px;
  transform: unset;
}
.slick-slider.arrows--bottom-right .slick-arrow.slick-prev {
  transform: rotate(180deg);
  right: 100px;
  left: unset;
}
.slick-slider.arrows--under {
  margin-bottom: 90px;
}
.slick-slider.arrows--under .slick-arrow {
  top: unset;
  bottom: -70px;
  transform: unset;
}
.slick-slider.arrows--under .slick-arrow.slick-prev {
  transform: rotate(180deg);
  left: 0;
}
.slick-slider.arrows--under .slick-arrow.slick-next {
  right: 0;
}
.slick-slider.arrows--under-right {
  margin-bottom: 90px;
}
.slick-slider.arrows--under-right .slick-arrow {
  top: unset;
  bottom: -70px;
  transform: unset;
  right: 0;
}
.slick-slider.arrows--under-right .slick-arrow.slick-prev {
  transform: rotate(180deg);
  right: 60px;
  left: unset;
}
.slick-slider.arrows--under-left {
  margin-bottom: 90px;
}
.slick-slider.arrows--under-left .slick-arrow {
  top: unset;
  bottom: -70px;
  transform: unset;
  left: 0;
}
.slick-slider.arrows--under-left .slick-arrow.slick-prev {
  transform: rotate(180deg);
}
.slick-slider.arrows--under-left .slick-arrow.slick-next {
  left: 60px;
  right: unset;
}
.slick-slider.arrows--above {
  margin-top: 90px;
}
.slick-slider.arrows--above .slick-arrow {
  top: -70px;
  transform: unset;
}
.slick-slider.arrows--above .slick-arrow.slick-prev {
  transform: rotate(180deg);
  left: 0;
}
.slick-slider.arrows--above .slick-arrow.slick-next {
  right: 0;
}
.slick-slider.arrows--above-right {
  margin-top: 90px;
}
.slick-slider.arrows--above-right .slick-arrow {
  top: -70px;
  transform: unset;
  right: 0;
}
.slick-slider.arrows--above-right .slick-arrow.slick-prev {
  transform: rotate(180deg);
  right: 60px;
  left: unset;
}
.slick-slider.arrows--above-left {
  margin-top: 90px;
}
.slick-slider.arrows--above-left .slick-arrow {
  top: -70px;
  transform: unset;
  left: 0;
}
.slick-slider.arrows--above-left .slick-arrow.slick-prev {
  transform: rotate(180deg);
}
.slick-slider.arrows--above-left .slick-arrow.slick-next {
  left: 60px;
  right: unset;
}
.slick-slider.dots:hover .slick-dots {
  opacity: 1;
}
.slick-slider.dots .slick-dots {
  opacity: 0;
  transition: ease 0.3s all;
}
.slick-slider.dots--h-on .slick-dots {
  position: absolute;
  bottom: 10px;
  margin: 0;
  left: 50%;
  transform: translateX(-50%);
}
.slick-slider.dots--v-onright .slick-dots {
  position: absolute;
  bottom: 50%;
  margin: 0;
  right: 10px;
  flex-direction: column;
  transform: translateY(50%);
}
.slick-slider.dots--v-onleft .slick-dots {
  position: absolute;
  bottom: 50%;
  margin: 0;
  left: 10px;
  flex-direction: column;
  transform: translateY(50%);
}

.txtimg {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  position: relative;
  -moz-column-gap: 4vw;
       column-gap: 4vw;
  row-gap: 60px;
}
@media (max-width: 61.99em) {
  .txtimg {
    grid-template-columns: minmax(0, 1fr);
    row-gap: 40px;
  }
}
.txtimg.img-right .txtimg__content {
  order: -1;
  padding-top: 40px;
  padding-bottom: 40px;
}
@media (max-width: 61.99em) {
  .txtimg.img-right .txtimg__content {
    padding-top: 0;
    padding-bottom: 0;
  }
}
@media (max-width: 61.99em) {
  .txtimg.img-right.reversed-md .txtimg__content {
    order: 1;
  }
}
.txtimg.img-left .txtimg__content {
  padding-top: 40px;
  padding-bottom: 40px;
}
@media (max-width: 61.99em) {
  .txtimg.img-left .txtimg__content {
    padding-top: 0;
    padding-bottom: 0;
  }
}
@media (max-width: 61.99em) {
  .txtimg.img-left.reversed-md .txtimg__content {
    order: -1;
  }
}
.txtimg.img-above {
  grid-template-columns: minmax(0, 1fr);
}
@media (max-width: 61.99em) {
  .txtimg.img-above.reversed-md .txtimg__content {
    order: -1;
  }
}
.txtimg.img-under {
  grid-template-columns: minmax(0, 1fr);
}
.txtimg.img-under .txtimg__content {
  order: -1;
}
@media (max-width: 61.99em) {
  .txtimg.img-under.reversed-md .txtimg__content {
    order: 1;
  }
}
.txtimg__content, .txtimg__image, .txtimg__slider {
  position: relative;
}
.txtimg__image [data-hover], .txtimg__slider [data-hover] {
  width: 100%;
}
.txtimg__image img, .txtimg__slider img {
  width: 100%;
  height: auto;
  border-radius: 20px;
}
@media (max-width: 61.99em) {
  .txtimg__content {
    text-align: center;
  }
  .txtimg__content ul {
    text-align: left;
  }
  .txtimg__content .buttons {
    justify-content: center;
  }
}
.txtimg__content.align-center {
  text-align: center;
}
.txtimg__content.align-center ul li {
  text-align: left;
}
.txtimg__content.align-center .buttons {
  justify-content: center;
}
.txtimg__content.align-left {
  text-align: left;
}
@media (max-width: 61.99em) {
  .txtimg__content.align-left {
    text-align: center;
  }
}
.txtimg__content.align-right {
  text-align: right;
}
@media (max-width: 61.99em) {
  .txtimg__content.align-right {
    text-align: center;
  }
}
.txtimg__content.align-right ul li {
  padding-left: 0;
  padding-right: 1.3333333333rem;
}
@media (max-width: 61.99em) {
  .txtimg__content.align-right ul li {
    padding-left: 1.3333333333rem;
    padding-right: 0;
    text-align: left;
  }
}
.txtimg__content.align-right ul li:before {
  left: unset;
  right: 0;
}
@media (max-width: 61.99em) {
  .txtimg__content.align-right ul li:before {
    left: 0;
    right: unset;
  }
}
.txtimg__content.align-right .buttons {
  justify-content: flex-end;
}
@media (max-width: 61.99em) {
  .txtimg__content.align-right .buttons {
    justify-content: center;
  }
}
.txtimg__content ul {
  display: inline-block;
  width: 100%;
  margin: 20px 0 0 0;
}
.txtimg__content .title {
  margin-bottom: 40px;
}
.txtimg__content .buttons {
  margin-top: 40px;
}

.icons-set {
  display: grid;
  -moz-column-gap: 20px;
       column-gap: 20px;
  row-gap: 40px;
  justify-items: stretch;
}
.icons-set__item {
  display: flex;
  flex-direction: column;
  -moz-column-gap: 20px;
       column-gap: 20px;
  row-gap: 20px;
  width: 100%;
  height: 100%;
  margin: 0;
  transition: ease 0.3s all;
  overflow: hidden;
}
.icons-set__item .image {
  width: 100%;
  z-index: 1;
}
.icons-set__item .image .icon {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: ease 0.3s all;
  color: #fff;
}
.icons-set__item .image .icon:hover {
  opacity: 1;
}
.icons-set__item .image .icon svg {
  width: 24px;
  height: 24px;
  fill: #fff;
}
.icons-set__item .image img {
  transition: ease 0.3s background-color;
  height: auto;
}
.icons-set__item .image svg {
  width: 60px;
  height: 60px;
  fill: var(--icon);
}
.icons-set__item .image svg line {
  stroke: var(--icon);
}
.icons-set__item p {
  margin-bottom: 0;
  transition: ease 0.3s color;
}
.icons-set__item span {
  font-weight: 400;
  margin-top: 10px;
  transition: ease 0.3s color;
  display: block;
}
.icons-set__item .button {
  margin-top: 15px;
}
.icons-set__item-content {
  position: relative;
  z-index: 1;
}
@media (max-width: 35.99em) {
  .icons-set__item-content {
    text-align: center;
  }
  .icons-set__item-content ul {
    text-align: left;
  }
}
.icons-set__item-content.align-center {
  text-align: center;
}
.icons-set__item-content.align-left {
  text-align: left;
}
@media (max-width: 35.99em) {
  .icons-set__item-content.align-left {
    text-align: center;
  }
}
.icons-set__item-content.align-right {
  text-align: right;
}
@media (max-width: 35.99em) {
  .icons-set__item-content.align-right {
    text-align: center;
  }
}
.icons-set__item-text {
  font-weight: 600;
  font-size: 1.0666666667rem;
}
@media (max-width: 35.99em) {
  .icons-set__item-text {
    font-size: 1rem;
  }
}

.icons-title .icons-set__item-top {
  display: flex;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
.icons-title .icons-set__item-top .image {
  width: auto;
}

.icons-left .icons-set__item {
  flex-direction: row;
  align-items: center;
}
.icons-left .icons-set__item .image {
  width: auto;
}
.icons-left .icons-set__item .icons-set__item-content {
  flex: 1;
}

.icons-center .icons-set__item {
  align-items: center;
  text-align: center;
  justify-content: flex-start;
}

.icons-right .icons-set__item {
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
}
.icons-right .icons-set__item .image {
  width: auto;
  order: 1;
}
.icons-right .icons-set__item .icons-set__item-content {
  flex: 1;
}

.icons-above .icons-set__item .image img {
  width: 100%;
}

.icons-grid--8 {
  grid-template-columns: repeat(8, 1fr);
}
.icons-grid--7 {
  grid-template-columns: repeat(7, 1fr);
}
.icons-grid--6 {
  grid-template-columns: repeat(6, 1fr);
}
.icons-grid--5 {
  grid-template-columns: repeat(5, 1fr);
}
.icons-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}
.icons-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}
.icons-grid--2 {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 93.74em) {
  .icons-grid--8 {
    grid-template-columns: repeat(4, 1fr);
  }
  .icons-grid--7 {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 74.99em) {
  .icons-grid--6 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 61.99em) {
  .icons-grid--6 {
    grid-template-columns: repeat(3, 1fr);
  }
  .icons-grid--5 {
    grid-template-columns: repeat(3, 1fr);
  }
  .icons-grid--4 {
    grid-template-columns: repeat(3, 1fr);
  }
  .icons-grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 47.99em) {
  .icons-grid--8 {
    grid-template-columns: repeat(2, 1fr);
  }
  .icons-grid--7 {
    grid-template-columns: repeat(2, 1fr);
  }
  .icons-grid--6 {
    grid-template-columns: repeat(2, 1fr);
  }
  .icons-grid--5 {
    grid-template-columns: repeat(2, 1fr);
  }
  .icons-grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 35.99em) {
  .icons-grid--8, .icons-grid--7, .icons-grid--6, .icons-grid--5, .icons-grid--4, .icons-grid--3, .icons-grid--2 {
    grid-template-columns: 1fr;
  }
}

.gallery {
  display: grid;
  grid-gap: 30px;
  font-size: 0;
}
.gallery.no-gap {
  grid-gap: 0;
}
.gallery.no-gap .gallery__link {
  padding: 0 !important;
}
.gallery.no-gap .image {
  border-radius: 0;
}
.gallery .gallery__link {
  transition: transform 0.3s;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background-size: cover;
  background-position: center center;
  position: relative;
  row-gap: 10px;
}
.gallery .gallery__link:hover {
  z-index: 1;
}
.gallery .image {
  width: 100%;
  border-radius: var(--cardRadius, 0);
  overflow: hidden;
  font-size: 0;
  position: relative;
}
.gallery .image img {
  width: 100%;
  height: auto;
}
.gallery__img {
  width: 100%;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.2);
  transition: box-shadow 0.3s;
}
.gallery.loadmore a {
  display: none;
}
.gallery [class*=post] {
  font-size: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.gallery .caption:not(.caption--hover) {
  background: var(--cardBg, #fff);
  padding: 20px 20px;
  border-radius: var(--cardRadius, 0);
  display: flex;
  flex-direction: column;
  transition: ease 0.3s all;
}
.gallery .caption:not(.caption--hover):hover {
  background: var(--cardBgHover);
}
.gallery .caption:not(.caption--hover):hover .caption__title {
  color: var(--cardHeadingsHover);
}
.gallery .caption:not(.caption--hover):hover .caption__desc {
  color: var(--cardTxtHover);
}
.gallery .caption--under {
  order: 1;
}
.gallery .caption--left {
  text-align: left;
}
.gallery .caption--right {
  text-align: right;
}
.gallery .caption--center {
  text-align: center;
}
.gallery .caption--hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: ease 0.3s all;
  z-index: 1;
  background: transparent;
  display: flex;
  align-items: stretch;
  flex-direction: column;
  justify-content: center;
}
.gallery .caption--hover:hover {
  opacity: 1;
}
.gallery .caption--hover > *, .gallery .caption--hover .caption__desc, .gallery .caption--hover .caption__title {
  color: #fff;
}
.gallery .caption--bottom {
  position: absolute;
  bottom: 10px;
  left: 10px;
  z-index: 1;
  padding: 10px 20px !important;
  border-radius: var(--cardRadius, 0);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.gallery .caption--bottom.caption--center {
  left: 50%;
  transform: translateX(-50%);
}
.gallery .caption--bottom.caption--right {
  left: unset;
  right: 10px;
}
.gallery .caption--top {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1;
  padding: 10px 20px !important;
  border-radius: var(--cardRadius, 0);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.gallery .caption--top.caption--center {
  left: 50%;
  transform: translateX(-50%);
}
.gallery .caption--top.caption--right {
  left: unset;
  right: 10px;
}
.gallery .caption__title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 700;
  color: var(--cardHeadings, var(--cardTxt, var(--headings, var(--txt))));
  transition: ease 0.3s all;
}
.gallery .caption__desc {
  color: var(--cardTxt, var(--txt));
  transition: ease 0.3s all;
}
.gallery .imagebg {
  height: 300px;
  background-size: cover;
  background-position: center;
}
.gallery.template0 {
  grid-template-columns: 1fr;
}
.gallery.template1 {
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 74.99em) {
  .gallery.template1 {
    grid-gap: 20px;
  }
}
@media (max-width: 47.99em) {
  .gallery.template1 {
    grid-gap: 10px;
  }
}
@media (max-width: 25em) {
  .gallery.template1 {
    grid-template-columns: 1fr;
  }
}
.gallery.template2 {
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 74.99em) {
  .gallery.template2 {
    grid-gap: 20px;
  }
}
@media (max-width: 47.99em) {
  .gallery.template2 {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
  }
}
@media (max-width: 25em) {
  .gallery.template2 {
    grid-template-columns: 1fr;
  }
}
.gallery.template3 {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 74.99em) {
  .gallery.template3 {
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
  }
}
@media (max-width: 47.99em) {
  .gallery.template3 {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
  }
}
@media (max-width: 25em) {
  .gallery.template3 {
    grid-template-columns: 1fr;
  }
}
.gallery.template4 {
  grid-template-columns: repeat(5, 1fr);
}
@media (max-width: 93.74em) {
  .gallery.template4 {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 74.99em) {
  .gallery.template4 {
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 20px;
  }
}
@media (max-width: 47.99em) {
  .gallery.template4 {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
  }
}
@media (max-width: 25em) {
  .gallery.template4 {
    grid-template-columns: 1fr;
  }
}
.gallery.template5 {
  display: flex;
  flex-wrap: wrap;
  margin: 1em -10px 6em -10px;
  gap: 0;
}
.gallery.template5 .gallery__link {
  flex-grow: 1;
  padding: 10px;
}
.gallery.template5 .gallery__link, .gallery.template5 .image, .gallery.template5 img {
  width: 100%;
}
.gallery.template5 .gallery__link:nth-child(5n+1),
.gallery.template5 .gallery__link:nth-child(5n+2) {
  flex-basis: 50%;
}
@media (max-width: 25em) {
  .gallery.template5 .gallery__link:nth-child(5n+1),
  .gallery.template5 .gallery__link:nth-child(5n+2) {
    flex-basis: 100%;
  }
}
.gallery.template5 .gallery__link:nth-child(5n+3),
.gallery.template5 .gallery__link:nth-child(5n+4),
.gallery.template5 .gallery__link:nth-child(5n+5) {
  flex-basis: 33.33%;
}
@media (max-width: 47.99em) {
  .gallery.template5 .gallery__link:nth-child(5n+3),
  .gallery.template5 .gallery__link:nth-child(5n+4),
  .gallery.template5 .gallery__link:nth-child(5n+5) {
    flex-basis: 50%;
  }
}
@media (max-width: 25em) {
  .gallery.template5 .gallery__link:nth-child(5n+3),
  .gallery.template5 .gallery__link:nth-child(5n+4),
  .gallery.template5 .gallery__link:nth-child(5n+5) {
    flex-basis: 100%;
  }
}
.gallery.template6 {
  display: flex;
  flex-wrap: wrap;
  margin: 1em -10px 6em -10px;
  gap: 0;
}
.gallery.template6 .gallery__link {
  flex-grow: 1;
  padding: 10px;
}
.gallery.template6 .gallery__link, .gallery.template6 .image, .gallery.template6 img {
  width: 100%;
}
.gallery.template6 .gallery__link:nth-child(5n+1),
.gallery.template6 .gallery__link:nth-child(5n+2),
.gallery.template6 .gallery__link:nth-child(5n+3) {
  flex-basis: 33.33%;
}
@media (max-width: 47.99em) {
  .gallery.template6 .gallery__link:nth-child(5n+1),
  .gallery.template6 .gallery__link:nth-child(5n+2),
  .gallery.template6 .gallery__link:nth-child(5n+3) {
    flex-basis: 50%;
  }
}
@media (max-width: 25em) {
  .gallery.template6 .gallery__link:nth-child(5n+1),
  .gallery.template6 .gallery__link:nth-child(5n+2),
  .gallery.template6 .gallery__link:nth-child(5n+3) {
    flex-basis: 100%;
  }
}
.gallery.template6 .gallery__link:nth-child(5n+4),
.gallery.template6 .gallery__link:nth-child(5n+5) {
  flex-basis: 50%;
}
@media (max-width: 25em) {
  .gallery.template6 .gallery__link:nth-child(5n+4),
  .gallery.template6 .gallery__link:nth-child(5n+5) {
    flex-basis: 100%;
  }
}
.gallery.template7 {
  display: flex;
  flex-wrap: wrap;
  margin: 1em -10px 6em -10px;
  gap: 0;
}
.gallery.template7 .gallery__link {
  flex-grow: 1;
  padding: 10px;
}
.gallery.template7 .gallery__link, .gallery.template7 .image, .gallery.template7 img {
  width: 100%;
}
.gallery.template7 .gallery__link:nth-child(6n+1),
.gallery.template7 .gallery__link:nth-child(6n+6) {
  flex-basis: 50%;
}
@media (max-width: 74.99em) {
  .gallery.template7 .gallery__link:nth-child(6n+1),
  .gallery.template7 .gallery__link:nth-child(6n+6) {
    flex-basis: 33.33%;
  }
}
@media (max-width: 47.99em) {
  .gallery.template7 .gallery__link:nth-child(6n+1),
  .gallery.template7 .gallery__link:nth-child(6n+6) {
    flex-basis: 50%;
  }
}
@media (max-width: 25em) {
  .gallery.template7 .gallery__link:nth-child(6n+1),
  .gallery.template7 .gallery__link:nth-child(6n+6) {
    flex-basis: 100%;
  }
}
.gallery.template7 .gallery__link:nth-child(6n+2),
.gallery.template7 .gallery__link:nth-child(6n+3),
.gallery.template7 .gallery__link:nth-child(6n+4),
.gallery.template7 .gallery__link:nth-child(6n+5) {
  flex-basis: 25%;
}
@media (max-width: 74.99em) {
  .gallery.template7 .gallery__link:nth-child(6n+2),
  .gallery.template7 .gallery__link:nth-child(6n+3),
  .gallery.template7 .gallery__link:nth-child(6n+4),
  .gallery.template7 .gallery__link:nth-child(6n+5) {
    flex-basis: 33.33%;
  }
}
@media (max-width: 47.99em) {
  .gallery.template7 .gallery__link:nth-child(6n+2),
  .gallery.template7 .gallery__link:nth-child(6n+3),
  .gallery.template7 .gallery__link:nth-child(6n+4),
  .gallery.template7 .gallery__link:nth-child(6n+5) {
    flex-basis: 50%;
  }
}
@media (max-width: 25em) {
  .gallery.template7 .gallery__link:nth-child(6n+2),
  .gallery.template7 .gallery__link:nth-child(6n+3),
  .gallery.template7 .gallery__link:nth-child(6n+4),
  .gallery.template7 .gallery__link:nth-child(6n+5) {
    flex-basis: 100%;
  }
}
.gallery.template8 {
  display: flex;
  flex-wrap: wrap;
  margin: 1em -10px 6em -10px;
  gap: 0;
}
.gallery.template8 .gallery__link {
  flex-grow: 1;
  padding: 10px;
}
.gallery.template8 .gallery__link, .gallery.template8 .image, .gallery.template8 img {
  width: 100%;
}
.gallery.template8 .gallery__link:nth-child(6n+1),
.gallery.template8 .gallery__link:nth-child(6n+2),
.gallery.template8 .gallery__link:nth-child(6n+5),
.gallery.template8 .gallery__link:nth-child(6n+6) {
  flex-basis: 25%;
}
@media (max-width: 74.99em) {
  .gallery.template8 .gallery__link:nth-child(6n+1),
  .gallery.template8 .gallery__link:nth-child(6n+2),
  .gallery.template8 .gallery__link:nth-child(6n+5),
  .gallery.template8 .gallery__link:nth-child(6n+6) {
    flex-basis: 33.33%;
  }
}
@media (max-width: 47.99em) {
  .gallery.template8 .gallery__link:nth-child(6n+1),
  .gallery.template8 .gallery__link:nth-child(6n+2),
  .gallery.template8 .gallery__link:nth-child(6n+5),
  .gallery.template8 .gallery__link:nth-child(6n+6) {
    flex-basis: 50%;
  }
}
@media (max-width: 25em) {
  .gallery.template8 .gallery__link:nth-child(6n+1),
  .gallery.template8 .gallery__link:nth-child(6n+2),
  .gallery.template8 .gallery__link:nth-child(6n+5),
  .gallery.template8 .gallery__link:nth-child(6n+6) {
    flex-basis: 100%;
  }
}
.gallery.template8 .gallery__link:nth-child(6n+3),
.gallery.template8 .gallery__link:nth-child(6n+4) {
  flex-basis: 50%;
}
@media (max-width: 74.99em) {
  .gallery.template8 .gallery__link:nth-child(6n+3),
  .gallery.template8 .gallery__link:nth-child(6n+4) {
    flex-basis: 33.33%;
  }
}
@media (max-width: 47.99em) {
  .gallery.template8 .gallery__link:nth-child(6n+3),
  .gallery.template8 .gallery__link:nth-child(6n+4) {
    flex-basis: 50%;
  }
}
@media (max-width: 25em) {
  .gallery.template8 .gallery__link:nth-child(6n+3),
  .gallery.template8 .gallery__link:nth-child(6n+4) {
    flex-basis: 100%;
  }
}
.gallery.template9 {
  display: flex;
  flex-wrap: wrap;
  margin: 1em -10px 6em -10px;
  gap: 0;
}
.gallery.template9 .gallery__link {
  flex-grow: 1;
  padding: 10px;
}
.gallery.template9 .gallery__link, .gallery.template9 .image, .gallery.template9 img {
  width: 100%;
}
.gallery.template9 .gallery__link:nth-child(6n+1),
.gallery.template9 .gallery__link:nth-child(6n+2),
.gallery.template9 .gallery__link:nth-child(6n+3),
.gallery.template9 .gallery__link:nth-child(6n+4) {
  flex-basis: 25%;
}
@media (max-width: 74.99em) {
  .gallery.template9 .gallery__link:nth-child(6n+1),
  .gallery.template9 .gallery__link:nth-child(6n+2),
  .gallery.template9 .gallery__link:nth-child(6n+3),
  .gallery.template9 .gallery__link:nth-child(6n+4) {
    flex-basis: 33.33%;
  }
}
.gallery.template9 .gallery__link:nth-child(6n+5),
.gallery.template9 .gallery__link:nth-child(6n+6) {
  flex-basis: 50%;
}
@media (max-width: 74.99em) {
  .gallery.template9 .gallery__link:nth-child(6n+5),
  .gallery.template9 .gallery__link:nth-child(6n+6) {
    flex-basis: 33.33%;
  }
}
@media (max-width: 47.99em) {
  .gallery.template9 .gallery__link:nth-child(6n+5),
  .gallery.template9 .gallery__link:nth-child(6n+6) {
    flex-basis: 50%;
  }
}
@media (max-width: 25em) {
  .gallery.template9 .gallery__link:nth-child(6n+5),
  .gallery.template9 .gallery__link:nth-child(6n+6) {
    flex-basis: 100%;
  }
}
.gallery.template10 {
  display: flex;
  flex-wrap: wrap;
  margin: 1em -10px 6em -10px;
  gap: 0;
}
.gallery.template10 .gallery__link {
  flex-grow: 1;
  padding: 10px;
}
.gallery.template10 .gallery__link, .gallery.template10 .image, .gallery.template10 img {
  width: 100%;
}
.gallery.template10 .gallery__link:nth-child(6n+1),
.gallery.template10 .gallery__link:nth-child(6n+2) {
  flex-basis: 50%;
}
@media (max-width: 74.99em) {
  .gallery.template10 .gallery__link:nth-child(6n+1),
  .gallery.template10 .gallery__link:nth-child(6n+2) {
    flex-basis: 33.33%;
  }
}
@media (max-width: 47.99em) {
  .gallery.template10 .gallery__link:nth-child(6n+1),
  .gallery.template10 .gallery__link:nth-child(6n+2) {
    flex-basis: 50%;
  }
}
@media (max-width: 25em) {
  .gallery.template10 .gallery__link:nth-child(6n+1),
  .gallery.template10 .gallery__link:nth-child(6n+2) {
    flex-basis: 100%;
  }
}
.gallery.template10 .gallery__link:nth-child(6n+3),
.gallery.template10 .gallery__link:nth-child(6n+4),
.gallery.template10 .gallery__link:nth-child(6n+5),
.gallery.template10 .gallery__link:nth-child(6n+6) {
  flex-basis: 25%;
}
@media (max-width: 74.99em) {
  .gallery.template10 .gallery__link:nth-child(6n+3),
  .gallery.template10 .gallery__link:nth-child(6n+4),
  .gallery.template10 .gallery__link:nth-child(6n+5),
  .gallery.template10 .gallery__link:nth-child(6n+6) {
    flex-basis: 33.33%;
  }
}
@media (max-width: 47.99em) {
  .gallery.template10 .gallery__link:nth-child(6n+3),
  .gallery.template10 .gallery__link:nth-child(6n+4),
  .gallery.template10 .gallery__link:nth-child(6n+5),
  .gallery.template10 .gallery__link:nth-child(6n+6) {
    flex-basis: 50%;
  }
}
@media (max-width: 25em) {
  .gallery.template10 .gallery__link:nth-child(6n+3),
  .gallery.template10 .gallery__link:nth-child(6n+4),
  .gallery.template10 .gallery__link:nth-child(6n+5),
  .gallery.template10 .gallery__link:nth-child(6n+6) {
    flex-basis: 100%;
  }
}
.gallery.template11 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(50%, 1fr));
  grid-auto-rows: 400px;
  grid-auto-flow: row dense;
  gap: 0;
}
@media (max-width: 74.99em) {
  .gallery.template11 {
    grid-auto-rows: 300px;
  }
}
@media (max-width: 47.99em) {
  .gallery.template11 {
    grid-auto-rows: 180px;
  }
}
@media (max-width: 28.75em) {
  .gallery.template11 {
    grid-template-columns: 1fr;
    grid-auto-rows: 250px;
  }
}
.gallery.template11 .gallery__link {
  padding: 10px;
}
.gallery.template11 .image, .gallery.template11 .imagebg, .gallery.template11 [class*=post] {
  width: 100%;
  height: 100%;
}
.gallery.template11 .gallery__link:nth-child(6n+1) {
  grid-row: auto/span 2;
  grid-column: auto/span 1;
}
@media (max-width: 28.75em) {
  .gallery.template11 .gallery__link:nth-child(6n+1) {
    grid-row: auto/span 1;
  }
}
.gallery.template11 .gallery__link:nth-child(6n+5) {
  grid-row: auto/span 2;
  grid-column: auto/span 1;
}
@media (max-width: 28.75em) {
  .gallery.template11 .gallery__link:nth-child(6n+5) {
    grid-row: auto/span 1;
  }
}
.gallery.template12 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25%, 1fr));
  grid-auto-rows: 400px;
  grid-auto-flow: row dense;
  gap: 0;
}
@media (max-width: 93.74em) {
  .gallery.template12 {
    grid-auto-rows: 300px;
  }
}
@media (max-width: 74.99em) {
  .gallery.template12 {
    grid-template-columns: repeat(auto-fit, minmax(33.33%, 1fr));
  }
}
@media (max-width: 61.99em) {
  .gallery.template12 {
    grid-auto-rows: 240px;
  }
}
@media (max-width: 47.99em) {
  .gallery.template12 {
    grid-auto-rows: 180px;
    grid-template-columns: repeat(auto-fit, minmax(50%, 1fr));
  }
}
@media (max-width: 28.75em) {
  .gallery.template12 {
    grid-template-columns: 1fr;
    grid-auto-rows: 250px;
  }
}
.gallery.template12 .gallery__link {
  padding: 10px;
}
.gallery.template12 .image, .gallery.template12 .imagebg, .gallery.template12 [class*=post] {
  width: 100%;
  height: 100%;
}
.gallery.template12 .gallery__link:nth-child(7n+1) {
  grid-row: auto/span 2;
  grid-column: auto/span 2;
}
@media (max-width: 28.75em) {
  .gallery.template12 .gallery__link:nth-child(7n+1) {
    grid-row: auto/span 1;
    grid-column: auto/span 1;
  }
}
.gallery.template13 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25%, 1fr));
  grid-auto-rows: 300px;
  grid-auto-flow: row dense;
  gap: 0;
}
@media (max-width: 74.99em) {
  .gallery.template13 {
    grid-template-columns: repeat(auto-fit, minmax(33.33%, 1fr));
  }
}
@media (max-width: 61.99em) {
  .gallery.template13 {
    grid-auto-rows: 240px;
  }
}
@media (max-width: 47.99em) {
  .gallery.template13 {
    grid-auto-rows: 180px;
    grid-template-columns: repeat(auto-fit, minmax(50%, 1fr));
  }
}
@media (max-width: 28.75em) {
  .gallery.template13 {
    grid-template-columns: 1fr;
    grid-auto-rows: 250px;
  }
}
.gallery.template13 .gallery__link {
  padding: 10px;
}
.gallery.template13 .image, .gallery.template13 .imagebg, .gallery.template13 [class*=post] {
  width: 100%;
  height: 100%;
}
.gallery.template13 .gallery__link:nth-child(2n+1) {
  grid-row: auto/span 2;
}
@media (max-width: 28.75em) {
  .gallery.template13 .gallery__link:nth-child(2n+1) {
    grid-row: auto/span 1;
  }
}
@media (max-width: 74.99em) {
  .gallery.template13 .gallery__link:nth-child(3n+1) {
    grid-row: auto/span 2;
  }
}
@media (max-width: 28.75em) {
  .gallery.template13 .gallery__link:nth-child(3n+1) {
    grid-row: auto/span 1;
  }
}

.loadmore.button {
  display: table;
  margin: 40px auto 0 auto;
}

.files--vertical .files__single-top {
  flex-direction: column;
  flex: 1;
}
.files--vertical .files__single-top .content {
  align-items: center;
}
.files--vertical .files__single-top .button {
  margin: 0 auto;
}
.files--vertical .files__single-info {
  flex-direction: column;
  align-items: center;
}
.files__single {
  display: flex;
  gap: 10px;
  background-color: var(--cardBg);
  border-radius: var(--cardRadius, 0);
  border: var(--cardBorderSize, 0 solid) var(--cardBorder);
  padding: 20px 20px;
  flex-direction: column;
  transition: ease 0.3s all;
}
.files__single:hover {
  background-color: var(--cardBgHover);
  border-color: var(--cardBorderHover, var(--cardBorder));
}
.files__single:hover .title {
  color: var(--cardLinkHover, var(--linkHover));
}
.files__single-content {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.files__single-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}
@media (max-width: 35.99em) {
  .files__single-top {
    flex-direction: column;
    text-align: center;
  }
}
.files__single-top .content {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 190px;
}
.files__single-top .content span {
  color: var(--cardTxt);
}
.files__single-top .button {
  align-self: unset;
}
.files__single-top .number {
  background-color: var(--btn2Bg, unset);
  color: var(--btn2Txt, unset) !important;
  border: var(--btn2BorderSize, 0 solid) var(--btn2Border, unset);
  border-radius: var(--btn2Radius, 0);
  text-transform: var(--btn2Transform, unset);
  font-family: var(--btn2Font, initial);
  font-weight: var(--btn2Weight);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.files__single-top .title {
  font-weight: var(--headingsWeight);
  color: var(--cardHeadings, var(--cardTxt));
  transition: ease 0.3s all;
  flex: 1;
}
.files__single-info {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
.files__single-info span {
  color: var(--cardTxt);
}
.files__single hr {
  margin: 10px 0px;
  background-color: var(--cardHr);
  opacity: 0.1;
}

.slider {
  width: 100%;
  position: relative;
}
.slider:not(.custom) .background {
  width: 100%;
  height: 100%;
  position: absolute;
  background-position: center;
  background-size: cover;
  z-index: 0;
}
.slider:not(.custom) .overlay {
  z-index: 1;
}
.slider.full {
  height: 100vh;
}
.slider.full .slick-list {
  height: 100vh;
}
.slider.full-width .slick-slide {
  height: unset;
}
.slider.a1 .slick-list {
  aspect-ratio: 16/9;
}
.slider.a2 .slick-list {
  aspect-ratio: 4/3;
}
.slider.a3 .slick-list {
  aspect-ratio: 3/2;
}
.slider.a4 .slick-list {
  aspect-ratio: 21/9;
}
.slider.space .slick-slide > div {
  height: 100%;
}
.slider.space .slick-slide > div > div {
  height: 100%;
}
.slider.space .slick-slide .space {
  height: 100%;
  position: relative;
  margin: 0 10px;
}
.slider-asnav .slick-slide {
  opacity: 0.8;
  cursor: pointer;
  transition: ease 0.3s all;
}
.slider-asnav .slick-slide.slick-current, .slider-asnav .slick-slide:hover {
  opacity: 1;
}
.slider.slick-vertical .slick-list, .slider.slick-vertical .slick-track {
  height: 100% !important;
}
.slider.slick-vertical .slick-slide {
  height: 100%;
}
.slider .slick-track {
  height: 100%;
}
.slider .slick-slide {
  position: relative;
}
.slider .slide-content {
  position: absolute;
  z-index: 2;
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  align-items: center;
  justify-content: center;
  align-content: center;
  text-align: center;
  padding-left: 100px;
  padding-right: 100px;
  padding-top: 40px;
  padding-bottom: 40px;
}
@media (max-width: 61.99em) {
  .slider .slide-content {
    padding: 40px;
  }
}
.slider .slide-content[class*=right] {
  align-content: flex-end;
  align-items: flex-end;
  text-align: right;
}
.slider .slide-content[class*=left] {
  align-content: flex-start;
  align-items: flex-start;
  text-align: left;
}
.slider .slide-content[class*=top] {
  justify-content: flex-start;
  padding-top: 100px;
}
.slider .slide-content[class*=bottom] {
  justify-content: flex-end;
  padding-bottom: 100px;
}
.slider .slide-content * {
  font-size: 16px !important;
}
.slider .slide-content.black .content p, .slider .slide-content.black .content a:not(.button), .slider .slide-content.black .content span:not(.button), .slider .slide-content.black .content div:not(.button), .slider .slide-content.black .content h1, .slider .slide-content.black .content h2, .slider .slide-content.black .content h3, .slider .slide-content.black .content h4, .slider .slide-content.black .content h5, .slider .slide-content.black .content h6 {
  color: #000;
}
.slider .slide-content.white .content p, .slider .slide-content.white .content a:not(.button), .slider .slide-content.white .content span:not(.button), .slider .slide-content.white .content div:not(.button), .slider .slide-content.white .content h1, .slider .slide-content.white .content h2, .slider .slide-content.white .content h3, .slider .slide-content.white .content h4, .slider .slide-content.white .content h5, .slider .slide-content.white .content h6 {
  color: #fff;
}
.slider .slide-content.global .content p, .slider .slide-content.global .content a:not(.button), .slider .slide-content.global .content span:not(.button), .slider .slide-content.global .content div:not(.button), .slider .slide-content.global .content h1, .slider .slide-content.global .content h2, .slider .slide-content.global .content h3, .slider .slide-content.global .content h4, .slider .slide-content.global .content h5, .slider .slide-content.global .content h6 {
  color: #1d1c1c;
}
.slider .slide-content.color .content p, .slider .slide-content.color .content a:not(.button), .slider .slide-content.color .content span:not(.button), .slider .slide-content.color .content div:not(.button), .slider .slide-content.color .content h1, .slider .slide-content.color .content h2, .slider .slide-content.color .content h3, .slider .slide-content.color .content h4, .slider .slide-content.color .content h5, .slider .slide-content.color .content h6 {
  color: #ac7352;
}
.slider .slide-content.color-extra .content p, .slider .slide-content.color-extra .content a:not(.button), .slider .slide-content.color-extra .content span:not(.button), .slider .slide-content.color-extra .content div:not(.button), .slider .slide-content.color-extra .content h1, .slider .slide-content.color-extra .content h2, .slider .slide-content.color-extra .content h3, .slider .slide-content.color-extra .content h4, .slider .slide-content.color-extra .content h5, .slider .slide-content.color-extra .content h6 {
  color: #003c43;
}
.slider .slide-content .content p, .slider .slide-content .content a, .slider .slide-content .content span, .slider .slide-content .content div, .slider .slide-content .content h1, .slider .slide-content .content h2, .slider .slide-content .content h3, .slider .slide-content .content h4, .slider .slide-content .content h5, .slider .slide-content .content h6 {
  color: #fff;
}
.slider .slide-content .content h1 {
  margin-bottom: 40px;
}
.slider .slide-content .button {
  align-self: unset;
  margin-top: 40px;
}

.video {
  position: relative;
  font-size: 0;
}
.video__single {
  position: relative;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
.video__single.name-under {
  flex-direction: column-reverse;
}
.video__single.full {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  justify-content: center;
}
.video__single.full video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  min-width: 100vw;
  transition: ease 0.3s all;
  transform: translateY(-50%) translateX(-50%);
  display: block;
}
.video__single.a1, .video__single.a1 iframe, .video__single.a1 video {
  aspect-ratio: 16/9;
}
.video__single.a2, .video__single.a2 iframe, .video__single.a2 video {
  aspect-ratio: 4/3;
}
.video__single.a3, .video__single.a3 iframe, .video__single.a3 video {
  aspect-ratio: 3/2;
}
.video__single.a4, .video__single.a4 iframe, .video__single.a4 video {
  aspect-ratio: 21/9;
}
.video__single.playing .icon, .video__single.playing .overlay, .video__single.playing .poster {
  opacity: 0;
}
.video__single.playing .icon {
  visibility: hidden;
}
.video__single:not(.facebook) iframe {
  width: 100%;
  height: auto;
  display: block;
}
.video__single.facebook iframe {
  margin: 0 auto;
  display: block;
}
.video__single.facebook .stuck {
  width: unset;
  height: unset;
  transform: scale(0.8);
}
.video__single .name {
  color: var(--headings);
}
.video__single .player {
  position: relative;
  background-color: #000;
}
.video-container {
  font-size: 0;
}
.video video.grayscale {
  filter: grayscale(1);
}
.video .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  z-index: 3;
  cursor: pointer;
  transition: ease 0.3s all;
}
.video .icon svg {
  width: 30px;
  height: auto;
}
.video .overlay {
  z-index: 2;
  transition: ease 0.3s all;
}
.video .poster {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
  transition: ease 0.3s all;
  background-color: #fff;
}
.video .stuck {
  background-color: #000;
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 260px;
  height: 150px;
  transform: translateY(100%);
  animation: fade-in-up 0.75s ease forwards;
  z-index: 9999;
  overflow: hidden;
}
.video .stuck video, .video .stuck iframe {
  aspect-ratio: unset;
}

@keyframes fade-in-up {
  0% {
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.faq--separate {
  -moz-column-gap: 80px;
       column-gap: 80px;
}
.faq--separate .faq__question-list {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
.faq--separate .faq__answear {
  margin: 0;
}
.faq .active .faq__question {
  background-color: var(--cardBgHover);
  border-color: var(--cardBorderHover, var(--cardBorder));
}
.faq .active .faq__question span {
  color: var(--linkHover);
}
.faq .active .faq__question svg, .faq .active .faq__question svg line {
  fill: var(--linkHover);
  stroke: var(--linkHover);
}
.faq__question {
  font-weight: 600;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--headings, var(--txt));
  transition: ease 0.3s color;
  background-color: var(--cardBg);
  border-radius: var(--cardRadius, 0);
  border: var(--cardBorderSize, 0 solid) var(--cardBorder);
  padding: 20px;
  transition: ease 0.3s all;
}
.faq__question:hover {
  background-color: var(--cardBgHover);
  border-color: var(--cardBorderHover, var(--cardBorder));
}
.faq__question:hover span {
  color: var(--linkHover);
}
.faq__question:hover svg, .faq__question:hover svg line {
  fill: var(--linkHover);
  stroke: var(--linkHover);
}
.faq__question:last-of-type {
  margin-bottom: 0;
}
.faq__question .number {
  margin-right: 20px;
  width: 30px;
  height: 30px;
  background: #fff;
  border-radius: 5px;
  display: inline-block;
  text-align: center;
  line-height: 30px;
  min-width: 30px;
}
.faq__question span {
  transition: ease 0.3s all;
}
.faq__question svg {
  transition: ease 0.3s all;
  fill: var(--headings, var(--txt));
  stroke: var(--headings, var(--txt));
}
.faq__answear {
  display: none;
  margin-top: 20px;
  margin-bottom: 10px;
  padding: 0 20px;
  /*&.active {
      display: block;
  }*/
}
.faq.numbers.inline .faq__answear {
  padding-left: 50px;
}
.faq-icons line {
  transition: ease 0.3s all;
}
.faq-icons .active .hide {
  opacity: 0;
}
.faq-icons .faq__question {
  display: flex;
}
.faq-icons .faq__question svg {
  margin-top: 3px;
  margin-left: 10px;
  width: 20px;
  height: 20px;
  min-width: 20px;
}
.faq-icons.left.inline.numbers .faq__answear {
  padding-left: 80px;
}
.faq-icons.left.inline .faq__answear {
  padding-left: 30px;
}
.faq-icons.left svg {
  order: -1;
  margin-left: 0;
  margin-right: 10px;
}
.faq-icons.space .faq__question {
  justify-content: space-between;
}
.faq-icons.space .faq__question .question {
  flex: 1;
}
.faq-icons.arrow .active svg {
  transform: rotate(180deg);
  fill: red;
}
.faq-icons.times .active svg {
  transform: rotate(45deg);
}

.svg-icon {
  transition: fill 0.3s ease-in-out;
}
@media (max-width: 35.99em) {
  .svg-icon {
    max-width: 25px;
  }
}

.contact-data {
  display: grid;
  row-gap: 20px;
}
.contact-data__group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-data__section {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.contact-data__section:hover div, .contact-data__section:hover span {
  color: var(--linkHover);
}
.contact-data__section.button:hover div, .contact-data__section.button:hover span {
  color: var(--btnTxtHover);
}
.contact-data__section.button div {
  color: var(--btnTxt);
}
.contact-data__section div {
  transition: ease 0.3s all;
}
.contact-data__section p {
  margin-bottom: 0;
}
.contact-data__section--name {
  display: block;
}
.contact-data__section--name p {
  font-size: 1.3333333333rem;
  font-weight: 600;
}
.contact-data__section--social {
  gap: 10px;
}
.contact-data__section--social .button svg {
  width: 25px;
  height: 25px;
}
.contact-data__section--social svg {
  width: 30px;
  height: 30px;
}
.contact-data__section--social .svg-icon {
  max-width: unset;
  fill: var(--icon);
}
@media (max-width: 35.99em) {
  .contact-data__section--social .svg-icon {
    max-width: 35px;
  }
}
.contact-data__section--social a:hover .svg-icon {
  fill: var(--linkHover);
}
.contact-data__icon {
  margin-right: 15px;
  font-size: 0;
}
.contact-data__icon svg {
  fill: var(--icon);
  width: 30px;
  height: 30px;
}
.contact-data__content--phones, .contact-data__content--emails {
  display: flex;
  flex-direction: column;
}
.contact-data__content a {
  color: var(--link);
}
.contact-data__content a:hover {
  color: var(--linkHover, #674531);
}

.form {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 3.3333333333rem;
  background-color: var(--formBg, transparent);
  border: var(--formBorderSize, 0 solid) var(--formBorder);
  border-radius: var(--formRadius, 0);
}
.form :focus {
  outline: none;
}
.form__group {
  display: flex;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
@media (max-width: 35.99em) {
  .form__group {
    flex-direction: column;
  }
}
.form__group .form__row {
  margin-top: 20px;
  width: 100%;
}
.form__row {
  position: relative;
  margin-top: 20px;
}
.form__input {
  margin-top: 5px;
  border: 0;
  padding: 10px 15px;
  color: var(--inputTxt);
  background-color: var(--inputBg, transparent);
  border: var(--inputBorderSize, 0 solid) var(--inputBorder);
  border-radius: var(--inputRadius, 0);
  text-transform: var(--inputTransform);
  font-weight: var(--inputWeight);
  position: relative;
  font-size: 1.0666666667rem;
  width: 100%;
  transition: ease 0.3s all;
}
.form__input:hover, .form__input:focus {
  color: var(--inputTxtHover);
  background-color: var(--inputBgHover, var(--inputBg, transparent));
  border-color: var(--inputBorderHover);
}
.form__input--checkbox {
  margin: 0 5px 0 0;
}
.form__input--textarea {
  margin-bottom: -8px;
  min-height: 50px;
  resize: none;
}
.form__input--textarea.resize {
  resize: vertical;
}
.form__input:hover ~ .form__label {
  color: var(--inputTxtHover);
}
.form__input:focus ~ .form__label {
  top: -20px;
  font-size: 12px;
  color: var(--labelTxtHover);
  transition: 0.3s;
}
.form__input--has-content {
  color: var(--inputTxtHover);
  background-color: var(--inputBgHover, var(--inputBg, transparent));
  border-color: var(--inputBorderHover);
}
.form__input--has-content:hover ~ .form__label {
  color: var(--labelTxtHover);
}
.form__input--has-content ~ .form__label {
  top: -20px;
  font-size: 12px;
  color: var(--labelTxtHover);
  transition: 0.3s;
}
.form__label {
  position: absolute;
  left: 15px;
  width: 100%;
  top: 15px;
  text-transform: var(--labelTransform);
  font-weight: var(--labelWeight);
  color: var(--labelTxt);
  transition: 0.3s;
  letter-spacing: 0.5px;
  display: block;
  margin-bottom: 10px;
  font-size: 1.0666666667rem;
}
.form .submitSection.align-right .submit {
  text-align: right;
}
.form .submitSection.align-center .submit {
  text-align: center;
}
.form .submitSection.align-justify .submit .button {
  width: 100%;
}
.form .submitSection.inline {
  display: flex;
  -moz-column-gap: 20px;
       column-gap: 20px;
  align-items: center;
  margin-top: 20px;
}
@media (max-width: 35.99em) {
  .form .submitSection.inline {
    flex-direction: column;
    align-items: unset;
    row-gap: 20px;
  }
}
.form .submitSection.inline .form__rodo {
  margin: 0;
}
.form__rodo {
  width: 100%;
  margin-bottom: 2rem;
  margin-top: 1rem;
  align-items: center;
  justify-content: flex-start;
}
.form__rodo:hover .checker {
  border-color: var(--inputBorderHover);
}
.form__rodo label {
  display: grid;
  grid-template-columns: 50px 1fr;
  -moz-column-gap: 20px;
       column-gap: 20px;
  cursor: pointer;
  align-items: center;
}
.form__rodo span {
  font-size: 0.8666666667rem;
  color: var(--formTxt);
}
.form__rodo a {
  color: var(--formTxt);
  text-decoration: underline;
}
.form__rodo input {
  display: none;
}
.form__rodo .checker {
  background-color: var(--inputBg, transparent);
  border: var(--inputBorderSize, 0 solid) var(--inputBorder);
  border-radius: var(--inputRadius, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1/1;
  transition: ease 0.3s all;
}
.form__rodo .checker:after {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='150.657' height='100.657' viewBox='0 0 150.657 100.657'%3E%3Cg transform='translate(-387.672 -497.672)'%3E%3Cline x2='52' y2='52' transform='translate(390.5 540.5)' fill='none' stroke='%23FFF' stroke-width='8'/%3E%3Cline y1='95' x2='95' transform='translate(440.5 500.5)' fill='none' stroke='%23FFF' stroke-width='8'/%3E%3C/g%3E%3C/svg%3E%0A");
  width: 30px;
  height: 30px;
  display: block;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: ease 0.3s opacity;
}
.form__rodo input:checked ~ .checker {
  background: var(--paletteColor1);
  border-color: var(--paletteColor1);
}
.form__rodo input:checked ~ .checker:after {
  opacity: 1;
}
.form__required-info {
  margin-top: 20px;
  font-size: 0.9333333333rem;
  color: var(--formTxt);
}
.form select {
  background-color: unset;
}
.form option {
  margin: 5px;
}
.form [data-validate-for].oc-visible {
  color: #eb2213;
  font-size: 14px;
  margin-top: 10px;
  display: inline-block;
}

#topic {
  font-size: 1.2rem;
}

.close:hover {
  cursor: pointer;
}

.alert h4 {
  margin-top: 15px;
  font-size: 1.3333333333rem;
}

.leaflet-container {
  height: 80vh;
  z-index: 0;
}
.leaflet-container .leaflet-marker-icon svg path[fill="#2d3e72"] {
  transition: ease 0.3s all;
}
.leaflet-container .leaflet-marker-icon svg:hover path[fill="#2d3e72"] {
  fill: #ac7352;
}
.leaflet-container .map__popup-logo {
  height: 200px;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #ac7352;
  border-radius: var(--cardRadius, 0) var(--cardRadius, 0) 0 0;
}
.leaflet-container .map__popup-image {
  height: 200px;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #ac7352;
  background-size: cover;
  border-radius: var(--cardRadius, 0) var(--cardRadius, 0) 0 0;
}
.leaflet-container .map__popup-address {
  font-size: 14px;
}
.leaflet-container .map__popup-content {
  padding: 15px;
}
.leaflet-container .map__popup h4 {
  font-size: 18px;
}
.leaflet-container .map__popup .button {
  display: block;
  margin-top: 20px;
}
.leaflet-container .leaflet-popup-content-wrapper, .leaflet-container .leaflet-popup-tip {
  background: var(--cardBg, white);
}
.leaflet-container .leaflet-popup-content-wrapper {
  border-radius: var(--cardRadius, 0);
}
.leaflet-container .leaflet-popup-content {
  margin: 0;
}
.leaflet-container .leaflet-tooltip {
  padding: 6px 15px;
  background-color: var(--btn2Bg);
  border: var(--btn2Border, 0) solid var(--btn2Border);
  border-radius: var(--btn2Radius, 0);
  color: var(--btn2Txt);
  box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.15);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
@media (max-width: 61.99em) {
  .leaflet-container .leaflet-tooltip {
    width: 250px;
    white-space: normal;
    text-align: center;
  }
}
.leaflet-container .leaflet-tooltip-top:before {
  border-top-color: var(--btn2Bg);
}
.leaflet-container .leaflet-tile-pane {
  filter: grayscale(1);
}
.leaflet-container .overlay {
  z-index: 401;
  mix-blend-mode: color;
}
.leaflet-container .map-place .i {
  background: #fff;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 15px;
  position: relative;
  height: 100%;
  box-shadow: 3px 4px 8px rgba(0, 0, 0, 0.0005);
}
.leaflet-container .map-place .i:after {
  content: "";
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 20px solid #fff;
  position: absolute;
  left: 20px;
  bottom: -20px;
}
.leaflet-container .map-place .i.arrow-bottom-right:after {
  right: 20px;
  left: unset;
}
.leaflet-container .map-place .i.arrow-bottom:after {
  top: 100%;
  bottom: unset;
  left: 50%;
  transform: translateX(-50%);
}
.leaflet-container .map-place .i.arrow-top:after {
  top: -20px;
  bottom: unset;
  border-bottom: 20px solid #fff;
  border-top: 0;
}
.leaflet-container .map-place .i.arrow-top-right:after {
  top: -20px;
  bottom: unset;
  border-bottom: 20px solid #fff;
  border-top: 0;
  right: 20px;
  left: unset;
}
.leaflet-container .map-place .i div {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.leaflet-container .map-place .i p {
  font-size: 12px;
  font-weight: 700;
  color: #333333;
  font-family: "Montserrat", serif;
  margin: 0;
  line-height: 12px;
}
.leaflet-container .map-place .i span {
  font-size: 12px;
  font-weight: 700;
  color: #333333;
  font-family: "Montserrat", serif;
}
.map-box__single {
  display: none;
  position: relative;
  align-items: center;
  grid-template-columns: 1fr 1fr;
  background-color: var(--paletteColor1);
  min-height: 400px;
}
@media (max-width: 74.99em) {
  .map-box__single {
    grid-template-columns: 3fr 2fr;
  }
}
@media (max-width: 47.99em) {
  .map-box__single {
    grid-template-columns: 100%;
  }
}
.map-box__single.active {
  display: grid;
}
.map-box__single:after {
  content: "";
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  left: 20px;
  bottom: 20px;
  position: absolute;
  border: 1px solid var(--hr);
  transition: ease 0.3s all;
  pointer-events: none;
}
.map-box__single--content {
  position: relative;
  z-index: 1;
  padding-top: 50px;
  padding-bottom: 50px;
}
@media (max-width: 74.99em) {
  .map-box__single--content {
    text-align: center;
  }
}
@media (max-width: 47.99em) {
  .map-box__single--content {
    padding-left: 40px;
    padding-right: 40px;
    padding-bottom: 30px;
  }
}
.map-box__single--content *:not(.button) {
  color: #fff;
}
.map-box__single--content h2 {
  font-size: 2.2666666667rem;
}
@media (max-width: 93.74em) {
  .map-box__single--content h2 {
    font-size: 2rem;
  }
}
@media (max-width: 74.99em) {
  .map-box__single--content h2 {
    font-size: 1.8rem;
  }
}
.map-box__single--content .button {
  margin-top: 40px;
  float: right;
}
@media (max-width: 74.99em) {
  .map-box__single--content .button {
    float: unset;
  }
}
.map-box__single--image {
  height: 100%;
}
.map-box__single--image img {
  height: 100%;
  width: 100%;
  pointer-events: none;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.apartament-category:not(.mode2) {
  display: grid;
  grid-template-columns: 3fr 2fr;
  -moz-column-gap: 100px;
       column-gap: 100px;
  align-items: center;
  row-gap: 60px;
}
@media (max-width: 93.74em) {
  .apartament-category:not(.mode2) {
    grid-template-columns: 1fr 1fr;
    -moz-column-gap: 60px;
         column-gap: 60px;
  }
}
@media (max-width: 74.99em) {
  .apartament-category:not(.mode2) {
    -moz-column-gap: 40px;
         column-gap: 40px;
  }
}
@media (max-width: 61.99em) {
  .apartament-category:not(.mode2) {
    grid-template-columns: 100%;
  }
}
.apartament-category.mode2 .apartament-category__content .top {
  padding: 20px 20px;
  flex-direction: column;
  row-gap: 10px;
  transition: ease 0.3s all;
  border-radius: 10px;
  margin-bottom: 20px;
}
.apartament-category.mode2 .apartament-category__content .top:hover {
  background-color: var(--paletteColor5);
}
.apartament-category.mode2 .apartament-category__content .top h3 {
  font-size: 1.3333333333rem;
}
.apartament-category.mode2 .apartament-category__content .top p {
  font-size: 1.3333333333rem;
}
.apartament-category.mode2 .apartament-category__content .top .more {
  color: var(--link);
  text-decoration: underline;
}
.apartament-category.reverse {
  grid-template-columns: 2fr 3fr;
}
@media (max-width: 93.74em) {
  .apartament-category.reverse {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 61.99em) {
  .apartament-category.reverse {
    grid-template-columns: 100%;
  }
}
.apartament-category.reverse .apartament-category__image {
  order: 1;
}
@media (max-width: 61.99em) {
  .apartament-category.reverse .apartament-category__image {
    order: 0;
  }
}
.apartament-category__image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  pointer-events: none;
}
@media (max-width: 93.74em) {
  .apartament-category__image img {
    aspect-ratio: 4/3;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media (max-width: 74.99em) {
  .apartament-category__image img {
    aspect-ratio: 1/1;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media (max-width: 61.99em) {
  .apartament-category__image img {
    aspect-ratio: 4/3;
    max-width: 600px;
    margin: 0 auto;
  }
}
.apartament-category__content .top {
  display: flex;
  -moz-column-gap: 20px;
       column-gap: 20px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
@media (max-width: 61.99em) {
  .apartament-category__content .top {
    flex-direction: column;
    row-gap: 20px;
  }
}
.apartament-category__content .top h3 {
  margin-bottom: 0;
}
.apartament-category__content .top a {
  display: flex;
  -moz-column-gap: 10px;
       column-gap: 10px;
  transition: ease 0.3s all;
}
.apartament-category__content .top a:hover svg {
  stroke: var(--linkHover, var(--txt));
}
.apartament-category__content .top a svg {
  transition: ease 0.3s all;
  stroke: var(--link, var(--txt));
}
@media (max-width: 61.99em) {
  .apartament-category__content .excerpt {
    text-align: center;
  }
}
@media (max-width: 61.99em) {
  .apartament-category__content .near {
    max-width: 600px;
    margin: 0 auto;
  }
}
.apartament-category__content .near-title {
  margin-top: 40px;
  font-weight: 700;
  color: var(--headings);
}
@media (max-width: 61.99em) {
  .apartament-category__content .near-title {
    text-align: center;
  }
}

.pagination {
  margin: 40px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 20px;
       column-gap: 20px;
  row-gap: 20px;
}
.pagination.left {
  justify-content: flex-start;
}
.pagination.right {
  justify-content: flex-end;
}
.pagination.justify {
  justify-content: space-between;
}
.pagination.justify .pagination__numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 20px;
       column-gap: 20px;
  row-gap: 20px;
}
.pagination__item {
  margin: 0;
  padding: 0;
}
.pagination__item:before {
  display: none;
}
.pagination__item.label .pagination__link {
  width: unset;
}
.pagination__link {
  font-weight: 400;
  font-size: 1.3333333333rem;
  color: var(--txt);
  background-color: #fff;
  padding: 10px;
  border-radius: var(--btnRadius, 0);
  width: 46px;
  display: block;
  text-align: center;
  transition: ease 0.3s all;
}
.pagination__link:hover, .pagination__link--active {
  color: var(--btnTxtHover);
  background-color: var(--btnBgHover);
}
.pagination__link:hover svg line, .pagination__link--active svg line {
  stroke: var(--btnTxtHover);
}
.pagination__link--disabled {
  cursor: context-menu !important;
}
.pagination__link--disabled:hover {
  color: var(--txt);
}
.pagination__next svg {
  transform: rotate(270deg);
  width: 20px;
}
.pagination__next svg line {
  stroke: var(--txt);
  stroke-width: 2;
}
.pagination__prev svg {
  transform: rotate(90deg);
  width: 20px;
}
.pagination__prev svg line {
  stroke: var(--txt);
  stroke-width: 2;
}

.leaflet-cluster-anim .leaflet-marker-icon, .leaflet-cluster-anim .leaflet-marker-shadow {
  transition: transform 0.3s ease-out, opacity 0.3s ease-in;
}

.leaflet-cluster-spider-leg {
  /* stroke-dashoffset (duration and function) should match with leaflet-marker-icon transform in order to track it exactly */
  transition: stroke-dashoffset 0.3s ease-out, stroke-opacity 0.3s ease-in;
}

.marker-cluster-small:after {
  background-color: var(--paletteColor1);
  opacity: 0.4;
}

.marker-cluster-small div:after {
  background-color: var(--paletteColor1);
  opacity: 0.7;
}

.marker-cluster-medium:after {
  background-color: var(--paletteColor1);
  opacity: 0.4;
}

.marker-cluster-medium div:after {
  background-color: var(--paletteColor1);
  opacity: 0.7;
}

.marker-cluster-large:after {
  background-color: var(--paletteColor1);
  opacity: 0.4;
}

.marker-cluster-large div:after {
  background-color: var(--paletteColor1);
  opacity: 0.7;
}

/* IE 6-8 fallback colors */
.marker-cluster {
  background-clip: padding-box;
  border-radius: 20px;
  width: 40px !important;
  background-color: unset;
  overflow: hidden;
}
.marker-cluster:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.marker-cluster div {
  width: 30px;
  height: 30px;
  margin-left: 5px;
  margin-top: 5px;
  background-color: unset;
  overflow: hidden;
  text-align: center;
  border-radius: 15px;
  font: 12px "Helvetica Neue", Arial, Helvetica, sans-serif;
}
.marker-cluster div:after {
  content: "";
  width: 30px;
  height: 30px;
  position: absolute;
  top: 5px;
  left: 5px;
  border-radius: 100%;
}

.marker-cluster span {
  line-height: 30px;
  color: #fff;
  z-index: 1;
  position: relative;
}

form.hotresChooser {
  min-width: unset;
  max-width: unset;
}
form.hotresChooser.full .hotresFields {
  width: 100%;
}
form.hotresChooser.align-left {
  justify-content: flex-start;
}
form.hotresChooser.align-right {
  justify-content: flex-end;
}
form.hotresChooser.align-center {
  justify-content: center;
}
form.hotresChooser .hotresGroup {
  display: flex;
}
@media (max-width: 28.125em) {
  form.hotresChooser .hotresGroup {
    flex-direction: column;
    row-gap: 20px;
  }
}
form.hotresChooser .hotresFields {
  display: flex;
  color: var(--inputTxt);
  background-color: transparent;
  border: var(--btn2BorderSize, 0 solid) var(--btn2Border, unset);
  border-radius: var(--inputRadius, 0);
  text-transform: var(--inputTransform);
  font-weight: var(--inputWeight);
  transition: ease 0.3s all;
}
@media (max-width: 61.99em) {
  form.hotresChooser .hotresFields {
    max-width: 400px;
  }
}
form.hotresChooser .hotresFields:hover, form.hotresChooser .hotresFields:focus {
  color: var(--inputTxtHover);
  background-color: var(--btn2BorderHover, var(--btn2Border, transparent));
  border-color: var(--btn2BorderHover);
  border-radius: var(--inputRadius, 0);
}
form.hotresChooser .hotresRangeChooser {
  width: unset;
  min-width: 340px;
  background: unset;
  box-shadow: unset;
  height: 50px;
  flex: 1;
}
@media (max-width: 37.5em) {
  form.hotresChooser .hotresRangeChooser {
    min-width: 260px;
  }
}
form.hotresChooser .hotresRangeChooser:hover {
  background: unset;
}
form.hotresChooser .hotresRangeChooser:hover div {
  color: var(--inputTxtHover) !important;
}
form.hotresChooser .hotresRangeChooser.full {
  width: 100%;
}
form.hotresChooser .hotresRangeChooser .hotresDate {
  height: 50px;
  line-height: 50px;
  padding-left: 50px;
}
@media (max-width: 37.5em) {
  form.hotresChooser .hotresRangeChooser .hotresDate {
    padding-left: 20px;
  }
}
form.hotresChooser .hotresRangeChooser .hotresMonth {
  padding-top: 10px;
}
form.hotresChooser .hotresRangeChooser #hotresArrivalWrap::before {
  top: 18px;
  right: -2px;
}
form.hotresChooser .hotresRangeChooser div {
  transition: ease 0.3s all;
  color: var(--inputTxt) !important;
  top: 0;
}
form.hotresChooser .hotresAdultsChooser {
  width: unset;
  min-width: 100px;
  display: none;
  background: unset;
  border-left: 1px solid var(--inputBorder);
}
form.hotresChooser .hotresAdultsChooser:hover {
  background: unset;
}
form.hotresChooser .hotresAdultsChooser select {
  background: unset;
  transition: ease 0.3s all;
  width: 100%;
  box-shadow: unset !important;
}
form.hotresChooser .hotresAdultsChooser select:hover {
  background: unset !important;
  color: var(--inputTxtHover) !important;
}
form.hotresChooser .hotresAdultsChooser.show {
  display: block;
}
form.hotresChooser .hotresSubmit {
  width: unset;
  padding-left: 20px;
}
@media (max-width: 61.99em) {
  form.hotresChooser .hotresSubmit {
    padding-left: 0;
  }
}
form.hotresChooser .hotresSubmit.right {
  justify-content: flex-end;
}
form.hotresChooser .hotresSubmit.center {
  justify-content: center;
}
form.hotresChooser .hotresSubmit.left {
  justify-content: flex-start;
}
form.hotresChooser .hotresSubmit .button {
  height: 100%;
  width: auto;
}
@media (max-width: 28.125em) {
  form.hotresChooser .hotresSubmit .button {
    width: 100%;
    padding: 15px;
  }
}
form.hotresChooser.button-under .hotresGroup {
  flex-wrap: wrap;
  row-gap: 20px;
}
form.hotresChooser.button-under .hotresSubmit {
  padding-left: 0;
  display: flex;
  width: 100%;
}
form.hotresChooser.button-under .hotresSubmit .button {
  width: unset;
  height: unset;
}
form.hotresChooser.button-under .hotresSubmit .button--full {
  width: 100%;
}
form.hotresChooser.button-under .hotresRangeChooser {
  width: 80%;
}

div.litepicker .container__months .month-item-header .button-previous-month:hover > svg,
div.litepicker .container__months .month-item-header .button-next-month:hover > svg {
  fill: var(--paletteColor1);
}

div.litepicker .day-item:hover {
  box-shadow: inset 0 0 0 1px var(--paletteColor1) !important;
}

div.litepicker .container__days .day-item:hover {
  color: var(--paletteColor1);
}

div.litepicker .container__days .day-item.is-today {
  font-weight: 700;
}

div.litepicker .container__days .day-item.is-in-range,
div.litepicker .container__days .day-item.is-start-date,
div.litepicker .container__days .day-item.is-end-date {
  overflow: hidden;
  position: relative;
  background: transparent;
}
div.litepicker .container__days .day-item.is-in-range:after,
div.litepicker .container__days .day-item.is-start-date:after,
div.litepicker .container__days .day-item.is-end-date:after {
  top: 0;
  left: 0;
  content: "";
  background: var(--paletteColor1);
  opacity: 0.3;
  position: absolute;
  width: 100%;
  height: 100%;
}

.leaflet-control-fullscreen a {
  background: #fff url("/themes/default/assets/images/fullscreen.png") no-repeat 0 0;
  background-size: 26px 52px;
}

.leaflet-touch .leaflet-control-fullscreen a {
  background-position: 2px 2px;
}

.leaflet-fullscreen-on .leaflet-control-fullscreen a {
  background-position: 0 -26px;
}

.leaflet-touch.leaflet-fullscreen-on .leaflet-control-fullscreen a {
  background-position: 2px -24px;
}

/* Do not combine these two rules; IE will break. */
.leaflet-container:-webkit-full-screen {
  width: 100% !important;
  height: 100% !important;
}

.leaflet-container.leaflet-fullscreen-on {
  width: 100% !important;
  height: 100% !important;
}

.leaflet-pseudo-fullscreen {
  position: fixed !important;
  width: 100% !important;
  height: 100% !important;
  top: 0 !important;
  left: 0 !important;
  z-index: 99999;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .leaflet-control-fullscreen a {
    background-image: url("/themes/default/assets/images/fullscreen@2x.png");
  }
}
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.hero.lazy {
  background-size: cover;
  background-position: center;
}
.hero.lazy h1, .hero.lazy h2, .hero.lazy h3, .hero.lazy h4, .hero.lazy h5, .hero.lazy h6, .hero.lazy p, .hero.lazy span, .hero.lazy div {
  color: #fff;
}
.hero--full {
  height: 100vh;
}
@media (max-width: 61.99em) {
  .hero--full {
    height: unset;
  }
}
.hero--center .hero__content {
  text-align: center;
  margin: 0 auto;
}
.hero--right .hero__content {
  text-align: right;
  margin: 0 0 0 auto;
}
.hero:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 50vh;
  background: linear-gradient(0deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
}
@media (max-width: 61.99em) {
  .hero:after {
    display: none;
  }
}
.hero .slider {
  position: absolute;
  width: 100%;
  height: 100%;
}
@media (max-width: 61.99em) {
  .hero .slider {
    position: relative;
    aspect-ratio: 4/3;
  }
}
@media (max-width: 47.99em) {
  .hero .slider {
    aspect-ratio: 1/1;
  }
}
@media (max-width: 61.99em) {
  .hero .slider .slick-list {
    height: 100%;
  }
}
.hero__content {
  position: relative;
  z-index: 1;
}
@media (max-width: 61.99em) {
  .hero__content {
    text-align: center;
  }
}
.hero__content.full {
  width: 100%;
}
@media (max-width: 61.99em) {
  .hero__content form.hotresChooser.align-left {
    justify-content: center;
  }
}
@media (max-width: 61.99em) {
  .hero__content form.hotresChooser.align-left .hotresGroup {
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
}
.hero__content .grid {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
@media (max-width: 61.99em) {
  .hero__content .grid {
    flex-direction: column;
  }
}
.hero__content .grid-column:last-of-type {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  -moz-column-gap: 40px;
       column-gap: 40px;
  align-items: center;
}
@media (max-width: 61.99em) {
  .hero__content .grid-column:last-of-type {
    display: flex;
    flex-direction: column-reverse;
    row-gap: 20px;
    display: none;
  }
}
.hero__content .grid-column:last-of-type:before {
  content: "";
  background: #fff;
  opacity: 0.3;
  width: 100%;
  height: 1px;
}
@media (max-width: 61.99em) {
  .hero__content .grid-column:last-of-type:before {
    display: none;
  }
}
.hero__content .grid-column:last-of-type .contact-data * {
  font-size: 0;
}
.hero__content .grid-column:last-of-type svg {
  fill: #fff;
  width: 25px;
  height: 25px;
}
.hero__content .grid-column:last-of-type p {
  right: 8vw;
  bottom: 100px;
  position: absolute;
  text-align: right;
  grid-column: 1/-1;
  font-size: 1rem;
}
@media (max-width: 93.74em) {
  .hero__content .grid-column:last-of-type p {
    right: 100px;
  }
}
@media (max-width: 74.99em) {
  .hero__content .grid-column:last-of-type p {
    right: 50px;
    bottom: 60px;
  }
}
@media (max-width: 61.99em) {
  .hero__content .grid-column:last-of-type p {
    right: unset;
    bottom: unset;
    position: relative;
  }
}
.hero__content h1 {
  font-weight: 700;
}
.hero__content p {
  font-weight: 300;
  font-size: 1.6rem;
  color: var(--headings);
}
.hero__content p strong {
  font-weight: 700;
  color: var(--paletteColor1);
}

@media (max-width: 74.99em) {
  .offer__content .txtimg img {
    aspect-ratio: 1/1;
  }
}
@media (max-width: 61.99em) {
  .offer__content .txtimg img {
    aspect-ratio: 4/3;
    max-width: 600px;
    margin: 0 auto;
  }
}
@media (max-width: 106.25em) {
  .offer__content .icons-set {
    -moz-column-gap: 0;
         column-gap: 0;
  }
}
@media (max-width: 93.74em) {
  .offer__content .icons-set {
    grid-template-columns: 1fr 1fr;
    -moz-column-gap: 50px;
         column-gap: 50px;
  }
}
@media (max-width: 61.99em) {
  .offer__content .icons-set {
    grid-template-columns: 100%;
    row-gap: 20px;
    max-width: 600px;
    margin: 0 auto;
  }
}
.offer__content .icons-set a {
  background-color: var(--cardBg);
  border-radius: var(--cardRadius, 0);
  border: var(--cardBorderSize, 0 solid) var(--cardBorder);
  padding: var(--cardPadding);
  transition: ease 0.3s all;
}
@media (max-width: 93.74em) {
  .offer__content .icons-set a {
    padding: 30px;
  }
}
@media (max-width: 93.74em) {
  .offer__content .icons-set a:last-of-type {
    grid-column: 1/-1;
  }
}
.offer__content .icons-set a:hover {
  background-color: var(--cardBgHover);
  border-color: var(--cardBorderHover, var(--cardBorder));
}
.offer__content .icons-set__item {
  align-items: unset;
}
.offer__content .icons-set__item-content {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
  flex: 1;
}
.offer__content .icons-set__item-title {
  font-weight: 700;
  color: var(--cardHeadings, var(--cardTxt));
  font-size: 1.2rem;
}
.offer__content .icons-set__item-text {
  flex: 1;
  margin: 0;
}
.offer__content .icons-set__item-text p {
  color: var(--cardTxt);
  font-size: 1rem;
}
.offer__content .icons-set__item .button {
  margin: 0;
}
.offer-meeting__content {
  display: flex;
  -moz-column-gap: 40px;
       column-gap: 40px;
  row-gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}
.offer-meeting__content p {
  font-weight: 200;
  font-size: 1.3333333333rem;
  color: var(--headings);
}
.offer-meeting__content .contact-data {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
.offer-meeting__content .contact-data svg {
  width: 25px;
  height: 25px;
}

.about-apartments .grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  -moz-column-gap: 100px;
  column-gap: 100px;
  row-gap: 60px;
  align-items: center;
}
@media (max-width: 93.74em) {
  .about-apartments .grid {
    grid-template-columns: 1fr 1fr;
    -moz-column-gap: 60px;
         column-gap: 60px;
  }
}
@media (max-width: 74.99em) {
  .about-apartments .grid {
    -moz-column-gap: 40px;
         column-gap: 40px;
  }
}
@media (max-width: 61.99em) {
  .about-apartments .grid {
    text-align: center;
    grid-template-columns: 100%;
  }
}
.about-apartments .icons-set {
  row-gap: 0;
  -moz-column-gap: 0;
       column-gap: 0;
}
@media (max-width: 61.99em) {
  .about-apartments .icons-set {
    grid-template-columns: repeat(6, auto);
  }
}
@media (max-width: 46.25em) {
  .about-apartments .icons-set {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 23.125em) {
  .about-apartments .icons-set {
    grid-template-columns: repeat(2, 1fr);
  }
}
.about-apartments .icons-set__item {
  padding: 20px 10px;
  border-radius: 10px;
}
.about-apartments .icons-set__item:hover {
  background-color: var(--paletteColor5);
}
.about-apartments .icons-set__item-title {
  font-size: 1rem;
  font-weight: 400;
  max-width: 100px;
}
@media (max-width: 47.99em) {
  .about-apartments .icons-set__item svg {
    width: 50px;
  }
}
.about-apartments .icons-set__item p {
  color: var(--headings, var(--txt));
}
.about-apartments .icons-set > a {
  grid-area: 2/3/3/5;
}
@media (max-width: 61.99em) {
  .about-apartments .icons-set > a {
    grid-area: unset;
    grid-column: 1/-1;
  }
}
.about-apartments .icons-set > a .icons-set__item-content {
  display: flex;
  flex-direction: column-reverse;
  row-gap: 20px;
}
.about-apartments .icons-set > a .icons-set__item-content p {
  font-weight: 700;
  max-width: unset;
  font-size: 1.0666666667rem;
}
@media (max-width: 47.99em) {
  .about-residential .apartments-list {
    max-width: 500px;
    margin: 0 auto;
    row-gap: 40px;
  }
}
.about-residential .cards-more a {
  font-weight: 500;
  text-decoration: underline;
  font-size: 1.0666666667rem;
}
.about-location .about__content > .grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  -moz-column-gap: 100px;
  column-gap: 100px;
  row-gap: 60px;
  align-items: center;
}
.about-location .about__content > .grid h2 {
  text-align: center;
}
@media (max-width: 93.74em) {
  .about-location .about__content > .grid {
    grid-template-columns: 1fr 1fr;
    -moz-column-gap: 60px;
         column-gap: 60px;
  }
}
@media (max-width: 74.99em) {
  .about-location .about__content > .grid {
    -moz-column-gap: 40px;
         column-gap: 40px;
  }
}
@media (max-width: 61.99em) {
  .about-location .about__content > .grid {
    text-align: center;
    grid-template-columns: 100%;
  }
}
.about-location .about__content > .grid .grid {
  -moz-column-gap: 0;
       column-gap: 0;
  row-gap: 0;
}
@media (min-width: 62em) and (max-width: 101.25em) {
  .about-location .about__content > .grid .grid {
    grid-template-columns: 100%;
  }
}
.about-location .about__content .location__insert {
  border-radius: 20px;
}
@media (max-width: 61.99em) {
  .about-location .about__content .location__insert {
    height: auto !important;
    aspect-ratio: 4/3;
  }
}
.about-location .about__content h2 {
  font-size: 1.4666666667rem;
  margin-bottom: 30px;
}
.about-location .about__content h2 strong {
  color: var(--paletteColor1);
  font-weight: 700;
}
.about-location .about__content .more {
  text-align: center;
  font-size: 0.9333333333rem;
}
.about-location .icons-set {
  row-gap: 0;
  -moz-column-gap: 0;
       column-gap: 0;
}
@media (max-width: 61.99em) {
  .about-location .icons-set {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 23.125em) {
  .about-location .icons-set {
    grid-template-columns: repeat(2, 1fr);
  }
}
.about-location .icons-set__item {
  padding: 20px 10px;
  border-radius: 10px;
}
.about-location .icons-set__item:hover {
  background-color: var(--paletteColor5);
}
.about-location .icons-set__item-title {
  font-size: 1rem;
  font-weight: 400;
  max-width: 100px;
}
@media (max-width: 47.99em) {
  .about-location .icons-set__item svg {
    width: 50px;
  }
}
.about-location .icons-set__item p {
  color: var(--headings, var(--txt));
}
.about-location .icons-set > a {
  grid-area: 2/3/3/5;
}
@media (max-width: 61.99em) {
  .about-location .icons-set > a {
    grid-area: unset;
    grid-column: 1/-1;
  }
}
.about-location .icons-set > a .icons-set__item-content {
  display: flex;
  flex-direction: column-reverse;
  row-gap: 20px;
}
.about-location .icons-set > a .icons-set__item-content p {
  font-weight: 700;
  max-width: unset;
  font-size: 1.0666666667rem;
}
.about-szczecin {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 90vh;
}
@media (max-width: 74.99em) {
  .about-szczecin {
    min-height: 40vh;
  }
}
.about-szczecin__content {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-bottom: -50px;
}
@media (max-width: 35.99em) {
  .about-szczecin__content {
    margin-bottom: -20px;
  }
}
.about-szczecin__content h2 {
  display: flex;
  flex-direction: column;
  font-size: 5.4vw;
  font-weight: 100;
  text-align: right;
  row-gap: 40px;
}
@media (max-width: 74.99em) {
  .about-szczecin__content h2 {
    flex-direction: row-reverse;
    font-size: 3.7vw;
    line-height: 3.9vw;
    justify-content: space-between;
    -moz-column-gap: 40px;
         column-gap: 40px;
  }
}
@media (max-width: 61.99em) {
  .about-szczecin__content h2 {
    flex-direction: column;
    text-align: center;
    row-gap: 10px;
    font-size: 2rem;
    line-height: 2rem;
  }
}
.about-szczecin__content h2 strong {
  text-align: center;
  font-size: 11vw;
  color: var(--paletteColor1);
}
@media (max-width: 74.99em) {
  .about-szczecin__content h2 strong {
    font-size: 8vw;
    margin-top: 10px;
  }
}
@media (max-width: 61.99em) {
  .about-szczecin__content h2 strong {
    font-size: 4rem;
    line-height: 4rem;
  }
}
.about-szczecin__content p {
  text-align: right;
  position: absolute;
  top: 7vw;
  right: 8vw;
}
@media (max-width: 74.99em) {
  .about-szczecin__content p {
    position: relative;
    top: -20px;
    right: unset;
  }
}
@media (max-width: 61.99em) {
  .about-szczecin__content p {
    margin-top: 30px;
    top: unset;
    text-align: center;
  }
}
.about-szczecin__content p a {
  color: #fff;
  font-weight: 300;
}
.about-szczecin__image {
  top: 0;
  left: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center top;
}
.about-szczecin__image:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 50vh;
  background: linear-gradient(0deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
}
@media (max-width: 74.99em) {
  .about-szczecin__image:after {
    height: 35vh;
  }
}

.blog-top {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 90vh;
}
@media (max-width: 74.99em) {
  .blog-top {
    min-height: 40vh;
  }
}
.blog-top__content {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-bottom: -100px;
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 50px;
       column-gap: 50px;
}
@media (max-width: 74.99em) {
  .blog-top__content {
    justify-content: space-between;
  }
}
@media (max-width: 61.99em) {
  .blog-top__content {
    flex-direction: column;
    margin-bottom: -50px;
  }
}
@media (max-width: 35.99em) {
  .blog-top__content {
    margin-bottom: 0;
  }
}
.blog-top__content h2 {
  text-align: center;
  font-size: 8vw;
  color: var(--paletteColor1);
}
@media (max-width: 61.99em) {
  .blog-top__content h2 {
    font-size: 4rem;
    line-height: 4rem;
  }
}
.blog-top__content p {
  font-size: 2.7vw;
  color: var(--headings);
  font-weight: 100;
  max-width: 30vw;
  line-height: 2.9vw;
}
@media (max-width: 74.99em) {
  .blog-top__content p {
    text-align: right;
    max-width: unset;
  }
}
@media (max-width: 61.99em) {
  .blog-top__content p {
    font-size: 2rem;
    line-height: 2rem;
    text-align: center;
  }
}
.blog-top__image {
  top: 0;
  left: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}
.blog-top__image:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 50vh;
  background: linear-gradient(0deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
}
@media (max-width: 74.99em) {
  .blog-top__image:after {
    height: 35vh;
  }
}
.blog-list .cards-more a {
  font-weight: 500;
  text-decoration: underline;
  font-size: 1.0666666667rem;
}

.error-page {
  align-items: center;
}
.error-page .button {
  margin-top: 40px;
}
