@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;
}

@charset "UTF-8";
/* 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;
  }
}
body.compensate-for-scrollbar {
  overflow: hidden;
}

.fancybox-active {
  height: auto;
}

.fancybox-is-hidden {
  left: -9999px;
  margin: 0;
  position: absolute !important;
  top: -9999px;
  visibility: hidden;
}

.fancybox-container {
  -webkit-backface-visibility: hidden;
  height: 100%;
  left: 0;
  outline: none;
  position: fixed;
  -webkit-tap-highlight-color: transparent;
  top: 0;
  touch-action: manipulation;
  transform: translateZ(0);
  width: 100%;
  z-index: 99992;
}

.fancybox-container * {
  box-sizing: border-box;
}

.fancybox-outer,
.fancybox-inner,
.fancybox-bg,
.fancybox-stage {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.fancybox-outer {
  -webkit-overflow-scrolling: touch;
  overflow-y: auto;
}

.fancybox-bg {
  background: rgb(30, 30, 30);
  opacity: 0;
  transition-duration: inherit;
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.47, 0, 0.74, 0.71);
}

.fancybox-is-open .fancybox-bg {
  opacity: 0.9;
  transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
}

.fancybox-infobar,
.fancybox-toolbar,
.fancybox-caption,
.fancybox-navigation .fancybox-button {
  direction: ltr;
  opacity: 0;
  position: absolute;
  transition: opacity 0.25s ease, visibility 0s ease 0.25s;
  visibility: hidden;
  z-index: 99997;
}

.fancybox-show-infobar .fancybox-infobar,
.fancybox-show-toolbar .fancybox-toolbar,
.fancybox-show-caption .fancybox-caption,
.fancybox-show-nav .fancybox-navigation .fancybox-button {
  opacity: 1;
  transition: opacity 0.25s ease 0s, visibility 0s ease 0s;
  visibility: visible;
}

.fancybox-infobar {
  color: #ccc;
  font-size: 13px;
  -webkit-font-smoothing: subpixel-antialiased;
  height: 44px;
  left: 0;
  line-height: 44px;
  min-width: 44px;
  mix-blend-mode: difference;
  padding: 0 10px;
  pointer-events: none;
  top: 0;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.fancybox-toolbar {
  right: 0;
  top: 0;
}

.fancybox-stage {
  direction: ltr;
  overflow: visible;
  transform: translateZ(0);
  z-index: 99994;
}

.fancybox-is-open .fancybox-stage {
  overflow: hidden;
}

.fancybox-slide {
  -webkit-backface-visibility: hidden;
  /* Using without prefix would break IE11 */
  display: none;
  height: 100%;
  left: 0;
  outline: none;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 44px;
  position: absolute;
  text-align: center;
  top: 0;
  transition-property: transform, opacity;
  white-space: normal;
  width: 100%;
  z-index: 99994;
}

.fancybox-slide::before {
  content: "";
  display: inline-block;
  font-size: 0;
  height: 100%;
  vertical-align: middle;
  width: 0;
}

.fancybox-is-sliding .fancybox-slide,
.fancybox-slide--previous,
.fancybox-slide--current,
.fancybox-slide--next {
  display: block;
}

.fancybox-slide--image {
  overflow: hidden;
  padding: 44px 0;
}

.fancybox-slide--image::before {
  display: none;
}

.fancybox-slide--html {
  padding: 6px;
}

.fancybox-content {
  background: #fff;
  display: inline-block;
  margin: 0;
  max-width: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 44px;
  position: relative;
  text-align: left;
  vertical-align: middle;
}

.fancybox-slide--image .fancybox-content {
  animation-timing-function: cubic-bezier(0.5, 0, 0.14, 1);
  -webkit-backface-visibility: hidden;
  background: transparent;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  left: 0;
  max-width: none;
  overflow: visible;
  padding: 0;
  position: absolute;
  top: 0;
  transform-origin: top left;
  transition-property: transform, opacity;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  z-index: 99995;
}

.fancybox-can-zoomOut .fancybox-content {
  cursor: zoom-out;
}

.fancybox-can-zoomIn .fancybox-content {
  cursor: zoom-in;
}

.fancybox-can-swipe .fancybox-content,
.fancybox-can-pan .fancybox-content {
  cursor: grab;
}

.fancybox-is-grabbing .fancybox-content {
  cursor: grabbing;
}

.fancybox-container [data-selectable=true] {
  cursor: text;
}

.fancybox-image,
.fancybox-spaceball {
  background: transparent;
  border: 0;
  height: 100%;
  left: 0;
  margin: 0;
  max-height: none;
  max-width: none;
  padding: 0;
  position: absolute;
  top: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  width: 100%;
}

.fancybox-spaceball {
  z-index: 1;
}

.fancybox-slide--video .fancybox-content,
.fancybox-slide--map .fancybox-content,
.fancybox-slide--pdf .fancybox-content,
.fancybox-slide--iframe .fancybox-content {
  height: 100%;
  overflow: visible;
  padding: 0;
  width: 100%;
}

.fancybox-slide--video .fancybox-content {
  background: #000;
}

.fancybox-slide--map .fancybox-content {
  background: #e5e3df;
}

.fancybox-slide--iframe .fancybox-content {
  background: #fff;
}

.fancybox-video,
.fancybox-iframe {
  background: transparent;
  border: 0;
  display: block;
  height: 100%;
  margin: 0;
  overflow: hidden;
  padding: 0;
  width: 100%;
}

/* Fix iOS */
.fancybox-iframe {
  left: 0;
  position: absolute;
  top: 0;
}

.fancybox-error {
  background: #fff;
  cursor: default;
  max-width: 400px;
  padding: 40px;
  width: 100%;
}

.fancybox-error p {
  color: #444;
  font-size: 16px;
  line-height: 20px;
  margin: 0;
  padding: 0;
}

/* Buttons */
.fancybox-button {
  background: rgba(30, 30, 30, 0.6);
  border: 0;
  border-radius: 0;
  box-shadow: none;
  cursor: pointer;
  display: inline-block;
  height: 44px;
  margin: 0;
  padding: 10px;
  position: relative;
  transition: color 0.2s;
  vertical-align: top;
  visibility: inherit;
  width: 44px;
}

.fancybox-button,
.fancybox-button:visited,
.fancybox-button:link {
  color: #ccc;
}

.fancybox-button:hover {
  color: #fff;
}

.fancybox-button:focus {
  outline: none;
}

.fancybox-button.fancybox-focus {
  outline: 1px dotted;
}

.fancybox-button[disabled],
.fancybox-button[disabled]:hover {
  color: #888;
  cursor: default;
  outline: none;
}

/* Fix IE11 */
.fancybox-button div {
  height: 100%;
}

.fancybox-button svg {
  display: block;
  height: 100%;
  overflow: visible;
  position: relative;
  width: 100%;
}

.fancybox-button svg path {
  fill: currentColor;
  stroke-width: 0;
}

.fancybox-button--play svg:nth-child(2),
.fancybox-button--fsenter svg:nth-child(2) {
  display: none;
}

.fancybox-button--pause svg:nth-child(1),
.fancybox-button--fsexit svg:nth-child(1) {
  display: none;
}

.fancybox-progress {
  background: #ff5268;
  height: 2px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transform: scaleX(0);
  transform-origin: 0;
  transition-property: transform;
  transition-timing-function: linear;
  z-index: 99998;
}

/* Close button on the top right corner of html content */
.fancybox-close-small {
  background: transparent;
  border: 0;
  border-radius: 0;
  color: #ccc;
  cursor: pointer;
  opacity: 0.8;
  padding: 8px;
  position: absolute;
  right: -12px;
  top: -44px;
  z-index: 401;
}

.fancybox-close-small:hover {
  color: #fff;
  opacity: 1;
}

.fancybox-slide--html .fancybox-close-small {
  color: currentColor;
  padding: 10px;
  right: 0;
  top: 0;
}

.fancybox-slide--image.fancybox-is-scaling .fancybox-content {
  overflow: hidden;
}

.fancybox-is-scaling .fancybox-close-small,
.fancybox-is-zoomable.fancybox-can-pan .fancybox-close-small {
  display: none;
}

/* Navigation arrows */
.fancybox-navigation .fancybox-button {
  background-clip: content-box;
  height: 100px;
  opacity: 0;
  position: absolute;
  top: calc(50% - 50px);
  width: 70px;
}

.fancybox-navigation .fancybox-button div {
  padding: 7px;
}

.fancybox-navigation .fancybox-button--arrow_left {
  left: 0;
  left: env(safe-area-inset-left);
  padding: 31px 26px 31px 6px;
}

.fancybox-navigation .fancybox-button--arrow_right {
  padding: 31px 6px 31px 26px;
  right: 0;
  right: env(safe-area-inset-right);
}

/* Caption */
.fancybox-caption {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.15) 65%, rgba(0, 0, 0, 0.075) 75.5%, rgba(0, 0, 0, 0.037) 82.85%, rgba(0, 0, 0, 0.019) 88%, rgba(0, 0, 0, 0) 100%);
  bottom: 0;
  color: #eee;
  font-size: 14px;
  font-weight: 400;
  left: 0;
  line-height: 1.5;
  padding: 75px 44px 25px 44px;
  pointer-events: none;
  right: 0;
  text-align: center;
  z-index: 99996;
}

@supports (padding: max(0px)) {
  .fancybox-caption {
    padding: 75px max(44px, env(safe-area-inset-right)) max(25px, env(safe-area-inset-bottom)) max(44px, env(safe-area-inset-left));
  }
}
.fancybox-caption--separate {
  margin-top: -50px;
}

.fancybox-caption__body {
  max-height: 50vh;
  overflow: auto;
  pointer-events: all;
}

.fancybox-caption a,
.fancybox-caption a:link,
.fancybox-caption a:visited {
  color: #ccc;
  text-decoration: none;
}

.fancybox-caption a:hover {
  color: #fff;
  text-decoration: underline;
}

/* Loading indicator */
.fancybox-loading {
  animation: fancybox-rotate 1s linear infinite;
  background: transparent;
  border: 4px solid #888;
  border-bottom-color: #fff;
  border-radius: 50%;
  height: 50px;
  left: 50%;
  margin: -25px 0 0 -25px;
  opacity: 0.7;
  padding: 0;
  position: absolute;
  top: 50%;
  width: 50px;
  z-index: 99999;
}

@keyframes fancybox-rotate {
  100% {
    transform: rotate(360deg);
  }
}
/* Transition effects */
.fancybox-animated {
  transition-timing-function: cubic-bezier(0, 0, 0.25, 1);
}

/* transitionEffect: slide */
.fancybox-fx-slide.fancybox-slide--previous {
  opacity: 0;
  transform: translate3d(-100%, 0, 0);
}

.fancybox-fx-slide.fancybox-slide--next {
  opacity: 0;
  transform: translate3d(100%, 0, 0);
}

.fancybox-fx-slide.fancybox-slide--current {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* transitionEffect: fade */
.fancybox-fx-fade.fancybox-slide--previous,
.fancybox-fx-fade.fancybox-slide--next {
  opacity: 0;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.fancybox-fx-fade.fancybox-slide--current {
  opacity: 1;
}

/* transitionEffect: zoom-in-out */
.fancybox-fx-zoom-in-out.fancybox-slide--previous {
  opacity: 0;
  transform: scale3d(1.5, 1.5, 1.5);
}

.fancybox-fx-zoom-in-out.fancybox-slide--next {
  opacity: 0;
  transform: scale3d(0.5, 0.5, 0.5);
}

.fancybox-fx-zoom-in-out.fancybox-slide--current {
  opacity: 1;
  transform: scale3d(1, 1, 1);
}

/* transitionEffect: rotate */
.fancybox-fx-rotate.fancybox-slide--previous {
  opacity: 0;
  transform: rotate(-360deg);
}

.fancybox-fx-rotate.fancybox-slide--next {
  opacity: 0;
  transform: rotate(360deg);
}

.fancybox-fx-rotate.fancybox-slide--current {
  opacity: 1;
  transform: rotate(0deg);
}

/* transitionEffect: circular */
.fancybox-fx-circular.fancybox-slide--previous {
  opacity: 0;
  transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
}

.fancybox-fx-circular.fancybox-slide--next {
  opacity: 0;
  transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
}

.fancybox-fx-circular.fancybox-slide--current {
  opacity: 1;
  transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
}

/* transitionEffect: tube */
.fancybox-fx-tube.fancybox-slide--previous {
  transform: translate3d(-100%, 0, 0) scale(0.1) skew(-10deg);
}

.fancybox-fx-tube.fancybox-slide--next {
  transform: translate3d(100%, 0, 0) scale(0.1) skew(10deg);
}

.fancybox-fx-tube.fancybox-slide--current {
  transform: translate3d(0, 0, 0) scale(1);
}

/* Styling for Small-Screen Devices */
@media all and (max-height: 576px) {
  .fancybox-slide {
    padding-left: 6px;
    padding-right: 6px;
  }
  .fancybox-slide--image {
    padding: 6px 0;
  }
  .fancybox-close-small {
    right: -6px;
  }
  .fancybox-slide--image .fancybox-close-small {
    background: #4e4e4e;
    color: #f2f4f6;
    height: 36px;
    opacity: 1;
    padding: 6px;
    right: 0;
    top: 0;
    width: 36px;
  }
  .fancybox-caption {
    padding-left: 12px;
    padding-right: 12px;
  }
  @supports (padding: max(0px)) {
    .fancybox-caption {
      padding-left: max(12px, env(safe-area-inset-left));
      padding-right: max(12px, env(safe-area-inset-right));
    }
  }
}
/* Share */
.fancybox-share {
  background: #f4f4f4;
  border-radius: 3px;
  max-width: 90%;
  padding: 30px;
  text-align: center;
}

.fancybox-share h1 {
  color: #222;
  font-size: 35px;
  font-weight: 700;
  margin: 0 0 20px 0;
}

.fancybox-share p {
  margin: 0;
  padding: 0;
}

.fancybox-share__button {
  border: 0;
  border-radius: 3px;
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  line-height: 40px;
  margin: 0 5px 10px 5px;
  min-width: 130px;
  padding: 0 15px;
  text-decoration: none;
  transition: all 0.2s;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  white-space: nowrap;
}

.fancybox-share__button:visited,
.fancybox-share__button:link {
  color: #fff;
}

.fancybox-share__button:hover {
  text-decoration: none;
}

.fancybox-share__button--fb {
  background: #3b5998;
}

.fancybox-share__button--fb:hover {
  background: #344e86;
}

.fancybox-share__button--pt {
  background: #bd081d;
}

.fancybox-share__button--pt:hover {
  background: #aa0719;
}

.fancybox-share__button--tw {
  background: #1da1f2;
}

.fancybox-share__button--tw:hover {
  background: #0d95e8;
}

.fancybox-share__button svg {
  height: 25px;
  margin-right: 7px;
  position: relative;
  top: -1px;
  vertical-align: middle;
  width: 25px;
}

.fancybox-share__button svg path {
  fill: #fff;
}

.fancybox-share__input {
  background: transparent;
  border: 0;
  border-bottom: 1px solid #d7d7d7;
  border-radius: 0;
  color: #5d5b5b;
  font-size: 14px;
  margin: 10px 0 0 0;
  outline: none;
  padding: 10px 15px;
  width: 100%;
}

/* Thumbs */
.fancybox-thumbs {
  background: #ddd;
  bottom: 0;
  display: none;
  margin: 0;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  padding: 2px 2px 4px 2px;
  position: absolute;
  right: 0;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  top: 0;
  width: 212px;
  z-index: 99995;
}

.fancybox-thumbs-x {
  overflow-x: auto;
  overflow-y: hidden;
}

.fancybox-show-thumbs .fancybox-thumbs {
  display: block;
}

.fancybox-show-thumbs .fancybox-inner {
  right: 212px;
}

.fancybox-thumbs__list {
  font-size: 0;
  height: 100%;
  list-style: none;
  margin: 0;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 0;
  position: absolute;
  position: relative;
  white-space: nowrap;
  width: 100%;
}

.fancybox-thumbs-x .fancybox-thumbs__list {
  overflow: hidden;
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar {
  width: 7px;
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-track {
  background: #fff;
  border-radius: 10px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-thumb {
  background: #2a2a2a;
  border-radius: 10px;
}

.fancybox-thumbs__list a {
  backface-visibility: hidden;
  background-color: rgba(0, 0, 0, 0.1);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
  float: left;
  height: 75px;
  margin: 2px;
  max-height: calc(100% - 8px);
  max-width: calc(50% - 4px);
  outline: none;
  overflow: hidden;
  padding: 0;
  position: relative;
  -webkit-tap-highlight-color: transparent;
  width: 100px;
}

.fancybox-thumbs__list a::before {
  border: 6px solid #ff5268;
  bottom: 0;
  content: "";
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 99991;
}

.fancybox-thumbs__list a:focus::before {
  opacity: 0.5;
}

.fancybox-thumbs__list a.fancybox-thumbs-active::before {
  opacity: 1;
}

/* Styling for Small-Screen Devices */
@media all and (max-width: 576px) {
  .fancybox-thumbs {
    width: 110px;
  }
  .fancybox-show-thumbs .fancybox-inner {
    right: 110px;
  }
  .fancybox-thumbs__list a {
    max-width: calc(100% - 10px);
  }
}
/* 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: 16px;
  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-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.5rem;
  margin-bottom: 24px;
  color: var(--h1, var(--headings, var(--txt)));
}

h2 {
  font-size: 1.9230769231rem;
  margin-bottom: 18.4615384615px;
  color: var(--h2, var(--headings, var(--txt)));
}
@media (max-width: 74.99em) {
  h2 {
    font-size: 1.7857142857rem;
  }
}
@media (max-width: 61.99em) {
  h2 {
    font-size: 1.6666666667rem;
  }
}
@media (max-width: 35.99em) {
  h2 {
    font-size: 1.5625rem;
  }
}

h3 {
  font-size: 1.6666666667rem;
  margin-bottom: 16px;
  color: var(--h3, var(--headings, var(--txt)));
}

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

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

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

p, div {
  font-size: 0.9375rem;
  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.25rem;
  position: relative;
}
ul li::before {
  content: "";
  position: absolute;
  top: 0.3125rem;
  left: 0;
  width: 0.875rem;
  height: 0.875rem;
  display: inline-block;
  border-radius: var(--btnRadius, 0);
  background-color: var(--listDot, var(--paletteColor1));
}
ul ul li {
  list-style: disc;
}

ol li {
  list-style: decimal;
}

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

blockquote {
  margin: 30px 0;
  font-size: 1.4375rem;
  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: 0.9375rem;
  border: 1px solid #DADADA;
  text-align: left;
}

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

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

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.78125rem;
  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%;
}

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

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;
  }
}
.site-wrapper.subpage {
  background-size: contain;
  background-position: top center;
  background-repeat: no-repeat;
}

form:not(.form-offer) input[type=text],
form:not(.form-offer) input[type=tel],
form:not(.form-offer) input[type=email],
form:not(.form-offer) input[type=password],
form:not(.form-offer) input[type=number] {
  width: 100%;
  border: 1px solid var(--bg1);
  border-radius: 0;
  font-family: var(--btnFont, initial);
  padding: 10px 20px;
}

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

.divisio {
  height: 1px;
  width: 44px;
  display: inline-block;
  content: "";
  background-color: #BA967C;
  margin: 5px 15px;
}

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

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

.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: 5vw;
  margin-right: 5vw;
}
@media (max-width: 93.74em) {
  .margin-container {
    margin-left: 50px;
    margin-right: 50px;
  }
}
@media (max-width: 74.99em) {
  .margin-container {
    margin-left: 35px;
    margin-right: 35px;
  }
}
@media (max-width: 47.99em) {
  .margin-container {
    margin-left: 20px;
    margin-right: 20px;
  }
}
@media (max-width: 35.99em) {
  .margin-container {
    margin-left: 15px;
    margin-right: 15px;
  }
}
.margin-container-left {
  margin-left: 5vw;
}
@media (max-width: 93.74em) {
  .margin-container-left {
    margin-left: 50px;
  }
}
@media (max-width: 74.99em) {
  .margin-container-left {
    margin-left: 35px;
  }
}
@media (max-width: 47.99em) {
  .margin-container-left {
    margin-left: 20px;
  }
}
@media (max-width: 35.99em) {
  .margin-container-left {
    margin-left: 15px;
  }
}
.margin-container-right {
  margin-right: 5vw;
}
@media (max-width: 93.74em) {
  .margin-container-right {
    margin-right: 50px;
  }
}
@media (max-width: 74.99em) {
  .margin-container-right {
    margin-right: 35px;
  }
}
@media (max-width: 47.99em) {
  .margin-container-right {
    margin-right: 20px;
  }
}
@media (max-width: 35.99em) {
  .margin-container-right {
    margin-right: 15px;
  }
}

.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;
  }
}

.showMob {
  display: none;
}
@media (max-width: 61.99em) {
  .showMob {
    display: block;
  }
}

@media (max-width: 61.99em) {
  .hideMob {
    display: none;
  }
}
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.75rem;
  margin-bottom: 5px;
}
.input__label--checkbox {
  font-size: 0.6875rem;
  line-height: 1rem;
}
.input__item {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  border: none;
  outline: none;
  padding: 5px 10px;
  font-size: 0.875rem;
}
.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.125rem;
}

.header {
  display: flex;
  align-self: flex-end;
}
.header__menuList {
  display: grid;
  grid-template-columns: repeat(7, auto);
  gap: 2px;
}
.header__menuList li {
  list-style: none;
  padding-left: 0;
  text-align: center;
}
.header__menuList li::before {
  content: none;
}
.header__menuLink {
  color: var(--headerLink);
  background-color: var(--bg1);
  width: 100%;
  padding: 6px;
  display: block;
  transition: all 0.2s;
}
.header__menuLink:hover {
  background-color: var(--paletteColor2);
  color: var(--paletteColor1);
}
.header__logo img {
  height: auto;
  min-width: 100px;
}
.header__top {
  position: absolute;
  top: -10px;
  right: 0;
  display: flex;
}
@media (max-width: 61.99em) {
  .header__top {
    top: 0px;
    right: 80px;
  }
}
@media (max-width: 61.99em) {
  .header__top {
    flex-direction: column;
  }
}
.header__top .button {
  white-space: nowrap;
  border: 0;
}
@media (max-width: 61.99em) {
  .header__top .button.newsletter {
    display: none;
  }
}
.header--subpage {
  justify-content: space-between;
  width: 100%;
  padding-left: 5vw;
}
.header--subpage .header__top {
  top: 20px;
}
@media (max-width: 74.99em) {
  .header--subpage .header__top {
    top: 10px;
  }
}
@media (max-width: 61.99em) {
  .header--subpage .header__top {
    top: 115px;
    right: 10px;
  }
}
@media (max-width: 31.25em) {
  .header--subpage .header__top {
    top: 45px;
    right: 70px;
  }
}
.header--subpage img {
  width: 115px;
  margin-top: 20px;
}
.header--subpage .header__right {
  width: 67%;
}
.header--subpage .header__menuList {
  margin-top: 60px;
}
@media (max-width: 93.74em) {
  .header--subpage {
    padding-left: 3vw;
  }
  .header--subpage .header__right {
    width: 66.5%;
  }
}
@media (max-width: 74.99em) {
  .header--subpage {
    position: relative;
  }
  .header--subpage .header__right {
    width: 85%;
  }
  .header--subpage .header__menuList {
    margin-top: 40px;
  }
}
@media (max-width: 61.99em) {
  .header--subpage .header__hamburger {
    margin-top: 65px;
  }
  .header--subpage .header__right {
    width: 50px;
  }
}
@media (max-width: 47.99em) {
  .header--subpage .header__hamburger {
    margin-top: 45px;
  }
  .header--subpage img {
    width: 70px;
    height: auto;
  }
}
.header--homepage {
  width: 64%;
  position: absolute;
  top: 20px;
  right: 0;
  z-index: 2;
}
.header--homepage .header__branding {
  display: none;
}
.header__right {
  width: 100%;
}
@media (max-width: 93.74em) {
  .header__menuLink {
    font-size: 14px;
  }
}
@media (max-width: 74.99em) {
  .header--homepage {
    width: 100%;
  }
  .header__menuLink {
    font-size: 1.4vw;
  }
}

.footer {
  background-color: var(--footerBg);
  padding: 0;
  display: flex;
  gap: 0 60px;
  z-index: 2;
  position: relative;
  padding-left: 340px;
}
.footer-newsletter {
  margin-top: 15px;
  background-color: var(--paletteColor5);
  padding-top: 40px;
  padding-bottom: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  -moz-column-gap: 40px;
       column-gap: 40px;
  row-gap: 20px;
}
@media (max-width: 61.99em) {
  .footer-newsletter {
    grid-template-columns: 100%;
  }
}
.footer-newsletter .kontakt {
  padding-top: 0;
}
.footer-newsletter .form-newsletter.contact-form {
  background-color: unset;
}
.footer .with-svg {
  display: flex;
  align-items: center;
}
.footer .block:not(.footer__logo) {
  padding-top: 40px;
  padding-bottom: 40px;
}
.footer .flag {
  font-style: italic;
  margin-bottom: 35px;
}
.footer .flag svg {
  height: 20px;
  width: 30px;
  margin-left: 20px;
}
.footer .two-columns {
  display: flex;
  gap: 40px;
}
.footer .divisio {
  background-color: white;
}
.footer .svg-icon {
  fill: white;
}
.footer .place-data {
  font-style: italic;
}
.footer .place-data svg {
  width: 20px;
  height: 20px;
}
.footer * {
  color: white;
}
.footer .title {
  margin-bottom: 40px;
  font: normal normal normal 25px/25px Playfair Display;
  letter-spacing: 0px;
  display: block;
}
.footer__logo {
  padding-left: 4vw;
  background-color: var(--footerLinkHover) !important;
  padding-right: 4vw;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 300px;
}
.footer__logo img {
  -o-object-fit: contain;
     object-fit: contain;
  height: 100%;
  width: 100%;
}
.footer .right-column > div {
  height: calc(100% - 70px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.footer .social {
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.4901960784);
  font-style: italic;
}
.footer .social svg {
  width: 27px;
  height: 27px;
  fill: #fff;
  opacity: 0.5;
  transition: all 0.2s;
}
.footer .social a {
  margin-left: 20px;
}
.footer .social a:hover svg {
  opacity: 1;
}
.footer .quicklinks {
  display: flex;
  flex-direction: column;
}
.footer .quicklinks a {
  color: #FFFFFF;
  opacity: 0.5;
  transition: all 0.2s;
  text-decoration: underline;
  font-style: italic;
  margin-bottom: 15px;
}
.footer .quicklinks a:hover {
  color: #BA967C;
  opacity: 1;
}
.footer .contact-online {
  display: flex;
  flex-direction: column;
  height: calc(100% - 70px);
  justify-content: space-between;
}
.footer .contact-online a {
  display: flex;
  align-items: center;
}
.footer .contact-online span {
  text-transform: capitalize;
}
.footer .contact-online svg {
  width: 27px;
  height: 27px;
  margin-right: 15px;
}
@media (max-width: 103.125em) {
  .footer {
    flex-wrap: wrap;
  }
  .footer .contact.block {
    width: 100%;
    padding-bottom: 0;
  }
}
@media (max-width: 74.99em) {
  .footer .two-columns {
    flex-wrap: wrap;
  }
}
@media (max-width: 61.99em) {
  .footer {
    padding-left: 35px;
    padding-right: 35px;
    padding-top: 80px;
  }
  .footer .contact-online a {
    margin-bottom: 20px;
  }
  .footer__logo {
    height: 80px;
    width: 100%;
    padding: 15px 50px;
  }
}
@media (max-width: 35.99em) {
  .footer {
    padding-right: 15px;
    padding-left: 15px;
  }
  .footer .block.right-column {
    padding-top: 0;
  }
}

.footer-small {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
  padding-bottom: 15px;
}
@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);
}
.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-bottom: 5px;
  margin-left: 15px;
}
.subsite-default > h1 {
  margin-top: 40px;
  margin-bottom: 40px;
}
.subsite-hero {
  min-height: 200px;
  background-color: var(--heroBg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 40px;
  padding-bottom: 40px;
}
.subsite-hero * {
  color: var(--heroTxt);
}
.subsite-hero > *:last-of-type {
  margin-bottom: 0;
}
.subsite-hero h1 {
  margin-top: 0;
}
.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--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__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;
}

.container-2 {
  height: 730px;
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(300px, 1fr) 1fr 1fr 1fr 1fr;
  grid-template-rows: 15vw 20vw;
  gap: 15px;
  grid-auto-flow: row;
  grid-template-areas: "a1 a1 a2 a2 a2 a2" "a1 a1 a2 a2 a2 a2";
}
.container-2 .a1, .container-2 .a2 {
  height: 730px;
}
@media (max-width: 93.74em) {
  .container-2 {
    grid-template-columns: minmax(250px, 1fr) minmax(250px, 1fr) 1fr 1fr 1fr 1fr;
  }
}
@media (max-width: 61.99em) {
  .container-2 {
    height: auto;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(5, 200px);
    grid-template-areas: "a1 a1" "a1 a1" "a2 a2" "a2 a2" "a2 a2" "a2 a2";
    gap: 0;
  }
  .container-2 .a1, .container-2 .a2 {
    height: auto;
  }
}

.a1 {
  grid-area: a1;
}

.a2 {
  grid-area: a2;
}

.sub-gallery {
  background-size: cover;
  background-position: center;
  padding-top: 100px;
  margin-top: 100px;
}
.sub-gallery img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.sub-gallery__image_main {
  background-size: cover;
  background-position: center;
}

.subpage .subsite-top__logo {
  margin-bottom: 40px;
}
.subpage .subsite-top__name {
  margin-top: 8px;
}
@media (max-width: 31.25em) {
  .subpage .subsite-top__logo {
    margin-bottom: 0;
  }
}
.subpage .header__branding {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.subpage .header__branding > div {
  text-align: center;
  margin-left: 1vw;
}
.subpage .header__branding p {
  color: var(--h1);
  font-style: italic;
  font-size: 0.6vw;
  margin-bottom: 0;
  text-transform: uppercase;
}
.subpage .header__branding h2 {
  margin: 0 0 8px;
  font-size: 1.5vw;
  color: var(--h1, var(--headings, var(--txt)));
}
@media (max-width: 74.99em) {
  .subpage .header__branding > div {
    display: none;
  }
}
@media (max-width: 61.99em) {
  .subpage .header__branding > div {
    display: block;
    margin-left: 20px;
  }
  .subpage .header__branding p {
    font-size: 10px;
  }
  .subpage .header__branding h2 {
    font-size: 24px;
  }
}
@media (max-width: 47.99em) {
  .subpage .header__branding {
    width: 100%;
  }
  .subpage .header__branding > div {
    width: 100%;
    margin: 0;
  }
}
@media (max-width: 31.25em) {
  .subpage .header__branding > div {
    display: none;
  }
}

.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-xl {
  -moz-column-gap: 100px;
       column-gap: 100px;
  row-gap: 100px;
}
.grid--gap-lg {
  -moz-column-gap: 80px;
       column-gap: 80px;
  row-gap: 80px;
}
.grid--gap-sm {
  -moz-column-gap: 40px;
       column-gap: 40px;
  row-gap: 40px;
}
.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;
}
@media (max-width: 47.99em) {
  .grid--reverse-sm .grid-column:nth-child(2), .grid--reverse-xs .grid-column:nth-child(2) {
    order: -1;
  }
}
@media (max-width: 35.99em) {
  .grid--reverse-sm .grid-column:nth-child(2), .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--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: 40px;
  gap: 30px;
}
.cards .card--block .title {
  color: var(--cardHeadings, var(--cardTxt));
}
.cards .card--block p, .cards .card--block .date {
  color: var(--cardTxt);
}
.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--simple {
  gap: 30px;
}
.cards .card--simple .title {
  color: var(--headings);
}
.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__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 .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;
}

.user__tab {
  display: none;
  width: 100%;
}
.user__tab form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.user__tabs-buttons {
  display: flex;
  width: 100%;
  justify-content: flex-start;
  gap: 15px;
}
.user .user__tabs-buttons {
  margin-bottom: 50px;
  margin-top: 80px;
}
.user__tabs {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 600px;
  margin: 0 auto;
  gap: 15px;
}
.user__tabs-userpage {
  width: 100%;
}
@media (max-width: 47.99em) {
  .user__tabs {
    width: 100%;
  }
}
.user h2 {
  text-align: center;
  margin-bottom: 40px;
}

#restore:checked ~ .user__tab--restore {
  display: block;
}

#login:checked ~ .user__tab--login {
  display: block;
}
#login:checked ~ .user__tabs-buttons .button-login {
  color: var(--btnTxtHover) !important;
  border-color: var(--bg1);
  background-color: var(--btnBgHover, transparent);
}

#change-pass:checked ~ .user__tab--change-pass {
  display: block;
}
#change-pass:checked ~ .user__tabs-buttons .button-pass {
  color: var(--btnTxtHover) !important;
  border-color: var(--bg1);
  background-color: var(--btnBgHover, transparent);
}

#change-data:checked ~ .user__tab--change-data {
  display: block;
}
#change-data:checked ~ .user__tabs-buttons .button-change {
  color: var(--btnTxtHover) !important;
  border-color: var(--bg1);
  background-color: var(--btnBgHover, transparent);
}

#list:checked ~ .user__tab--list {
  display: block;
}
#list:checked ~ .user__tabs-buttons .button-list {
  color: var(--btnTxtHover) !important;
  border-color: var(--bg1);
  background-color: var(--btnBgHover, transparent);
}

#register:checked ~ .user__tab--register {
  display: block;
}
#register:checked ~ .user__tabs-buttons .button-register {
  color: var(--btnTxtHover) !important;
  border-color: var(--bg1);
  background-color: var(--btnBgHover, transparent);
}

.ajaxLoader {
  margin-bottom: 30px;
  width: 48px;
  display: none;
}

.not-logged-in {
  text-align: center;
}
.not-logged-in a {
  color: var(--h1);
}

.form--changedata {
  max-width: 500px;
  margin-bottom: 50px;
}

.header__submenu {
  position: absolute;
  display: flex;
  flex-direction: column;
  background-color: var(--paletteColor2);
  border-radius: var(--submenuRadius, 0);
  align-items: flex-start;
  justify-content: flex-start;
  max-width: unset;
  left: 0;
  top: 120%;
  padding: 10px 0;
  height: auto;
  max-height: 900px;
  min-width: 240px;
  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;
}
.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.875rem;
  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 {
  text-align: left;
  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;
  display: none;
}
.header__submenuLink span {
  color: var(--headerSubmenuLink, var(--headerLink));
  line-height: initial;
  transition: ease 0.3s all;
  font-weight: 400;
  font-size: 1rem;
}
.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;
  margin-left: auto;
  margin-right: 15px;
  z-index: 5;
}
@media (max-width: 61.99em) {
  .header__hamburger {
    display: block;
  }
}
.header__hamburger span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: var(--paletteColor1);
  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;
  }
  .header__nav {
    top: -20px;
    overflow: auto;
    position: absolute;
    width: 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: 80px;
    padding-bottom: 105px;
    border-bottom: 100px solid var(--headerSubmenuBg);
    align-items: flex-start;
    flex-direction: column;
  }
  .header__menuList {
    flex-direction: column;
    width: 100%;
    display: flex;
  }
  .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;
    display: flex;
    padding: 10px;
  }
  .header__menuLink span {
    color: var(--headerSubmenuLink, var(--headerLink));
    flex: 1;
    font-size: 1.25rem;
  }
  .header__menuLink svg {
    fill: var(--headerSubmenuLink, var(--headerLink));
    min-width: 25px;
    display: none;
  }
  .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.25rem;
  }
}

.button {
  background-color: white;
  border: 1px solid var(--paletteColor2);
  border-radius: 0;
  font-family: var(--btnFont, initial);
  padding: 10px 20px;
  transition-property: color, border, background-color;
  transition-duration: 0.3s;
  transition-timing-function: ease-in-out;
  display: inline-block;
  line-height: 16px;
  text-align: center;
  align-self: flex-start;
  cursor: pointer;
  font-size: 0.9375rem;
}
.button-sm {
  padding: 6px 13px;
  font-size: 0.875rem;
}
.button-no-bg {
  background: transparent;
}
.button:hover {
  color: var(--btnTxtHover) !important;
  border-color: var(--bg1);
  background-color: var(--btnBgHover, transparent);
}
.button:hover span, .button:hover i {
  color: var(--btnTxtHover) !important;
}
.button:hover svg {
  fill: var(--btnTxtHover) !important;
}
.button-dark {
  background-color: #3C3C3C;
  color: white;
}
.button-light-dark {
  background-color: #B9967C;
  color: white;
}
.button-light-dark:hover {
  background-color: #3C3C3C;
  color: white;
}
.button-quicklogin {
  border: none;
}
.button span, .button i {
  color: var(--btnTxt) !important;
  transition: ease 0.3s all;
}
.button svg {
  fill: var(--btnTxt) !important;
  transition: ease 0.3s all;
}
.button[data-hover]:before, .button[data-hover]:after, .button[data-hover][data-hover*=fade]:hover {
  background-color: var(--btnBgHover, red);
}
.button--secondary {
  background-color: var(--btn2Bg, unset);
  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);
}
.button--secondary:hover {
  color: var(--btn2TxtHover, unset) !important;
  border-color: var(--btn2BorderHover, unset);
  background-color: var(--btn2BgHover, unset);
}
.button--secondary:hover span, .button--secondary:hover i {
  color: var(--btn2TxtHover, unset) !important;
}
.button--secondary:hover svg {
  fill: var(--btn2TxtHover, unset) !important;
}
.button--secondary span, .button--secondary i {
  color: var(--btn2Txt, unset) !important;
}
.button--secondary svg {
  fill: var(--btn2Txt, unset) !important;
}
.button--xs {
  padding: 10px 20px;
}
.button--sm {
  padding: 15px 25px;
}
.button--md {
  padding: 20px 30px;
}
.button--lg {
  padding: 25px 35px;
}
.button--xl {
  padding: 30px 40px;
}
.button--noradius {
  border-radius: 0;
}
.button--shadow {
  box-shadow: 4px 4px 0px rgba(0, 0, 0, 0.1);
}
.button--full {
  width: 100%;
}
.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 {
  background-color: var(--bg1) !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

[data-hover*=color10]:hover {
  color: var(--color10) !important;
}
[data-hover*=color10][data-hover*=span]:hover span {
  color: var(--color10) !important;
}
[data-hover*=color10][data-hover*=svg]:hover svg {
  fill: var(--color10) !important;
}
[data-hover*=color10].header__menuLink:hover .arrow:after, [data-hover*=color10].header__submenuLink:hover .arrow:after {
  border-color: var(--color10) !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);
  }
}
.cookies__group {
  display: flex;
  text-align: left;
  padding-bottom: 10px;
  margin-bottom: 10px;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
.cookies__group.reversed {
  flex-direction: row-reverse;
}
.cookies__group .content {
  flex: 1;
}
.cookies__group .content .title {
  font-weight: 700;
  display: inline-flex;
  -moz-column-gap: 10px;
       column-gap: 10px;
  cursor: pointer;
}
.cookies__group .content .description p {
  margin-bottom: 0;
}
.cookies__footer .hidden {
  display: none;
}

.popup[data-popup=cookies].popup--box {
  max-width: 600px;
}
@media (max-width: 40em) {
  .popup[data-popup=cookies].popup--box {
    width: 100%;
    left: 0;
    max-width: unset;
    right: 0;
    bottom: 0;
  }
}
.popup[data-popup=cookies].popup--box .popup__content {
  overflow: unset;
  max-height: unset;
}
@media (max-width: 40em) {
  .popup[data-popup=cookies].popup--box .popup__inner {
    border-radius: 0;
  }
}
.popup[data-popup=cookies] .popup__inner {
  padding: 0;
}
.popup[data-popup=cookies] .popup__content {
  padding: 0;
  box-shadow: 0 0 30px rgba(60, 60, 60, 0.2);
}
.popup[data-popup=cookies] .popup__content p {
  margin: 0;
}
.popup[data-popup=cookies] .popup__content p, .popup[data-popup=cookies] .popup__content li {
  font-size: 0.875rem;
}
.popup[data-popup=cookies] .popup__content ul {
  padding: 0;
  margin: 0;
}
.popup[data-popup=cookies] .popup__content ul li:before {
  display: none;
}
.popup[data-popup=cookies] .tabs {
  row-gap: 0;
}
.popup[data-popup=cookies] .tabs-nav > div {
  height: 60px;
  padding: 10px;
  flex: 1;
  white-space: nowrap;
  justify-content: center;
  border-bottom: 3px solid var(--paletteColor6);
  transition: ease 0.3s all;
  min-width: 100px;
}
.popup[data-popup=cookies] .tabs-nav > div.active, .popup[data-popup=cookies] .tabs-nav > div:hover {
  border-color: var(--paletteColor2);
}
.popup[data-popup=cookies] .tabs-nav > div.close {
  position: relative;
  right: unset;
  top: unset;
  display: flex;
  align-items: center;
  aspect-ratio: 1/1;
  padding: 0 10px;
  cursor: pointer;
  min-width: unset;
  flex: 0;
}
.popup[data-popup=cookies] .tabs-content {
  overflow: auto;
  max-height: calc(100vh - 90px - 184px);
  padding: 20px 20px 0 20px;
}
@media (max-width: 61.99em) {
  .popup[data-popup=cookies] .tabs-content {
    max-height: 40vh;
  }
}
@media (max-width: 25em) {
  .popup[data-popup=cookies] .tabs-content {
    max-height: 30vh;
  }
}
.popup[data-popup=cookies] .cookies__group:first-of-type {
  margin-top: 20px;
}
.popup[data-popup=cookies] .cookies__group:last-of-type {
  margin-bottom: 0;
  padding-bottom: 0;
}
.popup[data-popup=cookies] .cookies__group .content label {
  display: block;
}
.popup[data-popup=cookies] .cookies__group > label {
  --btnRadius: 0;
  grid-template-columns: 40px;
}
.popup[data-popup=cookies] .button-set {
  padding: 20px;
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 10px;
       column-gap: 10px;
  row-gap: 10px;
}
.popup[data-popup=cookies] .button-set .button {
  white-space: nowrap;
  border-radius: 0;
  border-width: 1px;
  flex: 1;
  justify-content: center;
}
.popup[data-popup=cookies] .button-set .button2:not(:hover) {
  border-color: var(--paletteColor5);
}

.mobile-bar {
  background-color: var(--btnBg);
  display: none;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
@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(--btnBgHover);
}
.mobile-bar__link:hover span {
  color: var(--btnTxtHover);
}
.mobile-bar__link:hover svg {
  fill: var(--btnTxtHover);
}
.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 {
  background-color: var(--btnBg);
  border-radius: var(--btnRadius);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease 0.3s all;
}
.scroll-top a:hover {
  background-color: var(--btnBgHover);
}
.scroll-top a:hover svg {
  fill: var(--btnTxtHover);
  stroke: var(--btnTxtHover);
}
.scroll-top a svg {
  fill: var(--btnTxt);
  stroke: var(--btnTxt);
  transition: ease 0.3s all;
}

.popup {
  position: fixed;
  z-index: 99999;
  visibility: hidden;
  transition: 0.6s all;
}
.popup.visible {
  visibility: visible;
}
.popup--blur {
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}
.popup--full {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.85);
  display: flex;
  flex-direction: column;
}
.popup--full.left .popup__inner {
  border-radius: 0;
}
.popup--full.right {
  align-items: flex-end;
}
.popup--full.right .popup__inner {
  border-radius: 0;
}
.popup--full.right .close {
  right: unset;
  left: 30px;
}
.popup--full.center {
  justify-content: center;
  align-items: center;
  padding: 50px 30px;
}
@media (max-width: 74.99em) {
  .popup--full.center {
    padding: 20px;
  }
}
.popup--full.center .popup__inner {
  max-width: 800px;
  height: unset;
}
.popup--full.fullscreen .popup__inner {
  max-width: 100%;
  border-radius: 0;
  background-color: unset;
}
@media (max-width: 74.99em) {
  .popup--full.fullscreen .popup__inner {
    padding-top: 80px;
  }
}
.popup--full.fullscreen .popup__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: unset;
  padding: 0;
}
.popup--full.fullscreen .popup__content *:not(.button):not([data-validate-for]) {
  color: #fff;
}
.popup--full.fullscreen .popup__content *:not(.button > svg) {
  fill: #fff;
}
.popup--full.fullscreen .popup__content .form__input--select:not([multiple]) option {
  color: var(--form-input-color);
}
.popup--full.fullscreen.popup--narrow .popup__content {
  max-width: 800px;
  margin: 0 auto;
}
.popup--full .popup__inner {
  overflow: auto;
  max-width: 550px;
  height: 100%;
  width: 100%;
  background-color: var(--popup-bg, #fff);
  border-radius: var(--popup-radius);
  padding: 70px;
}
@media (max-width: 61.99em) {
  .popup--full .popup__inner {
    padding: 40px;
  }
}
.popup--full .popup__content {
  min-height: 100%;
}
.popup--full .close {
  position: fixed;
  top: 30px;
  right: 30px;
}
@media (max-width: 61.99em) {
  .popup--full .close {
    top: 10px;
    right: 10px;
  }
}
.popup--full .close:not(:hover) svg {
  fill: var(--paletteColor1) !important;
}
.popup--full .close svg {
  width: 20px;
  height: 20px;
}
.popup--box {
  bottom: 20px;
  right: 20px;
  max-width: 550px;
  width: 100%;
}
.popup--box.left {
  right: unset;
  left: 20px;
}
.popup--box.center {
  right: 50%;
  transform: translateX(50%);
}
.popup--box .popup__inner {
  height: 100%;
  width: 100%;
  background-color: var(--popup-bg, #fff);
  border-radius: var(--popup-radius);
  box-shadow: var(--popup-shadow-size, 0) var(--popup-shadow);
  border: var(--popup-border-size, 0) var(--popup-border);
  padding: 20px 0;
}
.popup--box .popup__content {
  padding: 0 30px;
  overflow: auto;
  max-height: calc(100vh - 90px);
}
.popup--box .close {
  position: absolute;
  right: 10px;
  top: 10px;
  padding: 10px;
}
.popup--box .close svg {
  width: 20px;
  height: 20px;
}
.popup--box.popup--narrow {
  max-width: 450px;
}
.popup--fade {
  opacity: 0;
}
.popup--fade.visible {
  opacity: 1;
}
.popup .popup__content p {
  color: var(--popup-color, var(--text-color));
}
.popup .popup__content .title {
  color: var(--popup-title, var(--headings));
}
.popup .popup__content a:not(.button) {
  color: var(--popup-link, var(--link-color));
}
.popup .popup__content a:not(.button):hover {
  color: var(--popup-link-hover, var(--link-color-hover));
}

.tabs {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}
.tabs--accordion {
  row-gap: 0;
}
.tabs--accordion .tabs-nav__item {
  margin-top: 20px;
}
.tabs--accordion .tabs-nav__item:first-of-type {
  margin-top: 0;
}
.tabs--accordion .tabs-content__item {
  margin-top: 20px;
}
.tabs--under {
  flex-direction: column-reverse;
}
.tabs--left {
  flex-direction: row;
  -moz-column-gap: 30px;
       column-gap: 30px;
  align-items: flex-start;
}
.tabs--left .tabs-nav {
  flex-direction: column;
  white-space: nowrap;
}
.tabs--right {
  flex-direction: row-reverse;
  -moz-column-gap: 30px;
       column-gap: 30px;
}
.tabs--right .tabs-nav {
  flex-direction: column;
  white-space: nowrap;
}
.tabs-nav {
  display: flex;
  flex-wrap: wrap;
}
.tabs-nav.left {
  justify-content: flex-start;
}
.tabs-nav.right {
  justify-content: flex-end;
}
.tabs-nav.center {
  justify-content: center;
}
.tabs-nav.stretch .tabs-nav__item {
  flex: 1;
}
.tabs-nav__item {
  white-space: nowrap;
}
.tabs-nav__item:not(.button) {
  display: flex;
  -moz-column-gap: 10px;
       column-gap: 10px;
  align-items: center;
  font-weight: 700;
  cursor: pointer;
}
.tabs-nav__item:not(.button) svg {
  width: 25px;
  height: 25px;
}
.tabs-nav__item.active .collapse.arrow svg {
  transform: rotate(0);
}
.tabs-nav__item.active .collapse.plus svg {
  transform: rotate(45deg);
}
.tabs-nav__item.active .collapse.plus-minus svg path:last-of-type {
  opacity: 0;
}
.tabs-nav__item .title.stretch {
  flex: 1;
}
.tabs-nav__item .icon {
  display: flex;
}
.tabs-nav__item .icon.right {
  order: 1;
  justify-content: flex-end;
}
.tabs-nav__item .collapse {
  display: flex;
  justify-content: flex-end;
}
.tabs-nav__item .collapse.arrow svg {
  transform: rotate(-90deg);
}
.tabs-nav__item .collapse.left {
  order: -1;
  flex: 0;
}
.tabs-nav__item .collapse svg path {
  transition: ease 0.3s all;
}
.tabs-content__item {
  display: none;
}
.tabs-content__item.active {
  display: block;
}

.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;
}
.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*=h50] svg {
  height: 50px;
}
.divider[data-divider*=h100] svg {
  height: 100px;
}
.divider[data-divider*=h150] svg {
  height: 150px;
}
.divider[data-divider*=h200] svg {
  height: 200px;
}
.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);
}

.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: #fff;
  opacity: 0.7;
  display: none;
  z-index: 99995;
}

.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: #000;
  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: #000;
  font-size: 1rem;
}
.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: #000;
}
.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 {
  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 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: #000;
  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;
}
.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: 90%;
  transform: translate(0, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 2px;
  background: rgba(192, 185, 169, 0.5294117647);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  transition: ease 0.3s all;
  border-radius: 50%;
  opacity: 0.9;
  cursor: pointer;
}
.slick-arrow:hover {
  background: #c0b9a9;
  opacity: 1;
}
.slick-arrow line {
  stroke-width: 2;
}
.slick-next {
  left: 140px;
}
.slick-prev {
  left: 80px;
  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: 40px;
  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%);
}
@media (max-width: 47.99em) {
  .slick-arrow {
    bottom: 20px;
    top: unset;
  }
  .slick-next {
    left: 100px;
  }
  .slick-prev {
    left: 40px;
  }
}

.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;
}
@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.25rem;
}
@media (max-width: 61.99em) {
  .txtimg__content.align-right ul li {
    padding-left: 1.25rem;
    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 {
  font-size: 1.125rem;
  margin-bottom: 0;
  transition: ease 0.3s color;
  color: var(--headings, var(--txt));
}
.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: 1rem;
}
@media (max-width: 35.99em) {
  .icons-set__item-text {
    font-size: 0.9375rem;
  }
}

.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 {
  margin-top: 40px;
}
.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: #fff;
  padding: 20px 20px;
  flex-direction: column;
}
.files__single:hover .title {
  color: 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;
}
.files__single-top .content {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 190px;
}
.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(--headings);
  transition: ease 0.3s all;
  flex: 1;
}
.files__single-info {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
.files__single hr {
  margin: 10px 0px;
  background-color: var(--body);
}

/*Lista plików*/
.files_tree .file_wrapper {
  max-width: 810px;
  display: flex;
  align-items: center;
  background: #f3ebe6;
  margin-bottom: 10px;
  margin-left: 25px;
  transition: all 0.5s ease-in-out;
  position: relative;
  padding: 0;
}

.files_tree .file_wrapper:hover {
  background: #e6d5cb;
}

.files_tree .file_wrapper:hover .number {
  background: #895c42;
}

.files_tree .file_wrapper .number {
  color: white;
  font-size: 1.6875rem;
  font-weight: 600;
  background: #ac7352;
  width: 55px;
  min-width: 55px;
  text-align: center;
  border-radius: 50%;
  height: 55px;
  padding: 0.875rem 0px;
  line-height: 1;
  margin-left: -25px;
  transition: all 0.5s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 35.99em) {
  .files_tree .file_wrapper .number {
    padding: 0.625rem 0px;
  }
}

.files_tree .file_wrapper .name_link {
  color: #525252;
  font-size: 1rem;
  font-weight: 300;
  padding-left: 20px;
  padding-right: 80px;
}
@media (max-width: 35.99em) {
  .files_tree .file_wrapper .name_link {
    padding-left: 10px;
  }
}

.files_tree .file_wrapper .name_link:hover {
  color: #000;
}

.files_tree .file_wrapper .cloud_link {
  position: absolute;
  right: 25px;
  display: flex;
  align-items: center;
}
@media (max-width: 35.99em) {
  .files_tree .file_wrapper .cloud_link {
    right: 10px;
  }
}

.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;
}

.yt__slider {
  margin-bottom: 100px;
}
.yt__slider img:not(.control-c) {
  width: 100%;
  height: 100%;
  max-height: 700px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.yt__slider a {
  padding: 0;
  width: 100%;
  max-width: 800px;
  height: 500px;
  margin: 0 auto;
  display: block;
  position: relative;
}
.yt__slider a::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background-color: rgba(0, 0, 0, 0.2);
  background-image: url("../../images/play.png");
  background-position: center;
  background-size: 10%;
  background-repeat: no-repeat;
  z-index: 1;
  opacity: 0.8;
  transition: all 0.4s;
}
.yt__slider a:hover::before {
  opacity: 0;
}
.yt__slider .slick-arrow {
  top: calc(100% + 55px);
}
.yt__slider .slick-next {
  right: calc(49% - 40px);
  left: unset;
}
.yt__slider .slick-prev {
  left: calc(49% - 40px);
}
@media (max-width: 47.99em) {
  .yt__slider a {
    height: 60vw;
  }
}

.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 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.5rem;
  cursor: pointer;
  color: var(--headings, var(--txt));
  transition: ease 0.3s color;
}
.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: 10px;
  margin-bottom: 10px;
  /*&.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: 40px;
}
.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 p {
  margin-bottom: 0;
}
.contact-data__section--name {
  display: block;
}
.contact-data__section--name p {
  font-size: 1.25rem;
  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;
}
.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.125rem;
}
.form :focus {
  outline: none;
}
.form-newsletter.contact-form {
  height: auto;
}
.form-newsletter.contact-form .alert-success p {
  color: green;
  background: #C8E6C9;
  padding: 2px 5px;
  display: inline-block;
}
.form-newsletter.contact-form .alert-error p {
  color: red;
  background: #ffcdd2;
  padding: 2px 5px;
  display: inline-block;
}
.form-newsletter.contact-form .submitSection {
  -moz-column-gap: 10px;
       column-gap: 10px;
  margin-top: 30px;
}
.form-newsletter.contact-form .submit {
  white-space: nowrap;
}
.form-newsletter.contact-form .form__rodo {
  max-width: unset;
}
.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__group .form__row .form__row {
  margin-top: 0;
}
.form__row {
  position: relative;
  margin-top: 30px;
}
.form__input {
  margin-top: 5px;
  border: 0;
  padding: 4px 0;
  border-bottom: 1px solid var(--hr, var(--paletteColor5));
  background-color: transparent;
  position: relative;
  font-size: 1.125rem;
  width: 100%;
}
.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--group {
  margin-top: 20px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
.form__input--group label {
  padding: 6px 13px;
  border: 1px solid var(--paletteColor2);
  cursor: pointer;
}
.form__input--group input[type=radio], .form__input--group input[type=checkbox] {
  display: none;
}
.form__input--group input:checked + label {
  background-color: var(--btnBgHover, transparent);
  color: white;
}
.form__input--text-group {
  display: flex;
}
.form__input--text-group input {
  width: auto !important;
}
.form__input ~ .form__border {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--paletteColor1);
  transition: 0.3s;
}
.form__input:focus ~ .form__border {
  width: 100%;
  transition: 0.3s;
}
.form__input:focus ~ .form__label {
  top: -16px;
  font-size: 12px;
  color: var(--linkHover);
  transition: 0.3s;
}
.form__input--has-content ~ .form__border {
  width: 100%;
  transition: 0.4s;
}
.form__input--has-content ~ .form__label {
  top: -16px;
  font-size: 12px;
  color: var(--linkHover);
  transition: 0.3s;
}
.form__label {
  position: absolute;
  left: 0;
  width: 100%;
  top: 0px;
  color: var(--paletteColor4);
  transition: 0.3s;
  letter-spacing: 0.5px;
  display: block;
  margin-bottom: 10px;
}
.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: 1.875rem;
  margin-top: 0.9375rem;
  align-items: center;
  justify-content: flex-start;
}
.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.8125rem;
}
.form__rodo input {
  display: none;
}
.form__rodo .checker {
  border: 1px solid var(--hr, var(--paletteColor5));
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1/1;
  transition: ease 0.3s all;
  border-radius: var(--btnRadius, 0);
}
.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 select {
  background-color: unset;
}
.form option {
  margin: 5px;
}

#topic {
  font-size: 1.125rem;
}

.close:hover {
  cursor: pointer;
}

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

.form-offer {
  background-color: #3C3C3C;
  padding: 67px 94px;
  height: 730px;
}
.form-offer-container {
  max-width: 700px;
}
.form-offer .form__group {
  margin-bottom: 30px;
}
.form-offer h3 {
  color: #BA967C;
}
.form-offer .form__label {
  color: #707070;
}
.form-offer .form__input {
  outline: none;
  border-color: #707070;
  color: white;
}
.form-offer .form__input ~ .form__border {
  background-color: #BA967C;
}
.form-offer .checker {
  border-color: #707070;
  border-radius: 0;
  height: 40px;
}
.form-offer .form__rodo {
  max-width: 340px;
}
.form-offer .form__rodo span, .form-offer .form__rodo a {
  color: #707070;
  font-size: 12px;
}
.form-offer .submitSection {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
}
.form-offer .submitSection .button {
  background-color: #3C3C3C;
  color: white;
  border-color: #707070;
}
.form-offer .form__row.teaxtarea {
  margin-top: 40px;
}
.form-offer textarea {
  margin-top: 20px;
  height: 200px;
}
.form-offer .submit {
  margin-top: 20px;
}
@media (max-width: 93.74em) {
  .form-offer {
    padding: 67px 50px;
  }
}
@media (max-width: 74.99em) {
  .form-offer {
    padding: 67px 30px;
  }
  .form-offer .submitSection {
    margin-top: 50px;
    flex-direction: column;
  }
  .form-offer textarea {
    height: 130px;
  }
}
@media (max-width: 61.99em) {
  .form-offer-container {
    max-width: unset;
  }
  .form-offer .submitSection {
    flex-direction: row;
  }
}
@media (max-width: 61.99em) {
  .form-offer {
    padding-top: 40px;
  }
  .form-offer .submitSection {
    margin-top: 20px;
    flex-direction: column;
  }
  .form-offer textarea {
    height: 110px;
  }
}

.kontakt {
  padding-top: 50px;
}
.kontakt .form-offer {
  background-color: white;
  padding: 0;
}

#message2 {
  outline: none;
  margin-bottom: -6px;
}

#offer-form input {
  outline: none;
}
#offer-form input#guests {
  width: 150px;
}

.ui-datepicker-trigger {
  display: none;
}

#brief-form p {
  margin-top: 20px;
  font-weight: 500;
}

#buy_term, #visit_term,
#brief_message {
  width: 100%;
}

.show-hide {
  display: none;
}

#visit-yes:checked ~ .show-hide {
  display: block;
}

.leaflet-container {
  height: 80vh;
  z-index: 0;
  min-height: 400px;
}
.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-top:before {
  border-top-color: var(--btnBg);
}
.leaflet-container .overlay {
  z-index: 401;
  mix-blend-mode: color;
}
.places .leaflet-control-layers {
  display: none;
}

.places {
  margin-top: 200px;
  position: relative;
}
.places::before {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 80vw;
  height: calc(100% - 210px);
  content: "";
  background-color: var(--paletteColor1);
  z-index: -1;
}
.places__wrapper {
  display: flex;
  gap: 100px;
}
.places h2 {
  margin-top: 50px;
  margin-bottom: 120px;
}
.places__map {
  width: 64vw;
}
.places__types {
  width: calc(36vw - 100px);
}
.places__list {
  display: flex;
  flex-direction: column;
  height: calc(100% - 290px);
  justify-content: space-between;
}
.places__list li {
  font-family: var(--fontHeadings);
  color: #BA967C;
  font-size: 1.375rem;
  margin-bottom: 0;
  cursor: pointer;
  transition: all 0.2s;
}
.places__list li.active, .places__list li:hover {
  color: white;
}
.places__more {
  display: flex;
  align-items: center;
  padding-top: 45px;
  padding-bottom: 45px;
}
.places__more span {
  display: flex;
  align-items: center;
  margin-right: 50px;
}
.places__more a {
  margin-right: 12vw;
  text-decoration: underline;
}
.places__more a, .places__more span {
  font-family: var(--fontHeadings);
  color: #717171;
}
.places__more svg {
  margin-right: 20px;
}
@media (max-width: 93.74em) {
  .places .showMob {
    display: block;
  }
  .places .hideMob {
    display: none;
  }
  .places__map {
    width: calc(100% - 50px);
  }
  .places__wrapper {
    display: flex;
    gap: 0;
    flex-direction: column;
  }
  .places h2 {
    margin-bottom: 50px;
    text-align: center;
  }
  .places__list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: flex-start;
  }
  .places__types {
    width: calc(100% - 250px);
    margin-left: auto;
  }
  .places::before {
    width: calc(100% - 200px);
  }
  .places__more a {
    margin-right: 7vw;
  }
}
@media (max-width: 74.99em) {
  .places__map {
    width: calc(100% - 35px);
  }
  .places::before {
    width: calc(100% - 35px);
  }
  .places__types {
    width: calc(100% - 70px);
  }
  .places__list li {
    font-size: 1.25rem;
  }
  .places__more a {
    margin-right: 35px;
    margin-left: 35px;
    color: white;
  }
}
@media (max-width: 61.99em) {
  .places__list li {
    font-size: 1.125rem;
  }
  .places__more {
    padding-top: 15px;
  }
}
@media (max-width: 47.99em) {
  .places__list li {
    font-size: 1rem;
  }
  .places__map {
    width: calc(100% - 20px);
    height: 80vh !important;
  }
  .places::before {
    width: calc(100% - 20px);
  }
  .places__types {
    width: calc(100% - 40px);
  }
  .places__more a {
    margin-left: 20px;
  }
  .places__list {
    justify-content: flex-start;
    gap: 25px;
    flex-wrap: wrap;
  }
  .places .leaflet-map-pane svg {
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 47.99em) {
  .places__more span {
    margin-right: 15px;
  }
  .places__more svg {
    width: 20px;
    height: 20px;
    margin-right: 10px;
  }
  .places__more a {
    margin-right: 15px;
  }
}

.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.25rem;
  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;
}

.searchbar {
  position: absolute;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  bottom: 100px;
}
.searchbar select:not(.button) {
  background: transparent;
  color: white;
  border: none;
  outline: none;
  border-bottom: 1px solid var(--paletteColor2);
  width: 80%;
  font-size: 0.875rem;
  padding: 5px 10px;
  -webkit-appearance: none;
}
.searchbar select:not(.button) option {
  color: black;
}
.searchbar select.button {
  -webkit-appearance: none;
}
.searchbar__buttons {
  margin-bottom: 20px;
}
.searchbar__buttons .button {
  color: white;
}
.searchbar__input {
  display: none;
}
.searchbar__input:checked + label {
  color: var(--btnTxtHover) !important;
  border-color: var(--btnBorderHover);
  background-color: var(--btnBgHover, transparent);
}
.searchbar__date {
  opacity: 0 !important;
  height: 0 !important;
  width: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  width: 0 !important;
  visibility: none;
}
.searchbar__controll {
  margin-top: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.searchbar__controll svg {
  width: 30px;
  height: 30px;
  margin-left: 15px;
}
.searchbar__controll_rent .button, .searchbar__controll_rent select {
  border-color: white;
}
.searchbar__controll_form {
  margin-top: 50px;
}
.searchbar__controll_form h4 {
  color: #C8977C;
  margin-bottom: 7px;
}
.searchbar #localisation {
  border-bottom: 1px solid white;
}
.searchbar__search {
  display: flex;
  align-items: center;
  color: white;
  background: transparent;
  border: none;
  cursor: pointer;
}
.searchbar__search_rent:hover {
  color: var(--paletteColor1);
}
.searchbar__search_form {
  color: black;
}
.searchbar__search_form svg rect {
  fill: black;
}
.searchbar__search_form svg circle {
  stroke: black;
}
.searchbar > div {
  padding-top: 40px;
  padding-bottom: 40px;
}
.searchbar h3 {
  font-size: 23px;
  font-weight: 400;
}
.searchbar__rent h3, .searchbar__sale h3 {
  color: white;
}
.searchbar__sale {
  background-color: var(--paletteColor1);
  padding-right: 40px;
}
.searchbar__rent {
  background-color: var(--paletteColor2);
  padding: 40px;
}
.searchbar__contact {
  background-color: white;
  padding-left: 40px;
}
.searchbar .ui-datepicker-trigger {
  display: none;
}
.searchbar #datepicker::-moz-placeholder {
  color: white;
}
.searchbar #datepicker::placeholder {
  color: white;
}
@media (max-width: 93.74em) {
  .searchbar {
    padding-right: 0;
    grid-template-columns: 35% 35% 30%;
  }
}
@media (max-width: 74.99em) {
  .searchbar {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto 1fr;
  }
  .searchbar__contact {
    grid-column: 1/span 2;
    grid-row: 2;
  }
  .searchbar__controll {
    max-width: 335px;
  }
}
@media (max-width: 61.99em) {
  .searchbar {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    position: static;
    margin-top: 40px;
  }
  .searchbar__contact {
    grid-column: unset;
    grid-row: unset;
  }
  .searchbar__controll {
    margin: 25px auto 0;
  }
  .searchbar__rent h3, .searchbar__sale h3, .searchbar__contact h3 {
    text-align: center;
  }
  .searchbar > div {
    padding: 30px;
  }
}
@media (max-width: 47.99em) {
  .searchbar__search {
    font-size: 0;
  }
  .searchbar > div {
    padding: 30px 15px;
  }
}

.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default, .ui-button, html .ui-button.ui-state-disabled:hover, html .ui-button.ui-state-disabled:active {
  border: 1px solid var(--paletteColor2);
  background: white;
  text-align: center;
  width: 38px;
}

.ui-datepicker .ui-datepicker-header {
  border-radius: 0;
  border: 1px solid var(--paletteColor2);
  background: white;
}

.ui-state-hover,
.ui-widget-content .ui-state-hover,
.ui-widget-header .ui-state-hover,
.ui-state-focus,
.ui-widget-content .ui-state-focus,
.ui-widget-header .ui-state-focus,
.ui-button:hover,
.ui-button:focus {
  border: none;
  background: #ffffff;
  font-weight: normal;
  color: var(--paletteColor1);
}

.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active, a.ui-button:active, .ui-button:active, .ui-button.ui-state-active:hover {
  background-color: var(--paletteColor2);
}

.cards {
  margin-top: 100px;
  position: relative;
}
.cards h2 {
  text-align: center;
  margin-bottom: 100px;
}
.cards__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.cards__add {
  position: absolute;
  height: 30px;
  width: 30px;
  top: 20px;
  right: 20px;
  cursor: pointer;
  fill: white;
  opacity: 0.6;
  transition: all 0.2s;
  padding: 0;
  background: transparent;
  border: none;
}
.cards__add:hover, .cards__add.added {
  opacity: 1;
  transform: scale(1.2);
}
.cards__add.remove {
  width: auto;
  height: auto;
  background-color: white;
  padding: 5px 10px;
  border: 1px solid var(--paletteColor2);
}
.cards__add.remove:hover {
  transform: scale(1);
}
.cards__item {
  transition: all 0.2s;
  position: relative;
}
.cards__item::after {
  position: absolute;
  top: 15px;
  left: 15px;
  height: calc(100% - 15px);
  width: calc(100% - 30px);
  content: "";
  z-index: 1;
  border: 1px solid #C8977C;
  transition: all 0.2s;
  background-position: center;
  background-size: cover;
  pointer-events: none;
  opacity: 0;
}
.cards__item:hover::after {
  opacity: 1;
}
.cards__item:hover .button {
  color: var(--btnTxtHover) !important;
  border-color: var(--bg1);
  background-color: var(--btnBgHover, transparent);
}
.cards__item img {
  height: 270px;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  background-color: var(--paletteColor2);
  width: 100%;
}
.cards__item h3 {
  font-size: 1.5rem;
  margin-bottom: 40px;
  margin-top: 0;
}
.cards__item .divisio {
  height: 1px;
  width: 44px;
  display: inline-block;
  content: "";
  background-color: #BA967C;
  margin: 5px 15px;
}
.cards__item:hover .cards__content::before {
  opacity: 1;
}
.cards__content {
  transition: all 0.2s;
  padding: 25px 50px;
  margin: 0 15px;
  position: relative;
  height: calc(100% - 270px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.cards__content::before {
  background-image: url(../../images/sm-bg.jpg);
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  content: "";
  z-index: -1;
  opacity: 0;
  transition: all 0.2s;
  background-position: center;
  background-size: cover;
}
.cards__content .button {
  margin-top: 40px;
  margin-bottom: 10px;
}
.cards__content p {
  margin-bottom: 5px;
}
@media (max-width: 93.74em) {
  .cards__content {
    padding: 25px;
  }
}
@media (max-width: 74.99em) {
  .cards__list {
    grid-template-columns: repeat(2, 1fr);
  }
  .cards__content::before {
    opacity: 1;
  }
  .cards__item::after {
    opacity: 1;
  }
  .cards__content .button {
    margin-top: 20px;
  }
  .cards__item h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
  .cards__content p {
    margin-bottom: 0;
  }
  .cards h2 {
    margin-bottom: 50px;
  }
}
@media (max-width: 47.99em) {
  .cards__list {
    grid-template-columns: repeat(1, 1fr);
  }
}

.object {
  display: flex;
  justify-content: space-between;
  position: relative;
}
.object:before {
  background-image: url(/storage/app/media/media/top-bg.jpg);
  display: block;
  background-position: center;
  background-size: cover;
  position: absolute;
  top: -355px;
  left: 0;
  content: "";
  width: 100%;
  height: calc(100% + 450px);
  z-index: -1;
}
.object h1 {
  margin-top: 40px;
  text-align: left;
  font-size: 2.375rem;
  letter-spacing: 0.38px;
  color: #3C3C3C;
  margin-bottom: 30px;
}
.object__description {
  text-align: center;
  padding: 180px 50px 0;
  max-width: 900px;
  margin: 0 auto;
}
.object__content {
  max-width: 25%;
  position: relative;
}
.object__info {
  margin-bottom: 25px;
}
.object__info p:not(.object__label) {
  font: normal normal normal 18px/1.9 Montserrat;
  letter-spacing: 0.18px;
  color: #3C3C3C;
  margin: 0;
}
.object__slider {
  width: 67%;
}
.object__slider .slick-list {
  width: 100%;
  height: 100%;
}
.object__slider .slick-list * {
  width: 100%;
  height: 100%;
}
.object__slider .slick-list img {
  height: 100%;
  display: block;
}
.object__slider .slick-list a {
  display: block;
  background-position: center;
  background-size: cover;
  min-height: 700px;
}
@media (max-width: 61.99em) {
  .object__slider .slick-list a {
    min-height: unset;
  }
}
.object__label {
  text-align: left;
  font: normal normal medium 16px/45px Montserrat;
  letter-spacing: -0.16px;
  color: #BA997C;
  margin: 0;
}
@media (max-width: 103.125em) {
  .object__buttons {
    margin-top: 15px;
    position: static;
  }
}
@media (max-width: 93.74em) {
  .object__content {
    max-width: 28%;
  }
}
@media (max-width: 74.99em) {
  .object {
    flex-direction: column;
    flex-direction: column-reverse;
  }
  .object__slider {
    width: 100%;
    height: 50vw;
    min-height: 300px;
    margin-top: 30px;
  }
  .object__slider + .cards__add {
    top: 55px;
  }
  .object__content {
    max-width: unset;
    display: flex;
    flex-wrap: wrap;
  }
  .object__content h1 {
    width: 100%;
    margin-right: 5vw;
  }
  .object__info {
    width: 31%;
    margin-right: 2%;
  }
}
@media (max-width: 61.99em) {
  .object__description {
    margin-top: 50px;
    padding: 100px 15px 0;
  }
  .object__info p:not(.object__label) {
    font-size: 16px;
  }
}
@media (max-width: 47.99em) {
  .object__info {
    width: 50%;
    margin-bottom: 15px;
  }
}
@media (max-width: 35.99em) {
  .object__info {
    width: 100%;
    margin-bottom: 10px;
  }
}

.icons-section {
  margin-top: 100px;
}
.icons-section h2 {
  text-align: center;
}
.icons-section__list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8vw;
  padding: 70px 50px;
}
.icons-section__list li {
  padding: 0;
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
}
.icons-section__list li img {
  height: 100px;
  width: 100px;
}
.icons-section__list li:before {
  content: none;
}
.icons-section__list li p {
  font-size: 15px;
  letter-spacing: 0.15px;
  color: #3C3C3C;
}
.icons-section__list li p.icon-title {
  font-size: 21px;
  letter-spacing: 0.21px;
  color: #B9967C;
  margin-top: 36px;
  margin-bottom: 20px;
}
@media (max-width: 74.99em) {
  .icons-section {
    margin-top: 120px;
  }
  .icons-section__list {
    gap: 4vw;
    padding: 70px 0px;
  }
}
@media (max-width: 61.99em) {
  .icons-section__list {
    gap: 50px;
    grid-template-columns: repeat(2, 1fr);
  }
  .icons-section__list li img {
    height: 80px;
    width: 80px;
  }
}
@media (max-width: 61.99em) {
  .icons-section {
    margin-top: 50px;
  }
  .icons-section__list {
    padding: 40px 0;
  }
  .icons-section__list li p.icon-title {
    font-size: 18px;
    margin-top: 15px;
    margin-bottom: 14px;
  }
}
@media (max-width: 35.99em) {
  .icons-section__list {
    grid-template-columns: repeat(1, 1fr);
  }
}

.section-map__header {
  background-color: #3C3C3C;
  padding-bottom: 70px;
  padding-top: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.section-map__header h2 {
  color: #BA967C;
  margin: 0;
}
.section-map__header h5 {
  font-size: 1.3125rem;
  letter-spacing: 0.21px;
  color: #FFFFFF;
  margin: 0;
  font-family: "Montserrat";
}
.section-map__address {
  display: flex;
  gap: 18px;
}
@media (max-width: 47.99em) {
  .section-map__header {
    padding-bottom: 50px;
    padding-top: 50px;
    flex-direction: column;
    gap: 30px;
  }
}

.place {
  display: flex;
  justify-content: space-between;
  padding-top: 175px;
  position: relative;
  margin-bottom: 240px;
}
.place:before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  background-color: #3C3C3C;
  width: 100%;
  height: 400px;
  z-index: -1;
}
.place h2 {
  margin-top: 65px;
  padding-bottom: 65px;
  border-bottom: 1px solid #BA967C;
  color: white;
}
.place__text {
  margin-top: 90px;
  max-width: 515px;
}
.place__image {
  height: 640px;
  width: calc(100% - 700px - 5vw);
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 93.74em) {
  .place__description {
    padding-left: 0;
  }
  .place__image {
    height: 600px;
    width: calc(100% - 500px - 5vw);
  }
}
@media (max-width: 74.99em) {
  .place {
    padding-top: 100px;
  }
  .place:before {
    height: 315px;
  }
}
@media (max-width: 61.99em) {
  .place {
    flex-direction: column;
    padding-right: 35px;
    padding-top: 60px;
    margin-bottom: 120px;
  }
  .place:before {
    height: 150px;
  }
  .place__text {
    margin-top: 60px;
    max-width: unset;
  }
  .place__image {
    height: 60vw;
    width: 100%;
    margin-top: 30px;
  }
  .place h2 {
    margin-top: 0;
    padding-bottom: 25px;
  }
}
@media (max-width: 47.99em) {
  .place {
    padding-right: 20px;
    margin-bottom: 50px;
  }
}

.marker-cluster-small {
  background-color: rgba(172, 115, 82, 0.6);
}

.marker-cluster-small div {
  background-color: #BA967C;
}

.marker-cluster-medium {
  background-color: rgba(241, 211, 87, 0.6);
}

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

.marker-cluster-large {
  background-color: rgba(253, 156, 115, 0.6);
}

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

/* IE 6-8 fallback colors */
.leaflet-oldie .marker-cluster-small {
  background-color: rgb(181, 226, 140);
}

.leaflet-oldie .marker-cluster-small div {
  background-color: rgb(110, 204, 57);
}

.leaflet-oldie .marker-cluster-medium {
  background-color: rgb(241, 211, 87);
}

.leaflet-oldie .marker-cluster-medium div {
  background-color: rgb(240, 194, 12);
}

.leaflet-oldie .marker-cluster-large {
  background-color: rgb(253, 156, 115);
}

.leaflet-oldie .marker-cluster-large div {
  background-color: rgb(241, 128, 23);
}

.marker-cluster {
  background-clip: padding-box;
  border-radius: 20px;
  width: 40px !important;
}

.marker-cluster div {
  width: 30px;
  height: 30px;
  margin-left: 5px;
  margin-top: 5px;
  text-align: center;
  border-radius: 15px;
  font: 12px "Helvetica Neue", Arial, Helvetica, sans-serif;
}

.marker-cluster span {
  line-height: 30px;
  color: #fff;
}

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

.hp-top {
  height: calc(100vh + 100px);
  min-height: 1080px;
  max-height: 1200px;
  display: flex;
  padding-top: 110px;
  padding-bottom: 100px;
  width: 100%;
  position: relative;
  background-position: center;
  background-size: cover;
}
.hp-top__image {
  width: 64%;
  height: 75vh;
  min-height: 700px;
}
.hp-top__image img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
  min-height: 550px;
}
.hp-top__branding {
  margin-top: -50px;
  width: 36%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-right: 50px;
}
.hp-top__branding p {
  color: var(--h1);
  font-size: 16px;
  font-style: italic;
  margin-bottom: 0;
}
.hp-top h1 {
  margin-top: 0;
  font-size: 74px;
  text-align: center;
  font-weight: 400;
}
.hp-top__logo {
  width: 200px;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  margin-bottom: 50px;
}
.hp-top__slogan {
  text-transform: uppercase;
  text-align: center;
}
.hp-top__slogan.mt {
  margin-top: 10px;
}
.hp-top__name {
  margin-top: 15px;
}
@media (max-width: 93.74em) {
  .hp-top__branding p, .hp-top__slogan {
    font-size: 15px;
  }
  .hp-top h1 {
    font-size: 52px;
  }
  .hp-top__logo {
    width: 170px;
    margin-bottom: 30px;
  }
}
@media (max-width: 74.99em) {
  .hp-top {
    min-height: 1300px;
  }
  .hp-top__branding {
    margin-top: 0px;
    position: relative;
    z-index: 1;
    width: 430px;
  }
  .hp-top__image {
    width: calc(100% - 430px);
    height: 100vh;
    min-height: 1000px;
  }
}
@media (max-width: 61.99em) {
  .hp-top {
    padding-top: 50px;
    flex-direction: column;
  }
  .hp-top__image {
    display: none;
  }
  .hp-top__branding {
    width: 100%;
    padding: 0 30px;
  }
}
@media (max-width: 47.99em) {
  .hp-top {
    height: unset;
    max-height: unset;
  }
  .hp-top__branding p, .hp-top__slogan {
    font-size: 14px;
  }
  .hp-top h1 {
    font-size: 45px;
  }
  .hp-top__logo {
    width: 100px;
  }
}

.about {
  margin-top: 100px;
  padding-top: 200px;
  padding-bottom: 100px;
  position: relative;
  background-position: center;
  background-size: cover;
}
.about h2 {
  font-size: 3.4375rem;
}
.about__top {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: 60px;
}
.about__top p {
  color: #BA967C;
  margin-left: auto;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 500;
}
.about__logo {
  -o-object-fit: contain;
     object-fit: contain;
  position: absolute;
  top: -30px;
  left: 560px;
  height: 160px;
}
.about__content-container {
  display: flex;
  background-color: var(--paletteColor1);
  margin-top: 50px;
}
.about__2-columns {
  -moz-column-count: 2;
       column-count: 2;
  -moz-column-gap: 50px;
       column-gap: 50px;
}
.about__welcome {
  font-size: 21px !important;
  color: var(--paletteColor2) !important;
}
.about__text {
  padding: 40px 60px 100px;
  width: 70%;
}
.about__text p {
  color: white;
  font-size: 0.875rem;
  letter-spacing: -0.15px;
  line-height: 1.8;
  -moz-column-break-inside: avoid;
       break-inside: avoid-column;
}
.about__text h3 {
  color: #BA967C;
  font-size: 28px;
  font-family: "Montserrat";
}
.about__text h6 {
  color: white;
  font-family: "Montserrat";
  font-size: 20px;
}
.about__image {
  position: absolute;
  right: 0;
  position: absolute;
  max-width: 30%;
  top: 100px;
  bottom: 250px;
}
.about__image img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.about__contacts {
  display: flex;
  flex-direction: column;
  margin-top: 30px;
}
.about__contacts a {
  margin-top: 5px;
  color: white;
  font-style: italic;
}
.about__contacts a:hover {
  color: var(--paletteColor2);
}
@media (max-width: 93.74em) {
  .about__image {
    bottom: unset;
    max-width: 32%;
  }
  .about__text {
    padding: 40px 40px 60px;
    width: 68%;
  }
}
@media (max-width: 74.99em) {
  .about__logo {
    left: unset;
    right: -200px;
  }
  .about__top {
    margin-left: 40px;
  }
}
@media (max-width: 61.99em) {
  .about__image {
    position: static;
  }
  .about__content-container {
    flex-direction: column;
  }
  .about__text {
    padding: 40px;
    width: 100%;
  }
  .about__image {
    padding-left: 40px;
    display: flex;
    max-width: 100%;
    margin-bottom: 60px;
  }
  .about__image img {
    width: calc(50% - 45px);
    margin-right: 50px;
  }
}
@media (max-width: 47.99em) {
  .about {
    padding-top: 100px;
  }
  .about h2 {
    font-size: 2.8125rem;
  }
  .about__logo {
    height: 100px;
  }
  .about__top {
    margin-left: 0;
  }
  .about__text {
    padding: 40px 20px;
  }
  .about__2-columns {
    gap: 30px;
  }
  .about__image {
    padding-left: 20px;
  }
  .about__image img {
    width: calc(50% - 25px);
    margin-right: 30px;
  }
  .about__contacts {
    margin-right: 20px;
  }
}
@media (max-width: 35.99em) {
  .about__logo {
    display: none;
  }
  .about__2-columns {
    -moz-columns: 1;
         columns: 1;
  }
  .about__text {
    padding-bottom: 20px;
  }
  .about__text p {
    font-size: 1.125rem;
  }
  .about__image {
    flex-direction: column;
  }
  .about__image img {
    width: 100%;
    padding-right: 20px;
  }
}

.branding {
  text-align: center;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: flex-end;
  padding-bottom: 75px;
}
.branding__name {
  margin-top: 15px;
}
.branding .divisio {
  background-color: white;
}
.branding p {
  font-size: 16px;
  font-style: italic;
  margin-bottom: 0;
}
.branding h2 {
  margin-top: 0;
  font-size: 74px;
  text-align: center;
  font-weight: 400;
}
.branding * {
  color: white;
  text-shadow: 0 0 11px #000000;
}
@media (max-width: 93.74em) {
  .branding h2 {
    font-size: 64px;
  }
}
@media (max-width: 61.99em) {
  .branding h2 {
    font-size: 50px;
  }
  .branding p {
    font-size: 1rem;
  }
}
@media (max-width: 35.99em) {
  .branding h2 {
    font-size: 40px;
  }
  .branding p {
    font-size: 0.875rem;
  }
}

.container {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(300px, 1fr) 1fr 1fr 1fr 1fr;
  grid-template-rows: 15vw 20vw;
  gap: 15px;
  grid-auto-flow: row;
  grid-template-areas: "a1 a1 a2 a3 a3 a4" "a1 a1 a5 a5 a6 a6";
}
@media (max-width: 93.74em) {
  .container {
    grid-template-columns: minmax(250px, 1fr) minmax(250px, 1fr) 1fr 1fr 1fr 1fr;
  }
}
@media (max-width: 61.99em) {
  .container {
    grid-template-columns: minmax(200px, 1fr) minmax(200px, 1fr) 1fr;
    grid-template-rows: 30vw 30vw 20vw;
    grid-template-areas: "a1 a1 a2" "a1 a1 a3" "a4 a5 a6";
  }
}
@media (max-width: 35.99em) {
  .container {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "a1 a1" "a1 a1" "a2 a3" "a4 a4" "a5 a6";
    grid-template-rows: repeat(5, 200px);
    gap: 10px;
  }
}

.a1 {
  grid-area: a1;
}

.a2 {
  grid-area: a2;
}

.a3 {
  grid-area: a3;
}

.a4 {
  grid-area: a4;
}

.a5 {
  grid-area: a5;
}

.a6 {
  grid-area: a6;
}

.hp-gallery {
  background-size: cover;
  background-position: center;
  padding-top: 100px;
  margin-top: 100px;
}
.hp-gallery img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.hp-gallery__image_main {
  background-size: cover;
  background-position: center;
}
