@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
*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
:root {
  --animate-duration:1s;
  --animate-delay:1s;
  --animate-repeat:1;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.animate__delay-05s {
  animation-delay: 0.5s;
}

.animate__delay-04s {
  animation-delay: 0.4s;
}

.animate__delay-03s {
  animation-delay: 0.3s;
}

.animate__delay-02s {
  animation-delay: 0.2s;
}

@keyframes animate_copy_top {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0px);
    opacity: 1;
  }
}
.animate-copy.animated {
  animation: animate_copy_top;
  animation-duration: 1s;
}
.animate-copy.animated span {
  animation: animate_copy_top;
  animation-duration: 1s;
  animation-delay: 0.3s;
  animation-fill-mode: both;
}
.animate-copy.animated span:nth-child(2) {
  animation-delay: 0.6s;
}
.animate-copy.animated span:nth-child(3) {
  animation-delay: 0.9s;
}
.animate-copy.animated span:nth-child(4) {
  animation-delay: 1.2s;
}

.loop-scale-animation {
  animation: loop-scale 2s linear infinite;
}

@keyframes loop-scale {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes fadein_from_bottom {
  from {
    opacity: 0;
    transform: translateY(100%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadein_from_bottom_half {
  from {
    opacity: 0;
    transform: translateY(30%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadein_from_left {
  from {
    opacity: 0;
    transform: translateX(-100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadein_from_right {
  from {
    opacity: 0;
    transform: translateX(100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.ds-section .container, header .container, footer .container {
  width: 100%;
  padding: 0 20px;
}
@media (min-width: 1200px) {
  .ds-section .container, header .container, footer .container {
    max-width: 1620px;
  }
}
@media (max-width: 1199px) {
  .ds-section .container, header .container, footer .container {
    max-width: 1199px;
  }
}
@media (max-width: 991px) {
  .ds-section .container, header .container, footer .container {
    padding: 0 15px;
  }
}
.ds-section .row, header .row, footer .row {
  flex-wrap: wrap;
  display: flex;
}
.ds-section .row::before, .ds-section .row::after, header .row::before, header .row::after, footer .row::before, footer .row::after {
  display: none;
}

.container-fluid.category-products {
  position: static;
}
.container-fluid.category-products > .row {
  position: static;
}
.container-fluid.category-products .row.product-category-description {
  position: static;
}
.container-fluid.category-products .row.product-category-description > div {
  position: static;
}
.container-fluid.category-products .row.product-category-description > div main {
  position: static;
}

.ds-section .col-12, header .col-12, footer .col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}
.ds-section .col-6, header .col-6, footer .col-6 {
  flex: 0 0 50%;
  max-width: 50%;
}
.ds-section .col-4, header .col-4, footer .col-4 {
  flex: 0 0 33.33333%;
  max-width: 33.33333%;
}
.ds-section .col-3, header .col-3, footer .col-3 {
  flex: 0 0 25%;
  max-width: 25%;
}
@media (min-width: 992px) {
  .ds-section .col-lg-8, header .col-lg-8, footer .col-lg-8 {
    flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
  }
}
@media (min-width: 992px) {
  .ds-section .col-lg-6, header .col-lg-6, footer .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media (min-width: 992px) {
  .ds-section .col-lg-4, header .col-lg-4, footer .col-lg-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
}
@media (min-width: 992px) {
  .ds-section .col-lg-3, header .col-lg-3, footer .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
}
.ds-section .order-0, header .order-0, footer .order-0 {
  order: 0;
}
.ds-section .order-1, header .order-1, footer .order-1 {
  order: 1;
}
.ds-section .order-2, header .order-2, footer .order-2 {
  order: 2;
}
@media (min-width: 992px) {
  .ds-section .order-lg-0, header .order-lg-0, footer .order-lg-0 {
    order: 0;
  }
}
@media (min-width: 992px) {
  .ds-section .order-lg-1, header .order-lg-1, footer .order-lg-1 {
    order: 1;
  }
}
@media (min-width: 992px) {
  .ds-section .order-lg-2, header .order-lg-2, footer .order-lg-2 {
    order: 2;
  }
}

.cbtn {
  font-size: 16px;
  line-height: 28px;
  color: #000;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition: background 0.3s, color 0.3s, border 0.3s, filter 0.3s;
  border: 1px solid #D6D6D6;
  border-radius: 5px;
  background: #EDEDED;
  padding: 0 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}
.cbtn a {
  text-decoration: none;
}
@media (max-width: 1400px) {
  .cbtn {
    font-size: 16px;
    line-height: 26px;
  }
}
@media (max-width: 1199px) {
  .cbtn {
    font-size: 14px;
    line-height: 24px;
  }
}
@media (max-width: 767px) {
  .cbtn {
    font-size: 3.56vw;
    line-height: 5.34vw;
    padding: 0.5vw 2.29vw;
    gap: 1.27vw;
    border-radius: 1.27vw;
  }
}
.cbtn:hover {
  text-decoration: none;
  color: #000;
}
.cbtn-hidden {
  display: none !important;
}
.cbtn-default:hover {
  background: #D6D6D6;
}
.cbtn-light {
  border: 1px solid #929292;
  color: #929292;
  background: white;
}
.cbtn-light a {
  color: #929292;
}
.cbtn-light:hover {
  border: 1px solid black;
}
.cbtn-big {
  padding: 8px 40px;
  border-radius: 7.5px;
}
@media (max-width: 767px) {
  .cbtn-big {
    padding: 2.04vw 7.63vw;
    font-size: 3.56vw;
  }
}
.cbtn-big img {
  width: 15px;
  height: auto;
  gap: 6px;
}
@media (max-width: 767px) {
  .cbtn-big img {
    width: 3.05vw;
  }
}
.cbtn-semi-dark {
  color: black;
  border: 1px solid black;
}
.cbtn-semi-dark:hover {
  background: #D6D6D6;
}
.cbtn-black {
  background: black;
  color: white;
  border: 1px solid black;
}
.cbtn-black img {
  filter: brightness(0) invert(1);
}
.cbtn-black:hover {
  background: #ED1B24;
  border: 1px solid #ED1B24;
  color: white;
}
.cbtn-semi-black {
  border: 1px solid black;
  color: black;
}
.cbtn-semi-black:hover {
  color: white;
  background: black;
}
.cbtn-semi-black:hover a {
  color: white;
}
.cbtn-semi-black a {
  color: black;
}
.cbtn-min-width {
  min-width: 153px;
  justify-content: space-evenly;
}
@media (max-width: 1400px) {
  .cbtn-min-width {
    min-width: 123px;
  }
}
@media (max-width: 1199px) {
  .cbtn-min-width {
    min-width: 0;
  }
}
.cbtn-gradient {
  background: linear-gradient(90deg, #FCDB40 0%, #FFBEC2 33.33%, #EDCFFF 66.67%, #CD90F1 100%) no-repeat;
}
.cbtn-gradient:hover {
  filter: brightness(1.1);
}
@media (max-width: 767px) {
  .cbtn.smaller-font-mobile {
    font-size: 10px;
  }
}

main .mini-logo-badge {
  margin-left: 2px;
}
@media (max-width: 991px) {
  main .mini-logo-badge {
    width: 37px;
    height: auto;
  }
}
@media (max-width: 767px) {
  main .mini-logo-badge {
    width: 9.41vw;
    margin-left: 0.5vw;
  }
}
@media (min-width: 992px) {
  main br.mobile {
    display: none;
  }
}
main h2 {
  color: #000;
  text-align: center;
  font-family: Poppins;
  font-size: 25px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.4em;
  padding: 0;
  margin: 0;
}
@media (max-width: 991px) {
  main h2 {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  main h2 {
    font-size: 5.09vw;
  }
}
main h2 .klub-gold {
  height: 1em;
  margin-bottom: 0 !important;
  transform: translateY(-0.2em);
  width: auto;
  display: inline-block;
  vertical-align: middle;
}
main h3 {
  color: #000;
  font-family: Poppins;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.4em;
}
@media (max-width: 991px) {
  main h3 {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  main h3 {
    font-size: 4.07vw;
  }
}
main p {
  margin: 0px;
  color: #000;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.4em;
}
main p strong {
  font-weight: 600;
}
@media (max-width: 1400px) {
  main p {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  main p {
    font-size: 12px;
  }
}
@media (max-width: 767px) {
  main p {
    font-size: 3.05vw;
  }
}
main section {
  margin-top: 25px;
}
@media (max-width: 767px) {
  main section {
    margin-top: 7.63vw;
  }
}
main section.ds-section {
  overflow: hidden;
}
main section.ds-section.no-margin-top {
  margin-top: 0;
}
main section .container {
  padding: 0 35px;
}
@media (max-width: 991px) {
  main section .container {
    padding: 0 15px;
  }
}
@media (max-width: 767px) {
  main section .container {
    padding: 0 2.05vw;
  }
}
main section .container .row .section-title {
  padding: 25px 15px;
  padding-bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media (max-width: 991px) {
  main section .container .row .section-title.no-padding-top-mobile {
    padding-top: 0;
  }
}
main section .container .row .section-title.small-padding-top {
  padding-top: 15px;
}
@media (max-width: 991px) {
  main section .container .row .section-title.small-padding-top {
    padding-top: 10px;
  }
}
@media (max-width: 767px) {
  main section .container .row .section-title.small-padding-top {
    padding-top: 3.82vw;
  }
}
@media (max-width: 991px) {
  main section .container .row .section-title {
    padding: 15px 10px;
    gap: 15px;
    text-align: center;
  }
}
@media (max-width: 767px) {
  main section .container .row .section-title {
    padding: 3.82vw 2.54vw;
    gap: 3.82vw;
    padding-bottom: 7.63vw;
  }
  main section .container .row .section-title.bigger-top-margin {
    padding-top: 7.63vw;
    padding-bottom: 3.82vw;
  }
}
main section .container .row .section-title h2,
main section .container .row .section-title h3 {
  text-align: center;
  margin: 0;
  padding: 0;
}
main section .container .row .section-title h2 span,
main section .container .row .section-title h3 span {
  font-size: 1.2em;
  -webkit-text-stroke: 1px black;
  color: white;
  font-style: italic;
  font-weight: 700;
  text-shadow: 1px 1px 0px rgb(0, 0, 0);
}
main section .container .row .section-title .text-left {
  text-align: left;
}
main section .container .row .section-title p {
  text-align: left;
}

section.banner-klub {
  position: relative;
  min-width: 100%;
  margin-top: 0;
}
section.banner-klub .description-container {
  position: relative;
  z-index: 10;
  max-width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 991px) {
  section.banner-klub .description-container {
    max-width: 100%;
  }
}
section.banner-klub .content {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
@media (max-width: 991px) {
  section.banner-klub .content {
    margin-top: 15px;
    gap: 15px;
    min-height: 65vw;
  }
}
@media (max-width: 767px) {
  section.banner-klub .content {
    gap: 3.82vw;
    margin-top: 3.82vw;
  }
}
section.banner-klub .content .klub-logo {
  height: 20px;
  position: relative;
  top: -2px;
}
@media (max-width: 991px) {
  section.banner-klub .content .klub-logo {
    height: 16px;
  }
}
@media (max-width: 767px) {
  section.banner-klub .content .klub-logo {
    top: -0.5vw;
    height: 4.07vw;
  }
}
section.banner-klub .content h2 {
  margin: 0px;
}
@media (max-width: 991px) {
  section.banner-klub .content h2 {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4em;
    padding-top: 0;
    margin-top: 50vw;
  }
}
@media (max-width: 767px) {
  section.banner-klub .content h2 {
    font-size: 5.09vw;
  }
}
section.banner-klub .content p {
  text-align: center;
  font-size: 18px;
  font-weight: 400;
}
section.banner-klub .content p strong {
  font-weight: 600;
}
@media (max-width: 991px) {
  section.banner-klub .content p {
    max-width: 100%;
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  section.banner-klub .content p {
    font-size: 3.56vw;
  }
}
section.banner-klub .content .btns-container {
  display: flex;
  justify-content: center;
}
section.banner-klub .content .btns-container a {
  text-decoration: none;
}
section.banner-klub .background-container {
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 5;
}
section.banner-klub .background-container img {
  height: 100%;
  width: 100%;
  object-fit: fill;
}
@media (max-width: 991px) {
  section.banner-klub .background-container img {
    object-fit: cover;
    object-position: center top;
  }
}
section.banner-klub .background-container img.desktop {
  display: block;
}
@media (max-width: 991px) {
  section.banner-klub .background-container img.desktop {
    display: none;
  }
}
section.banner-klub .background-container img.mobile {
  display: none;
}
@media (max-width: 991px) {
  section.banner-klub .background-container img.mobile {
    display: block;
  }
}

section.klub-ulotki {
  margin-top: 0px;
}
section.klub-ulotki .container.leaflets-container-klub {
  padding: 0 5px;
}
@media (max-width: 767px) {
  section.klub-ulotki .container.leaflets-container-klub {
    padding: 0 1.27vw;
  }
}
section.klub-ulotki .container.leaflets-container-klub .leaflets-title {
  padding: 30px 0px 30px;
}
@media (max-width: 767px) {
  section.klub-ulotki .container.leaflets-container-klub .leaflets-title {
    padding: 5.09vw 0 5.09vw;
  }
}
section.klub-ulotki .container.leaflets-container-klub .klub-logo {
  height: 20px;
  position: relative;
  top: -2px;
}
@media (max-width: 991px) {
  section.klub-ulotki .container.leaflets-container-klub .klub-logo {
    height: 16px;
  }
}
@media (max-width: 767px) {
  section.klub-ulotki .container.leaflets-container-klub .klub-logo {
    height: 4.07vw;
    top: -0.5vw;
  }
}
section.klub-ulotki .container.leaflets-container-klub .section-leaflets {
  justify-content: start;
  position: relative;
  margin: auto;
  gap: 5px;
}
@media (max-width: 767px) {
  section.klub-ulotki .container.leaflets-container-klub .section-leaflets {
    gap: 1.27vw;
  }
}
section.klub-ulotki .container.leaflets-container-klub .section-leaflets .leaflets-tile {
  flex-basis: calc(16.6666666667% - 4.17px);
  height: auto;
  background-color: #F5F5F5;
  border-radius: 8px;
  position: relative;
  text-align: center;
  align-content: flex-end;
  cursor: pointer;
  transition: background 0.3s, filter 0.3s;
}
@media (max-width: 991px) {
  section.klub-ulotki .container.leaflets-container-klub .section-leaflets .leaflets-tile {
    flex-basis: calc(25% - 3.9px);
  }
}
@media (max-width: 767px) {
  section.klub-ulotki .container.leaflets-container-klub .section-leaflets .leaflets-tile {
    flex-basis: calc(45% - 0.64vw);
    border-radius: 1.53vw;
    padding-bottom: 2.54vw;
  }
}
section.klub-ulotki .container.leaflets-container-klub .section-leaflets .leaflets-tile:hover {
  background: #e7e7e7;
  filter: drop-shadow(0px 0px 2px rgba(0, 0, 0, 0.25));
}
@media (max-width: 767px) {
  section.klub-ulotki .container.leaflets-container-klub .section-leaflets .leaflets-tile:hover {
    filter: drop-shadow(0px 0px 0.5vw rgba(0, 0, 0, 0.25));
  }
}
section.klub-ulotki .container.leaflets-container-klub .section-leaflets .leaflets-tile .leaflets-img {
  display: flex;
  justify-self: anchor-center;
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin: auto;
}
@media (max-width: 767px) {
  section.klub-ulotki .container.leaflets-container-klub .section-leaflets .leaflets-tile .leaflets-img {
    border-radius: 1.53vw;
  }
}
section.klub-ulotki .container.leaflets-container-klub .section-leaflets .leaflets-tile .kubek-kolorowy {
  margin-top: 20px;
  width: 80%;
}
@media (max-width: 767px) {
  section.klub-ulotki .container.leaflets-container-klub .section-leaflets .leaflets-tile .kubek-kolorowy {
    margin-top: 5.09vw;
  }
}
section.klub-ulotki .container.leaflets-container-klub .section-leaflets .leaflets-tile .img-kubki {
  margin-left: 40px;
}
@media (max-width: 767px) {
  section.klub-ulotki .container.leaflets-container-klub .section-leaflets .leaflets-tile .img-kubki {
    margin-left: 10.18vw;
  }
}
section.klub-ulotki .container.leaflets-container-klub .section-leaflets .leaflets-tile .leaflets-text-container {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}
@media (max-width: 767px) {
  section.klub-ulotki .container.leaflets-container-klub .section-leaflets .leaflets-tile .leaflets-text-container {
    bottom: 2.54vw;
  }
}
section.klub-ulotki .container.leaflets-container-klub .section-leaflets .leaflets-tile .leaflets-text {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.6em;
}
@media (max-width: 767px) {
  section.klub-ulotki .container.leaflets-container-klub .section-leaflets .leaflets-tile .leaflets-text {
    font-size: 3.05vw;
    line-height: 1.4em;
  }
}
@media (max-width: 767px) {
  section.klub-ulotki .container.leaflets-container-klub .section-leaflets .leaflets-tile .leaflets-text.smaller-mobile {
    font-size: 2.54vw;
  }
}
section.klub-ulotki .container.leaflets-container-klub .section-leaflets .leaflets-tile .leaflets-text .text-del {
  color: #727272;
  margin-right: 5px;
  font-weight: 700;
}
@media (max-width: 767px) {
  section.klub-ulotki .container.leaflets-container-klub .section-leaflets .leaflets-tile .leaflets-text .text-del {
    margin-right: 1.27vw;
  }
}
section.klub-ulotki .container.leaflets-container-klub .section-leaflets .leaflets-tile .leaflets-text strong {
  font-weight: 700;
}
section.klub-ulotki .container.leaflets-container-klub .section-leaflets .leaflets-tile .leaflets-text-absolute {
  width: 100%;
  font-size: 12px;
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 767px) {
  section.klub-ulotki .container.leaflets-container-klub .section-leaflets .leaflets-tile .leaflets-text-absolute {
    font-size: 3.05vw;
    bottom: 2.54vw;
  }
}
@media (max-width: 400px) {
  section.klub-ulotki .container.leaflets-container-klub .section-leaflets .leaflets-tile .leaflets-img {
    width: 100%;
  }
}
section.klub-ulotki .container.leaflets-container-klub .section-leaflets .x {
  padding-bottom: 0px;
}
section.klub-ulotki .container.leaflets-container-klub .section-leaflets .leaflets-rabat {
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  padding-right: 15px;
  padding-left: 15px;
}
section.klub-ulotki .container.leaflets-container-klub .section-leaflets .leaflets-rabat .leaflet-highlightText {
  padding-bottom: 15px;
  display: block;
  font-size: 22px;
}
@media (max-width: 767px) {
  section.klub-ulotki .container.leaflets-container-klub .section-leaflets .leaflets-rabat .leaflet-highlightText {
    padding-bottom: 2.54vw;
    font-size: 4.58vw;
  }
}
@media (min-width: 1367px) {
  section.klub-ulotki .container.leaflets-container-klub .section-leaflets .leaflets-tile {
    font-size: 12px;
  }
}
@media (max-width: 991px) {
  section.klub-ulotki .container.leaflets-container-klub .section-leaflets {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
  }
  section.klub-ulotki .container.leaflets-container-klub .leaflets-tile {
    flex: 0 0 auto;
    scroll-snap-align: start;
  }
}
section.klub-ulotki .container.leaflets-container-klub .info-container {
  text-align: right;
  margin-top: 13px;
}
@media (max-width: 767px) {
  section.klub-ulotki .container.leaflets-container-klub .info-container {
    margin-top: 1.27vw;
  }
}
section.klub-ulotki .container.leaflets-container-klub .info-container p {
  font-size: 12px;
  color: #a0a0a0;
  line-height: 1.4em;
}
@media (max-width: 767px) {
  section.klub-ulotki .container.leaflets-container-klub .info-container p {
    font-size: 2.04vw;
  }
}
@media (max-width: 767px) {
  section.klub-ulotki .leaflets-container {
    padding-left: 1.27vw;
    padding-right: 1.27vw;
  }
}

@media (max-width: 767px) {
  .section-adds-klub {
    margin-top: 5.09vw;
  }
}
.section-adds-klub .container .row {
  display: flex;
  flex-wrap: nowrap;
  gap: 5px;
}
.section-adds-klub .container .row .section-text {
  padding: 40px 0;
  padding-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media (max-width: 991px) {
  .section-adds-klub .container .row .section-text {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 767px) {
  .section-adds-klub .container .row .section-text {
    padding: 7.63vw 0;
    padding-top: 0;
    gap: 5.6vw;
    padding-left: 5.09vw;
    padding-right: 5.09vw;
  }
}
.section-adds-klub .container .row .section-text .klub-logo {
  height: 20px;
  position: relative;
  top: -2px;
}
@media (max-width: 991px) {
  .section-adds-klub .container .row .section-text .klub-logo {
    height: 16px;
  }
}
@media (max-width: 767px) {
  .section-adds-klub .container .row .section-text .klub-logo {
    height: 4.07vw;
    top: -0.5vw;
  }
}
.section-adds-klub .container .row .section-text p {
  justify-self: center;
  text-align: center;
  font-size: 20px;
}
@media (max-width: 991px) {
  .section-adds-klub .container .row .section-text p {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .section-adds-klub .container .row .section-text p {
    font-size: 4.07vw;
  }
}
@media (max-width: 991px) {
  .section-adds-klub .container .row {
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .section-adds-klub .container .row {
    gap: 1.27vw;
  }
}
.section-adds-klub .container .row .cross-item {
  flex: 50%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 991px) {
  .section-adds-klub .container .row .cross-item {
    flex: 100%;
    padding: 0 5px;
  }
}
@media (max-width: 767px) {
  .section-adds-klub .container .row .cross-item {
    padding: 0 1.27vw;
  }
}
.section-adds-klub .container .row .cross-item .thumbnail-container-klub {
  background-color: #F5F5F5;
  position: relative;
  text-align: center;
  padding: 20px 0;
  width: 100%;
  height: auto;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .section-adds-klub .container .row .cross-item .thumbnail-container-klub {
    padding: 4.07vw 0;
  }
}
.section-adds-klub .container .row .cross-item .thumbnail-container-klub .btns-container {
  display: flex;
  justify-content: center;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .section-adds-klub .container .row .cross-item .thumbnail-container-klub .btns-container {
    margin-top: 3.05vw;
  }
}
.section-adds-klub .container .row .cross-item .thumbnail-container-klub .klub-cena {
  padding: 10px 0px;
  display: flex;
  text-align: center;
  justify-content: center;
  gap: 10px;
  place-items: self-end;
}
@media (max-width: 767px) {
  .section-adds-klub .container .row .cross-item .thumbnail-container-klub .klub-cena {
    padding: 2.54vw 0;
    gap: 2.54vw;
  }
}
.section-adds-klub .container .row .cross-item .thumbnail-container-klub .klub-cena .price {
  color: #000;
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
}
@media (max-width: 767px) {
  .section-adds-klub .container .row .cross-item .thumbnail-container-klub .klub-cena .price {
    font-size: 6.36vw;
  }
}
.section-adds-klub .container .row .cross-item .thumbnail-container-klub .klub-cena .text-klub {
  position: relative;
  top: -6px;
  font-weight: 600;
}
@media (max-width: 767px) {
  .section-adds-klub .container .row .cross-item .thumbnail-container-klub .klub-cena .text-klub {
    top: -1.53vw;
  }
}
.section-adds-klub .container .row .cross-item .thumbnail-container-klub .thumbnail-header {
  margin: 0px;
  color: #000;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
}
@media (max-width: 767px) {
  .section-adds-klub .container .row .cross-item .thumbnail-container-klub .thumbnail-header {
    font-size: 4.07vw;
  }
}
@media (max-width: 767px) {
  .section-adds-klub .container .row .cross-item .thumbnail-container-klub {
    border-radius: 2.04vw;
  }
}
.section-adds-klub .container .row .cross-item .thumbnail-container-klub img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section-adds-klub .container .row .cross-item .text-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 15px;
  flex-grow: 1;
  height: 100%;
  align-self: stretch;
}
@media (max-width: 991px) {
  .section-adds-klub .container .row .cross-item .text-container {
    gap: 15px;
  }
}
@media (max-width: 767px) {
  .section-adds-klub .container .row .cross-item .text-container {
    gap: 3.82vw;
    padding: 3.82vw;
  }
}
.section-adds-klub .container .row .cross-item .text-container h3 {
  font-size: 20px;
  line-height: 1.4em;
  font-weight: 600;
  margin: 0;
}
@media (max-width: 991px) {
  .section-adds-klub .container .row .cross-item .text-container h3 {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .section-adds-klub .container .row .cross-item .text-container h3 {
    font-size: 3.56vw;
  }
}
.section-adds-klub .container .row .cross-item .text-container p {
  margin: 0;
}
.section-adds-klub .container .row .cross-item .text-container .cbtn {
  align-self: flex-end;
  margin-top: auto;
}
.section-additional-options-klub .container .row {
  text-align: center;
  gap: 5px;
}
.section-additional-options-klub .container .row .section-title-klub {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 40px 0;
  padding-top: 10px;
}
@media (max-width: 991px) {
  .section-additional-options-klub .container .row .section-title-klub {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (max-width: 767px) {
  .section-additional-options-klub .container .row .section-title-klub {
    gap: 5.6vw;
    padding: 7.64vw;
    padding-top: 0;
    padding-left: 5.09vw;
    padding-right: 5.09vw;
  }
}
.section-additional-options-klub .container .row .section-title-klub h2 .klub-logo {
  height: 20px;
  position: relative;
  top: -2px;
}
@media (max-width: 991px) {
  .section-additional-options-klub .container .row .section-title-klub h2 .klub-logo {
    height: 16px;
  }
}
@media (max-width: 767px) {
  .section-additional-options-klub .container .row .section-title-klub h2 .klub-logo {
    height: 4.07vw;
    top: -0.5vw;
  }
}
.section-additional-options-klub .container .row .section-title-klub .header-text-klub {
  justify-self: center;
  font-size: 20px;
}
@media (max-width: 991px) {
  .section-additional-options-klub .container .row .section-title-klub .header-text-klub {
    font-size: 16px;
  }
  .section-additional-options-klub .container .row .section-title-klub .header-text-klub br {
    display: none;
  }
}
@media (max-width: 767px) {
  .section-additional-options-klub .container .row .section-title-klub .header-text-klub {
    font-size: 4.07vw;
  }
}
.section-additional-options-klub .container .row .tile-korzysci-klub {
  border-radius: 5px;
  background-color: #F5F5F5;
  padding: 20px;
  flex: calc(33.3333333333% - 3.3333333333px);
}
@media (max-width: 991px) {
  .section-additional-options-klub .container .row .tile-korzysci-klub {
    flex: 100%;
  }
}
@media (max-width: 767px) {
  .section-additional-options-klub .container .row .tile-korzysci-klub {
    border-radius: 1.27vw;
    padding: 5.09vw;
  }
}
.section-additional-options-klub .container .row .tile-korzysci-klub .ikona-text {
  font-size: 34px;
  font-style: normal;
  font-weight: 400;
  color: #9981E1;
}
@media (max-width: 767px) {
  .section-additional-options-klub .container .row .tile-korzysci-klub .ikona-text {
    font-size: 8.65vw;
    line-height: 1em;
  }
}
.section-additional-options-klub .container .row .tile-korzysci-klub h3 {
  margin: 0px;
  padding: 15px 0;
}
@media (max-width: 767px) {
  .section-additional-options-klub .container .row .tile-korzysci-klub h3 {
    padding: 3.82vw 0;
    padding-bottom: 1.27vw;
  }
}
.section-additional-options-klub .container .row .tile-korzysci-klub .ikona-img {
  height: 50px;
}
@media (max-width: 767px) {
  .section-additional-options-klub .container .row .tile-korzysci-klub .ikona-img {
    height: 12.72vw;
  }
}
.section-additional-options-klub .container .btns-container {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .section-additional-options-klub .container .btns-container {
    margin-top: 5.09vw;
  }
}
.section-additional-options-klub .container .btns-container a {
  text-decoration: none;
}

main {
  background: #FFF;
}
main section.banner-2 {
  position: relative;
  min-width: 100%;
  margin-top: 0;
  height: 267px;
  background: #F5C8E6;
}
main section.banner-2.banner-2-klub {
  background: #B8B8FF;
}
main section.banner-2.banner-2-klub .container .background-container::before {
  background: linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, #B8B8FF 80.21%);
}
main section.banner-2.banner-2-klub .container .background-container::after {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #B8B8FF 80.21%);
}
main section.banner-2.banner-premium {
  background: #4545CD;
}
main section.banner-2.banner-premium .background-container::before {
  background: linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, #4545CD 80.21%) !important;
}
main section.banner-2.banner-premium .background-container::after {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #4545CD 80.21%) !important;
}
main section.banner-2.banner-premium .container .content h2, main section.banner-2.banner-premium .container .content p {
  color: white;
}
main section.banner-2.banner-premium .container .navigation p {
  color: white;
}
main section.banner-2.banner-premium .container .navigation p span {
  color: lightgray;
}
@media (max-width: 767px) {
  main section.banner-2 {
    height: 89vw;
  }
}
main section.banner-2 .container {
  height: 100%;
  position: relative;
}
main section.banner-2 .description-container {
  position: relative;
  z-index: 10;
  max-width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 767px) {
  main section.banner-2 .description-container {
    max-width: 100%;
  }
}
main section.banner-2 .content {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  height: 100%;
  justify-content: start;
}
@media (max-width: 767px) {
  main section.banner-2 .content {
    padding-top: 45.55vw;
    margin-top: 0vw;
    gap: 3.54vw;
    padding-bottom: 12.7vw;
    min-height: 65vw;
  }
}
main section.banner-2 .content h2 {
  margin: 0px;
}
@media (max-width: 767px) {
  main section.banner-2 .content h2 {
    font-size: 5.09vw;
    padding-bottom: 0;
    padding-top: 0;
    line-height: 1.4em;
    font-weight: 600;
  }
}
main section.banner-2 .content p {
  text-align: center;
  font-size: 18px;
  font-weight: 400;
}
main section.banner-2 .content p strong {
  font-weight: 600;
}
@media (max-width: 767px) {
  main section.banner-2 .content p {
    font-size: 3.56vw;
    max-width: 100%;
  }
}
main section.banner-2 .content .btns-container {
  display: flex;
  justify-content: center;
}
main section.banner-2 .content .btns-container .cbtn {
  font-size: 18px;
  color: #000;
  padding: 2px 15px;
  border-radius: 5px;
  border: 1px solid #ADADAD;
  background: #DCDCDC;
}
main section.banner-2 .content .btns-container .cbtn:hover {
  background-color: #ADADAD;
}
@media (max-width: 991px) {
  main section.banner-2 .content .btns-container .cbtn {
    font-size: 14px;
  }
}
main section.banner-2 .navigation {
  align-self: flex-start;
  justify-self: flex-end;
  margin: 0px 0px 10px;
}
main section.banner-2 .navigation p {
  margin: 0px;
  font-size: 12px;
  text-align: start;
}
main section.banner-2 .navigation p span {
  color: #868686;
  font-weight: 500;
}
@media (max-width: 991px) {
  main section.banner-2 .navigation p {
    font-size: 8px;
  }
}
@media (max-width: 767px) {
  main section.banner-2 .navigation p {
    font-size: 2.04vw;
  }
}
@media (max-width: 991px) {
  main section.banner-2 .navigation {
    margin-top: 15px;
  }
}
@media (max-width: 767px) {
  main section.banner-2 .navigation {
    margin-top: 3.82vw;
  }
}
main section.banner-2 .background-container {
  position: absolute;
  height: 100%;
  width: 50%;
  right: 0px;
  top: 0;
  z-index: 5;
}
@media (max-width: 767px) {
  main section.banner-2 .background-container {
    width: 100%;
  }
}
main section.banner-2 .background-container::before {
  content: "";
  height: 100%;
  width: 60px;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, #F5C8E6 80.21%);
  z-index: 20;
}
main section.banner-2 .background-container::after {
  content: "";
  height: 100%;
  width: 60px;
  position: absolute;
  top: 0;
  right: 0px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, #F5C8E6 80.21%);
  z-index: 20;
}
@media (max-width: 991px) {
  main section.banner-2 .background-container::before, main section.banner-2 .background-container::after {
    width: 10px;
  }
}
@media (max-width: 767px) {
  main section.banner-2 .background-container::before, main section.banner-2 .background-container::after {
    display: none;
  }
}
main section.banner-2 .background-container img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  object-position: center center;
}
@media (max-width: 991px) {
  main section.banner-2 .background-container img {
    object-fit: cover;
    object-position: center top;
  }
}
main section.banner-2 .background-container img.desktop {
  display: block;
}
@media (max-width: 767px) {
  main section.banner-2 .background-container img.desktop {
    display: none;
  }
}
main section.banner-2 .background-container img.mobile {
  display: none;
}
@media (max-width: 767px) {
  main section.banner-2 .background-container img.mobile {
    display: block;
  }
}
main section.category-page-menu {
  position: -webkit-sticky;
  position: sticky;
  width: 100%;
  height: auto;
  background: #EDEDED;
  margin: 0;
  top: 0;
  transition: transform 0.3s, background 0.5s;
  z-index: 800;
  overflow: hidden;
}
main section.category-page-menu.is-pinned {
  transition: transform 0.5s, background 0.5s;
  transform: translateY(calc(var(--topPos) - 0px));
}
@media (min-width: 992px) {
  main section.category-page-menu.is-pinned li.show-on-pinned {
    right: 15px;
    opacity: 1;
  }
}
@media (max-width: 991px) {
  main section.category-page-menu.is-pinned li.show-on-pinned {
    left: 5px;
    opacity: 1;
  }
}
@media (min-width: 992px) {
  main section.category-page-menu.is-pinned li:nth-last-child(2) {
    padding-right: calc(var(--currentGap) + var(--btnWidth));
  }
}
@media (min-width: 992px) {
  main section.category-page-menu.is-pinned ul.center-items li:last-child {
    right: calc(var(--currentGap) / 2);
  }
}
@media (max-width: 991px) {
  main section.category-page-menu.is-pinned ul {
    gap: 0px;
  }
}
main section.category-page-menu ul {
  width: 100%;
  display: flex;
  list-style: none;
  justify-content: space-between;
  margin: 0;
  position: relative;
  transition: padding 0.3s;
}
@media (min-width: 992px) {
  main section.category-page-menu ul.desktop {
    padding: 5px 15px;
  }
}
@media (max-width: 991px) {
  main section.category-page-menu ul.desktop {
    display: none;
  }
}
main section.category-page-menu ul.mobile {
  display: none;
}
@media (max-width: 991px) {
  main section.category-page-menu ul.mobile {
    display: flex;
    padding: 2px 10px;
    justify-content: space-between;
    overflow-x: auto;
  }
}
@media (max-width: 767px) {
  main section.category-page-menu ul.mobile {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 3.56vw 2.54vw;
  }
}
main section.category-page-menu ul.center-items {
  justify-content: space-around;
}
@media (max-width: 991px) {
  main section.category-page-menu ul.center-items {
    padding: 0;
    gap: 1.27vw;
  }
  main section.category-page-menu ul.center-items li {
    flex: 1;
    text-align: center !important;
  }
}
main section.category-page-menu ul li {
  padding: 0;
  margin: 0;
  transition: padding 0.3s ease-in-out, padding-left 0.3s ease-in-out;
  position: relative;
}
@media (max-width: 991px) {
  main section.category-page-menu ul li {
    text-align: center;
  }
  main section.category-page-menu ul li:nth-last-child(2) {
    text-align: right;
  }
  main section.category-page-menu ul li:first-child {
    text-align: left;
  }
}
main section.category-page-menu ul li.show-on-pinned {
  transition: right 0.3s ease-in-out, opacity 0.3s, left 0.3s;
  flex: 1;
  white-space: nowrap;
  position: absolute;
  top: 50%;
  right: calc(-100% / var(--childCount));
  transform: translateY(calc(-50% + 0.5px));
  opacity: 0;
}
@media (max-width: 991px) {
  main section.category-page-menu ul li.show-on-pinned {
    position: absolute;
    right: unset;
    left: calc(var(--btnWidth) * -1);
    width: auto;
    justify-self: start;
    flex-grow: 0;
  }
}
main section.category-page-menu ul li.current a {
  color: #ED1B24;
  font-weight: 700;
}
main section.category-page-menu ul li a {
  color: black;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3em;
  transition: color 0.3s, text-shadow 0.3s, background 0.3s, border 0.3s;
  text-decoration: none;
  border: 0;
}
main section.category-page-menu ul li a.cbtn-semi-black {
  color: black;
  border: 1px solid #D6D6D6;
  background: white;
  font-weight: 500 !important;
}
main section.category-page-menu ul li a.cbtn-semi-black:hover {
  color: white;
  background: black;
  border: 1px solid black;
}
main section.category-page-menu ul li a::before {
  display: block;
  content: attr(title);
  font-weight: 700;
  height: 0;
  overflow: hidden;
  visibility: hidden;
}
@media (max-width: 991px) {
  main section.category-page-menu ul li a {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  main section.category-page-menu ul li a {
    font-size: 3.56vw;
  }
}
@media (min-width: 992px) {
  main section.category-page-menu ul li a:hover {
    color: #ED1B24;
    font-weight: 600;
  }
}
main section.header .header {
  min-width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
main section.header .header strong {
  font-weight: 700;
}
@media (max-width: 991px) {
  main section.header .header h2 {
    margin: 25px;
  }
}
main section.header-description .header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
main section.header-description .header h2 {
  margin: 50px 10px 0;
}
@media (max-width: 991px) {
  main section.header-description .header h2 {
    margin-top: 30px;
  }
}
main section.header-description .header h3 {
  margin: 30px 10px 0;
}
main section.header-description .header p {
  margin: 30px;
}
main section.image-description .row {
  gap: 5px;
  flex-wrap: nowrap;
}
main section.image-description .row .col-lg-6 {
  flex: calc(50% - 2.5px);
  width: calc(50% - 2.5px);
  padding: 0;
}
main section.image-description .row .col-12 {
  flex: 100%;
  width: 100%;
}
@media (max-width: 991px) {
  main section.image-description .row {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  main section.image-description .row {
    gap: 1.27vw;
  }
}
main section.image-description.no-margin-top {
  margin-top: 5px;
}
@media (max-width: 767px) {
  main section.image-description.no-margin-top {
    margin-top: 1.27vw;
  }
}
main section.image-description.bigger-text p {
  font-size: 20px;
}
@media (max-width: 991px) {
  main section.image-description.bigger-text p {
    font-size: 12px;
  }
}
@media (max-width: 767px) {
  main section.image-description.bigger-text p {
    font-size: 3.05vw;
  }
}
main section.image-description .mobile-title-container {
  display: none;
}
@media (max-width: 991px) {
  main section.image-description .mobile-title-container {
    display: block;
    text-align: center;
    padding: 0 2.54vw;
    width: 100%;
    margin-bottom: 3.82vw;
  }
}
@media (max-width: 991px) {
  main section.image-description .mobile-title-container h3 {
    padding: 0;
    margin: 0;
  }
}
main section.image-description .image-description-text {
  margin-top: 20px;
}
@media (max-width: 767px) {
  main section.image-description .image-description-text {
    margin-top: 5.09vw;
  }
}
main section.image-description .image-header {
  padding-bottom: 20px;
}
@media (max-width: 767px) {
  main section.image-description .image-header {
    padding-bottom: 5.09vw;
  }
}
main section.image-description .image-text {
  padding-bottom: 20px;
}
@media (max-width: 767px) {
  main section.image-description .image-text {
    padding-bottom: 5.09vw;
  }
}
main section.image-description.bigger-gap .description-container .description-row {
  gap: 25px;
  padding-top: 0;
  margin-top: 0;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  main section.image-description.bigger-gap .description-container .description-row {
    gap: 6.36vw;
  }
}
main section.image-description.bigger-gap .description-container .description-row p, main section.image-description.bigger-gap .description-container .description-row h2 {
  margin: 0;
  padding: 0;
}
main section.image-description .image-container {
  padding: 0px;
  position: relative;
}
@media (max-width: 991px) {
  main section.image-description .image-container.center-intend {
    margin: 20px 0px;
  }
}
@media (max-width: 767px) {
  main section.image-description .image-container.center-intend {
    margin: 5.09vw 0px;
  }
}
@media (max-width: 991px) {
  main section.image-description .image-container {
    padding: 0px 6px;
  }
}
@media (max-width: 767px) {
  main section.image-description .image-container {
    padding: 0px 1.27vw !important;
  }
}
main section.image-description .image-container img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  background-color: #F5F5F5;
}
@media (max-width: 767px) {
  main section.image-description .image-container img {
    border-radius: 1.02vw;
  }
}
@media (max-width: 991px) {
  main section.image-description .image-container .side-image {
    padding-top: 15px;
    background: #B8B8FF;
  }
}
@media (max-width: 767px) {
  main section.image-description .image-container .side-image {
    padding-top: 3.82vw;
  }
}
main section.image-description .image-container .image-top-text {
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  width: 75%;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-top: 20px;
  z-index: 10;
}
@media (max-width: 1400px) {
  main section.image-description .image-container .image-top-text {
    top: 15px;
  }
}
@media (max-width: 991px) {
  main section.image-description .image-container .image-top-text {
    top: 28px;
    width: 90%;
    padding-top: 0;
  }
}
@media (max-width: 767px) {
  main section.image-description .image-container .image-top-text {
    top: 7.12vw;
    gap: 1.27vw;
  }
}
main section.image-description .image-container .image-top-text h3 {
  margin: 0;
}
main section.image-description .image-container .image-top-text h3 .klub-gold {
  background: none;
  height: 1em;
  width: auto;
  margin-bottom: 0.25em;
  margin-right: 3px;
  border-radius: 0;
}
@media (max-width: 767px) {
  main section.image-description .image-container .image-top-text h3 .klub-gold {
    margin-right: 0.76vw;
  }
}
main section.image-description .image-container .image-top-text p {
  margin: 0;
  font-size: 16px;
}
@media (max-width: 991px) {
  main section.image-description .image-container .image-top-text p {
    font-size: 12px;
  }
}
@media (max-width: 767px) {
  main section.image-description .image-container .image-top-text p {
    font-size: 3.05vw;
  }
}
@media (max-width: 991px) {
  main section.image-description .header.desktop {
    display: none;
  }
}
main section.image-description .description-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 991px) {
  main section.image-description .description-container {
    padding: 0 10px;
  }
}
@media (max-width: 767px) {
  main section.image-description .description-container {
    padding: 0 2.54vw;
  }
}
@media (min-width: 992px) {
  main section.image-description .description-container.mobile {
    display: none;
  }
}
@media (max-width: 991px) {
  main section.image-description .description-container.desktop {
    display: none;
  }
}
main section.image-description .description-container .description-row {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 0 15px;
}
main section.image-description .description-container .description-row.text-left {
  text-align: left;
}
@media (max-width: 991px) {
  main section.image-description .description-container .description-row {
    margin: 20px 0px;
    text-align: center;
  }
}
@media (max-width: 767px) {
  main section.image-description .description-container .description-row {
    gap: 3.82vw;
    margin: 5.09vw 0px;
    margin-top: 3.82vw;
    padding: 0 1.27vw;
  }
}
main section.image-description .description-container .description-row h2 {
  text-align: left;
}
@media (max-width: 991px) {
  main section.image-description .description-container .description-row h2 {
    text-align: center;
  }
}
main section.image-description .description-container .description-row h3 {
  margin: 0;
}
main section.image-description .description-container .btns-container {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 5px;
}
main section.image-description .description-container .btns-container .cbtn {
  flex-grow: 0;
}
@media (max-width: 767px) {
  main section.image-description .description-container .btns-container .cbtn {
    padding: 0.5vw 1.5vw;
  }
}
@media (max-width: 767px) {
  main section.image-description .description-container .btns-container.center-mobile {
    justify-content: center;
    margin-top: 5.6vw;
  }
}
@media (max-width: 767px) {
  main section.image-description .description-container .btns-container {
    gap: 1.27vw;
    justify-content: center;
  }
}
main section.image-description .description-container .benefits-items {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 10px;
  justify-content: space-around;
  height: 100%;
  padding: 0 15px;
  padding-top: 20px;
}
@media (max-width: 991px) {
  main section.image-description .description-container .benefits-items {
    margin-top: 0px;
    gap: 15px;
  }
}
@media (max-width: 767px) {
  main section.image-description .description-container .benefits-items {
    gap: 3.82vw;
    margin-bottom: 2.54vw;
    padding-top: 5.09vw;
  }
}
main section.image-description .description-container .benefits-item {
  flex: calc(100% - 15px);
  flex-grow: 0;
  display: flex;
  flex-direction: row;
  align-items: start;
  gap: 20px;
}
@media (max-width: 991px) {
  main section.image-description .description-container .benefits-item {
    flex: 100%;
    gap: 10px;
    padding: 0px;
    margin: 0 -5px;
  }
}
@media (max-width: 767px) {
  main section.image-description .description-container .benefits-item {
    gap: 2.54vw;
    margin: 0;
  }
}
main section.image-description .description-container .benefits-item .icon-container {
  width: 58px;
  height: 58px;
  overflow: hidden;
  flex-shrink: 0;
  border-radius: 100%;
  background: transparent;
}
@media (max-width: 991px) {
  main section.image-description .description-container .benefits-item .icon-container {
    width: 30px;
    height: 30px;
  }
}
@media (max-width: 767px) {
  main section.image-description .description-container .benefits-item .icon-container {
    width: 7.63vw;
    height: 7.63vw;
    overflow: unset;
  }
}
main section.image-description .description-container .benefits-item .icon-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 100%;
}
main section.image-description .description-container .benefits-item .text-container {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0;
  flex-grow: 1;
  height: 100%;
  align-self: stretch;
  margin-top: 14px;
}
@media (max-width: 991px) {
  main section.image-description .description-container .benefits-item .text-container {
    gap: 15px;
    margin-top: 5px;
  }
}
@media (max-width: 767px) {
  main section.image-description .description-container .benefits-item .text-container {
    gap: 3.82vw;
    margin-top: 1.27vw;
  }
}
main section.image-description .description-container .benefits-item .text-container h3 {
  font-size: 20px;
  line-height: 1.4em;
  font-weight: 600;
  margin: 0;
}
@media (max-width: 991px) {
  main section.image-description .description-container .benefits-item .text-container h3 {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  main section.image-description .description-container .benefits-item .text-container h3 {
    font-size: 4.07vw;
  }
}
main section.image-description .description-container .benefits-item .text-container p {
  margin: 0;
  font-size: 16px;
}
@media (max-width: 991px) {
  main section.image-description .description-container .benefits-item .text-container p {
    font-size: 12px;
  }
}
@media (max-width: 767px) {
  main section.image-description .description-container .benefits-item .text-container p {
    font-size: 3.05vw;
  }
}
main section.image-description .description-container .benefits-item .text-container .cbtn {
  align-self: flex-end;
  margin-top: auto;
}
@media (max-width: 991px) {
  main section.image-description .description-container .benefits-item .text-container .cbtn {
    align-self: center;
  }
}
main section.newsletter {
  background-color: #F5F5F5;
}
main section.newsletter .image-container {
  padding: 0px;
}
main section.newsletter .image-container img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  background-color: #F5F5F5;
}
@media (max-width: 767px) {
  main section.newsletter .image-container img {
    border-radius: 2.04vw;
  }
}
@media (max-width: 991px) {
  main section.newsletter .image-container {
    display: none;
  }
}
main section.newsletter .description-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
main section.newsletter .description-container .description-row {
  margin: 10px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media (max-width: 767px) {
  main section.newsletter .description-container .description-row {
    margin: 2.54vw;
    gap: 3.82vw;
  }
}
main section.newsletter .description-container .description-row h2 {
  text-align: start;
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  main section.newsletter .description-container .description-row h2 {
    margin-bottom: 0px;
    padding-bottom: 5px;
  }
}
@media (max-width: 767px) {
  main section.newsletter .description-container .description-row h2 {
    padding-bottom: 1.27vw;
  }
}
main section.newsletter .description-container .description-row p {
  margin: 10px 0px;
  color: #000;
}
@media (max-width: 767px) {
  main section.newsletter .description-container .description-row p {
    margin: 2.54vw 0px;
  }
}
main section.newsletter .description-container .description-row .field-wrapper {
  display: flex;
  flex-direction: row;
  width: 80%;
  position: relative;
}
@media (max-width: 991px) {
  main section.newsletter .description-container .description-row .field-wrapper {
    width: 100%;
  }
}
main section.newsletter .description-container .description-row .field-wrapper .mc-field-group {
  display: flex;
  flex-direction: column;
  flex: 1;
}
main section.newsletter .description-container .description-row .field-wrapper .mc-field-group .response {
  margin: 10px 0px;
  font-size: 13px;
}
@media (max-width: 991px) {
  main section.newsletter .description-container .description-row .field-wrapper .mc-field-group .response {
    font-size: 12px;
  }
}
@media (max-width: 767px) {
  main section.newsletter .description-container .description-row .field-wrapper .mc-field-group .response {
    font-size: 3.05vw;
  }
}
main section.newsletter .description-container .description-row .field-wrapper .mc-field-group .email {
  flex: 1;
  padding: 5px;
  border: 0;
}
@media (max-width: 991px) {
  main section.newsletter .description-container .description-row .field-wrapper .mc-field-group .email {
    flex-grow: 0;
    flex-basis: 0;
    height: 28px;
  }
}
@media (max-width: 767px) {
  main section.newsletter .description-container .description-row .field-wrapper .mc-field-group .email {
    padding: 1.27vw;
    height: 7.12vw;
  }
}
main section.newsletter .description-container .description-row .field-wrapper .button {
  height: 32px;
  position: absolute;
  top: 0;
  right: 0;
}
@media (max-width: 991px) {
  main section.newsletter .description-container .description-row .field-wrapper .button {
    height: 28px;
  }
}
@media (max-width: 767px) {
  main section.newsletter .description-container .description-row .field-wrapper .button {
    height: 7.2vw;
    line-height: 3vw;
  }
}
main section.newsletter .description-container .description-row .policy-container {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  margin-top: 10px;
  gap: 5px;
}
main section.newsletter .description-container .description-row .policy-container input {
  width: auto;
  margin-right: 10px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: white;
  width: 12px;
  height: 12px;
  flex: 12px;
  margin: 0;
  padding: 0;
  flex-shrink: 0;
  border-radius: 2px;
  cursor: pointer;
}
main section.newsletter .description-container .description-row .policy-container input:checked {
  background: url("../../uploads/files/images/check.svg") no-repeat, white;
  background-size: 80% auto;
  background-position: center center;
}
@media (max-width: 991px) {
  main section.newsletter .description-container .description-row .policy-container input {
    width: 20px;
    height: 20px;
    flex: 20px;
    flex-shrink: 0;
  }
}
main section.newsletter .description-container .description-row .policy-container span {
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.4em;
}
@media (max-width: 991px) {
  main section.newsletter .description-container .description-row {
    margin: 20px 0px;
  }
}
main .expandable-container .expandable-toggle {
  cursor: pointer;
}
main .expandable-container .expandable-content {
  transition: max-height 0.3s ease;
  overflow: hidden;
  max-height: 0px;
}
main .expandable-container .expandable-arrow {
  transition: transform 0.3s ease;
}
main .expandable-container.active .expandable-content {
  max-height: var(--scrollHeight) !important;
}
main .expandable-container.active .expandable-arrow {
  transform: rotate(360deg) !important;
}
@media (max-width: 991px) {
  main section.narrow-image-description {
    padding: 0 5px;
  }
}
@media (max-width: 767px) {
  main section.narrow-image-description {
    padding: 0 1.27vw;
  }
}
main section.narrow-image-description .row {
  gap: 5px;
}
@media (max-width: 767px) {
  main section.narrow-image-description .row {
    gap: 1.27vw;
  }
}
main section.narrow-image-description .section-title {
  gap: 35px !important;
}
@media (max-width: 767px) {
  main section.narrow-image-description .section-title {
    gap: 5.09vw !important;
  }
}
main section.narrow-image-description .item {
  display: flex;
  padding: 0;
  flex-direction: row;
  flex: calc(50% - 0.61vw);
}
@media (max-width: 767px) {
  main section.narrow-image-description .item {
    flex: 100%;
  }
}
main section.narrow-image-description .item .image-container, main section.narrow-image-description .item .description-container {
  flex: 30%;
}
@media (max-width: 991px) {
  main section.narrow-image-description .item .image-container {
    flex: 35%;
  }
}
@media (max-width: 991px) {
  main section.narrow-image-description .item .description-container {
    flex: 65%;
  }
}
main section.narrow-image-description .image-container {
  border-radius: 8px;
  overflow: hidden;
}
@media (max-width: 767px) {
  main section.narrow-image-description .image-container {
    border-radius: 1.02vw;
  }
}
main section.narrow-image-description .image-container img {
  width: 100%;
  height: auto;
}
main section.narrow-image-description .description-container {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 5px 20px;
  padding-bottom: 5px;
}
@media (max-width: 767px) {
  main section.narrow-image-description .description-container {
    padding: 0px 1.27vw;
    padding-right: 0;
    padding-bottom: 1.27vw;
  }
}
main section.narrow-image-description .description-container .description-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: static;
}
main section.narrow-image-description .description-container .description-row h3 {
  margin: 0px;
}
@media (max-width: 767px) {
  main section.narrow-image-description .description-container .description-row h3 {
    font-size: 3.05vw;
  }
}
@media (max-width: 991px) {
  main section.narrow-image-description .description-container .description-row {
    margin: 0px;
    gap: 5px;
  }
}
@media (max-width: 767px) {
  main section.narrow-image-description .description-container .description-row {
    gap: 1.27vw;
  }
}
main section.narrow-image-description .description-container .description-row p {
  margin-top: 0;
}
main section.narrow-image-description .description-container .description-row .clamp-paragraph {
  display: block;
  margin: 0px;
  overflow: hidden;
  text-align: right;
  position: static;
}
main section.narrow-image-description .description-container .description-row .clamp-paragraph .description {
  display: -webkit-box;
  line-clamp: var(--lineClamp);
  -webkit-line-clamp: var(--lineClamp);
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
  max-height: var(--maxHeight);
  text-align: left;
}
main section.narrow-image-description .description-container .description-row .clamp-paragraph .show-more {
  cursor: pointer;
  text-decoration-line: underline;
  position: absolute;
  right: 20px;
  top: calc(var(--offtop) - 1.8em);
}
@media (max-width: 991px) {
  main section.narrow-image-description .description-container .description-row .clamp-paragraph .show-more {
    right: 0px;
    top: calc(var(--offtop) - 1.6em);
  }
}
main section.narrow-image-description .description-container .description-row .clamp-paragraph.active span.description {
  display: block;
  line-clamp: unset;
  -webkit-line-clamp: unset;
  -webkit-box-orient: unset;
  overflow: visible;
}
main section.narrow-image-description .description-container .description-row .clamp-paragraph.active span.show-more {
  display: none;
}
main section.narrow-image-description .description-container .description-row .extra-container {
  padding: 10px 5px;
  border-top: #ADADAD solid 1px;
  border-bottom: #ADADAD solid 1px;
}
@media (max-width: 991px) {
  main section.narrow-image-description .description-container .description-row .extra-container {
    padding: 3px 0px;
  }
}
@media (max-width: 767px) {
  main section.narrow-image-description .description-container .description-row .extra-container {
    padding: 0.76vw 0px;
  }
}
main section.narrow-image-description .description-container .description-row .extra-container .extra-top {
  display: flex;
  flex-direction: row;
}
main section.narrow-image-description .description-container .description-row .extra-container .extra-top p {
  flex: 1;
  color: #000;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4em;
  margin-top: 0;
}
@media (max-width: 991px) {
  main section.narrow-image-description .description-container .description-row .extra-container .extra-top p {
    font-size: 12px;
  }
}
@media (max-width: 767px) {
  main section.narrow-image-description .description-container .description-row .extra-container .extra-top p {
    font-size: 3.05vw;
  }
}
main section.narrow-image-description .description-container .description-row .extra-container .extra-top img {
  width: 25px;
  height: auto;
  transform: rotate(180deg);
}
@media (max-width: 991px) {
  main section.narrow-image-description .description-container .description-row .extra-container .extra-top img {
    width: 15px;
  }
}
@media (max-width: 767px) {
  main section.narrow-image-description .description-container .description-row .extra-container .extra-top img {
    width: 3.82vw;
  }
}
main section.narrow-image-description .description-container .description-row .extra-container .extra-content .single-row {
  margin: 10px 0px;
  padding: 0;
}
@media (max-width: 767px) {
  main section.narrow-image-description .description-container .description-row .extra-container .extra-content .single-row {
    margin: 2.54vw 0px;
  }
}
main section.narrow-image-description .description-container .description-row .extra-container .extra-content .single-row:last-child {
  margin-bottom: 2px;
}
@media (max-width: 767px) {
  main section.narrow-image-description .description-container .description-row .extra-container .extra-content .single-row:last-child {
    margin-bottom: 0.5vw;
  }
}
main section.narrow-image-description .description-container .description-row .extra-container .extra-content .single-row img {
  width: 35px;
  height: auto;
}
@media (max-width: 767px) {
  main section.narrow-image-description .description-container .description-row .extra-container .extra-content .single-row img {
    width: 8.91vw;
  }
}
main section.narrow-image-description .description-container .description-row .extra-container .extra-content .single-row span {
  margin: 0px 5px;
  color: #000;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4em;
}
@media (max-width: 767px) {
  main section.narrow-image-description .description-container .description-row .extra-container .extra-content .single-row span {
    margin: 0px 1.27vw;
    font-size: 4.07vw;
  }
}
main section.narrow-image-description .description-container .description-row .extra-container .extra-content .cbtn {
  margin: 0;
  margin-top: 5px;
}
@media (max-width: 991px) {
  main section.narrow-image-description .description-container .description-row .extra-container .extra-content .cbtn {
    font-size: 10px;
  }
  main section.narrow-image-description .description-container .description-row .extra-container .extra-content .cbtn.smaller-font-mobile {
    font-size: 9px;
  }
}
@media (max-width: 767px) {
  main section.narrow-image-description .description-container .description-row .extra-container .extra-content .cbtn {
    margin-top: 1.27vw;
    width: 100%;
    font-size: 2.2vw;
    line-height: 1.6em;
    padding: 0.5vw 0.5vw;
  }
  main section.narrow-image-description .description-container .description-row .extra-container .extra-content .cbtn.smaller-font-mobile {
    font-size: 2.29vw;
  }
}
main section.narrow-image-description .description-container .description-row .btns-container {
  margin-top: auto;
}
main section.narrow-image-description .description-container .description-row .btn-uszlachetnienia {
  align-self: end;
  width: auto;
}
@media (max-width: 991px) {
  main section.narrow-image-description .description-container .description-row .btn-uszlachetnienia {
    width: 100%;
  }
  main section.narrow-image-description .description-container .description-row .btn-uszlachetnienia .cbtn {
    width: 100%;
    font-size: 2.2vw;
    padding: 0.5vw 0.5vw;
    line-height: 1.6em;
  }
}
main section.narrow-image-description .description-container .description-row .btn-papiery {
  margin-top: auto;
}
main section.faq-header .header {
  min-width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
main section.faq-header .header h2 {
  margin: 40px 0px 12px;
}
@media (max-width: 767px) {
  main section.faq-header .header h2 {
    margin: 10.18vw 0px 3.05vw;
  }
}
main section.faq-header .header h2 strong {
  font-weight: 700;
}
main section.faq ul {
  padding: 0px;
  margin: 0px;
  width: 100%;
}
main section.faq ul li {
  border-radius: 8px;
  background-color: #F5F5F5;
  margin: 5px 0px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
@media (max-width: 991px) {
  main section.faq ul li {
    padding: 8px 10px;
    border-radius: 4px;
  }
}
@media (max-width: 767px) {
  main section.faq ul li {
    padding: 2.04vw 2.54vw;
    border-radius: 1.02vw;
    margin: 1.27vw;
  }
}
main section.faq ul li:hover {
  background-color: #ebebeb;
}
main section.faq ul li .title-row {
  display: flex;
  align-items: center;
}
main section.faq ul li .title-row h3 {
  flex-grow: 1;
  margin-bottom: 0px;
  margin-top: 0;
}
@media (max-width: 767px) {
  main section.faq ul li .title-row h3 {
    font-size: 3.56vw;
  }
}
main section.faq ul li .content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}
main section.faq ul li .content p {
  padding-top: 10px;
}
@media (max-width: 767px) {
  main section.faq ul li .content p {
    padding-top: 2.54vw;
  }
}
main section.faq ul li img {
  width: 35px;
  height: auto;
  padding: 6px;
  transform: rotate(180deg);
  transition: transform 0.5s ease;
}
@media (max-width: 767px) {
  main section.faq ul li img {
    width: 6.36vw;
    padding: 1.53vw;
  }
}
main section.faq ul li.active .content {
  max-height: var(--scrollHeight);
}
main section.faq ul li.active img {
  transform: rotate(360deg);
}

section .container .row .formats-title-h3 {
  margin-left: 20px;
}
section .container .row .formats-additionalText {
  text-align: center;
}
section .container .row .section-title .formats-header {
  font-weight: 600;
}
section .container .row .formats-text {
  padding: 0 15px;
  padding-top: 23px;
  padding-bottom: 23px;
}
@media (max-width: 991px) {
  section .container .row .formats-text {
    padding: 15px 10px;
  }
}
@media (max-width: 767px) {
  section .container .row .formats-text {
    padding: 3.82vw 2.54vw;
  }
}
@media (max-width: 767px) {
  section .container .row .formats-title {
    font-size: 5.09vw;
    margin: 0;
  }
}
@media (max-width: 767px) {
  section .container .row .formats-additionalText {
    font-size: 4.07vw;
    padding-top: 5.09vw;
    padding-bottom: 2.54vw;
  }
}
section .container .row .format-container {
  display: flex;
  width: 100vw;
  padding: 0;
  flex-wrap: wrap;
  gap: 5px;
}
@media (max-width: 991px) {
  section .container .row .format-container {
    padding: 0 5px;
  }
}
@media (max-width: 767px) {
  section .container .row .format-container {
    padding: 0px 1.27vw;
    gap: 1.27vw;
  }
}
section .container .row .format-container.konfigurator-container {
  gap: 3px;
  margin: 3px 0;
}
@media (max-width: 767px) {
  section .container .row .format-container.konfigurator-container {
    gap: 0.76vw;
    margin: 0.76vw 0px;
  }
}
section .container .row .format-container .format-tile {
  transition: all 0.3s ease-in-out;
  position: relative;
  flex-basis: calc((100% - 35px) / 8);
  height: 144px;
  border-radius: 8px;
  text-align: center;
  padding: 0;
  background-clip: content-box;
  background-color: #F5F5F5;
  display: flex;
  align-items: end;
  justify-content: center;
}
@media (max-width: 767px) {
  section .container .row .format-container .format-tile {
    border-radius: 2.04vw;
    flex-basis: 41.73vw;
  }
}
section .container .row .format-container .format-tile a {
  color: #303030;
}
section .container .row .format-container .format-tile a:hover {
  color: #303030;
}
section .container .row .format-container .format-tile.format-modifer-full-image-size {
  height: auto;
  align-items: start;
}
section .container .row .format-container .format-tile.format-modifer-full-image-size .format-img {
  position: relative;
  width: 100%;
  height: auto;
  max-width: unset;
  top: unset;
  left: unset;
  transform: none;
  max-height: unset;
  object-fit: contain;
}
section .container .row .format-container .format-tile.format-modifer-full-image-size .format-text, section .container .row .format-container .format-tile.format-modifer-full-image-size p, section .container .row .format-container .format-tile.format-modifer-full-image-size a {
  position: absolute;
  bottom: 5px;
  margin: 0;
  color: #303030;
}
@media (max-width: 767px) {
  section .container .row .format-container .format-tile.format-modifer-full-image-size .format-text, section .container .row .format-container .format-tile.format-modifer-full-image-size p, section .container .row .format-container .format-tile.format-modifer-full-image-size a {
    font-size: 3.05vw;
    bottom: 1.27vw;
    padding: 0 1.27vw;
    margin: 0;
  }
}
section .container .row .format-container .format-tile .format-text {
  font-size: 12px;
  color: #303030;
}
@media (max-width: 767px) {
  section .container .row .format-container .format-tile .format-text {
    font-size: 3.05vw;
  }
}
section .container .row .format-container .format-tile a {
  color: #303030;
  text-decoration: none;
}
section .container .row .format-container .format-tile p, section .container .row .format-container .format-tile a {
  font-size: 12px;
  margin-bottom: 5px;
}
@media (max-width: 767px) {
  section .container .row .format-container .format-tile p, section .container .row .format-container .format-tile a {
    font-size: 3.05vw;
    margin-bottom: 1.27vw;
  }
}
section .container .row .format-container .format-tile .format-text2 {
  text-decoration: none;
  color: #303030;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2em;
  width: 100%;
  padding: 0 10px;
  position: absolute;
  left: 0;
  bottom: 8px;
}
@media (max-width: 767px) {
  section .container .row .format-container .format-tile .format-text2 {
    font-size: 3.05vw;
    padding: 0 2.54vw;
    bottom: 2.04vw;
  }
}
section .container .row .format-container .format-tile .format-upper-text {
  color: #9981E0;
  font-size: 7.34px;
  font-weight: 600;
  line-height: 1.2em;
  text-decoration: none;
  width: 100%;
  padding: 0 10px;
  position: absolute;
  left: 0;
  top: 10px;
}
@media (max-width: 767px) {
  section .container .row .format-container .format-tile .format-upper-text {
    top: 2.54vw;
    font-size: 1.78vw;
    padding: 0 2.54vw;
  }
}
section .container .row .format-container .format-tile .format-img {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 95%;
  max-height: 100%;
}
@media (max-width: 767px) {
  section .container .row .format-container .format-tile .format-img {
    top: -3.82vw;
  }
}
section .container .row .format-container .format-tile .format-img2 {
  max-width: 95%;
  max-height: 100%;
}
section .container .row .format-container .format-tile .plexi-img {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  max-width: 95%;
  max-height: 100%;
}
@media (max-width: 767px) {
  section .container .row .format-container .format-tile .plexi-img {
    top: 2.54vw;
  }
}
section .container .row .format-container .format-tile .format-img-torby {
  max-width: 95%;
  max-height: 80%;
}
section .container .row .format-container .format-tile .format-img-torby-fix {
  margin-left: 10%;
}
section .container .row .format-container .format-tile .format-img-torby-fix-s {
  margin-left: 15%;
}
section .container .row .format-container .format-tile .format-x {
  top: 0px;
}
section .container .row .format-container .format-tile .format-xt {
  width: 70px;
  top: 20px;
}
@media (max-width: 767px) {
  section .container .row .format-container .format-tile .format-xt {
    width: 17.81vw;
    top: 5.09vw;
  }
}
section .container .row .format-container .format-tile.konfigurator {
  align-content: center;
  width: 15%;
  height: auto;
  padding: 50px 5px;
  background-clip: unset;
}
@media (max-width: 767px) {
  section .container .row .format-container .format-tile.konfigurator {
    width: 41.73vw;
    padding: 7.63vw 1.27vw;
  }
}
section .container .row .format-container .format-tile.konfigurator p {
  color: #000;
  text-align: center;
  font-family: Poppins;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}
@media (max-width: 767px) {
  section .container .row .format-container .format-tile.konfigurator p {
    font-size: 3.05vw;
  }
}
section .container .row .format-container .format-tile.konfigurator .naglowek-tile-konfigurator {
  color: #000;
  text-align: center;
  font-family: Poppins;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  section .container .row .format-container .format-tile.konfigurator .naglowek-tile-konfigurator {
    font-size: 3.05vw;
    margin-bottom: 2.54vw;
  }
}
section .container .row .format-container .format-tile:hover {
  cursor: pointer;
  filter: brightness(0.9);
}
@media (max-width: 911px) {
  section .container .row .format-tile {
    flex-shrink: 0;
  }
  section .container .row .format-container {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}

section .container .row .section-title .logo-text {
  font-size: 12px;
  color: #FFF;
  background-color: #ED1B24;
  border-radius: 3px;
  padding-left: 7px;
  padding-right: 7px;
  vertical-align: middle;
}
@media (max-width: 767px) {
  section .container .row .section-title .logo-text {
    font-size: 3.05vw;
    border-radius: 0.76vw;
    padding-left: 1.78vw;
    padding-right: 1.78vw;
  }
}
section .container .row .section-title .desktop-title {
  display: block;
}
section .container .row .section-title .mobile-title {
  display: none;
}
@media (max-width: 768px) {
  section .container .row .section-title .desktop-title {
    display: none;
  }
  section .container .row .section-title .mobile-title {
    display: block;
  }
}

section .container .row .about-title {
  padding: 0 15px;
}
@media (max-width: 991px) {
  section .container .row .about-title {
    padding: 0 10px;
  }
}
@media (max-width: 767px) {
  section .container .row .about-title {
    padding: 0 2.54vw;
  }
}
section .container .row .about-title .about-header {
  font-weight: 600;
}
section .container .row .about-title .mini-logo-badge {
  margin-left: 2px;
  margin-bottom: 1px;
}
@media (max-width: 991px) {
  section .container .row .about-title .mini-logo-badge {
    width: 37px;
    height: auto;
  }
}
@media (max-width: 767px) {
  section .container .row .about-title .mini-logo-badge {
    width: 9.41vw;
    margin-left: 0.5vw;
  }
}
section .container .row .about-title .about-img {
  width: 100px;
  height: auto;
  margin-left: 20px;
}
@media (max-width: 767px) {
  section .container .row .about-title .about-img {
    margin-left: 5.09vw;
  }
}
section .container .row .about-title .about-imgSM {
  display: none;
}
section .container .row .about-title .about-textSM {
  display: none;
}
@media (max-width: 767px) {
  section .container .row .about-title .about-img {
    display: none;
  }
  section .container .row .about-title .about-imgSM {
    display: inline;
  }
  section .container .row .about-title .about-textSM {
    display: inline;
  }
}
@media (max-width: 767px) {
  section .container .row .about-title h2 {
    font-size: 5.09vw;
    margin: 0;
  }
}
section .container .row .about-title h3 {
  text-align: center;
  padding: 0;
  margin: 0;
  margin-bottom: 25px;
}
@media (max-width: 767px) {
  section .container .row .about-title h3 {
    margin-bottom: 4.83vw;
  }
}
section .container .row .about-title svg {
  width: 27px;
  height: 28px;
}
@media (max-width: 767px) {
  section .container .row .about-title svg {
    width: 3.56vw;
    height: 3.56vw;
    margin-left: 0.5vw;
  }
}
section .container .row .about-title .about-header {
  margin: 34px 0 34px;
}
@media (max-width: 767px) {
  section .container .row .about-title .about-header {
    margin: 5.09vw 0 5.09vw;
  }
}
section .container .row .about-extra {
  text-align: center;
  padding: 0px 0px 0px;
}
@media (max-width: 767px) {
  section .container .row .about-extra {
    margin-bottom: 0;
    font-size: 4.07vw;
  }
}
section .container .row .about-text {
  padding: 20px 20px 0px;
}
@media (max-width: 767px) {
  section .container .row .about-text {
    padding: 5.09vw 5.09vw 0px;
  }
}
section .container .row .about-text::after {
  content: "Drukuj online najróżniejsze grafiki, slogany lub inne informacje na naszych ulotkach. Oferujemy szeroki wybór formatów, wariantów wykończenia i samych rodzajów produktu, w tym ulotki cięte, składane, z perforacją oraz wyjątkowe ulotki Premium 3D, które zaskakują możliwością tworzenia wypukłych elementów za pomocą  lakieru 3D. Nasza drukarnia internetowa od lat jest pierwszym wyborem profesjonalistów z branży reklamowej – mamy najszerszą ofertę na rynku, którą stale rozwijamy.";
}
@media (max-width: 768px) {
  section .container .row .about-text::after {
    content: "Drukuj online najróżniejsze grafiki, slogany lub inne informacje na naszych ulotkach. Oferujemy szeroki wybór formatów, wariantów wykończenia i samych rodzajów produktu, w tym ulotki cięte, składane, z perforacją oraz wyjątkowe ulotki Premium 3D, które zaskakują możliwością tworzenia wypukłych elementów za pomocą  lakieru 3D.";
  }
}
section .section-about {
  justify-content: center;
}
@media (max-width: 767px) {
  section .section-about .row .section-title .header-mobile {
    align-self: center;
    max-width: 76.34vw;
  }
}

section .container .row .about-title .about-header .logo-text {
  font-size: 12px;
  color: #FFF;
  background-color: #ED1B24;
  border-radius: 3px;
  padding-left: 7px;
  padding-right: 7px;
  vertical-align: middle;
}
@media (max-width: 767px) {
  section .container .row .about-title .about-header .logo-text {
    font-size: 3.05vw;
    border-radius: 0.76vw;
    padding-left: 1.78vw;
    padding-right: 1.78vw;
  }
}

@media (max-width: 768px) {
  section .container .row .paperTypes-title {
    font-size: 23px;
    margin: 0px;
  }
}
section .container .row .paperTypes-extra {
  text-align: center;
  margin-bottom: 0px;
}
@media (max-width: 768px) {
  section .container .row .paperTypes-extra {
    font-size: 16px;
    padding-top: 22px;
  }
}
section .container .row .paperTypes-text {
  padding-top: 35px;
  padding-bottom: 35px;
}
@media (max-width: 768px) {
  section .container .row .paperTypes-text {
    padding-top: 15px;
    padding-bottom: 12px;
  }
}
section .container .row .paper-tile {
  transition: all 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 8px;
  text-align: center;
  padding: 2.5px;
  background-clip: content-box;
  background-color: #F5F5F5;
}
section .container .row .paper-tile .text-absolute {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 768px) {
  section .container .row .paper-tile .text-absolute {
    width: 382px;
    max-width: 100%;
  }
}
section .container .row .paper-tile img {
  border-radius: 8px;
}
section .container .row .paper-tile p {
  position: relative;
  z-index: 1;
}
section .container .row .paper-tile .paper-title {
  padding: 23px;
  font-size: 20px;
  font-weight: 600;
}
section .container .row .paper-tile .paper-info {
  font-size: 16px;
  font-weight: 600;
  width: 500px;
  justify-self: center;
}
section .container .row .paper-tile .paper-text {
  margin-top: auto;
  padding: 0 20px 30px;
  text-align: left;
}
@media (max-width: 768px) {
  section .container .row .paper-tile .paper-title {
    font-size: 14px;
    padding-top: 15px;
    padding-bottom: 2px;
  }
  section .container .row .paper-tile .paper-info {
    width: auto;
    font-size: 12px;
  }
}
@media (max-width: 768px) {
  section .container .row .paper-tile .paper-text {
    padding-bottom: 20px;
    padding-left: 20px;
  }
}
section .container .row .paper-tile:hover {
  cursor: pointer;
  filter: brightness(0.9);
}
@media (max-width: 768px) {
  section .container .row .paper-tile {
    padding-left: 5px;
    padding-right: 5px;
  }
}

section .container.leaflets-container {
  padding-left: 5px;
  padding-right: 5px;
}
@media (max-width: 767px) {
  section .container.leaflets-container {
    padding-left: 1.27vw;
    padding-right: 1.27vw;
  }
}
section .container.leaflets-container .section-leaflets {
  justify-content: start;
  position: relative;
  margin: auto;
  gap: 5px;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  section .container.leaflets-container .section-leaflets {
    gap: 1.27vw;
  }
}
section .container.leaflets-container .section-leaflets .leaflets-title {
  padding: 0;
  margin: 12px 15px;
  margin-bottom: 5px;
}
@media (max-width: 767px) {
  section .container.leaflets-container .section-leaflets .leaflets-title {
    margin: 2.54vw 1.27vw;
    margin-bottom: 1.27vw;
    font-size: 4.07vw;
  }
}
section .container.leaflets-container .section-leaflets .leaflets-badge {
  position: absolute;
  top: 6px;
  left: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  background: #ED1B24;
  color: white;
  padding: 1px 6px;
  z-index: 20;
  font-weight: 600;
  font-size: 14px;
  filter: drop-shadow(-0.5px -0.5px 2px rgba(0, 0, 0, 0.1)) drop-shadow(1.5px 1.5px 3px rgba(0, 0, 0, 0.5));
}
section .container.leaflets-container .section-leaflets .leaflets-badge img, section .container.leaflets-container .section-leaflets .leaflets-badge svg {
  height: 0.8em;
  width: auto;
}
section .container.leaflets-container .section-leaflets .leaflets-badge p {
  color: white;
  font-weight: 600;
  font-size: 14px;
}
section .container.leaflets-container .section-leaflets .leaflets-badge-EKO {
  background: #12AD77;
}
section .container.leaflets-container .section-leaflets .leaflets-badge-PREMIUM {
  background: linear-gradient(90deg, #BA9730 0%, #EDD771 36%, #EDD771 64%, #BA9730 100%);
}
section .container.leaflets-container .section-leaflets .leaflets-badge-3D {
  background: linear-gradient(90deg, #BA9730 0%, #EDD771 36%, #EDD771 64%, #BA9730 100%);
  left: unset;
  right: 8px;
  padding: 1px 4px;
}
section .container.leaflets-container .section-leaflets .leaflets-tile {
  flex-basis: calc(16.6666666667% - 4.17px);
  height: auto;
  background-color: #F5F5F5;
  border-radius: 8px;
  position: relative;
  text-align: center;
  padding-bottom: 5px;
  align-content: start;
  transition: background 0.3s, filter 0.3s;
  cursor: pointer;
}
@media (max-width: 991px) {
  section .container.leaflets-container .section-leaflets .leaflets-tile {
    flex-basis: calc(25% - 3.9px);
  }
}
@media (max-width: 767px) {
  section .container.leaflets-container .section-leaflets .leaflets-tile {
    flex-basis: calc(50% - 0.64vw);
    border-radius: 1.53vw;
    padding-bottom: 0;
  }
}
section .container.leaflets-container .section-leaflets .leaflets-tile a {
  text-decoration: none;
}
section .container.leaflets-container .section-leaflets .leaflets-tile .leaflets-img {
  display: flex;
  justify-self: anchor-center;
  width: 100%;
  height: auto;
  border-radius: 8px;
}
@media (max-width: 767px) {
  section .container.leaflets-container .section-leaflets .leaflets-tile .leaflets-img {
    border-radius: 1.53vw;
  }
}
section .container.leaflets-container .section-leaflets .leaflets-tile .leaflets-img2 {
  width: 100%;
  height: 100%;
}
section .container.leaflets-container .section-leaflets .leaflets-tile .kubek-kolorowy {
  margin-top: 20px;
  width: 80%;
}
@media (max-width: 767px) {
  section .container.leaflets-container .section-leaflets .leaflets-tile .kubek-kolorowy {
    margin-top: 5.09vw;
  }
}
section .container.leaflets-container .section-leaflets .leaflets-tile .img-kubki {
  margin-left: 40px;
}
@media (max-width: 767px) {
  section .container.leaflets-container .section-leaflets .leaflets-tile .img-kubki {
    margin-left: 10.18vw;
  }
}
section .container.leaflets-container .section-leaflets .leaflets-tile .leaflets-text {
  font-size: 12px;
  font-weight: 500;
  position: absolute;
  bottom: 8px;
  width: 100%;
  left: 0px;
  color: #303030;
  padding: 0 5px;
}
section .container.leaflets-container .section-leaflets .leaflets-tile .leaflets-text strong {
  font-weight: 700;
}
@media (max-width: 767px) {
  section .container.leaflets-container .section-leaflets .leaflets-tile .leaflets-text {
    font-size: 3.05vw;
    bottom: 1.53vw;
    padding: 0 1.27vw;
  }
}
@media (max-width: 1400px) {
  section .container.leaflets-container .section-leaflets .leaflets-tile .leaflets-text.extra-smaller-font-desktop {
    font-size: 10px;
  }
}
@media (max-width: 1199px) {
  section .container.leaflets-container .section-leaflets .leaflets-tile .leaflets-text.smaller-font {
    font-size: 11px;
  }
}
@media (max-width: 767px) {
  section .container.leaflets-container .section-leaflets .leaflets-tile .leaflets-text.smaller-font {
    font-size: 2.8vw;
  }
}
@media (max-width: 1199px) {
  section .container.leaflets-container .section-leaflets .leaflets-tile .leaflets-text.extra-smaller-font {
    font-size: 9px;
  }
}
@media (max-width: 767px) {
  section .container.leaflets-container .section-leaflets .leaflets-tile .leaflets-text.extra-smaller-font {
    font-size: 2.29vw;
    bottom: 1.27vw;
  }
}
section .container.leaflets-container .section-leaflets .leaflets-tile .leaflets-text2 {
  color: #303030;
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  width: 100%;
  padding: 0 10px;
  position: absolute;
  left: 0;
  bottom: 8px;
}
@media (max-width: 767px) {
  section .container.leaflets-container .section-leaflets .leaflets-tile .leaflets-text2 {
    font-size: 3.05vw;
    bottom: 1.53vw;
    padding: 0 1.27vw;
  }
}
section .container.leaflets-container .section-leaflets .leaflets-tile .leaflets-text2.small {
  font-size: 9px;
}
@media (max-width: 767px) {
  section .container.leaflets-container .section-leaflets .leaflets-tile .leaflets-text2.small {
    font-size: 2.29vw;
  }
}
section .container.leaflets-container .section-leaflets .leaflets-tile .leaflets-text-absolute {
  width: 100%;
  font-size: 12px;
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0 5px;
}
@media (max-width: 767px) {
  section .container.leaflets-container .section-leaflets .leaflets-tile .leaflets-text-absolute {
    font-size: 3.05vw;
    bottom: 2.54vw;
    padding: 0 1.27vw;
  }
}
section .container.leaflets-container .section-leaflets .leaflets-tile:hover {
  background: #e7e7e7;
  filter: drop-shadow(0px 0px 2px rgba(0, 0, 0, 0.25));
}
@media (max-width: 767px) {
  section .container.leaflets-container .section-leaflets .leaflets-tile:hover {
    filter: drop-shadow(0px 0px 0.5vw rgba(0, 0, 0, 0.25));
  }
}
section .container.leaflets-container .section-leaflets .x {
  padding-bottom: 0px;
}
section .container.leaflets-container .section-leaflets .leaflets-rabat {
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  padding-right: 15px;
  padding-left: 15px;
}
@media (max-width: 767px) {
  section .container.leaflets-container .section-leaflets .leaflets-rabat {
    padding-left: 3.82vw;
    padding-right: 3.82vw;
    font-size: 3.05vw;
  }
}
section .container.leaflets-container .section-leaflets .leaflets-rabat .leaflet-highlightText {
  padding-bottom: 15px;
  display: block;
  font-size: 22px;
}
@media (max-width: 767px) {
  section .container.leaflets-container .section-leaflets .leaflets-rabat .leaflet-highlightText {
    padding-bottom: 2.54vw;
    font-size: 4.58vw;
  }
}

.contact-section .container .row .contact-text {
  max-width: 580px;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  line-height: 140%;
}
.contact-section .container .row .contact-header {
  font-weight: 700;
}
@media (max-width: 768px) {
  .contact-section .container .row .contact-text {
    text-align: left;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 14px;
    font-weight: 600;
    line-height: 120%;
  }
  .contact-section .container .row .contact-header {
    font-size: 16px;
    font-weight: 600;
    line-height: 140%;
    margin: 20px 0 20px;
  }
}
.contact-section .container .contact-info {
  padding-top: 40px;
  text-align: center;
  padding-bottom: 50px;
}
.contact-section .container .contact-info .contact-tile .contact-tileInfo {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  min-height: 40px;
}
.contact-section .container .contact-info .contact-tile .contact-tileInfo .contact-img {
  width: 22px;
  height: auto;
}
.contact-section .container .contact-info .contact-tile .contact-tileInfo .contact-textDetails {
  align-content: center;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  line-height: 140%;
}
@media (max-width: 768px) {
  .contact-section .container .contact-info .contact-tile .contact-tileInfo .contact-textDetails {
    font-size: 14px;
    line-height: 140%;
  }
}
@media (max-width: 768px) {
  .contact-section .container .contact-info .contact-tile .contact-tileInfo {
    gap: 10px;
  }
}
.contact-section .container .contact-info .contact-tile .contact-data {
  padding-top: 30px;
}
.contact-section .container .contact-info .contact-tile .contact-data .cantact-dataTile {
  transition: all 0.3s ease-in-out;
  color: #000;
  text-decoration: none;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}
.contact-section .container .contact-info .contact-tile .contact-data a:hover {
  color: #ED1B24;
}
@media (max-width: 768px) {
  .contact-section .container .contact-info .contact-tile .contact-data .cantact-dataTile {
    font-size: 14px;
    font-weight: 400;
    line-height: 140%;
  }
}
@media (max-width: 768px) {
  .contact-section .container .contact-info .contact-tile .contact-data {
    padding-top: 15px;
  }
}
@media (max-width: 768px) {
  .contact-section .container .contact-info {
    padding-top: 20px;
  }
}

.cross_1 .container .row .section-title .logo-text {
  font-size: 12px;
  color: #FFF;
  background-color: #ED1B24;
  border-radius: 3px;
  padding-left: 7px;
  padding-right: 7px;
  vertical-align: middle;
}
.cross_1 .container .row .section-title .Logo-title {
  width: 100px;
  height: auto;
}
.cross_1 .container .row .section-title .Logo-titleSM {
  display: none;
}
.cross_1 .container .row .section-title .Logo-textSM {
  display: none;
}
@media (max-width: 768px) {
  .cross_1 .container .row .section-title .Logo-title {
    display: none;
  }
  .cross_1 .container .row .section-title .Logo-titleSM {
    display: inline;
  }
  .cross_1 .container .row .section-title .Logo-textSM {
    display: inline;
  }
}

.section-print .container .row {
  display: flex;
  flex-wrap: nowrap;
  gap: 5px;
}
.section-print .container .row .section-text {
  padding: 0 15px;
}
@media (max-width: 991px) {
  .section-print .container .row {
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .section-print .container .row .section-title h2 {
    font-size: 5.09vw;
  }
}
.section-print .container .row .cross-item {
  flex: 50%;
  display: flex;
  flex-direction: column;
  flex-grow: 0;
}
.section-print .container .row .cross-item .text {
  text-align: center;
  margin: 20px;
}
@media (max-width: 767px) {
  .section-print .container .row .cross-item .text {
    margin: 4.07vw;
    font-size: 4.07vw;
  }
}
.section-print .container .row .cross-item .mobile {
  display: none;
}
@media (max-width: 991px) {
  .section-print .container .row .cross-item .mobile {
    display: inline;
  }
}
@media (max-width: 991px) {
  .section-print .container .row .cross-item {
    flex: 100%;
    padding: 0 5px;
  }
}
@media (max-width: 767px) {
  .section-print .container .row .cross-item {
    padding: 0 1.27vw;
  }
}
.section-print .container .row .cross-item .thumbnail-container {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}
.section-print .container .row .cross-item .thumbnail-container .text-absolute {
  width: 100%;
  text-align: center;
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 767px) {
  .section-print .container .row .cross-item .thumbnail-container .text-absolute {
    top: 6.11vw;
  }
}
@media (max-width: 991px) {
  .section-print .container .row .cross-item .thumbnail-container .text-absolute {
    display: none;
  }
}
.section-print .container .row .cross-item .thumbnail-container .thumbnail-header {
  padding: 30px 0 30px;
}
@media (max-width: 767px) {
  .section-print .container .row .cross-item .thumbnail-container .thumbnail-header {
    padding: 7.63vw 0 7.63vw;
  }
}
@media (max-width: 767px) {
  .section-print .container .row .cross-item .thumbnail-container {
    gap: 1.02vw;
  }
}
.section-print .container .row .cross-item .thumbnail-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section-print .container .row .cross-item .text-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 15px;
  flex-grow: 1;
  height: 100%;
  align-self: stretch;
}
@media (max-width: 991px) {
  .section-print .container .row .cross-item .text-container {
    gap: 15px;
    padding: 15px 5px;
  }
}
@media (max-width: 767px) {
  .section-print .container .row .cross-item .text-container {
    gap: 3.82vw;
    padding: 3.82vw 1.27vw;
  }
}
.section-print .container .row .cross-item .text-container h3 {
  font-size: 20px;
  line-height: 1.4em;
  font-weight: 600;
  margin: 0;
}
@media (max-width: 991px) {
  .section-print .container .row .cross-item .text-container h3 {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .section-print .container .row .cross-item .text-container h3 {
    font-size: 3.56vw;
  }
}
.section-print .container .row .cross-item .text-container p {
  margin: 0;
}
.section-print .container .row .cross-item .text-container .cbtn {
  align-self: flex-end;
  margin-top: auto;
}
@media (max-width: 991px) {
  .section-print .container .row .cross-item .text-container .cbtn {
    align-self: center;
  }
}

.section-adds .container .row {
  display: flex;
  flex-wrap: nowrap;
  gap: 5px;
}
@media (max-width: 991px) {
  .section-adds .container .row {
    flex-direction: column;
  }
}
.section-adds .container .row .cross-item {
  flex: 50%;
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
}
@media (max-width: 991px) {
  .section-adds .container .row .cross-item {
    flex: 100%;
    padding: 0 5px;
  }
}
.section-adds .container .row .cross-item .thumbnail-container {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}
.section-adds .container .row .cross-item .thumbnail-container .text-absolute {
  width: 100%;
  text-align: center;
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
}
.section-adds .container .row .cross-item .thumbnail-container .text-absolute.bottom {
  top: unset;
  bottom: 12px;
}
@media (max-width: 991px) {
  .section-adds .container .row .cross-item .thumbnail-container .text-absolute.bottom {
    bottom: 3.05vw;
  }
}
.section-adds .container .row .cross-item .thumbnail-container .thumbnail-header {
  padding: 30px 0 30px;
}
.section-adds .container .row .cross-item .thumbnail-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #F5F5F5;
}
.section-adds .container .row .cross-item .text-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 15px;
  flex-grow: 1;
  height: 100%;
  align-self: stretch;
}
@media (max-width: 991px) {
  .section-adds .container .row .cross-item .text-container {
    gap: 15px;
  }
}
.section-adds .container .row .cross-item .text-container h3 {
  font-size: 20px;
  line-height: 1.4em;
  font-weight: 600;
  margin: 0;
}
@media (max-width: 991px) {
  .section-adds .container .row .cross-item .text-container h3 {
    font-size: 14px;
  }
}
.section-adds .container .row .cross-item .text-container p {
  margin: 0;
}
.section-adds .container .row .cross-item .text-container .cbtn {
  align-self: flex-end;
  margin-top: auto;
}
@media (max-width: 991px) {
  .section-adds .container .row .cross-item .text-container .cbtn {
    align-self: center;
  }
}

.section-additional-options .container .row {
  gap: 5px;
}
.section-additional-options .container .row .additional-header {
  padding: 30px 0 30px;
}
@media (max-width: 991px) {
  .section-additional-options .container .row {
    padding: 0 5px;
  }
}
@media (max-width: 767px) {
  .section-additional-options .container .row {
    padding: 0 1.27vw;
    gap: 3.82vw;
  }
}
.section-additional-options .container .row .item {
  margin-top: 5px;
  display: flex;
  padding: 0;
  flex-basis: calc(33.3333333333% - 3.3333333333px);
}
@media (max-width: 767px) {
  .section-additional-options .container .row .item {
    flex-direction: column;
    flex-basis: 100%;
  }
}
.section-additional-options .container .row .item .image-container, .section-additional-options .container .row .item .description-container {
  flex: 50%;
}
@media (max-width: 991px) {
  .section-additional-options .container .row .item .image-container {
    flex: 30%;
  }
}
@media (max-width: 576px) {
  .section-additional-options .container .row .item .image-container {
    flex: 100%;
  }
}
@media (max-width: 991px) {
  .section-additional-options .container .row .item .description-container {
    flex: 70%;
  }
}
@media (max-width: 576px) {
  .section-additional-options .container .row .item .description-container {
    flex: 100%;
  }
}
.section-additional-options .container .row .block {
  display: block;
}
.section-additional-options .container .row .block .thumbnail-container {
  border-radius: 8px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .section-additional-options .container .row .block .thumbnail-container {
    border-radius: 1.02vw;
  }
}
.section-additional-options .container .row .block .thumbnail-container img {
  width: 100%;
}
@media (max-width: 991px) {
  .section-additional-options .container .row .block .thumbnail-container {
    text-align-last: center;
  }
}
.section-additional-options .container .row .image-container img {
  width: 100%;
  height: auto;
}
.section-additional-options .container .row .description-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 25px 15px;
}
@media (max-width: 767px) {
  .section-additional-options .container .row .description-container {
    padding: 3.82vw 1.27vw;
  }
}
.section-additional-options .container .row .description-container .description-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 991px) {
  .section-additional-options .container .row .description-container .description-row {
    margin: 0px;
  }
}
@media (max-width: 767px) {
  .section-additional-options .container .row .description-container .description-row {
    gap: 3.82vw;
  }
}
.section-additional-options .container .row .description-container .description-row .btn-uszlachetnienia {
  align-self: end;
  width: auto;
}
.section-additional-options .container .row .description-container .description-row .btn-multiple {
  display: grid;
  gap: 5px;
}
@media (max-width: 767px) {
  .section-additional-options .container .row .description-container .description-row .btn-multiple {
    gap: 1.27vw;
  }
}
.section-additional-options .container .row .description-container h3 {
  margin: 0;
}
@media (max-width: 991px) {
  .section-additional-options .container .row .description-container h3 {
    font-size: 14px;
    margin: 0px;
  }
}
@media (max-width: 767px) {
  .section-additional-options .container .row .description-container h3 {
    font-size: 3.56vw;
  }
}

.section-where .container .row {
  display: flex;
  flex-wrap: nowrap;
  gap: 5px;
}
@media (max-width: 991px) {
  .section-where .container .row {
    flex-direction: column;
  }
}
.section-where .container .row .cross-item {
  flex: 50%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 991px) {
  .section-where .container .row .cross-item {
    flex: 100%;
    padding: 0 5px;
  }
}
@media (max-width: 767px) {
  .section-where .container .row .cross-item {
    padding: 0 1.27vw;
  }
}
.section-where .container .row .cross-item .thumbnail-container {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}
.section-where .container .row .cross-item .thumbnail-container .text-absolute {
  width: 100%;
  text-align: center;
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: #FFF;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
  margin: 0;
}
@media (max-width: 767px) {
  .section-where .container .row .cross-item .thumbnail-container .text-absolute {
    top: 6.11vw;
  }
}
.section-where .container .row .cross-item .thumbnail-container .thumbnail-header {
  padding: 30px 0 30px;
}
@media (max-width: 767px) {
  .section-where .container .row .cross-item .thumbnail-container .thumbnail-header {
    padding: 7.63vw 0 7.63vw;
  }
}
@media (max-width: 767px) {
  .section-where .container .row .cross-item .thumbnail-container {
    border-radius: 1.02vw;
  }
}
.section-where .container .row .cross-item .thumbnail-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section-where .container .row .cross-item .text-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 15px;
  flex-grow: 1;
  height: 100%;
  align-self: stretch;
}
@media (max-width: 991px) {
  .section-where .container .row .cross-item .text-container {
    gap: 15px;
  }
}
@media (max-width: 767px) {
  .section-where .container .row .cross-item .text-container {
    gap: 3.05vw;
    padding: 3.82vw;
  }
}
.section-where .container .row .cross-item .text-container h3 {
  font-size: 20px;
  line-height: 1.4em;
  font-weight: 600;
  margin: 0;
}
@media (max-width: 991px) {
  .section-where .container .row .cross-item .text-container h3 {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .section-where .container .row .cross-item .text-container h3 {
    font-size: 3.56vw;
  }
}
.section-where .container .row .cross-item .text-container p {
  margin: 0;
}
.section-where .container .row .cross-item .text-container .cbtn {
  align-self: flex-end;
  margin-top: auto;
}
@media (max-width: 991px) {
  .section-where .container .row .cross-item .text-container .cbtn {
    align-self: center;
  }
}

.section-introduction .introduction-head {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 25px;
}
.section-introduction .introduction-head .image-header .logo-text {
  font-size: 12px;
  color: #FFF;
  background-color: #ED1B24;
  border-radius: 3px;
  padding-left: 7px;
  padding-right: 7px;
  vertical-align: middle;
}
.section-introduction .image-container {
  padding: 0px;
}
.section-introduction .image-container.left-intend {
  padding-left: 6px;
}
.section-introduction .image-container.right-intend {
  padding-right: 6px;
}
@media (max-width: 991px) {
  .section-introduction .image-container {
    padding: 0px 6px;
  }
}
.section-introduction .image-container img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  background-color: #F5F5F5;
}
.section-introduction .description-container {
  display: flex;
  justify-content: center;
}
.section-introduction .description-container .description-row {
  margin: 10px;
  margin-top: 0px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 991px) {
  .section-introduction .description-container .description-row {
    margin: 20px 0px;
  }
}
.section-introduction .description-container .btns-container {
  display: flex;
  justify-content: flex-end;
  gap: 5px;
}
.section-introduction .description-container .btns-container .cbtn {
  color: #000;
  text-align: center;
  font-family: Poppins;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
@media (max-width: 1400px) {
  .section-introduction .description-container .btns-container .cbtn {
    font-size: 13px;
  }
}
@media (max-width: 991px) {
  .section-introduction .description-container .btns-container .cbtn {
    font-size: 12px;
    line-height: 1.5em;
  }
}

section.text-test {
  margin-top: 0px;
}
section.text-test .szczegoly-zamowienieTest {
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  cursor: pointer;
  transition: opacity 0.3s;
}
section.text-test .contentZamowienieTest {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out;
  transform: translateY(-1.3em);
}
section.text-test .contentZamowienieTest p {
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
section.text-test.active .szczegoly-zamowienieTest {
  opacity: 0;
  pointer-events: none;
}
section.text-test.active .contentZamowienieTest {
  max-height: var(--scrollHeight);
}

section .container .recenzje-container {
  gap: 5px !important;
}
@media (max-width: 767px) {
  section .container .recenzje-container {
    gap: 1.27vw !important;
  }
}
section .container .recenzje-container .recenzje-item {
  width: calc(25% - 5px);
  border-radius: 8px;
  background-color: #F5F5F5;
  height: auto;
}
@media (max-width: 767px) {
  section .container .recenzje-container .recenzje-item {
    border-radius: 2.04vw;
    margin-right: 0;
  }
}
section .container .recenzje-container .recenzje-item:last-child {
  margin-right: 0;
}
section .container .recenzje-container .recenzje-item .description-container {
  height: 100%;
  justify-content: start;
}
section .container .recenzje-container .recenzje-item .description-container .description-row {
  height: 100%;
}
section .container .recenzje-container .recenzje-item .description-container .description-row .recenzja {
  margin-bottom: 5px;
  max-width: unset;
  font-size: 16px;
  font-weight: 400;
}
@media (max-width: 767px) {
  section .container .recenzje-container .recenzje-item .description-container .description-row .recenzja {
    margin-bottom: 1.27vw;
    font-size: 4.07vw;
  }
}
section .container .recenzje-container .recenzje-item .description-container .description-row .recenzja p {
  max-width: unset;
}
section .container .recenzje-container .recenzje-item .description-container .description-row img {
  width: auto;
  height: 40px;
  margin-top: auto;
  max-width: 100%;
  align-self: flex-start;
}
@media (max-width: 991px) {
  section .container .recenzje-container .recenzje-item .description-container .description-row img {
    height: 36px;
  }
}
@media (max-width: 767px) {
  section .container .recenzje-container .recenzje-item .description-container .description-row img {
    height: 9.16vw;
  }
}
section .container .recenzje-container .recenzje-item .description-container .description-row .row-recenzje {
  margin-top: 5px;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  section .container .recenzje-container .recenzje-item .description-container .description-row .row-recenzje {
    margin-top: 1.27vw;
  }
}
section .container .recenzje-container .recenzje-item .description-container .description-row .row-recenzje .recenzje-imie {
  align-self: end;
}
section .container .recenzje-container .recenzje-item .description-container .description-row .row-recenzje .recenzje-imie p {
  font-size: 16px;
  font-weight: 400;
}
@media (max-width: 767px) {
  section .container .recenzje-container .recenzje-item .description-container .description-row .row-recenzje .recenzje-imie p {
    font-size: 4.07vw;
  }
}
section .container .recenzje-container .recenzje-item .description-container .description-row .row-recenzje .recenzje-imie .bold {
  font-weight: 600;
}
@media (max-width: 991px) {
  section .container .recenzje-container {
    overflow-x: auto;
    flex-wrap: nowrap;
    display: flex;
  }
  section .container .recenzje-container .recenzje-item {
    min-width: 248px;
    flex-shrink: 0;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  section .container .recenzje-container .recenzje-item {
    min-width: 63.1vw;
  }
}
@media (max-width: 991px) {
  section .container .recenzje-container .recenzje-item .description-container .description-row .recenzja {
    max-width: 220px;
    font-size: 12px;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  section .container .recenzje-container .recenzje-item .description-container .description-row .recenzja {
    max-width: 55.98vw;
    font-size: 3.05vw;
  }
}
@media (max-width: 991px) {
  section .container .recenzje-container .recenzje-item .description-container .description-row .row-recenzje .recenzje-imie p {
    font-size: 12px;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  section .container .recenzje-container .recenzje-item .description-container .description-row .row-recenzje .recenzje-imie p {
    font-size: 3.05vw;
  }
}

.section-rabaty .container .row-rabaty {
  justify-content: center;
  justify-self: center;
}
.section-rabaty .container .row-rabaty .rabaty {
  width: 100%;
}
.section-rabaty .container .row-rabaty .rabaty-text {
  color: #000;
  text-align: center;
  font-family: Poppins;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  margin-top: 10px;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .section-rabaty .container .row-rabaty .rabaty-text {
    font-size: 4.07vw;
    margin-top: 2.54vw;
    margin-bottom: 5.09vw;
    padding: 0 2.54vw;
  }
}
@media (max-width: 767px) {
  .section-rabaty .container .row-rabaty .rabaty-text br {
    display: none;
  }
}
.section-rabaty .container .row-rabaty h2 .color-rabaty {
  color: #9981E0;
}
.section-rabaty .container .row-rabaty .rabaty-kafelki {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 25px;
}
@media (max-width: 767px) {
  .section-rabaty .container .row-rabaty .rabaty-kafelki {
    gap: 1.27vw;
    margin-bottom: 2.54vw;
  }
}
.section-rabaty .container .row-rabaty .rabaty-kafelki .kafelek {
  justify-content: center;
  padding: 50px;
  padding-bottom: 65px;
  text-align: center;
  flex: calc(50% - 2.5px);
  background-color: #F5F5F5;
  border-radius: 5px;
  color: #000;
}
@media (max-width: 991px) {
  .section-rabaty .container .row-rabaty .rabaty-kafelki .kafelek {
    padding: 20px;
  }
}
@media (max-width: 767px) {
  .section-rabaty .container .row-rabaty .rabaty-kafelki .kafelek {
    flex: 100%;
    border-radius: 1.27vw;
    padding: 8.91vw;
    padding-bottom: 11.27vw;
  }
}
.section-rabaty .container .row-rabaty .rabaty-kafelki .kafelek h3 {
  margin: 0;
  color: #000;
  text-align: center;
  font-family: Poppins;
  font-size: 34px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
}
@media (max-width: 767px) {
  .section-rabaty .container .row-rabaty .rabaty-kafelki .kafelek h3 {
    font-size: 8.91vw;
  }
}
.section-rabaty .container .row-rabaty .rabaty-kafelki .kafelek p {
  color: #000;
  text-align: center;
  font-family: Poppins;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
}
@media (max-width: 767px) {
  .section-rabaty .container .row-rabaty .rabaty-kafelki .kafelek p {
    font-size: 4.07vw;
  }
}
.section-rabaty .container .row-rabaty .button-wrapper {
  justify-items: center;
  text-align: center;
}
.section-rabaty .container .row-rabaty .button-wrapper .cbtn {
  display: inline-block;
  text-align: center;
}
.section-rabaty .container .row-rabaty h3 {
  text-align: center;
}
.section-rabaty .container .row-rabaty .ile-zyskasz {
  margin-top: 65px;
}
@media (max-width: 767px) {
  .section-rabaty .container .row-rabaty .ile-zyskasz {
    margin-top: 11.2vw;
  }
}
.section-rabaty .container .row-benefity {
  background-color: #F5F5F5;
  border-radius: 8px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .section-rabaty .container .row-benefity {
    border-radius: 2.04vw;
    padding: 0 1.27vw;
  }
}
.section-rabaty .container .row-benefity .img-cont {
  padding: 0;
  overflow: hidden;
}
@media (max-width: 991px) {
  .section-rabaty .container .row-benefity .img-cont {
    border-radius: 8px 8px 0px 0px;
  }
}
@media (max-width: 767px) {
  .section-rabaty .container .row-benefity .img-cont {
    border-radius: 2.04vw 2.04vw 0px 0px;
  }
}
.section-rabaty .container .row-benefity .text-cont {
  display: flex;
  flex-direction: column;
  padding: 25px;
  justify-content: center;
}
@media (max-width: 767px) {
  .section-rabaty .container .row-benefity .text-cont {
    padding: 6.36vw 1.27vw;
  }
}
.section-rabaty .container .row-benefity .benefity-row {
  width: 100%;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .section-rabaty .container .row-benefity .benefity-row {
    margin-bottom: 3.82vw;
  }
}
.section-rabaty .container .row-benefity .benefity-row:nth-of-type(1) {
  margin-bottom: 5px;
}
@media (max-width: 767px) {
  .section-rabaty .container .row-benefity .benefity-row:nth-of-type(1) {
    margin-bottom: 3.82vw;
  }
}
.section-rabaty .container .row-benefity .benefity-row:nth-of-type(2), .section-rabaty .container .row-benefity .benefity-row:nth-of-type(3) {
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .section-rabaty .container .row-benefity .benefity-row:nth-of-type(2), .section-rabaty .container .row-benefity .benefity-row:nth-of-type(3) {
    margin-bottom: 3.82vw;
  }
}
.section-rabaty .container .row-benefity .benefity-row:nth-of-type(6) {
  margin-bottom: 5px;
}
@media (max-width: 767px) {
  .section-rabaty .container .row-benefity .benefity-row:nth-of-type(6) {
    margin-bottom: 1.27vw;
  }
}
.section-rabaty .container .row-benefity .benefity-row .benefit-column {
  flex: 50%;
  flex-grow: 1;
  flex-shrink: 0;
  text-align: center;
}
.section-rabaty .container .row-benefity .benefity-row .benefit-column h3 {
  margin: 0;
  padding: 0;
}
@media (max-width: 767px) {
  .section-rabaty .container .row-benefity .benefity-row .benefit-column h3 {
    font-size: 4.58vw;
  }
}
.section-rabaty .container .row-benefity .benefity-row .benefit-column .ceny {
  font-family: Poppins;
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
  color: #000;
}
@media (max-width: 767px) {
  .section-rabaty .container .row-benefity .benefity-row .benefit-column .ceny {
    font-size: 6.36vw;
  }
}
.section-rabaty .container .row-benefity .benefity-row .benefit-column .ceny.purple {
  color: #9981E1;
}
.section-rabaty .container .row-benefity .benefity-row .benefit-column del.ceny {
  color: #727272;
}
@media (max-width: 767px) {
  .section-rabaty .container .row-benefity .benefity-row .benefit-column br {
    display: none;
  }
}
@media (max-width: 767px) {
  .section-rabaty .container .row-benefity .benefity-row .benefit-column p {
    font-size: 4.07vw;
  }
}
.section-rabaty .container .row-benefity .linia {
  margin: 0 auto;
  width: 95%;
  height: 1px;
  background-color: #000;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .section-rabaty .container .row-benefity .linia {
    margin-bottom: 2.54vw;
  }
}
.section-rabaty .container .row-benefity .button-rabaty {
  margin: 0px auto 10px;
  justify-self: center;
  width: auto;
  height: 30px;
  background-color: #000;
  border-radius: 5px;
  color: #FFF;
  border: 0px;
  padding: 0px 10px;
}
@media (max-width: 767px) {
  .section-rabaty .container .row-benefity .button-rabaty {
    height: 7.63vw;
    margin: 0px auto 2.54vw;
    border-radius: 1.27vw;
    padding: 0px 2.54vw;
  }
}
.section-rabaty .container .row-benefity .button-rabaty:hover {
  filter: brightness(0.9);
}
.section-rabaty .container .row-benefity .cbtn {
  align-self: center;
}
.section-rabaty .container img {
  max-width: 100%;
}

@media (max-width: 767px) {
  .what-you-get .container .row .section-title {
    padding-top: 3.05vw;
  }
}
.what-you-get .container .row .tiles-container {
  width: 82.5%;
  margin: 0 auto;
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .what-you-get .container .row .tiles-container {
    gap: 1.27vw;
    flex-wrap: nowrap;
    overflow-x: auto;
    width: 100%;
    padding-left: 1.27vw;
    padding-right: 1.27vw;
  }
}
.what-you-get .container .row .tiles-container:first-child {
  margin-bottom: 5px;
}
@media (max-width: 767px) {
  .what-you-get .container .row .tiles-container:first-child {
    margin-bottom: 1.27vw;
  }
}
.what-you-get .container .row .tiles-container .tile {
  flex: calc(20% - 4px);
  background: #F5F5F5;
  border-radius: 8px;
  padding: 25px 8px;
  padding-bottom: 40px;
  display: flex;
  flex-direction: column;
  text-align: center;
}
@media (max-width: 767px) {
  .what-you-get .container .row .tiles-container .tile {
    flex: 60%;
    flex-shrink: 0;
  }
}
.what-you-get .container .row .tiles-container .tile img {
  height: 80px;
  width: auto;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .what-you-get .container .row .tiles-container .tile img {
    height: 20.36vw;
  }
}
.what-you-get .container .row .tiles-container .tile p {
  font-size: 12px;
  line-height: 1.4em;
}
@media (max-width: 767px) {
  .what-you-get .container .row .tiles-container .tile p {
    font-size: 3.05vw;
  }
}
.what-you-get .container .row .tiles-container .tile p.tile-title {
  font-weight: 600;
}

.rabat-steps .new-section-title {
  text-align: center;
}
@media (max-width: 767px) {
  .rabat-steps .new-section-title {
    padding: 0 10px;
    padding-top: 3.05vw;
  }
}
.rabat-steps .new-section-title p {
  color: #000;
  text-align: center;
  font-family: Poppins;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 140%;
  margin-top: 10px;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .rabat-steps .new-section-title p {
    font-size: 4.07vw;
    margin-top: 2.54vw;
    margin-bottom: 5.09vw;
  }
}
@media (max-width: 767px) {
  .rabat-steps .new-section-title p br {
    display: none;
  }
}
.rabat-steps .btn-cont {
  text-align: center;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .rabat-steps .btn-cont {
    margin-top: 7.63vw;
  }
}
.rabat-steps .btn-cont .cbtn {
  display: inline-block;
}

.konfigurator {
  margin-top: 0;
}
.konfigurator .firma-banner {
  position: relative;
}
.konfigurator .firma-banner .container-fluid .konfigurator-header {
  position: relative;
  padding: 0;
  width: 100%;
  height: 270px;
}
@media (max-width: 767px) {
  .konfigurator .firma-banner .container-fluid .konfigurator-header {
    height: 89vw;
  }
}
.konfigurator .firma-banner .container-fluid .konfigurator-header img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  display: block;
}
@media (max-width: 991px) {
  .konfigurator .firma-banner .container-fluid .konfigurator-header img.desktop {
    display: none;
  }
}
@media (min-width: 992px) {
  .konfigurator .firma-banner .container-fluid .konfigurator-header img.mobile {
    display: none;
  }
}
@media (max-width: 767px) {
  .konfigurator .firma-banner .container-fluid .konfigurator-header img {
    width: 100%;
    height: 100%;
  }
}
.konfigurator .firma-banner .container {
  position: absolute;
  height: 100%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.konfigurator .firma-banner .container .row {
  position: static;
}
.konfigurator .firma-banner .container .konfigurator-h1 {
  position: absolute;
  margin: 0;
  top: 50%;
  left: 290px;
  transform: translateY(-50%);
  color: #FFF;
  text-align: center;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.9), 2px 2px 10px rgba(0, 0, 0, 0.9), 2px 2px 10px rgba(0, 0, 0, 0.9);
  font-family: Poppins;
  font-size: 43px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
}
@media (max-width: 991px) {
  .konfigurator .firma-banner .container .konfigurator-h1 {
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
@media (max-width: 767px) {
  .konfigurator .firma-banner .container .konfigurator-h1 {
    font-size: 7.63vw;
  }
}
.konfigurator .container .row .konfigurator-row-text {
  margin: 10px 0;
  margin-bottom: 15px;
}
@media (max-width: 991px) {
  .konfigurator .container .row .konfigurator-row-text {
    margin: 20px 5px;
    max-width: calc(100% - 10px);
  }
}
@media (max-width: 767px) {
  .konfigurator .container .row .konfigurator-row-text {
    margin: 5.09vw 1.27vw;
    max-width: calc(100% - 2.54vw);
  }
}
.konfigurator .container .row .konfigurator-row-text .konfigurator-text {
  align-content: center;
  text-align: left;
}
.konfigurator .container .row .konfigurator-row-text .konfigurator-text h2 {
  text-align: left;
  margin-bottom: 15px;
}
@media (max-width: 991px) {
  .konfigurator .container .row .konfigurator-row-text .konfigurator-text h2 {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .konfigurator .container .row .konfigurator-row-text .konfigurator-text h2 {
    margin-bottom: 3.82vw;
  }
}
@media (max-width: 991px) {
  .konfigurator .container .row .konfigurator-row-text .konfigurator-text {
    order: 1;
    padding: 10px;
  }
}
@media (max-width: 767px) {
  .konfigurator .container .row .konfigurator-row-text .konfigurator-text {
    padding: 1.27vw;
  }
}
.konfigurator .container .row .konfigurator-row-text .konfigurator-stats {
  background-color: #9981E1;
  border-radius: 8px;
  padding: 35px 25px;
}
.konfigurator .container .row .konfigurator-row-text .konfigurator-stats p, .konfigurator .container .row .konfigurator-row-text .konfigurator-stats h3 {
  margin: 0;
  color: #FFF;
}
.konfigurator .container .row .konfigurator-row-text .konfigurator-stats h3 {
  font-size: 25px;
  text-decoration: none !important;
  color: white !important;
}
@media (max-width: 767px) {
  .konfigurator .container .row .konfigurator-row-text .konfigurator-stats h3 {
    font-size: 6.36vw;
  }
}
.konfigurator .container .row .konfigurator-row-text .konfigurator-stats p {
  margin-bottom: 12px;
}
.konfigurator .container .row .konfigurator-row-text .konfigurator-stats p:last-child {
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .konfigurator .container .row .konfigurator-row-text .konfigurator-stats {
    margin-top: 25px;
    order: 2;
  }
}
@media (max-width: 767px) {
  .konfigurator .container .row .konfigurator-row-text .konfigurator-stats {
    margin-top: 4.54vw;
  }
}

.section-404 {
  margin: 0;
}
.section-404 .container .row {
  align-items: center;
  min-height: 100vh;
}
.section-404 .container .row .img-col-404 {
  display: flex;
  justify-content: center;
  align-items: center;
}
.section-404 .container .row .img-col-404 .img-404 {
  width: 100%;
  height: auto;
}
.section-404 .container .row .col-text-404 {
  text-align: center;
}
.section-404 .container .row .col-text-404 .title-404 {
  color: #D6D6D6;
  text-align: center;
  font-family: Poppins;
  font-size: 200px;
  font-style: normal;
  font-weight: 600;
  line-height: 140%;
}
@media (max-width: 768px) {
  .section-404 .container .row .col-text-404 .title-404 {
    font-size: 100px;
  }
}
.section-404 .container .row .col-text-404 .link-404 {
  color: #000;
  text-decoration: underline;
}
.section-404 .container .row .col-text-404 .margin-404 {
  margin: 0 0 22px 0;
}

#rodzaje-produktow .section-about.about-usz {
  place-self: center;
}
#rodzaje-produktow .section-about .row .section-title.title-usz {
  max-width: fit-content;
  margin: auto;
}
@media (max-width: 1099px) {
  #rodzaje-produktow .section-about .row .section-title.title-usz .br br {
    display: none;
  }
}
#rodzaje-produktow .section-about .row .section-title .text-center-usz {
  text-align: center;
  font-weight: unset;
}

@property --percentage {
  initial-value: 0%;
  inherits: false;
  syntax: "<percentage>";
}
.banner-1 {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 0;
  transition: height 0.4s;
  height: 270px;
  margin: 0;
}
@media (max-width: 767px) {
  .banner-1 {
    height: 89vw;
  }
}
.banner-1 .banner-new-timer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: var(--tw);
  height: 3px;
  background: rgba(245, 245, 245, 0.75);
  border-radius: 0;
}
.banner-1 .banner-timer {
  position: absolute;
  z-index: 50;
  width: auto;
  height: auto;
  bottom: 22px;
  display: flex;
  left: 50%;
  transform: translateX(-50%);
  gap: 8px;
  justify-content: center;
}
@media (max-width: 767px) {
  .banner-1 .banner-timer {
    bottom: 2.6vw;
    gap: 1.54vw;
  }
}
.banner-1 .banner-timer .slide-time {
  height: 8px;
  width: 8px;
  border-radius: 100%;
  transition: opacity 0.3s, background 0.3s;
  cursor: pointer;
  background: white;
}
@media (max-width: 767px) {
  .banner-1 .banner-timer .slide-time {
    width: 1.54vw;
    height: 1.54vw;
  }
}
.banner-1 .banner-timer .slide-time:not(.is-active):hover {
  opacity: 0.7;
}
.banner-1 .banner-timer .slide-time.is-active {
  background: whitesmoke;
  background: conic-gradient(white var(--timePercentage), #D6D6D6 0);
}
@keyframes timer {
  to {
    --percentage: 100%;
  }
}
.banner-1 .banner-backgrounds {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.banner-1 .banner-backgrounds .banner__background {
  opacity: 0;
  pointer-events: none;
  display: block;
  transition: opacity 1s;
  height: 100%;
  animation: none;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--backgroundcolor);
}
.banner-1 .banner-backgrounds .banner__background.is-opacity {
  opacity: 1;
}
.banner-1 .banner-backgrounds .banner__background .container::before {
  content: "";
  height: 100%;
  width: 60px;
  position: absolute;
  top: 0;
  left: calc(50% - 2px);
  background: linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, var(--backgroundcolor) 80.21%);
  z-index: 20;
}
.banner-1 .banner-backgrounds .banner__background .container::after {
  content: "";
  height: 100%;
  width: 60px;
  position: absolute;
  top: 0;
  right: 0px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, var(--backgroundcolor) 80.21%);
  z-index: 20;
}
@media (max-width: 991px) {
  .banner-1 .banner-backgrounds .banner__background .container::before, .banner-1 .banner-backgrounds .banner__background .container::after {
    width: 10px;
  }
}
@media (max-width: 767px) {
  .banner-1 .banner-backgrounds .banner__background .container::before, .banner-1 .banner-backgrounds .banner__background .container::after {
    display: none;
  }
}
.banner-1 .banner-backgrounds .banner__background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.banner-1 .banner-backgrounds .banner__background img {
  display: none;
  width: 50%;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  object-fit: cover;
}
@media (max-width: 767px) {
  .banner-1 .banner-backgrounds .banner__background img {
    width: 100%;
    height: 100%;
  }
}
.banner-1 .banner-backgrounds .banner__background img.desktop {
  object-fit: cover;
}
@media (min-width: 768px) {
  .banner-1 .banner-backgrounds .banner__background img.desktop {
    display: block;
  }
}
@media (max-width: 767px) {
  .banner-1 .banner-backgrounds .banner__background img.mobile {
    display: block;
  }
}
.banner-1 .banner-backgrounds .banner__background img.desktop-all {
  display: block;
}
.banner-1 .container {
  position: relative;
  height: 100%;
}
.banner-1 .container .content {
  height: 100%;
  width: 100%;
}
.banner-1 .container .content .banner-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 200;
  cursor: pointer;
  display: none;
}
@media (max-width: 991px) {
  .banner-1 .container .content .banner-arrow {
    display: none;
  }
}
.banner-1 .container .content .banner-arrow.banner-arrow--prev {
  left: 20px;
}
.banner-1 .container .content .banner-arrow.banner-arrow--next {
  right: 20px;
}
.banner-1 .container .content .banner-arrow img {
  width: 20px;
  height: auto;
}
.banner-1 .container .content .banner-inner-content {
  opacity: 0;
  transition: opacity 1s;
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
  top: 0;
  left: 0;
}
@media (max-width: 767px) {
  .banner-1 .container .content .banner-inner-content {
    max-width: 100%;
  }
}
.banner-1 .container .content .banner-inner-content.is-display {
  display: block;
}
.banner-1 .container .content .banner-inner-content.is-opacity {
  opacity: 1;
  pointer-events: all;
}
.banner-1 .container .content .banner-inner-content .content {
  position: initial;
  display: flex;
  flex-direction: column;
  gap: 35px;
  max-width: 50%;
  align-items: center;
  justify-content: start;
  margin-top: 36px;
}
@media (max-width: 767px) {
  .banner-1 .container .content .banner-inner-content .content {
    padding-top: 45.55vw;
    margin-top: 0vw;
    gap: 5.09vw;
    padding-bottom: 12.7vw;
    min-height: 65vw;
    max-width: 100%;
  }
}
.banner-1 .container .content .banner-inner-content .content .badge {
  align-self: flex-start;
  background: #ED1B24;
  padding: 3px 10px;
  position: absolute;
  left: calc(var(--offsetx) * -1);
  top: 35px;
  border-radius: 0px 5px 5px 0px;
  box-shadow: 0px 1.154px 1.154px rgba(0, 0, 0, 0.5);
}
@media (max-width: 991px) {
  .banner-1 .container .content .banner-inner-content .content .badge {
    top: 17px;
    padding: 6px 8px;
  }
}
@media (max-width: 767px) {
  .banner-1 .container .content .banner-inner-content .content .badge {
    top: 4.3vw;
    padding: 1.35vw 1.85vw;
  }
}
.banner-1 .container .content .banner-inner-content .content .badge.badge-green {
  background: #12AD77;
}
.banner-1 .container .content .banner-inner-content .content .badge p {
  font-size: 18px;
  line-height: 1.4em;
  color: white;
  font-weight: 600;
  margin: 0;
  padding: 0;
}
@media (max-width: 1200px) {
  .banner-1 .container .content .banner-inner-content .content .badge p {
    font-size: 2vw;
  }
}
@media (max-width: 767px) {
  .banner-1 .container .content .banner-inner-content .content .badge p {
    font-size: 3.05vw;
  }
}
.banner-1 .container .content .banner-inner-content .content h2 {
  margin: 0px;
  line-height: 1em !important;
}
.banner-1 .container .content .banner-inner-content .content h2 span {
  font-size: 1.2em;
  -webkit-text-stroke: 1px black;
  color: transparent;
  font-style: italic;
  font-weight: 700;
}
.banner-1 .container .content .banner-inner-content .content h2 img {
  display: inline-block;
  vertical-align: center;
}
@media (max-width: 991px) {
  .banner-1 .container .content .banner-inner-content .content h2 {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4em;
    padding-top: 0;
    padding-bottom: 0px;
  }
}
@media (max-width: 767px) {
  .banner-1 .container .content .banner-inner-content .content h2 {
    font-size: 5.09vw;
  }
}
.banner-1 .container .content .banner-inner-content .content p {
  text-align: center;
  font-size: 18px;
  font-weight: 400;
}
.banner-1 .container .content .banner-inner-content .content p strong {
  font-weight: 600;
}
@media (max-width: 991px) {
  .banner-1 .container .content .banner-inner-content .content p {
    max-width: 100%;
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .banner-1 .container .content .banner-inner-content .content p {
    font-size: 3.56vw;
  }
}
.banner-1 .container .content .banner-inner-content .content .btns-container {
  display: flex;
  justify-content: center;
}

.main-cross {
  margin: 0;
  overflow: hidden;
}
@media (max-width: 991px) {
  .main-cross {
    padding: 5px;
  }
}
@media (max-width: 767px) {
  .main-cross {
    padding: 0px 1.27vw;
  }
}
.main-cross .container .row {
  position: relative;
}
.main-cross .container .row ul.cross-menu {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  padding: 16px 10px;
}
@media (max-width: 1200px) {
  .main-cross .container .row ul.cross-menu {
    padding: 12px 10px;
    flex-wrap: nowrap;
    white-space: nowrap;
    overflow-x: auto;
    gap: 15px;
  }
}
@media (max-width: 767px) {
  .main-cross .container .row ul.cross-menu {
    padding: 3.56vw 2.54vw;
    gap: 3.82vw;
  }
}
.main-cross .container .row ul.cross-menu li {
  padding: 0;
  position: relative;
}
@media (max-width: 1200px) {
  .main-cross .container .row ul.cross-menu li {
    flex: 1;
    flex-grow: 0;
    flex-shrink: 0;
  }
}
.main-cross .container .row ul.cross-menu li.is-active a {
  color: #ED1B24;
  opacity: 0;
}
.main-cross .container .row ul.cross-menu li.is-active a:hover {
  filter: brightness(1.2);
}
.main-cross .container .row ul.cross-menu li.is-active span {
  opacity: 1;
  color: #ED1B24;
}
.main-cross .container .row ul.cross-menu li a, .main-cross .container .row ul.cross-menu li span {
  color: black;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3em;
  text-align: center;
  transition: color 0.3s, filter 0.3s, font-weight 0.3s, opacity 0.3s;
}
@media (max-width: 1300px) {
  .main-cross .container .row ul.cross-menu li a, .main-cross .container .row ul.cross-menu li span {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .main-cross .container .row ul.cross-menu li a, .main-cross .container .row ul.cross-menu li span {
    font-size: 3.56vw;
  }
}
.main-cross .container .row ul.cross-menu li a:hover, .main-cross .container .row ul.cross-menu li span:hover {
  color: #ED1B24;
}
.main-cross .container .row ul.cross-menu li span {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  font-weight: 700;
  transition: opacity 0.3s;
  opacity: 0;
  white-space: nowrap;
  pointer-events: none;
}
.main-cross .container .row .cross-items-category-container {
  display: flex;
  width: 100%;
  z-index: 50;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  position: absolute;
}
.main-cross .container .row .cross-items-category-container.is-active {
  opacity: 1;
  pointer-events: 1;
  z-index: 100;
  position: relative;
}
.main-cross .container .row .cross-items-category-container .cross-items {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
@media (max-width: 767px) {
  .main-cross .container .row .cross-items-category-container .cross-items {
    gap: 1.27vw;
  }
}
.main-cross .container .row .cross-items-category-container .cross-items .cross-item {
  flex: 1;
  flex-grow: 0;
  flex-shrink: 0;
  background: #F5F5F5;
  flex-basis: calc(16.6666666667% - 4.17px);
  text-align: center;
  transition: background 0.3s, filter 0.3s;
  cursor: pointer;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .main-cross .container .row .cross-items-category-container .cross-items .cross-item {
    flex-basis: calc(20% - 4px);
  }
}
@media (max-width: 991px) {
  .main-cross .container .row .cross-items-category-container .cross-items .cross-item {
    flex-basis: calc(25% - 3.9px);
  }
}
@media (max-width: 767px) {
  .main-cross .container .row .cross-items-category-container .cross-items .cross-item {
    flex-basis: calc(50% - 0.64vw);
    border-radius: 1.53vw;
  }
}
.main-cross .container .row .cross-items-category-container .cross-items .cross-item:hover {
  background: #e7e7e7;
  filter: drop-shadow(0px 0px 2px rgba(0, 0, 0, 0.25));
}
@media (max-width: 767px) {
  .main-cross .container .row .cross-items-category-container .cross-items .cross-item:hover {
    filter: drop-shadow(0px 0px 0.5vw rgba(0, 0, 0, 0.25));
  }
}
.main-cross .container .row .cross-items-category-container .cross-items .cross-item .badges {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 5px;
  top: 5px;
  left: 5px;
  width: calc(100% - 10px);
}
@media (max-width: 767px) {
  .main-cross .container .row .cross-items-category-container .cross-items .cross-item .badges {
    gap: 1.27vw;
    top: 1.27vw;
    left: 1.27vw;
    width: calc(100% - 2.54vw);
  }
}
.main-cross .container .row .cross-items-category-container .cross-items .cross-item .badges .badge {
  display: flex;
  font-size: 12px;
  line-height: 1.3em;
  align-items: center;
  color: white;
  font-weight: 500;
  border-radius: 0;
  align-self: flex-start;
  gap: 5px;
  filter: drop-shadow(1.5px 1.5px 3px rgba(0, 0, 0, 0.5));
  letter-spacing: 1px;
}
@media (max-width: 767px) {
  .main-cross .container .row .cross-items-category-container .cross-items .cross-item .badges .badge {
    font-size: 3.05vw;
    gap: 1.27vw;
    letter-spacing: 0.25vw;
    filter: drop-shadow(0.38vw 0.38vw 0.76vw rgba(0, 0, 0, 0.5));
  }
}
.main-cross .container .row .cross-items-category-container .cross-items .cross-item .badges .badge.badge-red {
  background: #ED1B24;
}
.main-cross .container .row .cross-items-category-container .cross-items .cross-item .badges .badge.badge-green {
  background: #12AD77;
}
.main-cross .container .row .cross-items-category-container .cross-items .cross-item .badges .badge.badge-gold {
  background: linear-gradient(90deg, #BA9730 0%, #EDD771 36%, #EDD771 64%, #BA9730 100%);
}
.main-cross .container .row .cross-items-category-container .cross-items .cross-item .badges .badge.right {
  margin-left: auto;
}
.main-cross .container .row .cross-items-category-container .cross-items .cross-item .icon-container {
  height: auto;
  width: 100%;
}
@media (max-width: 767px) {
  .main-cross .container .row .cross-items-category-container .cross-items .cross-item .icon-container {
    padding-bottom: 1.27vw;
  }
}
.main-cross .container .row .cross-items-category-container .cross-items .cross-item .icon-container img {
  height: auto;
  width: 100%;
  object-fit: contain;
}
.main-cross .container .row .cross-items-category-container .cross-items .cross-item h3 {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.3em;
  margin-top: 0;
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  padding: 0;
  width: 100%;
}
@media (max-width: 991px) {
  .main-cross .container .row .cross-items-category-container .cross-items .cross-item h3 {
    padding: 0 5px;
  }
}
@media (max-width: 767px) {
  .main-cross .container .row .cross-items-category-container .cross-items .cross-item h3 {
    font-size: 3.05vw;
    bottom: 1.27vw;
    padding: 0 1.27vw;
  }
}
@media (max-width: 1400px) {
  .main-cross .container .row .cross-items-category-container .cross-items .cross-item h3.smaller-font {
    font-size: 10px;
  }
}
@media (max-width: 1199px) {
  .main-cross .container .row .cross-items-category-container .cross-items .cross-item h3.smaller-font {
    font-size: 9px;
    bottom: 0.5vw;
  }
}
@media (max-width: 767px) {
  .main-cross .container .row .cross-items-category-container .cross-items .cross-item h3.smaller-font {
    font-size: 2.8vw;
    bottom: 1.27vw;
  }
}
@media (max-width: 1400px) {
  .main-cross .container .row .cross-items-category-container .cross-items .cross-item h3.extra-smaller-font {
    font-size: 10px;
  }
}
@media (max-width: 1199px) {
  .main-cross .container .row .cross-items-category-container .cross-items .cross-item h3.extra-smaller-font {
    font-size: 9px;
    bottom: 0.5vw;
  }
}
@media (max-width: 767px) {
  .main-cross .container .row .cross-items-category-container .cross-items .cross-item h3.extra-smaller-font {
    font-size: 2.29vw;
    bottom: 1.27vw;
  }
}
.main-cross .container .row .cross-items-category-container .cross-items .cross-item h3 a {
  color: #303030;
  text-decoration: none;
}

.cross_1 .container .row {
  display: flex;
  flex-wrap: nowrap;
  gap: 0px;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .cross_1 .container .row {
    flex-direction: column;
    gap: 30px;
  }
}
@media (max-width: 767px) {
  .cross_1 .container .row {
    gap: 7.63vw;
  }
}
.cross_1 .container .row .cross-item {
  flex: 50%;
  display: flex;
  flex-direction: column;
}
.cross_1 .container .row .cross-item:first-child {
  margin-right: 5px;
}
@media (max-width: 991px) {
  .cross_1 .container .row .cross-item:first-child {
    margin: 0;
  }
}
@media (max-width: 991px) {
  .cross_1 .container .row .cross-item {
    flex: 100%;
    padding: 0 5px;
  }
}
@media (max-width: 767px) {
  .cross_1 .container .row .cross-item {
    padding: 0 1.27vw;
  }
}
.cross_1 .container .row .cross-item .thumbnail-container {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .cross_1 .container .row .cross-item .thumbnail-container {
    border-radius: 1.02vw;
  }
}
.cross_1 .container .row .cross-item .thumbnail-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cross_1 .container .row .cross-item .text-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 15px 9px;
  flex-grow: 1;
  height: 100%;
  align-self: stretch;
}
@media (max-width: 991px) {
  .cross_1 .container .row .cross-item .text-container {
    gap: 15px;
    text-align: center;
    padding: 15px 5px;
  }
}
@media (max-width: 767px) {
  .cross_1 .container .row .cross-item .text-container {
    gap: 3.82vw;
    padding: 3.82vw 1.27vw;
    padding-bottom: 0;
  }
}
.cross_1 .container .row .cross-item .text-container h3 {
  font-size: 20px;
  line-height: 1.4em;
  font-weight: 600;
  margin: 0;
}
.cross_1 .container .row .cross-item .text-container h3.text-left {
  text-align: left;
}
@media (max-width: 991px) {
  .cross_1 .container .row .cross-item .text-container h3 {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .cross_1 .container .row .cross-item .text-container h3 {
    font-size: 4.07vw;
  }
}
.cross_1 .container .row .cross-item .text-container p {
  margin: 0;
  margin-bottom: 12px;
}
@media (max-width: 991px) {
  .cross_1 .container .row .cross-item .text-container p.center {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cross_1 .container .row .cross-item .text-container p.desktop {
    display: none;
  }
}
@media (min-width: 992px) {
  .cross_1 .container .row .cross-item .text-container p.mobile {
    display: none;
  }
}
@media (max-width: 991px) {
  .cross_1 .container .row .cross-item .text-container p.mobile {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cross_1 .container .row .cross-item .text-container p {
    text-align: left;
  }
}
@media (max-width: 767px) {
  .cross_1 .container .row .cross-item .text-container p {
    margin-bottom: 0;
  }
}
.cross_1 .container .row .cross-item .text-container .cbtn {
  align-self: flex-end;
  margin-top: auto;
}
@media (max-width: 767px) {
  .cross_1 .container .row .cross-item .text-container .cbtn {
    margin-top: 3.05vw;
  }
}
@media (max-width: 991px) {
  .cross_1 .container .row .cross-item .text-container .cbtn {
    align-self: center;
  }
}

.benefits .container .row {
  display: flex;
  gap: 30px;
  padding: 0 9px;
}
@media (max-width: 991px) {
  .benefits .container .row {
    flex-direction: column;
    gap: 15px;
    padding: 0 4px;
  }
}
@media (max-width: 767px) {
  .benefits .container .row {
    gap: 3.82vw;
    padding: 0 1.02vw;
  }
}
.benefits .container .row .benefits-item {
  flex: calc(50% - 15px);
  flex-grow: 0;
  display: flex;
  flex-direction: row;
  align-items: start;
  gap: 20px;
}
@media (max-width: 991px) {
  .benefits .container .row .benefits-item {
    flex: 100%;
    gap: 10px;
    padding: 0 5px;
  }
}
@media (max-width: 767px) {
  .benefits .container .row .benefits-item {
    gap: 2.54vw;
    padding: 0 1.27vw;
  }
}
.benefits .container .row .benefits-item .icon-container {
  width: 55px;
  height: 55px;
  overflow: hidden;
  flex-shrink: 0;
}
@media (max-width: 991px) {
  .benefits .container .row .benefits-item .icon-container {
    width: 30px;
    height: 30px;
  }
}
@media (max-width: 767px) {
  .benefits .container .row .benefits-item .icon-container {
    width: 7.63vw;
    height: 7.63vw;
  }
}
.benefits .container .row .benefits-item .icon-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.benefits .container .row .benefits-item .text-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0;
  flex-grow: 1;
  height: 100%;
  align-self: stretch;
  margin-top: 14px;
}
@media (max-width: 991px) {
  .benefits .container .row .benefits-item .text-container {
    gap: 15px;
    margin-top: 5px;
  }
}
@media (max-width: 767px) {
  .benefits .container .row .benefits-item .text-container {
    gap: 3.82vw;
    margin-top: 1.27vw;
  }
}
.benefits .container .row .benefits-item .text-container h3 {
  font-size: 20px;
  line-height: 1.4em;
  font-weight: 600;
  margin: 0;
}
@media (max-width: 991px) {
  .benefits .container .row .benefits-item .text-container h3 {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .benefits .container .row .benefits-item .text-container h3 {
    font-size: 4.07vw;
  }
}
.benefits .container .row .benefits-item .text-container p {
  margin: 0;
}
.benefits .container .row .benefits-item .text-container .cbtn {
  align-self: flex-end;
  margin-top: auto;
}
@media (max-width: 991px) {
  .benefits .container .row .benefits-item .text-container .cbtn {
    align-self: center;
  }
}

.gallery .container .row {
  display: flex;
  gap: 5px;
}
@media (max-width: 991px) {
  .gallery .container .row {
    flex-direction: column;
    gap: 5px;
  }
}
@media (max-width: 767px) {
  .gallery .container .row {
    gap: 1.27vw;
  }
}
.gallery .container .row .gallery-item {
  flex: calc(50% - 2.5px);
  display: flex;
  position: relative;
  flex-direction: column;
}
@media (max-width: 991px) {
  .gallery .container .row .gallery-item {
    flex: 100%;
    width: 100%;
    padding: 0 5px;
    height: auto;
  }
}
@media (max-width: 767px) {
  .gallery .container .row .gallery-item {
    padding: 0 1.27vw;
  }
}
.gallery .container .row .gallery-item .thumbnail-container {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}
@media (max-width: 991px) {
  .gallery .container .row .gallery-item .thumbnail-container {
    border-radius: 4px;
  }
}
@media (max-width: 767px) {
  .gallery .container .row .gallery-item .thumbnail-container {
    border-radius: 1.02vw;
  }
}
.gallery .container .row .gallery-item .thumbnail-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery .container .row .gallery-item h3 {
  position: absolute;
  text-shadow: 1.967px 1.967px 9.833px rgba(0, 0, 0, 0.9), 1.967px 1.967px 9.833px rgba(0, 0, 0, 0.9);
  color: white;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: 25px;
  font-weight: 600;
  line-height: 1.4em;
  padding: 0;
  margin: 0;
}
@media (max-width: 991px) {
  .gallery .container .row .gallery-item h3 {
    font-size: 16px;
    top: 1vw;
  }
}
@media (max-width: 767px) {
  .gallery .container .row .gallery-item h3 {
    font-size: 4.07vw;
    top: 2.04vw;
  }
}

.image-list .container .row {
  display: flex;
  gap: 5px;
}
.image-list .container .row.list-items {
  margin-top: 50px;
}
@media (max-width: 991px) {
  .image-list .container .row.list-items {
    margin-top: 25px;
  }
}
@media (max-width: 767px) {
  .image-list .container .row.list-items {
    margin-top: 0vw;
  }
}
@media (max-width: 991px) {
  .image-list .container .row {
    flex-direction: column;
    gap: 5px;
  }
}
@media (max-width: 767px) {
  .image-list .container .row {
    gap: 1.27vw;
  }
}
.image-list .container .row .list-item {
  flex: calc(50% - 2.5px);
  flex-grow: 0;
  display: flex;
  flex-direction: row;
  align-items: start;
  gap: 20px;
}
@media (max-width: 991px) {
  .image-list .container .row .list-item {
    flex: 100%;
    gap: 10px;
    padding: 0 5px;
    align-items: start;
  }
}
@media (max-width: 767px) {
  .image-list .container .row .list-item {
    gap: 2.54vw;
    padding: 0 1.27vw;
  }
}
.image-list .container .row .list-item:nth-child(2n) .text-container {
  padding-right: 10px;
}
@media (max-width: 767px) {
  .image-list .container .row .list-item:nth-child(2n) .text-container {
    padding-right: 2.54vw;
  }
}
.image-list .container .row .list-item .icon-container {
  width: 50%;
  height: auto;
  overflow: hidden;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
}
@media (max-width: 991px) {
  .image-list .container .row .list-item .icon-container {
    width: 125px;
    height: 110px;
    border-radius: 4px;
  }
}
@media (max-width: 767px) {
  .image-list .container .row .list-item .icon-container {
    width: 31.81vw;
    height: 27.99vw;
    border-radius: 1.02vw;
  }
}
.image-list .container .row .list-item .icon-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1/1;
}
.image-list .container .row .list-item .text-container {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 0;
  flex-grow: 1;
  padding-right: 20px;
}
@media (max-width: 991px) {
  .image-list .container .row .list-item .text-container {
    padding-right: 0;
    gap: 5px;
  }
}
@media (max-width: 767px) {
  .image-list .container .row .list-item .text-container {
    gap: 1.27vw;
  }
}
.image-list .container .row .list-item .text-container h3 {
  font-size: 20px;
  line-height: 1.4em;
  font-weight: 600;
  margin: 0;
}
@media (max-width: 991px) {
  .image-list .container .row .list-item .text-container h3 {
    font-size: 14px;
    line-height: 1.1em;
  }
}
@media (max-width: 767px) {
  .image-list .container .row .list-item .text-container h3 {
    font-size: 3.56vw;
  }
}
.image-list .container .row .list-item .text-container p {
  margin: 0;
}
.image-list .container .row .list-item .text-container p.mobile {
  display: none;
}
@media (max-width: 991px) {
  .image-list .container .row .list-item .text-container p.mobile {
    display: inline;
  }
}
@media (max-width: 991px) {
  .image-list .container .row .list-item .text-container p.desktop {
    display: none;
  }
}
.image-list .container .row .list-item .text-container .cbtn {
  align-self: flex-end;
  margin-top: auto;
}
@media (max-width: 991px) {
  .image-list .container .row .list-item .text-container .cbtn {
    align-self: center;
  }
}

.section-steps .container .row {
  flex-wrap: nowrap;
}
.section-steps .container .row .left-column, .section-steps .container .row .right-column {
  flex: calc(100% - 42.5px);
  flex-grow: 0;
  flex-shrink: 1;
  display: flex;
  gap: 5px;
  flex-direction: column;
}
@media (max-width: 991px) {
  .section-steps .container .row .left-column, .section-steps .container .row .right-column {
    order: 2;
    flex: calc(100% - 40px);
  }
}
@media (max-width: 767px) {
  .section-steps .container .row .left-column, .section-steps .container .row .right-column {
    flex: calc(100% - 10.18vw);
    gap: 1.27vw;
  }
}
.section-steps .container .row .left-column .step-description, .section-steps .container .row .right-column .step-description {
  background: #F5F5F5;
  border-radius: 8px;
  padding: 15px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.section-steps .container .row .left-column .step-description.bigger-padding, .section-steps .container .row .right-column .step-description.bigger-padding {
  padding: 30px 20px;
}
@media (max-width: 767px) {
  .section-steps .container .row .left-column .step-description.bigger-padding, .section-steps .container .row .right-column .step-description.bigger-padding {
    padding: 1.53vw 2.8vw;
  }
}
.section-steps .container .row .left-column .step-description h3, .section-steps .container .row .left-column .step-description p, .section-steps .container .row .right-column .step-description h3, .section-steps .container .row .right-column .step-description p {
  margin: 0;
}
@media (max-width: 991px) {
  .section-steps .container .row .left-column .step-description h3, .section-steps .container .row .right-column .step-description h3 {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .section-steps .container .row .left-column .step-description h3, .section-steps .container .row .right-column .step-description h3 {
    font-size: 3.56vw;
  }
}
@media (max-width: 991px) {
  .section-steps .container .row .left-column .step-description, .section-steps .container .row .right-column .step-description {
    position: relative;
    padding: 8px 10px;
    margin-right: 5px;
  }
  .section-steps .container .row .left-column .step-description::before, .section-steps .container .row .right-column .step-description::before {
    content: attr(data-index);
    width: 30px;
    height: 30px;
    border: 1.5px solid #9981E1;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4em;
    color: #9981E1;
    position: absolute;
    top: 0px;
    right: calc(100% + 5px);
    background: white;
    z-index: 10;
  }
  .section-steps .container .row .left-column .step-description::after, .section-steps .container .row .right-column .step-description::after {
    content: "";
    width: 5px;
    height: 5px;
    position: absolute;
    display: block;
    background: url("../../uploads/files/images/triangle.svg") no-repeat;
    background-size: 100% 100%;
    background-position: center center;
    top: 15px;
    right: calc(100% - 1px);
    transform: rotateX(180deg);
  }
}
@media (max-width: 767px) {
  .section-steps .container .row .left-column .step-description, .section-steps .container .row .right-column .step-description {
    position: relative;
    padding: 1.53vw 2.8vw;
    margin-right: 1.27vw;
    border-radius: 1.02vw;
  }
  .section-steps .container .row .left-column .step-description::before, .section-steps .container .row .right-column .step-description::before {
    width: 7.63vw;
    height: 7.63vw;
    border: 0.38vw solid #9981E1;
    font-size: 4.07vw;
    top: 0px;
    right: calc(100% + 2.04vw);
  }
  .section-steps .container .row .left-column .step-description::after, .section-steps .container .row .right-column .step-description::after {
    width: 1.27vw;
    height: 1.27vw;
    top: 3.82vw;
    right: calc(100% - 0.25vw);
  }
}
@media (min-width: 992px) {
  .section-steps .container .row .left-column .step-description.mobile, .section-steps .container .row .right-column .step-description.mobile {
    display: none;
  }
}
.section-steps .container .row .right-column .full-height {
  height: 100%;
  justify-content: center;
}
@media (max-width: 991px) {
  .section-steps .container .row .right-column {
    display: none;
  }
}
.section-steps .container .row .steps {
  flex: 85px;
  flex-shrink: 0;
  flex-grow: 0;
  align-self: stretch;
  position: relative;
}
.section-steps .container .row .steps::before {
  position: absolute;
  content: "";
  width: 2px;
  background: #9981E1;
  height: 100%;
  top: 0;
  left: 50%;
  display: block;
  transform: translateX(-50%);
  z-index: 1;
}
@media (max-width: 991px) {
  .section-steps .container .row .steps::before {
    width: 1px;
    height: 85%;
  }
}
@media (max-width: 767px) {
  .section-steps .container .row .steps::before {
    width: 0.38vw;
  }
}
@media (max-width: 991px) {
  .section-steps .container .row .steps {
    order: 1;
    flex: 40px;
  }
}
@media (max-width: 767px) {
  .section-steps .container .row .steps {
    flex: 11.7vw;
  }
}
.section-steps .container .row .steps ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
@media (max-width: 991px) {
  .section-steps .container .row .steps ul {
    display: none;
  }
}
.section-steps .container .row .steps ul li {
  flex: 44px;
  flex-grow: 0;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border: 2px solid #9981E1;
  background: white;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  font-weight: 600;
  line-height: 1.4em;
  color: #9981E1;
  position: relative;
  z-index: 10;
}
.section-steps .container .row .steps ul li:nth-child(2n)::before {
  left: calc(100% + 7px);
  transform: none;
  bottom: 50%;
  top: unset;
}
.section-steps .container .row .steps ul li:nth-child(2)::before {
  bottom: 75%;
}
@media (max-width: 1400px) {
  .section-steps .container .row .steps ul li:nth-child(2)::before {
    bottom: 50%;
  }
}
.section-steps .container .row .steps ul li::before {
  content: "";
  width: 16px;
  height: 16px;
  position: absolute;
  display: block;
  background: url("../../uploads/files/images/triangle.svg") no-repeat;
  background-size: 100% 100%;
  background-position: center center;
  top: 50%;
  right: calc(100% + 7px);
  transform: rotateY(180deg) rotateX(180deg);
}

body {
  background: white;
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
}

.row::before {
  display: none;
  content: unset;
}

.global-side-badge {
  position: fixed;
  right: 0px;
  padding: 3px 4px;
  border-radius: 5px 0px 0px 5px;
  top: 200px;
  z-index: 810;
  background: white;
  padding-right: 0px;
  width: 70px;
  box-shadow: 0px 1.154px 1.154px 0px rgba(0, 0, 0, 0.5);
  will-change: transform;
  transition: transform 0.3s ease-in-out;
}
.global-side-badge.first {
  top: 164px;
}
@media (max-width: 767px) {
  .global-side-badge.first {
    top: 20.87vw;
  }
}
.global-side-badge.second {
  top: 211px;
}
@media (max-width: 767px) {
  .global-side-badge.second {
    top: 30.22vw;
  }
}
@media (max-width: 767px) {
  .global-side-badge {
    width: 15.24vw;
    padding: 0.65vw 1vw;
    padding-right: 0;
    border-radius: 1.27vw 0 0 1.27vw;
  }
}
.global-side-badge img {
  height: 25px;
  width: auto;
}
@media (max-width: 767px) {
  .global-side-badge img {
    height: 5.6vw;
    width: auto;
  }
}

/*# sourceMappingURL=page.css.map */
