: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);
}

@-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-transform: translateZ(0) scaleY(0.95);
    transform: translateZ(0) scaleY(0.95);
    -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);
  }

  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-transform: translateZ(0) scaleY(0.95);
    transform: translateZ(0) scaleY(0.95);
    -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);
  }

  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-name: headShake;
  animation-name: headShake;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

@-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-animation-name: swing;
  animation-name: swing;
  -webkit-transform-origin: top center;
  transform-origin: top center;
}

@-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-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-name: heartBeat;
  animation-name: heartBeat;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

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

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

  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

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

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

  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.animate__backInDown {
  -webkit-animation-name: backInDown;
  animation-name: backInDown;
}

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

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

  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

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

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

  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.animate__backInLeft {
  -webkit-animation-name: backInLeft;
  animation-name: backInLeft;
}

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

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

  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

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

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

  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.animate__backInRight {
  -webkit-animation-name: backInRight;
  animation-name: backInRight;
}

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

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

  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

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

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

  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.animate__backInUp {
  -webkit-animation-name: backInUp;
  animation-name: backInUp;
}

@-webkit-keyframes backOutDown {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }

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

  to {
    opacity: 0.7;
    -webkit-transform: translateY(700px) scale(0.7);
    transform: translateY(700px) scale(0.7);
  }
}

@keyframes backOutDown {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }

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

  to {
    opacity: 0.7;
    -webkit-transform: translateY(700px) scale(0.7);
    transform: translateY(700px) scale(0.7);
  }
}

.animate__backOutDown {
  -webkit-animation-name: backOutDown;
  animation-name: backOutDown;
}

@-webkit-keyframes backOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }

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

  to {
    opacity: 0.7;
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
  }
}

@keyframes backOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }

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

  to {
    opacity: 0.7;
    -webkit-transform: translateX(-2000px) scale(0.7);
    transform: translateX(-2000px) scale(0.7);
  }
}

.animate__backOutLeft {
  -webkit-animation-name: backOutLeft;
  animation-name: backOutLeft;
}

@-webkit-keyframes backOutRight {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }

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

  to {
    opacity: 0.7;
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
  }
}

@keyframes backOutRight {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }

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

  to {
    opacity: 0.7;
    -webkit-transform: translateX(2000px) scale(0.7);
    transform: translateX(2000px) scale(0.7);
  }
}

.animate__backOutRight {
  -webkit-animation-name: backOutRight;
  animation-name: backOutRight;
}

@-webkit-keyframes backOutUp {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }

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

  to {
    opacity: 0.7;
    -webkit-transform: translateY(-700px) scale(0.7);
    transform: translateY(-700px) scale(0.7);
  }
}

@keyframes backOutUp {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }

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

  to {
    opacity: 0.7;
    -webkit-transform: translateY(-700px) scale(0.7);
    transform: translateY(-700px) scale(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-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    -webkit-transform: perspective(400px) scaleX(1) translateZ(0)
      rotateY(-1turn);
    transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
  }

  40% {
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    -webkit-transform: perspective(400px) scaleX(1) translateZ(150px)
      rotateY(-190deg);
    transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
  }

  50% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    -webkit-transform: perspective(400px) scaleX(1) translateZ(150px)
      rotateY(-170deg);
    transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
  }

  80% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    -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);
  }

  to {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    -webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
    transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
  }
}

@keyframes flip {
  0% {
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    -webkit-transform: perspective(400px) scaleX(1) translateZ(0)
      rotateY(-1turn);
    transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
  }

  40% {
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    -webkit-transform: perspective(400px) scaleX(1) translateZ(150px)
      rotateY(-190deg);
    transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
  }

  50% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    -webkit-transform: perspective(400px) scaleX(1) translateZ(150px)
      rotateY(-170deg);
    transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
  }

  80% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    -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);
  }

  to {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    -webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
    transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
  }
}

.animate__animated.animate__flip {
  -webkit-animation-name: flip;
  animation-name: flip;
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
}

@-webkit-keyframes flipInX {
  0% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
  }

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

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

  80% {
    -webkit-transform: perspective(400px) rotateX(-5deg);
    transform: perspective(400px) rotateX(-5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

@keyframes flipInX {
  0% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
  }

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

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

  80% {
    -webkit-transform: perspective(400px) rotateX(-5deg);
    transform: perspective(400px) rotateX(-5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

.animate__flipInX {
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipInY {
  0% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
  }

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

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

  80% {
    -webkit-transform: perspective(400px) rotateY(-5deg);
    transform: perspective(400px) rotateY(-5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

@keyframes flipInY {
  0% {
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
  }

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

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

  80% {
    -webkit-transform: perspective(400px) rotateY(-5deg);
    transform: perspective(400px) rotateY(-5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

.animate__flipInY {
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

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

  to {
    opacity: 0;
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
  }
}

@keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

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

  to {
    opacity: 0;
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
  }
}

.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% {
    opacity: 1;
    -webkit-transform: perspective(400px) rotateY(-15deg);
    transform: perspective(400px) rotateY(-15deg);
  }

  to {
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
  }
}

@keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

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

  to {
    opacity: 0;
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
  }
}

.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-animation-name: flipOutY;
  animation-name: flipOutY;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

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

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

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

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

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

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

  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% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) skewX(30deg);
    transform: translate3d(-100%, 0, 0) skewX(30deg);
  }

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

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

  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

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

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

  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 {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
  }
}

@keyframes lightSpeedOutRight {
  0% {
    opacity: 1;
  }

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

.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 {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) skewX(-30deg);
    transform: translate3d(-100%, 0, 0) skewX(-30deg);
  }
}

@keyframes lightSpeedOutLeft {
  0% {
    opacity: 1;
  }

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

.animate__lightSpeedOutLeft {
  -webkit-animation-name: lightSpeedOutLeft;
  animation-name: lightSpeedOutLeft;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

@-webkit-keyframes rotateIn {
  0% {
    opacity: 0;
    -webkit-transform: rotate(-200deg);
    transform: rotate(-200deg);
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes rotateIn {
  0% {
    opacity: 0;
    -webkit-transform: rotate(-200deg);
    transform: rotate(-200deg);
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

.animate__rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
  -webkit-transform-origin: center;
  transform-origin: center;
}

@-webkit-keyframes rotateInDownLeft {
  0% {
    opacity: 0;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes rotateInDownLeft {
  0% {
    opacity: 0;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

.animate__rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}

@-webkit-keyframes rotateInDownRight {
  0% {
    opacity: 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes rotateInDownRight {
  0% {
    opacity: 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

.animate__rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}

@-webkit-keyframes rotateInUpLeft {
  0% {
    opacity: 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes rotateInUpLeft {
  0% {
    opacity: 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

.animate__rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}

@-webkit-keyframes rotateInUpRight {
  0% {
    opacity: 0;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@keyframes rotateInUpRight {
  0% {
    opacity: 0;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
  }

  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

.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 {
    opacity: 0;
    -webkit-transform: rotate(200deg);
    transform: rotate(200deg);
  }
}

@keyframes rotateOut {
  0% {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: rotate(200deg);
    transform: rotate(200deg);
  }
}

.animate__rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
  -webkit-transform-origin: center;
  transform-origin: center;
}

@-webkit-keyframes rotateOutDownLeft {
  0% {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
}

@keyframes rotateOutDownLeft {
  0% {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
}

.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 {
    opacity: 0;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
}

@keyframes rotateOutDownRight {
  0% {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
}

.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 {
    opacity: 0;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
}

@keyframes rotateOutUpLeft {
  0% {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
}

.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 {
    opacity: 0;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
}

@keyframes rotateOutUpRight {
  0% {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
}

.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-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-transform: rotate(80deg);
    transform: rotate(80deg);
  }

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

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
  }
}

@keyframes hinge {
  0% {
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

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

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

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 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% {
    -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);
    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);
  }

  60% {
    -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);
    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);
  }
}

@keyframes zoomInDown {
  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);
    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);
  }

  60% {
    -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);
    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);
  }
}

.animate__zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}

@-webkit-keyframes zoomInLeft {
  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);
    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);
  }

  60% {
    -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);
    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);
  }
}

@keyframes zoomInLeft {
  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);
    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);
  }

  60% {
    -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);
    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);
  }
}

.animate__zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}

@-webkit-keyframes zoomInRight {
  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);
    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);
  }

  60% {
    -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);
    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);
  }
}

@keyframes zoomInRight {
  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);
    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);
  }

  60% {
    -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);
    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);
  }
}

.animate__zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}

@-webkit-keyframes zoomInUp {
  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);
    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);
  }

  60% {
    -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);
    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);
  }
}

@keyframes zoomInUp {
  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);
    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);
  }

  60% {
    -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);
    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);
  }
}

.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% {
    -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);
    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);
  }

  to {
    -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);
    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);
  }
}

@keyframes zoomOutDown {
  40% {
    -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);
    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);
  }

  to {
    -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);
    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);
  }
}

.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% {
    -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);
    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);
  }

  to {
    -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);
    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);
  }
}

@keyframes zoomOutUp {
  40% {
    -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);
    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);
  }

  to {
    -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);
    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);
  }
}

.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 {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: hidden;
  }
}

@keyframes slideOutDown {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }

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

.animate__slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}

@-webkit-keyframes slideOutLeft {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }

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

@keyframes slideOutLeft {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }

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

.animate__slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }

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

@keyframes slideOutRight {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }

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

.animate__slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }

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

@keyframes slideOutUp {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }

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

.animate__slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

@media (prefers-reduced-motion: reduce), print {
  .animate__animated {
    -webkit-animation-duration: 1ms !important;
    animation-duration: 1ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
    -webkit-transition-duration: 1ms !important;
    transition-duration: 1ms !important;
  }

  .animate__animated[class*='Out'] {
    opacity: 0;
  }
}

@font-face {
  font-family: swiper-icons;
  font-style: normal;
  font-weight: 400;
  src: url('data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA');
}

:root {
  --swiper-theme-color: #007aff;
}

:host {
  display: block;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.swiper {
  display: block;
  list-style: none;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  padding: 0;
  position: relative;
  z-index: 1;
}

.swiper-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.swiper-wrapper {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property:
    transform,
    -webkit-transform;
  -webkit-transition-timing-function: var(
    --swiper-wrapper-transition-timing-function,
    initial
  );
  transition-timing-function: var(
    --swiper-wrapper-transition-timing-function,
    initial
  );
  width: 100%;
  z-index: 1;
}

.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.swiper-horizontal {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}

.swiper-vertical {
  -ms-touch-action: pan-x;
  touch-action: pan-x;
}

.swiper-slide {
  -ms-flex-negative: 0;
  display: block;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property:
    transform,
    -webkit-transform;
  width: 100%;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  -webkit-transition-property:
    height,
    -webkit-transform;
  transition-property:
    height,
    -webkit-transform;
  transition-property: transform, height;
  transition-property:
    transform,
    height,
    -webkit-transform;
}

.swiper-backface-hidden .swiper-slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.swiper-3d.swiper-css-mode .swiper-wrapper {
  -webkit-perspective: 1200px;
  perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.swiper-3d {
  -webkit-perspective: 1200px;
  perspective: 1200px;
}

.swiper-3d .swiper-cube-shadow,
.swiper-3d .swiper-slide {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.swiper-css-mode > .swiper-wrapper {
  -ms-overflow-style: none;
  overflow: auto;
  scrollbar-width: none;
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  -webkit-scroll-snap-type: x mandatory;
  -ms-scroll-snap-type: x mandatory;
  scroll-snap-type: x mandatory;
}

.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  -webkit-scroll-snap-type: y mandatory;
  -ms-scroll-snap-type: y mandatory;
  scroll-snap-type: y mandatory;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  -webkit-scroll-snap-type: none;
  -ms-scroll-snap-type: none;
  scroll-snap-type: none;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}

.swiper-css-mode.swiper-centered > .swiper-wrapper:before {
  -ms-flex-negative: 0;
  -webkit-box-ordinal-group: 10000;
  -ms-flex-order: 9999;
  content: '';
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-order: 9999;
  order: 9999;
}

.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}

.swiper-css-mode.swiper-centered.swiper-horizontal
  > .swiper-wrapper
  > .swiper-slide:first-child {
  -webkit-margin-start: var(--swiper-centered-offset-before);
  margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper:before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-css-mode.swiper-centered.swiper-vertical
  > .swiper-wrapper
  > .swiper-slide:first-child {
  -webkit-margin-before: var(--swiper-centered-offset-before);
  margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper:before {
  height: var(--swiper-centered-offset-after);
  min-width: 1px;
  width: 100%;
}

.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top {
  height: 100%;
  left: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(
    linear,
    right top,
    left top,
    from(rgba(0, 0, 0, 0.5)),
    to(rgba(0, 0, 0, 0))
  );
  background-image: linear-gradient(
    270deg,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(
    linear,
    left top,
    right top,
    from(rgba(0, 0, 0, 0.5)),
    to(rgba(0, 0, 0, 0))
  );
  background-image: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(rgba(0, 0, 0, 0.5)),
    to(rgba(0, 0, 0, 0))
  );
  background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(0, 0, 0, 0.5)),
    to(rgba(0, 0, 0, 0))
  );
  background-image: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
}

.swiper-lazy-preloader {
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  -webkit-border-radius: 50%;
  border-radius: 50%;
  border-top: 4px solid transparent;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  height: 42px;
  left: 50%;
  margin-left: -21px;
  margin-top: -21px;
  position: absolute;
  top: 50%;
  -webkit-transform-origin: 50%;
  -ms-transform-origin: 50%;
  transform-origin: 50%;
  width: 42px;
  z-index: 10;
}

.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader,
.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader {
  -webkit-animation: swiper-preloader-spin 1s linear infinite;
  animation: swiper-preloader-spin 1s linear infinite;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@-webkit-keyframes swiper-preloader-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}

@keyframes swiper-preloader-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}

.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.swiper-virtual.swiper-css-mode .swiper-wrapper:after {
  content: '';
  left: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper:after {
  height: 1px;
  width: var(--swiper-virtual-size);
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper:after {
  height: var(--swiper-virtual-size);
  width: 1px;
}

:root {
  --swiper-navigation-size: 44px;
}

.swiper-button-next,
.swiper-button-prev {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-align-items: center;
  align-items: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: var(--swiper-navigation-size);
  -webkit-justify-content: center;
  justify-content: center;
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  position: absolute;
  top: var(--swiper-navigation-top-offset, 50%);
  width: -webkit-calc(var(--swiper-navigation-size) / 44 * 27);
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  z-index: 10;
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  cursor: auto;
  opacity: 0.35;
  pointer-events: none;
}

.swiper-button-next.swiper-button-hidden,
.swiper-button-prev.swiper-button-hidden {
  cursor: auto;
  opacity: 0;
  pointer-events: none;
}

.swiper-navigation-disabled .swiper-button-next,
.swiper-navigation-disabled .swiper-button-prev {
  display: none !important;
}

.swiper-button-next svg,
.swiper-button-prev svg {
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  width: 100%;
}

.swiper-rtl .swiper-button-next svg,
.swiper-rtl .swiper-button-prev svg {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, 10px);
  right: auto;
}

.swiper-button-lock {
  display: none;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  font-variant: normal;
  letter-spacing: 0;
  line-height: 1;
  text-transform: none !important;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: 'prev';
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  left: auto;
  right: var(--swiper-navigation-sides-offset, 10px);
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: 'next';
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-pagination-disabled > .swiper-pagination,
.swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: var(--swiper-pagination-bottom, 8px);
  left: 0;
  top: var(--swiper-pagination-top, auto);
  width: 100%;
}

.swiper-pagination-bullets-dynamic {
  font-size: 0;
  overflow: hidden;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  position: relative;
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active,
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(0.66);
  -ms-transform: scale(0.66);
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(0.66);
  -ms-transform: scale(0.66);
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  -webkit-border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  display: inline-block;
  height: var(
    --swiper-pagination-bullet-height,
    var(--swiper-pagination-bullet-size, 8px)
  );
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
  width: var(
    --swiper-pagination-bullet-width,
    var(--swiper-pagination-bullet-size, 8px)
  );
}

button.swiper-pagination-bullet {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  margin: 0;
  padding: 0;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  opacity: var(--swiper-pagination-bullet-opacity, 1);
}

.swiper-pagination-vertical.swiper-pagination-bullets,
.swiper-vertical > .swiper-pagination-bullets {
  left: var(--swiper-pagination-left, auto);
  right: var(--swiper-pagination-right, 8px);
  top: 50%;
  -webkit-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0);
}

.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  display: block;
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-vertical
  > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 8px;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet,
.swiper-vertical
  > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet {
  display: inline-block;
  -webkit-transition:
    top 0.2s,
    -webkit-transform 0.2s;
  transition:
    top 0.2s,
    -webkit-transform 0.2s;
  transition:
    transform 0.2s,
    top 0.2s;
  transition:
    transform 0.2s,
    top 0.2s,
    -webkit-transform 0.2s;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets
  .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}

.swiper-horizontal
  > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-horizontal
  > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet {
  -webkit-transition:
    left 0.2s,
    -webkit-transform 0.2s;
  transition:
    left 0.2s,
    -webkit-transform 0.2s;
  transition:
    transform 0.2s,
    left 0.2s;
  transition:
    transform 0.2s,
    left 0.2s,
    -webkit-transform 0.2s;
}

.swiper-horizontal.swiper-rtl
  > .swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet {
  -webkit-transition:
    right 0.2s,
    -webkit-transform 0.2s;
  transition:
    right 0.2s,
    -webkit-transform 0.2s;
  transition:
    transform 0.2s,
    right 0.2s;
  transition:
    transform 0.2s,
    right 0.2s,
    -webkit-transform 0.2s;
}

.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}

.swiper-pagination-progressbar {
  background: var(
    --swiper-pagination-progressbar-bg-color,
    rgba(0, 0, 0, 0.25)
  );
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
  width: 100%;
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
  -ms-transform-origin: right top;
  transform-origin: right top;
}

.swiper-horizontal > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,
.swiper-vertical
  > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  height: var(--swiper-pagination-progressbar-size, 4px);
  left: 0;
  top: 0;
  width: 100%;
}

.swiper-horizontal
  > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-vertical > .swiper-pagination-progressbar {
  height: 100%;
  left: 0;
  top: 0;
  width: var(--swiper-pagination-progressbar-size, 4px);
}

.swiper-pagination-lock {
  display: none;
}

.swiper-scrollbar {
  background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, 0.1));
  -webkit-border-radius: var(--swiper-scrollbar-border-radius, 10px);
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  position: relative;
  -ms-touch-action: none;
  touch-action: none;
}

.swiper-scrollbar-disabled > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-horizontal {
  bottom: var(--swiper-scrollbar-bottom, 4px);
  height: var(--swiper-scrollbar-size, 4px);
  left: var(--swiper-scrollbar-sides-offset, 1%);
  position: absolute;
  top: var(--swiper-scrollbar-top, auto);
  width: -webkit-calc(100% - var(--swiper-scrollbar-sides-offset, 1%) * 2);
  width: calc(100% - var(--swiper-scrollbar-sides-offset, 1%) * 2);
  z-index: 50;
}

.swiper-scrollbar.swiper-scrollbar-vertical,
.swiper-vertical > .swiper-scrollbar {
  height: -webkit-calc(100% - var(--swiper-scrollbar-sides-offset, 1%) * 2);
  height: calc(100% - var(--swiper-scrollbar-sides-offset, 1%) * 2);
  left: var(--swiper-scrollbar-left, auto);
  position: absolute;
  right: var(--swiper-scrollbar-right, 4px);
  top: var(--swiper-scrollbar-sides-offset, 1%);
  width: var(--swiper-scrollbar-size, 4px);
  z-index: 50;
}

.swiper-scrollbar-drag {
  background: var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, 0.5));
  -webkit-border-radius: var(--swiper-scrollbar-border-radius, 10px);
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  height: 100%;
  left: 0;
  position: relative;
  top: 0;
  width: 100%;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
  width: 100%;
}

.swiper-zoom-container > canvas,
.swiper-zoom-container > img,
.swiper-zoom-container > svg {
  max-height: 100%;
  max-width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
  -ms-touch-action: none;
  touch-action: none;
}

.swiper .swiper-notification {
  left: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  z-index: -1000;
}

.swiper-free-mode > .swiper-wrapper {
  margin: 0 auto;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.swiper-grid > .swiper-wrapper {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.swiper-grid-column > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.swiper-fade.swiper-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.swiper-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  transition-property: opacity;
}

.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-fade .swiper-slide-active,
.swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper.swiper-cube {
  overflow: visible;
}

.swiper-cube .swiper-slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  height: 100%;
  pointer-events: none;
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  visibility: hidden;
  width: 100%;
  z-index: 1;
}

.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-cube.swiper-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
  -ms-transform-origin: 100% 0;
  transform-origin: 100% 0;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-next,
.swiper-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-cube-shadow {
  bottom: 0;
  height: 100%;
  left: 0;
  opacity: 0.6;
  position: absolute;
  width: 100%;
  z-index: 0;
}

.swiper-cube .swiper-cube-shadow:before {
  background: #000;
  bottom: 0;
  content: '';
  -webkit-filter: blur(50px);
  filter: blur(50px);
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.swiper-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-bottom,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-left,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-right,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-top {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 0;
}

.swiper.swiper-flip {
  overflow: visible;
}

.swiper-flip .swiper-slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  pointer-events: none;
  z-index: 1;
}

.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-flip .swiper-slide-active,
.swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-bottom,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-left,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-right,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-top {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 0;
}

.swiper-creative .swiper-slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
  -webkit-transition-property:
    opacity,
    height,
    -webkit-transform;
  transition-property:
    opacity,
    height,
    -webkit-transform;
  transition-property: transform, opacity, height;
  transition-property:
    transform,
    opacity,
    height,
    -webkit-transform;
}

.swiper.swiper-cards {
  overflow: visible;
}

.swiper .swiper-slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
  -webkit-transform-origin: center bottom;
  -ms-transform-origin: center bottom;
  transform-origin: center bottom;
}

html {
  -webkit-text-size-adjust: 100%;
  line-height: 1.15;
}

body {
  margin: 0;
}

main {
  display: block;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

hr {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

a {
  background-color: transparent;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

[type='button'],
[type='reset'],
[type='submit'],
button {
  -webkit-appearance: button;
}

[type='button']::-moz-focus-inner,
[type='reset']::-moz-focus-inner,
[type='submit']::-moz-focus-inner,
button::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

[type='button']:-moz-focusring,
[type='reset']:-moz-focusring,
[type='submit']:-moz-focusring,
button:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

legend {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type='checkbox'],
[type='radio'] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
}

[type='number']::-webkit-inner-spin-button,
[type='number']::-webkit-outer-spin-button {
  height: auto;
}

[type='search'] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type='search']::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

details {
  display: block;
}

summary {
  display: list-item;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

/* Example css file */
@media (min-width: 1280px) {
  .only-mobile {
    display: none !important;
  }
}

@media (max-width: 1279px) {
  .only-desktop {
    display: none !important;
  }
}

.template {
  display: none;
}

.white-space {
  white-space: nowrap;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a:active,
a:focus {
  outline: none;
}

input,
textarea {
  outline: none;
}

input:active,
textarea:active {
  outline: none;
}

button:active,
button:focus {
  outline: none;
}

:focus {
  outline: none;
}

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

html {
  /* font-size: .83333vw; */
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* @media (min-width: 1280px) {
    html {
        font-size: .83333vw;
    }
}
@media (min-width: 1024px) {
    html {
        font-size: 1.5625vw;
    }
}
@media (min-width: 768px) {
    html {
        font-size: 2.08333vw;
    }
}
@media (min-width: 576px) {
    html {
        font-size: 2.77778vw;
    }
}
@media (min-width: 375px) {
    html {
        font-size: 4.26667vw;
    }
}
@media (min-width: 320px) {
    html {
        font-size: 5vw;
    }
} */

a {
  color: var(--color-black);
  text-decoration: none;
}

address {
  font-style: normal;
}

input[type='number'] {
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.cursor {
  pointer-events: none;
  position: absolute;
  background: #01549a;
  cursor: pointer;
  width: 16px;
  height: 16px;
  border-radius: 100%;
  z-index: 2;
  transition:
    0.5s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform,
    0.5s cubic-bezier(0.75, -1.27, 0.3, 2.33) opacity;
  user-select: none;
  pointer-events: none;
  transform: scale(0);
  backdrop-filter: blur(1px);

  &.active {
    opacity: 1;
    transform: scale(8);
    background: rgb(0 76 255 / 20%);
    transition:
      0.5s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform,
      0.5s cubic-bezier(0.75, -1.27, 0.3, 2.33) opacity;
  }
}

.cursor::before {
  /* content: "View Project"; */
  width: 100%;
  height: 100%;
  position: absolute;
  font-size: 2px;
  top: 8px;
  left: 2px;
  display: block;
  border-radius: 100%;
  opacity: 0;
  color: #fff;
}

.cursor.active::before {
  opacity: 1;
}

.cursor-follower {
  pointer-events: none;
  position: absolute;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  z-index: -1;
  background-color: rgba(255, 255, 255, 0.7);
  transition:
    0.5s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform,
    0.5s cubic-bezier(0.75, -1.27, 0.3, 2.33) opacity,
    0.5s cubic-bezier(0.75, -1.27, 0.3, 2.33) background;
  user-select: none;
  pointer-events: none;
  transform: translate(4px, 4px);
}

.cursor-follower.active {
  opacity: 0.3;
  transform: scale(0);
}

#adaptive-cursor {
  align-items: center;
  background-color: rgba(0, 0, 0, 0.25);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0);
  display: flex;
  font-size: 20px;
  height: 0;
  justify-content: center;
  line-height: 1.5;
  padding: 10px;
  pointer-events: none;
  position: fixed;
  text-align: center;
  transform: translate(-50%, -50%);
  transition: color 0.5s ease;
  width: 0;
  white-space: nowrap;
  z-index: 100;
}

#adaptive-cursor.has-label-state,
#adaptive-cursor.has-icon-state {
  color: white;
  transition-delay: 0.3s;
}

#adaptive-cursor.has-icon-state .material-icons {
  font-size: 65px;
}

.hover-zone {
  align-items: center;
  background-color: #d7d7d7;
  border-radius: 30px;
  color: #000;
  display: flex;
  height: 200px;
  justify-content: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 200px;
}

:root {
  --swiper-image-ratio: 33.25%;
  /* ratio 16:9 = 56.25% */

  --swiper-width: 50%;
  --swiper-inactive-scale: 0.95;
  /* makes the other slide smaller */

  /* responsive settings */
  --swiper-mobile-width: 50%;
  --swiper-mobile-inactive-scale: 0.95;
}

.container2 {
  display: flex;
  align-items: center;
  justify-content: center;
  /* height:100vh; */
  width: 100vw;
}

/*
.container2 {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  } */

.hero__swiper {
  opacity: 1;
  transition: 0.56s ease opacity;
}

.hero__swiper:not(.swiper-initialized) {
  display: none;
  opacity: 0;
}

.hero__swiper .swiper-slide {
  position: relative;
  width: var(--swiper-width);
  /* opacity: .5; */
  /* transform: scale(.84); */
  transition: all 0.3s ease-in-out;
  overflow: hidden;
  border-radius: 0.4285rem;
}

.hero__swiper .swiper-backface-hidden .swiper-slide {
  transform: scale(0.84) translateZ(0);
}

.hero__swiper .swiper-slide.swiper-slide-active {
  transform: scale(1) !important;
  opacity: 1 !important;
}

.swiper-backface-hidden .swiper-slide.swiper-slide-active {
  transform: scale(1) translateZ(0) !important;
}

.hero__swiper .swiper-button-next {
  transform: translate(50%, -50%);
  right: calc((100% - var(--swiper-width)) / 2);
}

.hero__swiper .swiper-button-prev {
  transform: translate(-50%, -50%);
  left: calc((100% - var(--swiper-width)) / 2);
}

.swiper-button-next,
.swiper-button-prev {
  background: #fff;
  width: 60px;
  height: 60px;
  /* display: block; */
  border-radius: 50%;
  box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.1);
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: 15px;
  font-variant: normal;
  letter-spacing: 0;
  line-height: 1;
  text-transform: none !important;
  color: #3a3a3a;
}

/*
@media only screen and (max-width: 768px) {
    .hero__swiper {
        height: calc(var(--swiper-mobile-width) * var(--swiper-image-ratio) / 100%);
    }

    .hero__swiper .swiper-slide {
        width: var(--swiper-mobile-width);
        transform: scale(var(--swiper-mobile-inactive-scale));
    }

    .hero__swiper .swiper-backface-hidden .swiper-slide.swiper-slide {
        transform: scale(var(--swiper-mobile-inactive-scale)) translateZ(0);
    }

    .hero__swiper .swiper-button-next {
        right: calc((100% - var(--swiper-mobile-width)) / 2);
    }

    .hero__swiper .swiper-button-prev {
        left: calc((100% - var(--swiper-mobile-width)) / 2);
    }
} */

.hero__swiper .swiper-slide-next,
.hero__swiper .swiper-slide-prev {
  /* filter: grayscale(1); */
  opacity: 0.5;
}

@media (max-width: 1024px) {
  .hero__swiper .swiper-button-next,
  .hero__swiper .swiper-button-prev {
    display: flex;
  }
}

.checkbox-symbol {
  position: absolute;
  width: 0;
  height: 0;
  pointer-events: none;
  user-select: none;
}

.checkbox-container {
  box-sizing: border-box;
  background: #ffffff;
  color: #222;
  /* height: 64px; */
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: row wrap;
  padding-left: 16px;
}

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

.checkbox-input {
  position: absolute;
  visibility: hidden;
}

.checkbox {
  user-select: none;
  cursor: pointer;
  padding: 5px 0px;
  border-radius: 6px;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
}

.checkbox:not(:last-child) {
  margin-right: 6px;
}

.checkbox:hover {
  /* background: rgba(0, 119, 255, 0.06); */
}

.checkbox span {
  vertical-align: middle;
  transform: translate3d(0, 0, 0);
}

.checkbox span:first-child {
  position: relative;
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  border-radius: 5px;
  transform: scale(1);
  border: 2px solid #000;
  transition: all 0.3s ease;
}

.checkbox span:first-child svg {
  position: absolute;
  top: 3px;
  left: 2px;
  fill: none;
  stroke: #fff;
  stroke-dasharray: 16px;
  stroke-dashoffset: 16px;
  transition: all 0.3s ease;
  transform: translate3d(0, 0, 0);
}

.checkbox span:last-child {
  padding-left: 8px;
  line-height: 18px;
}

.checkbox:hover span:first-child {
  /* border-color: #0077ff; */
}

.checkbox-input:checked + .checkbox span:first-child {
  background: #0077ff;
  border-color: #0077ff;
  animation: zoom-in-out 0.3s ease;
}

.checkbox-input:checked + .checkbox span:first-child svg {
  stroke-dashoffset: 0;
}

@keyframes zoom-in-out {
  50% {
    transform: scale(0.9);
  }
}

.row.equal-cols {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.row.equal-cols:after,
.row.equal-cols:before {
  display: block;
}

.row.equal-cols > [class*='col-'] {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.row.equal-cols > [class*='col-'] > * {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

:root,
[data-bs-theme='light'] {
  --bs-blue: #0d6efd;
  --bs-indigo: #6610f2;
  --bs-purple: #6f42c1;
  --bs-pink: #d63384;
  --bs-red: #dc3545;
  --bs-orange: #fd7e14;
  --bs-yellow: #ffc107;
  --bs-green: #198754;
  --bs-teal: #20c997;
  --bs-cyan: #0dcaf0;
  --bs-black: #000;
  --bs-white: #fff;
  --bs-gray: #6c757d;
  --bs-gray-dark: #343a40;
  --bs-gray-100: #f8f9fa;
  --bs-gray-200: #e9ecef;
  --bs-gray-300: #dee2e6;
  --bs-gray-400: #ced4da;
  --bs-gray-500: #adb5bd;
  --bs-gray-600: #6c757d;
  --bs-gray-700: #495057;
  --bs-gray-800: #343a40;
  --bs-gray-900: #212529;
  --bs-primary: #0d6efd;
  --bs-secondary: #6c757d;
  --bs-success: #198754;
  --bs-info: #0dcaf0;
  --bs-warning: #ffc107;
  --bs-danger: #dc3545;
  --bs-light: #f8f9fa;
  --bs-dark: #212529;
  --bs-primary-rgb: 13, 110, 253;
  --bs-secondary-rgb: 108, 117, 125;
  --bs-success-rgb: 25, 135, 84;
  --bs-info-rgb: 13, 202, 240;
  --bs-warning-rgb: 255, 193, 7;
  --bs-danger-rgb: 220, 53, 69;
  --bs-light-rgb: 248, 249, 250;
  --bs-dark-rgb: 33, 37, 41;
  --bs-primary-text-emphasis: #052c65;
  --bs-secondary-text-emphasis: #2b2f32;
  --bs-success-text-emphasis: #0a3622;
  --bs-info-text-emphasis: #055160;
  --bs-warning-text-emphasis: #664d03;
  --bs-danger-text-emphasis: #58151c;
  --bs-light-text-emphasis: #495057;
  --bs-dark-text-emphasis: #495057;
  --bs-primary-bg-subtle: #cfe2ff;
  --bs-secondary-bg-subtle: #e2e3e5;
  --bs-success-bg-subtle: #d1e7dd;
  --bs-info-bg-subtle: #cff4fc;
  --bs-warning-bg-subtle: #fff3cd;
  --bs-danger-bg-subtle: #f8d7da;
  --bs-light-bg-subtle: #fcfcfd;
  --bs-dark-bg-subtle: #ced4da;
  --bs-primary-border-subtle: #9ec5fe;
  --bs-secondary-border-subtle: #c4c8cb;
  --bs-success-border-subtle: #a3cfbb;
  --bs-info-border-subtle: #9eeaf9;
  --bs-warning-border-subtle: #ffe69c;
  --bs-danger-border-subtle: #f1aeb5;
  --bs-light-border-subtle: #e9ecef;
  --bs-dark-border-subtle: #adb5bd;
  --bs-white-rgb: 255, 255, 255;
  --bs-black-rgb: 0, 0, 0;
  --bs-font-sans-serif:
    system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', 'Noto Sans',
    'Liberation Sans', Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji',
    'Segoe UI Symbol', 'Noto Color Emoji';
  --bs-font-monospace:
    SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New',
    monospace;
  --bs-gradient: linear-gradient(
    180deg,
    hsla(0, 0%, 100%, 0.15),
    hsla(0, 0%, 100%, 0)
  );
  --bs-body-font-family: var(--bs-font-sans-serif);
  --bs-body-font-size: 1rem;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.5;
  --bs-body-color: #212529;
  --bs-body-color-rgb: 33, 37, 41;
  --bs-body-bg: #fff;
  --bs-body-bg-rgb: 255, 255, 255;
  --bs-emphasis-color: #000;
  --bs-emphasis-color-rgb: 0, 0, 0;
  --bs-secondary-color: rgba(33, 37, 41, 0.75);
  --bs-secondary-color-rgb: 33, 37, 41;
  --bs-secondary-bg: #e9ecef;
  --bs-secondary-bg-rgb: 233, 236, 239;
  --bs-tertiary-color: rgba(33, 37, 41, 0.5);
  --bs-tertiary-color-rgb: 33, 37, 41;
  --bs-tertiary-bg: #f8f9fa;
  --bs-tertiary-bg-rgb: 248, 249, 250;
  --bs-heading-color: inherit;
  --bs-link-color: #0d6efd;
  --bs-link-color-rgb: 13, 110, 253;
  --bs-link-decoration: underline;
  --bs-link-hover-color: #0a58ca;
  --bs-link-hover-color-rgb: 10, 88, 202;
  --bs-code-color: #d63384;
  --bs-highlight-color: #212529;
  --bs-highlight-bg: #fff3cd;
  --bs-border-width: 1px;
  --bs-border-style: solid;
  --bs-border-color: #dee2e6;
  --bs-border-color-translucent: rgba(0, 0, 0, 0.175);
  --bs-border-radius: 0.375rem;
  --bs-border-radius-sm: 0.25rem;
  --bs-border-radius-lg: 0.5rem;
  --bs-border-radius-xl: 1rem;
  --bs-border-radius-xxl: 2rem;
  --bs-border-radius-2xl: var(--bs-border-radius-xxl);
  --bs-border-radius-pill: 50rem;
  --bs-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  --bs-box-shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  --bs-box-shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);
  --bs-box-shadow-inset: inset 0 1px 2px rgba(0, 0, 0, 0.075);
  --bs-focus-ring-width: 0.25rem;
  --bs-focus-ring-opacity: 0.25;
  --bs-focus-ring-color: rgba(13, 110, 253, 0.25);
  --bs-form-valid-color: #198754;
  --bs-form-valid-border-color: #198754;
  --bs-form-invalid-color: #dc3545;
  --bs-form-invalid-border-color: #dc3545;
}

[data-bs-theme='dark'] {
  --bs-body-color: #dee2e6;
  --bs-body-color-rgb: 222, 226, 230;
  --bs-body-bg: #212529;
  --bs-body-bg-rgb: 33, 37, 41;
  --bs-emphasis-color: #fff;
  --bs-emphasis-color-rgb: 255, 255, 255;
  --bs-secondary-color: rgba(222, 226, 230, 0.75);
  --bs-secondary-color-rgb: 222, 226, 230;
  --bs-secondary-bg: #343a40;
  --bs-secondary-bg-rgb: 52, 58, 64;
  --bs-tertiary-color: rgba(222, 226, 230, 0.5);
  --bs-tertiary-color-rgb: 222, 226, 230;
  --bs-tertiary-bg: #2b3035;
  --bs-tertiary-bg-rgb: 43, 48, 53;
  --bs-primary-text-emphasis: #6ea8fe;
  --bs-secondary-text-emphasis: #a7acb1;
  --bs-success-text-emphasis: #75b798;
  --bs-info-text-emphasis: #6edff6;
  --bs-warning-text-emphasis: #ffda6a;
  --bs-danger-text-emphasis: #ea868f;
  --bs-light-text-emphasis: #f8f9fa;
  --bs-dark-text-emphasis: #dee2e6;
  --bs-primary-bg-subtle: #031633;
  --bs-secondary-bg-subtle: #161719;
  --bs-success-bg-subtle: #051b11;
  --bs-info-bg-subtle: #032830;
  --bs-warning-bg-subtle: #332701;
  --bs-danger-bg-subtle: #2c0b0e;
  --bs-light-bg-subtle: #343a40;
  --bs-dark-bg-subtle: #1a1d20;
  --bs-primary-border-subtle: #084298;
  --bs-secondary-border-subtle: #41464b;
  --bs-success-border-subtle: #0f5132;
  --bs-info-border-subtle: #087990;
  --bs-warning-border-subtle: #997404;
  --bs-danger-border-subtle: #842029;
  --bs-light-border-subtle: #495057;
  --bs-dark-border-subtle: #343a40;
  --bs-heading-color: inherit;
  --bs-link-color: #6ea8fe;
  --bs-link-hover-color: #8bb9fe;
  --bs-link-color-rgb: 110, 168, 254;
  --bs-link-hover-color-rgb: 139, 185, 254;
  --bs-code-color: #e685b5;
  --bs-highlight-color: #dee2e6;
  --bs-highlight-bg: #664d03;
  --bs-border-color: #495057;
  --bs-border-color-translucent: hsla(0, 0%, 100%, 0.15);
  --bs-form-valid-color: #75b798;
  --bs-form-valid-border-color: #75b798;
  --bs-form-invalid-color: #ea868f;
  --bs-form-invalid-border-color: #ea868f;
  color-scheme: dark;
}

body {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  background-color: var(--bs-body-bg);
  color: var(--bs-body-color);
  font-family: var(--bs-body-font-family);
  font-size: var(--bs-body-font-size);
  font-weight: var(--bs-body-font-weight);
  line-height: var(--bs-body-line-height);
  margin: 0;
  text-align: var(--bs-body-text-align);
}

hr {
  border-top: var(--bs-border-width) solid;
  color: inherit;
  margin: 1rem 0;
  opacity: 0.25;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--bs-heading-color);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 0.5rem;
  margin-top: 0;
}

.h1,
h1 {
  font-size: -webkit-calc(1.375rem + 1.5vw);
  font-size: calc(1.375rem + 1.5vw);
}

.h2,
h2 {
  font-size: -webkit-calc(1.325rem + 0.9vw);
  font-size: calc(1.325rem + 0.9vw);
}

.h3,
h3 {
  font-size: -webkit-calc(1.3rem + 0.6vw);
  font-size: calc(1.3rem + 0.6vw);
}

.h4,
h4 {
  font-size: -webkit-calc(1.275rem + 0.3vw);
  font-size: calc(1.275rem + 0.3vw);
}

.h5,
h5 {
  font-size: 1.25rem;
}

.h6,
h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1rem;
  margin-top: 0;
}

abbr[title] {
  cursor: help;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}

address {
  font-style: normal;
  line-height: inherit;
  margin-bottom: 1rem;
}

ol,
ul {
  padding-left: 2rem;
}

dl,
ol,
ul {
  margin-bottom: 1rem;
  margin-top: 0;
}

ol ol,
ol ul,
ul ol,
ul ul {
  margin-bottom: 0;
}

dt {
  font-weight: 700;
}

dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}

blockquote {
  margin: 0 0 1rem;
}

b,
strong {
  font-weight: bolder;
}

.small,
small {
  font-size: 0.875em;
}

.mark,
mark {
  background-color: var(--bs-highlight-bg);
  color: var(--bs-highlight-color);
  padding: 0.1875em;
}

sub,
sup {
  font-size: 0.75em;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

a {
  color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 1));
  text-decoration: underline;
}

a:hover {
  --bs-link-color-rgb: var(--bs-link-hover-color-rgb);
}

a:not([href]):not([class]),
a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}

code,
kbd,
pre,
samp {
  font-family: var(--bs-font-monospace);
  font-size: 1em;
}

pre {
  display: block;
  font-size: 0.875em;
  margin-bottom: 1rem;
  margin-top: 0;
}

pre code {
  color: inherit;
  font-size: inherit;
  word-break: normal;
}

code {
  word-wrap: break-word;
  color: var(--bs-code-color);
  font-size: 0.875em;
}

a > code {
  color: inherit;
}

kbd {
  background-color: var(--bs-body-color);
  -webkit-border-radius: 0.25rem;
  border-radius: 0.25rem;
  color: var(--bs-body-bg);
  font-size: 0.875em;
  padding: 0.1875rem 0.375rem;
}

kbd kbd {
  font-size: 1em;
  padding: 0;
}

figure {
  margin: 0 0 1rem;
}

img,
svg {
  vertical-align: middle;
}

table {
  caption-side: bottom;
}

caption {
  color: var(--bs-secondary-color);
  padding-bottom: 0.5rem;
  padding-top: 0.5rem;
  text-align: left;
}

th {
  text-align: inherit;
  text-align: -webkit-match-parent;
}

tbody,
td,
tfoot,
th,
thead,
tr {
  border: 0 solid;
  border-color: inherit;
}

label {
  display: inline-block;
}

button {
  -webkit-border-radius: 0;
  border-radius: 0;
}

button:focus:not(:focus-visible) {
  outline: 0;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  margin: 0;
}

button,
select {
  text-transform: none;
}

[role='button'] {
  cursor: pointer;
}

select {
  word-wrap: normal;
}

select:disabled {
  opacity: 1;
}

[list]:not([type='date']):not([type='datetime-local']):not([type='month']):not(
    [type='week']
  ):not([type='time'])::-webkit-calendar-picker-indicator {
  display: none !important;
}

[type='button'],
[type='reset'],
[type='submit'],
button {
  -webkit-appearance: button;
}

[type='button']:not(:disabled),
[type='reset']:not(:disabled),
[type='submit']:not(:disabled),
button:not(:disabled) {
  cursor: pointer;
}

::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

fieldset {
  min-width: 0;
}

legend {
  float: left;
  font-size: -webkit-calc(1.275rem + 0.3vw);
  font-size: calc(1.275rem + 0.3vw);
  line-height: inherit;
  margin-bottom: 0.5rem;
  padding: 0;
  width: 100%;
}

legend + * {
  clear: left;
}

::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-year-field {
  padding: 0;
}

::-webkit-inner-spin-button {
  height: auto;
}

[type='search'] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-color-swatch-wrapper {
  padding: 0;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

::file-selector-button {
  -webkit-appearance: button;
  font: inherit;
}

output {
  display: inline-block;
}

iframe {
  border: 0;
}

summary {
  cursor: pointer;
  display: list-item;
}

progress {
  vertical-align: baseline;
}

[hidden] {
  display: none !important;
}

.lead {
  font-size: 1.25rem;
  font-weight: 300;
}

.display-1 {
  font-size: -webkit-calc(1.625rem + 4.5vw);
  font-size: calc(1.625rem + 4.5vw);
}

.display-1,
.display-2 {
  font-weight: 300;
  line-height: 1.2;
}

.display-2 {
  font-size: -webkit-calc(1.575rem + 3.9vw);
  font-size: calc(1.575rem + 3.9vw);
}

.display-3 {
  font-size: -webkit-calc(1.525rem + 3.3vw);
  font-size: calc(1.525rem + 3.3vw);
}

.display-3,
.display-4 {
  font-weight: 300;
  line-height: 1.2;
}

.display-4 {
  font-size: -webkit-calc(1.475rem + 2.7vw);
  font-size: calc(1.475rem + 2.7vw);
}

.display-5 {
  font-size: -webkit-calc(1.425rem + 2.1vw);
  font-size: calc(1.425rem + 2.1vw);
}

.display-5,
.display-6 {
  font-weight: 300;
  line-height: 1.2;
}

.display-6 {
  font-size: -webkit-calc(1.375rem + 1.5vw);
  font-size: calc(1.375rem + 1.5vw);
}

.list-inline,
.list-unstyled {
  list-style: none;
  padding-left: 0;
}

.list-inline-item {
  display: inline-block;
}

.list-inline-item:not(:last-child) {
  margin-right: 0.5rem;
}

.initialism {
  font-size: 0.875em;
  text-transform: uppercase;
}

.blockquote {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.blockquote > :last-child {
  margin-bottom: 0;
}

.blockquote-footer {
  color: #6c757d;
  font-size: 0.875em;
  margin-bottom: 1rem;
  margin-top: -1rem;
}

.blockquote-footer:before {
  content: '— ';
}

.img-fluid,
.img-thumbnail {
  height: auto;
  max-width: 100%;
}

.img-thumbnail {
  background-color: var(--bs-body-bg);
  border: var(--bs-border-width) solid var(--bs-border-color);
  -webkit-border-radius: var(--bs-border-radius);
  border-radius: var(--bs-border-radius);
  padding: 0.25rem;
}

.figure {
  display: inline-block;
}

.figure-img {
  line-height: 1;
  margin-bottom: 0.5rem;
}

.figure-caption {
  color: var(--bs-secondary-color);
  font-size: 0.875em;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  margin-left: auto;
  margin-right: auto;
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  width: 100%;
}

:root {
  --bs-breakpoint-xs: 0;
  --bs-breakpoint-sm: 576px;
  --bs-breakpoint-md: 768px;
  --bs-breakpoint-lg: 992px;
  --bs-breakpoint-xl: 1200px;
  --bs-breakpoint-xxl: 1400px;
}

.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: calc(var(--bs-gutter-x) * -0.5);
  margin-right: calc(var(--bs-gutter-x) * -0.5);
  margin-top: calc(var(--bs-gutter-y) * -1);
}

.row > * {
  -ms-flex-negative: 0;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  margin-top: var(--bs-gutter-y);
  max-width: 100%;
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  width: 100%;
}

.col {
  -webkit-box-flex: 1;
  -webkit-flex: 1 0 0%;
  -ms-flex: 1 0 0%;
  flex: 1 0 0%;
}

.row-cols-auto > * {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
}

.row-cols-1 > * {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 100%;
}

.row-cols-2 > * {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 50%;
}

.row-cols-3 > * {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 33.33333333%;
}

.row-cols-4 > * {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 25%;
}

.row-cols-5 > * {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 20%;
}

.row-cols-6 > * {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 16.66666667%;
}

.col-auto {
  width: auto;
}

.col-1,
.col-auto {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.col-1 {
  width: 8.33333333%;
}

.col-2 {
  width: 16.66666667%;
}

.col-2,
.col-3 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.col-3 {
  width: 25%;
}

.col-4 {
  width: 33.33333333%;
}

.col-4,
.col-5 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.col-5 {
  width: 41.66666667%;
}

.col-6 {
  width: 50%;
}

.col-6,
.col-7 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.col-7 {
  width: 58.33333333%;
}

.col-8 {
  width: 66.66666667%;
}

.col-8,
.col-9 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.col-9 {
  width: 75%;
}

.col-10 {
  width: 83.33333333%;
}

.col-10,
.col-11 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.col-11 {
  width: 91.66666667%;
}

.col-12 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 100%;
}

.offset-1 {
  margin-left: 8.33333333%;
}

.offset-2 {
  margin-left: 16.66666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.33333333%;
}

.offset-5 {
  margin-left: 41.66666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.33333333%;
}

.offset-8 {
  margin-left: 66.66666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.33333333%;
}

.offset-11 {
  margin-left: 91.66666667%;
}

.g-0,
.gx-0 {
  --bs-gutter-x: 0;
}

.g-0,
.gy-0 {
  --bs-gutter-y: 0;
}

.g-1,
.gx-1 {
  --bs-gutter-x: 0.25rem;
}

.g-1,
.gy-1 {
  --bs-gutter-y: 0.25rem;
}

.g-2,
.gx-2 {
  --bs-gutter-x: 0.5rem;
}

.g-2,
.gy-2 {
  --bs-gutter-y: 0.5rem;
}

.g-3,
.gx-3 {
  --bs-gutter-x: 1rem;
}

.g-3,
.gy-3 {
  --bs-gutter-y: 1rem;
}

.g-4,
.gx-4 {
  --bs-gutter-x: 1.5rem;
}

.g-4,
.gy-4 {
  --bs-gutter-y: 1.5rem;
}

.g-5,
.gx-5 {
  --bs-gutter-x: 3rem;
}

.g-5,
.gy-5 {
  --bs-gutter-y: 3rem;
}

.g-6,
.gx-6 {
  --bs-gutter-x: 3.5rem;
}

.g-6,
.gy-6 {
  --bs-gutter-y: 3.5rem;
}

.g-7,
.gx-7 {
  --bs-gutter-x: 4rem;
}

.g-7,
.gy-7 {
  --bs-gutter-y: 4rem;
}

.g-8,
.gx-8 {
  --bs-gutter-x: 4.5rem;
}

.g-8,
.gy-8 {
  --bs-gutter-y: 4.5rem;
}

.g-9,
.gx-9 {
  --bs-gutter-x: 5rem;
}

.g-9,
.gy-9 {
  --bs-gutter-y: 5rem;
}

.g-10,
.gx-10 {
  --bs-gutter-x: 5.5rem;
}

.g-10,
.gy-10 {
  --bs-gutter-y: 5.5rem;
}

.clearfix:after {
  clear: both;
  content: '';
  display: block;
}

.text-bg-primary {
  background-color: RGBA(
    var(--bs-primary-rgb),
    var(--bs-bg-opacity, 1)
  ) !important;
  color: #fff !important;
}

.text-bg-secondary {
  background-color: RGBA(
    var(--bs-secondary-rgb),
    var(--bs-bg-opacity, 1)
  ) !important;
  color: #fff !important;
}

.text-bg-success {
  background-color: RGBA(
    var(--bs-success-rgb),
    var(--bs-bg-opacity, 1)
  ) !important;
  color: #fff !important;
}

.text-bg-info {
  background-color: RGBA(
    var(--bs-info-rgb),
    var(--bs-bg-opacity, 1)
  ) !important;
  color: #000 !important;
}

.text-bg-warning {
  background-color: RGBA(
    var(--bs-warning-rgb),
    var(--bs-bg-opacity, 1)
  ) !important;
  color: #000 !important;
}

.text-bg-danger {
  background-color: RGBA(
    var(--bs-danger-rgb),
    var(--bs-bg-opacity, 1)
  ) !important;
  color: #fff !important;
}

.text-bg-light {
  background-color: RGBA(
    var(--bs-light-rgb),
    var(--bs-bg-opacity, 1)
  ) !important;
  color: #000 !important;
}

.text-bg-dark {
  background-color: RGBA(
    var(--bs-dark-rgb),
    var(--bs-bg-opacity, 1)
  ) !important;
  color: #fff !important;
}

.link-primary {
  color: RGBA(var(--bs-primary-rgb), var(--bs-link-opacity, 1)) !important;
  -webkit-text-decoration-color: RGBA(
    var(--bs-primary-rgb),
    var(--bs-link-underline-opacity, 1)
  ) !important;
  text-decoration-color: RGBA(
    var(--bs-primary-rgb),
    var(--bs-link-underline-opacity, 1)
  ) !important;
}

.link-primary:focus,
.link-primary:hover {
  color: RGBA(10, 88, 202, var(--bs-link-opacity, 1)) !important;
  -webkit-text-decoration-color: RGBA(
    10,
    88,
    202,
    var(--bs-link-underline-opacity, 1)
  ) !important;
  text-decoration-color: RGBA(
    10,
    88,
    202,
    var(--bs-link-underline-opacity, 1)
  ) !important;
}

.link-secondary {
  color: RGBA(var(--bs-secondary-rgb), var(--bs-link-opacity, 1)) !important;
  -webkit-text-decoration-color: RGBA(
    var(--bs-secondary-rgb),
    var(--bs-link-underline-opacity, 1)
  ) !important;
  text-decoration-color: RGBA(
    var(--bs-secondary-rgb),
    var(--bs-link-underline-opacity, 1)
  ) !important;
}

.link-secondary:focus,
.link-secondary:hover {
  color: RGBA(86, 94, 100, var(--bs-link-opacity, 1)) !important;
  -webkit-text-decoration-color: RGBA(
    86,
    94,
    100,
    var(--bs-link-underline-opacity, 1)
  ) !important;
  text-decoration-color: RGBA(
    86,
    94,
    100,
    var(--bs-link-underline-opacity, 1)
  ) !important;
}

.link-success {
  color: RGBA(var(--bs-success-rgb), var(--bs-link-opacity, 1)) !important;
  -webkit-text-decoration-color: RGBA(
    var(--bs-success-rgb),
    var(--bs-link-underline-opacity, 1)
  ) !important;
  text-decoration-color: RGBA(
    var(--bs-success-rgb),
    var(--bs-link-underline-opacity, 1)
  ) !important;
}

.link-success:focus,
.link-success:hover {
  color: RGBA(20, 108, 67, var(--bs-link-opacity, 1)) !important;
  -webkit-text-decoration-color: RGBA(
    20,
    108,
    67,
    var(--bs-link-underline-opacity, 1)
  ) !important;
  text-decoration-color: RGBA(
    20,
    108,
    67,
    var(--bs-link-underline-opacity, 1)
  ) !important;
}

.link-info {
  color: RGBA(var(--bs-info-rgb), var(--bs-link-opacity, 1)) !important;
  -webkit-text-decoration-color: RGBA(
    var(--bs-info-rgb),
    var(--bs-link-underline-opacity, 1)
  ) !important;
  text-decoration-color: RGBA(
    var(--bs-info-rgb),
    var(--bs-link-underline-opacity, 1)
  ) !important;
}

.link-info:focus,
.link-info:hover {
  color: RGBA(61, 213, 243, var(--bs-link-opacity, 1)) !important;
  -webkit-text-decoration-color: RGBA(
    61,
    213,
    243,
    var(--bs-link-underline-opacity, 1)
  ) !important;
  text-decoration-color: RGBA(
    61,
    213,
    243,
    var(--bs-link-underline-opacity, 1)
  ) !important;
}

.link-warning {
  color: RGBA(var(--bs-warning-rgb), var(--bs-link-opacity, 1)) !important;
  -webkit-text-decoration-color: RGBA(
    var(--bs-warning-rgb),
    var(--bs-link-underline-opacity, 1)
  ) !important;
  text-decoration-color: RGBA(
    var(--bs-warning-rgb),
    var(--bs-link-underline-opacity, 1)
  ) !important;
}

.link-warning:focus,
.link-warning:hover {
  color: RGBA(255, 205, 57, var(--bs-link-opacity, 1)) !important;
  -webkit-text-decoration-color: RGBA(
    255,
    205,
    57,
    var(--bs-link-underline-opacity, 1)
  ) !important;
  text-decoration-color: RGBA(
    255,
    205,
    57,
    var(--bs-link-underline-opacity, 1)
  ) !important;
}

.link-danger {
  color: RGBA(var(--bs-danger-rgb), var(--bs-link-opacity, 1)) !important;
  -webkit-text-decoration-color: RGBA(
    var(--bs-danger-rgb),
    var(--bs-link-underline-opacity, 1)
  ) !important;
  text-decoration-color: RGBA(
    var(--bs-danger-rgb),
    var(--bs-link-underline-opacity, 1)
  ) !important;
}

.link-danger:focus,
.link-danger:hover {
  color: RGBA(176, 42, 55, var(--bs-link-opacity, 1)) !important;
  -webkit-text-decoration-color: RGBA(
    176,
    42,
    55,
    var(--bs-link-underline-opacity, 1)
  ) !important;
  text-decoration-color: RGBA(
    176,
    42,
    55,
    var(--bs-link-underline-opacity, 1)
  ) !important;
}

.link-light {
  color: RGBA(var(--bs-light-rgb), var(--bs-link-opacity, 1)) !important;
  -webkit-text-decoration-color: RGBA(
    var(--bs-light-rgb),
    var(--bs-link-underline-opacity, 1)
  ) !important;
  text-decoration-color: RGBA(
    var(--bs-light-rgb),
    var(--bs-link-underline-opacity, 1)
  ) !important;
}

.link-light:focus,
.link-light:hover {
  color: RGBA(249, 250, 251, var(--bs-link-opacity, 1)) !important;
  -webkit-text-decoration-color: RGBA(
    249,
    250,
    251,
    var(--bs-link-underline-opacity, 1)
  ) !important;
  text-decoration-color: RGBA(
    249,
    250,
    251,
    var(--bs-link-underline-opacity, 1)
  ) !important;
}

.link-dark {
  color: RGBA(var(--bs-dark-rgb), var(--bs-link-opacity, 1)) !important;
  -webkit-text-decoration-color: RGBA(
    var(--bs-dark-rgb),
    var(--bs-link-underline-opacity, 1)
  ) !important;
  text-decoration-color: RGBA(
    var(--bs-dark-rgb),
    var(--bs-link-underline-opacity, 1)
  ) !important;
}

.link-dark:focus,
.link-dark:hover {
  color: RGBA(26, 30, 33, var(--bs-link-opacity, 1)) !important;
  -webkit-text-decoration-color: RGBA(
    26,
    30,
    33,
    var(--bs-link-underline-opacity, 1)
  ) !important;
  text-decoration-color: RGBA(
    26,
    30,
    33,
    var(--bs-link-underline-opacity, 1)
  ) !important;
}

.link-body-emphasis {
  color: RGBA(
    var(--bs-emphasis-color-rgb),
    var(--bs-link-opacity, 1)
  ) !important;
  -webkit-text-decoration-color: RGBA(
    var(--bs-emphasis-color-rgb),
    var(--bs-link-underline-opacity, 1)
  ) !important;
  text-decoration-color: RGBA(
    var(--bs-emphasis-color-rgb),
    var(--bs-link-underline-opacity, 1)
  ) !important;
}

.link-body-emphasis:focus,
.link-body-emphasis:hover {
  color: RGBA(
    var(--bs-emphasis-color-rgb),
    var(--bs-link-opacity, 0.75)
  ) !important;
  -webkit-text-decoration-color: RGBA(
    var(--bs-emphasis-color-rgb),
    var(--bs-link-underline-opacity, 0.75)
  ) !important;
  text-decoration-color: RGBA(
    var(--bs-emphasis-color-rgb),
    var(--bs-link-underline-opacity, 0.75)
  ) !important;
}

.focus-ring:focus {
  -webkit-box-shadow: var(--bs-focus-ring-x, 0) var(--bs-focus-ring-y, 0)
    var(--bs-focus-ring-blur, 0) var(--bs-focus-ring-width)
    var(--bs-focus-ring-color);
  box-shadow: var(--bs-focus-ring-x, 0) var(--bs-focus-ring-y, 0)
    var(--bs-focus-ring-blur, 0) var(--bs-focus-ring-width)
    var(--bs-focus-ring-color);
  outline: 0;
}

.icon-link {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 0.375rem;
  -webkit-text-decoration-color: rgba(
    var(--bs-link-color-rgb),
    var(--bs-link-opacity, 0.5)
  );
  text-decoration-color: rgba(
    var(--bs-link-color-rgb),
    var(--bs-link-opacity, 0.5)
  );
  text-underline-offset: 0.25em;
}

.icon-link > .bi {
  -ms-flex-negative: 0;
  fill: currentcolor;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  height: 1em;
  -webkit-transition: transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out;
  width: 1em;
}

.icon-link-hover:focus-visible > .bi,
.icon-link-hover:hover > .bi {
  -webkit-transform: var(--bs-icon-link-transform, translate3d(0.25em, 0, 0));
  transform: var(--bs-icon-link-transform, translate3d(0.25em, 0, 0));
}

.ratio {
  position: relative;
  width: 100%;
}

.ratio:before {
  content: '';
  display: block;
  padding-top: var(--bs-aspect-ratio);
}

.ratio > * {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.ratio-1x1 {
  --bs-aspect-ratio: 100%;
}

.ratio-4x3 {
  --bs-aspect-ratio: 75%;
}

.ratio-16x9 {
  --bs-aspect-ratio: 56.25%;
}

.ratio-21x9 {
  --bs-aspect-ratio: 42.8571428571%;
}

.fixed-top {
  top: 0;
}

.fixed-bottom,
.fixed-top {
  left: 0;
  position: fixed;
  right: 0;
  z-index: 1030;
}

.fixed-bottom {
  bottom: 0;
}

.sticky-top {
  top: 0;
}

.sticky-bottom,
.sticky-top {
  position: -webkit-sticky;
  position: sticky;
  z-index: 1020;
}

.sticky-bottom {
  bottom: 0;
}

.hstack {
  -webkit-box-orient: horizontal;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -ms-flex-item-align: stretch;
  -webkit-align-items: center;
  align-items: center;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
}

.hstack,
.vstack {
  -webkit-box-direction: normal;
  -webkit-align-self: stretch;
  align-self: stretch;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.vstack {
  -webkit-box-flex: 1;
  -webkit-box-orient: vertical;
  -ms-flex-item-align: stretch;
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.visually-hidden,
.visually-hidden-focusable:not(:focus):not(:focus-within) {
  clip: rect(0, 0, 0, 0) !important;
  border: 0 !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  white-space: nowrap !important;
  width: 1px !important;
}

.visually-hidden-focusable:not(:focus):not(:focus-within):not(caption),
.visually-hidden:not(caption) {
  position: absolute !important;
}

.stretched-link:after {
  bottom: 0;
  content: '';
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.vr {
  -ms-flex-item-align: stretch;
  -webkit-align-self: stretch;
  align-self: stretch;
  background-color: currentcolor;
  display: inline-block;
  min-height: 1em;
  opacity: 0.25;
  width: var(--bs-border-width);
}

.align-baseline {
  vertical-align: baseline !important;
}

.align-top {
  vertical-align: top !important;
}

.align-middle {
  vertical-align: middle !important;
}

.align-bottom {
  vertical-align: bottom !important;
}

.align-text-bottom {
  vertical-align: text-bottom !important;
}

.align-text-top {
  vertical-align: text-top !important;
}

.float-start {
  float: left !important;
}

.float-end {
  float: right !important;
}

.float-none {
  float: none !important;
}

.object-fit-contain {
  -o-object-fit: contain !important;
  object-fit: contain !important;
}

.object-fit-cover {
  -o-object-fit: cover !important;
  object-fit: cover !important;
}

.object-fit-fill {
  -o-object-fit: fill !important;
  object-fit: fill !important;
}

.object-fit-scale {
  -o-object-fit: scale-down !important;
  object-fit: scale-down !important;
}

.object-fit-none {
  -o-object-fit: none !important;
  object-fit: none !important;
}

.opacity-0 {
  opacity: 0 !important;
}

.opacity-25 {
  opacity: 0.25 !important;
}

.opacity-50 {
  opacity: 0.5 !important;
}

.opacity-75 {
  opacity: 0.75 !important;
}

.opacity-100 {
  opacity: 1 !important;
}

.overflow-auto {
  overflow: auto !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

.overflow-visible {
  overflow: visible !important;
}

.overflow-scroll {
  overflow: scroll !important;
}

.overflow-x-auto {
  overflow-x: auto !important;
}

.overflow-x-hidden {
  overflow-x: hidden !important;
}

.overflow-x-visible {
  overflow-x: visible !important;
}

.overflow-x-scroll {
  overflow-x: scroll !important;
}

.overflow-y-auto {
  overflow-y: auto !important;
}

.overflow-y-hidden {
  overflow-y: hidden !important;
}

.overflow-y-visible {
  overflow-y: visible !important;
}

.overflow-y-scroll {
  overflow-y: scroll !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-grid {
  display: grid !important;
}

.d-inline-grid {
  display: inline-grid !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: -webkit-box !important;
  display: -webkit-flex !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.d-inline-flex {
  display: -webkit-inline-box !important;
  display: -webkit-inline-flex !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
}

.d-none {
  display: none !important;
}

.shadow {
  -webkit-box-shadow: var(--bs-box-shadow) !important;
  box-shadow: var(--bs-box-shadow) !important;
}

.shadow-sm {
  -webkit-box-shadow: var(--bs-box-shadow-sm) !important;
  box-shadow: var(--bs-box-shadow-sm) !important;
}

.shadow-lg {
  -webkit-box-shadow: var(--bs-box-shadow-lg) !important;
  box-shadow: var(--bs-box-shadow-lg) !important;
}

.shadow-none {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.focus-ring-primary {
  --bs-focus-ring-color: rgba(
    var(--bs-primary-rgb),
    var(--bs-focus-ring-opacity)
  );
}

.focus-ring-secondary {
  --bs-focus-ring-color: rgba(
    var(--bs-secondary-rgb),
    var(--bs-focus-ring-opacity)
  );
}

.focus-ring-success {
  --bs-focus-ring-color: rgba(
    var(--bs-success-rgb),
    var(--bs-focus-ring-opacity)
  );
}

.focus-ring-info {
  --bs-focus-ring-color: rgba(var(--bs-info-rgb), var(--bs-focus-ring-opacity));
}

.focus-ring-warning {
  --bs-focus-ring-color: rgba(
    var(--bs-warning-rgb),
    var(--bs-focus-ring-opacity)
  );
}

.focus-ring-danger {
  --bs-focus-ring-color: rgba(
    var(--bs-danger-rgb),
    var(--bs-focus-ring-opacity)
  );
}

.focus-ring-light {
  --bs-focus-ring-color: rgba(
    var(--bs-light-rgb),
    var(--bs-focus-ring-opacity)
  );
}

.focus-ring-dark {
  --bs-focus-ring-color: rgba(var(--bs-dark-rgb), var(--bs-focus-ring-opacity));
}

.position-static {
  position: static !important;
}

.position-relative {
  position: relative !important;
}

.position-absolute {
  position: absolute !important;
}

.position-fixed {
  position: fixed !important;
}

.position-sticky {
  position: -webkit-sticky !important;
  position: sticky !important;
}

.top-0 {
  top: 0 !important;
}

.top-50 {
  top: 50% !important;
}

.top-100 {
  top: 100% !important;
}

.bottom-0 {
  bottom: 0 !important;
}

.bottom-50 {
  bottom: 50% !important;
}

.bottom-100 {
  bottom: 100% !important;
}

.start-0 {
  left: 0 !important;
}

.start-50 {
  left: 50% !important;
}

.start-100 {
  left: 100% !important;
}

.end-0 {
  right: 0 !important;
}

.end-50 {
  right: 50% !important;
}

.end-100 {
  right: 100% !important;
}

.translate-middle {
  -webkit-transform: translate(-50%, -50%) !important;
  -ms-transform: translate(-50%, -50%) !important;
  transform: translate(-50%, -50%) !important;
}

.translate-middle-x {
  -webkit-transform: translateX(-50%) !important;
  -ms-transform: translateX(-50%) !important;
  transform: translateX(-50%) !important;
}

.translate-middle-y {
  -webkit-transform: translateY(-50%) !important;
  -ms-transform: translateY(-50%) !important;
  transform: translateY(-50%) !important;
}

.border {
  border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color) !important;
}

.border-0 {
  border: 0 !important;
}

.border-top {
  border-top: var(--bs-border-width) var(--bs-border-style)
    var(--bs-border-color) !important;
}

.border-top-0 {
  border-top: 0 !important;
}

.border-end {
  border-right: var(--bs-border-width) var(--bs-border-style)
    var(--bs-border-color) !important;
}

.border-end-0 {
  border-right: 0 !important;
}

.border-bottom {
  border-bottom: var(--bs-border-width) var(--bs-border-style)
    var(--bs-border-color) !important;
}

.border-bottom-0 {
  border-bottom: 0 !important;
}

.border-start {
  border-left: var(--bs-border-width) var(--bs-border-style)
    var(--bs-border-color) !important;
}

.border-start-0 {
  border-left: 0 !important;
}

.border-primary {
  --bs-border-opacity: 1;
  border-color: rgba(
    var(--bs-primary-rgb),
    var(--bs-border-opacity)
  ) !important;
}

.border-secondary {
  --bs-border-opacity: 1;
  border-color: rgba(
    var(--bs-secondary-rgb),
    var(--bs-border-opacity)
  ) !important;
}

.border-success {
  --bs-border-opacity: 1;
  border-color: rgba(
    var(--bs-success-rgb),
    var(--bs-border-opacity)
  ) !important;
}

.border-info {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-info-rgb), var(--bs-border-opacity)) !important;
}

.border-warning {
  --bs-border-opacity: 1;
  border-color: rgba(
    var(--bs-warning-rgb),
    var(--bs-border-opacity)
  ) !important;
}

.border-danger {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-danger-rgb), var(--bs-border-opacity)) !important;
}

.border-light {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-light-rgb), var(--bs-border-opacity)) !important;
}

.border-dark {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-dark-rgb), var(--bs-border-opacity)) !important;
}

.border-black {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-black-rgb), var(--bs-border-opacity)) !important;
}

.border-white {
  --bs-border-opacity: 1;
  border-color: rgba(var(--bs-white-rgb), var(--bs-border-opacity)) !important;
}

.border-primary-subtle {
  border-color: var(--bs-primary-border-subtle) !important;
}

.border-secondary-subtle {
  border-color: var(--bs-secondary-border-subtle) !important;
}

.border-success-subtle {
  border-color: var(--bs-success-border-subtle) !important;
}

.border-info-subtle {
  border-color: var(--bs-info-border-subtle) !important;
}

.border-warning-subtle {
  border-color: var(--bs-warning-border-subtle) !important;
}

.border-danger-subtle {
  border-color: var(--bs-danger-border-subtle) !important;
}

.border-light-subtle {
  border-color: var(--bs-light-border-subtle) !important;
}

.border-dark-subtle {
  border-color: var(--bs-dark-border-subtle) !important;
}

.border-1 {
  border-width: 1px !important;
}

.border-2 {
  border-width: 2px !important;
}

.border-3 {
  border-width: 3px !important;
}

.border-4 {
  border-width: 4px !important;
}

.border-5 {
  border-width: 5px !important;
}

.border-opacity-10 {
  --bs-border-opacity: 0.1;
}

.border-opacity-25 {
  --bs-border-opacity: 0.25;
}

.border-opacity-50 {
  --bs-border-opacity: 0.5;
}

.border-opacity-75 {
  --bs-border-opacity: 0.75;
}

.border-opacity-100 {
  --bs-border-opacity: 1;
}

.w-10 {
  width: 10% !important;
}

.w-15 {
  width: 15% !important;
}

.w-20 {
  width: 20% !important;
}

.w-25 {
  width: 25% !important;
}

.w-30 {
  width: 30% !important;
}

.w-35 {
  width: 35% !important;
}

.w-40 {
  width: 40% !important;
}

.w-45 {
  width: 45% !important;
}

.w-50 {
  width: 50% !important;
}

.w-55 {
  width: 55% !important;
}

.w-60 {
  width: 60% !important;
}

.w-65 {
  width: 65% !important;
}

.w-70 {
  width: 70% !important;
}

.w-75 {
  width: 75% !important;
}

.w-80 {
  width: 80% !important;
}

.w-85 {
  width: 85% !important;
}

.w-90 {
  width: 90% !important;
}

.w-95 {
  width: 95% !important;
}

.w-100 {
  width: 100% !important;
}

.w-auto {
  width: auto !important;
}

.mw-100 {
  max-width: 100% !important;
}

.vw-100 {
  width: 100vw !important;
}

.min-vw-100 {
  min-width: 100vw !important;
}

.h-25 {
  height: 25% !important;
}

.h-50 {
  height: 50% !important;
}

.h-75 {
  height: 75% !important;
}

.h-100 {
  height: 100% !important;
}

.h-auto {
  height: auto !important;
}

.mh-100 {
  max-height: 100% !important;
}

.vh-100 {
  height: 100vh !important;
}

.min-vh-100 {
  min-height: 100vh !important;
}

.flex-fill {
  -webkit-box-flex: 1 !important;
  -webkit-flex: 1 1 auto !important;
  -ms-flex: 1 1 auto !important;
  flex: 1 1 auto !important;
}

.flex-row {
  -webkit-box-orient: horizontal !important;
  -webkit-flex-direction: row !important;
  -ms-flex-direction: row !important;
  flex-direction: row !important;
}

.flex-column,
.flex-row {
  -webkit-box-direction: normal !important;
}

.flex-column {
  -webkit-box-orient: vertical !important;
  -webkit-flex-direction: column !important;
  -ms-flex-direction: column !important;
  flex-direction: column !important;
}

.flex-row-reverse {
  -webkit-box-orient: horizontal !important;
  -webkit-flex-direction: row-reverse !important;
  -ms-flex-direction: row-reverse !important;
  flex-direction: row-reverse !important;
}

.flex-column-reverse,
.flex-row-reverse {
  -webkit-box-direction: reverse !important;
}

.flex-column-reverse {
  -webkit-box-orient: vertical !important;
  -webkit-flex-direction: column-reverse !important;
  -ms-flex-direction: column-reverse !important;
  flex-direction: column-reverse !important;
}

.flex-grow-0 {
  -webkit-box-flex: 0 !important;
  -ms-flex-positive: 0 !important;
  -webkit-flex-grow: 0 !important;
  flex-grow: 0 !important;
}

.flex-grow-1 {
  -webkit-box-flex: 1 !important;
  -ms-flex-positive: 1 !important;
  -webkit-flex-grow: 1 !important;
  flex-grow: 1 !important;
}

.flex-shrink-0 {
  -ms-flex-negative: 0 !important;
  -webkit-flex-shrink: 0 !important;
  flex-shrink: 0 !important;
}

.flex-shrink-1 {
  -ms-flex-negative: 1 !important;
  -webkit-flex-shrink: 1 !important;
  flex-shrink: 1 !important;
}

.flex-wrap {
  -webkit-flex-wrap: wrap !important;
  -ms-flex-wrap: wrap !important;
  flex-wrap: wrap !important;
}

.flex-nowrap {
  -webkit-flex-wrap: nowrap !important;
  -ms-flex-wrap: nowrap !important;
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  -webkit-flex-wrap: wrap-reverse !important;
  -ms-flex-wrap: wrap-reverse !important;
  flex-wrap: wrap-reverse !important;
}

.justify-content-start {
  -webkit-box-pack: start !important;
  -ms-flex-pack: start !important;
  -webkit-justify-content: flex-start !important;
  justify-content: flex-start !important;
}

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

.justify-content-center {
  -webkit-box-pack: center !important;
  -ms-flex-pack: center !important;
  -webkit-justify-content: center !important;
  justify-content: center !important;
}

.justify-content-between {
  -webkit-box-pack: justify !important;
  -ms-flex-pack: justify !important;
  -webkit-justify-content: space-between !important;
  justify-content: space-between !important;
}

.justify-content-around {
  -ms-flex-pack: distribute !important;
  -webkit-justify-content: space-around !important;
  justify-content: space-around !important;
}

.justify-content-evenly {
  -webkit-box-pack: space-evenly !important;
  -ms-flex-pack: space-evenly !important;
  -webkit-justify-content: space-evenly !important;
  justify-content: space-evenly !important;
}

.align-items-start {
  -webkit-box-align: start !important;
  -ms-flex-align: start !important;
  -webkit-align-items: flex-start !important;
  align-items: flex-start !important;
}

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

.align-items-center {
  -webkit-box-align: center !important;
  -ms-flex-align: center !important;
  -webkit-align-items: center !important;
  align-items: center !important;
}

.align-items-baseline {
  -webkit-box-align: baseline !important;
  -ms-flex-align: baseline !important;
  -webkit-align-items: baseline !important;
  align-items: baseline !important;
}

.align-items-stretch {
  -webkit-box-align: stretch !important;
  -ms-flex-align: stretch !important;
  -webkit-align-items: stretch !important;
  align-items: stretch !important;
}

.align-content-start {
  -ms-flex-line-pack: start !important;
  -webkit-align-content: flex-start !important;
  align-content: flex-start !important;
}

.align-content-end {
  -ms-flex-line-pack: end !important;
  -webkit-align-content: flex-end !important;
  align-content: flex-end !important;
}

.align-content-center {
  -ms-flex-line-pack: center !important;
  -webkit-align-content: center !important;
  align-content: center !important;
}

.align-content-between {
  -ms-flex-line-pack: justify !important;
  -webkit-align-content: space-between !important;
  align-content: space-between !important;
}

.align-content-around {
  -ms-flex-line-pack: distribute !important;
  -webkit-align-content: space-around !important;
  align-content: space-around !important;
}

.align-content-stretch {
  -ms-flex-line-pack: stretch !important;
  -webkit-align-content: stretch !important;
  align-content: stretch !important;
}

.align-self-auto {
  -ms-flex-item-align: auto !important;
  -webkit-align-self: auto !important;
  align-self: auto !important;
}

.align-self-start {
  -ms-flex-item-align: start !important;
  -webkit-align-self: flex-start !important;
  align-self: flex-start !important;
}

.align-self-end {
  -ms-flex-item-align: end !important;
  -webkit-align-self: flex-end !important;
  align-self: flex-end !important;
}

.align-self-center {
  -ms-flex-item-align: center !important;
  -webkit-align-self: center !important;
  align-self: center !important;
}

.align-self-baseline {
  -ms-flex-item-align: baseline !important;
  -webkit-align-self: baseline !important;
  align-self: baseline !important;
}

.align-self-stretch {
  -ms-flex-item-align: stretch !important;
  -webkit-align-self: stretch !important;
  align-self: stretch !important;
}

.order-first {
  -webkit-box-ordinal-group: 0 !important;
  -ms-flex-order: -1 !important;
  -webkit-order: -1 !important;
  order: -1 !important;
}

.order-0 {
  -webkit-box-ordinal-group: 1 !important;
  -ms-flex-order: 0 !important;
  -webkit-order: 0 !important;
  order: 0 !important;
}

.order-1 {
  -webkit-box-ordinal-group: 2 !important;
  -ms-flex-order: 1 !important;
  -webkit-order: 1 !important;
  order: 1 !important;
}

.order-2 {
  -webkit-box-ordinal-group: 3 !important;
  -ms-flex-order: 2 !important;
  -webkit-order: 2 !important;
  order: 2 !important;
}

.order-3 {
  -webkit-box-ordinal-group: 4 !important;
  -ms-flex-order: 3 !important;
  -webkit-order: 3 !important;
  order: 3 !important;
}

.order-4 {
  -webkit-box-ordinal-group: 5 !important;
  -ms-flex-order: 4 !important;
  -webkit-order: 4 !important;
  order: 4 !important;
}

.order-5 {
  -webkit-box-ordinal-group: 6 !important;
  -ms-flex-order: 5 !important;
  -webkit-order: 5 !important;
  order: 5 !important;
}

.order-6 {
  -webkit-box-ordinal-group: 7 !important;
  -ms-flex-order: 6 !important;
  -webkit-order: 6 !important;
  order: 6 !important;
}

.order-7 {
  -webkit-box-ordinal-group: 8 !important;
  -ms-flex-order: 7 !important;
  -webkit-order: 7 !important;
  order: 7 !important;
}

.order-8 {
  -webkit-box-ordinal-group: 9 !important;
  -ms-flex-order: 8 !important;
  -webkit-order: 8 !important;
  order: 8 !important;
}

.order-9 {
  -webkit-box-ordinal-group: 10 !important;
  -ms-flex-order: 9 !important;
  -webkit-order: 9 !important;
  order: 9 !important;
}

.order-10 {
  -webkit-box-ordinal-group: 11 !important;
  -ms-flex-order: 10 !important;
  -webkit-order: 10 !important;
  order: 10 !important;
}

.order-11 {
  -webkit-box-ordinal-group: 12 !important;
  -ms-flex-order: 11 !important;
  -webkit-order: 11 !important;
  order: 11 !important;
}

.order-last {
  -webkit-box-ordinal-group: 13 !important;
  -ms-flex-order: 12 !important;
  -webkit-order: 12 !important;
  order: 12 !important;
}

.m-0 {
  margin: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.m-6 {
  margin: 5rem !important;
}

.m-7 {
  margin: 7rem !important;
}

.m-8 {
  margin: 8rem !important;
}

.m-9 {
  margin: 9rem !important;
}

.m-10 {
  margin: 10rem !important;
}

.m-11 {
  margin: 11rem !important;
}

.m-12 {
  margin: 12rem !important;
}

.m-13 {
  margin: 13rem !important;
}

.m-14 {
  margin: 14rem !important;
}

.m-15 {
  margin: 15rem !important;
}

.m-16 {
  margin: 16rem !important;
}

.m-17 {
  margin: 17rem !important;
}

.m-18 {
  margin: 18rem !important;
}

.m-19 {
  margin: 19rem !important;
}

.m-20 {
  margin: 20rem !important;
}

.m-21 {
  margin: 21rem !important;
}

.m-auto {
  margin: auto !important;
}

.mx-0 {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.mx-1 {
  margin-left: 0.25rem !important;
  margin-right: 0.25rem !important;
}

.mx-2 {
  margin-left: 0.5rem !important;
  margin-right: 0.5rem !important;
}

.mx-3 {
  margin-left: 1rem !important;
  margin-right: 1rem !important;
}

.mx-4 {
  margin-left: 1.5rem !important;
  margin-right: 1.5rem !important;
}

.mx-5 {
  margin-left: 3rem !important;
  margin-right: 3rem !important;
}

.mx-6 {
  margin-left: 5rem !important;
  margin-right: 5rem !important;
}

.mx-7 {
  margin-left: 7rem !important;
  margin-right: 7rem !important;
}

.mx-8 {
  margin-left: 8rem !important;
  margin-right: 8rem !important;
}

.mx-9 {
  margin-left: 9rem !important;
  margin-right: 9rem !important;
}

.mx-10 {
  margin-left: 10rem !important;
  margin-right: 10rem !important;
}

.mx-11 {
  margin-left: 11rem !important;
  margin-right: 11rem !important;
}

.mx-12 {
  margin-left: 12rem !important;
  margin-right: 12rem !important;
}

.mx-13 {
  margin-left: 13rem !important;
  margin-right: 13rem !important;
}

.mx-14 {
  margin-left: 14rem !important;
  margin-right: 14rem !important;
}

.mx-15 {
  margin-left: 15rem !important;
  margin-right: 15rem !important;
}

.mx-16 {
  margin-left: 16rem !important;
  margin-right: 16rem !important;
}

.mx-17 {
  margin-left: 17rem !important;
  margin-right: 17rem !important;
}

.mx-18 {
  margin-left: 18rem !important;
  margin-right: 18rem !important;
}

.mx-19 {
  margin-left: 19rem !important;
  margin-right: 19rem !important;
}

.mx-20 {
  margin-left: 20rem !important;
  margin-right: 20rem !important;
}

.mx-21 {
  margin-left: 21rem !important;
  margin-right: 21rem !important;
}

.mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

.my-0 {
  margin-bottom: 0 !important;
  margin-top: 0 !important;
}

.my-1 {
  margin-bottom: 0.25rem !important;
  margin-top: 0.25rem !important;
}

.my-2 {
  margin-bottom: 0.5rem !important;
  margin-top: 0.5rem !important;
}

.my-3 {
  margin-bottom: 1rem !important;
  margin-top: 1rem !important;
}

.my-4 {
  margin-bottom: 1.5rem !important;
  margin-top: 1.5rem !important;
}

.my-5 {
  margin-bottom: 3rem !important;
  margin-top: 3rem !important;
}

.my-6 {
  margin-bottom: 5rem !important;
  margin-top: 5rem !important;
}

.my-7 {
  margin-bottom: 7rem !important;
  margin-top: 7rem !important;
}

.my-8 {
  margin-bottom: 8rem !important;
  margin-top: 8rem !important;
}

.my-9 {
  margin-bottom: 9rem !important;
  margin-top: 9rem !important;
}

.my-10 {
  margin-bottom: 10rem !important;
  margin-top: 10rem !important;
}

.my-11 {
  margin-bottom: 11rem !important;
  margin-top: 11rem !important;
}

.my-12 {
  margin-bottom: 12rem !important;
  margin-top: 12rem !important;
}

.my-13 {
  margin-bottom: 13rem !important;
  margin-top: 13rem !important;
}

.my-14 {
  margin-bottom: 14rem !important;
  margin-top: 14rem !important;
}

.my-15 {
  margin-bottom: 15rem !important;
  margin-top: 15rem !important;
}

.my-16 {
  margin-bottom: 16rem !important;
  margin-top: 16rem !important;
}

.my-17 {
  margin-bottom: 17rem !important;
  margin-top: 17rem !important;
}

.my-18 {
  margin-bottom: 18rem !important;
  margin-top: 18rem !important;
}

.my-19 {
  margin-bottom: 19rem !important;
  margin-top: 19rem !important;
}

.my-20 {
  margin-bottom: 20rem !important;
  margin-top: 20rem !important;
}

.my-21 {
  margin-bottom: 21rem !important;
  margin-top: 21rem !important;
}

.my-auto {
  margin-bottom: auto !important;
  margin-top: auto !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-1 {
  margin-top: 0.25rem !important;
}

.mt-2 {
  margin-top: 0.5rem !important;
}

.mt-3 {
  margin-top: 1rem !important;
}

.mt-4 {
  margin-top: 1.5rem !important;
}

.mt-5 {
  margin-top: 3rem !important;
}

.mt-6 {
  margin-top: 5rem !important;
}

.mt-7 {
  margin-top: 7rem !important;
}

.mt-8 {
  margin-top: 8rem !important;
}

.mt-9 {
  margin-top: 9rem !important;
}

.mt-10 {
  margin-top: 10rem !important;
}

.mt-11 {
  margin-top: 11rem !important;
}

.mt-12 {
  margin-top: 12rem !important;
}

.mt-13 {
  margin-top: 13rem !important;
}

.mt-14 {
  margin-top: 14rem !important;
}

.mt-15 {
  margin-top: 15rem !important;
}

.mt-16 {
  margin-top: 16rem !important;
}

.mt-17 {
  margin-top: 17rem !important;
}

.mt-18 {
  margin-top: 18rem !important;
}

.mt-19 {
  margin-top: 19rem !important;
}

.mt-20 {
  margin-top: 20rem !important;
}

.mt-21 {
  margin-top: 21rem !important;
}

.mt-auto {
  margin-top: auto !important;
}

.me-0 {
  margin-right: 0 !important;
}

.me-1 {
  margin-right: 0.25rem !important;
}

.me-2 {
  margin-right: 0.5rem !important;
}

.me-3 {
  margin-right: 1rem !important;
}

.me-4 {
  margin-right: 1.5rem !important;
}

.me-5 {
  margin-right: 3rem !important;
}

.me-6 {
  margin-right: 5rem !important;
}

.me-7 {
  margin-right: 7rem !important;
}

.me-8 {
  margin-right: 8rem !important;
}

.me-9 {
  margin-right: 9rem !important;
}

.me-10 {
  margin-right: 10rem !important;
}

.me-11 {
  margin-right: 11rem !important;
}

.me-12 {
  margin-right: 12rem !important;
}

.me-13 {
  margin-right: 13rem !important;
}

.me-14 {
  margin-right: 14rem !important;
}

.me-15 {
  margin-right: 15rem !important;
}

.me-16 {
  margin-right: 16rem !important;
}

.me-17 {
  margin-right: 17rem !important;
}

.me-18 {
  margin-right: 18rem !important;
}

.me-19 {
  margin-right: 19rem !important;
}

.me-20 {
  margin-right: 20rem !important;
}

.me-21 {
  margin-right: 21rem !important;
}

.me-auto {
  margin-right: auto !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-1 {
  margin-bottom: 0.25rem !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

.mb-6 {
  margin-bottom: 5rem !important;
}

.mb-7 {
  margin-bottom: 7rem !important;
}

.mb-8 {
  margin-bottom: 8rem !important;
}

.mb-9 {
  margin-bottom: 9rem !important;
}

.mb-10 {
  margin-bottom: 10rem !important;
}

.mb-11 {
  margin-bottom: 11rem !important;
}

.mb-12 {
  margin-bottom: 12rem !important;
}

.mb-13 {
  margin-bottom: 13rem !important;
}

.mb-14 {
  margin-bottom: 14rem !important;
}

.mb-15 {
  margin-bottom: 15rem !important;
}

.mb-16 {
  margin-bottom: 16rem !important;
}

.mb-17 {
  margin-bottom: 17rem !important;
}

.mb-18 {
  margin-bottom: 18rem !important;
}

.mb-19 {
  margin-bottom: 19rem !important;
}

.mb-20 {
  margin-bottom: 20rem !important;
}

.mb-21 {
  margin-bottom: 21rem !important;
}

.mb-auto {
  margin-bottom: auto !important;
}

.ms-0 {
  margin-left: 0 !important;
}

.ms-1 {
  margin-left: 0.25rem !important;
}

.ms-2 {
  margin-left: 0.5rem !important;
}

.ms-3 {
  margin-left: 1rem !important;
}

.ms-4 {
  margin-left: 1.5rem !important;
}

.ms-5 {
  margin-left: 3rem !important;
}

.ms-6 {
  margin-left: 5rem !important;
}

.ms-7 {
  margin-left: 7rem !important;
}

.ms-8 {
  margin-left: 8rem !important;
}

.ms-9 {
  margin-left: 9rem !important;
}

.ms-10 {
  margin-left: 10rem !important;
}

.ms-11 {
  margin-left: 11rem !important;
}

.ms-12 {
  margin-left: 12rem !important;
}

.ms-13 {
  margin-left: 13rem !important;
}

.ms-14 {
  margin-left: 14rem !important;
}

.ms-15 {
  margin-left: 15rem !important;
}

.ms-16 {
  margin-left: 16rem !important;
}

.ms-17 {
  margin-left: 17rem !important;
}

.ms-18 {
  margin-left: 18rem !important;
}

.ms-19 {
  margin-left: 19rem !important;
}

.ms-20 {
  margin-left: 20rem !important;
}

.ms-21 {
  margin-left: 21rem !important;
}

.ms-auto {
  margin-left: auto !important;
}

.m-n1 {
  margin: -0.25rem !important;
}

.m-n2 {
  margin: -0.5rem !important;
}

.m-n3 {
  margin: -1rem !important;
}

.m-n4 {
  margin: -1.5rem !important;
}

.m-n5 {
  margin: -3rem !important;
}

.m-n6 {
  margin: -5rem !important;
}

.m-n7 {
  margin: -7rem !important;
}

.m-n8 {
  margin: -8rem !important;
}

.m-n9 {
  margin: -9rem !important;
}

.m-n10 {
  margin: -10rem !important;
}

.m-n11 {
  margin: -11rem !important;
}

.m-n12 {
  margin: -12rem !important;
}

.m-n13 {
  margin: -13rem !important;
}

.m-n14 {
  margin: -14rem !important;
}

.m-n15 {
  margin: -15rem !important;
}

.m-n16 {
  margin: -16rem !important;
}

.m-n17 {
  margin: -17rem !important;
}

.m-n18 {
  margin: -18rem !important;
}

.m-n19 {
  margin: -19rem !important;
}

.m-n20 {
  margin: -20rem !important;
}

.m-n21 {
  margin: -21rem !important;
}

.mx-n1 {
  margin-left: -0.25rem !important;
  margin-right: -0.25rem !important;
}

.mx-n2 {
  margin-left: -0.5rem !important;
  margin-right: -0.5rem !important;
}

.mx-n3 {
  margin-left: -1rem !important;
  margin-right: -1rem !important;
}

.mx-n4 {
  margin-left: -1.5rem !important;
  margin-right: -1.5rem !important;
}

.mx-n5 {
  margin-left: -3rem !important;
  margin-right: -3rem !important;
}

.mx-n6 {
  margin-left: -5rem !important;
  margin-right: -5rem !important;
}

.mx-n7 {
  margin-left: -7rem !important;
  margin-right: -7rem !important;
}

.mx-n8 {
  margin-left: -8rem !important;
  margin-right: -8rem !important;
}

.mx-n9 {
  margin-left: -9rem !important;
  margin-right: -9rem !important;
}

.mx-n10 {
  margin-left: -10rem !important;
  margin-right: -10rem !important;
}

.mx-n11 {
  margin-left: -11rem !important;
  margin-right: -11rem !important;
}

.mx-n12 {
  margin-left: -12rem !important;
  margin-right: -12rem !important;
}

.mx-n13 {
  margin-left: -13rem !important;
  margin-right: -13rem !important;
}

.mx-n14 {
  margin-left: -14rem !important;
  margin-right: -14rem !important;
}

.mx-n15 {
  margin-left: -15rem !important;
  margin-right: -15rem !important;
}

.mx-n16 {
  margin-left: -16rem !important;
  margin-right: -16rem !important;
}

.mx-n17 {
  margin-left: -17rem !important;
  margin-right: -17rem !important;
}

.mx-n18 {
  margin-left: -18rem !important;
  margin-right: -18rem !important;
}

.mx-n19 {
  margin-left: -19rem !important;
  margin-right: -19rem !important;
}

.mx-n20 {
  margin-left: -20rem !important;
  margin-right: -20rem !important;
}

.mx-n21 {
  margin-left: -21rem !important;
  margin-right: -21rem !important;
}

.my-n1 {
  margin-bottom: -0.25rem !important;
  margin-top: -0.25rem !important;
}

.my-n2 {
  margin-bottom: -0.5rem !important;
  margin-top: -0.5rem !important;
}

.my-n3 {
  margin-bottom: -1rem !important;
  margin-top: -1rem !important;
}

.my-n4 {
  margin-bottom: -1.5rem !important;
  margin-top: -1.5rem !important;
}

.my-n5 {
  margin-bottom: -3rem !important;
  margin-top: -3rem !important;
}

.my-n6 {
  margin-bottom: -5rem !important;
  margin-top: -5rem !important;
}

.my-n7 {
  margin-bottom: -7rem !important;
  margin-top: -7rem !important;
}

.my-n8 {
  margin-bottom: -8rem !important;
  margin-top: -8rem !important;
}

.my-n9 {
  margin-bottom: -9rem !important;
  margin-top: -9rem !important;
}

.my-n10 {
  margin-bottom: -10rem !important;
  margin-top: -10rem !important;
}

.my-n11 {
  margin-bottom: -11rem !important;
  margin-top: -11rem !important;
}

.my-n12 {
  margin-bottom: -12rem !important;
  margin-top: -12rem !important;
}

.my-n13 {
  margin-bottom: -13rem !important;
  margin-top: -13rem !important;
}

.my-n14 {
  margin-bottom: -14rem !important;
  margin-top: -14rem !important;
}

.my-n15 {
  margin-bottom: -15rem !important;
  margin-top: -15rem !important;
}

.my-n16 {
  margin-bottom: -16rem !important;
  margin-top: -16rem !important;
}

.my-n17 {
  margin-bottom: -17rem !important;
  margin-top: -17rem !important;
}

.my-n18 {
  margin-bottom: -18rem !important;
  margin-top: -18rem !important;
}

.my-n19 {
  margin-bottom: -19rem !important;
  margin-top: -19rem !important;
}

.my-n20 {
  margin-bottom: -20rem !important;
  margin-top: -20rem !important;
}

.my-n21 {
  margin-bottom: -21rem !important;
  margin-top: -21rem !important;
}

.mt-n1 {
  margin-top: -0.25rem !important;
}

.mt-n2 {
  margin-top: -0.5rem !important;
}

.mt-n3 {
  margin-top: -1rem !important;
}

.mt-n4 {
  margin-top: -1.5rem !important;
}

.mt-n5 {
  margin-top: -3rem !important;
}

.mt-n6 {
  margin-top: -5rem !important;
}

.mt-n7 {
  margin-top: -7rem !important;
}

.mt-n8 {
  margin-top: -8rem !important;
}

.mt-n9 {
  margin-top: -9rem !important;
}

.mt-n10 {
  margin-top: -10rem !important;
}

.mt-n11 {
  margin-top: -11rem !important;
}

.mt-n12 {
  margin-top: -12rem !important;
}

.mt-n13 {
  margin-top: -13rem !important;
}

.mt-n14 {
  margin-top: -14rem !important;
}

.mt-n15 {
  margin-top: -15rem !important;
}

.mt-n16 {
  margin-top: -16rem !important;
}

.mt-n17 {
  margin-top: -17rem !important;
}

.mt-n18 {
  margin-top: -18rem !important;
}

.mt-n19 {
  margin-top: -19rem !important;
}

.mt-n20 {
  margin-top: -20rem !important;
}

.mt-n21 {
  margin-top: -21rem !important;
}

.me-n1 {
  margin-right: -0.25rem !important;
}

.me-n2 {
  margin-right: -0.5rem !important;
}

.me-n3 {
  margin-right: -1rem !important;
}

.me-n4 {
  margin-right: -1.5rem !important;
}

.me-n5 {
  margin-right: -3rem !important;
}

.me-n6 {
  margin-right: -5rem !important;
}

.me-n7 {
  margin-right: -7rem !important;
}

.me-n8 {
  margin-right: -8rem !important;
}

.me-n9 {
  margin-right: -9rem !important;
}

.me-n10 {
  margin-right: -10rem !important;
}

.me-n11 {
  margin-right: -11rem !important;
}

.me-n12 {
  margin-right: -12rem !important;
}

.me-n13 {
  margin-right: -13rem !important;
}

.me-n14 {
  margin-right: -14rem !important;
}

.me-n15 {
  margin-right: -15rem !important;
}

.me-n16 {
  margin-right: -16rem !important;
}

.me-n17 {
  margin-right: -17rem !important;
}

.me-n18 {
  margin-right: -18rem !important;
}

.me-n19 {
  margin-right: -19rem !important;
}

.me-n20 {
  margin-right: -20rem !important;
}

.me-n21 {
  margin-right: -21rem !important;
}

.mb-n1 {
  margin-bottom: -0.25rem !important;
}

.mb-n2 {
  margin-bottom: -0.5rem !important;
}

.mb-n3 {
  margin-bottom: -1rem !important;
}

.mb-n4 {
  margin-bottom: -1.5rem !important;
}

.mb-n5 {
  margin-bottom: -3rem !important;
}

.mb-n6 {
  margin-bottom: -5rem !important;
}

.mb-n7 {
  margin-bottom: -7rem !important;
}

.mb-n8 {
  margin-bottom: -8rem !important;
}

.mb-n9 {
  margin-bottom: -9rem !important;
}

.mb-n10 {
  margin-bottom: -10rem !important;
}

.mb-n11 {
  margin-bottom: -11rem !important;
}

.mb-n12 {
  margin-bottom: -12rem !important;
}

.mb-n13 {
  margin-bottom: -13rem !important;
}

.mb-n14 {
  margin-bottom: -14rem !important;
}

.mb-n15 {
  margin-bottom: -15rem !important;
}

.mb-n16 {
  margin-bottom: -16rem !important;
}

.mb-n17 {
  margin-bottom: -17rem !important;
}

.mb-n18 {
  margin-bottom: -18rem !important;
}

.mb-n19 {
  margin-bottom: -19rem !important;
}

.mb-n20 {
  margin-bottom: -20rem !important;
}

.mb-n21 {
  margin-bottom: -21rem !important;
}

.ms-n1 {
  margin-left: -0.25rem !important;
}

.ms-n2 {
  margin-left: -0.5rem !important;
}

.ms-n3 {
  margin-left: -1rem !important;
}

.ms-n4 {
  margin-left: -1.5rem !important;
}

.ms-n5 {
  margin-left: -3rem !important;
}

.ms-n6 {
  margin-left: -5rem !important;
}

.ms-n7 {
  margin-left: -7rem !important;
}

.ms-n8 {
  margin-left: -8rem !important;
}

.ms-n9 {
  margin-left: -9rem !important;
}

.ms-n10 {
  margin-left: -10rem !important;
}

.ms-n11 {
  margin-left: -11rem !important;
}

.ms-n12 {
  margin-left: -12rem !important;
}

.ms-n13 {
  margin-left: -13rem !important;
}

.ms-n14 {
  margin-left: -14rem !important;
}

.ms-n15 {
  margin-left: -15rem !important;
}

.ms-n16 {
  margin-left: -16rem !important;
}

.ms-n17 {
  margin-left: -17rem !important;
}

.ms-n18 {
  margin-left: -18rem !important;
}

.ms-n19 {
  margin-left: -19rem !important;
}

.ms-n20 {
  margin-left: -20rem !important;
}

.ms-n21 {
  margin-left: -21rem !important;
}

.p-0 {
  padding: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.p-6 {
  padding: 5rem !important;
}

.p-7 {
  padding: 7rem !important;
}

.p-8 {
  padding: 8rem !important;
}

.p-9 {
  padding: 9rem !important;
}

.p-10 {
  padding: 10rem !important;
}

.p-11 {
  padding: 11rem !important;
}

.p-12 {
  padding: 12rem !important;
}

.p-13 {
  padding: 13rem !important;
}

.p-14 {
  padding: 14rem !important;
}

.p-15 {
  padding: 15rem !important;
}

.p-16 {
  padding: 16rem !important;
}

.p-17 {
  padding: 17rem !important;
}

.p-18 {
  padding: 18rem !important;
}

.p-19 {
  padding: 19rem !important;
}

.p-20 {
  padding: 20rem !important;
}

.p-21 {
  padding: 21rem !important;
}

.px-0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.px-1 {
  padding-left: 0.25rem !important;
  padding-right: 0.25rem !important;
}

.px-2 {
  padding-left: 0.5rem !important;
  padding-right: 0.5rem !important;
}

.px-3 {
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}

.px-4 {
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
}

.px-5 {
  padding-left: 3rem !important;
  padding-right: 3rem !important;
}

.px-6 {
  padding-left: 5rem !important;
  padding-right: 5rem !important;
}

.px-7 {
  padding-left: 7rem !important;
  padding-right: 7rem !important;
}

.px-8 {
  padding-left: 8rem !important;
  padding-right: 8rem !important;
}

.px-9 {
  padding-left: 9rem !important;
  padding-right: 9rem !important;
}

.px-10 {
  padding-left: 10rem !important;
  padding-right: 10rem !important;
}

.px-11 {
  padding-left: 11rem !important;
  padding-right: 11rem !important;
}

.px-12 {
  padding-left: 12rem !important;
  padding-right: 12rem !important;
}

.px-13 {
  padding-left: 13rem !important;
  padding-right: 13rem !important;
}

.px-14 {
  padding-left: 14rem !important;
  padding-right: 14rem !important;
}

.px-15 {
  padding-left: 15rem !important;
  padding-right: 15rem !important;
}

.px-16 {
  padding-left: 16rem !important;
  padding-right: 16rem !important;
}

.px-17 {
  padding-left: 17rem !important;
  padding-right: 17rem !important;
}

.px-18 {
  padding-left: 18rem !important;
  padding-right: 18rem !important;
}

.px-19 {
  padding-left: 19rem !important;
  padding-right: 19rem !important;
}

.px-20 {
  padding-left: 20rem !important;
  padding-right: 20rem !important;
}

.px-21 {
  padding-left: 21rem !important;
  padding-right: 21rem !important;
}

.py-0 {
  padding-bottom: 0 !important;
  padding-top: 0 !important;
}

.py-1 {
  padding-bottom: 0.25rem !important;
  padding-top: 0.25rem !important;
}

.py-2 {
  padding-bottom: 0.5rem !important;
  padding-top: 0.5rem !important;
}

.py-3 {
  padding-bottom: 1rem !important;
  padding-top: 1rem !important;
}

.py-4 {
  padding-bottom: 1.5rem !important;
  padding-top: 1.5rem !important;
}

.py-5 {
  padding-bottom: 3rem !important;
  padding-top: 3rem !important;
}

.py-6 {
  padding-bottom: 5rem !important;
  padding-top: 5rem !important;
}

.py-7 {
  padding-bottom: 7rem !important;
  padding-top: 7rem !important;
}

.py-8 {
  padding-bottom: 8rem !important;
  padding-top: 8rem !important;
}

.py-9 {
  padding-bottom: 9rem !important;
  padding-top: 9rem !important;
}

.py-10 {
  padding-bottom: 10rem !important;
  padding-top: 10rem !important;
}

.py-11 {
  padding-bottom: 11rem !important;
  padding-top: 11rem !important;
}

.py-12 {
  padding-bottom: 12rem !important;
  padding-top: 12rem !important;
}

.py-13 {
  padding-bottom: 13rem !important;
  padding-top: 13rem !important;
}

.py-14 {
  padding-bottom: 14rem !important;
  padding-top: 14rem !important;
}

.py-15 {
  padding-bottom: 15rem !important;
  padding-top: 15rem !important;
}

.py-16 {
  padding-bottom: 16rem !important;
  padding-top: 16rem !important;
}

.py-17 {
  padding-bottom: 17rem !important;
  padding-top: 17rem !important;
}

.py-18 {
  padding-bottom: 18rem !important;
  padding-top: 18rem !important;
}

.py-19 {
  padding-bottom: 19rem !important;
  padding-top: 19rem !important;
}

.py-20 {
  padding-bottom: 20rem !important;
  padding-top: 20rem !important;
}

.py-21 {
  padding-bottom: 21rem !important;
  padding-top: 21rem !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pt-1 {
  padding-top: 0.25rem !important;
}

.pt-2 {
  padding-top: 0.5rem !important;
}

.pt-3 {
  padding-top: 1rem !important;
}

.pt-4 {
  padding-top: 1.5rem !important;
}

.pt-5 {
  padding-top: 3rem !important;
}

.pt-6 {
  padding-top: 5rem !important;
}

.pt-7 {
  padding-top: 7rem !important;
}

.pt-8 {
  padding-top: 8rem !important;
}

.pt-9 {
  padding-top: 9rem !important;
}

.pt-10 {
  padding-top: 10rem !important;
}

.pt-11 {
  padding-top: 11rem !important;
}

.pt-12 {
  padding-top: 12rem !important;
}

.pt-13 {
  padding-top: 13rem !important;
}

.pt-14 {
  padding-top: 14rem !important;
}

.pt-15 {
  padding-top: 15rem !important;
}

.pt-16 {
  padding-top: 16rem !important;
}

.pt-17 {
  padding-top: 17rem !important;
}

.pt-18 {
  padding-top: 18rem !important;
}

.pt-19 {
  padding-top: 19rem !important;
}

.pt-20 {
  padding-top: 20rem !important;
}

.pt-21 {
  padding-top: 21rem !important;
}

.pe-0 {
  padding-right: 0 !important;
}

.pe-1 {
  padding-right: 0.25rem !important;
}

.pe-2 {
  padding-right: 0.5rem !important;
}

.pe-3 {
  padding-right: 1rem !important;
}

.pe-4 {
  padding-right: 1.5rem !important;
}

.pe-5 {
  padding-right: 3rem !important;
}

.pe-6 {
  padding-right: 5rem !important;
}

.pe-7 {
  padding-right: 7rem !important;
}

.pe-8 {
  padding-right: 8rem !important;
}

.pe-9 {
  padding-right: 9rem !important;
}

.pe-10 {
  padding-right: 10rem !important;
}

.pe-11 {
  padding-right: 11rem !important;
}

.pe-12 {
  padding-right: 12rem !important;
}

.pe-13 {
  padding-right: 13rem !important;
}

.pe-14 {
  padding-right: 14rem !important;
}

.pe-15 {
  padding-right: 15rem !important;
}

.pe-16 {
  padding-right: 16rem !important;
}

.pe-17 {
  padding-right: 17rem !important;
}

.pe-18 {
  padding-right: 18rem !important;
}

.pe-19 {
  padding-right: 19rem !important;
}

.pe-20 {
  padding-right: 20rem !important;
}

.pe-21 {
  padding-right: 21rem !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pb-1 {
  padding-bottom: 0.25rem !important;
}

.pb-2 {
  padding-bottom: 0.5rem !important;
}

.pb-3 {
  padding-bottom: 1rem !important;
}

.pb-4 {
  padding-bottom: 1.5rem !important;
}

.pb-5 {
  padding-bottom: 3rem !important;
}

.pb-6 {
  padding-bottom: 5rem !important;
}

.pb-7 {
  padding-bottom: 7rem !important;
}

.pb-8 {
  padding-bottom: 8rem !important;
}

.pb-9 {
  padding-bottom: 9rem !important;
}

.pb-10 {
  padding-bottom: 10rem !important;
}

.pb-11 {
  padding-bottom: 11rem !important;
}

.pb-12 {
  padding-bottom: 12rem !important;
}

.pb-13 {
  padding-bottom: 13rem !important;
}

.pb-14 {
  padding-bottom: 14rem !important;
}

.pb-15 {
  padding-bottom: 15rem !important;
}

.pb-16 {
  padding-bottom: 16rem !important;
}

.pb-17 {
  padding-bottom: 17rem !important;
}

.pb-18 {
  padding-bottom: 18rem !important;
}

.pb-19 {
  padding-bottom: 19rem !important;
}

.pb-20 {
  padding-bottom: 20rem !important;
}

.pb-21 {
  padding-bottom: 21rem !important;
}

.ps-0 {
  padding-left: 0 !important;
}

.ps-1 {
  padding-left: 0.25rem !important;
}

.ps-2 {
  padding-left: 0.5rem !important;
}

.ps-3 {
  padding-left: 1rem !important;
}

.ps-4 {
  padding-left: 1.5rem !important;
}

.ps-5 {
  padding-left: 3rem !important;
}

.ps-6 {
  padding-left: 5rem !important;
}

.ps-7 {
  padding-left: 7rem !important;
}

.ps-8 {
  padding-left: 8rem !important;
}

.ps-9 {
  padding-left: 9rem !important;
}

.ps-10 {
  padding-left: 10rem !important;
}

.ps-11 {
  padding-left: 11rem !important;
}

.ps-12 {
  padding-left: 12rem !important;
}

.ps-13 {
  padding-left: 13rem !important;
}

.ps-14 {
  padding-left: 14rem !important;
}

.ps-15 {
  padding-left: 15rem !important;
}

.ps-16 {
  padding-left: 16rem !important;
}

.ps-17 {
  padding-left: 17rem !important;
}

.ps-18 {
  padding-left: 18rem !important;
}

.ps-19 {
  padding-left: 19rem !important;
}

.ps-20 {
  padding-left: 20rem !important;
}

.ps-21 {
  padding-left: 21rem !important;
}

.gap-0 {
  gap: 0 !important;
}

.gap-1 {
  gap: 0.25rem !important;
}

.gap-2 {
  gap: 0.5rem !important;
}

.gap-3 {
  gap: 1rem !important;
}

.gap-4 {
  gap: 1.5rem !important;
}

.gap-5 {
  gap: 3rem !important;
}

.gap-6 {
  gap: 5rem !important;
}

.gap-7 {
  gap: 7rem !important;
}

.gap-8 {
  gap: 8rem !important;
}

.gap-9 {
  gap: 9rem !important;
}

.gap-10 {
  gap: 10rem !important;
}

.gap-11 {
  gap: 11rem !important;
}

.gap-12 {
  gap: 12rem !important;
}

.gap-13 {
  gap: 13rem !important;
}

.gap-14 {
  gap: 14rem !important;
}

.gap-15 {
  gap: 15rem !important;
}

.gap-16 {
  gap: 16rem !important;
}

.gap-17 {
  gap: 17rem !important;
}

.gap-18 {
  gap: 18rem !important;
}

.gap-19 {
  gap: 19rem !important;
}

.gap-20 {
  gap: 20rem !important;
}

.gap-21 {
  gap: 21rem !important;
}

.row-gap-0 {
  row-gap: 0 !important;
}

.row-gap-1 {
  row-gap: 0.25rem !important;
}

.row-gap-2 {
  row-gap: 0.5rem !important;
}

.row-gap-3 {
  row-gap: 1rem !important;
}

.row-gap-4 {
  row-gap: 1.5rem !important;
}

.row-gap-5 {
  row-gap: 3rem !important;
}

.row-gap-6 {
  row-gap: 5rem !important;
}

.row-gap-7 {
  row-gap: 7rem !important;
}

.row-gap-8 {
  row-gap: 8rem !important;
}

.row-gap-9 {
  row-gap: 9rem !important;
}

.row-gap-10 {
  row-gap: 10rem !important;
}

.row-gap-11 {
  row-gap: 11rem !important;
}

.row-gap-12 {
  row-gap: 12rem !important;
}

.row-gap-13 {
  row-gap: 13rem !important;
}

.row-gap-14 {
  row-gap: 14rem !important;
}

.row-gap-15 {
  row-gap: 15rem !important;
}

.row-gap-16 {
  row-gap: 16rem !important;
}

.row-gap-17 {
  row-gap: 17rem !important;
}

.row-gap-18 {
  row-gap: 18rem !important;
}

.row-gap-19 {
  row-gap: 19rem !important;
}

.row-gap-20 {
  row-gap: 20rem !important;
}

.row-gap-21 {
  row-gap: 21rem !important;
}

.column-gap-0 {
  -webkit-column-gap: 0 !important;
  -moz-column-gap: 0 !important;
  column-gap: 0 !important;
}

.column-gap-1 {
  -webkit-column-gap: 0.25rem !important;
  -moz-column-gap: 0.25rem !important;
  column-gap: 0.25rem !important;
}

.column-gap-2 {
  -webkit-column-gap: 0.5rem !important;
  -moz-column-gap: 0.5rem !important;
  column-gap: 0.5rem !important;
}

.column-gap-3 {
  -webkit-column-gap: 1rem !important;
  -moz-column-gap: 1rem !important;
  column-gap: 1rem !important;
}

.column-gap-4 {
  -webkit-column-gap: 1.5rem !important;
  -moz-column-gap: 1.5rem !important;
  column-gap: 1.5rem !important;
}

.column-gap-5 {
  -webkit-column-gap: 3rem !important;
  -moz-column-gap: 3rem !important;
  column-gap: 3rem !important;
}

.column-gap-6 {
  -webkit-column-gap: 5rem !important;
  -moz-column-gap: 5rem !important;
  column-gap: 5rem !important;
}

.column-gap-7 {
  -webkit-column-gap: 7rem !important;
  -moz-column-gap: 7rem !important;
  column-gap: 7rem !important;
}

.column-gap-8 {
  -webkit-column-gap: 8rem !important;
  -moz-column-gap: 8rem !important;
  column-gap: 8rem !important;
}

.column-gap-9 {
  -webkit-column-gap: 9rem !important;
  -moz-column-gap: 9rem !important;
  column-gap: 9rem !important;
}

.column-gap-10 {
  -webkit-column-gap: 10rem !important;
  -moz-column-gap: 10rem !important;
  column-gap: 10rem !important;
}

.column-gap-11 {
  -webkit-column-gap: 11rem !important;
  -moz-column-gap: 11rem !important;
  column-gap: 11rem !important;
}

.column-gap-12 {
  -webkit-column-gap: 12rem !important;
  -moz-column-gap: 12rem !important;
  column-gap: 12rem !important;
}

.column-gap-13 {
  -webkit-column-gap: 13rem !important;
  -moz-column-gap: 13rem !important;
  column-gap: 13rem !important;
}

.column-gap-14 {
  -webkit-column-gap: 14rem !important;
  -moz-column-gap: 14rem !important;
  column-gap: 14rem !important;
}

.column-gap-15 {
  -webkit-column-gap: 15rem !important;
  -moz-column-gap: 15rem !important;
  column-gap: 15rem !important;
}

.column-gap-16 {
  -webkit-column-gap: 16rem !important;
  -moz-column-gap: 16rem !important;
  column-gap: 16rem !important;
}

.column-gap-17 {
  -webkit-column-gap: 17rem !important;
  -moz-column-gap: 17rem !important;
  column-gap: 17rem !important;
}

.column-gap-18 {
  -webkit-column-gap: 18rem !important;
  -moz-column-gap: 18rem !important;
  column-gap: 18rem !important;
}

.column-gap-19 {
  -webkit-column-gap: 19rem !important;
  -moz-column-gap: 19rem !important;
  column-gap: 19rem !important;
}

.column-gap-20 {
  -webkit-column-gap: 20rem !important;
  -moz-column-gap: 20rem !important;
  column-gap: 20rem !important;
}

.column-gap-21 {
  -webkit-column-gap: 21rem !important;
  -moz-column-gap: 21rem !important;
  column-gap: 21rem !important;
}

.font-monospace {
  font-family: var(--bs-font-monospace) !important;
}

.fs-1 {
  font-size: -webkit-calc(1.375rem + 1.5vw) !important;
  font-size: calc(1.375rem + 1.5vw) !important;
}

.fs-2 {
  font-size: -webkit-calc(1.325rem + 0.9vw) !important;
  font-size: calc(1.325rem + 0.9vw) !important;
}

.fs-3 {
  font-size: -webkit-calc(1.3rem + 0.6vw) !important;
  font-size: calc(1.3rem + 0.6vw) !important;
}

.fs-4 {
  font-size: -webkit-calc(1.275rem + 0.3vw) !important;
  font-size: calc(1.275rem + 0.3vw) !important;
}

.fs-5 {
  font-size: 1.25rem !important;
}

.fs-6 {
  font-size: 1rem !important;
}

.fst-italic {
  font-style: italic !important;
}

.fst-normal {
  font-style: normal !important;
}

.fw-lighter {
  font-weight: lighter !important;
}

.fw-light {
  font-weight: 300 !important;
}

.fw-normal {
  font-weight: 400 !important;
}

.fw-medium {
  font-weight: 500 !important;
}

.fw-semibold {
  font-weight: 600 !important;
}

.fw-bold {
  font-weight: 700 !important;
}

.fw-bolder {
  font-weight: bolder !important;
}

.lh-1 {
  line-height: 1 !important;
}

.lh-sm {
  line-height: 1.25 !important;
}

.lh-base {
  line-height: 1.5 !important;
}

.lh-lg {
  line-height: 2 !important;
}

.text-start {
  text-align: left !important;
}

.text-end {
  text-align: right !important;
}

.text-center {
  text-align: center !important;
}

.text-decoration-none {
  text-decoration: none !important;
}

.text-decoration-underline {
  text-decoration: underline !important;
}

.text-decoration-line-through {
  text-decoration: line-through !important;
}

.text-lowercase {
  text-transform: lowercase !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.text-capitalize {
  text-transform: capitalize !important;
}

.text-wrap {
  white-space: normal !important;
}

.text-nowrap {
  white-space: nowrap !important;
}

.text-break {
  word-wrap: break-word !important;
  word-break: break-word !important;
}

.text-primary {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important;
}

.text-secondary {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-secondary-rgb), var(--bs-text-opacity)) !important;
}

.text-success {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-success-rgb), var(--bs-text-opacity)) !important;
}

.text-info {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-info-rgb), var(--bs-text-opacity)) !important;
}

.text-warning {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-warning-rgb), var(--bs-text-opacity)) !important;
}

.text-danger {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-danger-rgb), var(--bs-text-opacity)) !important;
}

.text-light {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-light-rgb), var(--bs-text-opacity)) !important;
}

.text-dark {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important;
}

.text-black {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-black-rgb), var(--bs-text-opacity)) !important;
}

.text-white {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important;
}

.text-body {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-body-color-rgb), var(--bs-text-opacity)) !important;
}

.text-muted {
  --bs-text-opacity: 1;
  color: var(--bs-secondary-color) !important;
}

.text-black-50 {
  --bs-text-opacity: 1;
  color: rgba(0, 0, 0, 0.5) !important;
}

.text-white-50 {
  --bs-text-opacity: 1;
  color: hsla(0, 0%, 100%, 0.5) !important;
}

.text-body-secondary {
  --bs-text-opacity: 1;
  color: var(--bs-secondary-color) !important;
}

.text-body-tertiary {
  --bs-text-opacity: 1;
  color: var(--bs-tertiary-color) !important;
}

.text-body-emphasis {
  --bs-text-opacity: 1;
  color: var(--bs-emphasis-color) !important;
}

.text-reset {
  --bs-text-opacity: 1;
  color: inherit !important;
}

.text-opacity-25 {
  --bs-text-opacity: 0.25;
}

.text-opacity-50 {
  --bs-text-opacity: 0.5;
}

.text-opacity-75 {
  --bs-text-opacity: 0.75;
}

.text-opacity-100 {
  --bs-text-opacity: 1;
}

.text-primary-emphasis {
  color: var(--bs-primary-text-emphasis) !important;
}

.text-secondary-emphasis {
  color: var(--bs-secondary-text-emphasis) !important;
}

.text-success-emphasis {
  color: var(--bs-success-text-emphasis) !important;
}

.text-info-emphasis {
  color: var(--bs-info-text-emphasis) !important;
}

.text-warning-emphasis {
  color: var(--bs-warning-text-emphasis) !important;
}

.text-danger-emphasis {
  color: var(--bs-danger-text-emphasis) !important;
}

.text-light-emphasis {
  color: var(--bs-light-text-emphasis) !important;
}

.text-dark-emphasis {
  color: var(--bs-dark-text-emphasis) !important;
}

.link-opacity-10 {
  --bs-link-opacity: 0.1;
}

.link-opacity-10-hover:hover {
  --bs-link-opacity: 0.1;
}

.link-opacity-25 {
  --bs-link-opacity: 0.25;
}

.link-opacity-25-hover:hover {
  --bs-link-opacity: 0.25;
}

.link-opacity-50 {
  --bs-link-opacity: 0.5;
}

.link-opacity-50-hover:hover {
  --bs-link-opacity: 0.5;
}

.link-opacity-75 {
  --bs-link-opacity: 0.75;
}

.link-opacity-75-hover:hover {
  --bs-link-opacity: 0.75;
}

.link-opacity-100 {
  --bs-link-opacity: 1;
}

.link-opacity-100-hover:hover {
  --bs-link-opacity: 1;
}

.link-offset-1 {
  text-underline-offset: 0.125em !important;
}

.link-offset-1-hover:hover {
  text-underline-offset: 0.125em !important;
}

.link-offset-2 {
  text-underline-offset: 0.25em !important;
}

.link-offset-2-hover:hover {
  text-underline-offset: 0.25em !important;
}

.link-offset-3 {
  text-underline-offset: 0.375em !important;
}

.link-offset-3-hover:hover {
  text-underline-offset: 0.375em !important;
}

.link-underline-primary {
  --bs-link-underline-opacity: 1;
  -webkit-text-decoration-color: rgba(
    var(--bs-primary-rgb),
    var(--bs-link-underline-opacity)
  ) !important;
  text-decoration-color: rgba(
    var(--bs-primary-rgb),
    var(--bs-link-underline-opacity)
  ) !important;
}

.link-underline-secondary {
  --bs-link-underline-opacity: 1;
  -webkit-text-decoration-color: rgba(
    var(--bs-secondary-rgb),
    var(--bs-link-underline-opacity)
  ) !important;
  text-decoration-color: rgba(
    var(--bs-secondary-rgb),
    var(--bs-link-underline-opacity)
  ) !important;
}

.link-underline-success {
  --bs-link-underline-opacity: 1;
  -webkit-text-decoration-color: rgba(
    var(--bs-success-rgb),
    var(--bs-link-underline-opacity)
  ) !important;
  text-decoration-color: rgba(
    var(--bs-success-rgb),
    var(--bs-link-underline-opacity)
  ) !important;
}

.link-underline-info {
  --bs-link-underline-opacity: 1;
  -webkit-text-decoration-color: rgba(
    var(--bs-info-rgb),
    var(--bs-link-underline-opacity)
  ) !important;
  text-decoration-color: rgba(
    var(--bs-info-rgb),
    var(--bs-link-underline-opacity)
  ) !important;
}

.link-underline-warning {
  --bs-link-underline-opacity: 1;
  -webkit-text-decoration-color: rgba(
    var(--bs-warning-rgb),
    var(--bs-link-underline-opacity)
  ) !important;
  text-decoration-color: rgba(
    var(--bs-warning-rgb),
    var(--bs-link-underline-opacity)
  ) !important;
}

.link-underline-danger {
  --bs-link-underline-opacity: 1;
  -webkit-text-decoration-color: rgba(
    var(--bs-danger-rgb),
    var(--bs-link-underline-opacity)
  ) !important;
  text-decoration-color: rgba(
    var(--bs-danger-rgb),
    var(--bs-link-underline-opacity)
  ) !important;
}

.link-underline-light {
  --bs-link-underline-opacity: 1;
  -webkit-text-decoration-color: rgba(
    var(--bs-light-rgb),
    var(--bs-link-underline-opacity)
  ) !important;
  text-decoration-color: rgba(
    var(--bs-light-rgb),
    var(--bs-link-underline-opacity)
  ) !important;
}

.link-underline-dark {
  --bs-link-underline-opacity: 1;
  -webkit-text-decoration-color: rgba(
    var(--bs-dark-rgb),
    var(--bs-link-underline-opacity)
  ) !important;
  text-decoration-color: rgba(
    var(--bs-dark-rgb),
    var(--bs-link-underline-opacity)
  ) !important;
}

.link-underline {
  --bs-link-underline-opacity: 1;
  -webkit-text-decoration-color: rgba(
    var(--bs-link-color-rgb),
    var(--bs-link-underline-opacity, 1)
  ) !important;
  text-decoration-color: rgba(
    var(--bs-link-color-rgb),
    var(--bs-link-underline-opacity, 1)
  ) !important;
}

.link-underline-opacity-0 {
  --bs-link-underline-opacity: 0;
}

.link-underline-opacity-0-hover:hover {
  --bs-link-underline-opacity: 0;
}

.link-underline-opacity-10 {
  --bs-link-underline-opacity: 0.1;
}

.link-underline-opacity-10-hover:hover {
  --bs-link-underline-opacity: 0.1;
}

.link-underline-opacity-25 {
  --bs-link-underline-opacity: 0.25;
}

.link-underline-opacity-25-hover:hover {
  --bs-link-underline-opacity: 0.25;
}

.link-underline-opacity-50 {
  --bs-link-underline-opacity: 0.5;
}

.link-underline-opacity-50-hover:hover {
  --bs-link-underline-opacity: 0.5;
}

.link-underline-opacity-75 {
  --bs-link-underline-opacity: 0.75;
}

.link-underline-opacity-75-hover:hover {
  --bs-link-underline-opacity: 0.75;
}

.link-underline-opacity-100 {
  --bs-link-underline-opacity: 1;
}

.link-underline-opacity-100-hover:hover {
  --bs-link-underline-opacity: 1;
}

.bg-primary {
  --bs-bg-opacity: 1;
  background-color: rgba(
    var(--bs-primary-rgb),
    var(--bs-bg-opacity)
  ) !important;
}

.bg-secondary {
  --bs-bg-opacity: 1;
  background-color: rgba(
    var(--bs-secondary-rgb),
    var(--bs-bg-opacity)
  ) !important;
}

.bg-success {
  --bs-bg-opacity: 1;
  background-color: rgba(
    var(--bs-success-rgb),
    var(--bs-bg-opacity)
  ) !important;
}

.bg-info {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-info-rgb), var(--bs-bg-opacity)) !important;
}

.bg-warning {
  --bs-bg-opacity: 1;
  background-color: rgba(
    var(--bs-warning-rgb),
    var(--bs-bg-opacity)
  ) !important;
}

.bg-danger {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-danger-rgb), var(--bs-bg-opacity)) !important;
}

.bg-light {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-light-rgb), var(--bs-bg-opacity)) !important;
}

.bg-dark {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important;
}

.bg-black {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-black-rgb), var(--bs-bg-opacity)) !important;
}

.bg-white {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-white-rgb), var(--bs-bg-opacity)) !important;
}

.bg-body {
  --bs-bg-opacity: 1;
  background-color: rgba(
    var(--bs-body-bg-rgb),
    var(--bs-bg-opacity)
  ) !important;
}

.bg-transparent {
  --bs-bg-opacity: 1;
  background-color: rgba(0, 0, 0, 0) !important;
}

.bg-body-secondary {
  --bs-bg-opacity: 1;
  background-color: rgba(
    var(--bs-secondary-bg-rgb),
    var(--bs-bg-opacity)
  ) !important;
}

.bg-body-tertiary {
  --bs-bg-opacity: 1;
  background-color: rgba(
    var(--bs-tertiary-bg-rgb),
    var(--bs-bg-opacity)
  ) !important;
}

.bg-opacity-10 {
  --bs-bg-opacity: 0.1;
}

.bg-opacity-25 {
  --bs-bg-opacity: 0.25;
}

.bg-opacity-50 {
  --bs-bg-opacity: 0.5;
}

.bg-opacity-75 {
  --bs-bg-opacity: 0.75;
}

.bg-opacity-100 {
  --bs-bg-opacity: 1;
}

.bg-primary-subtle {
  background-color: var(--bs-primary-bg-subtle) !important;
}

.bg-secondary-subtle {
  background-color: var(--bs-secondary-bg-subtle) !important;
}

.bg-success-subtle {
  background-color: var(--bs-success-bg-subtle) !important;
}

.bg-info-subtle {
  background-color: var(--bs-info-bg-subtle) !important;
}

.bg-warning-subtle {
  background-color: var(--bs-warning-bg-subtle) !important;
}

.bg-danger-subtle {
  background-color: var(--bs-danger-bg-subtle) !important;
}

.bg-light-subtle {
  background-color: var(--bs-light-bg-subtle) !important;
}

.bg-dark-subtle {
  background-color: var(--bs-dark-bg-subtle) !important;
}

.bg-gradient {
  background-image: var(--bs-gradient) !important;
}

.user-select-all {
  -webkit-user-select: all !important;
  -moz-user-select: all !important;
  user-select: all !important;
}

.user-select-auto {
  -webkit-user-select: auto !important;
  -moz-user-select: auto !important;
  -ms-user-select: auto !important;
  user-select: auto !important;
}

.user-select-none {
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  -ms-user-select: none !important;
  user-select: none !important;
}

.pe-none {
  pointer-events: none !important;
}

.pe-auto {
  pointer-events: auto !important;
}

.rounded {
  -webkit-border-radius: var(--bs-border-radius) !important;
  border-radius: var(--bs-border-radius) !important;
}

.rounded-0 {
  -webkit-border-radius: 0 !important;
  border-radius: 0 !important;
}

.rounded-1 {
  -webkit-border-radius: var(--bs-border-radius-sm) !important;
  border-radius: var(--bs-border-radius-sm) !important;
}

.rounded-2 {
  -webkit-border-radius: var(--bs-border-radius) !important;
  border-radius: var(--bs-border-radius) !important;
}

.rounded-3 {
  -webkit-border-radius: var(--bs-border-radius-lg) !important;
  border-radius: var(--bs-border-radius-lg) !important;
}

.rounded-4 {
  -webkit-border-radius: var(--bs-border-radius-xl) !important;
  border-radius: var(--bs-border-radius-xl) !important;
}

.rounded-5 {
  -webkit-border-radius: var(--bs-border-radius-xxl) !important;
  border-radius: var(--bs-border-radius-xxl) !important;
}

.rounded-circle {
  -webkit-border-radius: 50% !important;
  border-radius: 50% !important;
}

.rounded-pill {
  -webkit-border-radius: var(--bs-border-radius-pill) !important;
  border-radius: var(--bs-border-radius-pill) !important;
}

.rounded-top {
  -webkit-border-top-left-radius: var(--bs-border-radius) !important;
  border-top-left-radius: var(--bs-border-radius) !important;
  -webkit-border-top-right-radius: var(--bs-border-radius) !important;
  border-top-right-radius: var(--bs-border-radius) !important;
}

.rounded-top-0 {
  -webkit-border-top-left-radius: 0 !important;
  border-top-left-radius: 0 !important;
  -webkit-border-top-right-radius: 0 !important;
  border-top-right-radius: 0 !important;
}

.rounded-top-1 {
  -webkit-border-top-left-radius: var(--bs-border-radius-sm) !important;
  border-top-left-radius: var(--bs-border-radius-sm) !important;
  -webkit-border-top-right-radius: var(--bs-border-radius-sm) !important;
  border-top-right-radius: var(--bs-border-radius-sm) !important;
}

.rounded-top-2 {
  -webkit-border-top-left-radius: var(--bs-border-radius) !important;
  border-top-left-radius: var(--bs-border-radius) !important;
  -webkit-border-top-right-radius: var(--bs-border-radius) !important;
  border-top-right-radius: var(--bs-border-radius) !important;
}

.rounded-top-3 {
  -webkit-border-top-left-radius: var(--bs-border-radius-lg) !important;
  border-top-left-radius: var(--bs-border-radius-lg) !important;
  -webkit-border-top-right-radius: var(--bs-border-radius-lg) !important;
  border-top-right-radius: var(--bs-border-radius-lg) !important;
}

.rounded-top-4 {
  -webkit-border-top-left-radius: var(--bs-border-radius-xl) !important;
  border-top-left-radius: var(--bs-border-radius-xl) !important;
  -webkit-border-top-right-radius: var(--bs-border-radius-xl) !important;
  border-top-right-radius: var(--bs-border-radius-xl) !important;
}

.rounded-top-5 {
  -webkit-border-top-left-radius: var(--bs-border-radius-xxl) !important;
  border-top-left-radius: var(--bs-border-radius-xxl) !important;
  -webkit-border-top-right-radius: var(--bs-border-radius-xxl) !important;
  border-top-right-radius: var(--bs-border-radius-xxl) !important;
}

.rounded-top-circle {
  -webkit-border-top-left-radius: 50% !important;
  border-top-left-radius: 50% !important;
  -webkit-border-top-right-radius: 50% !important;
  border-top-right-radius: 50% !important;
}

.rounded-top-pill {
  -webkit-border-top-left-radius: var(--bs-border-radius-pill) !important;
  border-top-left-radius: var(--bs-border-radius-pill) !important;
  -webkit-border-top-right-radius: var(--bs-border-radius-pill) !important;
  border-top-right-radius: var(--bs-border-radius-pill) !important;
}

.rounded-end {
  -webkit-border-bottom-right-radius: var(--bs-border-radius) !important;
  border-bottom-right-radius: var(--bs-border-radius) !important;
  -webkit-border-top-right-radius: var(--bs-border-radius) !important;
  border-top-right-radius: var(--bs-border-radius) !important;
}

.rounded-end-0 {
  -webkit-border-bottom-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
  -webkit-border-top-right-radius: 0 !important;
  border-top-right-radius: 0 !important;
}

.rounded-end-1 {
  -webkit-border-bottom-right-radius: var(--bs-border-radius-sm) !important;
  border-bottom-right-radius: var(--bs-border-radius-sm) !important;
  -webkit-border-top-right-radius: var(--bs-border-radius-sm) !important;
  border-top-right-radius: var(--bs-border-radius-sm) !important;
}

.rounded-end-2 {
  -webkit-border-bottom-right-radius: var(--bs-border-radius) !important;
  border-bottom-right-radius: var(--bs-border-radius) !important;
  -webkit-border-top-right-radius: var(--bs-border-radius) !important;
  border-top-right-radius: var(--bs-border-radius) !important;
}

.rounded-end-3 {
  -webkit-border-bottom-right-radius: var(--bs-border-radius-lg) !important;
  border-bottom-right-radius: var(--bs-border-radius-lg) !important;
  -webkit-border-top-right-radius: var(--bs-border-radius-lg) !important;
  border-top-right-radius: var(--bs-border-radius-lg) !important;
}

.rounded-end-4 {
  -webkit-border-bottom-right-radius: var(--bs-border-radius-xl) !important;
  border-bottom-right-radius: var(--bs-border-radius-xl) !important;
  -webkit-border-top-right-radius: var(--bs-border-radius-xl) !important;
  border-top-right-radius: var(--bs-border-radius-xl) !important;
}

.rounded-end-5 {
  -webkit-border-bottom-right-radius: var(--bs-border-radius-xxl) !important;
  border-bottom-right-radius: var(--bs-border-radius-xxl) !important;
  -webkit-border-top-right-radius: var(--bs-border-radius-xxl) !important;
  border-top-right-radius: var(--bs-border-radius-xxl) !important;
}

.rounded-end-circle {
  -webkit-border-bottom-right-radius: 50% !important;
  border-bottom-right-radius: 50% !important;
  -webkit-border-top-right-radius: 50% !important;
  border-top-right-radius: 50% !important;
}

.rounded-end-pill {
  -webkit-border-bottom-right-radius: var(--bs-border-radius-pill) !important;
  border-bottom-right-radius: var(--bs-border-radius-pill) !important;
  -webkit-border-top-right-radius: var(--bs-border-radius-pill) !important;
  border-top-right-radius: var(--bs-border-radius-pill) !important;
}

.rounded-bottom {
  -webkit-border-bottom-left-radius: var(--bs-border-radius) !important;
  border-bottom-left-radius: var(--bs-border-radius) !important;
  -webkit-border-bottom-right-radius: var(--bs-border-radius) !important;
  border-bottom-right-radius: var(--bs-border-radius) !important;
}

.rounded-bottom-0 {
  -webkit-border-bottom-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
  -webkit-border-bottom-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

.rounded-bottom-1 {
  -webkit-border-bottom-left-radius: var(--bs-border-radius-sm) !important;
  border-bottom-left-radius: var(--bs-border-radius-sm) !important;
  -webkit-border-bottom-right-radius: var(--bs-border-radius-sm) !important;
  border-bottom-right-radius: var(--bs-border-radius-sm) !important;
}

.rounded-bottom-2 {
  -webkit-border-bottom-left-radius: var(--bs-border-radius) !important;
  border-bottom-left-radius: var(--bs-border-radius) !important;
  -webkit-border-bottom-right-radius: var(--bs-border-radius) !important;
  border-bottom-right-radius: var(--bs-border-radius) !important;
}

.rounded-bottom-3 {
  -webkit-border-bottom-left-radius: var(--bs-border-radius-lg) !important;
  border-bottom-left-radius: var(--bs-border-radius-lg) !important;
  -webkit-border-bottom-right-radius: var(--bs-border-radius-lg) !important;
  border-bottom-right-radius: var(--bs-border-radius-lg) !important;
}

.rounded-bottom-4 {
  -webkit-border-bottom-left-radius: var(--bs-border-radius-xl) !important;
  border-bottom-left-radius: var(--bs-border-radius-xl) !important;
  -webkit-border-bottom-right-radius: var(--bs-border-radius-xl) !important;
  border-bottom-right-radius: var(--bs-border-radius-xl) !important;
}

.rounded-bottom-5 {
  -webkit-border-bottom-left-radius: var(--bs-border-radius-xxl) !important;
  border-bottom-left-radius: var(--bs-border-radius-xxl) !important;
  -webkit-border-bottom-right-radius: var(--bs-border-radius-xxl) !important;
  border-bottom-right-radius: var(--bs-border-radius-xxl) !important;
}

.rounded-bottom-circle {
  -webkit-border-bottom-left-radius: 50% !important;
  border-bottom-left-radius: 50% !important;
  -webkit-border-bottom-right-radius: 50% !important;
  border-bottom-right-radius: 50% !important;
}

.rounded-bottom-pill {
  -webkit-border-bottom-left-radius: var(--bs-border-radius-pill) !important;
  border-bottom-left-radius: var(--bs-border-radius-pill) !important;
  -webkit-border-bottom-right-radius: var(--bs-border-radius-pill) !important;
  border-bottom-right-radius: var(--bs-border-radius-pill) !important;
}

.rounded-start {
  -webkit-border-bottom-left-radius: var(--bs-border-radius) !important;
  border-bottom-left-radius: var(--bs-border-radius) !important;
  -webkit-border-top-left-radius: var(--bs-border-radius) !important;
  border-top-left-radius: var(--bs-border-radius) !important;
}

.rounded-start-0 {
  -webkit-border-bottom-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
  -webkit-border-top-left-radius: 0 !important;
  border-top-left-radius: 0 !important;
}

.rounded-start-1 {
  -webkit-border-bottom-left-radius: var(--bs-border-radius-sm) !important;
  border-bottom-left-radius: var(--bs-border-radius-sm) !important;
  -webkit-border-top-left-radius: var(--bs-border-radius-sm) !important;
  border-top-left-radius: var(--bs-border-radius-sm) !important;
}

.rounded-start-2 {
  -webkit-border-bottom-left-radius: var(--bs-border-radius) !important;
  border-bottom-left-radius: var(--bs-border-radius) !important;
  -webkit-border-top-left-radius: var(--bs-border-radius) !important;
  border-top-left-radius: var(--bs-border-radius) !important;
}

.rounded-start-3 {
  -webkit-border-bottom-left-radius: var(--bs-border-radius-lg) !important;
  border-bottom-left-radius: var(--bs-border-radius-lg) !important;
  -webkit-border-top-left-radius: var(--bs-border-radius-lg) !important;
  border-top-left-radius: var(--bs-border-radius-lg) !important;
}

.rounded-start-4 {
  -webkit-border-bottom-left-radius: var(--bs-border-radius-xl) !important;
  border-bottom-left-radius: var(--bs-border-radius-xl) !important;
  -webkit-border-top-left-radius: var(--bs-border-radius-xl) !important;
  border-top-left-radius: var(--bs-border-radius-xl) !important;
}

.rounded-start-5 {
  -webkit-border-bottom-left-radius: var(--bs-border-radius-xxl) !important;
  border-bottom-left-radius: var(--bs-border-radius-xxl) !important;
  -webkit-border-top-left-radius: var(--bs-border-radius-xxl) !important;
  border-top-left-radius: var(--bs-border-radius-xxl) !important;
}

.rounded-start-circle {
  -webkit-border-bottom-left-radius: 50% !important;
  border-bottom-left-radius: 50% !important;
  -webkit-border-top-left-radius: 50% !important;
  border-top-left-radius: 50% !important;
}

.rounded-start-pill {
  -webkit-border-bottom-left-radius: var(--bs-border-radius-pill) !important;
  border-bottom-left-radius: var(--bs-border-radius-pill) !important;
  -webkit-border-top-left-radius: var(--bs-border-radius-pill) !important;
  border-top-left-radius: var(--bs-border-radius-pill) !important;
}

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

.z-n1 {
  z-index: -1 !important;
}

.z-0 {
  z-index: 0 !important;
}

.z-1 {
  z-index: 1 !important;
}

.z-2 {
  z-index: 2 !important;
}

.z-3 {
  z-index: 3 !important;
}

.inter-title {
  font-family: Inter, sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings: 'slnt' 0;
  font-weight: 400;
}

.oranienbaum-regular {
  font-family: Oranienbaum, serif;
  font-style: normal;
  font-weight: 400;
}

.btn {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-align-items: center;
  align-items: center;
  border: none;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-family: Inter, sans-serif;
  font-size: 15px;
  font-weight: 500;
  height: 50px;
  -webkit-justify-content: center;
  justify-content: center;
  padding: 12px 30px;
  text-decoration: none !important;
  -webkit-transition: background-color 0.6s ease;
  transition: background-color 0.6s ease;
  white-space: nowrap;
}

.btn span {
  display: block;
}

.btn svg {
  display: none;
}

.btn__form {
  height: 50px;
}

.btn__arrow {
  border: 1px solid #fff;
  -webkit-border-radius: 30px;
  border-radius: 30px;
  color: #fff;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 16px;
  padding-right: 40px;
  position: relative;
  text-transform: none;
  -webkit-transition: 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  transition: 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}

.btn__arrow:after {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTciIHZpZXdCb3g9IjAgMCAxNiAxNyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xMS45Njc4IDkuMzIwNzdIMFY3LjY3OTczSDExLjk2NzhMNi44MDQ0MyAyLjUxNjM0TDcuOTY0OCAxLjM1NTk2TDE1LjEwOSA4LjUwMDI1TDcuOTY0OCAxNS42NDQ2TDYuODA0NDMgMTQuNDg0MkwxMS45Njc4IDkuMzIwNzdaIiBmaWxsPSIjRkVGRUZFIi8+Cjwvc3ZnPgo=);
  background-repeat: no-repeat;
  content: '';
  height: 17px;
  position: absolute;
  right: 16px;
  width: 16px;
}

.btn__arrow:hover {
  background-color: #01549a;
}

.btn__arrow:hover:after {
  -webkit-animation: trsXscale 3.5s linear infinite;
  animation: trsXscale 3.5s linear infinite;
}

.btn__about {
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
  background-color: #f3f3f3;
  border: 1px solid #fff;
  -webkit-border-radius: 30px;
  border-radius: 30px;
  color: #fff;
  color: #3f3f40;
  display: inline-block;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 12px;
  height: 128px;
  max-width: 250px;
  padding-right: 40px;
  position: relative;
  text-transform: none;
  text-transform: uppercase;
  -webkit-transition: 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  transition: 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}

.btn__about:after {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTciIHZpZXdCb3g9IjAgMCAxNiAxNyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xMS45Njc4IDkuMzIwNzdIMFY3LjY3OTczSDExLjk2NzhMNi44MDQ0MyAyLjUxNjM0TDcuOTY0OCAxLjM1NTk2TDE1LjEwOSA4LjUwMDI1TDcuOTY0OCAxNS42NDQ2TDYuODA0NDMgMTQuNDg0MkwxMS45Njc4IDkuMzIwNzdaIiBmaWxsPSIjMDAwIi8+Cjwvc3ZnPgo=);
  background-repeat: no-repeat;
  content: '';
  height: 17px;
  left: 35px;
  position: absolute;
  top: 20px;
  width: 16px;
}

.btn__about:hover {
  background-color: #c4e4ff;
}

.btn__about:hover:after {
  -webkit-animation: trsXscale 3.5s linear infinite;
  animation: trsXscale 3.5s linear infinite;
}

.btn__black {
  background-color: #363636;
  color: #fff;
}

.btn__black:hover {
  background-color: #6f6f6f;
  border-color: #6f6f6f;
}

.btn__gold {
  background-color: #af997a;
  color: #fff;
}

.btn__gold:hover {
  background-color: #cd9f5f;
}

.btn__grey {
  background-color: #f2f2f2;
  -webkit-transition:
    background-color 0.6s ease,
    color 0.3s ease;
  transition:
    background-color 0.6s ease,
    color 0.3s ease;
}

.btn__grey:hover {
  background-color: #ff2626;
  color: #fff;
}

.btn__blue {
  background-color: #01549a;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  color: #fff;
  -webkit-transition:
    background-color 0.6s ease,
    color 0.3s ease;
  transition:
    background-color 0.6s ease,
    color 0.3s ease;
  width: 70%;
}

.btn__blue:hover {
  background-color: #627483;
  color: #fff;
}

.btn__white {
  background-color: none;
  border: 1px solid #fff;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  color: #fff;
  text-align: center;
  -webkit-transition:
    background-color 0.6s ease,
    color 0.3s ease;
  transition:
    background-color 0.6s ease,
    color 0.3s ease;
  width: 70%;
}

.btn__white:hover {
  background-color: #fff;
  color: #01549a;
}

.btn__order {
  background: none;
  border: 2px solid #01549a;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  color: #01549a;
  -webkit-transition:
    background-color 0.6s ease,
    color 0.3s ease;
  transition:
    background-color 0.6s ease,
    color 0.3s ease;
}

.btn__order:hover {
  background-color: #01549a;
  color: #fff;
}

.btn__filter {
  background: none;
  border: 1px solid #01549a;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  color: #3f3f40;
  margin-bottom: 25px;
  -webkit-transition:
    background-color 0.6s ease,
    color 0.3s ease;
  transition:
    background-color 0.6s ease,
    color 0.3s ease;
  width: 100%;
}

.btn__filter .sub__btn--text {
  position: relative;
}

.btn__filter .sub__btn--text:after {
  background-image: url(/assets/images/filter.svg);
  background-repeat: no-repeat;
  content: '';
  height: 20px;
  left: -30px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 16px;
}

.btn__download {
  background: none;
  border: 1px solid #f8f8f8;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  color: #fff;
  height: 50px;
  -webkit-transition:
    background-color 0.6s ease,
    color 0.3s ease;
  transition:
    background-color 0.6s ease,
    color 0.3s ease;
  width: 100%;
}

.btn__download .sub__btn--text {
  position: relative;
}

.btn__download .sub__btn--text:after {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzAiIGhlaWdodD0iMzAiIHZpZXdCb3g9IjAgMCAzMCAzMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTE1IDIwTDguNzUgMTMuNzVMMTAuNSAxMS45Mzc1TDEzLjc1IDE1LjE4NzVWNUgxNi4yNVYxNS4xODc1TDE5LjUgMTEuOTM3NUwyMS4yNSAxMy43NUwxNSAyMFpNNSAyNVYxOC43NUg3LjVWMjIuNUgyMi41VjE4Ljc1SDI1VjI1SDVaIiBmaWxsPSJ3aGl0ZSIvPgo8L3N2Zz4K);
  background-repeat: no-repeat;
  content: '';
  height: 20px;
  height: 30px;
  left: -40px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 30px;
}

.btn__download:hover {
  background-color: #044376;
  color: #fff;
}

.btn__all {
  background: none;
  border: 1px solid #01549a;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  color: #01549a;
  max-width: unset;
  -webkit-transition:
    background-color 0.6s ease,
    color 0.3s ease;
  transition:
    background-color 0.6s ease,
    color 0.3s ease;
  width: 70%;
  width: 100%;
}

.btn__all,
.btn__all .sub__btn--text {
  position: relative;
}

.btn__all .sub__btn--text:after {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTciIHZpZXdCb3g9IjAgMCAxNiAxNyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xMS45Njc4IDkuMzIwNzdIMFY3LjY3OTczSDExLjk2NzhMNi44MDQ0MyAyLjUxNjM0TDcuOTY0OCAxLjM1NTk2TDE1LjEwOSA4LjUwMDI1TDcuOTY0OCAxNS42NDQ2TDYuODA0NDMgMTQuNDg0MkwxMS45Njc4IDkuMzIwNzdaIiBmaWxsPSIjMDE1NDlhIi8+Cjwvc3ZnPgo=);
  background-repeat: no-repeat;
  content: '';
  height: 17px;
  position: absolute;
  right: -30px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 16px;
}

.btn__all--white-arrow .sub__btn--text:after {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTYiIGhlaWdodD0iMTciIHZpZXdCb3g9IjAgMCAxNiAxNyIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0xMS45Njc4IDkuMzIwNzdIMFY3LjY3OTczSDExLjk2NzhMNi44MDQ0MyAyLjUxNjM0TDcuOTY0OCAxLjM1NTk2TDE1LjEwOSA4LjUwMDI1TDcuOTY0OCAxNS42NDQ2TDYuODA0NDMgMTQuNDg0MkwxMS45Njc4IDkuMzIwNzdaIiBmaWxsPSIjZmZmZmZmIi8+Cjwvc3ZnPgo=) !important;
}

.btn__all--white {
  border: 1px solid #fff;
  color: #fff;
}

.btn__all:hover {
  background-color: #01549a;
  color: #fff;
}

.btn-bg {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-align-items: center;
  align-items: center;
  background: none;
  border: 0;
  color: #292929;
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-size: 16px;
  -webkit-justify-content: center;
  justify-content: center;
  line-height: 75px;
  max-height: 100%;
  overflow: hidden;
  padding: 0;
  position: relative;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  z-index: 2;
}

.btn-bg:before {
  -webkit-animation-duration: 0.6s;
  animation-duration: 0.6s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-transform: translateY(101%);
  -ms-transform: translateY(101%);
  transform: translateY(101%);
  z-index: -1;
}

.btn-bg:after,
.btn-bg:before {
  content: '';
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.btn-bg:after {
  z-index: -2;
}

.btn-bg:before {
  -webkit-animation-name: BtnBlur;
  animation-name: BtnBlur;
}

.btn-bg:hover:before {
  -webkit-animation-name: BtnHover;
  animation-name: BtnHover;
}

.btn-bg:before {
  background: #c4c4c4;
}

.btn-bg:after {
  background: #e5e5e5;
}

@-webkit-keyframes BtnHover {
  0% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }

  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes BtnHover {
  0% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }

  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@-webkit-keyframes BtnBlur {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  to {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
}

@keyframes BtnBlur {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  to {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
}

.subline {
  color: inherit;
  position: relative;
  text-decoration: none;
  -webkit-transition: all 0.6s cubic-bezier(0.65, 0, 0.35, 1) 0s;
  transition: all 0.6s cubic-bezier(0.65, 0, 0.35, 1) 0s;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.subline:before {
  background: currentColor;
  bottom: -8px;
  content: '';
  height: 1px;
  position: absolute;
  right: 0;
  -webkit-transition: all 0.6s cubic-bezier(0.65, 0, 0.35, 1) 0s;
  transition: all 0.6s cubic-bezier(0.65, 0, 0.35, 1) 0s;
  width: 0;
}

.subline:hover:before {
  left: 0;
  -webkit-transition: all 0.6s cubic-bezier(0.65, 0, 0.35, 1) 0s;
  transition: all 0.6s cubic-bezier(0.65, 0, 0.35, 1) 0s;
  width: 100%;
}

.email {
  color: inherit;
  display: inline-block;
  font-size: 20px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  line-height: 140%;
  position: relative;
  text-decoration: none;
  -webkit-transition: all 0.6s cubic-bezier(0.65, 0, 0.35, 1) 0s;
  transition: all 0.6s cubic-bezier(0.65, 0, 0.35, 1) 0s;
}

.email:before {
  background: #173551;
  bottom: 1px;
  content: '';
  height: 1px;
  left: 0;
  position: absolute;
  -webkit-transition: all 0.6s cubic-bezier(0.65, 0, 0.35, 1) 0s;
  transition: all 0.6s cubic-bezier(0.65, 0, 0.35, 1) 0s;
  width: 100%;
}

.email:hover {
  color: #5dbad7;
}

.email:hover:before {
  width: 0;
}

.more-btn {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-border-radius: 27.5px;
  border-radius: 27.5px;
  color: inherit;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 55px;
  min-height: 55px;
  padding: 0 30px 0 24px;
  position: relative;
  text-decoration: none;
  -webkit-transition: all 0.6s cubic-bezier(0.65, 0, 0.35, 1) 0s;
  transition: all 0.6s cubic-bezier(0.65, 0, 0.35, 1) 0s;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  z-index: 3;
}

.more-btn > * {
  pointer-events: none;
}

.more-btn:before {
  background: #5dbad7;
  -webkit-border-radius: 27.5px;
  border-radius: 27.5px;
  content: '';
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  -webkit-transition: all 0.6s cubic-bezier(0.65, 0, 0.35, 1) 0s;
  transition: all 0.6s cubic-bezier(0.65, 0, 0.35, 1) 0s;
  width: 55px;
  z-index: -1;
}

.more-btn:hover {
  margin-right: 20px;
}

.more-btn:hover img,
.more-btn:hover svg {
  margin-right: 21px;
}

.more-btn:hover span {
  color: #fff;
}

.more-btn:hover:before {
  width: 100%;
}

.more-btn img,
.more-btn svg {
  height: 14px;
  margin-right: 41px;
  width: 10px;
}

.more-btn img,
.more-btn span,
.more-btn svg {
  -webkit-transition: all 0.6s cubic-bezier(0.65, 0, 0.35, 1) 0s;
  transition: all 0.6s cubic-bezier(0.65, 0, 0.35, 1) 0s;
}

.more-btn span {
  color: #173551;
  font-size: 16px;
}

.equipmentList-item__title a {
  color: inherit;
  display: block;
  margin-left: 24px;
  margin-top: auto;
  padding-left: 0;
  text-align: left;
  text-decoration: none;
  -webkit-transition: all 0.5s cubic-bezier(0.76, 0, 0.24, 1);
  transition: all 0.5s cubic-bezier(0.76, 0, 0.24, 1);
}

.equipmentList-item__title > * .long-arrow-inner {
  left: -20px;
  top: 7px;
}

.equipmentList-item__title > * .long-arrow-line {
  background-color: #c4c4c4;
  right: 1px;
}

.equipmentList-item__title a:hover {
  color: #3700ff;
}

.equipmentList-item__title a:hover {
  padding-left: 20px;
}

.equipmentList-item__title a:hover .long-arrow-right {
  color: #3700ff;
}

.equipmentList-item__title a:hover .long-arrow-line {
  background-color: #3700ff;
  width: 49px;
}

.long-arrow-inner {
  position: relative;
}

.long-arrow-line {
  background-color: #c4c4c4;
  bottom: 0;
  height: 2px;
  margin: auto;
  position: absolute;
  right: -6px;
  top: -webkit-calc(-50% - 2px);
  top: calc(-50% - 2px);
  -webkit-transition: all 0.5s cubic-bezier(0.76, 0, 0.24, 1);
  transition: all 0.5s cubic-bezier(0.76, 0, 0.24, 1);
  width: 29px;
}

.long-arrow-left,
.long-arrow-right {
  border-style: solid;
  border-width: 2px 2px 0 0;
  color: #c4c4c4;
  display: inline-block;
  height: 24px;
  position: relative;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: color 0.5s cubic-bezier(0.76, 0, 0.24, 1);
  transition: color 0.5s cubic-bezier(0.76, 0, 0.24, 1);
  width: 24px;
}

.long-arrow-left:before,
.long-arrow-right:before {
  -webkit-box-shadow: inset 0 0 0 32px;
  box-shadow: inset 0 0 0 32px;
  height: 2px;
  position: absolute;
  right: 0;
  top: -2px;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transform-origin: right top;
  -ms-transform-origin: right top;
  transform-origin: right top;
  -webkit-transition: all 0.5s cubic-bezier(0.76, 0, 0.24, 1);
  transition: all 0.5s cubic-bezier(0.76, 0, 0.24, 1);
  width: 29px;
}

.long-arrow-left {
  -webkit-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

.long-arrow-left:before {
  -webkit-box-shadow: inset 0 0 0 32px;
  box-shadow: inset 0 0 0 32px;
  content: '';
  height: 2px;
  position: absolute;
  right: 0;
  top: -2px;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transform-origin: right top;
  -ms-transform-origin: right top;
  transform-origin: right top;
  -webkit-transition: all 0.5s cubic-bezier(0.76, 0, 0.24, 1);
  transition: all 0.5s cubic-bezier(0.76, 0, 0.24, 1);
  width: 29px;
}

.button__header {
  background-color: #dd5799;
  color: #fff;
}

.button {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-border-radius: 1rem;
  border-radius: 1rem;
  font-size: 1.125rem;
  font-weight: 500;
  gap: 0.625rem;
  -webkit-justify-content: center;
  justify-content: center;
  padding: 0 1.5rem;
}

.button__header-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  gap: 0.75rem;
}

.button__header-decor {
  -ms-flex-negative: 0;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  position: relative;
  width: 2.5rem;
}

.button__header-decor,
.button__header-svg {
  -webkit-transition: 0.6s cubic-bezier(0.33, 1, 0.68, 1);
  transition: 0.6s cubic-bezier(0.33, 1, 0.68, 1);
}

.button__header-svg {
  height: 1.5rem;
  left: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 1.5rem;
}

.button__header-decor_2 {
  opacity: 0;
  position: absolute;
  top: 52%;
  -webkit-transform: translate(-20%, -50%);
  -ms-transform: translate(-20%, -50%);
  transform: translate(-20%, -50%);
  -webkit-transition: 0.6s cubic-bezier(0.33, 1, 0.68, 1);
  transition: 0.6s cubic-bezier(0.33, 1, 0.68, 1);
}

.button__header.cstm-swipe .cstm-after {
  position: relative;
}

.button__header.cstm-swipe .cstm-after span {
  display: block;
  opacity: 1;
  position: relative;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transition: 0.6s cubic-bezier(0.33, 1, 0.68, 1);
  transition: 0.6s cubic-bezier(0.33, 1, 0.68, 1);
}

.button__header.cstm-swipe .cstm-after:after {
  color: #fff;
  content: attr(data-text);
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  -webkit-transform: translate3d(0, 75%, 0);
  transform: translate3d(0, 75%, 0);
  -webkit-transition: 0.6s cubic-bezier(0.33, 1, 0.68, 1);
  transition: 0.6s cubic-bezier(0.33, 1, 0.68, 1);
  width: 100%;
}

.button__header.cstm-swipe:hover .cstm-after span {
  opacity: 0;
  -webkit-transform: translate3d(0, -75%, 0);
  transform: translate3d(0, -75%, 0);
}

.button__header.cstm-swipe:hover .cstm-after:after {
  opacity: 1;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.button__header {
  -webkit-transition: 0.6s cubic-bezier(0.33, 1, 0.68, 1);
  transition: 0.6s cubic-bezier(0.33, 1, 0.68, 1);
}

.button__header:hover {
  background: #c7397f;
}

.button__header:hover .button__header-svg_one {
  top: 30%;
}

.button__header:hover .button__header-svg_two {
  top: 70%;
}

.cstm-after {
  padding: 0;
}

.button {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  background: rgba(0, 0, 0, 0);
  border: none;
  -webkit-border-radius: 60px;
  border-radius: 60px;
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-size: 0.875rem;
  line-height: 1.2;
  padding: 1rem 1.5rem;
}

.button,
.button-animate {
  position: relative;
  -webkit-transition: 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  transition: 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}

.button-animate {
  overflow: hidden;
  z-index: 2;
}

.button-animate:before {
  background: #01549a;
  content: '';
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  -webkit-transform: translateY(110%);
  -ms-transform: translateY(110%);
  transform: translateY(110%);
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  transition: -webkit-transform 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  transition: transform 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  transition:
    transform 0.5s cubic-bezier(0.33, 1, 0.68, 1),
    -webkit-transform 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  width: 100%;
  z-index: 0;
}

.button-animate .button__icon,
.button-animate .button__text {
  overflow: hidden;
  position: relative;
}

.button__text {
  font-weight: 500;
  position: relative;
  -webkit-transition: 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  transition: 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}

.button:after {
  border: 1px solid var(--color-blue);
}

.button:after {
  border: 1px solid #01549a;
  -webkit-border-radius: 60px;
  border-radius: 60px;
  bottom: 1px;
  content: '';
  left: 1px;
  position: absolute;
  right: 1px;
  top: 1px;
  -webkit-transition: 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  transition: 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}

.button-animate:hover {
  border-color: #01549a;
}

.button-animate:hover:before {
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}

.button-animate:hover .button__text span {
  color: #fff;
}

.button-animate:hover .button__icon svg path {
  fill: #fff;
}

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

body,
html {
  margin: 0;
  padding: 0;
}

hr {
  border: 0;
  border-top: 1px solid #ccc;
  display: block;
  height: 1px;
  margin: 1em 0;
  padding: 0;
}

img {
  -ms-interpolation-mode: bicubic;
  border: 0;
  vertical-align: bottom;
}

img,
video {
  height: auto;
  max-width: 100%;
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

textarea {
  resize: vertical;
}

::-moz-selection {
  background: #4c4f51;
  color: #fff;
  text-shadow: none;
}

::selection {
  background: #4c4f51;
  color: #fff;
  text-shadow: none;
}

.browserupgrade {
  background: red;
  color: #fff;
  padding: 2rem;
  text-align: center;
}

.browserupgrade a {
  color: #fff;
  text-decoration: underline;
}

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

td {
  vertical-align: top;
}

.no-scroll,
.preventScroll {
  overflow: hidden;
}

:root {
  --secondary-fore-color: #444;
  --backgound-color: #f8f8f8;
  --secondary-back-color: #f0f0f0;
  --blockquote-color: #f57c00;
  --pre-color: #1565c0;
  --border-color: #aaa;
  --secondary-border-color: #ddd;
  --heading-ratio: 1.2;
  --universal-margin: 1.4rem;
  --universal-padding: 0.5rem;
  --universal-border-radius: 0.125rem;
  --a-link-color: #fff;
  --a-visited-color: #fff;
}

p {
  font-size: 1rem;
  line-height: 1.8;
  margin: 0;
  padding: var(--universal-margin) 0;
  padding-top: 0;
}

a {
  font-variant-numeric: lining-nums;
}

:focus {
  outline: none;
}

b,
strong {
  font-weight: 700;
}

ol,
ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

pre {
  background: var(--secondary-back-color);
  border: 0.0625rem solid var(--secondary-border-color);
  border-left: 0.25rem solid var(--pre-color);
  -webkit-border-radius: 0 var(--universal-border-radius)
    var(--universal-border-radius) 0;
  border-radius: 0 var(--universal-border-radius) var(--universal-border-radius)
    0;
  margin: calc(var(--universal-margin) * 2) 0;
  overflow: auto;
  padding: calc(var(--universal-padding) * 1.5);
}

.footer {
  background-color: #f3f3f3;
}

.footer__mobile--menu {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  background: #fff;
  bottom: 0 !important;
  height: 56px;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  left: 0;
  padding: 25px 15px 15px;
  position: fixed;
  right: 0;
  width: 100%;
  z-index: 3599;
}

.footer__mobile--menu,
.footer__mobile--menu--button {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.footer__mobile--menu--button {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  font-size: 12px;
  -webkit-justify-content: center;
  justify-content: center;
  color: #3f3f40;
}

.footer__mobile--menu--button img {
  height: 22px;
  padding-bottom: 4px;
}

.footer__mobile--menu--button--count {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-align-items: center;
  align-items: center;
  aspect-ratio: 1/1;
  background-color: #01549a;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-size: 11px;
  -webkit-justify-content: center;
  justify-content: center;
  min-height: 15px;
  min-width: 16px;
  padding: 1px;
  position: absolute;
  right: 3px;
  top: -5px;
  -webkit-transform: perspective(10px);
  transform: perspective(10px);
}

.footer__mobile--menu--button--count--wrapper {
  position: relative;
}

.footer__wrapper {
  padding-bottom: 40px;
  padding-top: 60px;
}

.footer__blocks {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

.footer__header {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 25px;
}

.footer__menu a {
  color: #393939;
  font-size: 14px;
}

.footer__menu li {
  margin-bottom: 5px;
}

.footer__menu--catalog li {
  margin-bottom: 15px;
}

.footer__menu--catalog a {
  color: #3f3f41;
  font-size: 18px;
  font-weight: 600;
}

.footer__phone {
  color: #3f3f41;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 10px;
}

.footer__phone a {
  white-space: nowrap;
}

.footer__email {
  color: #3f3f41;
  font-size: 18px;
  font-weight: 600;
}

.footer__email .email:hover:before {
  color: #01549a;
}

.footer__address {
  color: #9b9b9b;
  font-size: 14px;
}

.footer__label,
.footer__socials {
  color: #7e7e7e;
  font-size: 11px;
  margin-bottom: 2px;
  margin-top: 30px;
}

.footer__socials {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
}

.footer__line {
  background: #e2e2e2;
  height: 2px;
  margin: 40px 0;
  width: 100%;
}

.footer__copyright {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding: 0 40px;
}

.footer__block-one {
  width: 26%;
}

.footer__block-four,
.footer__block-three,
.footer__block-two {
  width: 18%;
}

.footer__block-five {
  width: 20%;
}

.footer__menu--faq {
  display: block;
}

.footer__header--faq {
  cursor: pointer;
}

.footer__header--cross {
  display: none;
}

.email:hover {
  color: #01549a;
}

.subline:before {
  bottom: 0;
}

.footer__header--faq .footer__header--cross svg {
  -webkit-transition: 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  transition: 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}

.footer__header--faq.active .footer__header--cross svg {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.rubric__big {
  font-size: 17px;
  font-weight: 600 !important;
}

.rubric__big,
.rubric__small {
  display: inline-block;
  margin-bottom: 20px;
}

.rubric__small {
  font-size: 15px;
  font-weight: 400 !important;
}

.footer__text {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 15px;
  margin-left: 10px;
}

.footer__text span {
  font-size: 16px;
  font-weight: 500;
}

.footer.fixed {
  height: 100%;
  left: 0;
  margin-top: 36px;
  overflow-y: auto;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1;
}

.hero__swiper {
  padding-bottom: 15px;
}

.hero__swiper .swiper-pagination {
  bottom: 0 !important;
  margin: 0 auto;
  text-align: center;
}

.hero__swiper .swiper-pagination-bullet {
  -webkit-border-radius: 0;
  border-radius: 0;
  height: 2px;
  width: 24px;
}

.header {
  background-color: #fff;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  -webkit-transition: 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  transition: 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  z-index: 999;
}

.header__top--panel {
  height: 40px;
}

.header__buttons-item:hover .header__cart-svg path {
  stroke: #fff;
}

.header__main {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  font-size: 14px;
  height: 90px;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  line-height: 20px;
  margin: 0 auto;
  padding: 8px 0;
}

.header__main,
.header__main--search {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.header__main--search {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  margin: 0 8px 0 24px;
}

.header__main--search,
.header__main--search div {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  -webkit-flex-grow: 1;
  flex-grow: 1;
}

.header__main--search div {
  margin: 0;
}

.header__main--search .form-control {
  background-clip: padding-box;
  background-color: #fff;
  border: 1px solid #bbb;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #212121;
  display: block;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  font-size: 1rem;
  font-weight: 400;
  height: -webkit-calc(1.5em + 0.875rem + 2px);
  height: calc(1.5em + 0.875rem + 2px);
  line-height: 1.5;
  margin: 0;
  padding: 0.4375rem 0.9375rem;
  position: relative;
  -webkit-transition:
    border-color 0.15s ease-in-out,
    -webkit-box-shadow 0.15s ease-in-out;
  transition:
    border-color 0.15s ease-in-out,
    -webkit-box-shadow 0.15s ease-in-out;
  transition:
    border-color 0.15s ease-in-out,
    box-shadow 0.15s ease-in-out;
  transition:
    border-color 0.15s ease-in-out,
    box-shadow 0.15s ease-in-out,
    -webkit-box-shadow 0.15s ease-in-out;
  width: 100%;
}

.header__main--search .form-control:focus {
  background-color: #fff;
  border-color: #01549a !important;
  color: #3f3f40;
  outline: 0;
}

.header__main--search .form-control.has-l-icon {
  padding-left: 0.6875rem;
}

.header__main--search .form-control input {
  background: none;
  border: none;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  padding-left: 10px;
  padding-right: 30px;
  width: 100%;
}

.header__main--search .form-control input::-webkit-input-placeholder {
  color: #989898;
  font-size: 0.9rem;
}

.header__main--search .form-control input::-moz-placeholder {
  color: #989898;
  font-size: 0.9rem;
}

.header__main--search .form-control input:-ms-input-placeholder {
  color: #989898;
  font-size: 0.9rem;
}

.header__main--search .form-control input::-ms-input-placeholder {
  color: #989898;
  font-size: 0.9rem;
}

.header__main--search .form-control input::placeholder {
  color: #989898;
  font-size: 0.9rem;
}

.header__main--search .mr-4 {
  top: 6px;
}

.header__main--logo {
  margin-right: 40px;
  width: 300px;
}

.header__main--producers {
  color: #01549a;
  font-weight: 600;
  padding-left: 20px;
}

.header__main--button,
.header__main--producers {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-align-items: center;
  align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-size: 13px;
  -webkit-justify-content: center;
  justify-content: center;
}

.header__main--button {
  background-color: #015499;
  border: none;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  color: #fff;
  cursor: pointer;
  gap: 8px;
  height: 48px;
  line-height: 1.1em;
  padding: 13px 20px 13px 48px;
  position: relative;
  text-transform: none;
  white-space: nowrap;
}

.header__main--button-line {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-align-items: center;
  align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 12px;
  -webkit-justify-content: center;
  justify-content: center;
  left: 15px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 18px;
}

.header__main--button-line span {
  background-color: #fff;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  display: block;
  height: 2px;
  -webkit-transition: height 0.2s linear;
  transition: height 0.2s linear;
  width: 100%;
}

.header__main--button-line span:before {
  top: 0;
  -webkit-transition-property:
    top,
    -webkit-transform;
  transition-property:
    top,
    -webkit-transform;
  transition-property: top, transform;
  transition-property:
    top,
    transform,
    -webkit-transform;
}

.header__main--button-line span:after {
  bottom: 0;
  -webkit-transition-property:
    bottom,
    -webkit-transform;
  transition-property:
    bottom,
    -webkit-transform;
  transition-property: bottom, transform;
  transition-property:
    bottom,
    transform,
    -webkit-transform;
}

.header__main--button-line span:after,
.header__main--button-line span:before {
  background-color: #fff;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  content: '';
  height: 2px;
  left: 0;
  position: absolute;
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
  width: 100%;
}

.header__links-icon {
  margin-left: 5px;
}

.header__inner {
  border-bottom: 1px solid #e8e9e9;
}

.header__links,
.header__links-button {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.header__links-button {
  cursor: pointer;
}

.header__row {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-align-items: center;
  align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

.header__col {
  -ms-flex-negative: 0;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}

.header__col:first-child {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.header__col_second {
  width: 60vw;
}

.header__feedback {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-align-items: center;
  align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

.header__top {
  padding-bottom: 12px;
}

.header__feedback-col::nth-child(1) {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.header__feedback-col::nth-child(2) {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-left: 1.875rem;
}

.header__feedback-link:not(:first-child) {
  margin-left: 2.125rem;
}

.header__feedback-icon {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-align-items: center;
  align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 1.1875rem;
  -webkit-justify-content: center;
  justify-content: center;
  margin-right: 0.25rem;
  width: 1.1875rem;
}

.header__text {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  -webkit-transition: 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  transition: 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}

.header__feedback-buttons {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-right: 2.75rem;
}

.header__feedback-dropdown {
  -webkit-border-radius: 0 0 18px 18px;
  border-radius: 0 0 18px 18px;
  display: none;
  padding: 4px 24px 16px;
}

.header__feedback-col:first-child {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.header__feedback-col:nth-child(2) {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-left: 1.875rem;
}

.header__menu {
  border: 1px solid var(--color-blue);
  width: 40px;
}

.header__mobile {
  display: none;
}

.header__cards {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

.header__card {
  background-color: #f3f3f3;
  background-position: 100% 0;
  background-repeat: no-repeat;
  border: 1px solid rgba(0, 0, 0, 0);
  min-height: 360px;
  padding: 15px;
  -webkit-transition: border 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  transition: border 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  width: 25%;
}

.header__card:hover {
  border: 1px solid #01549a;
}

.header__card--header,
.header__card--header a {
  color: #01549a;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.header__card--header a.subline:before,
.header__card--header.subline:before {
  bottom: 0;
}

.header__card--menu li {
  list-style: disc;
  margin: 0 20px 10px;
}

.header__card--menu li a.subline:before {
  bottom: 0;
}

.header__nav {
  position: relative;
  z-index: 0;
}

.header__list,
.header__nav {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.header__list {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-flex-grow: 1;
  flex-grow: 1;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

.header__item {
  white-space: nowrap;
}

.header__accordion {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-left: 1vw;
}

.header__accordion.not_active,
.header__accordion.not_active svg {
  opacity: 0.5;
}

.header__accordion.active {
  color: #01549a;
  font-weight: 600;
}

.header__accordion-text {
  font-size: 1.2vw;
  font-weight: 500;
  line-height: 1.2;
  text-transform: uppercase;
  -webkit-transition: 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  transition: 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}

.header__accordion-icon {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-align-items: center;
  align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 1rem;
  -webkit-justify-content: center;
  justify-content: center;
  margin-left: 0.5rem;
  width: 1rem;
}

.header__accordion-svg {
  height: 100%;
  width: 100%;
}

.header__accordion-svg,
.header__accordion-svg path {
  -webkit-transition: 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  transition: 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}

.header__buttons {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-left: 2.5rem;
}

.header__buttons-item {
  border: 1px solid rgba(63, 63, 64, 0.1);
  -webkit-border-radius: 50%;
  border-radius: 50%;
}

.header__buttons-item:not(:first-child) {
  margin-left: 0.5rem;
}

.header__cart {
  position: relative;
  z-index: 0;
}

.header__cart-count {
  background-color: var(--color-blue);
  -webkit-border-radius: 50%;
  border-radius: 50%;
  color: var(--color-white);
  font-size: 1.1875rem;
  height: 1.165rem;
  margin-right: -7px;
  margin-top: -7px;
  width: 1.165rem;
}

.header__nav:after {
  background: rgba(0, 0, 0, 0);
  content: '';
  height: 1px;
  left: 0;
  position: absolute;
  right: 0;
  top: -webkit-calc(100% + 1.125rem);
  top: calc(100% + 1.125rem);
  -webkit-transition: 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  transition: 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  z-index: 1;
}

.header__feedback-item .button__text span {
  font-size: 0.875rem;
  font-weight: 400;
}

.button-animate .button__text span {
  display: block;
  -webkit-transition: 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  transition: 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}

.header__search {
  height: 1.5rem;
  width: 1.5rem;
}

.header__panel--active .header__panel-overlay {
  opacity: 1;
  pointer-events: all;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}

.header__links-item {
  margin-right: 2vw;
}

.header__buttons-item {
  -ms-flex-negative: 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-align-items: center;
  align-items: center;
  border: 1px solid #bbb;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  height: 3rem;
  -webkit-justify-content: center;
  justify-content: center;
  position: relative;
  -webkit-transition: 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  transition: 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  width: 3rem;
}

.header__hidden {
  opacity: 0;
  pointer-events: none;
}

.header__buttons-item .header__search {
  position: relative;
}

.header__cart-count {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-align-items: center;
  align-items: center;
  background-color: #01549a;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-size: 0.6875rem;
  height: 1.125rem;
  -webkit-justify-content: center;
  justify-content: center;
  line-height: 1.1;
  position: absolute;
  right: 0;
  top: 0;
  width: 1.125rem;
  z-index: 1;
}

.header__cart-count,
.header__inner {
  -webkit-transition: 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  transition: 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}

.header__inner {
  border-bottom: 1px solid var(--color-borders);
  padding: 1.125rem 0;
  position: relative;
  z-index: 3;
}

.header__cart-text {
  left: 50%;
  margin-right: -50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.header__feedback-item {
  margin-left: 1vw;
}

.header__buttons-item .header__buttons-bg:before {
  background-color: #01549a;
  content: '';
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  -webkit-transform: translate3d(0, 110%, 0);
  transform: translate3d(0, 110%, 0);
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  transition: -webkit-transform 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  transition: transform 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  transition:
    transform 0.5s cubic-bezier(0.33, 1, 0.68, 1),
    -webkit-transform 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  width: 100%;
}

.header__buttons-item:hover .header__buttons-bg:before {
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}

.header__buttons-bg {
  -webkit-border-radius: 5px;
  border-radius: 5px;
  height: 100%;
  position: absolute;
  width: 100%;
  z-index: -1;
}

.header__buttons-item .header__buttons-bg {
  bottom: 0;
  height: 100%;
  left: 0;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}

.header__cart-svg {
  height: 1.1875rem;
  position: relative;
  width: 1.25rem;
}

.header__buttons-container {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-align-items: center;
  align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  -webkit-justify-content: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.header__panel-overlay {
  background: rgba(0, 0, 0, 0.2);
  bottom: 0;
  height: 300vh;
  left: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 100%;
  -webkit-transition: 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  transition: 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
}

.header__panel-spoiler .header__card--header,
.header__panel-spoiler .header__card--menu {
  opacity: 0;
  -webkit-transition: 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  transition: 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}

.header__panel-spoiler .header__card--menu {
  -webkit-animation: fadeOut 0.5s cubic-bezier(0.33, 1, 0.68, 1) forwards;
  animation: fadeOut 0.5s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

.header__panel-spoiler.active .header__card--header,
.header__panel-spoiler.active .header__card--menu {
  opacity: 1;
  -webkit-transition: 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  transition: 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}

.header__panel-spoiler.active .header__card--menu {
  -webkit-animation: fadeIn 0.5s cubic-bezier(0.33, 1, 0.68, 1) forwards;
  animation: fadeIn 0.5s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

.header__col_first {
  width: 40vw;
}

.header__panel-inner {
  padding: 0 0 2.5rem;
}

.header__buttons-item .header__search path,
.header__cart-svg path {
  -webkit-transition: 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  transition: 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}

.header__accordion.active .header__accordion-svg {
  -webkit-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.header__menu {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-align-items: center;
  align-items: center;
  background-color: #01549a;
  border: 1px solid #01549a;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 40px;
  -webkit-justify-content: center;
  justify-content: center;
  position: relative;
  -webkit-transition: 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  transition: 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  width: 55px;
  z-index: 1;
}

.header__burger {
  border-bottom: 2px solid #fff;
  border-top: 2px solid #fff;
  height: 0.75rem;
  position: relative;
  -webkit-transition:
    height 0.4s cubic-bezier(0.33, 1, 0.68, 1) 0.4s,
    border-color 0.4s cubic-bezier(0.33, 1, 0.68, 1) 0.4s;
  transition:
    height 0.4s cubic-bezier(0.33, 1, 0.68, 1) 0.4s,
    border-color 0.4s cubic-bezier(0.33, 1, 0.68, 1) 0.4s;
  width: 1rem;
  z-index: 0;
}

.header__burger:after,
.header__burger:before {
  background: #fff;
  content: '';
  height: 2px;
  left: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.33, 1, 0.68, 1);
  transition: -webkit-transform 0.4s cubic-bezier(0.33, 1, 0.68, 1);
  transition: transform 0.4s cubic-bezier(0.33, 1, 0.68, 1);
  transition:
    transform 0.4s cubic-bezier(0.33, 1, 0.68, 1),
    -webkit-transform 0.4s cubic-bezier(0.33, 1, 0.68, 1);
  width: 100%;
}

.hhhhh {
  font-size: 16px;
}

.header.menu .header__menu {
  background: #01549a;
}

.header.menu .header__burger {
  border-color: rgba(0, 0, 0, 0);
  height: 0;
  -webkit-transition: all 0.35s cubic-bezier(0.33, 1, 0.68, 1) 0s;
  transition: all 0.35s cubic-bezier(0.33, 1, 0.68, 1) 0s;
}

.header.menu .header__burger:before {
  background: #fff;
  -webkit-transform: translateY(-50%) rotate(-45deg);
  -ms-transform: translateY(-50%) rotate(-45deg);
  transform: translateY(-50%) rotate(-45deg);
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
}

.header.menu .header__burger:after {
  background: #fff;
  -webkit-transform: translateY(-50%) rotate(-135deg);
  -ms-transform: translateY(-50%) rotate(-135deg);
  transform: translateY(-50%) rotate(-135deg);
  -webkit-transition-delay: 0.5s;
  transition-delay: 0.5s;
}

.header.menu .mobile-menu {
  pointer-events: all;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}

.mobile-menu {
  background: #fff;
  bottom: 0;
  pointer-events: none;
  position: fixed;
  right: 0;
  top: 0;
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  transition: 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  width: 100vw;
}

.mobile-menu__item {
  border-bottom: 1px solid var(--color-borders);
  font-weight: 700;
}

.mobile-menu__wrapper {
  height: 100%;
  overflow-y: scroll;
  padding-bottom: 3.6875rem;
}

.mobile-menu__item-text {
  font-size: 18px;
  line-height: 1;
}

.mobile-menu__icon {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-align-items: center;
  align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  margin-left: 1.25rem;
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.mobile-menu__svg {
  height: 0.875rem;
  width: 0.875rem;
}

.mobile-menu__modal {
  -ms-overflow-style: none;
  background: #fff;
  height: 100%;
  overflow-y: scroll;
  padding-top: 12px;
  position: absolute;
  right: 0;
  scrollbar-width: none;
  top: 0;
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  transition: 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  width: 100%;
}

.mobile-menu__modal.active {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}

.mobile-menu__modal-back {
  font-size: 18px;
}

.mobile-menu__modal-back,
.mobile-menu__modal-icon {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.mobile-menu__modal-icon {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  margin-right: 6px;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.mobile-menu__modal-svg {
  height: 0.875rem;
  width: 0.875rem;
}

.mobile-menu__modal-wrapper {
  border-top: 1px solid #e8e9e9;
  margin-top: 0.75rem;
}

.mobile-menu__item {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  border-bottom: 1px solid #e8e9e9;
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-size: 16px;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding: 0.875rem 1.25rem;
}

.mobile-menu__caption {
  color: #989898;
  font-size: 14px;
}

.mobile-menu__modal-list {
  margin-left: 4px;
  margin-top: 1.75rem;
}

.mobile-menu__modal-item:not(:first-child) {
  margin-top: 1.5rem;
}

.mobile-menu__nav-link {
  font-size: 0.875rem;
  line-height: 1;
}

.mobile-menu__container {
  margin: 0.875rem 0 1.25rem;
  padding: 0.875rem 1.25rem;
}

.header__feedback-link {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.mobile-menu__label {
  color: #3f3f40;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 0.875rem;
}

.mobile-menu__nav-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.mobile-menu__link,
.mobile-menu__link-icon {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.mobile-menu__link-icon {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  margin-right: 0.375rem;
}

.mobile-menu__link-text {
  font-size: 0.75rem;
  line-height: 1;
}

.mobile-menu__inner {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-align-items: center;
  align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  margin: 1.5rem 0;
}

.header__phone {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.2;
  -webkit-transition: 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  transition: 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}

.button--sm {
  padding: 0.625rem 1.5rem;
}

.mobile-menu__nav-item:not(:first-child) {
  margin-top: 0.875rem;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  to {
    opacity: 0;
    -webkit-transform: translateY(-10%);
    transform: translateY(-10%);
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  to {
    opacity: 0;
    -webkit-transform: translateY(-10%);
    transform: translateY(-10%);
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
    -webkit-transform: translateY(10%);
    transform: translateY(10%);
  }

  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    -webkit-transform: translateY(10%);
    transform: translateY(10%);
  }

  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.header__menu {
  cursor: pointer;
}

.mobile-menu__wrapper .container {
  padding: 0 20px;
}

label:focus-within {
  border: 1px solid red;
}

.form-control:focus {
  background-color: #fff;
  border-color: #01549a !important;
  color: #3f3f40;
  outline: 0;
}

.form-control.is-focus:not(.is-valid):not(.is-invalid) {
  border-color: #01549a;
}

.desktop-mega-menu {
  -webkit-box-shadow: 0 0 17px -10px rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 17px -10px rgba(0, 0, 0, 0.6);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: none;
  max-width: 100%;
  position: fixed;
  top: 130px;
}

.styles_mega-menu__Zu7HT {
  height: auto;
  overflow-x: hidden;
  overflow-y: hidden;
  padding: 0;
  position: absolute;
  width: 100%;
  z-index: 99;
}

.styles_mega-menu__Zu7HT .styles_inner__GU_K7 {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  background: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  height: 100%;
  min-height: 60vh;
  position: relative;
  text-align: left;
  width: 100%;
}

.styles_mega-menu__Zu7HT .styles_inner__GU_K7:after,
.styles_mega-menu__Zu7HT .styles_inner__GU_K7:before {
  background: #fff;
  content: '';
  height: 100%;
  position: absolute;
  width: 100vw;
  z-index: -1;
}

.styles_mega-menu__Zu7HT .styles_inner__GU_K7:after {
  left: 0;
}

.styles_mega-menu__Zu7HT .styles_inner__GU_K7:before {
  right: 0;
}

.style_close-btn__4bAWx {
  right: 30px;
}

.styles_mega-menu__Zu7HT .styles_sidebar-left__i2Dq3 {
  -ms-flex-negative: 0;
  -ms-flex-preferred-size: 372px;
  -webkit-box-flex: 0;
  -ms-flex-positive: 0;
  border-right: 1px solid #ebebeb;
  -webkit-flex-basis: 372px;
  flex-basis: 372px;
  -webkit-flex-grow: 0;
  flex-grow: 0;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  max-height: 780px;
  opacity: 0;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 30px 0 40px;
  -webkit-transition: opacity 0.6s cubic-bezier(0.33, 1, 0.68, 1);
  transition: opacity 0.6s cubic-bezier(0.33, 1, 0.68, 1);
}

.style_close-btn__4bAWx {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -ms-flex-negative: 0;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-align-items: center;
  align-items: center;
  background-color: initial;
  border: initial;
  -webkit-border-radius: 0;
  border-radius: 0;
  -webkit-border-radius: initial;
  border-radius: initial;
  color: #999;
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  height: 40px;
  -webkit-justify-content: center;
  justify-content: center;
  position: absolute;
  right: 10px;
  top: 0;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  width: 40px;
  z-index: 1;
}

.styles_mega-menu__Zu7HT .styles_main__bwNJ3 {
  max-height: 780px;
  opacity: 0;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 45px 30px 40px 45px;
  position: relative;
  -webkit-transition: opacity 0.6s cubic-bezier(0.33, 1, 0.68, 1);
  transition: opacity 0.6s cubic-bezier(0.33, 1, 0.68, 1);
  width: 100%;
}

.is-expand .styles_main__bwNJ3,
.is-expand .styles_sidebar-left__i2Dq3 {
  opacity: 1;
  -webkit-transition: opacity 2.6s cubic-bezier(0.33, 1, 0.68, 1);
  transition: opacity 2.6s cubic-bezier(0.33, 1, 0.68, 1);
  -webkit-transition-delay: -8s;
  transition-delay: -8s;
  max-height: 80vh;
  overflow-y: auto;
}

.is-expand span:before {
  top: 0;
  -webkit-transition-property:
    top,
    -webkit-transform;
  transition-property:
    top,
    -webkit-transform;
  transition-property: top, transform;
  transition-property:
    top,
    transform,
    -webkit-transform;
}

.is-expand span:after {
  bottom: 0;
  -webkit-transition-property:
    bottom,
    -webkit-transform;
  transition-property:
    bottom,
    -webkit-transform;
  transition-property: bottom, transform;
  transition-property:
    bottom,
    transform,
    -webkit-transform;
}

.is-expand .header__main--button-line span {
  height: 0;
}

.is-expand .header__main--button-line span:before {
  top: 5px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.is-expand .header__main--button-line span:after {
  bottom: 5px;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.mega_menu--overlay {
  background: rgba(0, 0, 0, 0.651);
  height: 100%;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  width: 100%;
  z-index: 43;
}

.mega_menu--overlay,
.mega_menu--overlay.active {
  -webkit-transition: opacity 1.6s cubic-bezier(0.33, 1, 0.68, 1);
  transition: opacity 1.6s cubic-bezier(0.33, 1, 0.68, 1);
}

.mega_menu--overlay.active {
  opacity: 1;
  pointer-events: all;
}

.header__main--logo-mob {
  display: none;
}

.header__main--logo-desktop {
  display: block;
}

.footer__mobile--menu,
.header__menu {
  display: none;
}

.mobile-menu {
  margin-top: 70px;
}

.shadowed {
  -webkit-box-shadow: 0 0 17px -10px rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 17px -10px rgba(0, 0, 0, 0.6);
}

.digi-instant-search {
  max-width: 713px;
}

.header__links-link {
  color: #01549a;
  font-weight: 700;
}

.header__main {
  gap: 15px;
}

.header__main--logo {
  width: 360px;
}

.header__main--search .form-control {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 48px;
}

.header__main--search .mr-4 {
  position: absolute;
  right: 10px;
  top: 10px;
}

.header__top--panel {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  background-color: #e6eef5;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 60px;
  letter-spacing: 0;
  padding: 10px 0;
}

.header__links.rtl .header__links-item {
  margin-left: 1.5vw !important;
  margin-right: unset;
}

.about {
  border-top: 1px solid #e8e9e9;
  padding-top: 20px;
}

.about__page .breadcrumbs li a,
.about__page .h1,
.about__page h1,
.about__page__page {
  color: #000;
}

.about__main--buttons {
  gap: 20px;
}

.about__main--buttons,
.about__main--wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.about__main--wrapper {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
  -webkit-justify-content: center;
  justify-content: center;
}

.about .catalog__intro--breadcrumb {
  margin-bottom: 5px;
}

.about .catalog__intro--breadcrumb a {
  color: #000;
}

.about .catalog__intro--breadcrumb a:after {
  background-color: #01549a;
}

.about .h1,
.about h1 {
  color: #3f3f40;
  font-weight: 700;
  text-transform: uppercase;
}

.about__main {
  background-attachment: fixed;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 40vh;
}

.about__header {
  color: #efefef;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  width: 70%;
}

.about__quote {
  border-top: 1px solid #e8e9e9;
  margin-bottom: 80px;
  padding-top: 20px;
}

.about__quote p {
  color: #3f3f40;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  padding-top: 80px;
  width: 70%;
}

.about__into {
  font-size: 26px;
  margin-bottom: 60px;
  margin-top: 70px;
}

.about__into--text,
.about__into--text p {
  font-size: 16px;
}

.about__section--header {
  font-size: 26px;
}

.about__content {
  padding-bottom: 60px;
}

.about__content ul {
  margin-left: 43px;
}

.about__content ul li {
  margin-bottom: 12px;
  position: relative;
}

.about__content ul li:before {
  color: #adadad;
  content: '— ';
  left: -40px;
  position: absolute;
  -webkit-transform: scaleX(1.5);
  -ms-transform: scaleX(1.5);
  transform: scaleX(1.5);
}

.about__content--wrapper {
  border-top: 1px solid #e8e9e9;
  padding-top: 70px;
}

.about__collage {
  margin-bottom: 150px;
  padding-bottom: 90px;
  position: relative;
}

.about__collage--block {
  background-color: #f3f3f3;
  bottom: -70px;
  padding: 7vh;
  position: absolute;
  right: 0;
  width: 45%;
}

.about__collage--block p {
  font-size: 16px;
}

.about__history {
  background-color: #f3f3f3;
  border-top: 1px solid #e8e9e9;
  padding-top: 70px;
}

.accordion__wrapper {
  padding: 10px 0;
}

.accordion__inner--block {
  background-color: #f4f8fb;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  height: auto;
  height: 100%;
  padding: 40px 10px;
  row-gap: 20px;
  -webkit-transition: background-color 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  transition: background-color 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}

.accordion__inner--block:hover {
  background-color: #e3e3e3;
}

.accordion__inner--block--image {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-align-items: center;
  align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  margin: 0 auto;
  width: 120px;
}

.accordion__inner--block--image img {
  height: 100%;
  mix-blend-mode: darken;
  -o-object-fit: contain;
  object-fit: contain;
  width: 100%;
}

.accordion__inner--block--name {
  font-size: 18px;
  width: -webkit-calc(100% - 120px);
  width: calc(100% - 120px);
}

.accordion__icon svg {
  height: 60px;
  width: 60px;
}

.accordion__name {
  font-size: 23px;
  margin-left: 30px;
}

.accordion-item {
  background-color: #fff;
  color: #111;
  margin-bottom: 10px;
  width: 100%;
}

.accordion-item-header {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  background-color: #f0f4f8;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 10px 30px;
  position: relative;
  -webkit-transition:
    background-color 0.5s cubic-bezier(0.33, 1, 0.68, 1),
    color 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  transition:
    background-color 0.5s cubic-bezier(0.33, 1, 0.68, 1),
    color 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}

.accordion-item-header svg path {
  -webkit-transition: fill 0.4s cubic-bezier(0.33, 1, 0.68, 1);
  transition: fill 0.4s cubic-bezier(0.33, 1, 0.68, 1);
}

.accordion-item-header.active {
  background-color: #01549a;
  color: #fff;
}

.accordion-item-header.active a {
  color: #fff;
}

.accordion-item-header.active svg path {
  fill: #fff;
}

.accordion-item-header:after {
  content: '+';
  font-size: 45px;
  font-weight: 200;
  position: absolute;
  right: 1rem;
  top: -webkit-calc(50% - 3px);
  top: calc(50% - 3px);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.accordion-item-header.active:after {
  content: '−';
}

.accordion-item-body {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.2s ease-out;
  transition: max-height 0.2s ease-out;
}

.accordion-item-body-content {
  background-color: #fff;
  padding: 20px 0 10px;
}

.accordion__inner--block--name {
  width: 100%;
}

.ads {
  background-color: #e4e4e4;
  height: 540px;
}

.ads__wrapper {
  height: 100%;
}

.ads__b,
.ads__wrapper {
  position: relative;
}

.ads__b:after {
  background-image: url(/assets/images/sber.png);
  background-position-x: right;
  background-repeat: no-repeat;
  content: '';
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
}

.ads__info {
  padding-left: 10vw;
}

.ads__image {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-align-items: center;
  align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-justify-content: end;
  justify-content: end;
}

.ads__text {
  font-size: 23px;
  font-weight: 700;
  line-height: 0.8;
  margin-bottom: 40px;
}

.ads__text b {
  color: #01549a;
}

.ads__subtext {
  font-size: 20px;
  font-weight: 300;
  margin-bottom: 20px;
}

.ads__subtext b {
  font-weight: 600;
}

.ads__conditions {
  font-size: 15px;
  line-height: 1.2;
  max-width: 300px;
}

.ads__conditions a {
  white-space: nowrap;
}

.banner-column {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  display: grid;
  position: relative;
  row-gap: 3rem;
}

.banner-image {
  display: block;
  height: auto;
  justify-self: center;
  margin-top: 2rem;
  max-width: 18rem;
  -o-object-fit: cover;
  object-fit: cover;
}

.banner-inner {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  row-gap: 1.75rem;
}

.banner-links {
  display: grid;
  justify-items: center;
  opacity: 0;
  position: absolute;
  right: 1.5rem;
  row-gap: 0.5rem;
  top: 30%;
  visibility: hidden;
}

.banner {
  opacity: 1;
  visibility: visible;
}

.banner > * {
  color: var(--color-white-100);
  font-size: 1.25rem;
  line-height: 1.25;
}

.banner:before {
  background: var(--color-white-100);
  content: '';
  height: 1.5px;
  position: absolute;
  top: -3rem;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  width: 4rem;
}

.banner:after {
  background: var(--color-white-100);
  bottom: -3rem;
  content: '';
  height: 2px;
  position: absolute;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  width: 4rem;
}

.benefits__header {
  font-size: 16px;
  margin-top: 20px;
}

.breadcrumbs {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}

.breadcrumbs li {
  margin-right: 10px;
  position: relative;
}

.breadcrumbs li a {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
}

.breadcrumbs li:after {
  color: #98d0ff;
  content: '/';
  font-size: 14px;
  position: absolute;
  right: -13px;
}

.breadcrumbs li:last-of-type:after {
  content: '';
}

.cabinets {
  margin-top: 25px;
}

.cabinets__wrapper {
  border: 1px solid #3f3f40;
  padding: 25px;
}

.cabinets__info {
  max-width: 80%;
  padding-left: 20px;
}

.cabinets__info--arrow,
.cabinets__info--more {
  margin-left: 25px;
}

.cabinets__info--wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  position: relative;
}

.cabinets__info--header {
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 30px;
  text-transform: lowercase;
}

.cabinets__info--header b,
.cabinets__info--header strong {
  color: #01549a;
}

.cabinets__info--image {
  height: 100%;
  min-height: 350px;
}

.cabinets__info--image img {
  background-position: 50%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.cabinets__info--text {
  margin-bottom: 20px;
}

.cabinets__info--text,
.cabinets__info--text p {
  font-size: 14px;
}

.card {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  border: 1px solid #ccc;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  margin-bottom: 0;
  padding: 40px 0 0;
  -webkit-transition:
    box-shadow 0.5s cubic-bezier(0.33, 1, 0.68, 1),
    border 0.5s cubic-bezier(0.33, 1, 0.68, 1),
    background-color 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  transition:
    box-shadow 0.5s cubic-bezier(0.33, 1, 0.68, 1),
    border 0.5s cubic-bezier(0.33, 1, 0.68, 1),
    background-color 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}

.card:hover {
  background-color: rgba(4, 178, 209, 0.039);
  border: 1px solid #01549a;
  -webkit-box-shadow: 0 4px 21px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 21px 0 rgba(0, 0, 0, 0.1);
}

.card:hover span {
  background-color: #f5fcfd !important;
}

.card:hover .card__image img {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.card:hover .category__fast-filters__one {
  background-color: #01549a !important;
}

.card:hover .category__fast-filters__one a {
  color: #fff !important;
}

.card .category__fast-filters__one {
  -webkit-transition: background-color 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  transition: background-color 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}

.card .tovar__specs {
  margin-bottom: 20px;
  margin-top: 0;
}

.card .tovar__specs li {
  font-size: 13px;
  margin-bottom: 2px;
}

.card .tovar__specs li span {
  background-color: #fff;
}

.card .card__text {
  margin-bottom: 0;
}

.card__buttons {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding-bottom: 15px;
  padding-top: 15px;
}

.card__more {
  margin-bottom: 30px;
}

.card__text {
  margin-bottom: 20px;
  padding-right: 30px;
}

.card__button--add {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: color 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  transition: color 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}

.card__button--add svg {
  fill: #3f3f40;
  color: #3f3f40;
  margin-right: 6px;
}

.card__button--add svg path {
  -webkit-transition: fill 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  transition: fill 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}

.card__button--add:hover {
  color: #01549a;
}

.card__button--add:hover svg {
  fill: #01549a;
  color: #01549a;
}

.card__button--add:hover svg path {
  fill: #01549a;
}

.card__button--add img {
  margin-right: 5px;
}

.card__bottom {
  border-top: 1px solid #bdbdbd;
  padding: 0 20px;
}

.card__image {
  margin-bottom: 30px;
  overflow: hidden;
  pointer-events: none;
}

.card__image img {
  height: 100%;
  mix-blend-mode: darken;
  -webkit-transform: scale(0.9);
  -ms-transform: scale(0.9);
  transform: scale(0.9);
  -webkit-transition: 0.58s cubic-bezier(0.33, 1, 0.68, 1);
  transition: 0.58s cubic-bezier(0.33, 1, 0.68, 1);
}

.card__price {
  font-size: 18px;
}

.card__header {
  font-size: 20px;
  line-height: 1;
  padding-right: 30px;
  pointer-events: none;
}

.card__more a {
  color: #01549a;
  position: relative;
}

.card__more a:after {
  content: '››';
  position: absolute;
  right: -15px;
}

.catalog__filters {
  border-bottom: 1px solid #e8e9e9;
  border-top: 1px solid #e8e9e9;
  padding: 20px 0;
}

.catalog__items {
  margin-top: 30px;
}

.catalog__items .catalog__item--block:last-of-type {
  padding-right: 40px;
}

.catalog__items.board {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.catalog__items.board .catalog__item {
  width: 50%;
}

.catalog__items.board .catalog__item--block:first-of-type {
  width: 40%;
}

.catalog__items.board .catalog__item--block:last-of-type {
  padding-right: 40px;
  width: 60%;
}

.catalog__items.board .tovar__specs {
  display: none;
}

.catalog__item--blocks {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.catalog__filter {
  background: #fff;
  height: 100%;
  max-width: 460px;
  position: fixed;
  right: 0;
  top: 0;
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: transform 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  transition: transform 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  width: 50%;
  z-index: 9999;
}

.catalog__filter.open {
  -webkit-box-shadow: 0 4px 19px 0 rgba(0, 0, 0, 0.15);
  box-shadow: 0 4px 19px 0 rgba(0, 0, 0, 0.15);
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}

.catalog__filter--wrapper {
  padding: 3vw;
}

.catalog__filter__close__link {
  margin-left: 20px;
}

.catalog__filter__reset button {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  border: none;
  -webkit-justify-content: center;
  justify-content: center;
  max-height: 33px;
  padding: 10px 15px;
}

.catalog__filter--heads,
.catalog__filter__reset button {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.catalog__filter--heads {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  margin-bottom: 20px;
}

.catalog__filter--head {
  -ms-flex-line-pack: center;
  -webkit-align-content: center;
  align-content: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.catalog__filter--head--title {
  color: #01549a;
  font-size: 23px;
  font-weight: 600;
}

.catalog__filter--block,
.catalog__filter--block--line,
.catalog__filter--blocks,
.catalog__filter--icons {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

.catalog__filter--blocks {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

.catalog__filter--block {
  margin-bottom: 10px;
  width: 100%;
}

.catalog__filter--block:last-of-type {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}

.catalog__filter--icons {
  margin-left: 20px;
}

.catalog__filter--icon {
  height: 16px;
  margin-right: 5px;
}

.catalog__filter--icon a {
  -webkit-border-radius: 50%;
  border-radius: 50%;
  padding: 10px;
  -webkit-transition: background-color 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  transition: background-color 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}

.catalog__filter--icon a.active,
.catalog__filter--icon a:hover {
  background-color: #f8f8f8;
}

.catalog__filter--qty {
  color: #01549a;
  margin-left: 5px;
  position: relative;
  text-decoration: underline;
}

.catalog__filter--qty:after {
  background-image: url(/assets/images/arrow_down.svg);
  content: '';
  height: 6px;
  position: absolute;
  right: -13px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 11px;
}

.catalog__filter--qty:hover {
  text-decoration: none;
}

.catalog__filter--opener,
.catalog__filter--qty {
  border-bottom: 1px dashed;
  color: #01549a;
  text-decoration: none;
}

.catalog__filter--opener:hover,
.catalog__filter--qty:hover {
  text-decoration: none;
}

.catalog__intro {
  background-position: 50%;
  background-size: cover;
  margin-bottom: 20px;
  position: relative;
}

.catalog__intro--wrapper {
  padding: 30px 0;
  row-gap: 50px;
}

.catalog__intro--bg {
  background-color: rgba(0, 0, 0, 0.259);
}

.catalog__intro--info {
  padding-bottom: 15px;
  z-index: 1;
}

.catalog__intro--h1 .h1,
.catalog__intro--h1 h1 {
  font-size: 26px;
  font-weight: 500;
}

.catalog__intro--breadcrumb ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.catalog__intro--breadcrumb ul li {
  margin-right: 14px;
  position: relative;
}

.catalog__intro--breadcrumb ul li:after {
  color: #04b2d1;
  content: '/';
  left: -10px;
  position: absolute;
}

.catalog__intro--breadcrumb ul li:first-of-type:after {
  content: unset;
}

.catalog__intro--breadcrumb ul li a {
  color: #fff;
  font-size: 13px;
  text-decoration: none;
  text-transform: uppercase;
}

.category__fast-filters__one {
  background-color: rgba(0, 0, 0, 0) !important;
  border: 1px solid #01549a;
  height: 3.23214vw !important;
  margin: 20px 0 40px;
  -webkit-transition: 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  transition: 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}

.category__fast-filters__one:hover {
  background-color: #01539a !important;
}

.category__fast-filters__one:hover a {
  color: #fff !important;
}

.category__fast-filters__one:hover .fill--red {
  fill: #fff !important;
  color: #fff !important;
}

.fill--red {
  fill: #01549a !important;
  color: #01549a !important;
}

.catalog__accordion--filter .accordion__wrapper {
  padding: 30px 0;
}

.catalog__new .tabs ul li a {
  -webkit-border-radius: 5px;
  border-radius: 5px;
  font-size: 15px;
}

.catalog__new .accordion-item-header {
  padding: 15px 10px;
}

.catalog__new .accordion__name {
  font-size: 16px;
  margin-left: 10px;
}

.catalog__new .accordion-item {
  margin-bottom: 20px;
}

.catalog__new .catalog__item {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  background-color: #f0f4f8;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

.catalog__new .catalog__item--image {
  mix-blend-mode: darken;
}

.catalog__new .catalog__item--name,
.catalog__new .catalog__item--price {
  padding: 25px 25px 0;
}

.catalog__new .catalog__item--price {
  font-weight: 600;
}

.catalog__new .catalog__item--buttons {
  padding: 25px;
  text-align: center;
  width: 100%;
}

.catalog__new .catalog__item--buttons .btn {
  height: 50px;
  letter-spacing: 0;
  max-width: 100%;
  width: 100%;
}

.catalog__new .catalog__item--buttons .catalog__item--button:first-of-type {
  margin-bottom: 10px;
}

.catalog__new .cards {
  margin-bottom: 30px;
  margin-top: 30px;
}

.catalog__new .catalog__accordion--filter {
  max-width: 85%;
}

.catalog__new .accordion-item--list-item {
  border-bottom: 1px solid #ddd;
  padding: 12px 0;
}

.catalog__new .accordion-item--list-item:last-of-type {
  border-bottom: 1px solid rgba(0, 0, 0, 0);
}

.catalog__accordion--filter .accordion-item--list-item a {
  padding-left: 16px;
}

.catalog__filters--buttons .catalog__filter--blocks {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.btn__filter {
  display: none;
}

.catalog__item--info {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

.catalog__accordion--filter .accordion-item--list-item a {
  display: inline-block;
}

.catalog__item--image {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-align-items: center;
  align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}

.catalog__seo {
  margin: 30px 0 50px;
}

.catalog__seo .h1,
.catalog__seo h1 {
  color: #01549a;
}

.catalog__seo p:last-of-type {
  margin-bottom: 0;
  padding-bottom: 0;
}

.category__fast-filters__one {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  height: 50px !important;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  width: 220px;
}

.consultation {
  background-color: #fff;
  margin-bottom: 60px;
  margin-top: 60px;
  padding-top: 60px;
}

.consultation__text {
  font-size: 13px;
}

.consultation__text a {
  text-decoration: underline;
}

.consultation__wrapper {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  padding: 0 70px;
}

.consultation__image {
  height: 100%;
}

.consultation__image img {
  background-position: 50%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.consultation__input {
  background-color: #f3f3f3;
  border: none;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  margin-bottom: 15px;
  padding: 17px;
  -webkit-transition: 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  transition: 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  width: 100%;
}

.consultation__input:focus {
  background-color: #e1e1e1;
}

.consultation__group textarea {
  height: 100px;
}

.consultation__button {
  background-color: #01549a;
  border: none;
  -webkit-border-radius: 15px;
  border-radius: 15px;
  color: #fff;
  margin-top: 40px;
  padding: 15px 30px;
  -webkit-transition: 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  transition: 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}

.consultation__button:hover {
  background-color: #3e75a4;
}

.consultation__header {
  font-size: 20px;
  margin-bottom: 35px;
}

.contacts {
  background-color: #f3f3f3;
}

.contacts__float,
.contacts__info {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
}

.contacts__float {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  pointer-events: none;
  right: 0;
  z-index: 1;
}

.contacts__block--phone {
  font-size: 26px;
}

.contacts__header {
  font-size: 20px;
  margin-bottom: 20px;
  text-transform: uppercase;
}

#contact_map,
.contacts__map--wrapper {
  position: relative;
}

#contact_map {
  height: 100vh;
  max-height: 900px;
}

.contacts__info--new {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  /*background-color: #01549a;*/
  color: #3f3f40;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  max-width: 677px;
  padding: 80px;
  pointer-events: all;
}

.contacts__info--new a,
.contacts__info--new p {
  color: #3f3f40;
  font-size: 16px;
  text-decoration: none;
}

.contacts__block .footer__email {
  color: #3f3f40;
  font-size: 14px;
  margin-bottom: 10px;
}

.contacts__icon--svg svg path {
  fill: #3f3f40 !important;
}

.contacts__block .footer__email svg path {
  fill: #3f3f40 !important;
}

.contacts__info--new .btn__download {
  border: 1px solid #044376;
}

.contacts__info--new .btn__download:hover {
  color: #fff !important;
}

.contacts__block .footer__email,
.contacts__info--new a,
.contacts__info--new p,
.footer__email a {
  color: #3f3f40 !important;
}

.contacts__icon--svg {
  margin-right: 10px;
  width: 30px;
}

.contacts_one {
  position: relative;
}

.content {
  border-top: 1px solid #e8e9e9;
  padding-top: 20px;
}

.content__double {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  border-top: 1px solid #e2e2e2;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 70px;
  padding-top: 70px;
}

.content__double--specs {
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}

.content__double--block {
  width: 50%;
}

.content__double--block--wrapper {
  margin-bottom: 25px;
  max-width: 80%;
}

.content__double--blocks {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.content__double .h2,
.content__double h2 {
  font-size: 16px;
  font-weight: 700;
}

.content__double--text {
  width: 50%;
}

.content__double--text p {
  max-width: 94%;
}

.content__double--image {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  -webkit-align-items: center;
  align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  width: 50%;
}

.content__double--image img {
  max-width: 90%;
}

.content__double.ltr .content__double--text {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  -webkit-order: 2;
  order: 2;
}

.content__double.ltr .content__double--image {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  -webkit-order: 1;
  order: 1;
}

.cooperation {
  padding-top: 60px;
}

.cooperation__wrapper {
  max-width: 80%;
}

.cooperation--header {
  font-size: 21px;
  font-weight: 600;
  margin-bottom: 50px;
}

.cooperation__lists {
  padding: 0 50px;
}

.cooperation__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.cooperation__list--image {
  min-width: 90px;
}

.cooperation__list--header {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
}

.cooperation__list--text,
.cooperation__list--text p {
  font-size: 14px;
}

.form {
  padding: 35px 0 0;
}

.form__wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-justify-content: center;
  justify-content: center;
}

.form__header {
  color: #01549a;
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 50px;
}

.form__group input,
.form__group textarea {
  background: none;
  border: none;
  border-bottom: 1px solid #c4c4c4;
  margin-bottom: 15px;
  padding: 10px 0;
  width: 100%;
}

.form__group input::-webkit-input-placeholder,
.form__group textarea::-webkit-input-placeholder {
  color: #3f3f41;
  font-weight: 500;
}

.form__group input::-moz-placeholder,
.form__group textarea::-moz-placeholder {
  color: #3f3f41;
  font-weight: 500;
}

.form__group input:-ms-input-placeholder,
.form__group textarea:-ms-input-placeholder {
  color: #3f3f41;
  font-weight: 500;
}

.form__group input::-ms-input-placeholder,
.form__group textarea::-ms-input-placeholder {
  color: #3f3f41;
  font-weight: 500;
}

.form__group input::placeholder,
.form__group textarea::placeholder {
  color: #3f3f41;
  font-weight: 500;
}

.form__buttons {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.form__buttons,
.form__girl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.form__girl {
  -webkit-box-align: end;
  -ms-flex-align: end;
  -webkit-align-items: flex-end;
  align-items: flex-end;
}

.form__submit {
  margin-right: 25px;
}

.form__submit input {
  height: 50px;
  width: 100%;
}

.form__conditions,
.form__conditions a {
  color: #b1b1b1;
  font-size: 13px;
  line-height: 1.2;
}

.forms_section {
  background-attachment: fixed;
  background-position: 50%;
  background-size: cover;
  min-height: 30vh;
  overflow: hidden;
  padding: 100px 0;
  width: 100vw;
}

.forms_section--container {
  margin: 0 auto;
  max-width: 1000px !important;
  width: 100%;
}

.forms_section--header {
  color: #fff;
  font-size: 21px;
  margin-bottom: 60px;
  text-align: center;
}

.forms_section--input,
.forms_section--textarea {
  -webkit-border-radius: 10px;
  border-radius: 10px;
  height: 55px;
  margin-bottom: 25px;
  padding: 13px 34px;
  width: 100%;
}

.forms_section--textarea {
  height: 100px;
}

.forms_section--privacy {
  color: #fff;
  font-size: 11px;
}

.forms_section--privacy a {
  color: #fff;
  text-decoration: underline;
}

.mega__menu--section {
  display: none;
  opacity: 0;
}

.mega__menu--section .mega__menu--blocks {
  opacity: 0;
}

.mega__menu--section .mega__menu--blocks,
.mega__menu--section.active {
  -webkit-transition: opacity 6s cubic-bezier(0.33, 1, 0.68, 1);
  transition: opacity 6s cubic-bezier(0.33, 1, 0.68, 1);
}

.mega__menu--section.active {
  display: block;
  opacity: 1;
}

.mega__menu--section.active .mega__menu--blocks {
  gap: 15px;
  opacity: 1;
}

.mega__menu--block {
  width: 40%;
}

.mega__menu--block:last-of-type {
  width: 20%;
}

.mega__menu--rubrics li a {
  color: #01549a;
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  height: 100%;
  padding: 14px 10px 14px 0;
  position: relative;
  text-transform: uppercase;
  -webkit-transition:
    background-color 0.5s ease,
    padding-left 0.5s ease;
  transition:
    background-color 0.5s ease,
    padding-left 0.5s ease;
  white-space: nowrap;
  width: 100%;
}

.mega__menu--rubrics li a.active,
.mega__menu--rubrics li a:hover {
  background-color: #e6eef5;
  padding-left: 22px;
}

.mega__menu--rubrics li a.active:after,
.mega__menu--rubrics li a:hover:after {
  opacity: 1;
  -webkit-transform: translateX(0) scale(0.6);
  -ms-transform: translateX(0) scale(0.6);
  transform: translateX(0) scale(0.6);
}

.mega__menu--rubrics li a:after {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzAiIGhlaWdodD0iMzAiIHZpZXdCb3g9IjAgMCAzMCAzMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yMi40Mzk3IDE2LjUzODVIMFYxMy40NjE2SDIyLjQzOTdMMTIuNzU4MyAzLjc4MDJMMTQuOTM0IDEuNjA0NDlMMjguMzI5NSAxNUwxNC45MzQgMjguMzk1NkwxMi43NTgzIDI2LjIxOTlMMjIuNDM5NyAxNi41Mzg1WiIgZmlsbD0iIzNGM0Y0MCIvPgo8L3N2Zz4K);
  content: '';
  height: 30px;
  opacity: 0;
  position: absolute;
  right: 15px;
  -webkit-transform: translateX(-20px) scale(0.5);
  -ms-transform: translateX(-20px) scale(0.5);
  transform: translateX(-20px) scale(0.5);
  -webkit-transition: 0.6s cubic-bezier(0.33, 1, 0.68, 1);
  transition: 0.6s cubic-bezier(0.33, 1, 0.68, 1);
  width: 30px;
}

.mega__menu--brends li,
.mega__menu--categories li,
.mega__menu--subcategories li {
  margin-bottom: 20px;
}

.mega__menu--brends li a,
.mega__menu--categories li a,
.mega__menu--subcategories li a {
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
  height: 100%;
  width: 100%;
}

.mega__menu--submenu {
  margin-top: 10px;
}

.mega__menu--submenu li {
  margin-bottom: 5px;
}

.mega__menu--submenu li a {
  color: #9b9b9b;
  font-size: 13px;
  font-weight: 400;
}

.mobile__menu {
  background: #fff;
  display: none;
  height: 100%;
  left: 0;
  overflow-y: auto;
  padding-top: 20px;
  position: fixed;
  top: 70px;
  width: 100%;
}

.mobile__menu .accordion__name {
  margin-left: 0;
}

.mobile__menu .footer__sections {
  gap: 0;
}

.mobile__menu .footer__socials {
  padding-bottom: 40px;
}

.header.menu .mobile__menu {
  display: block;
}

.mobile__accordion-item {
  border-bottom: 1px solid;
  margin: 0;
}

.mobile__accordion-item .accordion-item-header {
  background: none;
  padding: 13px 15px;
}

.mobile__accordion-item .accordion-item-header.active {
  background-color: #f0f4f8 !important;
  color: #000 !important;
}

.mobile__accordion--section {
  margin: 20px 0;
}

.mobile__menu--submenu {
  margin-bottom: 5px;
}

.mobile__menu--submenu li {
  padding-bottom: 10px;
}

.mobile__menu--submenu li a {
  font-size: 17px;
  font-weight: 400;
  padding: 0 5px;
}

.mobile__menu .accordion-item-header {
  font-size: 15px;
  padding: 15px !important;
}

.mobile__menu--submenu li {
  border-bottom: 1px solid #e7e7e7;
  padding: 10px;
}

.mobile__menu--submenu li:last-of-type {
  border-bottom: none;
}

.mobile__accordion-item .accordion-item-header,
.mobile__accordion-item .accordion-item-header.active,
.mobile__accordion-item.active .accordion-item-header {
  background-color: #fff !important;
  color: #000 !important;
  text-transform: uppercase;
}

.rubrics {
  margin-top: 25px;
}

.rubric {
  background-color: #f3f3f3;
  height: 360px;
  position: relative;
}

.rubric__anons {
  -webkit-animation: fadeOut 0.3s cubic-bezier(0.33, 1, 0.68, 1) forwards;
  animation: fadeOut 0.3s cubic-bezier(0.33, 1, 0.68, 1) forwards;
  -webkit-animation-delay: -1.5s;
  animation-delay: -1.5s;
  bottom: 20px;
  height: 0;
  left: 20px;
  max-width: 60%;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  -webkit-transition:
    0.5s cubic-bezier(0.33, 1, 0.68, 1),
    height 0.2s ease;
  transition:
    0.5s cubic-bezier(0.33, 1, 0.68, 1),
    height 0.2s ease;
  z-index: 1;
}

.rubric__bg {
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transition: filter 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  transition: filter 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}

.rubric__bg img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  opacity: 0.6;
  width: 100%;
}

.rubric__header {
  -webkit-animation: fadeIn 0.9s cubic-bezier(0.33, 1, 0.68, 1) forwards;
  animation: fadeIn 0.9s cubic-bezier(0.33, 1, 0.68, 1) forwards;
  bottom: 20px;
  font-size: 18px;
  left: 20px;
  max-width: 60%;
  opacity: 1;
  position: absolute;
  text-transform: uppercase;
  -webkit-transition: 0.1s cubic-bezier(0.33, 1, 0.68, 1);
  transition: 0.1s cubic-bezier(0.33, 1, 0.68, 1);
  z-index: 1;
}

.rubric .rubric__anons--header {
  font-size: 20px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.rubric__arrow {
  left: 20px;
  position: absolute;
  top: 20px;
}

.rubric__arrow svg path {
  -webkit-transition: 0.3s cubic-bezier(0.33, 1, 0.68, 1);
  transition: 0.3s cubic-bezier(0.33, 1, 0.68, 1);
}

.rubric__link.active .rubric__bg,
.rubric__link:hover .rubric__bg {
  -webkit-filter: grayscale(0);
  filter: grayscale(0);
}

.rubric__link.active .rubric__header,
.rubric__link:hover .rubric__header {
  -webkit-animation: fadeOut 0.3s cubic-bezier(0.33, 1, 0.68, 1) forwards;
  animation: fadeOut 0.3s cubic-bezier(0.33, 1, 0.68, 1) forwards;
  opacity: 0;
}

.rubric__link.active .rubric__arrow svg path,
.rubric__link:hover .rubric__arrow svg path {
  fill: #01549a !important;
  color: #01549a !important;
}

.rubric__link.active .rubric__anons--header,
.rubric__link:hover .rubric__anons--header {
  color: #01549a;
  font-weight: 600;
}

.rubric__link.active .rubric__anons,
.rubric__link:hover .rubric__anons {
  -webkit-animation: fadeIn 0.9s cubic-bezier(0.33, 1, 0.68, 1) forwards;
  animation: fadeIn 0.9s cubic-bezier(0.33, 1, 0.68, 1) forwards;
  display: block !important;
  height: auto;
  opacity: 1;
}

.main_slider .swiper-slide img {
  aspect-ratio: 16/9;
  height: 100%;
  max-height: 900px;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  width: 100%;
}

.swiper-slide.con2 {
  background: skyblue;
}

.swiper-slide.con3 {
  background: green;
}

.swiper-container-horizontal
  > .swiper-pagination-bullet_olds
  .swiper-pagination-bullet_old {
  margin: 0 20px 0 0;
}

.swiper-pagination-bullet_old {
  background-color: rgba(0, 0, 0, 0);
  -webkit-border-radius: 0;
  border-radius: 0;
  height: auto;
  margin-right: 20px;
  opacity: 1;
  position: relative;
  text-align: left;
  width: 80px;
}

.swiper-pagination-bullet_old em {
  color: #111;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.38px;
  line-height: 28px;
}

.swiper-pagination-bullet_old i {
  background-color: #909090;
  bottom: 0;
  height: 2px;
  left: 0;
  position: absolute;
  width: 100%;
  z-index: 1;
}

.swiper-pagination-bullet_old b {
  background-color: #fff;
  bottom: 0;
  height: 2px;
  left: 0;
  position: absolute;
  width: 0;
  z-index: 2;
}

.swiper-pagination-bullet_old-active {
  background-color: rgba(0, 0, 0, 0);
}

.swiper-pagination-bullet_old-active b {
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
  -webkit-animation-duration: 5s;
  animation-duration: 5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-name: countingBar;
  animation-name: countingBar;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

@-webkit-keyframes countingBar {
  0% {
    width: 0;
  }

  to {
    width: 100%;
  }
}

@keyframes countingBar {
  0% {
    width: 0;
  }

  to {
    width: 100%;
  }
}

.swiper-pagination--number.swiper-pagination-bullet_old_new {
  background: red;
  bottom: 5px;
  display: none;
  left: 0;
  position: absolute;
}

.swiper-pagination--number.swiper-pagination-bullet_old_new.swiper-pagination-bullet_old-active {
  display: block;
}

.swiper-slide--number {
  bottom: 28px;
  color: #fff;
  font-size: 14px;
  left: 25px;
  position: absolute;
  z-index: 3;
}

.slide__header {
  bottom: 100px;
  color: #fff;
  font-size: 3vw;
  font-weight: 400;
  left: 40px;
  line-height: 1.1;
  max-width: 45vw;
  position: absolute;
  z-index: 2;
}

.swiper-pagination {
  bottom: 30px !important;
  margin-left: 60px;
  text-align: left;
}

.swiper__bg {
  background: rgba(0, 0, 0, 0.278);
  left: 0;
  pointer-events: none;
  top: 0;
  z-index: 2;
}

.slider .swiper-button-next,
.slider .swiper-button-prev {
  background: #fff;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  height: 60px !important;
  width: 60px !important;
}

.slider .swiper-button-next:after,
.slider .swiper-button-prev:after {
  color: #01549a;
  font-size: 13px !important;
}

.slider .swiper-button-next,
.slider .swiper-button-prev {
  -webkit-box-shadow: 0 0 28px -12px rgba(34, 60, 80, 0.21);
  box-shadow: 0 0 28px -12px rgba(34, 60, 80, 0.21);
  -webkit-transition:
    opacity 0.5s ease 0s,
    -webkit-transform 0.5s ease 0s;
  transition:
    opacity 0.5s ease 0s,
    -webkit-transform 0.5s ease 0s;
  transition:
    opacity 0.5s ease 0s,
    transform 0.5s ease 0s;
  transition:
    opacity 0.5s ease 0s,
    transform 0.5s ease 0s,
    -webkit-transform 0.5s ease 0s;
}

.slider .swiper-button-prev {
  cursor: pointer;
}

.slider:not(.swiper-initialized) {
  display: none;
}

.slide__header {
  font-size: 30px;
}

.rubrics_slider {
  padding-bottom: 35px;
  padding-top: 35px;
}

.rubrics_slider .swiper-slide {
  background-color: #f0f4f8;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  height: 100%;
  min-height: 200px;
  -webkit-transition:
    background-color 0.5s ease,
    box-shadow 0.5s ease;
  transition:
    background-color 0.5s ease,
    box-shadow 0.5s ease;
}

.rubrics_slider .swiper-slide:hover {
  background-color: #e5e5e5;
  -webkit-box-shadow: 0 0 54px -32px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 54px -32px rgba(0, 0, 0, 0.1);
}

.rubrics_slider .swiper-slide .slide__header--rubric {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-align-items: center;
  align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
  font-weight: 700;
  height: 100px;
  -webkit-justify-content: center;
  justify-content: center;
  margin-top: -10px;
  padding: 0 35px;
  text-align: center;
}

.rubrics_slider .swiper-slide img {
  -webkit-border-radius: 5px;
  border-radius: 5px;
  height: 100%;
  height: 80px;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  width: 80px;
}

.rubrics_slider .swiper-slide .swiper-slide--image {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-align-items: center;
  align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 140px;
  -webkit-justify-content: center;
  justify-content: center;
}

.swiper__bg--wrapper2 {
  -webkit-border-bottom-left-radius: 10px;
  border-bottom-left-radius: 10px;
  -webkit-border-top-right-radius: 10px;
  border-top-right-radius: 10px;
  color: #fff;
  font-size: 19px;
  max-width: 60%;
  padding: 30px 20px;
}

.swiper__bg--wrapper {
  bottom: 7px;
  left: 0;
  position: absolute;
  width: 100%;
  z-index: 1233444444;
}

.swiper__bg--text {
  position: relative;
}

.swiper__bg {
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  background: red;
  background: rgba(32, 32, 32, 0.49);
  -webkit-border-bottom-left-radius: 10px;
  border-bottom-left-radius: 10px;
  -webkit-border-top-right-radius: 50px;
  border-top-right-radius: 50px;
  height: 100%;
  max-width: 60%;
  position: absolute;
  width: 100%;
  z-index: -1;
}

.hero__swiper .btn__arrow {
  font-size: 12px;
}

.hero__swiper .swiper__bg--text {
  font-size: 15px;
}

.specials_slider--button--kp {
  width: 100%;
}

.specials_slider {
  margin-top: -18px;
}

.specials_slider .swiper-wrapper {
  margin: 20px 0;
}

.specials_slider .swiper-slide {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  background-color: #f0f4f8;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  height: auto;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-transition:
    background-color 0.5s ease,
    -webkit-box-shadow 0.5s ease;
  transition:
    background-color 0.5s ease,
    -webkit-box-shadow 0.5s ease;
  transition:
    background-color 0.5s ease,
    box-shadow 0.5s ease;
  transition:
    background-color 0.5s ease,
    box-shadow 0.5s ease,
    -webkit-box-shadow 0.5s ease;
}

.specials_slider .swiper-slide:hover {
  -webkit-box-shadow: 0 0 26px -7px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 26px -7px rgba(0, 0, 0, 0.1);
}

.specials_slider .specials_slider--item {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  display: block;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-transition: background-color 0.5s ease;
  transition: background-color 0.5s ease;
}

.specials_slider .specials_slider--item:hover {
  background-color: #fff;
}

.specials_slider .specials_slider--item:hover .specials_slider--image img {
  -webkit-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}

.specials_slider .specials_slider--image {
  height: 307px;
  height: 210px;
  margin: 20px;
  overflow: hidden;
}

.specials_slider .specials_slider--image img {
  height: 100%;
  mix-blend-mode: darken;
  -o-object-fit: contain;
  object-fit: contain;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transition: transform 0.5s ease;
  transition: transform 0.5s ease;
  width: 100%;
}

.specials_slider .specials_slider--name {
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.25;
  margin-bottom: 25px;
  overflow: hidden;
  padding: 0 20px;
  -webkit-transition: color 0.3s ease-out 0s;
  transition: color 0.3s ease-out 0s;
}

.specials_slider .specials_slider--price {
  font-weight: 600;
  padding: 0 20px;
}

.specials_slider .specials_slider--buttons {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding: 20px;
}

.specials_slider .specials_slider--buttons a {
  width: 100%;
}

.brends_slider .swiper-slide {
  height: 150px;
}

.brends_slider--image {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-align-items: center;
  align-items: center;
  background-color: #f3f3f3;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-justify-content: center;
  justify-content: center;
  padding: 20px;
  pointer-events: none;
}

.brends_slider--image img {
  max-width: 140px;
  width: auto;
}

.brends_slider .swiper-buttons {
  height: 100%;
  max-width: -webkit-calc(1903px - 7.5rem);
  max-width: calc(1903px - 7.5rem);
  pointer-events: none;
  position: absolute;
  top: 50%;
  width: 100%;
  z-index: 1;
}

.brends_slider .swiper-buttons--wrapper {
  position: relative;
}

.brends_slider .swiper-buttons .swiper-button {
  width: 50%;
}

.actual_slider .swiper-slide {
  height: auto;
}

.actual_slider--info {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: center;
  align-items: center;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 15px;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

.actual_slider .actual_slider--text {
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  font-size: 15px;
  overflow: hidden;
}

.actual_slider .actual_slider--name {
  font-size: 15px;
}

.actual_slider .actual_slider--more {
  color: #01549a;
  text-decoration: underline;
}

.actual_slider--wrapper {
  background-color: #01549a;
  background-image: url(/assets/images/bg.png);
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 35px 0;
  padding-bottom: 80px !important;
}

.actual_slider--wrapper .section__header {
  color: #fff;
}

.actual_slider--wrapper .swiper-button-next,
.actual_slider--wrapper .swiper-button-prev {
  position: unset;
}

.actual_slider--wrapper .swiper-button-prev {
  margin-right: 10px;
}

.actual_slider--buttons {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-align-items: center;
  align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

.actual_slider--buttons span {
  display: block;
}

.actual_slider--buttons svg {
  display: none;
}

.actual_slider--item {
  background-color: #fff;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  height: 100%;
  padding: 30px;
}

.actual_slider--item--wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  row-gap: 15px;
}

.actual_slider .actual_slider--name {
  font-size: 19px;
  font-weight: 600;
}

.hero__swiper .swiper-image img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.rubrics_slider {
  padding-top: 0;
}

.specials_slider .specials_slider--buttons,
.specials_slider .specials_slider--price {
  padding: 0 10px;
}

.specials_slider .specials_slider--buttons {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  gap: 5px;
  margin-bottom: 18px;
  margin-top: 10px;
}

.actual_slider .actual_slider--text {
  padding-right: 10%;
}

.actual_slider .actual_slider--item--wrapper {
  row-gap: 5px;
}

.actual_slider--wrapper {
  padding: 35px 0 80px !important;
}

.actual_slider--wrapper .container__left {
  padding-top: 30px;
}

.benefits_slider .benefits__bg img {
  -webkit-border-radius: 5px;
  border-radius: 5px;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.hero__swiper .swiper-pagination-bullet {
  max-width: 70px;
  width: -webkit-calc(100%/ (var(--hero__swiper-slides) * 2));
  width: calc(100% / (var(--hero__swiper-slides) * 2));
}

.specials_slider .specials_slider--buttons,
.specials_slider .specials_slider--price {
  padding: 0 20px;
}

.rubrics_slider .swiper-slide {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-align-items: center;
  align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}

.specials_slider .specials_slider--buttons,
.specials_slider .specials_slider--name,
.specials_slider .specials_slider--price {
  margin-bottom: 0 !important;
  padding: 0 !important;
}

.specials_slider .specials_slider--item {
  padding-bottom: 30px !important;
  padding-top: 0 !important;
  padding: 35px;
}

.specials_slider .specials_slider--name {
  margin-bottom: 20px !important;
}

.specials_slider .specials_slider--price {
  margin-bottom: 10px !important;
}

.specials {
  margin-top: -20px;
}

.specials_slider .swiper-slide {
  -webkit-border-radius: 5px;
  border-radius: 5px;
}

.new__slider_container {
  height: 100%;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.new__slider_container--wrapper {
  height: 100%;
  position: relative;
}

.new__slider {
  height: 470px;
}

.new__slider .swiper-slide {
  background-position-x: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 450px;
}

.new__slider .swiper-pagination-bullet {
  -webkit-border-radius: 0;
  border-radius: 0;
  height: 3px;
  max-width: 70px;
  width: -webkit-calc(100%/ (var(--hero__swiper-slides) * 2));
  width: calc(100% / (var(--hero__swiper-slides) * 2));
}

.new__slider .swiper-pagination {
  text-align: center;
}

.new__slider .new__slider--info--logo {
  height: 130px;
  left: 0;
  position: absolute;
  top: 0;
  width: 130px;
}

.new__slider .new__slider--info--header {
  color: #01549a;
  font-size: -webkit-calc(2.21519vw + 12.91139px);
  font-size: calc(2.21519vw + 12.91139px);
  line-height: 1;
  margin-bottom: 35px;
}

.new__slider .new__slider--info {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}

.new__slider .new__slider--info--button {
  margin-bottom: 40px;
}

.new__slider .limiter {
  margin: 0 auto;
  max-width: 1400px;
  width: 75%;
}

.new__slider .btn__blue--bordered {
  width: unset;
}

.new__slider .swiper-button-prev,
.new__slider .swiper-button-next {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.new__slider .swiper-pagination-bullet-active {
  background: #015499;
}

.new__slider .swiper-pagination {
  margin-left: 0;
}

.tabs {
  margin-bottom: 30px;
  margin-top: 30px;
}

.tabs ul {
  -webkit-column-gap: 10px;
  -moz-column-gap: 10px;
  column-gap: 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  row-gap: 5px;
}

.tabs ul li {
  margin-bottom: 5px;
}

.tabs ul li a {
  background-color: #f3f3f3;
  -webkit-border-radius: 20px;
  border-radius: 20px;
  display: inline-block;
  padding: 7px 14px;
  -webkit-transition:
    background-color 0.5s cubic-bezier(0.33, 1, 0.68, 1),
    color 0.3s cubic-bezier(0.33, 1, 0.68, 1);
  transition:
    background-color 0.5s cubic-bezier(0.33, 1, 0.68, 1),
    color 0.3s cubic-bezier(0.33, 1, 0.68, 1);
}

.tabs ul li a:hover {
  background-color: #01549a;
  color: #fff;
}

@-webkit-keyframes navItemSelected {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes navItemSelected {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.uppercase {
  text-transform: uppercase;
}

.btns {
  margin-bottom: 10px;
}

.fill--black {
  fill: #000;
  color: #000;
}

.svg,
.svg__inner {
  height: 1.33929vw;
  pointer-events: none;
  width: 1.33929vw;
}

.svg__inner {
  display: block;
  position: relative;
}

.svg__count,
.svg__inner .svg {
  position: absolute;
  text-align: center;
  top: 0;
}

.svg__inner .svg {
  display: block;
  height: 100%;
  left: 0;
  width: 100%;
}

.fill--red {
  fill: #ff2626;
  color: #ff2626;
}

.svg--hover {
  opacity: 0;
  -webkit-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0);
  -webkit-transition:
    opacity 0.5s ease 0s,
    -webkit-transform 0.6s cubic-bezier(0.4, 0, 0, 1) 0s;
  transition:
    opacity 0.5s ease 0s,
    -webkit-transform 0.6s cubic-bezier(0.4, 0, 0, 1) 0s;
  transition:
    transform 0.6s cubic-bezier(0.4, 0, 0, 1) 0s,
    opacity 0.5s ease 0s;
  transition:
    transform 0.6s cubic-bezier(0.4, 0, 0, 1) 0s,
    opacity 0.5s ease 0s,
    -webkit-transform 0.6s cubic-bezier(0.4, 0, 0, 1) 0s;
}

.svg__outer:hover .svg:not(.svg--hover) {
  opacity: 0;
  -webkit-transform: translate3d(0, 50%, 0);
  transform: translate3d(0, 50%, 0);
  -webkit-transition:
    opacity 0.5s ease 0s,
    -webkit-transform 0.6s cubic-bezier(0.4, 0, 0, 1) 0s;
  transition:
    opacity 0.5s ease 0s,
    -webkit-transform 0.6s cubic-bezier(0.4, 0, 0, 1) 0s;
  transition:
    transform 0.6s cubic-bezier(0.4, 0, 0, 1) 0s,
    opacity 0.5s ease 0s;
  transition:
    transform 0.6s cubic-bezier(0.4, 0, 0, 1) 0s,
    opacity 0.5s ease 0s,
    -webkit-transform 0.6s cubic-bezier(0.4, 0, 0, 1) 0s;
}

.svg__outer:hover .svg--hover {
  opacity: 1;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transition:
    opacity 0.5s ease 0.1s,
    -webkit-transform 0.6s cubic-bezier(0.4, 0, 0, 1) 0.1s;
  transition:
    opacity 0.5s ease 0.1s,
    -webkit-transform 0.6s cubic-bezier(0.4, 0, 0, 1) 0.1s;
  transition:
    transform 0.6s cubic-bezier(0.4, 0, 0, 1) 0.1s,
    opacity 0.5s ease 0.1s;
  transition:
    transform 0.6s cubic-bezier(0.4, 0, 0, 1) 0.1s,
    opacity 0.5s ease 0.1s,
    -webkit-transform 0.6s cubic-bezier(0.4, 0, 0, 1) 0.1s;
}

.category__fast-filters__one {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  background-color: #f2f2f2;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  cursor: pointer;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-weight: 400;
  height: 2.23214vw;
  margin-right: 0.44643vw;
  padding-left: 1.22768vw;
  padding-right: 1.22768vw;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap;
}

.category__fast-filters__one:hover .category__fast-filters__one__icon {
  -webkit-animation: trsXscale 3.5s linear infinite;
  animation: trsXscale 3.5s linear infinite;
}

@-webkit-keyframes trsXscale {
  15% {
    -webkit-transform: scale(1) translateZ(0);
    transform: scale(1) translateZ(0);
  }

  20% {
    -webkit-transform: scale(1.2) translate3d(4px, 0, 0);
    transform: scale(1.2) translate3d(4px, 0, 0);
  }

  25% {
    -webkit-transform: scale(1.2) translateZ(0);
    transform: scale(1.2) translateZ(0);
  }

  30% {
    -webkit-transform: scale(1.2) translate3d(4px, 0, 0);
    transform: scale(1.2) translate3d(4px, 0, 0);
  }

  35% {
    -webkit-transform: scale(1) translateZ(0);
    transform: scale(1) translateZ(0);
  }
}

@keyframes trsXscale {
  15% {
    -webkit-transform: scale(1) translateZ(0);
    transform: scale(1) translateZ(0);
  }

  20% {
    -webkit-transform: scale(1.2) translate3d(4px, 0, 0);
    transform: scale(1.2) translate3d(4px, 0, 0);
  }

  25% {
    -webkit-transform: scale(1.2) translateZ(0);
    transform: scale(1.2) translateZ(0);
  }

  30% {
    -webkit-transform: scale(1.2) translate3d(4px, 0, 0);
    transform: scale(1.2) translate3d(4px, 0, 0);
  }

  35% {
    -webkit-transform: scale(1) translateZ(0);
    transform: scale(1) translateZ(0);
  }
}

.prod-card__button {
  -ms-flex-negative: 0;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  height: 44px;
  position: relative;
}

.prod-card__inner {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  background: #f9f9f9;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding: 1.33929vw 0.89286vw 0;
  position: relative;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
  width: 100%;
  z-index: 1;
}

.prod-card__button--compare,
.prod-card__button--favorite {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-align-items: center;
  align-items: center;
  background: #fff;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 44px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-transition: -webkit-transform 0.3s
    cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: -webkit-transform 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: transform 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition:
    transform 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955),
    -webkit-transform 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  width: 44px;
  will-change: transform;
}

.prod-card__button--favorite:hover .svg__inner {
  -webkit-animation: trsYscale 2.4s linear infinite;
  animation: trsYscale 2.4s linear infinite;
}

@-webkit-keyframes trsYscale {
  15% {
    -webkit-transform: scale(1) translateZ(0);
    transform: scale(1) translateZ(0);
  }

  20% {
    -webkit-transform: scale(1.2) translate3d(0, 4px, 0);
    transform: scale(1.2) translate3d(0, 4px, 0);
  }

  25% {
    -webkit-transform: scale(1.2) translateZ(0);
    transform: scale(1.2) translateZ(0);
  }

  30% {
    -webkit-transform: scale(1.2) translate3d(0, 4px, 0);
    transform: scale(1.2) translate3d(0, 4px, 0);
  }

  35% {
    -webkit-transform: scale(1) translateZ(0);
    transform: scale(1) translateZ(0);
  }
}

@keyframes trsYscale {
  15% {
    -webkit-transform: scale(1) translateZ(0);
    transform: scale(1) translateZ(0);
  }

  20% {
    -webkit-transform: scale(1.2) translate3d(0, 4px, 0);
    transform: scale(1.2) translate3d(0, 4px, 0);
  }

  25% {
    -webkit-transform: scale(1.2) translateZ(0);
    transform: scale(1.2) translateZ(0);
  }

  30% {
    -webkit-transform: scale(1.2) translate3d(0, 4px, 0);
    transform: scale(1.2) translate3d(0, 4px, 0);
  }

  35% {
    -webkit-transform: scale(1) translateZ(0);
    transform: scale(1) translateZ(0);
  }
}

.category__fast-filters__one__name {
  color: #000;
  font-weight: 400;
  margin-right: 3px;
  text-decoration: none;
}

.svg:not(.svg--hover) {
  -webkit-transition:
    opacity 0.5s ease 0.1s,
    -webkit-transform 0.6s cubic-bezier(0.4, 0, 0, 1) 0.1s;
  transition:
    opacity 0.5s ease 0.1s,
    -webkit-transform 0.6s cubic-bezier(0.4, 0, 0, 1) 0.1s;
  transition:
    transform 0.6s cubic-bezier(0.4, 0, 0, 1) 0.1s,
    opacity 0.5s ease 0.1s;
  transition:
    transform 0.6s cubic-bezier(0.4, 0, 0, 1) 0.1s,
    opacity 0.5s ease 0.1s,
    -webkit-transform 0.6s cubic-bezier(0.4, 0, 0, 1) 0.1s;
}

.category__fast-filters__one__icon {
  margin-left: 0.44643vw;
}

.practices-link {
  color: inherit;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-size: 24px;
  position: relative;
  text-decoration: none;
  -webkit-transition: all 0.6s cubic-bezier(0.65, 0, 0.35, 1) 0s;
  transition: all 0.6s cubic-bezier(0.65, 0, 0.35, 1) 0s;
}

.practices-link .link {
  -webkit-transition: none;
  transition: none;
}

.practices-link .practices__item-dots {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-align-items: center;
  align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: inherit;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  margin-left: 20px;
  width: 30px;
}

.practices-link .practices__item-dots .dot {
  background: #173551;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  height: 6px;
  -webkit-transition: all 0.6s cubic-bezier(0.65, 0, 0.35, 1) 0s;
  transition: all 0.6s cubic-bezier(0.65, 0, 0.35, 1) 0s;
  width: 6px;
}

.practices-link:hover .dot:first-child {
  -webkit-transform: translateX(12px);
  -ms-transform: translateX(12px);
  transform: translateX(12px);
}

.practices-link:hover .dot:nth-child(2) {
  -webkit-transform: scale(1.6);
  -ms-transform: scale(1.6);
  transform: scale(1.6);
}

.practices-link:hover .dot:last-child {
  -webkit-transform: translateX(-12px);
  -ms-transform: translateX(-12px);
  transform: translateX(-12px);
}

.c-figure {
  -webkit-clip-path: inset(100px 50px);
  clip-path: inset(100px 50px);
  position: relative;
}

.c-figure--zoom {
  -webkit-transform: scale(0.6);
  -ms-transform: scale(0.6);
  transform: scale(0.6);
}

.c-figure--zoom .c-figure__image {
  -webkit-transform: scale(1.8);
  -ms-transform: scale(1.8);
  transform: scale(1.8);
  -webkit-transition: inherit;
  transition: inherit;
}

.c-figure--zoom.is-inview,
.c-figure--zoom.is-inview .c-figure__image,
.is-inview .c-figure--zoom,
.is-inview .c-figure--zoom .c-figure__image {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.c-figure__mask {
  background-color: rgba(0, 0, 0, 0.1);
  bottom: 0;
  display: block;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transition: opacity 0.15s;
  transition: opacity 0.15s;
}

.lazyloaded + .c-figure__mask {
  opacity: 0;
}

.tovar {
  background-color: #f8f8f8;
}

.tovar__head {
  display: none;
  margin-top: 15px;
  padding: 0 3.75rem;
}

.tovar__head--h1 {
  color: #3f3f40;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 25px;
  text-transform: uppercase;
}

.tovar__head .catalog__intro--breadcrumb {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.tovar__head .catalog__intro--breadcrumb ul {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.tovar .category__fast-filters__one {
  margin: 20px 1.4vw 20px 0;
}

.tovar__blocks {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.tovar__tab {
  margin: 0 auto;
  max-width: 1400px;
}

.tovar__tab--description {
  font-size: 16px;
}

.tovar__tab .h2,
.tovar__tab h2 {
  color: #3f3f40;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 25px;
}

.tovar__tabs {
  margin-bottom: 40px;
  max-width: 1400px;
}

.tovar__wrapper {
  margin: 0 auto;
  max-width: 1400px;
  padding: 50px 0;
}

.tovar__image img {
  height: 100%;
  mix-blend-mode: multiply;
}

.tovar .card__more {
  margin-top: 60px;
}

.tovar .catalog__intro--breadcrumb {
  margin-bottom: 15px;
}

.tovar .catalog__intro--breadcrumb a {
  color: #000;
}

.tovar__h1 .h1,
.tovar__h1 h1 {
  color: #3f3f40;
  font-size: 26px;
  font-weight: 600;
  text-transform: uppercase;
}

.tovar__price {
  font-size: 26px;
  font-weight: 600;
  margin: 25px 0;
}

.tovar__wrapper {
  position: relative;
}

.tovar__wrapper--info {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
  -webkit-justify-content: center;
  justify-content: center;
}

.tovar__specs {
  margin-top: 40px;
  max-width: 660px;
}

.tovar__specs li {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  margin-bottom: 10px;
}

.tovar__specs li span {
  background-color: #f8f8f8;
  display: block;
  padding: 3px;
}

.tovar__specs--icon {
  margin-right: 7px;
}

.tovar__tabs {
  border-bottom: 1px solid gray;
}

.tovar__tabs ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}

.tovar__tabs ul li a {
  display: block;
  font-size: 16px;
  padding-bottom: 10px;
  position: relative;
}

.tovar__tabs ul li a.active:after {
  background-color: #04b2d1;
  bottom: -1px;
  content: '';
  height: 4px;
  left: 0;
  position: absolute;
  width: 100%;
}

body {
  background: #fff;
  color: #3f3f40;
  font-family: Inter, sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-variant-numeric: lining-nums;
  font-variation-settings: 'slnt' 0;
  overflow-x: hidden;
  width: 100%;
}

body,
p {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: -1px;
  line-height: 145%;
}

.h1,
.h2,
.h3,
.h4,
h1,
h2,
h3,
h4 {
  color: #fff;
  font-style: normal;
  font-weight: 700;
  letter-spacing: -2px;
}

.h1,
h1 {
  font-size: 60px;
  font-size: 20px;
  font-weight: 700;
}

.h3,
h3 {
  font-size: 18px;
  margin-bottom: 20px;
}

.h3,
a,
h3 {
  color: #3f3f40;
}

a {
  text-decoration: none;
}

.title {
  font-family: Oranienbaum, serif;
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.dev {
  background-color: rgba(255, 0, 0, 0.051);
}

#resizer {
  background: #567937;
  border: #3a3a3a;
  bottom: 0;
  color: #fff;
  display: block;
  left: 0;
  padding: 5px 10px;
  position: fixed;
  z-index: 10000000;
}

input[type='number']::-webkit-inner-spin-button,
input[type='number']::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.container-section {
  max-width: 1900px;
  padding: 0 3.75rem;
}

.separate {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

.dev {
  background-color: rgba(255, 0, 0, 0.059);
}

html {
  -webkit-text-size-adjust: none;
}

.more-btn:before {
  background: #01549a;
}

.bottom_gutter {
  margin-bottom: 60px;
}

.cursor--drag,
.relative {
  position: relative;
}

.cursor--drag {
  height: 16px;
  width: 16px;
}

.cursor--drag svg {
  height: auto;
  left: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 7px;
}

.bg__image {
  background-attachment: fixed;
  background-position: 50%;
  background-size: cover;
  height: 60vh;
  width: 100vw;
}

.half__colored {
  position: relative;
}

.half__colored:before {
  background-color: #f3f3f3;
  content: '';
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 50vw;
  z-index: -1;
}

.half__colored:after {
  content: '';
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  width: 50vw;
  z-index: -1;
}

.dotted {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzIiBoZWlnaHQ9IjEiIGZpbGw9Im5vbmUiPjxwYXRoIGQ9Ik0wIC41aDMiIHN0cm9rZT0iIzgyODI4MiIgc3Ryb2tlLWRhc2hhcnJheT0iMSAyIi8+PC9zdmc+);
  background-position-x: 0;
  background-position-y: -webkit-calc(100% - 8px);
  background-position-y: calc(100% - 8px);
  background-repeat: repeat-x;
  margin-bottom: 8px;
  vertical-align: bottom;
}

.content__container {
  margin: 0 auto;
  max-width: 1400px;
  padding: 0 1.2rem;
}

::-webkit-scrollbar {
  width: 1px;
}

::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0);
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  cursor: auto;
  opacity: 0.35 !important;
  pointer-events: all;
}

.flexible {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  -webkit-flex-grow: 1;
  flex-grow: 1;
}

.section__header {
  color: #01549a;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: -2px;
  margin-bottom: 30px;
  margin-top: 4px;
}

.section__text,
.section__text p {
  font-size: 15px;
}

.section__text b,
.section__text p b,
.section__text p strong,
.section__text strong {
  color: #01549a;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
blockquote,
h1,
h2,
h3,
h4,
h5,
h6,
p {
  text-wrap: balance;
}

.lined {
  border-top: 1px solid #c4c4c4;
  margin-top: 35px;
  padding-top: 35px;
}

.lined_bottom {
  border-bottom: 1px solid #c4c4c4;
  margin-bottom: 35px;
  padding-bottom: 35px;
}

.container__left {
  margin-left: auto;
  max-width: -webkit-calc(1900px + 7.5rem);
  max-width: calc(1900px + 7.5rem);
  padding-left: 3.75rem;
}

.benefits {
  padding: 35px 0 70px;
}

.benefits__bg img {
  -webkit-border-radius: 5px;
  border-radius: 5px;
}

.h1,
h1 {
  font-size: 30px;
  font-weight: 400;
}

.mobile__footer__section {
  margin-top: 20px;
}

.mobile__footer__section .footer__text,
.mobile__footer__section .footer__text a {
  font-size: 20px;
}

.mobile-menu__title {
  font-size: 18px;
  font-weight: 700;
}

.fixed .footer__copyright {
  display: none;
}

.fixed .footer__menu a,
.fixed .rubric__small {
  font-size: 18px;
}

main {
  padding-top: 150px;
}

.desktop-mega-menu {
  top: 150px;
}

.catalog__new .catalog__item {
  -webkit-border-radius: 5px;
  border-radius: 5px;
}

.scroll-x {
  overflow-x: scroll;
}

@supports (-webkit-overflow-scrolling: touch) {
  .scroll-x {
    -webkit-overflow-scrolling: touch;
  }
}

.catalog__new .tabs ul li a {
  white-space: nowrap;
}

.slider .swiper-button-next:after,
.slider .swiper-button-prev:after {
  font-size: 14px !important;
  font-weight: bolder;
}

.is-scroll-x {
  overflow-x: scroll;
  scroll-behavior: smooth;
}

@supports (-webkit-overflow-scrolling: touch) {
  .is-scroll-x {
    -webkit-overflow-scrolling: touch;
  }
}

.has-no-scrollbar {
  scrollbar-width: none;
}

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}

/* WA btn */
.fix-btn-pg {
  z-index: 100;
  position: relative;
}

.whatsapp-button {
  background: #25d366;
  border: 3px solid #1cc15a;
  border-radius: 50%;
  box-shadow: 0 8px 10px rgba(7, 206, 112, 0.6);
  cursor: pointer;
  height: 68px;
  text-align: center;
  width: 68px;
  position: fixed;
  right: 5%;
  bottom: 6%;
  z-index: 9999;
  transition: 0.3s;
  -webkit-animation: hoverWave linear 1s infinite;
  animation: hoverWave linear 1s infinite;
}

.whatsapp-button .text-button {
  height: 68px;
  width: 68px;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
}

.whatsapp-button .text-button span {
  text-align: center;
  color: #23a455;
  opacity: 0;
  font-size: 0;
  position: absolute;
  right: 12px;
  top: 24px;
  line-height: 14px;
  font-weight: 600;
  transition: opacity 0.3s linear;
}

.whatsapp-button .text-button:hover span {
  opacity: 1;
  font-size: 9px;
}

.whatsapp-button:hover i {
  display: none;
}

.whatsapp-button:hover {
  z-index: 1;
  background: #fff;
  color: transparent;
  transition: 0.3s;
}

.whatsapp-button:hover i {
  color: #25d366;
  font-size: 44px;
  transition: 0.3s;
}

.whatsapp-button i {
  color: #fff;
  font-size: 37px;
  transition: 0.3s;
  line-height: 72px;
  transition: 0.5s ease-in-out;
  animation: 1200ms ease 0s normal none 1 running shake;
  animation-iteration-count: infinite;
  -webkit-animation: 1200ms ease 0s normal none 1 running shake;
  -webkit-animation-iteration-count: infinite;
  margin-left: -4px;
}

@-webkit-keyframes hoverWave {
  0% {
    box-shadow:
      0 8px 10px rgba(7, 206, 112, 0.3),
      0 0 0 0 rgba(7, 206, 112, 0.2),
      0 0 0 0 rgba(7, 206, 112, 0.2);
  }

  40% {
    box-shadow:
      0 8px 10px rgba(7, 206, 112, 0.3),
      0 0 0 15px rgba(7, 206, 112, 0.2),
      0 0 0 0 rgba(7, 206, 112, 0.2);
  }

  80% {
    box-shadow:
      0 8px 10px rgba(7, 206, 112, 0.3),
      0 0 0 30px rgba(7, 206, 112, 0),
      0 0 0 26.7px rgba(7, 206, 112, 0.067);
  }

  100% {
    box-shadow:
      0 8px 10px rgba(7, 206, 112, 0.3),
      0 0 0 30px rgba(7, 206, 112, 0),
      0 0 0 40px rgba(7, 206, 112, 0);
  }
}

@keyframes hoverWave {
  0% {
    box-shadow:
      0 8px 10px rgba(7, 206, 112, 0.3),
      0 0 0 0 rgba(7, 206, 112, 0.2),
      0 0 0 0 rgba(7, 206, 112, 0.2);
  }

  40% {
    box-shadow:
      0 8px 10px rgba(7, 206, 112, 0.3),
      0 0 0 15px rgba(7, 206, 112, 0.2),
      0 0 0 0 rgba(7, 206, 112, 0.2);
  }

  80% {
    box-shadow:
      0 8px 10px rgba(7, 206, 112, 0.3),
      0 0 0 30px rgba(7, 206, 112, 0),
      0 0 0 26.7px rgba(7, 206, 112, 0.067);
  }

  100% {
    box-shadow:
      0 8px 10px rgba(7, 206, 112, 0.3),
      0 0 0 30px rgba(7, 206, 112, 0),
      0 0 0 40px rgba(7, 206, 112, 0);
  }
}

@keyframes shake {
  0% {
    transform: rotateZ(0deg);
    -ms-transform: rotateZ(0deg);
    -webkit-transform: rotateZ(0deg);
  }

  10% {
    transform: rotateZ(-30deg);
    -ms-transform: rotateZ(-30deg);
    -webkit-transform: rotateZ(-30deg);
  }

  20% {
    transform: rotateZ(15deg);
    -ms-transform: rotateZ(15deg);
    -webkit-transform: rotateZ(15deg);
  }

  30% {
    transform: rotateZ(-10deg);
    -ms-transform: rotateZ(-10deg);
    -webkit-transform: rotateZ(-10deg);
  }

  40% {
    transform: rotateZ(7.5deg);
    -ms-transform: rotateZ(7.5deg);
    -webkit-transform: rotateZ(7.5deg);
  }

  50% {
    transform: rotateZ(-6deg);
    -ms-transform: rotateZ(-6deg);
    -webkit-transform: rotateZ(-6deg);
  }

  60% {
    transform: rotateZ(5deg);
    -ms-transform: rotateZ(5deg);
    -webkit-transform: rotateZ(5deg);
  }

  70% {
    transform: rotateZ(-4.28571deg);
    -ms-transform: rotateZ(-4.28571deg);
    -webkit-transform: rotateZ(-4.28571deg);
  }

  80% {
    transform: rotateZ(3.75deg);
    -ms-transform: rotateZ(3.75deg);
    -webkit-transform: rotateZ(3.75deg);
  }

  90% {
    transform: rotateZ(-3.33333deg);
    -ms-transform: rotateZ(-3.33333deg);
    -webkit-transform: rotateZ(-3.33333deg);
  }

  100% {
    transform: rotateZ(0deg);
    -ms-transform: rotateZ(0deg);
    -webkit-transform: rotateZ(0deg);
  }
}

@-webkit-keyframes shake {
  0% {
    transform: rotateZ(0deg);
    -ms-transform: rotateZ(0deg);
    -webkit-transform: rotateZ(0deg);
  }

  10% {
    transform: rotateZ(-30deg);
    -ms-transform: rotateZ(-30deg);
    -webkit-transform: rotateZ(-30deg);
  }

  20% {
    transform: rotateZ(15deg);
    -ms-transform: rotateZ(15deg);
    -webkit-transform: rotateZ(15deg);
  }

  30% {
    transform: rotateZ(-10deg);
    -ms-transform: rotateZ(-10deg);
    -webkit-transform: rotateZ(-10deg);
  }

  40% {
    transform: rotateZ(7.5deg);
    -ms-transform: rotateZ(7.5deg);
    -webkit-transform: rotateZ(7.5deg);
  }

  50% {
    transform: rotateZ(-6deg);
    -ms-transform: rotateZ(-6deg);
    -webkit-transform: rotateZ(-6deg);
  }

  60% {
    transform: rotateZ(5deg);
    -ms-transform: rotateZ(5deg);
    -webkit-transform: rotateZ(5deg);
  }

  70% {
    transform: rotateZ(-4.28571deg);
    -ms-transform: rotateZ(-4.28571deg);
    -webkit-transform: rotateZ(-4.28571deg);
  }

  80% {
    transform: rotateZ(3.75deg);
    -ms-transform: rotateZ(3.75deg);
    -webkit-transform: rotateZ(3.75deg);
  }

  90% {
    transform: rotateZ(-3.33333deg);
    -ms-transform: rotateZ(-3.33333deg);
    -webkit-transform: rotateZ(-3.33333deg);
  }

  100% {
    transform: rotateZ(0deg);
    -ms-transform: rotateZ(0deg);
    -webkit-transform: rotateZ(0deg);
  }
}

@media (min-width: 1200px) {
  .h1,
  h1 {
    font-size: 2.5rem;
  }

  .h2,
  h2 {
    font-size: 2rem;
  }

  .h3,
  h3 {
    font-size: 1.75rem;
  }

  .h4,
  h4,
  legend {
    font-size: 1.5rem;
  }

  .display-1 {
    font-size: 5rem;
  }

  .display-2 {
    font-size: 4.5rem;
  }

  .display-3 {
    font-size: 4rem;
  }

  .display-4 {
    font-size: 3.5rem;
  }

  .display-5 {
    font-size: 3rem;
  }

  .display-6 {
    font-size: 2.5rem;
  }

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1140px;
  }

  .col-xl {
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 0%;
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
  }

  .row-cols-xl-auto > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }

  .row-cols-xl-1 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }

  .row-cols-xl-2 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }

  .row-cols-xl-3 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.33333333%;
  }

  .row-cols-xl-4 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }

  .row-cols-xl-5 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 20%;
  }

  .row-cols-xl-6 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.66666667%;
  }

  .col-xl-auto {
    width: auto;
  }

  .col-xl-1,
  .col-xl-auto {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }

  .col-xl-1 {
    width: 8.33333333%;
  }

  .col-xl-2 {
    width: 16.66666667%;
  }

  .col-xl-2,
  .col-xl-3 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }

  .col-xl-3 {
    width: 25%;
  }

  .col-xl-4 {
    width: 33.33333333%;
  }

  .col-xl-4,
  .col-xl-5 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }

  .col-xl-5 {
    width: 41.66666667%;
  }

  .col-xl-6 {
    width: 50%;
  }

  .col-xl-6,
  .col-xl-7 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }

  .col-xl-7 {
    width: 58.33333333%;
  }

  .col-xl-8 {
    width: 66.66666667%;
  }

  .col-xl-8,
  .col-xl-9 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }

  .col-xl-9 {
    width: 75%;
  }

  .col-xl-10 {
    width: 83.33333333%;
  }

  .col-xl-10,
  .col-xl-11 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }

  .col-xl-11 {
    width: 91.66666667%;
  }

  .col-xl-12 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }

  .offset-xl-0 {
    margin-left: 0;
  }

  .offset-xl-1 {
    margin-left: 8.33333333%;
  }

  .offset-xl-2 {
    margin-left: 16.66666667%;
  }

  .offset-xl-3 {
    margin-left: 25%;
  }

  .offset-xl-4 {
    margin-left: 33.33333333%;
  }

  .offset-xl-5 {
    margin-left: 41.66666667%;
  }

  .offset-xl-6 {
    margin-left: 50%;
  }

  .offset-xl-7 {
    margin-left: 58.33333333%;
  }

  .offset-xl-8 {
    margin-left: 66.66666667%;
  }

  .offset-xl-9 {
    margin-left: 75%;
  }

  .offset-xl-10 {
    margin-left: 83.33333333%;
  }

  .offset-xl-11 {
    margin-left: 91.66666667%;
  }

  .g-xl-0,
  .gx-xl-0 {
    --bs-gutter-x: 0;
  }

  .g-xl-0,
  .gy-xl-0 {
    --bs-gutter-y: 0;
  }

  .g-xl-1,
  .gx-xl-1 {
    --bs-gutter-x: 0.25rem;
  }

  .g-xl-1,
  .gy-xl-1 {
    --bs-gutter-y: 0.25rem;
  }

  .g-xl-2,
  .gx-xl-2 {
    --bs-gutter-x: 0.5rem;
  }

  .g-xl-2,
  .gy-xl-2 {
    --bs-gutter-y: 0.5rem;
  }

  .g-xl-3,
  .gx-xl-3 {
    --bs-gutter-x: 1rem;
  }

  .g-xl-3,
  .gy-xl-3 {
    --bs-gutter-y: 1rem;
  }

  .g-xl-4,
  .gx-xl-4 {
    --bs-gutter-x: 1.5rem;
  }

  .g-xl-4,
  .gy-xl-4 {
    --bs-gutter-y: 1.5rem;
  }

  .g-xl-5,
  .gx-xl-5 {
    --bs-gutter-x: 3rem;
  }

  .g-xl-5,
  .gy-xl-5 {
    --bs-gutter-y: 3rem;
  }

  .g-xl-6,
  .gx-xl-6 {
    --bs-gutter-x: 3.5rem;
  }

  .g-xl-6,
  .gy-xl-6 {
    --bs-gutter-y: 3.5rem;
  }

  .g-xl-7,
  .gx-xl-7 {
    --bs-gutter-x: 4rem;
  }

  .g-xl-7,
  .gy-xl-7 {
    --bs-gutter-y: 4rem;
  }

  .g-xl-8,
  .gx-xl-8 {
    --bs-gutter-x: 4.5rem;
  }

  .g-xl-8,
  .gy-xl-8 {
    --bs-gutter-y: 4.5rem;
  }

  .g-xl-9,
  .gx-xl-9 {
    --bs-gutter-x: 5rem;
  }

  .g-xl-9,
  .gy-xl-9 {
    --bs-gutter-y: 5rem;
  }

  .g-xl-10,
  .gx-xl-10 {
    --bs-gutter-x: 5.5rem;
  }

  .g-xl-10,
  .gy-xl-10 {
    --bs-gutter-y: 5.5rem;
  }

  .sticky-xl-top {
    top: 0;
  }

  .sticky-xl-bottom,
  .sticky-xl-top {
    position: -webkit-sticky;
    position: sticky;
    z-index: 1020;
  }

  .sticky-xl-bottom {
    bottom: 0;
  }

  .float-xl-start {
    float: left !important;
  }

  .float-xl-end {
    float: right !important;
  }

  .float-xl-none {
    float: none !important;
  }

  .object-fit-xl-contain {
    -o-object-fit: contain !important;
    object-fit: contain !important;
  }

  .object-fit-xl-cover {
    -o-object-fit: cover !important;
    object-fit: cover !important;
  }

  .object-fit-xl-fill {
    -o-object-fit: fill !important;
    object-fit: fill !important;
  }

  .object-fit-xl-scale {
    -o-object-fit: scale-down !important;
    object-fit: scale-down !important;
  }

  .object-fit-xl-none {
    -o-object-fit: none !important;
    object-fit: none !important;
  }

  .d-xl-inline {
    display: inline !important;
  }

  .d-xl-inline-block {
    display: inline-block !important;
  }

  .d-xl-block {
    display: block !important;
  }

  .d-xl-grid {
    display: grid !important;
  }

  .d-xl-inline-grid {
    display: inline-grid !important;
  }

  .d-xl-table {
    display: table !important;
  }

  .d-xl-table-row {
    display: table-row !important;
  }

  .d-xl-table-cell {
    display: table-cell !important;
  }

  .d-xl-flex {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .d-xl-inline-flex {
    display: -webkit-inline-box !important;
    display: -webkit-inline-flex !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }

  .d-xl-none {
    display: none !important;
  }

  .w-xl-10 {
    width: 10% !important;
  }

  .w-xl-15 {
    width: 15% !important;
  }

  .w-xl-20 {
    width: 20% !important;
  }

  .w-xl-25 {
    width: 25% !important;
  }

  .w-xl-30 {
    width: 30% !important;
  }

  .w-xl-35 {
    width: 35% !important;
  }

  .w-xl-40 {
    width: 40% !important;
  }

  .w-xl-45 {
    width: 45% !important;
  }

  .w-xl-50 {
    width: 50% !important;
  }

  .w-xl-55 {
    width: 55% !important;
  }

  .w-xl-60 {
    width: 60% !important;
  }

  .w-xl-65 {
    width: 65% !important;
  }

  .w-xl-70 {
    width: 70% !important;
  }

  .w-xl-75 {
    width: 75% !important;
  }

  .w-xl-80 {
    width: 80% !important;
  }

  .w-xl-85 {
    width: 85% !important;
  }

  .w-xl-90 {
    width: 90% !important;
  }

  .w-xl-95 {
    width: 95% !important;
  }

  .w-xl-100 {
    width: 100% !important;
  }

  .w-xl-auto {
    width: auto !important;
  }

  .flex-xl-fill {
    -webkit-box-flex: 1 !important;
    -webkit-flex: 1 1 auto !important;
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }

  .flex-xl-row {
    -webkit-box-orient: horizontal !important;
    -webkit-flex-direction: row !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }

  .flex-xl-column,
  .flex-xl-row {
    -webkit-box-direction: normal !important;
  }

  .flex-xl-column {
    -webkit-box-orient: vertical !important;
    -webkit-flex-direction: column !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }

  .flex-xl-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -webkit-flex-direction: row-reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }

  .flex-xl-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -webkit-flex-direction: column-reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }

  .flex-xl-grow-0 {
    -webkit-box-flex: 0 !important;
    -ms-flex-positive: 0 !important;
    -webkit-flex-grow: 0 !important;
    flex-grow: 0 !important;
  }

  .flex-xl-grow-1 {
    -webkit-box-flex: 1 !important;
    -ms-flex-positive: 1 !important;
    -webkit-flex-grow: 1 !important;
    flex-grow: 1 !important;
  }

  .flex-xl-shrink-0 {
    -ms-flex-negative: 0 !important;
    -webkit-flex-shrink: 0 !important;
    flex-shrink: 0 !important;
  }

  .flex-xl-shrink-1 {
    -ms-flex-negative: 1 !important;
    -webkit-flex-shrink: 1 !important;
    flex-shrink: 1 !important;
  }

  .flex-xl-wrap {
    -webkit-flex-wrap: wrap !important;
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }

  .flex-xl-nowrap {
    -webkit-flex-wrap: nowrap !important;
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }

  .flex-xl-wrap-reverse {
    -webkit-flex-wrap: wrap-reverse !important;
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }

  .justify-content-xl-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    -webkit-justify-content: flex-start !important;
    justify-content: flex-start !important;
  }

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

  .justify-content-xl-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    -webkit-justify-content: center !important;
    justify-content: center !important;
  }

  .justify-content-xl-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    -webkit-justify-content: space-between !important;
    justify-content: space-between !important;
  }

  .justify-content-xl-around {
    -ms-flex-pack: distribute !important;
    -webkit-justify-content: space-around !important;
    justify-content: space-around !important;
  }

  .justify-content-xl-evenly {
    -webkit-box-pack: space-evenly !important;
    -ms-flex-pack: space-evenly !important;
    -webkit-justify-content: space-evenly !important;
    justify-content: space-evenly !important;
  }

  .align-items-xl-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    -webkit-align-items: flex-start !important;
    align-items: flex-start !important;
  }

  .align-items-xl-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    -webkit-align-items: flex-end !important;
    align-items: flex-end !important;
  }

  .align-items-xl-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    -webkit-align-items: center !important;
    align-items: center !important;
  }

  .align-items-xl-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    -webkit-align-items: baseline !important;
    align-items: baseline !important;
  }

  .align-items-xl-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    -webkit-align-items: stretch !important;
    align-items: stretch !important;
  }

  .align-content-xl-start {
    -ms-flex-line-pack: start !important;
    -webkit-align-content: flex-start !important;
    align-content: flex-start !important;
  }

  .align-content-xl-end {
    -ms-flex-line-pack: end !important;
    -webkit-align-content: flex-end !important;
    align-content: flex-end !important;
  }

  .align-content-xl-center {
    -ms-flex-line-pack: center !important;
    -webkit-align-content: center !important;
    align-content: center !important;
  }

  .align-content-xl-between {
    -ms-flex-line-pack: justify !important;
    -webkit-align-content: space-between !important;
    align-content: space-between !important;
  }

  .align-content-xl-around {
    -ms-flex-line-pack: distribute !important;
    -webkit-align-content: space-around !important;
    align-content: space-around !important;
  }

  .align-content-xl-stretch {
    -ms-flex-line-pack: stretch !important;
    -webkit-align-content: stretch !important;
    align-content: stretch !important;
  }

  .align-self-xl-auto {
    -ms-flex-item-align: auto !important;
    -webkit-align-self: auto !important;
    align-self: auto !important;
  }

  .align-self-xl-start {
    -ms-flex-item-align: start !important;
    -webkit-align-self: flex-start !important;
    align-self: flex-start !important;
  }

  .align-self-xl-end {
    -ms-flex-item-align: end !important;
    -webkit-align-self: flex-end !important;
    align-self: flex-end !important;
  }

  .align-self-xl-center {
    -ms-flex-item-align: center !important;
    -webkit-align-self: center !important;
    align-self: center !important;
  }

  .align-self-xl-baseline {
    -ms-flex-item-align: baseline !important;
    -webkit-align-self: baseline !important;
    align-self: baseline !important;
  }

  .align-self-xl-stretch {
    -ms-flex-item-align: stretch !important;
    -webkit-align-self: stretch !important;
    align-self: stretch !important;
  }

  .order-xl-first {
    -webkit-box-ordinal-group: 0 !important;
    -ms-flex-order: -1 !important;
    -webkit-order: -1 !important;
    order: -1 !important;
  }

  .order-xl-0 {
    -webkit-box-ordinal-group: 1 !important;
    -ms-flex-order: 0 !important;
    -webkit-order: 0 !important;
    order: 0 !important;
  }

  .order-xl-1 {
    -webkit-box-ordinal-group: 2 !important;
    -ms-flex-order: 1 !important;
    -webkit-order: 1 !important;
    order: 1 !important;
  }

  .order-xl-2 {
    -webkit-box-ordinal-group: 3 !important;
    -ms-flex-order: 2 !important;
    -webkit-order: 2 !important;
    order: 2 !important;
  }

  .order-xl-3 {
    -webkit-box-ordinal-group: 4 !important;
    -ms-flex-order: 3 !important;
    -webkit-order: 3 !important;
    order: 3 !important;
  }

  .order-xl-4 {
    -webkit-box-ordinal-group: 5 !important;
    -ms-flex-order: 4 !important;
    -webkit-order: 4 !important;
    order: 4 !important;
  }

  .order-xl-5 {
    -webkit-box-ordinal-group: 6 !important;
    -ms-flex-order: 5 !important;
    -webkit-order: 5 !important;
    order: 5 !important;
  }

  .order-xl-6 {
    -webkit-box-ordinal-group: 7 !important;
    -ms-flex-order: 6 !important;
    -webkit-order: 6 !important;
    order: 6 !important;
  }

  .order-xl-7 {
    -webkit-box-ordinal-group: 8 !important;
    -ms-flex-order: 7 !important;
    -webkit-order: 7 !important;
    order: 7 !important;
  }

  .order-xl-8 {
    -webkit-box-ordinal-group: 9 !important;
    -ms-flex-order: 8 !important;
    -webkit-order: 8 !important;
    order: 8 !important;
  }

  .order-xl-9 {
    -webkit-box-ordinal-group: 10 !important;
    -ms-flex-order: 9 !important;
    -webkit-order: 9 !important;
    order: 9 !important;
  }

  .order-xl-10 {
    -webkit-box-ordinal-group: 11 !important;
    -ms-flex-order: 10 !important;
    -webkit-order: 10 !important;
    order: 10 !important;
  }

  .order-xl-11 {
    -webkit-box-ordinal-group: 12 !important;
    -ms-flex-order: 11 !important;
    -webkit-order: 11 !important;
    order: 11 !important;
  }

  .order-xl-last {
    -webkit-box-ordinal-group: 13 !important;
    -ms-flex-order: 12 !important;
    -webkit-order: 12 !important;
    order: 12 !important;
  }

  .m-xl-0 {
    margin: 0 !important;
  }

  .m-xl-1 {
    margin: 0.25rem !important;
  }

  .m-xl-2 {
    margin: 0.5rem !important;
  }

  .m-xl-3 {
    margin: 1rem !important;
  }

  .m-xl-4 {
    margin: 1.5rem !important;
  }

  .m-xl-5 {
    margin: 3rem !important;
  }

  .m-xl-6 {
    margin: 5rem !important;
  }

  .m-xl-7 {
    margin: 7rem !important;
  }

  .m-xl-8 {
    margin: 8rem !important;
  }

  .m-xl-9 {
    margin: 9rem !important;
  }

  .m-xl-10 {
    margin: 10rem !important;
  }

  .m-xl-11 {
    margin: 11rem !important;
  }

  .m-xl-12 {
    margin: 12rem !important;
  }

  .m-xl-13 {
    margin: 13rem !important;
  }

  .m-xl-14 {
    margin: 14rem !important;
  }

  .m-xl-15 {
    margin: 15rem !important;
  }

  .m-xl-16 {
    margin: 16rem !important;
  }

  .m-xl-17 {
    margin: 17rem !important;
  }

  .m-xl-18 {
    margin: 18rem !important;
  }

  .m-xl-19 {
    margin: 19rem !important;
  }

  .m-xl-20 {
    margin: 20rem !important;
  }

  .m-xl-21 {
    margin: 21rem !important;
  }

  .m-xl-auto {
    margin: auto !important;
  }

  .mx-xl-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .mx-xl-1 {
    margin-left: 0.25rem !important;
    margin-right: 0.25rem !important;
  }

  .mx-xl-2 {
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
  }

  .mx-xl-3 {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }

  .mx-xl-4 {
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
  }

  .mx-xl-5 {
    margin-left: 3rem !important;
    margin-right: 3rem !important;
  }

  .mx-xl-6 {
    margin-left: 5rem !important;
    margin-right: 5rem !important;
  }

  .mx-xl-7 {
    margin-left: 7rem !important;
    margin-right: 7rem !important;
  }

  .mx-xl-8 {
    margin-left: 8rem !important;
    margin-right: 8rem !important;
  }

  .mx-xl-9 {
    margin-left: 9rem !important;
    margin-right: 9rem !important;
  }

  .mx-xl-10 {
    margin-left: 10rem !important;
    margin-right: 10rem !important;
  }

  .mx-xl-11 {
    margin-left: 11rem !important;
    margin-right: 11rem !important;
  }

  .mx-xl-12 {
    margin-left: 12rem !important;
    margin-right: 12rem !important;
  }

  .mx-xl-13 {
    margin-left: 13rem !important;
    margin-right: 13rem !important;
  }

  .mx-xl-14 {
    margin-left: 14rem !important;
    margin-right: 14rem !important;
  }

  .mx-xl-15 {
    margin-left: 15rem !important;
    margin-right: 15rem !important;
  }

  .mx-xl-16 {
    margin-left: 16rem !important;
    margin-right: 16rem !important;
  }

  .mx-xl-17 {
    margin-left: 17rem !important;
    margin-right: 17rem !important;
  }

  .mx-xl-18 {
    margin-left: 18rem !important;
    margin-right: 18rem !important;
  }

  .mx-xl-19 {
    margin-left: 19rem !important;
    margin-right: 19rem !important;
  }

  .mx-xl-20 {
    margin-left: 20rem !important;
    margin-right: 20rem !important;
  }

  .mx-xl-21 {
    margin-left: 21rem !important;
    margin-right: 21rem !important;
  }

  .mx-xl-auto {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .my-xl-0 {
    margin-bottom: 0 !important;
    margin-top: 0 !important;
  }

  .my-xl-1 {
    margin-bottom: 0.25rem !important;
    margin-top: 0.25rem !important;
  }

  .my-xl-2 {
    margin-bottom: 0.5rem !important;
    margin-top: 0.5rem !important;
  }

  .my-xl-3 {
    margin-bottom: 1rem !important;
    margin-top: 1rem !important;
  }

  .my-xl-4 {
    margin-bottom: 1.5rem !important;
    margin-top: 1.5rem !important;
  }

  .my-xl-5 {
    margin-bottom: 3rem !important;
    margin-top: 3rem !important;
  }

  .my-xl-6 {
    margin-bottom: 5rem !important;
    margin-top: 5rem !important;
  }

  .my-xl-7 {
    margin-bottom: 7rem !important;
    margin-top: 7rem !important;
  }

  .my-xl-8 {
    margin-bottom: 8rem !important;
    margin-top: 8rem !important;
  }

  .my-xl-9 {
    margin-bottom: 9rem !important;
    margin-top: 9rem !important;
  }

  .my-xl-10 {
    margin-bottom: 10rem !important;
    margin-top: 10rem !important;
  }

  .my-xl-11 {
    margin-bottom: 11rem !important;
    margin-top: 11rem !important;
  }

  .my-xl-12 {
    margin-bottom: 12rem !important;
    margin-top: 12rem !important;
  }

  .my-xl-13 {
    margin-bottom: 13rem !important;
    margin-top: 13rem !important;
  }

  .my-xl-14 {
    margin-bottom: 14rem !important;
    margin-top: 14rem !important;
  }

  .my-xl-15 {
    margin-bottom: 15rem !important;
    margin-top: 15rem !important;
  }

  .my-xl-16 {
    margin-bottom: 16rem !important;
    margin-top: 16rem !important;
  }

  .my-xl-17 {
    margin-bottom: 17rem !important;
    margin-top: 17rem !important;
  }

  .my-xl-18 {
    margin-bottom: 18rem !important;
    margin-top: 18rem !important;
  }

  .my-xl-19 {
    margin-bottom: 19rem !important;
    margin-top: 19rem !important;
  }

  .my-xl-20 {
    margin-bottom: 20rem !important;
    margin-top: 20rem !important;
  }

  .my-xl-21 {
    margin-bottom: 21rem !important;
    margin-top: 21rem !important;
  }

  .my-xl-auto {
    margin-bottom: auto !important;
    margin-top: auto !important;
  }

  .mt-xl-0 {
    margin-top: 0 !important;
  }

  .mt-xl-1 {
    margin-top: 0.25rem !important;
  }

  .mt-xl-2 {
    margin-top: 0.5rem !important;
  }

  .mt-xl-3 {
    margin-top: 1rem !important;
  }

  .mt-xl-4 {
    margin-top: 1.5rem !important;
  }

  .mt-xl-5 {
    margin-top: 3rem !important;
  }

  .mt-xl-6 {
    margin-top: 5rem !important;
  }

  .mt-xl-7 {
    margin-top: 7rem !important;
  }

  .mt-xl-8 {
    margin-top: 8rem !important;
  }

  .mt-xl-9 {
    margin-top: 9rem !important;
  }

  .mt-xl-10 {
    margin-top: 10rem !important;
  }

  .mt-xl-11 {
    margin-top: 11rem !important;
  }

  .mt-xl-12 {
    margin-top: 12rem !important;
  }

  .mt-xl-13 {
    margin-top: 13rem !important;
  }

  .mt-xl-14 {
    margin-top: 14rem !important;
  }

  .mt-xl-15 {
    margin-top: 15rem !important;
  }

  .mt-xl-16 {
    margin-top: 16rem !important;
  }

  .mt-xl-17 {
    margin-top: 17rem !important;
  }

  .mt-xl-18 {
    margin-top: 18rem !important;
  }

  .mt-xl-19 {
    margin-top: 19rem !important;
  }

  .mt-xl-20 {
    margin-top: 20rem !important;
  }

  .mt-xl-21 {
    margin-top: 21rem !important;
  }

  .mt-xl-auto {
    margin-top: auto !important;
  }

  .me-xl-0 {
    margin-right: 0 !important;
  }

  .me-xl-1 {
    margin-right: 0.25rem !important;
  }

  .me-xl-2 {
    margin-right: 0.5rem !important;
  }

  .me-xl-3 {
    margin-right: 1rem !important;
  }

  .me-xl-4 {
    margin-right: 1.5rem !important;
  }

  .me-xl-5 {
    margin-right: 3rem !important;
  }

  .me-xl-6 {
    margin-right: 5rem !important;
  }

  .me-xl-7 {
    margin-right: 7rem !important;
  }

  .me-xl-8 {
    margin-right: 8rem !important;
  }

  .me-xl-9 {
    margin-right: 9rem !important;
  }

  .me-xl-10 {
    margin-right: 10rem !important;
  }

  .me-xl-11 {
    margin-right: 11rem !important;
  }

  .me-xl-12 {
    margin-right: 12rem !important;
  }

  .me-xl-13 {
    margin-right: 13rem !important;
  }

  .me-xl-14 {
    margin-right: 14rem !important;
  }

  .me-xl-15 {
    margin-right: 15rem !important;
  }

  .me-xl-16 {
    margin-right: 16rem !important;
  }

  .me-xl-17 {
    margin-right: 17rem !important;
  }

  .me-xl-18 {
    margin-right: 18rem !important;
  }

  .me-xl-19 {
    margin-right: 19rem !important;
  }

  .me-xl-20 {
    margin-right: 20rem !important;
  }

  .me-xl-21 {
    margin-right: 21rem !important;
  }

  .me-xl-auto {
    margin-right: auto !important;
  }

  .mb-xl-0 {
    margin-bottom: 0 !important;
  }

  .mb-xl-1 {
    margin-bottom: 0.25rem !important;
  }

  .mb-xl-2 {
    margin-bottom: 0.5rem !important;
  }

  .mb-xl-3 {
    margin-bottom: 1rem !important;
  }

  .mb-xl-4 {
    margin-bottom: 1.5rem !important;
  }

  .mb-xl-5 {
    margin-bottom: 3rem !important;
  }

  .mb-xl-6 {
    margin-bottom: 5rem !important;
  }

  .mb-xl-7 {
    margin-bottom: 7rem !important;
  }

  .mb-xl-8 {
    margin-bottom: 8rem !important;
  }

  .mb-xl-9 {
    margin-bottom: 9rem !important;
  }

  .mb-xl-10 {
    margin-bottom: 10rem !important;
  }

  .mb-xl-11 {
    margin-bottom: 11rem !important;
  }

  .mb-xl-12 {
    margin-bottom: 12rem !important;
  }

  .mb-xl-13 {
    margin-bottom: 13rem !important;
  }

  .mb-xl-14 {
    margin-bottom: 14rem !important;
  }

  .mb-xl-15 {
    margin-bottom: 15rem !important;
  }

  .mb-xl-16 {
    margin-bottom: 16rem !important;
  }

  .mb-xl-17 {
    margin-bottom: 17rem !important;
  }

  .mb-xl-18 {
    margin-bottom: 18rem !important;
  }

  .mb-xl-19 {
    margin-bottom: 19rem !important;
  }

  .mb-xl-20 {
    margin-bottom: 20rem !important;
  }

  .mb-xl-21 {
    margin-bottom: 21rem !important;
  }

  .mb-xl-auto {
    margin-bottom: auto !important;
  }

  .ms-xl-0 {
    margin-left: 0 !important;
  }

  .ms-xl-1 {
    margin-left: 0.25rem !important;
  }

  .ms-xl-2 {
    margin-left: 0.5rem !important;
  }

  .ms-xl-3 {
    margin-left: 1rem !important;
  }

  .ms-xl-4 {
    margin-left: 1.5rem !important;
  }

  .ms-xl-5 {
    margin-left: 3rem !important;
  }

  .ms-xl-6 {
    margin-left: 5rem !important;
  }

  .ms-xl-7 {
    margin-left: 7rem !important;
  }

  .ms-xl-8 {
    margin-left: 8rem !important;
  }

  .ms-xl-9 {
    margin-left: 9rem !important;
  }

  .ms-xl-10 {
    margin-left: 10rem !important;
  }

  .ms-xl-11 {
    margin-left: 11rem !important;
  }

  .ms-xl-12 {
    margin-left: 12rem !important;
  }

  .ms-xl-13 {
    margin-left: 13rem !important;
  }

  .ms-xl-14 {
    margin-left: 14rem !important;
  }

  .ms-xl-15 {
    margin-left: 15rem !important;
  }

  .ms-xl-16 {
    margin-left: 16rem !important;
  }

  .ms-xl-17 {
    margin-left: 17rem !important;
  }

  .ms-xl-18 {
    margin-left: 18rem !important;
  }

  .ms-xl-19 {
    margin-left: 19rem !important;
  }

  .ms-xl-20 {
    margin-left: 20rem !important;
  }

  .ms-xl-21 {
    margin-left: 21rem !important;
  }

  .ms-xl-auto {
    margin-left: auto !important;
  }

  .m-xl-n1 {
    margin: -0.25rem !important;
  }

  .m-xl-n2 {
    margin: -0.5rem !important;
  }

  .m-xl-n3 {
    margin: -1rem !important;
  }

  .m-xl-n4 {
    margin: -1.5rem !important;
  }

  .m-xl-n5 {
    margin: -3rem !important;
  }

  .m-xl-n6 {
    margin: -5rem !important;
  }

  .m-xl-n7 {
    margin: -7rem !important;
  }

  .m-xl-n8 {
    margin: -8rem !important;
  }

  .m-xl-n9 {
    margin: -9rem !important;
  }

  .m-xl-n10 {
    margin: -10rem !important;
  }

  .m-xl-n11 {
    margin: -11rem !important;
  }

  .m-xl-n12 {
    margin: -12rem !important;
  }

  .m-xl-n13 {
    margin: -13rem !important;
  }

  .m-xl-n14 {
    margin: -14rem !important;
  }

  .m-xl-n15 {
    margin: -15rem !important;
  }

  .m-xl-n16 {
    margin: -16rem !important;
  }

  .m-xl-n17 {
    margin: -17rem !important;
  }

  .m-xl-n18 {
    margin: -18rem !important;
  }

  .m-xl-n19 {
    margin: -19rem !important;
  }

  .m-xl-n20 {
    margin: -20rem !important;
  }

  .m-xl-n21 {
    margin: -21rem !important;
  }

  .mx-xl-n1 {
    margin-left: -0.25rem !important;
    margin-right: -0.25rem !important;
  }

  .mx-xl-n2 {
    margin-left: -0.5rem !important;
    margin-right: -0.5rem !important;
  }

  .mx-xl-n3 {
    margin-left: -1rem !important;
    margin-right: -1rem !important;
  }

  .mx-xl-n4 {
    margin-left: -1.5rem !important;
    margin-right: -1.5rem !important;
  }

  .mx-xl-n5 {
    margin-left: -3rem !important;
    margin-right: -3rem !important;
  }

  .mx-xl-n6 {
    margin-left: -5rem !important;
    margin-right: -5rem !important;
  }

  .mx-xl-n7 {
    margin-left: -7rem !important;
    margin-right: -7rem !important;
  }

  .mx-xl-n8 {
    margin-left: -8rem !important;
    margin-right: -8rem !important;
  }

  .mx-xl-n9 {
    margin-left: -9rem !important;
    margin-right: -9rem !important;
  }

  .mx-xl-n10 {
    margin-left: -10rem !important;
    margin-right: -10rem !important;
  }

  .mx-xl-n11 {
    margin-left: -11rem !important;
    margin-right: -11rem !important;
  }

  .mx-xl-n12 {
    margin-left: -12rem !important;
    margin-right: -12rem !important;
  }

  .mx-xl-n13 {
    margin-left: -13rem !important;
    margin-right: -13rem !important;
  }

  .mx-xl-n14 {
    margin-left: -14rem !important;
    margin-right: -14rem !important;
  }

  .mx-xl-n15 {
    margin-left: -15rem !important;
    margin-right: -15rem !important;
  }

  .mx-xl-n16 {
    margin-left: -16rem !important;
    margin-right: -16rem !important;
  }

  .mx-xl-n17 {
    margin-left: -17rem !important;
    margin-right: -17rem !important;
  }

  .mx-xl-n18 {
    margin-left: -18rem !important;
    margin-right: -18rem !important;
  }

  .mx-xl-n19 {
    margin-left: -19rem !important;
    margin-right: -19rem !important;
  }

  .mx-xl-n20 {
    margin-left: -20rem !important;
    margin-right: -20rem !important;
  }

  .mx-xl-n21 {
    margin-left: -21rem !important;
    margin-right: -21rem !important;
  }

  .my-xl-n1 {
    margin-bottom: -0.25rem !important;
    margin-top: -0.25rem !important;
  }

  .my-xl-n2 {
    margin-bottom: -0.5rem !important;
    margin-top: -0.5rem !important;
  }

  .my-xl-n3 {
    margin-bottom: -1rem !important;
    margin-top: -1rem !important;
  }

  .my-xl-n4 {
    margin-bottom: -1.5rem !important;
    margin-top: -1.5rem !important;
  }

  .my-xl-n5 {
    margin-bottom: -3rem !important;
    margin-top: -3rem !important;
  }

  .my-xl-n6 {
    margin-bottom: -5rem !important;
    margin-top: -5rem !important;
  }

  .my-xl-n7 {
    margin-bottom: -7rem !important;
    margin-top: -7rem !important;
  }

  .my-xl-n8 {
    margin-bottom: -8rem !important;
    margin-top: -8rem !important;
  }

  .my-xl-n9 {
    margin-bottom: -9rem !important;
    margin-top: -9rem !important;
  }

  .my-xl-n10 {
    margin-bottom: -10rem !important;
    margin-top: -10rem !important;
  }

  .my-xl-n11 {
    margin-bottom: -11rem !important;
    margin-top: -11rem !important;
  }

  .my-xl-n12 {
    margin-bottom: -12rem !important;
    margin-top: -12rem !important;
  }

  .my-xl-n13 {
    margin-bottom: -13rem !important;
    margin-top: -13rem !important;
  }

  .my-xl-n14 {
    margin-bottom: -14rem !important;
    margin-top: -14rem !important;
  }

  .my-xl-n15 {
    margin-bottom: -15rem !important;
    margin-top: -15rem !important;
  }

  .my-xl-n16 {
    margin-bottom: -16rem !important;
    margin-top: -16rem !important;
  }

  .my-xl-n17 {
    margin-bottom: -17rem !important;
    margin-top: -17rem !important;
  }

  .my-xl-n18 {
    margin-bottom: -18rem !important;
    margin-top: -18rem !important;
  }

  .my-xl-n19 {
    margin-bottom: -19rem !important;
    margin-top: -19rem !important;
  }

  .my-xl-n20 {
    margin-bottom: -20rem !important;
    margin-top: -20rem !important;
  }

  .my-xl-n21 {
    margin-bottom: -21rem !important;
    margin-top: -21rem !important;
  }

  .mt-xl-n1 {
    margin-top: -0.25rem !important;
  }

  .mt-xl-n2 {
    margin-top: -0.5rem !important;
  }

  .mt-xl-n3 {
    margin-top: -1rem !important;
  }

  .mt-xl-n4 {
    margin-top: -1.5rem !important;
  }

  .mt-xl-n5 {
    margin-top: -3rem !important;
  }

  .mt-xl-n6 {
    margin-top: -5rem !important;
  }

  .mt-xl-n7 {
    margin-top: -7rem !important;
  }

  .mt-xl-n8 {
    margin-top: -8rem !important;
  }

  .mt-xl-n9 {
    margin-top: -9rem !important;
  }

  .mt-xl-n10 {
    margin-top: -10rem !important;
  }

  .mt-xl-n11 {
    margin-top: -11rem !important;
  }

  .mt-xl-n12 {
    margin-top: -12rem !important;
  }

  .mt-xl-n13 {
    margin-top: -13rem !important;
  }

  .mt-xl-n14 {
    margin-top: -14rem !important;
  }

  .mt-xl-n15 {
    margin-top: -15rem !important;
  }

  .mt-xl-n16 {
    margin-top: -16rem !important;
  }

  .mt-xl-n17 {
    margin-top: -17rem !important;
  }

  .mt-xl-n18 {
    margin-top: -18rem !important;
  }

  .mt-xl-n19 {
    margin-top: -19rem !important;
  }

  .mt-xl-n20 {
    margin-top: -20rem !important;
  }

  .mt-xl-n21 {
    margin-top: -21rem !important;
  }

  .me-xl-n1 {
    margin-right: -0.25rem !important;
  }

  .me-xl-n2 {
    margin-right: -0.5rem !important;
  }

  .me-xl-n3 {
    margin-right: -1rem !important;
  }

  .me-xl-n4 {
    margin-right: -1.5rem !important;
  }

  .me-xl-n5 {
    margin-right: -3rem !important;
  }

  .me-xl-n6 {
    margin-right: -5rem !important;
  }

  .me-xl-n7 {
    margin-right: -7rem !important;
  }

  .me-xl-n8 {
    margin-right: -8rem !important;
  }

  .me-xl-n9 {
    margin-right: -9rem !important;
  }

  .me-xl-n10 {
    margin-right: -10rem !important;
  }

  .me-xl-n11 {
    margin-right: -11rem !important;
  }

  .me-xl-n12 {
    margin-right: -12rem !important;
  }

  .me-xl-n13 {
    margin-right: -13rem !important;
  }

  .me-xl-n14 {
    margin-right: -14rem !important;
  }

  .me-xl-n15 {
    margin-right: -15rem !important;
  }

  .me-xl-n16 {
    margin-right: -16rem !important;
  }

  .me-xl-n17 {
    margin-right: -17rem !important;
  }

  .me-xl-n18 {
    margin-right: -18rem !important;
  }

  .me-xl-n19 {
    margin-right: -19rem !important;
  }

  .me-xl-n20 {
    margin-right: -20rem !important;
  }

  .me-xl-n21 {
    margin-right: -21rem !important;
  }

  .mb-xl-n1 {
    margin-bottom: -0.25rem !important;
  }

  .mb-xl-n2 {
    margin-bottom: -0.5rem !important;
  }

  .mb-xl-n3 {
    margin-bottom: -1rem !important;
  }

  .mb-xl-n4 {
    margin-bottom: -1.5rem !important;
  }

  .mb-xl-n5 {
    margin-bottom: -3rem !important;
  }

  .mb-xl-n6 {
    margin-bottom: -5rem !important;
  }

  .mb-xl-n7 {
    margin-bottom: -7rem !important;
  }

  .mb-xl-n8 {
    margin-bottom: -8rem !important;
  }

  .mb-xl-n9 {
    margin-bottom: -9rem !important;
  }

  .mb-xl-n10 {
    margin-bottom: -10rem !important;
  }

  .mb-xl-n11 {
    margin-bottom: -11rem !important;
  }

  .mb-xl-n12 {
    margin-bottom: -12rem !important;
  }

  .mb-xl-n13 {
    margin-bottom: -13rem !important;
  }

  .mb-xl-n14 {
    margin-bottom: -14rem !important;
  }

  .mb-xl-n15 {
    margin-bottom: -15rem !important;
  }

  .mb-xl-n16 {
    margin-bottom: -16rem !important;
  }

  .mb-xl-n17 {
    margin-bottom: -17rem !important;
  }

  .mb-xl-n18 {
    margin-bottom: -18rem !important;
  }

  .mb-xl-n19 {
    margin-bottom: -19rem !important;
  }

  .mb-xl-n20 {
    margin-bottom: -20rem !important;
  }

  .mb-xl-n21 {
    margin-bottom: -21rem !important;
  }

  .ms-xl-n1 {
    margin-left: -0.25rem !important;
  }

  .ms-xl-n2 {
    margin-left: -0.5rem !important;
  }

  .ms-xl-n3 {
    margin-left: -1rem !important;
  }

  .ms-xl-n4 {
    margin-left: -1.5rem !important;
  }

  .ms-xl-n5 {
    margin-left: -3rem !important;
  }

  .ms-xl-n6 {
    margin-left: -5rem !important;
  }

  .ms-xl-n7 {
    margin-left: -7rem !important;
  }

  .ms-xl-n8 {
    margin-left: -8rem !important;
  }

  .ms-xl-n9 {
    margin-left: -9rem !important;
  }

  .ms-xl-n10 {
    margin-left: -10rem !important;
  }

  .ms-xl-n11 {
    margin-left: -11rem !important;
  }

  .ms-xl-n12 {
    margin-left: -12rem !important;
  }

  .ms-xl-n13 {
    margin-left: -13rem !important;
  }

  .ms-xl-n14 {
    margin-left: -14rem !important;
  }

  .ms-xl-n15 {
    margin-left: -15rem !important;
  }

  .ms-xl-n16 {
    margin-left: -16rem !important;
  }

  .ms-xl-n17 {
    margin-left: -17rem !important;
  }

  .ms-xl-n18 {
    margin-left: -18rem !important;
  }

  .ms-xl-n19 {
    margin-left: -19rem !important;
  }

  .ms-xl-n20 {
    margin-left: -20rem !important;
  }

  .ms-xl-n21 {
    margin-left: -21rem !important;
  }

  .p-xl-0 {
    padding: 0 !important;
  }

  .p-xl-1 {
    padding: 0.25rem !important;
  }

  .p-xl-2 {
    padding: 0.5rem !important;
  }

  .p-xl-3 {
    padding: 1rem !important;
  }

  .p-xl-4 {
    padding: 1.5rem !important;
  }

  .p-xl-5 {
    padding: 3rem !important;
  }

  .p-xl-6 {
    padding: 5rem !important;
  }

  .p-xl-7 {
    padding: 7rem !important;
  }

  .p-xl-8 {
    padding: 8rem !important;
  }

  .p-xl-9 {
    padding: 9rem !important;
  }

  .p-xl-10 {
    padding: 10rem !important;
  }

  .p-xl-11 {
    padding: 11rem !important;
  }

  .p-xl-12 {
    padding: 12rem !important;
  }

  .p-xl-13 {
    padding: 13rem !important;
  }

  .p-xl-14 {
    padding: 14rem !important;
  }

  .p-xl-15 {
    padding: 15rem !important;
  }

  .p-xl-16 {
    padding: 16rem !important;
  }

  .p-xl-17 {
    padding: 17rem !important;
  }

  .p-xl-18 {
    padding: 18rem !important;
  }

  .p-xl-19 {
    padding: 19rem !important;
  }

  .p-xl-20 {
    padding: 20rem !important;
  }

  .p-xl-21 {
    padding: 21rem !important;
  }

  .px-xl-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .px-xl-1 {
    padding-left: 0.25rem !important;
    padding-right: 0.25rem !important;
  }

  .px-xl-2 {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }

  .px-xl-3 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .px-xl-4 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }

  .px-xl-5 {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
  }

  .px-xl-6 {
    padding-left: 5rem !important;
    padding-right: 5rem !important;
  }

  .px-xl-7 {
    padding-left: 7rem !important;
    padding-right: 7rem !important;
  }

  .px-xl-8 {
    padding-left: 8rem !important;
    padding-right: 8rem !important;
  }

  .px-xl-9 {
    padding-left: 9rem !important;
    padding-right: 9rem !important;
  }

  .px-xl-10 {
    padding-left: 10rem !important;
    padding-right: 10rem !important;
  }

  .px-xl-11 {
    padding-left: 11rem !important;
    padding-right: 11rem !important;
  }

  .px-xl-12 {
    padding-left: 12rem !important;
    padding-right: 12rem !important;
  }

  .px-xl-13 {
    padding-left: 13rem !important;
    padding-right: 13rem !important;
  }

  .px-xl-14 {
    padding-left: 14rem !important;
    padding-right: 14rem !important;
  }

  .px-xl-15 {
    padding-left: 15rem !important;
    padding-right: 15rem !important;
  }

  .px-xl-16 {
    padding-left: 16rem !important;
    padding-right: 16rem !important;
  }

  .px-xl-17 {
    padding-left: 17rem !important;
    padding-right: 17rem !important;
  }

  .px-xl-18 {
    padding-left: 18rem !important;
    padding-right: 18rem !important;
  }

  .px-xl-19 {
    padding-left: 19rem !important;
    padding-right: 19rem !important;
  }

  .px-xl-20 {
    padding-left: 20rem !important;
    padding-right: 20rem !important;
  }

  .px-xl-21 {
    padding-left: 21rem !important;
    padding-right: 21rem !important;
  }

  .py-xl-0 {
    padding-bottom: 0 !important;
    padding-top: 0 !important;
  }

  .py-xl-1 {
    padding-bottom: 0.25rem !important;
    padding-top: 0.25rem !important;
  }

  .py-xl-2 {
    padding-bottom: 0.5rem !important;
    padding-top: 0.5rem !important;
  }

  .py-xl-3 {
    padding-bottom: 1rem !important;
    padding-top: 1rem !important;
  }

  .py-xl-4 {
    padding-bottom: 1.5rem !important;
    padding-top: 1.5rem !important;
  }

  .py-xl-5 {
    padding-bottom: 3rem !important;
    padding-top: 3rem !important;
  }

  .py-xl-6 {
    padding-bottom: 5rem !important;
    padding-top: 5rem !important;
  }

  .py-xl-7 {
    padding-bottom: 7rem !important;
    padding-top: 7rem !important;
  }

  .py-xl-8 {
    padding-bottom: 8rem !important;
    padding-top: 8rem !important;
  }

  .py-xl-9 {
    padding-bottom: 9rem !important;
    padding-top: 9rem !important;
  }

  .py-xl-10 {
    padding-bottom: 10rem !important;
    padding-top: 10rem !important;
  }

  .py-xl-11 {
    padding-bottom: 11rem !important;
    padding-top: 11rem !important;
  }

  .py-xl-12 {
    padding-bottom: 12rem !important;
    padding-top: 12rem !important;
  }

  .py-xl-13 {
    padding-bottom: 13rem !important;
    padding-top: 13rem !important;
  }

  .py-xl-14 {
    padding-bottom: 14rem !important;
    padding-top: 14rem !important;
  }

  .py-xl-15 {
    padding-bottom: 15rem !important;
    padding-top: 15rem !important;
  }

  .py-xl-16 {
    padding-bottom: 16rem !important;
    padding-top: 16rem !important;
  }

  .py-xl-17 {
    padding-bottom: 17rem !important;
    padding-top: 17rem !important;
  }

  .py-xl-18 {
    padding-bottom: 18rem !important;
    padding-top: 18rem !important;
  }

  .py-xl-19 {
    padding-bottom: 19rem !important;
    padding-top: 19rem !important;
  }

  .py-xl-20 {
    padding-bottom: 20rem !important;
    padding-top: 20rem !important;
  }

  .py-xl-21 {
    padding-bottom: 21rem !important;
    padding-top: 21rem !important;
  }

  .pt-xl-0 {
    padding-top: 0 !important;
  }

  .pt-xl-1 {
    padding-top: 0.25rem !important;
  }

  .pt-xl-2 {
    padding-top: 0.5rem !important;
  }

  .pt-xl-3 {
    padding-top: 1rem !important;
  }

  .pt-xl-4 {
    padding-top: 1.5rem !important;
  }

  .pt-xl-5 {
    padding-top: 3rem !important;
  }

  .pt-xl-6 {
    padding-top: 5rem !important;
  }

  .pt-xl-7 {
    padding-top: 7rem !important;
  }

  .pt-xl-8 {
    padding-top: 8rem !important;
  }

  .pt-xl-9 {
    padding-top: 9rem !important;
  }

  .pt-xl-10 {
    padding-top: 10rem !important;
  }

  .pt-xl-11 {
    padding-top: 11rem !important;
  }

  .pt-xl-12 {
    padding-top: 12rem !important;
  }

  .pt-xl-13 {
    padding-top: 13rem !important;
  }

  .pt-xl-14 {
    padding-top: 14rem !important;
  }

  .pt-xl-15 {
    padding-top: 15rem !important;
  }

  .pt-xl-16 {
    padding-top: 16rem !important;
  }

  .pt-xl-17 {
    padding-top: 17rem !important;
  }

  .pt-xl-18 {
    padding-top: 18rem !important;
  }

  .pt-xl-19 {
    padding-top: 19rem !important;
  }

  .pt-xl-20 {
    padding-top: 20rem !important;
  }

  .pt-xl-21 {
    padding-top: 21rem !important;
  }

  .pe-xl-0 {
    padding-right: 0 !important;
  }

  .pe-xl-1 {
    padding-right: 0.25rem !important;
  }

  .pe-xl-2 {
    padding-right: 0.5rem !important;
  }

  .pe-xl-3 {
    padding-right: 1rem !important;
  }

  .pe-xl-4 {
    padding-right: 1.5rem !important;
  }

  .pe-xl-5 {
    padding-right: 3rem !important;
  }

  .pe-xl-6 {
    padding-right: 5rem !important;
  }

  .pe-xl-7 {
    padding-right: 7rem !important;
  }

  .pe-xl-8 {
    padding-right: 8rem !important;
  }

  .pe-xl-9 {
    padding-right: 9rem !important;
  }

  .pe-xl-10 {
    padding-right: 10rem !important;
  }

  .pe-xl-11 {
    padding-right: 11rem !important;
  }

  .pe-xl-12 {
    padding-right: 12rem !important;
  }

  .pe-xl-13 {
    padding-right: 13rem !important;
  }

  .pe-xl-14 {
    padding-right: 14rem !important;
  }

  .pe-xl-15 {
    padding-right: 15rem !important;
  }

  .pe-xl-16 {
    padding-right: 16rem !important;
  }

  .pe-xl-17 {
    padding-right: 17rem !important;
  }

  .pe-xl-18 {
    padding-right: 18rem !important;
  }

  .pe-xl-19 {
    padding-right: 19rem !important;
  }

  .pe-xl-20 {
    padding-right: 20rem !important;
  }

  .pe-xl-21 {
    padding-right: 21rem !important;
  }

  .pb-xl-0 {
    padding-bottom: 0 !important;
  }

  .pb-xl-1 {
    padding-bottom: 0.25rem !important;
  }

  .pb-xl-2 {
    padding-bottom: 0.5rem !important;
  }

  .pb-xl-3 {
    padding-bottom: 1rem !important;
  }

  .pb-xl-4 {
    padding-bottom: 1.5rem !important;
  }

  .pb-xl-5 {
    padding-bottom: 3rem !important;
  }

  .pb-xl-6 {
    padding-bottom: 5rem !important;
  }

  .pb-xl-7 {
    padding-bottom: 7rem !important;
  }

  .pb-xl-8 {
    padding-bottom: 8rem !important;
  }

  .pb-xl-9 {
    padding-bottom: 9rem !important;
  }

  .pb-xl-10 {
    padding-bottom: 10rem !important;
  }

  .pb-xl-11 {
    padding-bottom: 11rem !important;
  }

  .pb-xl-12 {
    padding-bottom: 12rem !important;
  }

  .pb-xl-13 {
    padding-bottom: 13rem !important;
  }

  .pb-xl-14 {
    padding-bottom: 14rem !important;
  }

  .pb-xl-15 {
    padding-bottom: 15rem !important;
  }

  .pb-xl-16 {
    padding-bottom: 16rem !important;
  }

  .pb-xl-17 {
    padding-bottom: 17rem !important;
  }

  .pb-xl-18 {
    padding-bottom: 18rem !important;
  }

  .pb-xl-19 {
    padding-bottom: 19rem !important;
  }

  .pb-xl-20 {
    padding-bottom: 20rem !important;
  }

  .pb-xl-21 {
    padding-bottom: 21rem !important;
  }

  .ps-xl-0 {
    padding-left: 0 !important;
  }

  .ps-xl-1 {
    padding-left: 0.25rem !important;
  }

  .ps-xl-2 {
    padding-left: 0.5rem !important;
  }

  .ps-xl-3 {
    padding-left: 1rem !important;
  }

  .ps-xl-4 {
    padding-left: 1.5rem !important;
  }

  .ps-xl-5 {
    padding-left: 3rem !important;
  }

  .ps-xl-6 {
    padding-left: 5rem !important;
  }

  .ps-xl-7 {
    padding-left: 7rem !important;
  }

  .ps-xl-8 {
    padding-left: 8rem !important;
  }

  .ps-xl-9 {
    padding-left: 9rem !important;
  }

  .ps-xl-10 {
    padding-left: 10rem !important;
  }

  .ps-xl-11 {
    padding-left: 11rem !important;
  }

  .ps-xl-12 {
    padding-left: 12rem !important;
  }

  .ps-xl-13 {
    padding-left: 13rem !important;
  }

  .ps-xl-14 {
    padding-left: 14rem !important;
  }

  .ps-xl-15 {
    padding-left: 15rem !important;
  }

  .ps-xl-16 {
    padding-left: 16rem !important;
  }

  .ps-xl-17 {
    padding-left: 17rem !important;
  }

  .ps-xl-18 {
    padding-left: 18rem !important;
  }

  .ps-xl-19 {
    padding-left: 19rem !important;
  }

  .ps-xl-20 {
    padding-left: 20rem !important;
  }

  .ps-xl-21 {
    padding-left: 21rem !important;
  }

  .gap-xl-0 {
    gap: 0 !important;
  }

  .gap-xl-1 {
    gap: 0.25rem !important;
  }

  .gap-xl-2 {
    gap: 0.5rem !important;
  }

  .gap-xl-3 {
    gap: 1rem !important;
  }

  .gap-xl-4 {
    gap: 1.5rem !important;
  }

  .gap-xl-5 {
    gap: 3rem !important;
  }

  .gap-xl-6 {
    gap: 5rem !important;
  }

  .gap-xl-7 {
    gap: 7rem !important;
  }

  .gap-xl-8 {
    gap: 8rem !important;
  }

  .gap-xl-9 {
    gap: 9rem !important;
  }

  .gap-xl-10 {
    gap: 10rem !important;
  }

  .gap-xl-11 {
    gap: 11rem !important;
  }

  .gap-xl-12 {
    gap: 12rem !important;
  }

  .gap-xl-13 {
    gap: 13rem !important;
  }

  .gap-xl-14 {
    gap: 14rem !important;
  }

  .gap-xl-15 {
    gap: 15rem !important;
  }

  .gap-xl-16 {
    gap: 16rem !important;
  }

  .gap-xl-17 {
    gap: 17rem !important;
  }

  .gap-xl-18 {
    gap: 18rem !important;
  }

  .gap-xl-19 {
    gap: 19rem !important;
  }

  .gap-xl-20 {
    gap: 20rem !important;
  }

  .gap-xl-21 {
    gap: 21rem !important;
  }

  .row-gap-xl-0 {
    row-gap: 0 !important;
  }

  .row-gap-xl-1 {
    row-gap: 0.25rem !important;
  }

  .row-gap-xl-2 {
    row-gap: 0.5rem !important;
  }

  .row-gap-xl-3 {
    row-gap: 1rem !important;
  }

  .row-gap-xl-4 {
    row-gap: 1.5rem !important;
  }

  .row-gap-xl-5 {
    row-gap: 3rem !important;
  }

  .row-gap-xl-6 {
    row-gap: 5rem !important;
  }

  .row-gap-xl-7 {
    row-gap: 7rem !important;
  }

  .row-gap-xl-8 {
    row-gap: 8rem !important;
  }

  .row-gap-xl-9 {
    row-gap: 9rem !important;
  }

  .row-gap-xl-10 {
    row-gap: 10rem !important;
  }

  .row-gap-xl-11 {
    row-gap: 11rem !important;
  }

  .row-gap-xl-12 {
    row-gap: 12rem !important;
  }

  .row-gap-xl-13 {
    row-gap: 13rem !important;
  }

  .row-gap-xl-14 {
    row-gap: 14rem !important;
  }

  .row-gap-xl-15 {
    row-gap: 15rem !important;
  }

  .row-gap-xl-16 {
    row-gap: 16rem !important;
  }

  .row-gap-xl-17 {
    row-gap: 17rem !important;
  }

  .row-gap-xl-18 {
    row-gap: 18rem !important;
  }

  .row-gap-xl-19 {
    row-gap: 19rem !important;
  }

  .row-gap-xl-20 {
    row-gap: 20rem !important;
  }

  .row-gap-xl-21 {
    row-gap: 21rem !important;
  }

  .column-gap-xl-0 {
    -webkit-column-gap: 0 !important;
    -moz-column-gap: 0 !important;
    column-gap: 0 !important;
  }

  .column-gap-xl-1 {
    -webkit-column-gap: 0.25rem !important;
    -moz-column-gap: 0.25rem !important;
    column-gap: 0.25rem !important;
  }

  .column-gap-xl-2 {
    -webkit-column-gap: 0.5rem !important;
    -moz-column-gap: 0.5rem !important;
    column-gap: 0.5rem !important;
  }

  .column-gap-xl-3 {
    -webkit-column-gap: 1rem !important;
    -moz-column-gap: 1rem !important;
    column-gap: 1rem !important;
  }

  .column-gap-xl-4 {
    -webkit-column-gap: 1.5rem !important;
    -moz-column-gap: 1.5rem !important;
    column-gap: 1.5rem !important;
  }

  .column-gap-xl-5 {
    -webkit-column-gap: 3rem !important;
    -moz-column-gap: 3rem !important;
    column-gap: 3rem !important;
  }

  .column-gap-xl-6 {
    -webkit-column-gap: 5rem !important;
    -moz-column-gap: 5rem !important;
    column-gap: 5rem !important;
  }

  .column-gap-xl-7 {
    -webkit-column-gap: 7rem !important;
    -moz-column-gap: 7rem !important;
    column-gap: 7rem !important;
  }

  .column-gap-xl-8 {
    -webkit-column-gap: 8rem !important;
    -moz-column-gap: 8rem !important;
    column-gap: 8rem !important;
  }

  .column-gap-xl-9 {
    -webkit-column-gap: 9rem !important;
    -moz-column-gap: 9rem !important;
    column-gap: 9rem !important;
  }

  .column-gap-xl-10 {
    -webkit-column-gap: 10rem !important;
    -moz-column-gap: 10rem !important;
    column-gap: 10rem !important;
  }

  .column-gap-xl-11 {
    -webkit-column-gap: 11rem !important;
    -moz-column-gap: 11rem !important;
    column-gap: 11rem !important;
  }

  .column-gap-xl-12 {
    -webkit-column-gap: 12rem !important;
    -moz-column-gap: 12rem !important;
    column-gap: 12rem !important;
  }

  .column-gap-xl-13 {
    -webkit-column-gap: 13rem !important;
    -moz-column-gap: 13rem !important;
    column-gap: 13rem !important;
  }

  .column-gap-xl-14 {
    -webkit-column-gap: 14rem !important;
    -moz-column-gap: 14rem !important;
    column-gap: 14rem !important;
  }

  .column-gap-xl-15 {
    -webkit-column-gap: 15rem !important;
    -moz-column-gap: 15rem !important;
    column-gap: 15rem !important;
  }

  .column-gap-xl-16 {
    -webkit-column-gap: 16rem !important;
    -moz-column-gap: 16rem !important;
    column-gap: 16rem !important;
  }

  .column-gap-xl-17 {
    -webkit-column-gap: 17rem !important;
    -moz-column-gap: 17rem !important;
    column-gap: 17rem !important;
  }

  .column-gap-xl-18 {
    -webkit-column-gap: 18rem !important;
    -moz-column-gap: 18rem !important;
    column-gap: 18rem !important;
  }

  .column-gap-xl-19 {
    -webkit-column-gap: 19rem !important;
    -moz-column-gap: 19rem !important;
    column-gap: 19rem !important;
  }

  .column-gap-xl-20 {
    -webkit-column-gap: 20rem !important;
    -moz-column-gap: 20rem !important;
    column-gap: 20rem !important;
  }

  .column-gap-xl-21 {
    -webkit-column-gap: 21rem !important;
    -moz-column-gap: 21rem !important;
    column-gap: 21rem !important;
  }

  .text-xl-start {
    text-align: left !important;
  }

  .text-xl-end {
    text-align: right !important;
  }

  .text-xl-center {
    text-align: center !important;
  }

  .fs-1 {
    font-size: 2.5rem !important;
  }

  .fs-2 {
    font-size: 2rem !important;
  }

  .fs-3 {
    font-size: 1.75rem !important;
  }

  .fs-4 {
    font-size: 1.5rem !important;
  }
}

@media (min-width: 576px) {
  .container,
  .container-sm {
    max-width: 540px;
  }

  .col-sm {
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 0%;
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
  }

  .row-cols-sm-auto > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }

  .row-cols-sm-1 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }

  .row-cols-sm-2 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }

  .row-cols-sm-3 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.33333333%;
  }

  .row-cols-sm-4 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }

  .row-cols-sm-5 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 20%;
  }

  .row-cols-sm-6 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.66666667%;
  }

  .col-sm-auto {
    width: auto;
  }

  .col-sm-1,
  .col-sm-auto {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }

  .col-sm-1 {
    width: 8.33333333%;
  }

  .col-sm-2 {
    width: 16.66666667%;
  }

  .col-sm-2,
  .col-sm-3 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }

  .col-sm-3 {
    width: 25%;
  }

  .col-sm-4 {
    width: 33.33333333%;
  }

  .col-sm-4,
  .col-sm-5 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }

  .col-sm-5 {
    width: 41.66666667%;
  }

  .col-sm-6 {
    width: 50%;
  }

  .col-sm-6,
  .col-sm-7 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }

  .col-sm-7 {
    width: 58.33333333%;
  }

  .col-sm-8 {
    width: 66.66666667%;
  }

  .col-sm-8,
  .col-sm-9 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }

  .col-sm-9 {
    width: 75%;
  }

  .col-sm-10 {
    width: 83.33333333%;
  }

  .col-sm-10,
  .col-sm-11 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }

  .col-sm-11 {
    width: 91.66666667%;
  }

  .col-sm-12 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }

  .offset-sm-0 {
    margin-left: 0;
  }

  .offset-sm-1 {
    margin-left: 8.33333333%;
  }

  .offset-sm-2 {
    margin-left: 16.66666667%;
  }

  .offset-sm-3 {
    margin-left: 25%;
  }

  .offset-sm-4 {
    margin-left: 33.33333333%;
  }

  .offset-sm-5 {
    margin-left: 41.66666667%;
  }

  .offset-sm-6 {
    margin-left: 50%;
  }

  .offset-sm-7 {
    margin-left: 58.33333333%;
  }

  .offset-sm-8 {
    margin-left: 66.66666667%;
  }

  .offset-sm-9 {
    margin-left: 75%;
  }

  .offset-sm-10 {
    margin-left: 83.33333333%;
  }

  .offset-sm-11 {
    margin-left: 91.66666667%;
  }

  .g-sm-0,
  .gx-sm-0 {
    --bs-gutter-x: 0;
  }

  .g-sm-0,
  .gy-sm-0 {
    --bs-gutter-y: 0;
  }

  .g-sm-1,
  .gx-sm-1 {
    --bs-gutter-x: 0.25rem;
  }

  .g-sm-1,
  .gy-sm-1 {
    --bs-gutter-y: 0.25rem;
  }

  .g-sm-2,
  .gx-sm-2 {
    --bs-gutter-x: 0.5rem;
  }

  .g-sm-2,
  .gy-sm-2 {
    --bs-gutter-y: 0.5rem;
  }

  .g-sm-3,
  .gx-sm-3 {
    --bs-gutter-x: 1rem;
  }

  .g-sm-3,
  .gy-sm-3 {
    --bs-gutter-y: 1rem;
  }

  .g-sm-4,
  .gx-sm-4 {
    --bs-gutter-x: 1.5rem;
  }

  .g-sm-4,
  .gy-sm-4 {
    --bs-gutter-y: 1.5rem;
  }

  .g-sm-5,
  .gx-sm-5 {
    --bs-gutter-x: 3rem;
  }

  .g-sm-5,
  .gy-sm-5 {
    --bs-gutter-y: 3rem;
  }

  .g-sm-6,
  .gx-sm-6 {
    --bs-gutter-x: 3.5rem;
  }

  .g-sm-6,
  .gy-sm-6 {
    --bs-gutter-y: 3.5rem;
  }

  .g-sm-7,
  .gx-sm-7 {
    --bs-gutter-x: 4rem;
  }

  .g-sm-7,
  .gy-sm-7 {
    --bs-gutter-y: 4rem;
  }

  .g-sm-8,
  .gx-sm-8 {
    --bs-gutter-x: 4.5rem;
  }

  .g-sm-8,
  .gy-sm-8 {
    --bs-gutter-y: 4.5rem;
  }

  .g-sm-9,
  .gx-sm-9 {
    --bs-gutter-x: 5rem;
  }

  .g-sm-9,
  .gy-sm-9 {
    --bs-gutter-y: 5rem;
  }

  .g-sm-10,
  .gx-sm-10 {
    --bs-gutter-x: 5.5rem;
  }

  .g-sm-10,
  .gy-sm-10 {
    --bs-gutter-y: 5.5rem;
  }

  .sticky-sm-top {
    top: 0;
  }

  .sticky-sm-bottom,
  .sticky-sm-top {
    position: -webkit-sticky;
    position: sticky;
    z-index: 1020;
  }

  .sticky-sm-bottom {
    bottom: 0;
  }

  .float-sm-start {
    float: left !important;
  }

  .float-sm-end {
    float: right !important;
  }

  .float-sm-none {
    float: none !important;
  }

  .object-fit-sm-contain {
    -o-object-fit: contain !important;
    object-fit: contain !important;
  }

  .object-fit-sm-cover {
    -o-object-fit: cover !important;
    object-fit: cover !important;
  }

  .object-fit-sm-fill {
    -o-object-fit: fill !important;
    object-fit: fill !important;
  }

  .object-fit-sm-scale {
    -o-object-fit: scale-down !important;
    object-fit: scale-down !important;
  }

  .object-fit-sm-none {
    -o-object-fit: none !important;
    object-fit: none !important;
  }

  .d-sm-inline {
    display: inline !important;
  }

  .d-sm-inline-block {
    display: inline-block !important;
  }

  .d-sm-block {
    display: block !important;
  }

  .d-sm-grid {
    display: grid !important;
  }

  .d-sm-inline-grid {
    display: inline-grid !important;
  }

  .d-sm-table {
    display: table !important;
  }

  .d-sm-table-row {
    display: table-row !important;
  }

  .d-sm-table-cell {
    display: table-cell !important;
  }

  .d-sm-flex {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .d-sm-inline-flex {
    display: -webkit-inline-box !important;
    display: -webkit-inline-flex !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }

  .d-sm-none {
    display: none !important;
  }

  .w-sm-10 {
    width: 10% !important;
  }

  .w-sm-15 {
    width: 15% !important;
  }

  .w-sm-20 {
    width: 20% !important;
  }

  .w-sm-25 {
    width: 25% !important;
  }

  .w-sm-30 {
    width: 30% !important;
  }

  .w-sm-35 {
    width: 35% !important;
  }

  .w-sm-40 {
    width: 40% !important;
  }

  .w-sm-45 {
    width: 45% !important;
  }

  .w-sm-50 {
    width: 50% !important;
  }

  .w-sm-55 {
    width: 55% !important;
  }

  .w-sm-60 {
    width: 60% !important;
  }

  .w-sm-65 {
    width: 65% !important;
  }

  .w-sm-70 {
    width: 70% !important;
  }

  .w-sm-75 {
    width: 75% !important;
  }

  .w-sm-80 {
    width: 80% !important;
  }

  .w-sm-85 {
    width: 85% !important;
  }

  .w-sm-90 {
    width: 90% !important;
  }

  .w-sm-95 {
    width: 95% !important;
  }

  .w-sm-100 {
    width: 100% !important;
  }

  .w-sm-auto {
    width: auto !important;
  }

  .flex-sm-fill {
    -webkit-box-flex: 1 !important;
    -webkit-flex: 1 1 auto !important;
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }

  .flex-sm-row {
    -webkit-box-orient: horizontal !important;
    -webkit-flex-direction: row !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }

  .flex-sm-column,
  .flex-sm-row {
    -webkit-box-direction: normal !important;
  }

  .flex-sm-column {
    -webkit-box-orient: vertical !important;
    -webkit-flex-direction: column !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }

  .flex-sm-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -webkit-flex-direction: row-reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }

  .flex-sm-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -webkit-flex-direction: column-reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }

  .flex-sm-grow-0 {
    -webkit-box-flex: 0 !important;
    -ms-flex-positive: 0 !important;
    -webkit-flex-grow: 0 !important;
    flex-grow: 0 !important;
  }

  .flex-sm-grow-1 {
    -webkit-box-flex: 1 !important;
    -ms-flex-positive: 1 !important;
    -webkit-flex-grow: 1 !important;
    flex-grow: 1 !important;
  }

  .flex-sm-shrink-0 {
    -ms-flex-negative: 0 !important;
    -webkit-flex-shrink: 0 !important;
    flex-shrink: 0 !important;
  }

  .flex-sm-shrink-1 {
    -ms-flex-negative: 1 !important;
    -webkit-flex-shrink: 1 !important;
    flex-shrink: 1 !important;
  }

  .flex-sm-wrap {
    -webkit-flex-wrap: wrap !important;
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }

  .flex-sm-nowrap {
    -webkit-flex-wrap: nowrap !important;
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }

  .flex-sm-wrap-reverse {
    -webkit-flex-wrap: wrap-reverse !important;
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }

  .justify-content-sm-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    -webkit-justify-content: flex-start !important;
    justify-content: flex-start !important;
  }

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

  .justify-content-sm-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    -webkit-justify-content: center !important;
    justify-content: center !important;
  }

  .justify-content-sm-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    -webkit-justify-content: space-between !important;
    justify-content: space-between !important;
  }

  .justify-content-sm-around {
    -ms-flex-pack: distribute !important;
    -webkit-justify-content: space-around !important;
    justify-content: space-around !important;
  }

  .justify-content-sm-evenly {
    -webkit-box-pack: space-evenly !important;
    -ms-flex-pack: space-evenly !important;
    -webkit-justify-content: space-evenly !important;
    justify-content: space-evenly !important;
  }

  .align-items-sm-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    -webkit-align-items: flex-start !important;
    align-items: flex-start !important;
  }

  .align-items-sm-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    -webkit-align-items: flex-end !important;
    align-items: flex-end !important;
  }

  .align-items-sm-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    -webkit-align-items: center !important;
    align-items: center !important;
  }

  .align-items-sm-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    -webkit-align-items: baseline !important;
    align-items: baseline !important;
  }

  .align-items-sm-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    -webkit-align-items: stretch !important;
    align-items: stretch !important;
  }

  .align-content-sm-start {
    -ms-flex-line-pack: start !important;
    -webkit-align-content: flex-start !important;
    align-content: flex-start !important;
  }

  .align-content-sm-end {
    -ms-flex-line-pack: end !important;
    -webkit-align-content: flex-end !important;
    align-content: flex-end !important;
  }

  .align-content-sm-center {
    -ms-flex-line-pack: center !important;
    -webkit-align-content: center !important;
    align-content: center !important;
  }

  .align-content-sm-between {
    -ms-flex-line-pack: justify !important;
    -webkit-align-content: space-between !important;
    align-content: space-between !important;
  }

  .align-content-sm-around {
    -ms-flex-line-pack: distribute !important;
    -webkit-align-content: space-around !important;
    align-content: space-around !important;
  }

  .align-content-sm-stretch {
    -ms-flex-line-pack: stretch !important;
    -webkit-align-content: stretch !important;
    align-content: stretch !important;
  }

  .align-self-sm-auto {
    -ms-flex-item-align: auto !important;
    -webkit-align-self: auto !important;
    align-self: auto !important;
  }

  .align-self-sm-start {
    -ms-flex-item-align: start !important;
    -webkit-align-self: flex-start !important;
    align-self: flex-start !important;
  }

  .align-self-sm-end {
    -ms-flex-item-align: end !important;
    -webkit-align-self: flex-end !important;
    align-self: flex-end !important;
  }

  .align-self-sm-center {
    -ms-flex-item-align: center !important;
    -webkit-align-self: center !important;
    align-self: center !important;
  }

  .align-self-sm-baseline {
    -ms-flex-item-align: baseline !important;
    -webkit-align-self: baseline !important;
    align-self: baseline !important;
  }

  .align-self-sm-stretch {
    -ms-flex-item-align: stretch !important;
    -webkit-align-self: stretch !important;
    align-self: stretch !important;
  }

  .order-sm-first {
    -webkit-box-ordinal-group: 0 !important;
    -ms-flex-order: -1 !important;
    -webkit-order: -1 !important;
    order: -1 !important;
  }

  .order-sm-0 {
    -webkit-box-ordinal-group: 1 !important;
    -ms-flex-order: 0 !important;
    -webkit-order: 0 !important;
    order: 0 !important;
  }

  .order-sm-1 {
    -webkit-box-ordinal-group: 2 !important;
    -ms-flex-order: 1 !important;
    -webkit-order: 1 !important;
    order: 1 !important;
  }

  .order-sm-2 {
    -webkit-box-ordinal-group: 3 !important;
    -ms-flex-order: 2 !important;
    -webkit-order: 2 !important;
    order: 2 !important;
  }

  .order-sm-3 {
    -webkit-box-ordinal-group: 4 !important;
    -ms-flex-order: 3 !important;
    -webkit-order: 3 !important;
    order: 3 !important;
  }

  .order-sm-4 {
    -webkit-box-ordinal-group: 5 !important;
    -ms-flex-order: 4 !important;
    -webkit-order: 4 !important;
    order: 4 !important;
  }

  .order-sm-5 {
    -webkit-box-ordinal-group: 6 !important;
    -ms-flex-order: 5 !important;
    -webkit-order: 5 !important;
    order: 5 !important;
  }

  .order-sm-6 {
    -webkit-box-ordinal-group: 7 !important;
    -ms-flex-order: 6 !important;
    -webkit-order: 6 !important;
    order: 6 !important;
  }

  .order-sm-7 {
    -webkit-box-ordinal-group: 8 !important;
    -ms-flex-order: 7 !important;
    -webkit-order: 7 !important;
    order: 7 !important;
  }

  .order-sm-8 {
    -webkit-box-ordinal-group: 9 !important;
    -ms-flex-order: 8 !important;
    -webkit-order: 8 !important;
    order: 8 !important;
  }

  .order-sm-9 {
    -webkit-box-ordinal-group: 10 !important;
    -ms-flex-order: 9 !important;
    -webkit-order: 9 !important;
    order: 9 !important;
  }

  .order-sm-10 {
    -webkit-box-ordinal-group: 11 !important;
    -ms-flex-order: 10 !important;
    -webkit-order: 10 !important;
    order: 10 !important;
  }

  .order-sm-11 {
    -webkit-box-ordinal-group: 12 !important;
    -ms-flex-order: 11 !important;
    -webkit-order: 11 !important;
    order: 11 !important;
  }

  .order-sm-last {
    -webkit-box-ordinal-group: 13 !important;
    -ms-flex-order: 12 !important;
    -webkit-order: 12 !important;
    order: 12 !important;
  }

  .m-sm-0 {
    margin: 0 !important;
  }

  .m-sm-1 {
    margin: 0.25rem !important;
  }

  .m-sm-2 {
    margin: 0.5rem !important;
  }

  .m-sm-3 {
    margin: 1rem !important;
  }

  .m-sm-4 {
    margin: 1.5rem !important;
  }

  .m-sm-5 {
    margin: 3rem !important;
  }

  .m-sm-6 {
    margin: 5rem !important;
  }

  .m-sm-7 {
    margin: 7rem !important;
  }

  .m-sm-8 {
    margin: 8rem !important;
  }

  .m-sm-9 {
    margin: 9rem !important;
  }

  .m-sm-10 {
    margin: 10rem !important;
  }

  .m-sm-11 {
    margin: 11rem !important;
  }

  .m-sm-12 {
    margin: 12rem !important;
  }

  .m-sm-13 {
    margin: 13rem !important;
  }

  .m-sm-14 {
    margin: 14rem !important;
  }

  .m-sm-15 {
    margin: 15rem !important;
  }

  .m-sm-16 {
    margin: 16rem !important;
  }

  .m-sm-17 {
    margin: 17rem !important;
  }

  .m-sm-18 {
    margin: 18rem !important;
  }

  .m-sm-19 {
    margin: 19rem !important;
  }

  .m-sm-20 {
    margin: 20rem !important;
  }

  .m-sm-21 {
    margin: 21rem !important;
  }

  .m-sm-auto {
    margin: auto !important;
  }

  .mx-sm-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .mx-sm-1 {
    margin-left: 0.25rem !important;
    margin-right: 0.25rem !important;
  }

  .mx-sm-2 {
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
  }

  .mx-sm-3 {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }

  .mx-sm-4 {
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
  }

  .mx-sm-5 {
    margin-left: 3rem !important;
    margin-right: 3rem !important;
  }

  .mx-sm-6 {
    margin-left: 5rem !important;
    margin-right: 5rem !important;
  }

  .mx-sm-7 {
    margin-left: 7rem !important;
    margin-right: 7rem !important;
  }

  .mx-sm-8 {
    margin-left: 8rem !important;
    margin-right: 8rem !important;
  }

  .mx-sm-9 {
    margin-left: 9rem !important;
    margin-right: 9rem !important;
  }

  .mx-sm-10 {
    margin-left: 10rem !important;
    margin-right: 10rem !important;
  }

  .mx-sm-11 {
    margin-left: 11rem !important;
    margin-right: 11rem !important;
  }

  .mx-sm-12 {
    margin-left: 12rem !important;
    margin-right: 12rem !important;
  }

  .mx-sm-13 {
    margin-left: 13rem !important;
    margin-right: 13rem !important;
  }

  .mx-sm-14 {
    margin-left: 14rem !important;
    margin-right: 14rem !important;
  }

  .mx-sm-15 {
    margin-left: 15rem !important;
    margin-right: 15rem !important;
  }

  .mx-sm-16 {
    margin-left: 16rem !important;
    margin-right: 16rem !important;
  }

  .mx-sm-17 {
    margin-left: 17rem !important;
    margin-right: 17rem !important;
  }

  .mx-sm-18 {
    margin-left: 18rem !important;
    margin-right: 18rem !important;
  }

  .mx-sm-19 {
    margin-left: 19rem !important;
    margin-right: 19rem !important;
  }

  .mx-sm-20 {
    margin-left: 20rem !important;
    margin-right: 20rem !important;
  }

  .mx-sm-21 {
    margin-left: 21rem !important;
    margin-right: 21rem !important;
  }

  .mx-sm-auto {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .my-sm-0 {
    margin-bottom: 0 !important;
    margin-top: 0 !important;
  }

  .my-sm-1 {
    margin-bottom: 0.25rem !important;
    margin-top: 0.25rem !important;
  }

  .my-sm-2 {
    margin-bottom: 0.5rem !important;
    margin-top: 0.5rem !important;
  }

  .my-sm-3 {
    margin-bottom: 1rem !important;
    margin-top: 1rem !important;
  }

  .my-sm-4 {
    margin-bottom: 1.5rem !important;
    margin-top: 1.5rem !important;
  }

  .my-sm-5 {
    margin-bottom: 3rem !important;
    margin-top: 3rem !important;
  }

  .my-sm-6 {
    margin-bottom: 5rem !important;
    margin-top: 5rem !important;
  }

  .my-sm-7 {
    margin-bottom: 7rem !important;
    margin-top: 7rem !important;
  }

  .my-sm-8 {
    margin-bottom: 8rem !important;
    margin-top: 8rem !important;
  }

  .my-sm-9 {
    margin-bottom: 9rem !important;
    margin-top: 9rem !important;
  }

  .my-sm-10 {
    margin-bottom: 10rem !important;
    margin-top: 10rem !important;
  }

  .my-sm-11 {
    margin-bottom: 11rem !important;
    margin-top: 11rem !important;
  }

  .my-sm-12 {
    margin-bottom: 12rem !important;
    margin-top: 12rem !important;
  }

  .my-sm-13 {
    margin-bottom: 13rem !important;
    margin-top: 13rem !important;
  }

  .my-sm-14 {
    margin-bottom: 14rem !important;
    margin-top: 14rem !important;
  }

  .my-sm-15 {
    margin-bottom: 15rem !important;
    margin-top: 15rem !important;
  }

  .my-sm-16 {
    margin-bottom: 16rem !important;
    margin-top: 16rem !important;
  }

  .my-sm-17 {
    margin-bottom: 17rem !important;
    margin-top: 17rem !important;
  }

  .my-sm-18 {
    margin-bottom: 18rem !important;
    margin-top: 18rem !important;
  }

  .my-sm-19 {
    margin-bottom: 19rem !important;
    margin-top: 19rem !important;
  }

  .my-sm-20 {
    margin-bottom: 20rem !important;
    margin-top: 20rem !important;
  }

  .my-sm-21 {
    margin-bottom: 21rem !important;
    margin-top: 21rem !important;
  }

  .my-sm-auto {
    margin-bottom: auto !important;
    margin-top: auto !important;
  }

  .mt-sm-0 {
    margin-top: 0 !important;
  }

  .mt-sm-1 {
    margin-top: 0.25rem !important;
  }

  .mt-sm-2 {
    margin-top: 0.5rem !important;
  }

  .mt-sm-3 {
    margin-top: 1rem !important;
  }

  .mt-sm-4 {
    margin-top: 1.5rem !important;
  }

  .mt-sm-5 {
    margin-top: 3rem !important;
  }

  .mt-sm-6 {
    margin-top: 5rem !important;
  }

  .mt-sm-7 {
    margin-top: 7rem !important;
  }

  .mt-sm-8 {
    margin-top: 8rem !important;
  }

  .mt-sm-9 {
    margin-top: 9rem !important;
  }

  .mt-sm-10 {
    margin-top: 10rem !important;
  }

  .mt-sm-11 {
    margin-top: 11rem !important;
  }

  .mt-sm-12 {
    margin-top: 12rem !important;
  }

  .mt-sm-13 {
    margin-top: 13rem !important;
  }

  .mt-sm-14 {
    margin-top: 14rem !important;
  }

  .mt-sm-15 {
    margin-top: 15rem !important;
  }

  .mt-sm-16 {
    margin-top: 16rem !important;
  }

  .mt-sm-17 {
    margin-top: 17rem !important;
  }

  .mt-sm-18 {
    margin-top: 18rem !important;
  }

  .mt-sm-19 {
    margin-top: 19rem !important;
  }

  .mt-sm-20 {
    margin-top: 20rem !important;
  }

  .mt-sm-21 {
    margin-top: 21rem !important;
  }

  .mt-sm-auto {
    margin-top: auto !important;
  }

  .me-sm-0 {
    margin-right: 0 !important;
  }

  .me-sm-1 {
    margin-right: 0.25rem !important;
  }

  .me-sm-2 {
    margin-right: 0.5rem !important;
  }

  .me-sm-3 {
    margin-right: 1rem !important;
  }

  .me-sm-4 {
    margin-right: 1.5rem !important;
  }

  .me-sm-5 {
    margin-right: 3rem !important;
  }

  .me-sm-6 {
    margin-right: 5rem !important;
  }

  .me-sm-7 {
    margin-right: 7rem !important;
  }

  .me-sm-8 {
    margin-right: 8rem !important;
  }

  .me-sm-9 {
    margin-right: 9rem !important;
  }

  .me-sm-10 {
    margin-right: 10rem !important;
  }

  .me-sm-11 {
    margin-right: 11rem !important;
  }

  .me-sm-12 {
    margin-right: 12rem !important;
  }

  .me-sm-13 {
    margin-right: 13rem !important;
  }

  .me-sm-14 {
    margin-right: 14rem !important;
  }

  .me-sm-15 {
    margin-right: 15rem !important;
  }

  .me-sm-16 {
    margin-right: 16rem !important;
  }

  .me-sm-17 {
    margin-right: 17rem !important;
  }

  .me-sm-18 {
    margin-right: 18rem !important;
  }

  .me-sm-19 {
    margin-right: 19rem !important;
  }

  .me-sm-20 {
    margin-right: 20rem !important;
  }

  .me-sm-21 {
    margin-right: 21rem !important;
  }

  .me-sm-auto {
    margin-right: auto !important;
  }

  .mb-sm-0 {
    margin-bottom: 0 !important;
  }

  .mb-sm-1 {
    margin-bottom: 0.25rem !important;
  }

  .mb-sm-2 {
    margin-bottom: 0.5rem !important;
  }

  .mb-sm-3 {
    margin-bottom: 1rem !important;
  }

  .mb-sm-4 {
    margin-bottom: 1.5rem !important;
  }

  .mb-sm-5 {
    margin-bottom: 3rem !important;
  }

  .mb-sm-6 {
    margin-bottom: 5rem !important;
  }

  .mb-sm-7 {
    margin-bottom: 7rem !important;
  }

  .mb-sm-8 {
    margin-bottom: 8rem !important;
  }

  .mb-sm-9 {
    margin-bottom: 9rem !important;
  }

  .mb-sm-10 {
    margin-bottom: 10rem !important;
  }

  .mb-sm-11 {
    margin-bottom: 11rem !important;
  }

  .mb-sm-12 {
    margin-bottom: 12rem !important;
  }

  .mb-sm-13 {
    margin-bottom: 13rem !important;
  }

  .mb-sm-14 {
    margin-bottom: 14rem !important;
  }

  .mb-sm-15 {
    margin-bottom: 15rem !important;
  }

  .mb-sm-16 {
    margin-bottom: 16rem !important;
  }

  .mb-sm-17 {
    margin-bottom: 17rem !important;
  }

  .mb-sm-18 {
    margin-bottom: 18rem !important;
  }

  .mb-sm-19 {
    margin-bottom: 19rem !important;
  }

  .mb-sm-20 {
    margin-bottom: 20rem !important;
  }

  .mb-sm-21 {
    margin-bottom: 21rem !important;
  }

  .mb-sm-auto {
    margin-bottom: auto !important;
  }

  .ms-sm-0 {
    margin-left: 0 !important;
  }

  .ms-sm-1 {
    margin-left: 0.25rem !important;
  }

  .ms-sm-2 {
    margin-left: 0.5rem !important;
  }

  .ms-sm-3 {
    margin-left: 1rem !important;
  }

  .ms-sm-4 {
    margin-left: 1.5rem !important;
  }

  .ms-sm-5 {
    margin-left: 3rem !important;
  }

  .ms-sm-6 {
    margin-left: 5rem !important;
  }

  .ms-sm-7 {
    margin-left: 7rem !important;
  }

  .ms-sm-8 {
    margin-left: 8rem !important;
  }

  .ms-sm-9 {
    margin-left: 9rem !important;
  }

  .ms-sm-10 {
    margin-left: 10rem !important;
  }

  .ms-sm-11 {
    margin-left: 11rem !important;
  }

  .ms-sm-12 {
    margin-left: 12rem !important;
  }

  .ms-sm-13 {
    margin-left: 13rem !important;
  }

  .ms-sm-14 {
    margin-left: 14rem !important;
  }

  .ms-sm-15 {
    margin-left: 15rem !important;
  }

  .ms-sm-16 {
    margin-left: 16rem !important;
  }

  .ms-sm-17 {
    margin-left: 17rem !important;
  }

  .ms-sm-18 {
    margin-left: 18rem !important;
  }

  .ms-sm-19 {
    margin-left: 19rem !important;
  }

  .ms-sm-20 {
    margin-left: 20rem !important;
  }

  .ms-sm-21 {
    margin-left: 21rem !important;
  }

  .ms-sm-auto {
    margin-left: auto !important;
  }

  .m-sm-n1 {
    margin: -0.25rem !important;
  }

  .m-sm-n2 {
    margin: -0.5rem !important;
  }

  .m-sm-n3 {
    margin: -1rem !important;
  }

  .m-sm-n4 {
    margin: -1.5rem !important;
  }

  .m-sm-n5 {
    margin: -3rem !important;
  }

  .m-sm-n6 {
    margin: -5rem !important;
  }

  .m-sm-n7 {
    margin: -7rem !important;
  }

  .m-sm-n8 {
    margin: -8rem !important;
  }

  .m-sm-n9 {
    margin: -9rem !important;
  }

  .m-sm-n10 {
    margin: -10rem !important;
  }

  .m-sm-n11 {
    margin: -11rem !important;
  }

  .m-sm-n12 {
    margin: -12rem !important;
  }

  .m-sm-n13 {
    margin: -13rem !important;
  }

  .m-sm-n14 {
    margin: -14rem !important;
  }

  .m-sm-n15 {
    margin: -15rem !important;
  }

  .m-sm-n16 {
    margin: -16rem !important;
  }

  .m-sm-n17 {
    margin: -17rem !important;
  }

  .m-sm-n18 {
    margin: -18rem !important;
  }

  .m-sm-n19 {
    margin: -19rem !important;
  }

  .m-sm-n20 {
    margin: -20rem !important;
  }

  .m-sm-n21 {
    margin: -21rem !important;
  }

  .mx-sm-n1 {
    margin-left: -0.25rem !important;
    margin-right: -0.25rem !important;
  }

  .mx-sm-n2 {
    margin-left: -0.5rem !important;
    margin-right: -0.5rem !important;
  }

  .mx-sm-n3 {
    margin-left: -1rem !important;
    margin-right: -1rem !important;
  }

  .mx-sm-n4 {
    margin-left: -1.5rem !important;
    margin-right: -1.5rem !important;
  }

  .mx-sm-n5 {
    margin-left: -3rem !important;
    margin-right: -3rem !important;
  }

  .mx-sm-n6 {
    margin-left: -5rem !important;
    margin-right: -5rem !important;
  }

  .mx-sm-n7 {
    margin-left: -7rem !important;
    margin-right: -7rem !important;
  }

  .mx-sm-n8 {
    margin-left: -8rem !important;
    margin-right: -8rem !important;
  }

  .mx-sm-n9 {
    margin-left: -9rem !important;
    margin-right: -9rem !important;
  }

  .mx-sm-n10 {
    margin-left: -10rem !important;
    margin-right: -10rem !important;
  }

  .mx-sm-n11 {
    margin-left: -11rem !important;
    margin-right: -11rem !important;
  }

  .mx-sm-n12 {
    margin-left: -12rem !important;
    margin-right: -12rem !important;
  }

  .mx-sm-n13 {
    margin-left: -13rem !important;
    margin-right: -13rem !important;
  }

  .mx-sm-n14 {
    margin-left: -14rem !important;
    margin-right: -14rem !important;
  }

  .mx-sm-n15 {
    margin-left: -15rem !important;
    margin-right: -15rem !important;
  }

  .mx-sm-n16 {
    margin-left: -16rem !important;
    margin-right: -16rem !important;
  }

  .mx-sm-n17 {
    margin-left: -17rem !important;
    margin-right: -17rem !important;
  }

  .mx-sm-n18 {
    margin-left: -18rem !important;
    margin-right: -18rem !important;
  }

  .mx-sm-n19 {
    margin-left: -19rem !important;
    margin-right: -19rem !important;
  }

  .mx-sm-n20 {
    margin-left: -20rem !important;
    margin-right: -20rem !important;
  }

  .mx-sm-n21 {
    margin-left: -21rem !important;
    margin-right: -21rem !important;
  }

  .my-sm-n1 {
    margin-bottom: -0.25rem !important;
    margin-top: -0.25rem !important;
  }

  .my-sm-n2 {
    margin-bottom: -0.5rem !important;
    margin-top: -0.5rem !important;
  }

  .my-sm-n3 {
    margin-bottom: -1rem !important;
    margin-top: -1rem !important;
  }

  .my-sm-n4 {
    margin-bottom: -1.5rem !important;
    margin-top: -1.5rem !important;
  }

  .my-sm-n5 {
    margin-bottom: -3rem !important;
    margin-top: -3rem !important;
  }

  .my-sm-n6 {
    margin-bottom: -5rem !important;
    margin-top: -5rem !important;
  }

  .my-sm-n7 {
    margin-bottom: -7rem !important;
    margin-top: -7rem !important;
  }

  .my-sm-n8 {
    margin-bottom: -8rem !important;
    margin-top: -8rem !important;
  }

  .my-sm-n9 {
    margin-bottom: -9rem !important;
    margin-top: -9rem !important;
  }

  .my-sm-n10 {
    margin-bottom: -10rem !important;
    margin-top: -10rem !important;
  }

  .my-sm-n11 {
    margin-bottom: -11rem !important;
    margin-top: -11rem !important;
  }

  .my-sm-n12 {
    margin-bottom: -12rem !important;
    margin-top: -12rem !important;
  }

  .my-sm-n13 {
    margin-bottom: -13rem !important;
    margin-top: -13rem !important;
  }

  .my-sm-n14 {
    margin-bottom: -14rem !important;
    margin-top: -14rem !important;
  }

  .my-sm-n15 {
    margin-bottom: -15rem !important;
    margin-top: -15rem !important;
  }

  .my-sm-n16 {
    margin-bottom: -16rem !important;
    margin-top: -16rem !important;
  }

  .my-sm-n17 {
    margin-bottom: -17rem !important;
    margin-top: -17rem !important;
  }

  .my-sm-n18 {
    margin-bottom: -18rem !important;
    margin-top: -18rem !important;
  }

  .my-sm-n19 {
    margin-bottom: -19rem !important;
    margin-top: -19rem !important;
  }

  .my-sm-n20 {
    margin-bottom: -20rem !important;
    margin-top: -20rem !important;
  }

  .my-sm-n21 {
    margin-bottom: -21rem !important;
    margin-top: -21rem !important;
  }

  .mt-sm-n1 {
    margin-top: -0.25rem !important;
  }

  .mt-sm-n2 {
    margin-top: -0.5rem !important;
  }

  .mt-sm-n3 {
    margin-top: -1rem !important;
  }

  .mt-sm-n4 {
    margin-top: -1.5rem !important;
  }

  .mt-sm-n5 {
    margin-top: -3rem !important;
  }

  .mt-sm-n6 {
    margin-top: -5rem !important;
  }

  .mt-sm-n7 {
    margin-top: -7rem !important;
  }

  .mt-sm-n8 {
    margin-top: -8rem !important;
  }

  .mt-sm-n9 {
    margin-top: -9rem !important;
  }

  .mt-sm-n10 {
    margin-top: -10rem !important;
  }

  .mt-sm-n11 {
    margin-top: -11rem !important;
  }

  .mt-sm-n12 {
    margin-top: -12rem !important;
  }

  .mt-sm-n13 {
    margin-top: -13rem !important;
  }

  .mt-sm-n14 {
    margin-top: -14rem !important;
  }

  .mt-sm-n15 {
    margin-top: -15rem !important;
  }

  .mt-sm-n16 {
    margin-top: -16rem !important;
  }

  .mt-sm-n17 {
    margin-top: -17rem !important;
  }

  .mt-sm-n18 {
    margin-top: -18rem !important;
  }

  .mt-sm-n19 {
    margin-top: -19rem !important;
  }

  .mt-sm-n20 {
    margin-top: -20rem !important;
  }

  .mt-sm-n21 {
    margin-top: -21rem !important;
  }

  .me-sm-n1 {
    margin-right: -0.25rem !important;
  }

  .me-sm-n2 {
    margin-right: -0.5rem !important;
  }

  .me-sm-n3 {
    margin-right: -1rem !important;
  }

  .me-sm-n4 {
    margin-right: -1.5rem !important;
  }

  .me-sm-n5 {
    margin-right: -3rem !important;
  }

  .me-sm-n6 {
    margin-right: -5rem !important;
  }

  .me-sm-n7 {
    margin-right: -7rem !important;
  }

  .me-sm-n8 {
    margin-right: -8rem !important;
  }

  .me-sm-n9 {
    margin-right: -9rem !important;
  }

  .me-sm-n10 {
    margin-right: -10rem !important;
  }

  .me-sm-n11 {
    margin-right: -11rem !important;
  }

  .me-sm-n12 {
    margin-right: -12rem !important;
  }

  .me-sm-n13 {
    margin-right: -13rem !important;
  }

  .me-sm-n14 {
    margin-right: -14rem !important;
  }

  .me-sm-n15 {
    margin-right: -15rem !important;
  }

  .me-sm-n16 {
    margin-right: -16rem !important;
  }

  .me-sm-n17 {
    margin-right: -17rem !important;
  }

  .me-sm-n18 {
    margin-right: -18rem !important;
  }

  .me-sm-n19 {
    margin-right: -19rem !important;
  }

  .me-sm-n20 {
    margin-right: -20rem !important;
  }

  .me-sm-n21 {
    margin-right: -21rem !important;
  }

  .mb-sm-n1 {
    margin-bottom: -0.25rem !important;
  }

  .mb-sm-n2 {
    margin-bottom: -0.5rem !important;
  }

  .mb-sm-n3 {
    margin-bottom: -1rem !important;
  }

  .mb-sm-n4 {
    margin-bottom: -1.5rem !important;
  }

  .mb-sm-n5 {
    margin-bottom: -3rem !important;
  }

  .mb-sm-n6 {
    margin-bottom: -5rem !important;
  }

  .mb-sm-n7 {
    margin-bottom: -7rem !important;
  }

  .mb-sm-n8 {
    margin-bottom: -8rem !important;
  }

  .mb-sm-n9 {
    margin-bottom: -9rem !important;
  }

  .mb-sm-n10 {
    margin-bottom: -10rem !important;
  }

  .mb-sm-n11 {
    margin-bottom: -11rem !important;
  }

  .mb-sm-n12 {
    margin-bottom: -12rem !important;
  }

  .mb-sm-n13 {
    margin-bottom: -13rem !important;
  }

  .mb-sm-n14 {
    margin-bottom: -14rem !important;
  }

  .mb-sm-n15 {
    margin-bottom: -15rem !important;
  }

  .mb-sm-n16 {
    margin-bottom: -16rem !important;
  }

  .mb-sm-n17 {
    margin-bottom: -17rem !important;
  }

  .mb-sm-n18 {
    margin-bottom: -18rem !important;
  }

  .mb-sm-n19 {
    margin-bottom: -19rem !important;
  }

  .mb-sm-n20 {
    margin-bottom: -20rem !important;
  }

  .mb-sm-n21 {
    margin-bottom: -21rem !important;
  }

  .ms-sm-n1 {
    margin-left: -0.25rem !important;
  }

  .ms-sm-n2 {
    margin-left: -0.5rem !important;
  }

  .ms-sm-n3 {
    margin-left: -1rem !important;
  }

  .ms-sm-n4 {
    margin-left: -1.5rem !important;
  }

  .ms-sm-n5 {
    margin-left: -3rem !important;
  }

  .ms-sm-n6 {
    margin-left: -5rem !important;
  }

  .ms-sm-n7 {
    margin-left: -7rem !important;
  }

  .ms-sm-n8 {
    margin-left: -8rem !important;
  }

  .ms-sm-n9 {
    margin-left: -9rem !important;
  }

  .ms-sm-n10 {
    margin-left: -10rem !important;
  }

  .ms-sm-n11 {
    margin-left: -11rem !important;
  }

  .ms-sm-n12 {
    margin-left: -12rem !important;
  }

  .ms-sm-n13 {
    margin-left: -13rem !important;
  }

  .ms-sm-n14 {
    margin-left: -14rem !important;
  }

  .ms-sm-n15 {
    margin-left: -15rem !important;
  }

  .ms-sm-n16 {
    margin-left: -16rem !important;
  }

  .ms-sm-n17 {
    margin-left: -17rem !important;
  }

  .ms-sm-n18 {
    margin-left: -18rem !important;
  }

  .ms-sm-n19 {
    margin-left: -19rem !important;
  }

  .ms-sm-n20 {
    margin-left: -20rem !important;
  }

  .ms-sm-n21 {
    margin-left: -21rem !important;
  }

  .p-sm-0 {
    padding: 0 !important;
  }

  .p-sm-1 {
    padding: 0.25rem !important;
  }

  .p-sm-2 {
    padding: 0.5rem !important;
  }

  .p-sm-3 {
    padding: 1rem !important;
  }

  .p-sm-4 {
    padding: 1.5rem !important;
  }

  .p-sm-5 {
    padding: 3rem !important;
  }

  .p-sm-6 {
    padding: 5rem !important;
  }

  .p-sm-7 {
    padding: 7rem !important;
  }

  .p-sm-8 {
    padding: 8rem !important;
  }

  .p-sm-9 {
    padding: 9rem !important;
  }

  .p-sm-10 {
    padding: 10rem !important;
  }

  .p-sm-11 {
    padding: 11rem !important;
  }

  .p-sm-12 {
    padding: 12rem !important;
  }

  .p-sm-13 {
    padding: 13rem !important;
  }

  .p-sm-14 {
    padding: 14rem !important;
  }

  .p-sm-15 {
    padding: 15rem !important;
  }

  .p-sm-16 {
    padding: 16rem !important;
  }

  .p-sm-17 {
    padding: 17rem !important;
  }

  .p-sm-18 {
    padding: 18rem !important;
  }

  .p-sm-19 {
    padding: 19rem !important;
  }

  .p-sm-20 {
    padding: 20rem !important;
  }

  .p-sm-21 {
    padding: 21rem !important;
  }

  .px-sm-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .px-sm-1 {
    padding-left: 0.25rem !important;
    padding-right: 0.25rem !important;
  }

  .px-sm-2 {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }

  .px-sm-3 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .px-sm-4 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }

  .px-sm-5 {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
  }

  .px-sm-6 {
    padding-left: 5rem !important;
    padding-right: 5rem !important;
  }

  .px-sm-7 {
    padding-left: 7rem !important;
    padding-right: 7rem !important;
  }

  .px-sm-8 {
    padding-left: 8rem !important;
    padding-right: 8rem !important;
  }

  .px-sm-9 {
    padding-left: 9rem !important;
    padding-right: 9rem !important;
  }

  .px-sm-10 {
    padding-left: 10rem !important;
    padding-right: 10rem !important;
  }

  .px-sm-11 {
    padding-left: 11rem !important;
    padding-right: 11rem !important;
  }

  .px-sm-12 {
    padding-left: 12rem !important;
    padding-right: 12rem !important;
  }

  .px-sm-13 {
    padding-left: 13rem !important;
    padding-right: 13rem !important;
  }

  .px-sm-14 {
    padding-left: 14rem !important;
    padding-right: 14rem !important;
  }

  .px-sm-15 {
    padding-left: 15rem !important;
    padding-right: 15rem !important;
  }

  .px-sm-16 {
    padding-left: 16rem !important;
    padding-right: 16rem !important;
  }

  .px-sm-17 {
    padding-left: 17rem !important;
    padding-right: 17rem !important;
  }

  .px-sm-18 {
    padding-left: 18rem !important;
    padding-right: 18rem !important;
  }

  .px-sm-19 {
    padding-left: 19rem !important;
    padding-right: 19rem !important;
  }

  .px-sm-20 {
    padding-left: 20rem !important;
    padding-right: 20rem !important;
  }

  .px-sm-21 {
    padding-left: 21rem !important;
    padding-right: 21rem !important;
  }

  .py-sm-0 {
    padding-bottom: 0 !important;
    padding-top: 0 !important;
  }

  .py-sm-1 {
    padding-bottom: 0.25rem !important;
    padding-top: 0.25rem !important;
  }

  .py-sm-2 {
    padding-bottom: 0.5rem !important;
    padding-top: 0.5rem !important;
  }

  .py-sm-3 {
    padding-bottom: 1rem !important;
    padding-top: 1rem !important;
  }

  .py-sm-4 {
    padding-bottom: 1.5rem !important;
    padding-top: 1.5rem !important;
  }

  .py-sm-5 {
    padding-bottom: 3rem !important;
    padding-top: 3rem !important;
  }

  .py-sm-6 {
    padding-bottom: 5rem !important;
    padding-top: 5rem !important;
  }

  .py-sm-7 {
    padding-bottom: 7rem !important;
    padding-top: 7rem !important;
  }

  .py-sm-8 {
    padding-bottom: 8rem !important;
    padding-top: 8rem !important;
  }

  .py-sm-9 {
    padding-bottom: 9rem !important;
    padding-top: 9rem !important;
  }

  .py-sm-10 {
    padding-bottom: 10rem !important;
    padding-top: 10rem !important;
  }

  .py-sm-11 {
    padding-bottom: 11rem !important;
    padding-top: 11rem !important;
  }

  .py-sm-12 {
    padding-bottom: 12rem !important;
    padding-top: 12rem !important;
  }

  .py-sm-13 {
    padding-bottom: 13rem !important;
    padding-top: 13rem !important;
  }

  .py-sm-14 {
    padding-bottom: 14rem !important;
    padding-top: 14rem !important;
  }

  .py-sm-15 {
    padding-bottom: 15rem !important;
    padding-top: 15rem !important;
  }

  .py-sm-16 {
    padding-bottom: 16rem !important;
    padding-top: 16rem !important;
  }

  .py-sm-17 {
    padding-bottom: 17rem !important;
    padding-top: 17rem !important;
  }

  .py-sm-18 {
    padding-bottom: 18rem !important;
    padding-top: 18rem !important;
  }

  .py-sm-19 {
    padding-bottom: 19rem !important;
    padding-top: 19rem !important;
  }

  .py-sm-20 {
    padding-bottom: 20rem !important;
    padding-top: 20rem !important;
  }

  .py-sm-21 {
    padding-bottom: 21rem !important;
    padding-top: 21rem !important;
  }

  .pt-sm-0 {
    padding-top: 0 !important;
  }

  .pt-sm-1 {
    padding-top: 0.25rem !important;
  }

  .pt-sm-2 {
    padding-top: 0.5rem !important;
  }

  .pt-sm-3 {
    padding-top: 1rem !important;
  }

  .pt-sm-4 {
    padding-top: 1.5rem !important;
  }

  .pt-sm-5 {
    padding-top: 3rem !important;
  }

  .pt-sm-6 {
    padding-top: 5rem !important;
  }

  .pt-sm-7 {
    padding-top: 7rem !important;
  }

  .pt-sm-8 {
    padding-top: 8rem !important;
  }

  .pt-sm-9 {
    padding-top: 9rem !important;
  }

  .pt-sm-10 {
    padding-top: 10rem !important;
  }

  .pt-sm-11 {
    padding-top: 11rem !important;
  }

  .pt-sm-12 {
    padding-top: 12rem !important;
  }

  .pt-sm-13 {
    padding-top: 13rem !important;
  }

  .pt-sm-14 {
    padding-top: 14rem !important;
  }

  .pt-sm-15 {
    padding-top: 15rem !important;
  }

  .pt-sm-16 {
    padding-top: 16rem !important;
  }

  .pt-sm-17 {
    padding-top: 17rem !important;
  }

  .pt-sm-18 {
    padding-top: 18rem !important;
  }

  .pt-sm-19 {
    padding-top: 19rem !important;
  }

  .pt-sm-20 {
    padding-top: 20rem !important;
  }

  .pt-sm-21 {
    padding-top: 21rem !important;
  }

  .pe-sm-0 {
    padding-right: 0 !important;
  }

  .pe-sm-1 {
    padding-right: 0.25rem !important;
  }

  .pe-sm-2 {
    padding-right: 0.5rem !important;
  }

  .pe-sm-3 {
    padding-right: 1rem !important;
  }

  .pe-sm-4 {
    padding-right: 1.5rem !important;
  }

  .pe-sm-5 {
    padding-right: 3rem !important;
  }

  .pe-sm-6 {
    padding-right: 5rem !important;
  }

  .pe-sm-7 {
    padding-right: 7rem !important;
  }

  .pe-sm-8 {
    padding-right: 8rem !important;
  }

  .pe-sm-9 {
    padding-right: 9rem !important;
  }

  .pe-sm-10 {
    padding-right: 10rem !important;
  }

  .pe-sm-11 {
    padding-right: 11rem !important;
  }

  .pe-sm-12 {
    padding-right: 12rem !important;
  }

  .pe-sm-13 {
    padding-right: 13rem !important;
  }

  .pe-sm-14 {
    padding-right: 14rem !important;
  }

  .pe-sm-15 {
    padding-right: 15rem !important;
  }

  .pe-sm-16 {
    padding-right: 16rem !important;
  }

  .pe-sm-17 {
    padding-right: 17rem !important;
  }

  .pe-sm-18 {
    padding-right: 18rem !important;
  }

  .pe-sm-19 {
    padding-right: 19rem !important;
  }

  .pe-sm-20 {
    padding-right: 20rem !important;
  }

  .pe-sm-21 {
    padding-right: 21rem !important;
  }

  .pb-sm-0 {
    padding-bottom: 0 !important;
  }

  .pb-sm-1 {
    padding-bottom: 0.25rem !important;
  }

  .pb-sm-2 {
    padding-bottom: 0.5rem !important;
  }

  .pb-sm-3 {
    padding-bottom: 1rem !important;
  }

  .pb-sm-4 {
    padding-bottom: 1.5rem !important;
  }

  .pb-sm-5 {
    padding-bottom: 3rem !important;
  }

  .pb-sm-6 {
    padding-bottom: 5rem !important;
  }

  .pb-sm-7 {
    padding-bottom: 7rem !important;
  }

  .pb-sm-8 {
    padding-bottom: 8rem !important;
  }

  .pb-sm-9 {
    padding-bottom: 9rem !important;
  }

  .pb-sm-10 {
    padding-bottom: 10rem !important;
  }

  .pb-sm-11 {
    padding-bottom: 11rem !important;
  }

  .pb-sm-12 {
    padding-bottom: 12rem !important;
  }

  .pb-sm-13 {
    padding-bottom: 13rem !important;
  }

  .pb-sm-14 {
    padding-bottom: 14rem !important;
  }

  .pb-sm-15 {
    padding-bottom: 15rem !important;
  }

  .pb-sm-16 {
    padding-bottom: 16rem !important;
  }

  .pb-sm-17 {
    padding-bottom: 17rem !important;
  }

  .pb-sm-18 {
    padding-bottom: 18rem !important;
  }

  .pb-sm-19 {
    padding-bottom: 19rem !important;
  }

  .pb-sm-20 {
    padding-bottom: 20rem !important;
  }

  .pb-sm-21 {
    padding-bottom: 21rem !important;
  }

  .ps-sm-0 {
    padding-left: 0 !important;
  }

  .ps-sm-1 {
    padding-left: 0.25rem !important;
  }

  .ps-sm-2 {
    padding-left: 0.5rem !important;
  }

  .ps-sm-3 {
    padding-left: 1rem !important;
  }

  .ps-sm-4 {
    padding-left: 1.5rem !important;
  }

  .ps-sm-5 {
    padding-left: 3rem !important;
  }

  .ps-sm-6 {
    padding-left: 5rem !important;
  }

  .ps-sm-7 {
    padding-left: 7rem !important;
  }

  .ps-sm-8 {
    padding-left: 8rem !important;
  }

  .ps-sm-9 {
    padding-left: 9rem !important;
  }

  .ps-sm-10 {
    padding-left: 10rem !important;
  }

  .ps-sm-11 {
    padding-left: 11rem !important;
  }

  .ps-sm-12 {
    padding-left: 12rem !important;
  }

  .ps-sm-13 {
    padding-left: 13rem !important;
  }

  .ps-sm-14 {
    padding-left: 14rem !important;
  }

  .ps-sm-15 {
    padding-left: 15rem !important;
  }

  .ps-sm-16 {
    padding-left: 16rem !important;
  }

  .ps-sm-17 {
    padding-left: 17rem !important;
  }

  .ps-sm-18 {
    padding-left: 18rem !important;
  }

  .ps-sm-19 {
    padding-left: 19rem !important;
  }

  .ps-sm-20 {
    padding-left: 20rem !important;
  }

  .ps-sm-21 {
    padding-left: 21rem !important;
  }

  .gap-sm-0 {
    gap: 0 !important;
  }

  .gap-sm-1 {
    gap: 0.25rem !important;
  }

  .gap-sm-2 {
    gap: 0.5rem !important;
  }

  .gap-sm-3 {
    gap: 1rem !important;
  }

  .gap-sm-4 {
    gap: 1.5rem !important;
  }

  .gap-sm-5 {
    gap: 3rem !important;
  }

  .gap-sm-6 {
    gap: 5rem !important;
  }

  .gap-sm-7 {
    gap: 7rem !important;
  }

  .gap-sm-8 {
    gap: 8rem !important;
  }

  .gap-sm-9 {
    gap: 9rem !important;
  }

  .gap-sm-10 {
    gap: 10rem !important;
  }

  .gap-sm-11 {
    gap: 11rem !important;
  }

  .gap-sm-12 {
    gap: 12rem !important;
  }

  .gap-sm-13 {
    gap: 13rem !important;
  }

  .gap-sm-14 {
    gap: 14rem !important;
  }

  .gap-sm-15 {
    gap: 15rem !important;
  }

  .gap-sm-16 {
    gap: 16rem !important;
  }

  .gap-sm-17 {
    gap: 17rem !important;
  }

  .gap-sm-18 {
    gap: 18rem !important;
  }

  .gap-sm-19 {
    gap: 19rem !important;
  }

  .gap-sm-20 {
    gap: 20rem !important;
  }

  .gap-sm-21 {
    gap: 21rem !important;
  }

  .row-gap-sm-0 {
    row-gap: 0 !important;
  }

  .row-gap-sm-1 {
    row-gap: 0.25rem !important;
  }

  .row-gap-sm-2 {
    row-gap: 0.5rem !important;
  }

  .row-gap-sm-3 {
    row-gap: 1rem !important;
  }

  .row-gap-sm-4 {
    row-gap: 1.5rem !important;
  }

  .row-gap-sm-5 {
    row-gap: 3rem !important;
  }

  .row-gap-sm-6 {
    row-gap: 5rem !important;
  }

  .row-gap-sm-7 {
    row-gap: 7rem !important;
  }

  .row-gap-sm-8 {
    row-gap: 8rem !important;
  }

  .row-gap-sm-9 {
    row-gap: 9rem !important;
  }

  .row-gap-sm-10 {
    row-gap: 10rem !important;
  }

  .row-gap-sm-11 {
    row-gap: 11rem !important;
  }

  .row-gap-sm-12 {
    row-gap: 12rem !important;
  }

  .row-gap-sm-13 {
    row-gap: 13rem !important;
  }

  .row-gap-sm-14 {
    row-gap: 14rem !important;
  }

  .row-gap-sm-15 {
    row-gap: 15rem !important;
  }

  .row-gap-sm-16 {
    row-gap: 16rem !important;
  }

  .row-gap-sm-17 {
    row-gap: 17rem !important;
  }

  .row-gap-sm-18 {
    row-gap: 18rem !important;
  }

  .row-gap-sm-19 {
    row-gap: 19rem !important;
  }

  .row-gap-sm-20 {
    row-gap: 20rem !important;
  }

  .row-gap-sm-21 {
    row-gap: 21rem !important;
  }

  .column-gap-sm-0 {
    -webkit-column-gap: 0 !important;
    -moz-column-gap: 0 !important;
    column-gap: 0 !important;
  }

  .column-gap-sm-1 {
    -webkit-column-gap: 0.25rem !important;
    -moz-column-gap: 0.25rem !important;
    column-gap: 0.25rem !important;
  }

  .column-gap-sm-2 {
    -webkit-column-gap: 0.5rem !important;
    -moz-column-gap: 0.5rem !important;
    column-gap: 0.5rem !important;
  }

  .column-gap-sm-3 {
    -webkit-column-gap: 1rem !important;
    -moz-column-gap: 1rem !important;
    column-gap: 1rem !important;
  }

  .column-gap-sm-4 {
    -webkit-column-gap: 1.5rem !important;
    -moz-column-gap: 1.5rem !important;
    column-gap: 1.5rem !important;
  }

  .column-gap-sm-5 {
    -webkit-column-gap: 3rem !important;
    -moz-column-gap: 3rem !important;
    column-gap: 3rem !important;
  }

  .column-gap-sm-6 {
    -webkit-column-gap: 5rem !important;
    -moz-column-gap: 5rem !important;
    column-gap: 5rem !important;
  }

  .column-gap-sm-7 {
    -webkit-column-gap: 7rem !important;
    -moz-column-gap: 7rem !important;
    column-gap: 7rem !important;
  }

  .column-gap-sm-8 {
    -webkit-column-gap: 8rem !important;
    -moz-column-gap: 8rem !important;
    column-gap: 8rem !important;
  }

  .column-gap-sm-9 {
    -webkit-column-gap: 9rem !important;
    -moz-column-gap: 9rem !important;
    column-gap: 9rem !important;
  }

  .column-gap-sm-10 {
    -webkit-column-gap: 10rem !important;
    -moz-column-gap: 10rem !important;
    column-gap: 10rem !important;
  }

  .column-gap-sm-11 {
    -webkit-column-gap: 11rem !important;
    -moz-column-gap: 11rem !important;
    column-gap: 11rem !important;
  }

  .column-gap-sm-12 {
    -webkit-column-gap: 12rem !important;
    -moz-column-gap: 12rem !important;
    column-gap: 12rem !important;
  }

  .column-gap-sm-13 {
    -webkit-column-gap: 13rem !important;
    -moz-column-gap: 13rem !important;
    column-gap: 13rem !important;
  }

  .column-gap-sm-14 {
    -webkit-column-gap: 14rem !important;
    -moz-column-gap: 14rem !important;
    column-gap: 14rem !important;
  }

  .column-gap-sm-15 {
    -webkit-column-gap: 15rem !important;
    -moz-column-gap: 15rem !important;
    column-gap: 15rem !important;
  }

  .column-gap-sm-16 {
    -webkit-column-gap: 16rem !important;
    -moz-column-gap: 16rem !important;
    column-gap: 16rem !important;
  }

  .column-gap-sm-17 {
    -webkit-column-gap: 17rem !important;
    -moz-column-gap: 17rem !important;
    column-gap: 17rem !important;
  }

  .column-gap-sm-18 {
    -webkit-column-gap: 18rem !important;
    -moz-column-gap: 18rem !important;
    column-gap: 18rem !important;
  }

  .column-gap-sm-19 {
    -webkit-column-gap: 19rem !important;
    -moz-column-gap: 19rem !important;
    column-gap: 19rem !important;
  }

  .column-gap-sm-20 {
    -webkit-column-gap: 20rem !important;
    -moz-column-gap: 20rem !important;
    column-gap: 20rem !important;
  }

  .column-gap-sm-21 {
    -webkit-column-gap: 21rem !important;
    -moz-column-gap: 21rem !important;
    column-gap: 21rem !important;
  }

  .text-sm-start {
    text-align: left !important;
  }

  .text-sm-end {
    text-align: right !important;
  }

  .text-sm-center {
    text-align: center !important;
  }
}

@media (min-width: 768px) {
  .container,
  .container-md,
  .container-sm {
    max-width: 720px;
  }

  .col-md {
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 0%;
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
  }

  .row-cols-md-auto > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }

  .row-cols-md-1 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }

  .row-cols-md-2 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }

  .row-cols-md-3 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.33333333%;
  }

  .row-cols-md-4 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }

  .row-cols-md-5 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 20%;
  }

  .row-cols-md-6 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.66666667%;
  }

  .col-md-auto {
    width: auto;
  }

  .col-md-1,
  .col-md-auto {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }

  .col-md-1 {
    width: 8.33333333%;
  }

  .col-md-2 {
    width: 16.66666667%;
  }

  .col-md-2,
  .col-md-3 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }

  .col-md-3 {
    width: 25%;
  }

  .col-md-4 {
    width: 33.33333333%;
  }

  .col-md-4,
  .col-md-5 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }

  .col-md-5 {
    width: 41.66666667%;
  }

  .col-md-6 {
    width: 50%;
  }

  .col-md-6,
  .col-md-7 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }

  .col-md-7 {
    width: 58.33333333%;
  }

  .col-md-8 {
    width: 66.66666667%;
  }

  .col-md-8,
  .col-md-9 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }

  .col-md-9 {
    width: 75%;
  }

  .col-md-10 {
    width: 83.33333333%;
  }

  .col-md-10,
  .col-md-11 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }

  .col-md-11 {
    width: 91.66666667%;
  }

  .col-md-12 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }

  .offset-md-0 {
    margin-left: 0;
  }

  .offset-md-1 {
    margin-left: 8.33333333%;
  }

  .offset-md-2 {
    margin-left: 16.66666667%;
  }

  .offset-md-3 {
    margin-left: 25%;
  }

  .offset-md-4 {
    margin-left: 33.33333333%;
  }

  .offset-md-5 {
    margin-left: 41.66666667%;
  }

  .offset-md-6 {
    margin-left: 50%;
  }

  .offset-md-7 {
    margin-left: 58.33333333%;
  }

  .offset-md-8 {
    margin-left: 66.66666667%;
  }

  .offset-md-9 {
    margin-left: 75%;
  }

  .offset-md-10 {
    margin-left: 83.33333333%;
  }

  .offset-md-11 {
    margin-left: 91.66666667%;
  }

  .g-md-0,
  .gx-md-0 {
    --bs-gutter-x: 0;
  }

  .g-md-0,
  .gy-md-0 {
    --bs-gutter-y: 0;
  }

  .g-md-1,
  .gx-md-1 {
    --bs-gutter-x: 0.25rem;
  }

  .g-md-1,
  .gy-md-1 {
    --bs-gutter-y: 0.25rem;
  }

  .g-md-2,
  .gx-md-2 {
    --bs-gutter-x: 0.5rem;
  }

  .g-md-2,
  .gy-md-2 {
    --bs-gutter-y: 0.5rem;
  }

  .g-md-3,
  .gx-md-3 {
    --bs-gutter-x: 1rem;
  }

  .g-md-3,
  .gy-md-3 {
    --bs-gutter-y: 1rem;
  }

  .g-md-4,
  .gx-md-4 {
    --bs-gutter-x: 1.5rem;
  }

  .g-md-4,
  .gy-md-4 {
    --bs-gutter-y: 1.5rem;
  }

  .g-md-5,
  .gx-md-5 {
    --bs-gutter-x: 3rem;
  }

  .g-md-5,
  .gy-md-5 {
    --bs-gutter-y: 3rem;
  }

  .g-md-6,
  .gx-md-6 {
    --bs-gutter-x: 3.5rem;
  }

  .g-md-6,
  .gy-md-6 {
    --bs-gutter-y: 3.5rem;
  }

  .g-md-7,
  .gx-md-7 {
    --bs-gutter-x: 4rem;
  }

  .g-md-7,
  .gy-md-7 {
    --bs-gutter-y: 4rem;
  }

  .g-md-8,
  .gx-md-8 {
    --bs-gutter-x: 4.5rem;
  }

  .g-md-8,
  .gy-md-8 {
    --bs-gutter-y: 4.5rem;
  }

  .g-md-9,
  .gx-md-9 {
    --bs-gutter-x: 5rem;
  }

  .g-md-9,
  .gy-md-9 {
    --bs-gutter-y: 5rem;
  }

  .g-md-10,
  .gx-md-10 {
    --bs-gutter-x: 5.5rem;
  }

  .g-md-10,
  .gy-md-10 {
    --bs-gutter-y: 5.5rem;
  }

  .sticky-md-top {
    top: 0;
  }

  .sticky-md-bottom,
  .sticky-md-top {
    position: -webkit-sticky;
    position: sticky;
    z-index: 1020;
  }

  .sticky-md-bottom {
    bottom: 0;
  }

  .float-md-start {
    float: left !important;
  }

  .float-md-end {
    float: right !important;
  }

  .float-md-none {
    float: none !important;
  }

  .object-fit-md-contain {
    -o-object-fit: contain !important;
    object-fit: contain !important;
  }

  .object-fit-md-cover {
    -o-object-fit: cover !important;
    object-fit: cover !important;
  }

  .object-fit-md-fill {
    -o-object-fit: fill !important;
    object-fit: fill !important;
  }

  .object-fit-md-scale {
    -o-object-fit: scale-down !important;
    object-fit: scale-down !important;
  }

  .object-fit-md-none {
    -o-object-fit: none !important;
    object-fit: none !important;
  }

  .d-md-inline {
    display: inline !important;
  }

  .d-md-inline-block {
    display: inline-block !important;
  }

  .d-md-block {
    display: block !important;
  }

  .d-md-grid {
    display: grid !important;
  }

  .d-md-inline-grid {
    display: inline-grid !important;
  }

  .d-md-table {
    display: table !important;
  }

  .d-md-table-row {
    display: table-row !important;
  }

  .d-md-table-cell {
    display: table-cell !important;
  }

  .d-md-flex {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .d-md-inline-flex {
    display: -webkit-inline-box !important;
    display: -webkit-inline-flex !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }

  .d-md-none {
    display: none !important;
  }

  .w-md-10 {
    width: 10% !important;
  }

  .w-md-15 {
    width: 15% !important;
  }

  .w-md-20 {
    width: 20% !important;
  }

  .w-md-25 {
    width: 25% !important;
  }

  .w-md-30 {
    width: 30% !important;
  }

  .w-md-35 {
    width: 35% !important;
  }

  .w-md-40 {
    width: 40% !important;
  }

  .w-md-45 {
    width: 45% !important;
  }

  .w-md-50 {
    width: 50% !important;
  }

  .w-md-55 {
    width: 55% !important;
  }

  .w-md-60 {
    width: 60% !important;
  }

  .w-md-65 {
    width: 65% !important;
  }

  .w-md-70 {
    width: 70% !important;
  }

  .w-md-75 {
    width: 75% !important;
  }

  .w-md-80 {
    width: 80% !important;
  }

  .w-md-85 {
    width: 85% !important;
  }

  .w-md-90 {
    width: 90% !important;
  }

  .w-md-95 {
    width: 95% !important;
  }

  .w-md-100 {
    width: 100% !important;
  }

  .w-md-auto {
    width: auto !important;
  }

  .flex-md-fill {
    -webkit-box-flex: 1 !important;
    -webkit-flex: 1 1 auto !important;
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }

  .flex-md-row {
    -webkit-box-orient: horizontal !important;
    -webkit-flex-direction: row !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }

  .flex-md-column,
  .flex-md-row {
    -webkit-box-direction: normal !important;
  }

  .flex-md-column {
    -webkit-box-orient: vertical !important;
    -webkit-flex-direction: column !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }

  .flex-md-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -webkit-flex-direction: row-reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }

  .flex-md-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -webkit-flex-direction: column-reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }

  .flex-md-grow-0 {
    -webkit-box-flex: 0 !important;
    -ms-flex-positive: 0 !important;
    -webkit-flex-grow: 0 !important;
    flex-grow: 0 !important;
  }

  .flex-md-grow-1 {
    -webkit-box-flex: 1 !important;
    -ms-flex-positive: 1 !important;
    -webkit-flex-grow: 1 !important;
    flex-grow: 1 !important;
  }

  .flex-md-shrink-0 {
    -ms-flex-negative: 0 !important;
    -webkit-flex-shrink: 0 !important;
    flex-shrink: 0 !important;
  }

  .flex-md-shrink-1 {
    -ms-flex-negative: 1 !important;
    -webkit-flex-shrink: 1 !important;
    flex-shrink: 1 !important;
  }

  .flex-md-wrap {
    -webkit-flex-wrap: wrap !important;
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }

  .flex-md-nowrap {
    -webkit-flex-wrap: nowrap !important;
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }

  .flex-md-wrap-reverse {
    -webkit-flex-wrap: wrap-reverse !important;
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }

  .justify-content-md-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    -webkit-justify-content: flex-start !important;
    justify-content: flex-start !important;
  }

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

  .justify-content-md-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    -webkit-justify-content: center !important;
    justify-content: center !important;
  }

  .justify-content-md-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    -webkit-justify-content: space-between !important;
    justify-content: space-between !important;
  }

  .justify-content-md-around {
    -ms-flex-pack: distribute !important;
    -webkit-justify-content: space-around !important;
    justify-content: space-around !important;
  }

  .justify-content-md-evenly {
    -webkit-box-pack: space-evenly !important;
    -ms-flex-pack: space-evenly !important;
    -webkit-justify-content: space-evenly !important;
    justify-content: space-evenly !important;
  }

  .align-items-md-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    -webkit-align-items: flex-start !important;
    align-items: flex-start !important;
  }

  .align-items-md-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    -webkit-align-items: flex-end !important;
    align-items: flex-end !important;
  }

  .align-items-md-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    -webkit-align-items: center !important;
    align-items: center !important;
  }

  .align-items-md-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    -webkit-align-items: baseline !important;
    align-items: baseline !important;
  }

  .align-items-md-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    -webkit-align-items: stretch !important;
    align-items: stretch !important;
  }

  .align-content-md-start {
    -ms-flex-line-pack: start !important;
    -webkit-align-content: flex-start !important;
    align-content: flex-start !important;
  }

  .align-content-md-end {
    -ms-flex-line-pack: end !important;
    -webkit-align-content: flex-end !important;
    align-content: flex-end !important;
  }

  .align-content-md-center {
    -ms-flex-line-pack: center !important;
    -webkit-align-content: center !important;
    align-content: center !important;
  }

  .align-content-md-between {
    -ms-flex-line-pack: justify !important;
    -webkit-align-content: space-between !important;
    align-content: space-between !important;
  }

  .align-content-md-around {
    -ms-flex-line-pack: distribute !important;
    -webkit-align-content: space-around !important;
    align-content: space-around !important;
  }

  .align-content-md-stretch {
    -ms-flex-line-pack: stretch !important;
    -webkit-align-content: stretch !important;
    align-content: stretch !important;
  }

  .align-self-md-auto {
    -ms-flex-item-align: auto !important;
    -webkit-align-self: auto !important;
    align-self: auto !important;
  }

  .align-self-md-start {
    -ms-flex-item-align: start !important;
    -webkit-align-self: flex-start !important;
    align-self: flex-start !important;
  }

  .align-self-md-end {
    -ms-flex-item-align: end !important;
    -webkit-align-self: flex-end !important;
    align-self: flex-end !important;
  }

  .align-self-md-center {
    -ms-flex-item-align: center !important;
    -webkit-align-self: center !important;
    align-self: center !important;
  }

  .align-self-md-baseline {
    -ms-flex-item-align: baseline !important;
    -webkit-align-self: baseline !important;
    align-self: baseline !important;
  }

  .align-self-md-stretch {
    -ms-flex-item-align: stretch !important;
    -webkit-align-self: stretch !important;
    align-self: stretch !important;
  }

  .order-md-first {
    -webkit-box-ordinal-group: 0 !important;
    -ms-flex-order: -1 !important;
    -webkit-order: -1 !important;
    order: -1 !important;
  }

  .order-md-0 {
    -webkit-box-ordinal-group: 1 !important;
    -ms-flex-order: 0 !important;
    -webkit-order: 0 !important;
    order: 0 !important;
  }

  .order-md-1 {
    -webkit-box-ordinal-group: 2 !important;
    -ms-flex-order: 1 !important;
    -webkit-order: 1 !important;
    order: 1 !important;
  }

  .order-md-2 {
    -webkit-box-ordinal-group: 3 !important;
    -ms-flex-order: 2 !important;
    -webkit-order: 2 !important;
    order: 2 !important;
  }

  .order-md-3 {
    -webkit-box-ordinal-group: 4 !important;
    -ms-flex-order: 3 !important;
    -webkit-order: 3 !important;
    order: 3 !important;
  }

  .order-md-4 {
    -webkit-box-ordinal-group: 5 !important;
    -ms-flex-order: 4 !important;
    -webkit-order: 4 !important;
    order: 4 !important;
  }

  .order-md-5 {
    -webkit-box-ordinal-group: 6 !important;
    -ms-flex-order: 5 !important;
    -webkit-order: 5 !important;
    order: 5 !important;
  }

  .order-md-6 {
    -webkit-box-ordinal-group: 7 !important;
    -ms-flex-order: 6 !important;
    -webkit-order: 6 !important;
    order: 6 !important;
  }

  .order-md-7 {
    -webkit-box-ordinal-group: 8 !important;
    -ms-flex-order: 7 !important;
    -webkit-order: 7 !important;
    order: 7 !important;
  }

  .order-md-8 {
    -webkit-box-ordinal-group: 9 !important;
    -ms-flex-order: 8 !important;
    -webkit-order: 8 !important;
    order: 8 !important;
  }

  .order-md-9 {
    -webkit-box-ordinal-group: 10 !important;
    -ms-flex-order: 9 !important;
    -webkit-order: 9 !important;
    order: 9 !important;
  }

  .order-md-10 {
    -webkit-box-ordinal-group: 11 !important;
    -ms-flex-order: 10 !important;
    -webkit-order: 10 !important;
    order: 10 !important;
  }

  .order-md-11 {
    -webkit-box-ordinal-group: 12 !important;
    -ms-flex-order: 11 !important;
    -webkit-order: 11 !important;
    order: 11 !important;
  }

  .order-md-last {
    -webkit-box-ordinal-group: 13 !important;
    -ms-flex-order: 12 !important;
    -webkit-order: 12 !important;
    order: 12 !important;
  }

  .m-md-0 {
    margin: 0 !important;
  }

  .m-md-1 {
    margin: 0.25rem !important;
  }

  .m-md-2 {
    margin: 0.5rem !important;
  }

  .m-md-3 {
    margin: 1rem !important;
  }

  .m-md-4 {
    margin: 1.5rem !important;
  }

  .m-md-5 {
    margin: 3rem !important;
  }

  .m-md-6 {
    margin: 5rem !important;
  }

  .m-md-7 {
    margin: 7rem !important;
  }

  .m-md-8 {
    margin: 8rem !important;
  }

  .m-md-9 {
    margin: 9rem !important;
  }

  .m-md-10 {
    margin: 10rem !important;
  }

  .m-md-11 {
    margin: 11rem !important;
  }

  .m-md-12 {
    margin: 12rem !important;
  }

  .m-md-13 {
    margin: 13rem !important;
  }

  .m-md-14 {
    margin: 14rem !important;
  }

  .m-md-15 {
    margin: 15rem !important;
  }

  .m-md-16 {
    margin: 16rem !important;
  }

  .m-md-17 {
    margin: 17rem !important;
  }

  .m-md-18 {
    margin: 18rem !important;
  }

  .m-md-19 {
    margin: 19rem !important;
  }

  .m-md-20 {
    margin: 20rem !important;
  }

  .m-md-21 {
    margin: 21rem !important;
  }

  .m-md-auto {
    margin: auto !important;
  }

  .mx-md-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .mx-md-1 {
    margin-left: 0.25rem !important;
    margin-right: 0.25rem !important;
  }

  .mx-md-2 {
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
  }

  .mx-md-3 {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }

  .mx-md-4 {
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
  }

  .mx-md-5 {
    margin-left: 3rem !important;
    margin-right: 3rem !important;
  }

  .mx-md-6 {
    margin-left: 5rem !important;
    margin-right: 5rem !important;
  }

  .mx-md-7 {
    margin-left: 7rem !important;
    margin-right: 7rem !important;
  }

  .mx-md-8 {
    margin-left: 8rem !important;
    margin-right: 8rem !important;
  }

  .mx-md-9 {
    margin-left: 9rem !important;
    margin-right: 9rem !important;
  }

  .mx-md-10 {
    margin-left: 10rem !important;
    margin-right: 10rem !important;
  }

  .mx-md-11 {
    margin-left: 11rem !important;
    margin-right: 11rem !important;
  }

  .mx-md-12 {
    margin-left: 12rem !important;
    margin-right: 12rem !important;
  }

  .mx-md-13 {
    margin-left: 13rem !important;
    margin-right: 13rem !important;
  }

  .mx-md-14 {
    margin-left: 14rem !important;
    margin-right: 14rem !important;
  }

  .mx-md-15 {
    margin-left: 15rem !important;
    margin-right: 15rem !important;
  }

  .mx-md-16 {
    margin-left: 16rem !important;
    margin-right: 16rem !important;
  }

  .mx-md-17 {
    margin-left: 17rem !important;
    margin-right: 17rem !important;
  }

  .mx-md-18 {
    margin-left: 18rem !important;
    margin-right: 18rem !important;
  }

  .mx-md-19 {
    margin-left: 19rem !important;
    margin-right: 19rem !important;
  }

  .mx-md-20 {
    margin-left: 20rem !important;
    margin-right: 20rem !important;
  }

  .mx-md-21 {
    margin-left: 21rem !important;
    margin-right: 21rem !important;
  }

  .mx-md-auto {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .my-md-0 {
    margin-bottom: 0 !important;
    margin-top: 0 !important;
  }

  .my-md-1 {
    margin-bottom: 0.25rem !important;
    margin-top: 0.25rem !important;
  }

  .my-md-2 {
    margin-bottom: 0.5rem !important;
    margin-top: 0.5rem !important;
  }

  .my-md-3 {
    margin-bottom: 1rem !important;
    margin-top: 1rem !important;
  }

  .my-md-4 {
    margin-bottom: 1.5rem !important;
    margin-top: 1.5rem !important;
  }

  .my-md-5 {
    margin-bottom: 3rem !important;
    margin-top: 3rem !important;
  }

  .my-md-6 {
    margin-bottom: 5rem !important;
    margin-top: 5rem !important;
  }

  .my-md-7 {
    margin-bottom: 7rem !important;
    margin-top: 7rem !important;
  }

  .my-md-8 {
    margin-bottom: 8rem !important;
    margin-top: 8rem !important;
  }

  .my-md-9 {
    margin-bottom: 9rem !important;
    margin-top: 9rem !important;
  }

  .my-md-10 {
    margin-bottom: 10rem !important;
    margin-top: 10rem !important;
  }

  .my-md-11 {
    margin-bottom: 11rem !important;
    margin-top: 11rem !important;
  }

  .my-md-12 {
    margin-bottom: 12rem !important;
    margin-top: 12rem !important;
  }

  .my-md-13 {
    margin-bottom: 13rem !important;
    margin-top: 13rem !important;
  }

  .my-md-14 {
    margin-bottom: 14rem !important;
    margin-top: 14rem !important;
  }

  .my-md-15 {
    margin-bottom: 15rem !important;
    margin-top: 15rem !important;
  }

  .my-md-16 {
    margin-bottom: 16rem !important;
    margin-top: 16rem !important;
  }

  .my-md-17 {
    margin-bottom: 17rem !important;
    margin-top: 17rem !important;
  }

  .my-md-18 {
    margin-bottom: 18rem !important;
    margin-top: 18rem !important;
  }

  .my-md-19 {
    margin-bottom: 19rem !important;
    margin-top: 19rem !important;
  }

  .my-md-20 {
    margin-bottom: 20rem !important;
    margin-top: 20rem !important;
  }

  .my-md-21 {
    margin-bottom: 21rem !important;
    margin-top: 21rem !important;
  }

  .my-md-auto {
    margin-bottom: auto !important;
    margin-top: auto !important;
  }

  .mt-md-0 {
    margin-top: 0 !important;
  }

  .mt-md-1 {
    margin-top: 0.25rem !important;
  }

  .mt-md-2 {
    margin-top: 0.5rem !important;
  }

  .mt-md-3 {
    margin-top: 1rem !important;
  }

  .mt-md-4 {
    margin-top: 1.5rem !important;
  }

  .mt-md-5 {
    margin-top: 3rem !important;
  }

  .mt-md-6 {
    margin-top: 5rem !important;
  }

  .mt-md-7 {
    margin-top: 7rem !important;
  }

  .mt-md-8 {
    margin-top: 8rem !important;
  }

  .mt-md-9 {
    margin-top: 9rem !important;
  }

  .mt-md-10 {
    margin-top: 10rem !important;
  }

  .mt-md-11 {
    margin-top: 11rem !important;
  }

  .mt-md-12 {
    margin-top: 12rem !important;
  }

  .mt-md-13 {
    margin-top: 13rem !important;
  }

  .mt-md-14 {
    margin-top: 14rem !important;
  }

  .mt-md-15 {
    margin-top: 15rem !important;
  }

  .mt-md-16 {
    margin-top: 16rem !important;
  }

  .mt-md-17 {
    margin-top: 17rem !important;
  }

  .mt-md-18 {
    margin-top: 18rem !important;
  }

  .mt-md-19 {
    margin-top: 19rem !important;
  }

  .mt-md-20 {
    margin-top: 20rem !important;
  }

  .mt-md-21 {
    margin-top: 21rem !important;
  }

  .mt-md-auto {
    margin-top: auto !important;
  }

  .me-md-0 {
    margin-right: 0 !important;
  }

  .me-md-1 {
    margin-right: 0.25rem !important;
  }

  .me-md-2 {
    margin-right: 0.5rem !important;
  }

  .me-md-3 {
    margin-right: 1rem !important;
  }

  .me-md-4 {
    margin-right: 1.5rem !important;
  }

  .me-md-5 {
    margin-right: 3rem !important;
  }

  .me-md-6 {
    margin-right: 5rem !important;
  }

  .me-md-7 {
    margin-right: 7rem !important;
  }

  .me-md-8 {
    margin-right: 8rem !important;
  }

  .me-md-9 {
    margin-right: 9rem !important;
  }

  .me-md-10 {
    margin-right: 10rem !important;
  }

  .me-md-11 {
    margin-right: 11rem !important;
  }

  .me-md-12 {
    margin-right: 12rem !important;
  }

  .me-md-13 {
    margin-right: 13rem !important;
  }

  .me-md-14 {
    margin-right: 14rem !important;
  }

  .me-md-15 {
    margin-right: 15rem !important;
  }

  .me-md-16 {
    margin-right: 16rem !important;
  }

  .me-md-17 {
    margin-right: 17rem !important;
  }

  .me-md-18 {
    margin-right: 18rem !important;
  }

  .me-md-19 {
    margin-right: 19rem !important;
  }

  .me-md-20 {
    margin-right: 20rem !important;
  }

  .me-md-21 {
    margin-right: 21rem !important;
  }

  .me-md-auto {
    margin-right: auto !important;
  }

  .mb-md-0 {
    margin-bottom: 0 !important;
  }

  .mb-md-1 {
    margin-bottom: 0.25rem !important;
  }

  .mb-md-2 {
    margin-bottom: 0.5rem !important;
  }

  .mb-md-3 {
    margin-bottom: 1rem !important;
  }

  .mb-md-4 {
    margin-bottom: 1.5rem !important;
  }

  .mb-md-5 {
    margin-bottom: 3rem !important;
  }

  .mb-md-6 {
    margin-bottom: 5rem !important;
  }

  .mb-md-7 {
    margin-bottom: 7rem !important;
  }

  .mb-md-8 {
    margin-bottom: 8rem !important;
  }

  .mb-md-9 {
    margin-bottom: 9rem !important;
  }

  .mb-md-10 {
    margin-bottom: 10rem !important;
  }

  .mb-md-11 {
    margin-bottom: 11rem !important;
  }

  .mb-md-12 {
    margin-bottom: 12rem !important;
  }

  .mb-md-13 {
    margin-bottom: 13rem !important;
  }

  .mb-md-14 {
    margin-bottom: 14rem !important;
  }

  .mb-md-15 {
    margin-bottom: 15rem !important;
  }

  .mb-md-16 {
    margin-bottom: 16rem !important;
  }

  .mb-md-17 {
    margin-bottom: 17rem !important;
  }

  .mb-md-18 {
    margin-bottom: 18rem !important;
  }

  .mb-md-19 {
    margin-bottom: 19rem !important;
  }

  .mb-md-20 {
    margin-bottom: 20rem !important;
  }

  .mb-md-21 {
    margin-bottom: 21rem !important;
  }

  .mb-md-auto {
    margin-bottom: auto !important;
  }

  .ms-md-0 {
    margin-left: 0 !important;
  }

  .ms-md-1 {
    margin-left: 0.25rem !important;
  }

  .ms-md-2 {
    margin-left: 0.5rem !important;
  }

  .ms-md-3 {
    margin-left: 1rem !important;
  }

  .ms-md-4 {
    margin-left: 1.5rem !important;
  }

  .ms-md-5 {
    margin-left: 3rem !important;
  }

  .ms-md-6 {
    margin-left: 5rem !important;
  }

  .ms-md-7 {
    margin-left: 7rem !important;
  }

  .ms-md-8 {
    margin-left: 8rem !important;
  }

  .ms-md-9 {
    margin-left: 9rem !important;
  }

  .ms-md-10 {
    margin-left: 10rem !important;
  }

  .ms-md-11 {
    margin-left: 11rem !important;
  }

  .ms-md-12 {
    margin-left: 12rem !important;
  }

  .ms-md-13 {
    margin-left: 13rem !important;
  }

  .ms-md-14 {
    margin-left: 14rem !important;
  }

  .ms-md-15 {
    margin-left: 15rem !important;
  }

  .ms-md-16 {
    margin-left: 16rem !important;
  }

  .ms-md-17 {
    margin-left: 17rem !important;
  }

  .ms-md-18 {
    margin-left: 18rem !important;
  }

  .ms-md-19 {
    margin-left: 19rem !important;
  }

  .ms-md-20 {
    margin-left: 20rem !important;
  }

  .ms-md-21 {
    margin-left: 21rem !important;
  }

  .ms-md-auto {
    margin-left: auto !important;
  }

  .m-md-n1 {
    margin: -0.25rem !important;
  }

  .m-md-n2 {
    margin: -0.5rem !important;
  }

  .m-md-n3 {
    margin: -1rem !important;
  }

  .m-md-n4 {
    margin: -1.5rem !important;
  }

  .m-md-n5 {
    margin: -3rem !important;
  }

  .m-md-n6 {
    margin: -5rem !important;
  }

  .m-md-n7 {
    margin: -7rem !important;
  }

  .m-md-n8 {
    margin: -8rem !important;
  }

  .m-md-n9 {
    margin: -9rem !important;
  }

  .m-md-n10 {
    margin: -10rem !important;
  }

  .m-md-n11 {
    margin: -11rem !important;
  }

  .m-md-n12 {
    margin: -12rem !important;
  }

  .m-md-n13 {
    margin: -13rem !important;
  }

  .m-md-n14 {
    margin: -14rem !important;
  }

  .m-md-n15 {
    margin: -15rem !important;
  }

  .m-md-n16 {
    margin: -16rem !important;
  }

  .m-md-n17 {
    margin: -17rem !important;
  }

  .m-md-n18 {
    margin: -18rem !important;
  }

  .m-md-n19 {
    margin: -19rem !important;
  }

  .m-md-n20 {
    margin: -20rem !important;
  }

  .m-md-n21 {
    margin: -21rem !important;
  }

  .mx-md-n1 {
    margin-left: -0.25rem !important;
    margin-right: -0.25rem !important;
  }

  .mx-md-n2 {
    margin-left: -0.5rem !important;
    margin-right: -0.5rem !important;
  }

  .mx-md-n3 {
    margin-left: -1rem !important;
    margin-right: -1rem !important;
  }

  .mx-md-n4 {
    margin-left: -1.5rem !important;
    margin-right: -1.5rem !important;
  }

  .mx-md-n5 {
    margin-left: -3rem !important;
    margin-right: -3rem !important;
  }

  .mx-md-n6 {
    margin-left: -5rem !important;
    margin-right: -5rem !important;
  }

  .mx-md-n7 {
    margin-left: -7rem !important;
    margin-right: -7rem !important;
  }

  .mx-md-n8 {
    margin-left: -8rem !important;
    margin-right: -8rem !important;
  }

  .mx-md-n9 {
    margin-left: -9rem !important;
    margin-right: -9rem !important;
  }

  .mx-md-n10 {
    margin-left: -10rem !important;
    margin-right: -10rem !important;
  }

  .mx-md-n11 {
    margin-left: -11rem !important;
    margin-right: -11rem !important;
  }

  .mx-md-n12 {
    margin-left: -12rem !important;
    margin-right: -12rem !important;
  }

  .mx-md-n13 {
    margin-left: -13rem !important;
    margin-right: -13rem !important;
  }

  .mx-md-n14 {
    margin-left: -14rem !important;
    margin-right: -14rem !important;
  }

  .mx-md-n15 {
    margin-left: -15rem !important;
    margin-right: -15rem !important;
  }

  .mx-md-n16 {
    margin-left: -16rem !important;
    margin-right: -16rem !important;
  }

  .mx-md-n17 {
    margin-left: -17rem !important;
    margin-right: -17rem !important;
  }

  .mx-md-n18 {
    margin-left: -18rem !important;
    margin-right: -18rem !important;
  }

  .mx-md-n19 {
    margin-left: -19rem !important;
    margin-right: -19rem !important;
  }

  .mx-md-n20 {
    margin-left: -20rem !important;
    margin-right: -20rem !important;
  }

  .mx-md-n21 {
    margin-left: -21rem !important;
    margin-right: -21rem !important;
  }

  .my-md-n1 {
    margin-bottom: -0.25rem !important;
    margin-top: -0.25rem !important;
  }

  .my-md-n2 {
    margin-bottom: -0.5rem !important;
    margin-top: -0.5rem !important;
  }

  .my-md-n3 {
    margin-bottom: -1rem !important;
    margin-top: -1rem !important;
  }

  .my-md-n4 {
    margin-bottom: -1.5rem !important;
    margin-top: -1.5rem !important;
  }

  .my-md-n5 {
    margin-bottom: -3rem !important;
    margin-top: -3rem !important;
  }

  .my-md-n6 {
    margin-bottom: -5rem !important;
    margin-top: -5rem !important;
  }

  .my-md-n7 {
    margin-bottom: -7rem !important;
    margin-top: -7rem !important;
  }

  .my-md-n8 {
    margin-bottom: -8rem !important;
    margin-top: -8rem !important;
  }

  .my-md-n9 {
    margin-bottom: -9rem !important;
    margin-top: -9rem !important;
  }

  .my-md-n10 {
    margin-bottom: -10rem !important;
    margin-top: -10rem !important;
  }

  .my-md-n11 {
    margin-bottom: -11rem !important;
    margin-top: -11rem !important;
  }

  .my-md-n12 {
    margin-bottom: -12rem !important;
    margin-top: -12rem !important;
  }

  .my-md-n13 {
    margin-bottom: -13rem !important;
    margin-top: -13rem !important;
  }

  .my-md-n14 {
    margin-bottom: -14rem !important;
    margin-top: -14rem !important;
  }

  .my-md-n15 {
    margin-bottom: -15rem !important;
    margin-top: -15rem !important;
  }

  .my-md-n16 {
    margin-bottom: -16rem !important;
    margin-top: -16rem !important;
  }

  .my-md-n17 {
    margin-bottom: -17rem !important;
    margin-top: -17rem !important;
  }

  .my-md-n18 {
    margin-bottom: -18rem !important;
    margin-top: -18rem !important;
  }

  .my-md-n19 {
    margin-bottom: -19rem !important;
    margin-top: -19rem !important;
  }

  .my-md-n20 {
    margin-bottom: -20rem !important;
    margin-top: -20rem !important;
  }

  .my-md-n21 {
    margin-bottom: -21rem !important;
    margin-top: -21rem !important;
  }

  .mt-md-n1 {
    margin-top: -0.25rem !important;
  }

  .mt-md-n2 {
    margin-top: -0.5rem !important;
  }

  .mt-md-n3 {
    margin-top: -1rem !important;
  }

  .mt-md-n4 {
    margin-top: -1.5rem !important;
  }

  .mt-md-n5 {
    margin-top: -3rem !important;
  }

  .mt-md-n6 {
    margin-top: -5rem !important;
  }

  .mt-md-n7 {
    margin-top: -7rem !important;
  }

  .mt-md-n8 {
    margin-top: -8rem !important;
  }

  .mt-md-n9 {
    margin-top: -9rem !important;
  }

  .mt-md-n10 {
    margin-top: -10rem !important;
  }

  .mt-md-n11 {
    margin-top: -11rem !important;
  }

  .mt-md-n12 {
    margin-top: -12rem !important;
  }

  .mt-md-n13 {
    margin-top: -13rem !important;
  }

  .mt-md-n14 {
    margin-top: -14rem !important;
  }

  .mt-md-n15 {
    margin-top: -15rem !important;
  }

  .mt-md-n16 {
    margin-top: -16rem !important;
  }

  .mt-md-n17 {
    margin-top: -17rem !important;
  }

  .mt-md-n18 {
    margin-top: -18rem !important;
  }

  .mt-md-n19 {
    margin-top: -19rem !important;
  }

  .mt-md-n20 {
    margin-top: -20rem !important;
  }

  .mt-md-n21 {
    margin-top: -21rem !important;
  }

  .me-md-n1 {
    margin-right: -0.25rem !important;
  }

  .me-md-n2 {
    margin-right: -0.5rem !important;
  }

  .me-md-n3 {
    margin-right: -1rem !important;
  }

  .me-md-n4 {
    margin-right: -1.5rem !important;
  }

  .me-md-n5 {
    margin-right: -3rem !important;
  }

  .me-md-n6 {
    margin-right: -5rem !important;
  }

  .me-md-n7 {
    margin-right: -7rem !important;
  }

  .me-md-n8 {
    margin-right: -8rem !important;
  }

  .me-md-n9 {
    margin-right: -9rem !important;
  }

  .me-md-n10 {
    margin-right: -10rem !important;
  }

  .me-md-n11 {
    margin-right: -11rem !important;
  }

  .me-md-n12 {
    margin-right: -12rem !important;
  }

  .me-md-n13 {
    margin-right: -13rem !important;
  }

  .me-md-n14 {
    margin-right: -14rem !important;
  }

  .me-md-n15 {
    margin-right: -15rem !important;
  }

  .me-md-n16 {
    margin-right: -16rem !important;
  }

  .me-md-n17 {
    margin-right: -17rem !important;
  }

  .me-md-n18 {
    margin-right: -18rem !important;
  }

  .me-md-n19 {
    margin-right: -19rem !important;
  }

  .me-md-n20 {
    margin-right: -20rem !important;
  }

  .me-md-n21 {
    margin-right: -21rem !important;
  }

  .mb-md-n1 {
    margin-bottom: -0.25rem !important;
  }

  .mb-md-n2 {
    margin-bottom: -0.5rem !important;
  }

  .mb-md-n3 {
    margin-bottom: -1rem !important;
  }

  .mb-md-n4 {
    margin-bottom: -1.5rem !important;
  }

  .mb-md-n5 {
    margin-bottom: -3rem !important;
  }

  .mb-md-n6 {
    margin-bottom: -5rem !important;
  }

  .mb-md-n7 {
    margin-bottom: -7rem !important;
  }

  .mb-md-n8 {
    margin-bottom: -8rem !important;
  }

  .mb-md-n9 {
    margin-bottom: -9rem !important;
  }

  .mb-md-n10 {
    margin-bottom: -10rem !important;
  }

  .mb-md-n11 {
    margin-bottom: -11rem !important;
  }

  .mb-md-n12 {
    margin-bottom: -12rem !important;
  }

  .mb-md-n13 {
    margin-bottom: -13rem !important;
  }

  .mb-md-n14 {
    margin-bottom: -14rem !important;
  }

  .mb-md-n15 {
    margin-bottom: -15rem !important;
  }

  .mb-md-n16 {
    margin-bottom: -16rem !important;
  }

  .mb-md-n17 {
    margin-bottom: -17rem !important;
  }

  .mb-md-n18 {
    margin-bottom: -18rem !important;
  }

  .mb-md-n19 {
    margin-bottom: -19rem !important;
  }

  .mb-md-n20 {
    margin-bottom: -20rem !important;
  }

  .mb-md-n21 {
    margin-bottom: -21rem !important;
  }

  .ms-md-n1 {
    margin-left: -0.25rem !important;
  }

  .ms-md-n2 {
    margin-left: -0.5rem !important;
  }

  .ms-md-n3 {
    margin-left: -1rem !important;
  }

  .ms-md-n4 {
    margin-left: -1.5rem !important;
  }

  .ms-md-n5 {
    margin-left: -3rem !important;
  }

  .ms-md-n6 {
    margin-left: -5rem !important;
  }

  .ms-md-n7 {
    margin-left: -7rem !important;
  }

  .ms-md-n8 {
    margin-left: -8rem !important;
  }

  .ms-md-n9 {
    margin-left: -9rem !important;
  }

  .ms-md-n10 {
    margin-left: -10rem !important;
  }

  .ms-md-n11 {
    margin-left: -11rem !important;
  }

  .ms-md-n12 {
    margin-left: -12rem !important;
  }

  .ms-md-n13 {
    margin-left: -13rem !important;
  }

  .ms-md-n14 {
    margin-left: -14rem !important;
  }

  .ms-md-n15 {
    margin-left: -15rem !important;
  }

  .ms-md-n16 {
    margin-left: -16rem !important;
  }

  .ms-md-n17 {
    margin-left: -17rem !important;
  }

  .ms-md-n18 {
    margin-left: -18rem !important;
  }

  .ms-md-n19 {
    margin-left: -19rem !important;
  }

  .ms-md-n20 {
    margin-left: -20rem !important;
  }

  .ms-md-n21 {
    margin-left: -21rem !important;
  }

  .p-md-0 {
    padding: 0 !important;
  }

  .p-md-1 {
    padding: 0.25rem !important;
  }

  .p-md-2 {
    padding: 0.5rem !important;
  }

  .p-md-3 {
    padding: 1rem !important;
  }

  .p-md-4 {
    padding: 1.5rem !important;
  }

  .p-md-5 {
    padding: 3rem !important;
  }

  .p-md-6 {
    padding: 5rem !important;
  }

  .p-md-7 {
    padding: 7rem !important;
  }

  .p-md-8 {
    padding: 8rem !important;
  }

  .p-md-9 {
    padding: 9rem !important;
  }

  .p-md-10 {
    padding: 10rem !important;
  }

  .p-md-11 {
    padding: 11rem !important;
  }

  .p-md-12 {
    padding: 12rem !important;
  }

  .p-md-13 {
    padding: 13rem !important;
  }

  .p-md-14 {
    padding: 14rem !important;
  }

  .p-md-15 {
    padding: 15rem !important;
  }

  .p-md-16 {
    padding: 16rem !important;
  }

  .p-md-17 {
    padding: 17rem !important;
  }

  .p-md-18 {
    padding: 18rem !important;
  }

  .p-md-19 {
    padding: 19rem !important;
  }

  .p-md-20 {
    padding: 20rem !important;
  }

  .p-md-21 {
    padding: 21rem !important;
  }

  .px-md-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .px-md-1 {
    padding-left: 0.25rem !important;
    padding-right: 0.25rem !important;
  }

  .px-md-2 {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }

  .px-md-3 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .px-md-4 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }

  .px-md-5 {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
  }

  .px-md-6 {
    padding-left: 5rem !important;
    padding-right: 5rem !important;
  }

  .px-md-7 {
    padding-left: 7rem !important;
    padding-right: 7rem !important;
  }

  .px-md-8 {
    padding-left: 8rem !important;
    padding-right: 8rem !important;
  }

  .px-md-9 {
    padding-left: 9rem !important;
    padding-right: 9rem !important;
  }

  .px-md-10 {
    padding-left: 10rem !important;
    padding-right: 10rem !important;
  }

  .px-md-11 {
    padding-left: 11rem !important;
    padding-right: 11rem !important;
  }

  .px-md-12 {
    padding-left: 12rem !important;
    padding-right: 12rem !important;
  }

  .px-md-13 {
    padding-left: 13rem !important;
    padding-right: 13rem !important;
  }

  .px-md-14 {
    padding-left: 14rem !important;
    padding-right: 14rem !important;
  }

  .px-md-15 {
    padding-left: 15rem !important;
    padding-right: 15rem !important;
  }

  .px-md-16 {
    padding-left: 16rem !important;
    padding-right: 16rem !important;
  }

  .px-md-17 {
    padding-left: 17rem !important;
    padding-right: 17rem !important;
  }

  .px-md-18 {
    padding-left: 18rem !important;
    padding-right: 18rem !important;
  }

  .px-md-19 {
    padding-left: 19rem !important;
    padding-right: 19rem !important;
  }

  .px-md-20 {
    padding-left: 20rem !important;
    padding-right: 20rem !important;
  }

  .px-md-21 {
    padding-left: 21rem !important;
    padding-right: 21rem !important;
  }

  .py-md-0 {
    padding-bottom: 0 !important;
    padding-top: 0 !important;
  }

  .py-md-1 {
    padding-bottom: 0.25rem !important;
    padding-top: 0.25rem !important;
  }

  .py-md-2 {
    padding-bottom: 0.5rem !important;
    padding-top: 0.5rem !important;
  }

  .py-md-3 {
    padding-bottom: 1rem !important;
    padding-top: 1rem !important;
  }

  .py-md-4 {
    padding-bottom: 1.5rem !important;
    padding-top: 1.5rem !important;
  }

  .py-md-5 {
    padding-bottom: 3rem !important;
    padding-top: 3rem !important;
  }

  .py-md-6 {
    padding-bottom: 5rem !important;
    padding-top: 5rem !important;
  }

  .py-md-7 {
    padding-bottom: 7rem !important;
    padding-top: 7rem !important;
  }

  .py-md-8 {
    padding-bottom: 8rem !important;
    padding-top: 8rem !important;
  }

  .py-md-9 {
    padding-bottom: 9rem !important;
    padding-top: 9rem !important;
  }

  .py-md-10 {
    padding-bottom: 10rem !important;
    padding-top: 10rem !important;
  }

  .py-md-11 {
    padding-bottom: 11rem !important;
    padding-top: 11rem !important;
  }

  .py-md-12 {
    padding-bottom: 12rem !important;
    padding-top: 12rem !important;
  }

  .py-md-13 {
    padding-bottom: 13rem !important;
    padding-top: 13rem !important;
  }

  .py-md-14 {
    padding-bottom: 14rem !important;
    padding-top: 14rem !important;
  }

  .py-md-15 {
    padding-bottom: 15rem !important;
    padding-top: 15rem !important;
  }

  .py-md-16 {
    padding-bottom: 16rem !important;
    padding-top: 16rem !important;
  }

  .py-md-17 {
    padding-bottom: 17rem !important;
    padding-top: 17rem !important;
  }

  .py-md-18 {
    padding-bottom: 18rem !important;
    padding-top: 18rem !important;
  }

  .py-md-19 {
    padding-bottom: 19rem !important;
    padding-top: 19rem !important;
  }

  .py-md-20 {
    padding-bottom: 20rem !important;
    padding-top: 20rem !important;
  }

  .py-md-21 {
    padding-bottom: 21rem !important;
    padding-top: 21rem !important;
  }

  .pt-md-0 {
    padding-top: 0 !important;
  }

  .pt-md-1 {
    padding-top: 0.25rem !important;
  }

  .pt-md-2 {
    padding-top: 0.5rem !important;
  }

  .pt-md-3 {
    padding-top: 1rem !important;
  }

  .pt-md-4 {
    padding-top: 1.5rem !important;
  }

  .pt-md-5 {
    padding-top: 3rem !important;
  }

  .pt-md-6 {
    padding-top: 5rem !important;
  }

  .pt-md-7 {
    padding-top: 7rem !important;
  }

  .pt-md-8 {
    padding-top: 8rem !important;
  }

  .pt-md-9 {
    padding-top: 9rem !important;
  }

  .pt-md-10 {
    padding-top: 10rem !important;
  }

  .pt-md-11 {
    padding-top: 11rem !important;
  }

  .pt-md-12 {
    padding-top: 12rem !important;
  }

  .pt-md-13 {
    padding-top: 13rem !important;
  }

  .pt-md-14 {
    padding-top: 14rem !important;
  }

  .pt-md-15 {
    padding-top: 15rem !important;
  }

  .pt-md-16 {
    padding-top: 16rem !important;
  }

  .pt-md-17 {
    padding-top: 17rem !important;
  }

  .pt-md-18 {
    padding-top: 18rem !important;
  }

  .pt-md-19 {
    padding-top: 19rem !important;
  }

  .pt-md-20 {
    padding-top: 20rem !important;
  }

  .pt-md-21 {
    padding-top: 21rem !important;
  }

  .pe-md-0 {
    padding-right: 0 !important;
  }

  .pe-md-1 {
    padding-right: 0.25rem !important;
  }

  .pe-md-2 {
    padding-right: 0.5rem !important;
  }

  .pe-md-3 {
    padding-right: 1rem !important;
  }

  .pe-md-4 {
    padding-right: 1.5rem !important;
  }

  .pe-md-5 {
    padding-right: 3rem !important;
  }

  .pe-md-6 {
    padding-right: 5rem !important;
  }

  .pe-md-7 {
    padding-right: 7rem !important;
  }

  .pe-md-8 {
    padding-right: 8rem !important;
  }

  .pe-md-9 {
    padding-right: 9rem !important;
  }

  .pe-md-10 {
    padding-right: 10rem !important;
  }

  .pe-md-11 {
    padding-right: 11rem !important;
  }

  .pe-md-12 {
    padding-right: 12rem !important;
  }

  .pe-md-13 {
    padding-right: 13rem !important;
  }

  .pe-md-14 {
    padding-right: 14rem !important;
  }

  .pe-md-15 {
    padding-right: 15rem !important;
  }

  .pe-md-16 {
    padding-right: 16rem !important;
  }

  .pe-md-17 {
    padding-right: 17rem !important;
  }

  .pe-md-18 {
    padding-right: 18rem !important;
  }

  .pe-md-19 {
    padding-right: 19rem !important;
  }

  .pe-md-20 {
    padding-right: 20rem !important;
  }

  .pe-md-21 {
    padding-right: 21rem !important;
  }

  .pb-md-0 {
    padding-bottom: 0 !important;
  }

  .pb-md-1 {
    padding-bottom: 0.25rem !important;
  }

  .pb-md-2 {
    padding-bottom: 0.5rem !important;
  }

  .pb-md-3 {
    padding-bottom: 1rem !important;
  }

  .pb-md-4 {
    padding-bottom: 1.5rem !important;
  }

  .pb-md-5 {
    padding-bottom: 3rem !important;
  }

  .pb-md-6 {
    padding-bottom: 5rem !important;
  }

  .pb-md-7 {
    padding-bottom: 7rem !important;
  }

  .pb-md-8 {
    padding-bottom: 8rem !important;
  }

  .pb-md-9 {
    padding-bottom: 9rem !important;
  }

  .pb-md-10 {
    padding-bottom: 10rem !important;
  }

  .pb-md-11 {
    padding-bottom: 11rem !important;
  }

  .pb-md-12 {
    padding-bottom: 12rem !important;
  }

  .pb-md-13 {
    padding-bottom: 13rem !important;
  }

  .pb-md-14 {
    padding-bottom: 14rem !important;
  }

  .pb-md-15 {
    padding-bottom: 15rem !important;
  }

  .pb-md-16 {
    padding-bottom: 16rem !important;
  }

  .pb-md-17 {
    padding-bottom: 17rem !important;
  }

  .pb-md-18 {
    padding-bottom: 18rem !important;
  }

  .pb-md-19 {
    padding-bottom: 19rem !important;
  }

  .pb-md-20 {
    padding-bottom: 20rem !important;
  }

  .pb-md-21 {
    padding-bottom: 21rem !important;
  }

  .ps-md-0 {
    padding-left: 0 !important;
  }

  .ps-md-1 {
    padding-left: 0.25rem !important;
  }

  .ps-md-2 {
    padding-left: 0.5rem !important;
  }

  .ps-md-3 {
    padding-left: 1rem !important;
  }

  .ps-md-4 {
    padding-left: 1.5rem !important;
  }

  .ps-md-5 {
    padding-left: 3rem !important;
  }

  .ps-md-6 {
    padding-left: 5rem !important;
  }

  .ps-md-7 {
    padding-left: 7rem !important;
  }

  .ps-md-8 {
    padding-left: 8rem !important;
  }

  .ps-md-9 {
    padding-left: 9rem !important;
  }

  .ps-md-10 {
    padding-left: 10rem !important;
  }

  .ps-md-11 {
    padding-left: 11rem !important;
  }

  .ps-md-12 {
    padding-left: 12rem !important;
  }

  .ps-md-13 {
    padding-left: 13rem !important;
  }

  .ps-md-14 {
    padding-left: 14rem !important;
  }

  .ps-md-15 {
    padding-left: 15rem !important;
  }

  .ps-md-16 {
    padding-left: 16rem !important;
  }

  .ps-md-17 {
    padding-left: 17rem !important;
  }

  .ps-md-18 {
    padding-left: 18rem !important;
  }

  .ps-md-19 {
    padding-left: 19rem !important;
  }

  .ps-md-20 {
    padding-left: 20rem !important;
  }

  .ps-md-21 {
    padding-left: 21rem !important;
  }

  .gap-md-0 {
    gap: 0 !important;
  }

  .gap-md-1 {
    gap: 0.25rem !important;
  }

  .gap-md-2 {
    gap: 0.5rem !important;
  }

  .gap-md-3 {
    gap: 1rem !important;
  }

  .gap-md-4 {
    gap: 1.5rem !important;
  }

  .gap-md-5 {
    gap: 3rem !important;
  }

  .gap-md-6 {
    gap: 5rem !important;
  }

  .gap-md-7 {
    gap: 7rem !important;
  }

  .gap-md-8 {
    gap: 8rem !important;
  }

  .gap-md-9 {
    gap: 9rem !important;
  }

  .gap-md-10 {
    gap: 10rem !important;
  }

  .gap-md-11 {
    gap: 11rem !important;
  }

  .gap-md-12 {
    gap: 12rem !important;
  }

  .gap-md-13 {
    gap: 13rem !important;
  }

  .gap-md-14 {
    gap: 14rem !important;
  }

  .gap-md-15 {
    gap: 15rem !important;
  }

  .gap-md-16 {
    gap: 16rem !important;
  }

  .gap-md-17 {
    gap: 17rem !important;
  }

  .gap-md-18 {
    gap: 18rem !important;
  }

  .gap-md-19 {
    gap: 19rem !important;
  }

  .gap-md-20 {
    gap: 20rem !important;
  }

  .gap-md-21 {
    gap: 21rem !important;
  }

  .row-gap-md-0 {
    row-gap: 0 !important;
  }

  .row-gap-md-1 {
    row-gap: 0.25rem !important;
  }

  .row-gap-md-2 {
    row-gap: 0.5rem !important;
  }

  .row-gap-md-3 {
    row-gap: 1rem !important;
  }

  .row-gap-md-4 {
    row-gap: 1.5rem !important;
  }

  .row-gap-md-5 {
    row-gap: 3rem !important;
  }

  .row-gap-md-6 {
    row-gap: 5rem !important;
  }

  .row-gap-md-7 {
    row-gap: 7rem !important;
  }

  .row-gap-md-8 {
    row-gap: 8rem !important;
  }

  .row-gap-md-9 {
    row-gap: 9rem !important;
  }

  .row-gap-md-10 {
    row-gap: 10rem !important;
  }

  .row-gap-md-11 {
    row-gap: 11rem !important;
  }

  .row-gap-md-12 {
    row-gap: 12rem !important;
  }

  .row-gap-md-13 {
    row-gap: 13rem !important;
  }

  .row-gap-md-14 {
    row-gap: 14rem !important;
  }

  .row-gap-md-15 {
    row-gap: 15rem !important;
  }

  .row-gap-md-16 {
    row-gap: 16rem !important;
  }

  .row-gap-md-17 {
    row-gap: 17rem !important;
  }

  .row-gap-md-18 {
    row-gap: 18rem !important;
  }

  .row-gap-md-19 {
    row-gap: 19rem !important;
  }

  .row-gap-md-20 {
    row-gap: 20rem !important;
  }

  .row-gap-md-21 {
    row-gap: 21rem !important;
  }

  .column-gap-md-0 {
    -webkit-column-gap: 0 !important;
    -moz-column-gap: 0 !important;
    column-gap: 0 !important;
  }

  .column-gap-md-1 {
    -webkit-column-gap: 0.25rem !important;
    -moz-column-gap: 0.25rem !important;
    column-gap: 0.25rem !important;
  }

  .column-gap-md-2 {
    -webkit-column-gap: 0.5rem !important;
    -moz-column-gap: 0.5rem !important;
    column-gap: 0.5rem !important;
  }

  .column-gap-md-3 {
    -webkit-column-gap: 1rem !important;
    -moz-column-gap: 1rem !important;
    column-gap: 1rem !important;
  }

  .column-gap-md-4 {
    -webkit-column-gap: 1.5rem !important;
    -moz-column-gap: 1.5rem !important;
    column-gap: 1.5rem !important;
  }

  .column-gap-md-5 {
    -webkit-column-gap: 3rem !important;
    -moz-column-gap: 3rem !important;
    column-gap: 3rem !important;
  }

  .column-gap-md-6 {
    -webkit-column-gap: 5rem !important;
    -moz-column-gap: 5rem !important;
    column-gap: 5rem !important;
  }

  .column-gap-md-7 {
    -webkit-column-gap: 7rem !important;
    -moz-column-gap: 7rem !important;
    column-gap: 7rem !important;
  }

  .column-gap-md-8 {
    -webkit-column-gap: 8rem !important;
    -moz-column-gap: 8rem !important;
    column-gap: 8rem !important;
  }

  .column-gap-md-9 {
    -webkit-column-gap: 9rem !important;
    -moz-column-gap: 9rem !important;
    column-gap: 9rem !important;
  }

  .column-gap-md-10 {
    -webkit-column-gap: 10rem !important;
    -moz-column-gap: 10rem !important;
    column-gap: 10rem !important;
  }

  .column-gap-md-11 {
    -webkit-column-gap: 11rem !important;
    -moz-column-gap: 11rem !important;
    column-gap: 11rem !important;
  }

  .column-gap-md-12 {
    -webkit-column-gap: 12rem !important;
    -moz-column-gap: 12rem !important;
    column-gap: 12rem !important;
  }

  .column-gap-md-13 {
    -webkit-column-gap: 13rem !important;
    -moz-column-gap: 13rem !important;
    column-gap: 13rem !important;
  }

  .column-gap-md-14 {
    -webkit-column-gap: 14rem !important;
    -moz-column-gap: 14rem !important;
    column-gap: 14rem !important;
  }

  .column-gap-md-15 {
    -webkit-column-gap: 15rem !important;
    -moz-column-gap: 15rem !important;
    column-gap: 15rem !important;
  }

  .column-gap-md-16 {
    -webkit-column-gap: 16rem !important;
    -moz-column-gap: 16rem !important;
    column-gap: 16rem !important;
  }

  .column-gap-md-17 {
    -webkit-column-gap: 17rem !important;
    -moz-column-gap: 17rem !important;
    column-gap: 17rem !important;
  }

  .column-gap-md-18 {
    -webkit-column-gap: 18rem !important;
    -moz-column-gap: 18rem !important;
    column-gap: 18rem !important;
  }

  .column-gap-md-19 {
    -webkit-column-gap: 19rem !important;
    -moz-column-gap: 19rem !important;
    column-gap: 19rem !important;
  }

  .column-gap-md-20 {
    -webkit-column-gap: 20rem !important;
    -moz-column-gap: 20rem !important;
    column-gap: 20rem !important;
  }

  .column-gap-md-21 {
    -webkit-column-gap: 21rem !important;
    -moz-column-gap: 21rem !important;
    column-gap: 21rem !important;
  }

  .text-md-start {
    text-align: left !important;
  }

  .text-md-end {
    text-align: right !important;
  }

  .text-md-center {
    text-align: center !important;
  }
}

@media (min-width: 992px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm {
    max-width: 960px;
  }

  .col-lg {
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 0%;
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
  }

  .row-cols-lg-auto > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }

  .row-cols-lg-1 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }

  .row-cols-lg-2 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }

  .row-cols-lg-3 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.33333333%;
  }

  .row-cols-lg-4 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }

  .row-cols-lg-5 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 20%;
  }

  .row-cols-lg-6 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.66666667%;
  }

  .col-lg-auto {
    width: auto;
  }

  .col-lg-1,
  .col-lg-auto {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }

  .col-lg-1 {
    width: 8.33333333%;
  }

  .col-lg-2 {
    width: 16.66666667%;
  }

  .col-lg-2,
  .col-lg-3 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }

  .col-lg-3 {
    width: 25%;
  }

  .col-lg-4 {
    width: 33.33333333%;
  }

  .col-lg-4,
  .col-lg-5 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }

  .col-lg-5 {
    width: 41.66666667%;
  }

  .col-lg-6 {
    width: 50%;
  }

  .col-lg-6,
  .col-lg-7 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }

  .col-lg-7 {
    width: 58.33333333%;
  }

  .col-lg-8 {
    width: 66.66666667%;
  }

  .col-lg-8,
  .col-lg-9 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }

  .col-lg-9 {
    width: 75%;
  }

  .col-lg-10 {
    width: 83.33333333%;
  }

  .col-lg-10,
  .col-lg-11 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }

  .col-lg-11 {
    width: 91.66666667%;
  }

  .col-lg-12 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }

  .offset-lg-0 {
    margin-left: 0;
  }

  .offset-lg-1 {
    margin-left: 8.33333333%;
  }

  .offset-lg-2 {
    margin-left: 16.66666667%;
  }

  .offset-lg-3 {
    margin-left: 25%;
  }

  .offset-lg-4 {
    margin-left: 33.33333333%;
  }

  .offset-lg-5 {
    margin-left: 41.66666667%;
  }

  .offset-lg-6 {
    margin-left: 50%;
  }

  .offset-lg-7 {
    margin-left: 58.33333333%;
  }

  .offset-lg-8 {
    margin-left: 66.66666667%;
  }

  .offset-lg-9 {
    margin-left: 75%;
  }

  .offset-lg-10 {
    margin-left: 83.33333333%;
  }

  .offset-lg-11 {
    margin-left: 91.66666667%;
  }

  .g-lg-0,
  .gx-lg-0 {
    --bs-gutter-x: 0;
  }

  .g-lg-0,
  .gy-lg-0 {
    --bs-gutter-y: 0;
  }

  .g-lg-1,
  .gx-lg-1 {
    --bs-gutter-x: 0.25rem;
  }

  .g-lg-1,
  .gy-lg-1 {
    --bs-gutter-y: 0.25rem;
  }

  .g-lg-2,
  .gx-lg-2 {
    --bs-gutter-x: 0.5rem;
  }

  .g-lg-2,
  .gy-lg-2 {
    --bs-gutter-y: 0.5rem;
  }

  .g-lg-3,
  .gx-lg-3 {
    --bs-gutter-x: 1rem;
  }

  .g-lg-3,
  .gy-lg-3 {
    --bs-gutter-y: 1rem;
  }

  .g-lg-4,
  .gx-lg-4 {
    --bs-gutter-x: 1.5rem;
  }

  .g-lg-4,
  .gy-lg-4 {
    --bs-gutter-y: 1.5rem;
  }

  .g-lg-5,
  .gx-lg-5 {
    --bs-gutter-x: 3rem;
  }

  .g-lg-5,
  .gy-lg-5 {
    --bs-gutter-y: 3rem;
  }

  .g-lg-6,
  .gx-lg-6 {
    --bs-gutter-x: 3.5rem;
  }

  .g-lg-6,
  .gy-lg-6 {
    --bs-gutter-y: 3.5rem;
  }

  .g-lg-7,
  .gx-lg-7 {
    --bs-gutter-x: 4rem;
  }

  .g-lg-7,
  .gy-lg-7 {
    --bs-gutter-y: 4rem;
  }

  .g-lg-8,
  .gx-lg-8 {
    --bs-gutter-x: 4.5rem;
  }

  .g-lg-8,
  .gy-lg-8 {
    --bs-gutter-y: 4.5rem;
  }

  .g-lg-9,
  .gx-lg-9 {
    --bs-gutter-x: 5rem;
  }

  .g-lg-9,
  .gy-lg-9 {
    --bs-gutter-y: 5rem;
  }

  .g-lg-10,
  .gx-lg-10 {
    --bs-gutter-x: 5.5rem;
  }

  .g-lg-10,
  .gy-lg-10 {
    --bs-gutter-y: 5.5rem;
  }

  .sticky-lg-top {
    top: 0;
  }

  .sticky-lg-bottom,
  .sticky-lg-top {
    position: -webkit-sticky;
    position: sticky;
    z-index: 1020;
  }

  .sticky-lg-bottom {
    bottom: 0;
  }

  .float-lg-start {
    float: left !important;
  }

  .float-lg-end {
    float: right !important;
  }

  .float-lg-none {
    float: none !important;
  }

  .object-fit-lg-contain {
    -o-object-fit: contain !important;
    object-fit: contain !important;
  }

  .object-fit-lg-cover {
    -o-object-fit: cover !important;
    object-fit: cover !important;
  }

  .object-fit-lg-fill {
    -o-object-fit: fill !important;
    object-fit: fill !important;
  }

  .object-fit-lg-scale {
    -o-object-fit: scale-down !important;
    object-fit: scale-down !important;
  }

  .object-fit-lg-none {
    -o-object-fit: none !important;
    object-fit: none !important;
  }

  .d-lg-inline {
    display: inline !important;
  }

  .d-lg-inline-block {
    display: inline-block !important;
  }

  .d-lg-block {
    display: block !important;
  }

  .d-lg-grid {
    display: grid !important;
  }

  .d-lg-inline-grid {
    display: inline-grid !important;
  }

  .d-lg-table {
    display: table !important;
  }

  .d-lg-table-row {
    display: table-row !important;
  }

  .d-lg-table-cell {
    display: table-cell !important;
  }

  .d-lg-flex {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .d-lg-inline-flex {
    display: -webkit-inline-box !important;
    display: -webkit-inline-flex !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }

  .d-lg-none {
    display: none !important;
  }

  .w-lg-10 {
    width: 10% !important;
  }

  .w-lg-15 {
    width: 15% !important;
  }

  .w-lg-20 {
    width: 20% !important;
  }

  .w-lg-25 {
    width: 25% !important;
  }

  .w-lg-30 {
    width: 30% !important;
  }

  .w-lg-35 {
    width: 35% !important;
  }

  .w-lg-40 {
    width: 40% !important;
  }

  .w-lg-45 {
    width: 45% !important;
  }

  .w-lg-50 {
    width: 50% !important;
  }

  .w-lg-55 {
    width: 55% !important;
  }

  .w-lg-60 {
    width: 60% !important;
  }

  .w-lg-65 {
    width: 65% !important;
  }

  .w-lg-70 {
    width: 70% !important;
  }

  .w-lg-75 {
    width: 75% !important;
  }

  .w-lg-80 {
    width: 80% !important;
  }

  .w-lg-85 {
    width: 85% !important;
  }

  .w-lg-90 {
    width: 90% !important;
  }

  .w-lg-95 {
    width: 95% !important;
  }

  .w-lg-100 {
    width: 100% !important;
  }

  .w-lg-auto {
    width: auto !important;
  }

  .flex-lg-fill {
    -webkit-box-flex: 1 !important;
    -webkit-flex: 1 1 auto !important;
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }

  .flex-lg-row {
    -webkit-box-orient: horizontal !important;
    -webkit-flex-direction: row !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }

  .flex-lg-column,
  .flex-lg-row {
    -webkit-box-direction: normal !important;
  }

  .flex-lg-column {
    -webkit-box-orient: vertical !important;
    -webkit-flex-direction: column !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }

  .flex-lg-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -webkit-flex-direction: row-reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }

  .flex-lg-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -webkit-flex-direction: column-reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }

  .flex-lg-grow-0 {
    -webkit-box-flex: 0 !important;
    -ms-flex-positive: 0 !important;
    -webkit-flex-grow: 0 !important;
    flex-grow: 0 !important;
  }

  .flex-lg-grow-1 {
    -webkit-box-flex: 1 !important;
    -ms-flex-positive: 1 !important;
    -webkit-flex-grow: 1 !important;
    flex-grow: 1 !important;
  }

  .flex-lg-shrink-0 {
    -ms-flex-negative: 0 !important;
    -webkit-flex-shrink: 0 !important;
    flex-shrink: 0 !important;
  }

  .flex-lg-shrink-1 {
    -ms-flex-negative: 1 !important;
    -webkit-flex-shrink: 1 !important;
    flex-shrink: 1 !important;
  }

  .flex-lg-wrap {
    -webkit-flex-wrap: wrap !important;
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }

  .flex-lg-nowrap {
    -webkit-flex-wrap: nowrap !important;
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }

  .flex-lg-wrap-reverse {
    -webkit-flex-wrap: wrap-reverse !important;
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }

  .justify-content-lg-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    -webkit-justify-content: flex-start !important;
    justify-content: flex-start !important;
  }

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

  .justify-content-lg-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    -webkit-justify-content: center !important;
    justify-content: center !important;
  }

  .justify-content-lg-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    -webkit-justify-content: space-between !important;
    justify-content: space-between !important;
  }

  .justify-content-lg-around {
    -ms-flex-pack: distribute !important;
    -webkit-justify-content: space-around !important;
    justify-content: space-around !important;
  }

  .justify-content-lg-evenly {
    -webkit-box-pack: space-evenly !important;
    -ms-flex-pack: space-evenly !important;
    -webkit-justify-content: space-evenly !important;
    justify-content: space-evenly !important;
  }

  .align-items-lg-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    -webkit-align-items: flex-start !important;
    align-items: flex-start !important;
  }

  .align-items-lg-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    -webkit-align-items: flex-end !important;
    align-items: flex-end !important;
  }

  .align-items-lg-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    -webkit-align-items: center !important;
    align-items: center !important;
  }

  .align-items-lg-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    -webkit-align-items: baseline !important;
    align-items: baseline !important;
  }

  .align-items-lg-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    -webkit-align-items: stretch !important;
    align-items: stretch !important;
  }

  .align-content-lg-start {
    -ms-flex-line-pack: start !important;
    -webkit-align-content: flex-start !important;
    align-content: flex-start !important;
  }

  .align-content-lg-end {
    -ms-flex-line-pack: end !important;
    -webkit-align-content: flex-end !important;
    align-content: flex-end !important;
  }

  .align-content-lg-center {
    -ms-flex-line-pack: center !important;
    -webkit-align-content: center !important;
    align-content: center !important;
  }

  .align-content-lg-between {
    -ms-flex-line-pack: justify !important;
    -webkit-align-content: space-between !important;
    align-content: space-between !important;
  }

  .align-content-lg-around {
    -ms-flex-line-pack: distribute !important;
    -webkit-align-content: space-around !important;
    align-content: space-around !important;
  }

  .align-content-lg-stretch {
    -ms-flex-line-pack: stretch !important;
    -webkit-align-content: stretch !important;
    align-content: stretch !important;
  }

  .align-self-lg-auto {
    -ms-flex-item-align: auto !important;
    -webkit-align-self: auto !important;
    align-self: auto !important;
  }

  .align-self-lg-start {
    -ms-flex-item-align: start !important;
    -webkit-align-self: flex-start !important;
    align-self: flex-start !important;
  }

  .align-self-lg-end {
    -ms-flex-item-align: end !important;
    -webkit-align-self: flex-end !important;
    align-self: flex-end !important;
  }

  .align-self-lg-center {
    -ms-flex-item-align: center !important;
    -webkit-align-self: center !important;
    align-self: center !important;
  }

  .align-self-lg-baseline {
    -ms-flex-item-align: baseline !important;
    -webkit-align-self: baseline !important;
    align-self: baseline !important;
  }

  .align-self-lg-stretch {
    -ms-flex-item-align: stretch !important;
    -webkit-align-self: stretch !important;
    align-self: stretch !important;
  }

  .order-lg-first {
    -webkit-box-ordinal-group: 0 !important;
    -ms-flex-order: -1 !important;
    -webkit-order: -1 !important;
    order: -1 !important;
  }

  .order-lg-0 {
    -webkit-box-ordinal-group: 1 !important;
    -ms-flex-order: 0 !important;
    -webkit-order: 0 !important;
    order: 0 !important;
  }

  .order-lg-1 {
    -webkit-box-ordinal-group: 2 !important;
    -ms-flex-order: 1 !important;
    -webkit-order: 1 !important;
    order: 1 !important;
  }

  .order-lg-2 {
    -webkit-box-ordinal-group: 3 !important;
    -ms-flex-order: 2 !important;
    -webkit-order: 2 !important;
    order: 2 !important;
  }

  .order-lg-3 {
    -webkit-box-ordinal-group: 4 !important;
    -ms-flex-order: 3 !important;
    -webkit-order: 3 !important;
    order: 3 !important;
  }

  .order-lg-4 {
    -webkit-box-ordinal-group: 5 !important;
    -ms-flex-order: 4 !important;
    -webkit-order: 4 !important;
    order: 4 !important;
  }

  .order-lg-5 {
    -webkit-box-ordinal-group: 6 !important;
    -ms-flex-order: 5 !important;
    -webkit-order: 5 !important;
    order: 5 !important;
  }

  .order-lg-6 {
    -webkit-box-ordinal-group: 7 !important;
    -ms-flex-order: 6 !important;
    -webkit-order: 6 !important;
    order: 6 !important;
  }

  .order-lg-7 {
    -webkit-box-ordinal-group: 8 !important;
    -ms-flex-order: 7 !important;
    -webkit-order: 7 !important;
    order: 7 !important;
  }

  .order-lg-8 {
    -webkit-box-ordinal-group: 9 !important;
    -ms-flex-order: 8 !important;
    -webkit-order: 8 !important;
    order: 8 !important;
  }

  .order-lg-9 {
    -webkit-box-ordinal-group: 10 !important;
    -ms-flex-order: 9 !important;
    -webkit-order: 9 !important;
    order: 9 !important;
  }

  .order-lg-10 {
    -webkit-box-ordinal-group: 11 !important;
    -ms-flex-order: 10 !important;
    -webkit-order: 10 !important;
    order: 10 !important;
  }

  .order-lg-11 {
    -webkit-box-ordinal-group: 12 !important;
    -ms-flex-order: 11 !important;
    -webkit-order: 11 !important;
    order: 11 !important;
  }

  .order-lg-last {
    -webkit-box-ordinal-group: 13 !important;
    -ms-flex-order: 12 !important;
    -webkit-order: 12 !important;
    order: 12 !important;
  }

  .m-lg-0 {
    margin: 0 !important;
  }

  .m-lg-1 {
    margin: 0.25rem !important;
  }

  .m-lg-2 {
    margin: 0.5rem !important;
  }

  .m-lg-3 {
    margin: 1rem !important;
  }

  .m-lg-4 {
    margin: 1.5rem !important;
  }

  .m-lg-5 {
    margin: 3rem !important;
  }

  .m-lg-6 {
    margin: 5rem !important;
  }

  .m-lg-7 {
    margin: 7rem !important;
  }

  .m-lg-8 {
    margin: 8rem !important;
  }

  .m-lg-9 {
    margin: 9rem !important;
  }

  .m-lg-10 {
    margin: 10rem !important;
  }

  .m-lg-11 {
    margin: 11rem !important;
  }

  .m-lg-12 {
    margin: 12rem !important;
  }

  .m-lg-13 {
    margin: 13rem !important;
  }

  .m-lg-14 {
    margin: 14rem !important;
  }

  .m-lg-15 {
    margin: 15rem !important;
  }

  .m-lg-16 {
    margin: 16rem !important;
  }

  .m-lg-17 {
    margin: 17rem !important;
  }

  .m-lg-18 {
    margin: 18rem !important;
  }

  .m-lg-19 {
    margin: 19rem !important;
  }

  .m-lg-20 {
    margin: 20rem !important;
  }

  .m-lg-21 {
    margin: 21rem !important;
  }

  .m-lg-auto {
    margin: auto !important;
  }

  .mx-lg-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .mx-lg-1 {
    margin-left: 0.25rem !important;
    margin-right: 0.25rem !important;
  }

  .mx-lg-2 {
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
  }

  .mx-lg-3 {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }

  .mx-lg-4 {
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
  }

  .mx-lg-5 {
    margin-left: 3rem !important;
    margin-right: 3rem !important;
  }

  .mx-lg-6 {
    margin-left: 5rem !important;
    margin-right: 5rem !important;
  }

  .mx-lg-7 {
    margin-left: 7rem !important;
    margin-right: 7rem !important;
  }

  .mx-lg-8 {
    margin-left: 8rem !important;
    margin-right: 8rem !important;
  }

  .mx-lg-9 {
    margin-left: 9rem !important;
    margin-right: 9rem !important;
  }

  .mx-lg-10 {
    margin-left: 10rem !important;
    margin-right: 10rem !important;
  }

  .mx-lg-11 {
    margin-left: 11rem !important;
    margin-right: 11rem !important;
  }

  .mx-lg-12 {
    margin-left: 12rem !important;
    margin-right: 12rem !important;
  }

  .mx-lg-13 {
    margin-left: 13rem !important;
    margin-right: 13rem !important;
  }

  .mx-lg-14 {
    margin-left: 14rem !important;
    margin-right: 14rem !important;
  }

  .mx-lg-15 {
    margin-left: 15rem !important;
    margin-right: 15rem !important;
  }

  .mx-lg-16 {
    margin-left: 16rem !important;
    margin-right: 16rem !important;
  }

  .mx-lg-17 {
    margin-left: 17rem !important;
    margin-right: 17rem !important;
  }

  .mx-lg-18 {
    margin-left: 18rem !important;
    margin-right: 18rem !important;
  }

  .mx-lg-19 {
    margin-left: 19rem !important;
    margin-right: 19rem !important;
  }

  .mx-lg-20 {
    margin-left: 20rem !important;
    margin-right: 20rem !important;
  }

  .mx-lg-21 {
    margin-left: 21rem !important;
    margin-right: 21rem !important;
  }

  .mx-lg-auto {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .my-lg-0 {
    margin-bottom: 0 !important;
    margin-top: 0 !important;
  }

  .my-lg-1 {
    margin-bottom: 0.25rem !important;
    margin-top: 0.25rem !important;
  }

  .my-lg-2 {
    margin-bottom: 0.5rem !important;
    margin-top: 0.5rem !important;
  }

  .my-lg-3 {
    margin-bottom: 1rem !important;
    margin-top: 1rem !important;
  }

  .my-lg-4 {
    margin-bottom: 1.5rem !important;
    margin-top: 1.5rem !important;
  }

  .my-lg-5 {
    margin-bottom: 3rem !important;
    margin-top: 3rem !important;
  }

  .my-lg-6 {
    margin-bottom: 5rem !important;
    margin-top: 5rem !important;
  }

  .my-lg-7 {
    margin-bottom: 7rem !important;
    margin-top: 7rem !important;
  }

  .my-lg-8 {
    margin-bottom: 8rem !important;
    margin-top: 8rem !important;
  }

  .my-lg-9 {
    margin-bottom: 9rem !important;
    margin-top: 9rem !important;
  }

  .my-lg-10 {
    margin-bottom: 10rem !important;
    margin-top: 10rem !important;
  }

  .my-lg-11 {
    margin-bottom: 11rem !important;
    margin-top: 11rem !important;
  }

  .my-lg-12 {
    margin-bottom: 12rem !important;
    margin-top: 12rem !important;
  }

  .my-lg-13 {
    margin-bottom: 13rem !important;
    margin-top: 13rem !important;
  }

  .my-lg-14 {
    margin-bottom: 14rem !important;
    margin-top: 14rem !important;
  }

  .my-lg-15 {
    margin-bottom: 15rem !important;
    margin-top: 15rem !important;
  }

  .my-lg-16 {
    margin-bottom: 16rem !important;
    margin-top: 16rem !important;
  }

  .my-lg-17 {
    margin-bottom: 17rem !important;
    margin-top: 17rem !important;
  }

  .my-lg-18 {
    margin-bottom: 18rem !important;
    margin-top: 18rem !important;
  }

  .my-lg-19 {
    margin-bottom: 19rem !important;
    margin-top: 19rem !important;
  }

  .my-lg-20 {
    margin-bottom: 20rem !important;
    margin-top: 20rem !important;
  }

  .my-lg-21 {
    margin-bottom: 21rem !important;
    margin-top: 21rem !important;
  }

  .my-lg-auto {
    margin-bottom: auto !important;
    margin-top: auto !important;
  }

  .mt-lg-0 {
    margin-top: 0 !important;
  }

  .mt-lg-1 {
    margin-top: 0.25rem !important;
  }

  .mt-lg-2 {
    margin-top: 0.5rem !important;
  }

  .mt-lg-3 {
    margin-top: 1rem !important;
  }

  .mt-lg-4 {
    margin-top: 1.5rem !important;
  }

  .mt-lg-5 {
    margin-top: 3rem !important;
  }

  .mt-lg-6 {
    margin-top: 5rem !important;
  }

  .mt-lg-7 {
    margin-top: 7rem !important;
  }

  .mt-lg-8 {
    margin-top: 8rem !important;
  }

  .mt-lg-9 {
    margin-top: 9rem !important;
  }

  .mt-lg-10 {
    margin-top: 10rem !important;
  }

  .mt-lg-11 {
    margin-top: 11rem !important;
  }

  .mt-lg-12 {
    margin-top: 12rem !important;
  }

  .mt-lg-13 {
    margin-top: 13rem !important;
  }

  .mt-lg-14 {
    margin-top: 14rem !important;
  }

  .mt-lg-15 {
    margin-top: 15rem !important;
  }

  .mt-lg-16 {
    margin-top: 16rem !important;
  }

  .mt-lg-17 {
    margin-top: 17rem !important;
  }

  .mt-lg-18 {
    margin-top: 18rem !important;
  }

  .mt-lg-19 {
    margin-top: 19rem !important;
  }

  .mt-lg-20 {
    margin-top: 20rem !important;
  }

  .mt-lg-21 {
    margin-top: 21rem !important;
  }

  .mt-lg-auto {
    margin-top: auto !important;
  }

  .me-lg-0 {
    margin-right: 0 !important;
  }

  .me-lg-1 {
    margin-right: 0.25rem !important;
  }

  .me-lg-2 {
    margin-right: 0.5rem !important;
  }

  .me-lg-3 {
    margin-right: 1rem !important;
  }

  .me-lg-4 {
    margin-right: 1.5rem !important;
  }

  .me-lg-5 {
    margin-right: 3rem !important;
  }

  .me-lg-6 {
    margin-right: 5rem !important;
  }

  .me-lg-7 {
    margin-right: 7rem !important;
  }

  .me-lg-8 {
    margin-right: 8rem !important;
  }

  .me-lg-9 {
    margin-right: 9rem !important;
  }

  .me-lg-10 {
    margin-right: 10rem !important;
  }

  .me-lg-11 {
    margin-right: 11rem !important;
  }

  .me-lg-12 {
    margin-right: 12rem !important;
  }

  .me-lg-13 {
    margin-right: 13rem !important;
  }

  .me-lg-14 {
    margin-right: 14rem !important;
  }

  .me-lg-15 {
    margin-right: 15rem !important;
  }

  .me-lg-16 {
    margin-right: 16rem !important;
  }

  .me-lg-17 {
    margin-right: 17rem !important;
  }

  .me-lg-18 {
    margin-right: 18rem !important;
  }

  .me-lg-19 {
    margin-right: 19rem !important;
  }

  .me-lg-20 {
    margin-right: 20rem !important;
  }

  .me-lg-21 {
    margin-right: 21rem !important;
  }

  .me-lg-auto {
    margin-right: auto !important;
  }

  .mb-lg-0 {
    margin-bottom: 0 !important;
  }

  .mb-lg-1 {
    margin-bottom: 0.25rem !important;
  }

  .mb-lg-2 {
    margin-bottom: 0.5rem !important;
  }

  .mb-lg-3 {
    margin-bottom: 1rem !important;
  }

  .mb-lg-4 {
    margin-bottom: 1.5rem !important;
  }

  .mb-lg-5 {
    margin-bottom: 3rem !important;
  }

  .mb-lg-6 {
    margin-bottom: 5rem !important;
  }

  .mb-lg-7 {
    margin-bottom: 7rem !important;
  }

  .mb-lg-8 {
    margin-bottom: 8rem !important;
  }

  .mb-lg-9 {
    margin-bottom: 9rem !important;
  }

  .mb-lg-10 {
    margin-bottom: 10rem !important;
  }

  .mb-lg-11 {
    margin-bottom: 11rem !important;
  }

  .mb-lg-12 {
    margin-bottom: 12rem !important;
  }

  .mb-lg-13 {
    margin-bottom: 13rem !important;
  }

  .mb-lg-14 {
    margin-bottom: 14rem !important;
  }

  .mb-lg-15 {
    margin-bottom: 15rem !important;
  }

  .mb-lg-16 {
    margin-bottom: 16rem !important;
  }

  .mb-lg-17 {
    margin-bottom: 17rem !important;
  }

  .mb-lg-18 {
    margin-bottom: 18rem !important;
  }

  .mb-lg-19 {
    margin-bottom: 19rem !important;
  }

  .mb-lg-20 {
    margin-bottom: 20rem !important;
  }

  .mb-lg-21 {
    margin-bottom: 21rem !important;
  }

  .mb-lg-auto {
    margin-bottom: auto !important;
  }

  .ms-lg-0 {
    margin-left: 0 !important;
  }

  .ms-lg-1 {
    margin-left: 0.25rem !important;
  }

  .ms-lg-2 {
    margin-left: 0.5rem !important;
  }

  .ms-lg-3 {
    margin-left: 1rem !important;
  }

  .ms-lg-4 {
    margin-left: 1.5rem !important;
  }

  .ms-lg-5 {
    margin-left: 3rem !important;
  }

  .ms-lg-6 {
    margin-left: 5rem !important;
  }

  .ms-lg-7 {
    margin-left: 7rem !important;
  }

  .ms-lg-8 {
    margin-left: 8rem !important;
  }

  .ms-lg-9 {
    margin-left: 9rem !important;
  }

  .ms-lg-10 {
    margin-left: 10rem !important;
  }

  .ms-lg-11 {
    margin-left: 11rem !important;
  }

  .ms-lg-12 {
    margin-left: 12rem !important;
  }

  .ms-lg-13 {
    margin-left: 13rem !important;
  }

  .ms-lg-14 {
    margin-left: 14rem !important;
  }

  .ms-lg-15 {
    margin-left: 15rem !important;
  }

  .ms-lg-16 {
    margin-left: 16rem !important;
  }

  .ms-lg-17 {
    margin-left: 17rem !important;
  }

  .ms-lg-18 {
    margin-left: 18rem !important;
  }

  .ms-lg-19 {
    margin-left: 19rem !important;
  }

  .ms-lg-20 {
    margin-left: 20rem !important;
  }

  .ms-lg-21 {
    margin-left: 21rem !important;
  }

  .ms-lg-auto {
    margin-left: auto !important;
  }

  .m-lg-n1 {
    margin: -0.25rem !important;
  }

  .m-lg-n2 {
    margin: -0.5rem !important;
  }

  .m-lg-n3 {
    margin: -1rem !important;
  }

  .m-lg-n4 {
    margin: -1.5rem !important;
  }

  .m-lg-n5 {
    margin: -3rem !important;
  }

  .m-lg-n6 {
    margin: -5rem !important;
  }

  .m-lg-n7 {
    margin: -7rem !important;
  }

  .m-lg-n8 {
    margin: -8rem !important;
  }

  .m-lg-n9 {
    margin: -9rem !important;
  }

  .m-lg-n10 {
    margin: -10rem !important;
  }

  .m-lg-n11 {
    margin: -11rem !important;
  }

  .m-lg-n12 {
    margin: -12rem !important;
  }

  .m-lg-n13 {
    margin: -13rem !important;
  }

  .m-lg-n14 {
    margin: -14rem !important;
  }

  .m-lg-n15 {
    margin: -15rem !important;
  }

  .m-lg-n16 {
    margin: -16rem !important;
  }

  .m-lg-n17 {
    margin: -17rem !important;
  }

  .m-lg-n18 {
    margin: -18rem !important;
  }

  .m-lg-n19 {
    margin: -19rem !important;
  }

  .m-lg-n20 {
    margin: -20rem !important;
  }

  .m-lg-n21 {
    margin: -21rem !important;
  }

  .mx-lg-n1 {
    margin-left: -0.25rem !important;
    margin-right: -0.25rem !important;
  }

  .mx-lg-n2 {
    margin-left: -0.5rem !important;
    margin-right: -0.5rem !important;
  }

  .mx-lg-n3 {
    margin-left: -1rem !important;
    margin-right: -1rem !important;
  }

  .mx-lg-n4 {
    margin-left: -1.5rem !important;
    margin-right: -1.5rem !important;
  }

  .mx-lg-n5 {
    margin-left: -3rem !important;
    margin-right: -3rem !important;
  }

  .mx-lg-n6 {
    margin-left: -5rem !important;
    margin-right: -5rem !important;
  }

  .mx-lg-n7 {
    margin-left: -7rem !important;
    margin-right: -7rem !important;
  }

  .mx-lg-n8 {
    margin-left: -8rem !important;
    margin-right: -8rem !important;
  }

  .mx-lg-n9 {
    margin-left: -9rem !important;
    margin-right: -9rem !important;
  }

  .mx-lg-n10 {
    margin-left: -10rem !important;
    margin-right: -10rem !important;
  }

  .mx-lg-n11 {
    margin-left: -11rem !important;
    margin-right: -11rem !important;
  }

  .mx-lg-n12 {
    margin-left: -12rem !important;
    margin-right: -12rem !important;
  }

  .mx-lg-n13 {
    margin-left: -13rem !important;
    margin-right: -13rem !important;
  }

  .mx-lg-n14 {
    margin-left: -14rem !important;
    margin-right: -14rem !important;
  }

  .mx-lg-n15 {
    margin-left: -15rem !important;
    margin-right: -15rem !important;
  }

  .mx-lg-n16 {
    margin-left: -16rem !important;
    margin-right: -16rem !important;
  }

  .mx-lg-n17 {
    margin-left: -17rem !important;
    margin-right: -17rem !important;
  }

  .mx-lg-n18 {
    margin-left: -18rem !important;
    margin-right: -18rem !important;
  }

  .mx-lg-n19 {
    margin-left: -19rem !important;
    margin-right: -19rem !important;
  }

  .mx-lg-n20 {
    margin-left: -20rem !important;
    margin-right: -20rem !important;
  }

  .mx-lg-n21 {
    margin-left: -21rem !important;
    margin-right: -21rem !important;
  }

  .my-lg-n1 {
    margin-bottom: -0.25rem !important;
    margin-top: -0.25rem !important;
  }

  .my-lg-n2 {
    margin-bottom: -0.5rem !important;
    margin-top: -0.5rem !important;
  }

  .my-lg-n3 {
    margin-bottom: -1rem !important;
    margin-top: -1rem !important;
  }

  .my-lg-n4 {
    margin-bottom: -1.5rem !important;
    margin-top: -1.5rem !important;
  }

  .my-lg-n5 {
    margin-bottom: -3rem !important;
    margin-top: -3rem !important;
  }

  .my-lg-n6 {
    margin-bottom: -5rem !important;
    margin-top: -5rem !important;
  }

  .my-lg-n7 {
    margin-bottom: -7rem !important;
    margin-top: -7rem !important;
  }

  .my-lg-n8 {
    margin-bottom: -8rem !important;
    margin-top: -8rem !important;
  }

  .my-lg-n9 {
    margin-bottom: -9rem !important;
    margin-top: -9rem !important;
  }

  .my-lg-n10 {
    margin-bottom: -10rem !important;
    margin-top: -10rem !important;
  }

  .my-lg-n11 {
    margin-bottom: -11rem !important;
    margin-top: -11rem !important;
  }

  .my-lg-n12 {
    margin-bottom: -12rem !important;
    margin-top: -12rem !important;
  }

  .my-lg-n13 {
    margin-bottom: -13rem !important;
    margin-top: -13rem !important;
  }

  .my-lg-n14 {
    margin-bottom: -14rem !important;
    margin-top: -14rem !important;
  }

  .my-lg-n15 {
    margin-bottom: -15rem !important;
    margin-top: -15rem !important;
  }

  .my-lg-n16 {
    margin-bottom: -16rem !important;
    margin-top: -16rem !important;
  }

  .my-lg-n17 {
    margin-bottom: -17rem !important;
    margin-top: -17rem !important;
  }

  .my-lg-n18 {
    margin-bottom: -18rem !important;
    margin-top: -18rem !important;
  }

  .my-lg-n19 {
    margin-bottom: -19rem !important;
    margin-top: -19rem !important;
  }

  .my-lg-n20 {
    margin-bottom: -20rem !important;
    margin-top: -20rem !important;
  }

  .my-lg-n21 {
    margin-bottom: -21rem !important;
    margin-top: -21rem !important;
  }

  .mt-lg-n1 {
    margin-top: -0.25rem !important;
  }

  .mt-lg-n2 {
    margin-top: -0.5rem !important;
  }

  .mt-lg-n3 {
    margin-top: -1rem !important;
  }

  .mt-lg-n4 {
    margin-top: -1.5rem !important;
  }

  .mt-lg-n5 {
    margin-top: -3rem !important;
  }

  .mt-lg-n6 {
    margin-top: -5rem !important;
  }

  .mt-lg-n7 {
    margin-top: -7rem !important;
  }

  .mt-lg-n8 {
    margin-top: -8rem !important;
  }

  .mt-lg-n9 {
    margin-top: -9rem !important;
  }

  .mt-lg-n10 {
    margin-top: -10rem !important;
  }

  .mt-lg-n11 {
    margin-top: -11rem !important;
  }

  .mt-lg-n12 {
    margin-top: -12rem !important;
  }

  .mt-lg-n13 {
    margin-top: -13rem !important;
  }

  .mt-lg-n14 {
    margin-top: -14rem !important;
  }

  .mt-lg-n15 {
    margin-top: -15rem !important;
  }

  .mt-lg-n16 {
    margin-top: -16rem !important;
  }

  .mt-lg-n17 {
    margin-top: -17rem !important;
  }

  .mt-lg-n18 {
    margin-top: -18rem !important;
  }

  .mt-lg-n19 {
    margin-top: -19rem !important;
  }

  .mt-lg-n20 {
    margin-top: -20rem !important;
  }

  .mt-lg-n21 {
    margin-top: -21rem !important;
  }

  .me-lg-n1 {
    margin-right: -0.25rem !important;
  }

  .me-lg-n2 {
    margin-right: -0.5rem !important;
  }

  .me-lg-n3 {
    margin-right: -1rem !important;
  }

  .me-lg-n4 {
    margin-right: -1.5rem !important;
  }

  .me-lg-n5 {
    margin-right: -3rem !important;
  }

  .me-lg-n6 {
    margin-right: -5rem !important;
  }

  .me-lg-n7 {
    margin-right: -7rem !important;
  }

  .me-lg-n8 {
    margin-right: -8rem !important;
  }

  .me-lg-n9 {
    margin-right: -9rem !important;
  }

  .me-lg-n10 {
    margin-right: -10rem !important;
  }

  .me-lg-n11 {
    margin-right: -11rem !important;
  }

  .me-lg-n12 {
    margin-right: -12rem !important;
  }

  .me-lg-n13 {
    margin-right: -13rem !important;
  }

  .me-lg-n14 {
    margin-right: -14rem !important;
  }

  .me-lg-n15 {
    margin-right: -15rem !important;
  }

  .me-lg-n16 {
    margin-right: -16rem !important;
  }

  .me-lg-n17 {
    margin-right: -17rem !important;
  }

  .me-lg-n18 {
    margin-right: -18rem !important;
  }

  .me-lg-n19 {
    margin-right: -19rem !important;
  }

  .me-lg-n20 {
    margin-right: -20rem !important;
  }

  .me-lg-n21 {
    margin-right: -21rem !important;
  }

  .mb-lg-n1 {
    margin-bottom: -0.25rem !important;
  }

  .mb-lg-n2 {
    margin-bottom: -0.5rem !important;
  }

  .mb-lg-n3 {
    margin-bottom: -1rem !important;
  }

  .mb-lg-n4 {
    margin-bottom: -1.5rem !important;
  }

  .mb-lg-n5 {
    margin-bottom: -3rem !important;
  }

  .mb-lg-n6 {
    margin-bottom: -5rem !important;
  }

  .mb-lg-n7 {
    margin-bottom: -7rem !important;
  }

  .mb-lg-n8 {
    margin-bottom: -8rem !important;
  }

  .mb-lg-n9 {
    margin-bottom: -9rem !important;
  }

  .mb-lg-n10 {
    margin-bottom: -10rem !important;
  }

  .mb-lg-n11 {
    margin-bottom: -11rem !important;
  }

  .mb-lg-n12 {
    margin-bottom: -12rem !important;
  }

  .mb-lg-n13 {
    margin-bottom: -13rem !important;
  }

  .mb-lg-n14 {
    margin-bottom: -14rem !important;
  }

  .mb-lg-n15 {
    margin-bottom: -15rem !important;
  }

  .mb-lg-n16 {
    margin-bottom: -16rem !important;
  }

  .mb-lg-n17 {
    margin-bottom: -17rem !important;
  }

  .mb-lg-n18 {
    margin-bottom: -18rem !important;
  }

  .mb-lg-n19 {
    margin-bottom: -19rem !important;
  }

  .mb-lg-n20 {
    margin-bottom: -20rem !important;
  }

  .mb-lg-n21 {
    margin-bottom: -21rem !important;
  }

  .ms-lg-n1 {
    margin-left: -0.25rem !important;
  }

  .ms-lg-n2 {
    margin-left: -0.5rem !important;
  }

  .ms-lg-n3 {
    margin-left: -1rem !important;
  }

  .ms-lg-n4 {
    margin-left: -1.5rem !important;
  }

  .ms-lg-n5 {
    margin-left: -3rem !important;
  }

  .ms-lg-n6 {
    margin-left: -5rem !important;
  }

  .ms-lg-n7 {
    margin-left: -7rem !important;
  }

  .ms-lg-n8 {
    margin-left: -8rem !important;
  }

  .ms-lg-n9 {
    margin-left: -9rem !important;
  }

  .ms-lg-n10 {
    margin-left: -10rem !important;
  }

  .ms-lg-n11 {
    margin-left: -11rem !important;
  }

  .ms-lg-n12 {
    margin-left: -12rem !important;
  }

  .ms-lg-n13 {
    margin-left: -13rem !important;
  }

  .ms-lg-n14 {
    margin-left: -14rem !important;
  }

  .ms-lg-n15 {
    margin-left: -15rem !important;
  }

  .ms-lg-n16 {
    margin-left: -16rem !important;
  }

  .ms-lg-n17 {
    margin-left: -17rem !important;
  }

  .ms-lg-n18 {
    margin-left: -18rem !important;
  }

  .ms-lg-n19 {
    margin-left: -19rem !important;
  }

  .ms-lg-n20 {
    margin-left: -20rem !important;
  }

  .ms-lg-n21 {
    margin-left: -21rem !important;
  }

  .p-lg-0 {
    padding: 0 !important;
  }

  .p-lg-1 {
    padding: 0.25rem !important;
  }

  .p-lg-2 {
    padding: 0.5rem !important;
  }

  .p-lg-3 {
    padding: 1rem !important;
  }

  .p-lg-4 {
    padding: 1.5rem !important;
  }

  .p-lg-5 {
    padding: 3rem !important;
  }

  .p-lg-6 {
    padding: 5rem !important;
  }

  .p-lg-7 {
    padding: 7rem !important;
  }

  .p-lg-8 {
    padding: 8rem !important;
  }

  .p-lg-9 {
    padding: 9rem !important;
  }

  .p-lg-10 {
    padding: 10rem !important;
  }

  .p-lg-11 {
    padding: 11rem !important;
  }

  .p-lg-12 {
    padding: 12rem !important;
  }

  .p-lg-13 {
    padding: 13rem !important;
  }

  .p-lg-14 {
    padding: 14rem !important;
  }

  .p-lg-15 {
    padding: 15rem !important;
  }

  .p-lg-16 {
    padding: 16rem !important;
  }

  .p-lg-17 {
    padding: 17rem !important;
  }

  .p-lg-18 {
    padding: 18rem !important;
  }

  .p-lg-19 {
    padding: 19rem !important;
  }

  .p-lg-20 {
    padding: 20rem !important;
  }

  .p-lg-21 {
    padding: 21rem !important;
  }

  .px-lg-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .px-lg-1 {
    padding-left: 0.25rem !important;
    padding-right: 0.25rem !important;
  }

  .px-lg-2 {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }

  .px-lg-3 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .px-lg-4 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }

  .px-lg-5 {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
  }

  .px-lg-6 {
    padding-left: 5rem !important;
    padding-right: 5rem !important;
  }

  .px-lg-7 {
    padding-left: 7rem !important;
    padding-right: 7rem !important;
  }

  .px-lg-8 {
    padding-left: 8rem !important;
    padding-right: 8rem !important;
  }

  .px-lg-9 {
    padding-left: 9rem !important;
    padding-right: 9rem !important;
  }

  .px-lg-10 {
    padding-left: 10rem !important;
    padding-right: 10rem !important;
  }

  .px-lg-11 {
    padding-left: 11rem !important;
    padding-right: 11rem !important;
  }

  .px-lg-12 {
    padding-left: 12rem !important;
    padding-right: 12rem !important;
  }

  .px-lg-13 {
    padding-left: 13rem !important;
    padding-right: 13rem !important;
  }

  .px-lg-14 {
    padding-left: 14rem !important;
    padding-right: 14rem !important;
  }

  .px-lg-15 {
    padding-left: 15rem !important;
    padding-right: 15rem !important;
  }

  .px-lg-16 {
    padding-left: 16rem !important;
    padding-right: 16rem !important;
  }

  .px-lg-17 {
    padding-left: 17rem !important;
    padding-right: 17rem !important;
  }

  .px-lg-18 {
    padding-left: 18rem !important;
    padding-right: 18rem !important;
  }

  .px-lg-19 {
    padding-left: 19rem !important;
    padding-right: 19rem !important;
  }

  .px-lg-20 {
    padding-left: 20rem !important;
    padding-right: 20rem !important;
  }

  .px-lg-21 {
    padding-left: 21rem !important;
    padding-right: 21rem !important;
  }

  .py-lg-0 {
    padding-bottom: 0 !important;
    padding-top: 0 !important;
  }

  .py-lg-1 {
    padding-bottom: 0.25rem !important;
    padding-top: 0.25rem !important;
  }

  .py-lg-2 {
    padding-bottom: 0.5rem !important;
    padding-top: 0.5rem !important;
  }

  .py-lg-3 {
    padding-bottom: 1rem !important;
    padding-top: 1rem !important;
  }

  .py-lg-4 {
    padding-bottom: 1.5rem !important;
    padding-top: 1.5rem !important;
  }

  .py-lg-5 {
    padding-bottom: 3rem !important;
    padding-top: 3rem !important;
  }

  .py-lg-6 {
    padding-bottom: 5rem !important;
    padding-top: 5rem !important;
  }

  .py-lg-7 {
    padding-bottom: 7rem !important;
    padding-top: 7rem !important;
  }

  .py-lg-8 {
    padding-bottom: 8rem !important;
    padding-top: 8rem !important;
  }

  .py-lg-9 {
    padding-bottom: 9rem !important;
    padding-top: 9rem !important;
  }

  .py-lg-10 {
    padding-bottom: 10rem !important;
    padding-top: 10rem !important;
  }

  .py-lg-11 {
    padding-bottom: 11rem !important;
    padding-top: 11rem !important;
  }

  .py-lg-12 {
    padding-bottom: 12rem !important;
    padding-top: 12rem !important;
  }

  .py-lg-13 {
    padding-bottom: 13rem !important;
    padding-top: 13rem !important;
  }

  .py-lg-14 {
    padding-bottom: 14rem !important;
    padding-top: 14rem !important;
  }

  .py-lg-15 {
    padding-bottom: 15rem !important;
    padding-top: 15rem !important;
  }

  .py-lg-16 {
    padding-bottom: 16rem !important;
    padding-top: 16rem !important;
  }

  .py-lg-17 {
    padding-bottom: 17rem !important;
    padding-top: 17rem !important;
  }

  .py-lg-18 {
    padding-bottom: 18rem !important;
    padding-top: 18rem !important;
  }

  .py-lg-19 {
    padding-bottom: 19rem !important;
    padding-top: 19rem !important;
  }

  .py-lg-20 {
    padding-bottom: 20rem !important;
    padding-top: 20rem !important;
  }

  .py-lg-21 {
    padding-bottom: 21rem !important;
    padding-top: 21rem !important;
  }

  .pt-lg-0 {
    padding-top: 0 !important;
  }

  .pt-lg-1 {
    padding-top: 0.25rem !important;
  }

  .pt-lg-2 {
    padding-top: 0.5rem !important;
  }

  .pt-lg-3 {
    padding-top: 1rem !important;
  }

  .pt-lg-4 {
    padding-top: 1.5rem !important;
  }

  .pt-lg-5 {
    padding-top: 3rem !important;
  }

  .pt-lg-6 {
    padding-top: 5rem !important;
  }

  .pt-lg-7 {
    padding-top: 7rem !important;
  }

  .pt-lg-8 {
    padding-top: 8rem !important;
  }

  .pt-lg-9 {
    padding-top: 9rem !important;
  }

  .pt-lg-10 {
    padding-top: 10rem !important;
  }

  .pt-lg-11 {
    padding-top: 11rem !important;
  }

  .pt-lg-12 {
    padding-top: 12rem !important;
  }

  .pt-lg-13 {
    padding-top: 13rem !important;
  }

  .pt-lg-14 {
    padding-top: 14rem !important;
  }

  .pt-lg-15 {
    padding-top: 15rem !important;
  }

  .pt-lg-16 {
    padding-top: 16rem !important;
  }

  .pt-lg-17 {
    padding-top: 17rem !important;
  }

  .pt-lg-18 {
    padding-top: 18rem !important;
  }

  .pt-lg-19 {
    padding-top: 19rem !important;
  }

  .pt-lg-20 {
    padding-top: 20rem !important;
  }

  .pt-lg-21 {
    padding-top: 21rem !important;
  }

  .pe-lg-0 {
    padding-right: 0 !important;
  }

  .pe-lg-1 {
    padding-right: 0.25rem !important;
  }

  .pe-lg-2 {
    padding-right: 0.5rem !important;
  }

  .pe-lg-3 {
    padding-right: 1rem !important;
  }

  .pe-lg-4 {
    padding-right: 1.5rem !important;
  }

  .pe-lg-5 {
    padding-right: 3rem !important;
  }

  .pe-lg-6 {
    padding-right: 5rem !important;
  }

  .pe-lg-7 {
    padding-right: 7rem !important;
  }

  .pe-lg-8 {
    padding-right: 8rem !important;
  }

  .pe-lg-9 {
    padding-right: 9rem !important;
  }

  .pe-lg-10 {
    padding-right: 10rem !important;
  }

  .pe-lg-11 {
    padding-right: 11rem !important;
  }

  .pe-lg-12 {
    padding-right: 12rem !important;
  }

  .pe-lg-13 {
    padding-right: 13rem !important;
  }

  .pe-lg-14 {
    padding-right: 14rem !important;
  }

  .pe-lg-15 {
    padding-right: 15rem !important;
  }

  .pe-lg-16 {
    padding-right: 16rem !important;
  }

  .pe-lg-17 {
    padding-right: 17rem !important;
  }

  .pe-lg-18 {
    padding-right: 18rem !important;
  }

  .pe-lg-19 {
    padding-right: 19rem !important;
  }

  .pe-lg-20 {
    padding-right: 20rem !important;
  }

  .pe-lg-21 {
    padding-right: 21rem !important;
  }

  .pb-lg-0 {
    padding-bottom: 0 !important;
  }

  .pb-lg-1 {
    padding-bottom: 0.25rem !important;
  }

  .pb-lg-2 {
    padding-bottom: 0.5rem !important;
  }

  .pb-lg-3 {
    padding-bottom: 1rem !important;
  }

  .pb-lg-4 {
    padding-bottom: 1.5rem !important;
  }

  .pb-lg-5 {
    padding-bottom: 3rem !important;
  }

  .pb-lg-6 {
    padding-bottom: 5rem !important;
  }

  .pb-lg-7 {
    padding-bottom: 7rem !important;
  }

  .pb-lg-8 {
    padding-bottom: 8rem !important;
  }

  .pb-lg-9 {
    padding-bottom: 9rem !important;
  }

  .pb-lg-10 {
    padding-bottom: 10rem !important;
  }

  .pb-lg-11 {
    padding-bottom: 11rem !important;
  }

  .pb-lg-12 {
    padding-bottom: 12rem !important;
  }

  .pb-lg-13 {
    padding-bottom: 13rem !important;
  }

  .pb-lg-14 {
    padding-bottom: 14rem !important;
  }

  .pb-lg-15 {
    padding-bottom: 15rem !important;
  }

  .pb-lg-16 {
    padding-bottom: 16rem !important;
  }

  .pb-lg-17 {
    padding-bottom: 17rem !important;
  }

  .pb-lg-18 {
    padding-bottom: 18rem !important;
  }

  .pb-lg-19 {
    padding-bottom: 19rem !important;
  }

  .pb-lg-20 {
    padding-bottom: 20rem !important;
  }

  .pb-lg-21 {
    padding-bottom: 21rem !important;
  }

  .ps-lg-0 {
    padding-left: 0 !important;
  }

  .ps-lg-1 {
    padding-left: 0.25rem !important;
  }

  .ps-lg-2 {
    padding-left: 0.5rem !important;
  }

  .ps-lg-3 {
    padding-left: 1rem !important;
  }

  .ps-lg-4 {
    padding-left: 1.5rem !important;
  }

  .ps-lg-5 {
    padding-left: 3rem !important;
  }

  .ps-lg-6 {
    padding-left: 5rem !important;
  }

  .ps-lg-7 {
    padding-left: 7rem !important;
  }

  .ps-lg-8 {
    padding-left: 8rem !important;
  }

  .ps-lg-9 {
    padding-left: 9rem !important;
  }

  .ps-lg-10 {
    padding-left: 10rem !important;
  }

  .ps-lg-11 {
    padding-left: 11rem !important;
  }

  .ps-lg-12 {
    padding-left: 12rem !important;
  }

  .ps-lg-13 {
    padding-left: 13rem !important;
  }

  .ps-lg-14 {
    padding-left: 14rem !important;
  }

  .ps-lg-15 {
    padding-left: 15rem !important;
  }

  .ps-lg-16 {
    padding-left: 16rem !important;
  }

  .ps-lg-17 {
    padding-left: 17rem !important;
  }

  .ps-lg-18 {
    padding-left: 18rem !important;
  }

  .ps-lg-19 {
    padding-left: 19rem !important;
  }

  .ps-lg-20 {
    padding-left: 20rem !important;
  }

  .ps-lg-21 {
    padding-left: 21rem !important;
  }

  .gap-lg-0 {
    gap: 0 !important;
  }

  .gap-lg-1 {
    gap: 0.25rem !important;
  }

  .gap-lg-2 {
    gap: 0.5rem !important;
  }

  .gap-lg-3 {
    gap: 1rem !important;
  }

  .gap-lg-4 {
    gap: 1.5rem !important;
  }

  .gap-lg-5 {
    gap: 3rem !important;
  }

  .gap-lg-6 {
    gap: 5rem !important;
  }

  .gap-lg-7 {
    gap: 7rem !important;
  }

  .gap-lg-8 {
    gap: 8rem !important;
  }

  .gap-lg-9 {
    gap: 9rem !important;
  }

  .gap-lg-10 {
    gap: 10rem !important;
  }

  .gap-lg-11 {
    gap: 11rem !important;
  }

  .gap-lg-12 {
    gap: 12rem !important;
  }

  .gap-lg-13 {
    gap: 13rem !important;
  }

  .gap-lg-14 {
    gap: 14rem !important;
  }

  .gap-lg-15 {
    gap: 15rem !important;
  }

  .gap-lg-16 {
    gap: 16rem !important;
  }

  .gap-lg-17 {
    gap: 17rem !important;
  }

  .gap-lg-18 {
    gap: 18rem !important;
  }

  .gap-lg-19 {
    gap: 19rem !important;
  }

  .gap-lg-20 {
    gap: 20rem !important;
  }

  .gap-lg-21 {
    gap: 21rem !important;
  }

  .row-gap-lg-0 {
    row-gap: 0 !important;
  }

  .row-gap-lg-1 {
    row-gap: 0.25rem !important;
  }

  .row-gap-lg-2 {
    row-gap: 0.5rem !important;
  }

  .row-gap-lg-3 {
    row-gap: 1rem !important;
  }

  .row-gap-lg-4 {
    row-gap: 1.5rem !important;
  }

  .row-gap-lg-5 {
    row-gap: 3rem !important;
  }

  .row-gap-lg-6 {
    row-gap: 5rem !important;
  }

  .row-gap-lg-7 {
    row-gap: 7rem !important;
  }

  .row-gap-lg-8 {
    row-gap: 8rem !important;
  }

  .row-gap-lg-9 {
    row-gap: 9rem !important;
  }

  .row-gap-lg-10 {
    row-gap: 10rem !important;
  }

  .row-gap-lg-11 {
    row-gap: 11rem !important;
  }

  .row-gap-lg-12 {
    row-gap: 12rem !important;
  }

  .row-gap-lg-13 {
    row-gap: 13rem !important;
  }

  .row-gap-lg-14 {
    row-gap: 14rem !important;
  }

  .row-gap-lg-15 {
    row-gap: 15rem !important;
  }

  .row-gap-lg-16 {
    row-gap: 16rem !important;
  }

  .row-gap-lg-17 {
    row-gap: 17rem !important;
  }

  .row-gap-lg-18 {
    row-gap: 18rem !important;
  }

  .row-gap-lg-19 {
    row-gap: 19rem !important;
  }

  .row-gap-lg-20 {
    row-gap: 20rem !important;
  }

  .row-gap-lg-21 {
    row-gap: 21rem !important;
  }

  .column-gap-lg-0 {
    -webkit-column-gap: 0 !important;
    -moz-column-gap: 0 !important;
    column-gap: 0 !important;
  }

  .column-gap-lg-1 {
    -webkit-column-gap: 0.25rem !important;
    -moz-column-gap: 0.25rem !important;
    column-gap: 0.25rem !important;
  }

  .column-gap-lg-2 {
    -webkit-column-gap: 0.5rem !important;
    -moz-column-gap: 0.5rem !important;
    column-gap: 0.5rem !important;
  }

  .column-gap-lg-3 {
    -webkit-column-gap: 1rem !important;
    -moz-column-gap: 1rem !important;
    column-gap: 1rem !important;
  }

  .column-gap-lg-4 {
    -webkit-column-gap: 1.5rem !important;
    -moz-column-gap: 1.5rem !important;
    column-gap: 1.5rem !important;
  }

  .column-gap-lg-5 {
    -webkit-column-gap: 3rem !important;
    -moz-column-gap: 3rem !important;
    column-gap: 3rem !important;
  }

  .column-gap-lg-6 {
    -webkit-column-gap: 5rem !important;
    -moz-column-gap: 5rem !important;
    column-gap: 5rem !important;
  }

  .column-gap-lg-7 {
    -webkit-column-gap: 7rem !important;
    -moz-column-gap: 7rem !important;
    column-gap: 7rem !important;
  }

  .column-gap-lg-8 {
    -webkit-column-gap: 8rem !important;
    -moz-column-gap: 8rem !important;
    column-gap: 8rem !important;
  }

  .column-gap-lg-9 {
    -webkit-column-gap: 9rem !important;
    -moz-column-gap: 9rem !important;
    column-gap: 9rem !important;
  }

  .column-gap-lg-10 {
    -webkit-column-gap: 10rem !important;
    -moz-column-gap: 10rem !important;
    column-gap: 10rem !important;
  }

  .column-gap-lg-11 {
    -webkit-column-gap: 11rem !important;
    -moz-column-gap: 11rem !important;
    column-gap: 11rem !important;
  }

  .column-gap-lg-12 {
    -webkit-column-gap: 12rem !important;
    -moz-column-gap: 12rem !important;
    column-gap: 12rem !important;
  }

  .column-gap-lg-13 {
    -webkit-column-gap: 13rem !important;
    -moz-column-gap: 13rem !important;
    column-gap: 13rem !important;
  }

  .column-gap-lg-14 {
    -webkit-column-gap: 14rem !important;
    -moz-column-gap: 14rem !important;
    column-gap: 14rem !important;
  }

  .column-gap-lg-15 {
    -webkit-column-gap: 15rem !important;
    -moz-column-gap: 15rem !important;
    column-gap: 15rem !important;
  }

  .column-gap-lg-16 {
    -webkit-column-gap: 16rem !important;
    -moz-column-gap: 16rem !important;
    column-gap: 16rem !important;
  }

  .column-gap-lg-17 {
    -webkit-column-gap: 17rem !important;
    -moz-column-gap: 17rem !important;
    column-gap: 17rem !important;
  }

  .column-gap-lg-18 {
    -webkit-column-gap: 18rem !important;
    -moz-column-gap: 18rem !important;
    column-gap: 18rem !important;
  }

  .column-gap-lg-19 {
    -webkit-column-gap: 19rem !important;
    -moz-column-gap: 19rem !important;
    column-gap: 19rem !important;
  }

  .column-gap-lg-20 {
    -webkit-column-gap: 20rem !important;
    -moz-column-gap: 20rem !important;
    column-gap: 20rem !important;
  }

  .column-gap-lg-21 {
    -webkit-column-gap: 21rem !important;
    -moz-column-gap: 21rem !important;
    column-gap: 21rem !important;
  }

  .text-lg-start {
    text-align: left !important;
  }

  .text-lg-end {
    text-align: right !important;
  }

  .text-lg-center {
    text-align: center !important;
  }
}

@media (min-width: 1400px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1320px;
  }

  .col-xxl {
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 0%;
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
  }

  .row-cols-xxl-auto > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }

  .row-cols-xxl-1 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }

  .row-cols-xxl-2 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 50%;
  }

  .row-cols-xxl-3 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 33.33333333%;
  }

  .row-cols-xxl-4 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 25%;
  }

  .row-cols-xxl-5 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 20%;
  }

  .row-cols-xxl-6 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 16.66666667%;
  }

  .col-xxl-auto {
    width: auto;
  }

  .col-xxl-1,
  .col-xxl-auto {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }

  .col-xxl-1 {
    width: 8.33333333%;
  }

  .col-xxl-2 {
    width: 16.66666667%;
  }

  .col-xxl-2,
  .col-xxl-3 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }

  .col-xxl-3 {
    width: 25%;
  }

  .col-xxl-4 {
    width: 33.33333333%;
  }

  .col-xxl-4,
  .col-xxl-5 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }

  .col-xxl-5 {
    width: 41.66666667%;
  }

  .col-xxl-6 {
    width: 50%;
  }

  .col-xxl-6,
  .col-xxl-7 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }

  .col-xxl-7 {
    width: 58.33333333%;
  }

  .col-xxl-8 {
    width: 66.66666667%;
  }

  .col-xxl-8,
  .col-xxl-9 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }

  .col-xxl-9 {
    width: 75%;
  }

  .col-xxl-10 {
    width: 83.33333333%;
  }

  .col-xxl-10,
  .col-xxl-11 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
  }

  .col-xxl-11 {
    width: 91.66666667%;
  }

  .col-xxl-12 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
  }

  .offset-xxl-0 {
    margin-left: 0;
  }

  .offset-xxl-1 {
    margin-left: 8.33333333%;
  }

  .offset-xxl-2 {
    margin-left: 16.66666667%;
  }

  .offset-xxl-3 {
    margin-left: 25%;
  }

  .offset-xxl-4 {
    margin-left: 33.33333333%;
  }

  .offset-xxl-5 {
    margin-left: 41.66666667%;
  }

  .offset-xxl-6 {
    margin-left: 50%;
  }

  .offset-xxl-7 {
    margin-left: 58.33333333%;
  }

  .offset-xxl-8 {
    margin-left: 66.66666667%;
  }

  .offset-xxl-9 {
    margin-left: 75%;
  }

  .offset-xxl-10 {
    margin-left: 83.33333333%;
  }

  .offset-xxl-11 {
    margin-left: 91.66666667%;
  }

  .g-xxl-0,
  .gx-xxl-0 {
    --bs-gutter-x: 0;
  }

  .g-xxl-0,
  .gy-xxl-0 {
    --bs-gutter-y: 0;
  }

  .g-xxl-1,
  .gx-xxl-1 {
    --bs-gutter-x: 0.25rem;
  }

  .g-xxl-1,
  .gy-xxl-1 {
    --bs-gutter-y: 0.25rem;
  }

  .g-xxl-2,
  .gx-xxl-2 {
    --bs-gutter-x: 0.5rem;
  }

  .g-xxl-2,
  .gy-xxl-2 {
    --bs-gutter-y: 0.5rem;
  }

  .g-xxl-3,
  .gx-xxl-3 {
    --bs-gutter-x: 1rem;
  }

  .g-xxl-3,
  .gy-xxl-3 {
    --bs-gutter-y: 1rem;
  }

  .g-xxl-4,
  .gx-xxl-4 {
    --bs-gutter-x: 1.5rem;
  }

  .g-xxl-4,
  .gy-xxl-4 {
    --bs-gutter-y: 1.5rem;
  }

  .g-xxl-5,
  .gx-xxl-5 {
    --bs-gutter-x: 3rem;
  }

  .g-xxl-5,
  .gy-xxl-5 {
    --bs-gutter-y: 3rem;
  }

  .g-xxl-6,
  .gx-xxl-6 {
    --bs-gutter-x: 3.5rem;
  }

  .g-xxl-6,
  .gy-xxl-6 {
    --bs-gutter-y: 3.5rem;
  }

  .g-xxl-7,
  .gx-xxl-7 {
    --bs-gutter-x: 4rem;
  }

  .g-xxl-7,
  .gy-xxl-7 {
    --bs-gutter-y: 4rem;
  }

  .g-xxl-8,
  .gx-xxl-8 {
    --bs-gutter-x: 4.5rem;
  }

  .g-xxl-8,
  .gy-xxl-8 {
    --bs-gutter-y: 4.5rem;
  }

  .g-xxl-9,
  .gx-xxl-9 {
    --bs-gutter-x: 5rem;
  }

  .g-xxl-9,
  .gy-xxl-9 {
    --bs-gutter-y: 5rem;
  }

  .g-xxl-10,
  .gx-xxl-10 {
    --bs-gutter-x: 5.5rem;
  }

  .g-xxl-10,
  .gy-xxl-10 {
    --bs-gutter-y: 5.5rem;
  }

  .sticky-xxl-top {
    top: 0;
  }

  .sticky-xxl-bottom,
  .sticky-xxl-top {
    position: -webkit-sticky;
    position: sticky;
    z-index: 1020;
  }

  .sticky-xxl-bottom {
    bottom: 0;
  }

  .float-xxl-start {
    float: left !important;
  }

  .float-xxl-end {
    float: right !important;
  }

  .float-xxl-none {
    float: none !important;
  }

  .object-fit-xxl-contain {
    -o-object-fit: contain !important;
    object-fit: contain !important;
  }

  .object-fit-xxl-cover {
    -o-object-fit: cover !important;
    object-fit: cover !important;
  }

  .object-fit-xxl-fill {
    -o-object-fit: fill !important;
    object-fit: fill !important;
  }

  .object-fit-xxl-scale {
    -o-object-fit: scale-down !important;
    object-fit: scale-down !important;
  }

  .object-fit-xxl-none {
    -o-object-fit: none !important;
    object-fit: none !important;
  }

  .d-xxl-inline {
    display: inline !important;
  }

  .d-xxl-inline-block {
    display: inline-block !important;
  }

  .d-xxl-block {
    display: block !important;
  }

  .d-xxl-grid {
    display: grid !important;
  }

  .d-xxl-inline-grid {
    display: inline-grid !important;
  }

  .d-xxl-table {
    display: table !important;
  }

  .d-xxl-table-row {
    display: table-row !important;
  }

  .d-xxl-table-cell {
    display: table-cell !important;
  }

  .d-xxl-flex {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .d-xxl-inline-flex {
    display: -webkit-inline-box !important;
    display: -webkit-inline-flex !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }

  .d-xxl-none {
    display: none !important;
  }

  .w-xxl-10 {
    width: 10% !important;
  }

  .w-xxl-15 {
    width: 15% !important;
  }

  .w-xxl-20 {
    width: 20% !important;
  }

  .w-xxl-25 {
    width: 25% !important;
  }

  .w-xxl-30 {
    width: 30% !important;
  }

  .w-xxl-35 {
    width: 35% !important;
  }

  .w-xxl-40 {
    width: 40% !important;
  }

  .w-xxl-45 {
    width: 45% !important;
  }

  .w-xxl-50 {
    width: 50% !important;
  }

  .w-xxl-55 {
    width: 55% !important;
  }

  .w-xxl-60 {
    width: 60% !important;
  }

  .w-xxl-65 {
    width: 65% !important;
  }

  .w-xxl-70 {
    width: 70% !important;
  }

  .w-xxl-75 {
    width: 75% !important;
  }

  .w-xxl-80 {
    width: 80% !important;
  }

  .w-xxl-85 {
    width: 85% !important;
  }

  .w-xxl-90 {
    width: 90% !important;
  }

  .w-xxl-95 {
    width: 95% !important;
  }

  .w-xxl-100 {
    width: 100% !important;
  }

  .w-xxl-auto {
    width: auto !important;
  }

  .flex-xxl-fill {
    -webkit-box-flex: 1 !important;
    -webkit-flex: 1 1 auto !important;
    -ms-flex: 1 1 auto !important;
    flex: 1 1 auto !important;
  }

  .flex-xxl-row {
    -webkit-box-orient: horizontal !important;
    -webkit-flex-direction: row !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }

  .flex-xxl-column,
  .flex-xxl-row {
    -webkit-box-direction: normal !important;
  }

  .flex-xxl-column {
    -webkit-box-orient: vertical !important;
    -webkit-flex-direction: column !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }

  .flex-xxl-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -webkit-flex-direction: row-reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }

  .flex-xxl-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -webkit-flex-direction: column-reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }

  .flex-xxl-grow-0 {
    -webkit-box-flex: 0 !important;
    -ms-flex-positive: 0 !important;
    -webkit-flex-grow: 0 !important;
    flex-grow: 0 !important;
  }

  .flex-xxl-grow-1 {
    -webkit-box-flex: 1 !important;
    -ms-flex-positive: 1 !important;
    -webkit-flex-grow: 1 !important;
    flex-grow: 1 !important;
  }

  .flex-xxl-shrink-0 {
    -ms-flex-negative: 0 !important;
    -webkit-flex-shrink: 0 !important;
    flex-shrink: 0 !important;
  }

  .flex-xxl-shrink-1 {
    -ms-flex-negative: 1 !important;
    -webkit-flex-shrink: 1 !important;
    flex-shrink: 1 !important;
  }

  .flex-xxl-wrap {
    -webkit-flex-wrap: wrap !important;
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }

  .flex-xxl-nowrap {
    -webkit-flex-wrap: nowrap !important;
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }

  .flex-xxl-wrap-reverse {
    -webkit-flex-wrap: wrap-reverse !important;
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }

  .justify-content-xxl-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    -webkit-justify-content: flex-start !important;
    justify-content: flex-start !important;
  }

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

  .justify-content-xxl-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    -webkit-justify-content: center !important;
    justify-content: center !important;
  }

  .justify-content-xxl-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    -webkit-justify-content: space-between !important;
    justify-content: space-between !important;
  }

  .justify-content-xxl-around {
    -ms-flex-pack: distribute !important;
    -webkit-justify-content: space-around !important;
    justify-content: space-around !important;
  }

  .justify-content-xxl-evenly {
    -webkit-box-pack: space-evenly !important;
    -ms-flex-pack: space-evenly !important;
    -webkit-justify-content: space-evenly !important;
    justify-content: space-evenly !important;
  }

  .align-items-xxl-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    -webkit-align-items: flex-start !important;
    align-items: flex-start !important;
  }

  .align-items-xxl-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    -webkit-align-items: flex-end !important;
    align-items: flex-end !important;
  }

  .align-items-xxl-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    -webkit-align-items: center !important;
    align-items: center !important;
  }

  .align-items-xxl-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    -webkit-align-items: baseline !important;
    align-items: baseline !important;
  }

  .align-items-xxl-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    -webkit-align-items: stretch !important;
    align-items: stretch !important;
  }

  .align-content-xxl-start {
    -ms-flex-line-pack: start !important;
    -webkit-align-content: flex-start !important;
    align-content: flex-start !important;
  }

  .align-content-xxl-end {
    -ms-flex-line-pack: end !important;
    -webkit-align-content: flex-end !important;
    align-content: flex-end !important;
  }

  .align-content-xxl-center {
    -ms-flex-line-pack: center !important;
    -webkit-align-content: center !important;
    align-content: center !important;
  }

  .align-content-xxl-between {
    -ms-flex-line-pack: justify !important;
    -webkit-align-content: space-between !important;
    align-content: space-between !important;
  }

  .align-content-xxl-around {
    -ms-flex-line-pack: distribute !important;
    -webkit-align-content: space-around !important;
    align-content: space-around !important;
  }

  .align-content-xxl-stretch {
    -ms-flex-line-pack: stretch !important;
    -webkit-align-content: stretch !important;
    align-content: stretch !important;
  }

  .align-self-xxl-auto {
    -ms-flex-item-align: auto !important;
    -webkit-align-self: auto !important;
    align-self: auto !important;
  }

  .align-self-xxl-start {
    -ms-flex-item-align: start !important;
    -webkit-align-self: flex-start !important;
    align-self: flex-start !important;
  }

  .align-self-xxl-end {
    -ms-flex-item-align: end !important;
    -webkit-align-self: flex-end !important;
    align-self: flex-end !important;
  }

  .align-self-xxl-center {
    -ms-flex-item-align: center !important;
    -webkit-align-self: center !important;
    align-self: center !important;
  }

  .align-self-xxl-baseline {
    -ms-flex-item-align: baseline !important;
    -webkit-align-self: baseline !important;
    align-self: baseline !important;
  }

  .align-self-xxl-stretch {
    -ms-flex-item-align: stretch !important;
    -webkit-align-self: stretch !important;
    align-self: stretch !important;
  }

  .order-xxl-first {
    -webkit-box-ordinal-group: 0 !important;
    -ms-flex-order: -1 !important;
    -webkit-order: -1 !important;
    order: -1 !important;
  }

  .order-xxl-0 {
    -webkit-box-ordinal-group: 1 !important;
    -ms-flex-order: 0 !important;
    -webkit-order: 0 !important;
    order: 0 !important;
  }

  .order-xxl-1 {
    -webkit-box-ordinal-group: 2 !important;
    -ms-flex-order: 1 !important;
    -webkit-order: 1 !important;
    order: 1 !important;
  }

  .order-xxl-2 {
    -webkit-box-ordinal-group: 3 !important;
    -ms-flex-order: 2 !important;
    -webkit-order: 2 !important;
    order: 2 !important;
  }

  .order-xxl-3 {
    -webkit-box-ordinal-group: 4 !important;
    -ms-flex-order: 3 !important;
    -webkit-order: 3 !important;
    order: 3 !important;
  }

  .order-xxl-4 {
    -webkit-box-ordinal-group: 5 !important;
    -ms-flex-order: 4 !important;
    -webkit-order: 4 !important;
    order: 4 !important;
  }

  .order-xxl-5 {
    -webkit-box-ordinal-group: 6 !important;
    -ms-flex-order: 5 !important;
    -webkit-order: 5 !important;
    order: 5 !important;
  }

  .order-xxl-6 {
    -webkit-box-ordinal-group: 7 !important;
    -ms-flex-order: 6 !important;
    -webkit-order: 6 !important;
    order: 6 !important;
  }

  .order-xxl-7 {
    -webkit-box-ordinal-group: 8 !important;
    -ms-flex-order: 7 !important;
    -webkit-order: 7 !important;
    order: 7 !important;
  }

  .order-xxl-8 {
    -webkit-box-ordinal-group: 9 !important;
    -ms-flex-order: 8 !important;
    -webkit-order: 8 !important;
    order: 8 !important;
  }

  .order-xxl-9 {
    -webkit-box-ordinal-group: 10 !important;
    -ms-flex-order: 9 !important;
    -webkit-order: 9 !important;
    order: 9 !important;
  }

  .order-xxl-10 {
    -webkit-box-ordinal-group: 11 !important;
    -ms-flex-order: 10 !important;
    -webkit-order: 10 !important;
    order: 10 !important;
  }

  .order-xxl-11 {
    -webkit-box-ordinal-group: 12 !important;
    -ms-flex-order: 11 !important;
    -webkit-order: 11 !important;
    order: 11 !important;
  }

  .order-xxl-last {
    -webkit-box-ordinal-group: 13 !important;
    -ms-flex-order: 12 !important;
    -webkit-order: 12 !important;
    order: 12 !important;
  }

  .m-xxl-0 {
    margin: 0 !important;
  }

  .m-xxl-1 {
    margin: 0.25rem !important;
  }

  .m-xxl-2 {
    margin: 0.5rem !important;
  }

  .m-xxl-3 {
    margin: 1rem !important;
  }

  .m-xxl-4 {
    margin: 1.5rem !important;
  }

  .m-xxl-5 {
    margin: 3rem !important;
  }

  .m-xxl-6 {
    margin: 5rem !important;
  }

  .m-xxl-7 {
    margin: 7rem !important;
  }

  .m-xxl-8 {
    margin: 8rem !important;
  }

  .m-xxl-9 {
    margin: 9rem !important;
  }

  .m-xxl-10 {
    margin: 10rem !important;
  }

  .m-xxl-11 {
    margin: 11rem !important;
  }

  .m-xxl-12 {
    margin: 12rem !important;
  }

  .m-xxl-13 {
    margin: 13rem !important;
  }

  .m-xxl-14 {
    margin: 14rem !important;
  }

  .m-xxl-15 {
    margin: 15rem !important;
  }

  .m-xxl-16 {
    margin: 16rem !important;
  }

  .m-xxl-17 {
    margin: 17rem !important;
  }

  .m-xxl-18 {
    margin: 18rem !important;
  }

  .m-xxl-19 {
    margin: 19rem !important;
  }

  .m-xxl-20 {
    margin: 20rem !important;
  }

  .m-xxl-21 {
    margin: 21rem !important;
  }

  .m-xxl-auto {
    margin: auto !important;
  }

  .mx-xxl-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .mx-xxl-1 {
    margin-left: 0.25rem !important;
    margin-right: 0.25rem !important;
  }

  .mx-xxl-2 {
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
  }

  .mx-xxl-3 {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }

  .mx-xxl-4 {
    margin-left: 1.5rem !important;
    margin-right: 1.5rem !important;
  }

  .mx-xxl-5 {
    margin-left: 3rem !important;
    margin-right: 3rem !important;
  }

  .mx-xxl-6 {
    margin-left: 5rem !important;
    margin-right: 5rem !important;
  }

  .mx-xxl-7 {
    margin-left: 7rem !important;
    margin-right: 7rem !important;
  }

  .mx-xxl-8 {
    margin-left: 8rem !important;
    margin-right: 8rem !important;
  }

  .mx-xxl-9 {
    margin-left: 9rem !important;
    margin-right: 9rem !important;
  }

  .mx-xxl-10 {
    margin-left: 10rem !important;
    margin-right: 10rem !important;
  }

  .mx-xxl-11 {
    margin-left: 11rem !important;
    margin-right: 11rem !important;
  }

  .mx-xxl-12 {
    margin-left: 12rem !important;
    margin-right: 12rem !important;
  }

  .mx-xxl-13 {
    margin-left: 13rem !important;
    margin-right: 13rem !important;
  }

  .mx-xxl-14 {
    margin-left: 14rem !important;
    margin-right: 14rem !important;
  }

  .mx-xxl-15 {
    margin-left: 15rem !important;
    margin-right: 15rem !important;
  }

  .mx-xxl-16 {
    margin-left: 16rem !important;
    margin-right: 16rem !important;
  }

  .mx-xxl-17 {
    margin-left: 17rem !important;
    margin-right: 17rem !important;
  }

  .mx-xxl-18 {
    margin-left: 18rem !important;
    margin-right: 18rem !important;
  }

  .mx-xxl-19 {
    margin-left: 19rem !important;
    margin-right: 19rem !important;
  }

  .mx-xxl-20 {
    margin-left: 20rem !important;
    margin-right: 20rem !important;
  }

  .mx-xxl-21 {
    margin-left: 21rem !important;
    margin-right: 21rem !important;
  }

  .mx-xxl-auto {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .my-xxl-0 {
    margin-bottom: 0 !important;
    margin-top: 0 !important;
  }

  .my-xxl-1 {
    margin-bottom: 0.25rem !important;
    margin-top: 0.25rem !important;
  }

  .my-xxl-2 {
    margin-bottom: 0.5rem !important;
    margin-top: 0.5rem !important;
  }

  .my-xxl-3 {
    margin-bottom: 1rem !important;
    margin-top: 1rem !important;
  }

  .my-xxl-4 {
    margin-bottom: 1.5rem !important;
    margin-top: 1.5rem !important;
  }

  .my-xxl-5 {
    margin-bottom: 3rem !important;
    margin-top: 3rem !important;
  }

  .my-xxl-6 {
    margin-bottom: 5rem !important;
    margin-top: 5rem !important;
  }

  .my-xxl-7 {
    margin-bottom: 7rem !important;
    margin-top: 7rem !important;
  }

  .my-xxl-8 {
    margin-bottom: 8rem !important;
    margin-top: 8rem !important;
  }

  .my-xxl-9 {
    margin-bottom: 9rem !important;
    margin-top: 9rem !important;
  }

  .my-xxl-10 {
    margin-bottom: 10rem !important;
    margin-top: 10rem !important;
  }

  .my-xxl-11 {
    margin-bottom: 11rem !important;
    margin-top: 11rem !important;
  }

  .my-xxl-12 {
    margin-bottom: 12rem !important;
    margin-top: 12rem !important;
  }

  .my-xxl-13 {
    margin-bottom: 13rem !important;
    margin-top: 13rem !important;
  }

  .my-xxl-14 {
    margin-bottom: 14rem !important;
    margin-top: 14rem !important;
  }

  .my-xxl-15 {
    margin-bottom: 15rem !important;
    margin-top: 15rem !important;
  }

  .my-xxl-16 {
    margin-bottom: 16rem !important;
    margin-top: 16rem !important;
  }

  .my-xxl-17 {
    margin-bottom: 17rem !important;
    margin-top: 17rem !important;
  }

  .my-xxl-18 {
    margin-bottom: 18rem !important;
    margin-top: 18rem !important;
  }

  .my-xxl-19 {
    margin-bottom: 19rem !important;
    margin-top: 19rem !important;
  }

  .my-xxl-20 {
    margin-bottom: 20rem !important;
    margin-top: 20rem !important;
  }

  .my-xxl-21 {
    margin-bottom: 21rem !important;
    margin-top: 21rem !important;
  }

  .my-xxl-auto {
    margin-bottom: auto !important;
    margin-top: auto !important;
  }

  .mt-xxl-0 {
    margin-top: 0 !important;
  }

  .mt-xxl-1 {
    margin-top: 0.25rem !important;
  }

  .mt-xxl-2 {
    margin-top: 0.5rem !important;
  }

  .mt-xxl-3 {
    margin-top: 1rem !important;
  }

  .mt-xxl-4 {
    margin-top: 1.5rem !important;
  }

  .mt-xxl-5 {
    margin-top: 3rem !important;
  }

  .mt-xxl-6 {
    margin-top: 5rem !important;
  }

  .mt-xxl-7 {
    margin-top: 7rem !important;
  }

  .mt-xxl-8 {
    margin-top: 8rem !important;
  }

  .mt-xxl-9 {
    margin-top: 9rem !important;
  }

  .mt-xxl-10 {
    margin-top: 10rem !important;
  }

  .mt-xxl-11 {
    margin-top: 11rem !important;
  }

  .mt-xxl-12 {
    margin-top: 12rem !important;
  }

  .mt-xxl-13 {
    margin-top: 13rem !important;
  }

  .mt-xxl-14 {
    margin-top: 14rem !important;
  }

  .mt-xxl-15 {
    margin-top: 15rem !important;
  }

  .mt-xxl-16 {
    margin-top: 16rem !important;
  }

  .mt-xxl-17 {
    margin-top: 17rem !important;
  }

  .mt-xxl-18 {
    margin-top: 18rem !important;
  }

  .mt-xxl-19 {
    margin-top: 19rem !important;
  }

  .mt-xxl-20 {
    margin-top: 20rem !important;
  }

  .mt-xxl-21 {
    margin-top: 21rem !important;
  }

  .mt-xxl-auto {
    margin-top: auto !important;
  }

  .me-xxl-0 {
    margin-right: 0 !important;
  }

  .me-xxl-1 {
    margin-right: 0.25rem !important;
  }

  .me-xxl-2 {
    margin-right: 0.5rem !important;
  }

  .me-xxl-3 {
    margin-right: 1rem !important;
  }

  .me-xxl-4 {
    margin-right: 1.5rem !important;
  }

  .me-xxl-5 {
    margin-right: 3rem !important;
  }

  .me-xxl-6 {
    margin-right: 5rem !important;
  }

  .me-xxl-7 {
    margin-right: 7rem !important;
  }

  .me-xxl-8 {
    margin-right: 8rem !important;
  }

  .me-xxl-9 {
    margin-right: 9rem !important;
  }

  .me-xxl-10 {
    margin-right: 10rem !important;
  }

  .me-xxl-11 {
    margin-right: 11rem !important;
  }

  .me-xxl-12 {
    margin-right: 12rem !important;
  }

  .me-xxl-13 {
    margin-right: 13rem !important;
  }

  .me-xxl-14 {
    margin-right: 14rem !important;
  }

  .me-xxl-15 {
    margin-right: 15rem !important;
  }

  .me-xxl-16 {
    margin-right: 16rem !important;
  }

  .me-xxl-17 {
    margin-right: 17rem !important;
  }

  .me-xxl-18 {
    margin-right: 18rem !important;
  }

  .me-xxl-19 {
    margin-right: 19rem !important;
  }

  .me-xxl-20 {
    margin-right: 20rem !important;
  }

  .me-xxl-21 {
    margin-right: 21rem !important;
  }

  .me-xxl-auto {
    margin-right: auto !important;
  }

  .mb-xxl-0 {
    margin-bottom: 0 !important;
  }

  .mb-xxl-1 {
    margin-bottom: 0.25rem !important;
  }

  .mb-xxl-2 {
    margin-bottom: 0.5rem !important;
  }

  .mb-xxl-3 {
    margin-bottom: 1rem !important;
  }

  .mb-xxl-4 {
    margin-bottom: 1.5rem !important;
  }

  .mb-xxl-5 {
    margin-bottom: 3rem !important;
  }

  .mb-xxl-6 {
    margin-bottom: 5rem !important;
  }

  .mb-xxl-7 {
    margin-bottom: 7rem !important;
  }

  .mb-xxl-8 {
    margin-bottom: 8rem !important;
  }

  .mb-xxl-9 {
    margin-bottom: 9rem !important;
  }

  .mb-xxl-10 {
    margin-bottom: 10rem !important;
  }

  .mb-xxl-11 {
    margin-bottom: 11rem !important;
  }

  .mb-xxl-12 {
    margin-bottom: 12rem !important;
  }

  .mb-xxl-13 {
    margin-bottom: 13rem !important;
  }

  .mb-xxl-14 {
    margin-bottom: 14rem !important;
  }

  .mb-xxl-15 {
    margin-bottom: 15rem !important;
  }

  .mb-xxl-16 {
    margin-bottom: 16rem !important;
  }

  .mb-xxl-17 {
    margin-bottom: 17rem !important;
  }

  .mb-xxl-18 {
    margin-bottom: 18rem !important;
  }

  .mb-xxl-19 {
    margin-bottom: 19rem !important;
  }

  .mb-xxl-20 {
    margin-bottom: 20rem !important;
  }

  .mb-xxl-21 {
    margin-bottom: 21rem !important;
  }

  .mb-xxl-auto {
    margin-bottom: auto !important;
  }

  .ms-xxl-0 {
    margin-left: 0 !important;
  }

  .ms-xxl-1 {
    margin-left: 0.25rem !important;
  }

  .ms-xxl-2 {
    margin-left: 0.5rem !important;
  }

  .ms-xxl-3 {
    margin-left: 1rem !important;
  }

  .ms-xxl-4 {
    margin-left: 1.5rem !important;
  }

  .ms-xxl-5 {
    margin-left: 3rem !important;
  }

  .ms-xxl-6 {
    margin-left: 5rem !important;
  }

  .ms-xxl-7 {
    margin-left: 7rem !important;
  }

  .ms-xxl-8 {
    margin-left: 8rem !important;
  }

  .ms-xxl-9 {
    margin-left: 9rem !important;
  }

  .ms-xxl-10 {
    margin-left: 10rem !important;
  }

  .ms-xxl-11 {
    margin-left: 11rem !important;
  }

  .ms-xxl-12 {
    margin-left: 12rem !important;
  }

  .ms-xxl-13 {
    margin-left: 13rem !important;
  }

  .ms-xxl-14 {
    margin-left: 14rem !important;
  }

  .ms-xxl-15 {
    margin-left: 15rem !important;
  }

  .ms-xxl-16 {
    margin-left: 16rem !important;
  }

  .ms-xxl-17 {
    margin-left: 17rem !important;
  }

  .ms-xxl-18 {
    margin-left: 18rem !important;
  }

  .ms-xxl-19 {
    margin-left: 19rem !important;
  }

  .ms-xxl-20 {
    margin-left: 20rem !important;
  }

  .ms-xxl-21 {
    margin-left: 21rem !important;
  }

  .ms-xxl-auto {
    margin-left: auto !important;
  }

  .m-xxl-n1 {
    margin: -0.25rem !important;
  }

  .m-xxl-n2 {
    margin: -0.5rem !important;
  }

  .m-xxl-n3 {
    margin: -1rem !important;
  }

  .m-xxl-n4 {
    margin: -1.5rem !important;
  }

  .m-xxl-n5 {
    margin: -3rem !important;
  }

  .m-xxl-n6 {
    margin: -5rem !important;
  }

  .m-xxl-n7 {
    margin: -7rem !important;
  }

  .m-xxl-n8 {
    margin: -8rem !important;
  }

  .m-xxl-n9 {
    margin: -9rem !important;
  }

  .m-xxl-n10 {
    margin: -10rem !important;
  }

  .m-xxl-n11 {
    margin: -11rem !important;
  }

  .m-xxl-n12 {
    margin: -12rem !important;
  }

  .m-xxl-n13 {
    margin: -13rem !important;
  }

  .m-xxl-n14 {
    margin: -14rem !important;
  }

  .m-xxl-n15 {
    margin: -15rem !important;
  }

  .m-xxl-n16 {
    margin: -16rem !important;
  }

  .m-xxl-n17 {
    margin: -17rem !important;
  }

  .m-xxl-n18 {
    margin: -18rem !important;
  }

  .m-xxl-n19 {
    margin: -19rem !important;
  }

  .m-xxl-n20 {
    margin: -20rem !important;
  }

  .m-xxl-n21 {
    margin: -21rem !important;
  }

  .mx-xxl-n1 {
    margin-left: -0.25rem !important;
    margin-right: -0.25rem !important;
  }

  .mx-xxl-n2 {
    margin-left: -0.5rem !important;
    margin-right: -0.5rem !important;
  }

  .mx-xxl-n3 {
    margin-left: -1rem !important;
    margin-right: -1rem !important;
  }

  .mx-xxl-n4 {
    margin-left: -1.5rem !important;
    margin-right: -1.5rem !important;
  }

  .mx-xxl-n5 {
    margin-left: -3rem !important;
    margin-right: -3rem !important;
  }

  .mx-xxl-n6 {
    margin-left: -5rem !important;
    margin-right: -5rem !important;
  }

  .mx-xxl-n7 {
    margin-left: -7rem !important;
    margin-right: -7rem !important;
  }

  .mx-xxl-n8 {
    margin-left: -8rem !important;
    margin-right: -8rem !important;
  }

  .mx-xxl-n9 {
    margin-left: -9rem !important;
    margin-right: -9rem !important;
  }

  .mx-xxl-n10 {
    margin-left: -10rem !important;
    margin-right: -10rem !important;
  }

  .mx-xxl-n11 {
    margin-left: -11rem !important;
    margin-right: -11rem !important;
  }

  .mx-xxl-n12 {
    margin-left: -12rem !important;
    margin-right: -12rem !important;
  }

  .mx-xxl-n13 {
    margin-left: -13rem !important;
    margin-right: -13rem !important;
  }

  .mx-xxl-n14 {
    margin-left: -14rem !important;
    margin-right: -14rem !important;
  }

  .mx-xxl-n15 {
    margin-left: -15rem !important;
    margin-right: -15rem !important;
  }

  .mx-xxl-n16 {
    margin-left: -16rem !important;
    margin-right: -16rem !important;
  }

  .mx-xxl-n17 {
    margin-left: -17rem !important;
    margin-right: -17rem !important;
  }

  .mx-xxl-n18 {
    margin-left: -18rem !important;
    margin-right: -18rem !important;
  }

  .mx-xxl-n19 {
    margin-left: -19rem !important;
    margin-right: -19rem !important;
  }

  .mx-xxl-n20 {
    margin-left: -20rem !important;
    margin-right: -20rem !important;
  }

  .mx-xxl-n21 {
    margin-left: -21rem !important;
    margin-right: -21rem !important;
  }

  .my-xxl-n1 {
    margin-bottom: -0.25rem !important;
    margin-top: -0.25rem !important;
  }

  .my-xxl-n2 {
    margin-bottom: -0.5rem !important;
    margin-top: -0.5rem !important;
  }

  .my-xxl-n3 {
    margin-bottom: -1rem !important;
    margin-top: -1rem !important;
  }

  .my-xxl-n4 {
    margin-bottom: -1.5rem !important;
    margin-top: -1.5rem !important;
  }

  .my-xxl-n5 {
    margin-bottom: -3rem !important;
    margin-top: -3rem !important;
  }

  .my-xxl-n6 {
    margin-bottom: -5rem !important;
    margin-top: -5rem !important;
  }

  .my-xxl-n7 {
    margin-bottom: -7rem !important;
    margin-top: -7rem !important;
  }

  .my-xxl-n8 {
    margin-bottom: -8rem !important;
    margin-top: -8rem !important;
  }

  .my-xxl-n9 {
    margin-bottom: -9rem !important;
    margin-top: -9rem !important;
  }

  .my-xxl-n10 {
    margin-bottom: -10rem !important;
    margin-top: -10rem !important;
  }

  .my-xxl-n11 {
    margin-bottom: -11rem !important;
    margin-top: -11rem !important;
  }

  .my-xxl-n12 {
    margin-bottom: -12rem !important;
    margin-top: -12rem !important;
  }

  .my-xxl-n13 {
    margin-bottom: -13rem !important;
    margin-top: -13rem !important;
  }

  .my-xxl-n14 {
    margin-bottom: -14rem !important;
    margin-top: -14rem !important;
  }

  .my-xxl-n15 {
    margin-bottom: -15rem !important;
    margin-top: -15rem !important;
  }

  .my-xxl-n16 {
    margin-bottom: -16rem !important;
    margin-top: -16rem !important;
  }

  .my-xxl-n17 {
    margin-bottom: -17rem !important;
    margin-top: -17rem !important;
  }

  .my-xxl-n18 {
    margin-bottom: -18rem !important;
    margin-top: -18rem !important;
  }

  .my-xxl-n19 {
    margin-bottom: -19rem !important;
    margin-top: -19rem !important;
  }

  .my-xxl-n20 {
    margin-bottom: -20rem !important;
    margin-top: -20rem !important;
  }

  .my-xxl-n21 {
    margin-bottom: -21rem !important;
    margin-top: -21rem !important;
  }

  .mt-xxl-n1 {
    margin-top: -0.25rem !important;
  }

  .mt-xxl-n2 {
    margin-top: -0.5rem !important;
  }

  .mt-xxl-n3 {
    margin-top: -1rem !important;
  }

  .mt-xxl-n4 {
    margin-top: -1.5rem !important;
  }

  .mt-xxl-n5 {
    margin-top: -3rem !important;
  }

  .mt-xxl-n6 {
    margin-top: -5rem !important;
  }

  .mt-xxl-n7 {
    margin-top: -7rem !important;
  }

  .mt-xxl-n8 {
    margin-top: -8rem !important;
  }

  .mt-xxl-n9 {
    margin-top: -9rem !important;
  }

  .mt-xxl-n10 {
    margin-top: -10rem !important;
  }

  .mt-xxl-n11 {
    margin-top: -11rem !important;
  }

  .mt-xxl-n12 {
    margin-top: -12rem !important;
  }

  .mt-xxl-n13 {
    margin-top: -13rem !important;
  }

  .mt-xxl-n14 {
    margin-top: -14rem !important;
  }

  .mt-xxl-n15 {
    margin-top: -15rem !important;
  }

  .mt-xxl-n16 {
    margin-top: -16rem !important;
  }

  .mt-xxl-n17 {
    margin-top: -17rem !important;
  }

  .mt-xxl-n18 {
    margin-top: -18rem !important;
  }

  .mt-xxl-n19 {
    margin-top: -19rem !important;
  }

  .mt-xxl-n20 {
    margin-top: -20rem !important;
  }

  .mt-xxl-n21 {
    margin-top: -21rem !important;
  }

  .me-xxl-n1 {
    margin-right: -0.25rem !important;
  }

  .me-xxl-n2 {
    margin-right: -0.5rem !important;
  }

  .me-xxl-n3 {
    margin-right: -1rem !important;
  }

  .me-xxl-n4 {
    margin-right: -1.5rem !important;
  }

  .me-xxl-n5 {
    margin-right: -3rem !important;
  }

  .me-xxl-n6 {
    margin-right: -5rem !important;
  }

  .me-xxl-n7 {
    margin-right: -7rem !important;
  }

  .me-xxl-n8 {
    margin-right: -8rem !important;
  }

  .me-xxl-n9 {
    margin-right: -9rem !important;
  }

  .me-xxl-n10 {
    margin-right: -10rem !important;
  }

  .me-xxl-n11 {
    margin-right: -11rem !important;
  }

  .me-xxl-n12 {
    margin-right: -12rem !important;
  }

  .me-xxl-n13 {
    margin-right: -13rem !important;
  }

  .me-xxl-n14 {
    margin-right: -14rem !important;
  }

  .me-xxl-n15 {
    margin-right: -15rem !important;
  }

  .me-xxl-n16 {
    margin-right: -16rem !important;
  }

  .me-xxl-n17 {
    margin-right: -17rem !important;
  }

  .me-xxl-n18 {
    margin-right: -18rem !important;
  }

  .me-xxl-n19 {
    margin-right: -19rem !important;
  }

  .me-xxl-n20 {
    margin-right: -20rem !important;
  }

  .me-xxl-n21 {
    margin-right: -21rem !important;
  }

  .mb-xxl-n1 {
    margin-bottom: -0.25rem !important;
  }

  .mb-xxl-n2 {
    margin-bottom: -0.5rem !important;
  }

  .mb-xxl-n3 {
    margin-bottom: -1rem !important;
  }

  .mb-xxl-n4 {
    margin-bottom: -1.5rem !important;
  }

  .mb-xxl-n5 {
    margin-bottom: -3rem !important;
  }

  .mb-xxl-n6 {
    margin-bottom: -5rem !important;
  }

  .mb-xxl-n7 {
    margin-bottom: -7rem !important;
  }

  .mb-xxl-n8 {
    margin-bottom: -8rem !important;
  }

  .mb-xxl-n9 {
    margin-bottom: -9rem !important;
  }

  .mb-xxl-n10 {
    margin-bottom: -10rem !important;
  }

  .mb-xxl-n11 {
    margin-bottom: -11rem !important;
  }

  .mb-xxl-n12 {
    margin-bottom: -12rem !important;
  }

  .mb-xxl-n13 {
    margin-bottom: -13rem !important;
  }

  .mb-xxl-n14 {
    margin-bottom: -14rem !important;
  }

  .mb-xxl-n15 {
    margin-bottom: -15rem !important;
  }

  .mb-xxl-n16 {
    margin-bottom: -16rem !important;
  }

  .mb-xxl-n17 {
    margin-bottom: -17rem !important;
  }

  .mb-xxl-n18 {
    margin-bottom: -18rem !important;
  }

  .mb-xxl-n19 {
    margin-bottom: -19rem !important;
  }

  .mb-xxl-n20 {
    margin-bottom: -20rem !important;
  }

  .mb-xxl-n21 {
    margin-bottom: -21rem !important;
  }

  .ms-xxl-n1 {
    margin-left: -0.25rem !important;
  }

  .ms-xxl-n2 {
    margin-left: -0.5rem !important;
  }

  .ms-xxl-n3 {
    margin-left: -1rem !important;
  }

  .ms-xxl-n4 {
    margin-left: -1.5rem !important;
  }

  .ms-xxl-n5 {
    margin-left: -3rem !important;
  }

  .ms-xxl-n6 {
    margin-left: -5rem !important;
  }

  .ms-xxl-n7 {
    margin-left: -7rem !important;
  }

  .ms-xxl-n8 {
    margin-left: -8rem !important;
  }

  .ms-xxl-n9 {
    margin-left: -9rem !important;
  }

  .ms-xxl-n10 {
    margin-left: -10rem !important;
  }

  .ms-xxl-n11 {
    margin-left: -11rem !important;
  }

  .ms-xxl-n12 {
    margin-left: -12rem !important;
  }

  .ms-xxl-n13 {
    margin-left: -13rem !important;
  }

  .ms-xxl-n14 {
    margin-left: -14rem !important;
  }

  .ms-xxl-n15 {
    margin-left: -15rem !important;
  }

  .ms-xxl-n16 {
    margin-left: -16rem !important;
  }

  .ms-xxl-n17 {
    margin-left: -17rem !important;
  }

  .ms-xxl-n18 {
    margin-left: -18rem !important;
  }

  .ms-xxl-n19 {
    margin-left: -19rem !important;
  }

  .ms-xxl-n20 {
    margin-left: -20rem !important;
  }

  .ms-xxl-n21 {
    margin-left: -21rem !important;
  }

  .p-xxl-0 {
    padding: 0 !important;
  }

  .p-xxl-1 {
    padding: 0.25rem !important;
  }

  .p-xxl-2 {
    padding: 0.5rem !important;
  }

  .p-xxl-3 {
    padding: 1rem !important;
  }

  .p-xxl-4 {
    padding: 1.5rem !important;
  }

  .p-xxl-5 {
    padding: 3rem !important;
  }

  .p-xxl-6 {
    padding: 5rem !important;
  }

  .p-xxl-7 {
    padding: 7rem !important;
  }

  .p-xxl-8 {
    padding: 8rem !important;
  }

  .p-xxl-9 {
    padding: 9rem !important;
  }

  .p-xxl-10 {
    padding: 10rem !important;
  }

  .p-xxl-11 {
    padding: 11rem !important;
  }

  .p-xxl-12 {
    padding: 12rem !important;
  }

  .p-xxl-13 {
    padding: 13rem !important;
  }

  .p-xxl-14 {
    padding: 14rem !important;
  }

  .p-xxl-15 {
    padding: 15rem !important;
  }

  .p-xxl-16 {
    padding: 16rem !important;
  }

  .p-xxl-17 {
    padding: 17rem !important;
  }

  .p-xxl-18 {
    padding: 18rem !important;
  }

  .p-xxl-19 {
    padding: 19rem !important;
  }

  .p-xxl-20 {
    padding: 20rem !important;
  }

  .p-xxl-21 {
    padding: 21rem !important;
  }

  .px-xxl-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .px-xxl-1 {
    padding-left: 0.25rem !important;
    padding-right: 0.25rem !important;
  }

  .px-xxl-2 {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }

  .px-xxl-3 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .px-xxl-4 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }

  .px-xxl-5 {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
  }

  .px-xxl-6 {
    padding-left: 5rem !important;
    padding-right: 5rem !important;
  }

  .px-xxl-7 {
    padding-left: 7rem !important;
    padding-right: 7rem !important;
  }

  .px-xxl-8 {
    padding-left: 8rem !important;
    padding-right: 8rem !important;
  }

  .px-xxl-9 {
    padding-left: 9rem !important;
    padding-right: 9rem !important;
  }

  .px-xxl-10 {
    padding-left: 10rem !important;
    padding-right: 10rem !important;
  }

  .px-xxl-11 {
    padding-left: 11rem !important;
    padding-right: 11rem !important;
  }

  .px-xxl-12 {
    padding-left: 12rem !important;
    padding-right: 12rem !important;
  }

  .px-xxl-13 {
    padding-left: 13rem !important;
    padding-right: 13rem !important;
  }

  .px-xxl-14 {
    padding-left: 14rem !important;
    padding-right: 14rem !important;
  }

  .px-xxl-15 {
    padding-left: 15rem !important;
    padding-right: 15rem !important;
  }

  .px-xxl-16 {
    padding-left: 16rem !important;
    padding-right: 16rem !important;
  }

  .px-xxl-17 {
    padding-left: 17rem !important;
    padding-right: 17rem !important;
  }

  .px-xxl-18 {
    padding-left: 18rem !important;
    padding-right: 18rem !important;
  }

  .px-xxl-19 {
    padding-left: 19rem !important;
    padding-right: 19rem !important;
  }

  .px-xxl-20 {
    padding-left: 20rem !important;
    padding-right: 20rem !important;
  }

  .px-xxl-21 {
    padding-left: 21rem !important;
    padding-right: 21rem !important;
  }

  .py-xxl-0 {
    padding-bottom: 0 !important;
    padding-top: 0 !important;
  }

  .py-xxl-1 {
    padding-bottom: 0.25rem !important;
    padding-top: 0.25rem !important;
  }

  .py-xxl-2 {
    padding-bottom: 0.5rem !important;
    padding-top: 0.5rem !important;
  }

  .py-xxl-3 {
    padding-bottom: 1rem !important;
    padding-top: 1rem !important;
  }

  .py-xxl-4 {
    padding-bottom: 1.5rem !important;
    padding-top: 1.5rem !important;
  }

  .py-xxl-5 {
    padding-bottom: 3rem !important;
    padding-top: 3rem !important;
  }

  .py-xxl-6 {
    padding-bottom: 5rem !important;
    padding-top: 5rem !important;
  }

  .py-xxl-7 {
    padding-bottom: 7rem !important;
    padding-top: 7rem !important;
  }

  .py-xxl-8 {
    padding-bottom: 8rem !important;
    padding-top: 8rem !important;
  }

  .py-xxl-9 {
    padding-bottom: 9rem !important;
    padding-top: 9rem !important;
  }

  .py-xxl-10 {
    padding-bottom: 10rem !important;
    padding-top: 10rem !important;
  }

  .py-xxl-11 {
    padding-bottom: 11rem !important;
    padding-top: 11rem !important;
  }

  .py-xxl-12 {
    padding-bottom: 12rem !important;
    padding-top: 12rem !important;
  }

  .py-xxl-13 {
    padding-bottom: 13rem !important;
    padding-top: 13rem !important;
  }

  .py-xxl-14 {
    padding-bottom: 14rem !important;
    padding-top: 14rem !important;
  }

  .py-xxl-15 {
    padding-bottom: 15rem !important;
    padding-top: 15rem !important;
  }

  .py-xxl-16 {
    padding-bottom: 16rem !important;
    padding-top: 16rem !important;
  }

  .py-xxl-17 {
    padding-bottom: 17rem !important;
    padding-top: 17rem !important;
  }

  .py-xxl-18 {
    padding-bottom: 18rem !important;
    padding-top: 18rem !important;
  }

  .py-xxl-19 {
    padding-bottom: 19rem !important;
    padding-top: 19rem !important;
  }

  .py-xxl-20 {
    padding-bottom: 20rem !important;
    padding-top: 20rem !important;
  }

  .py-xxl-21 {
    padding-bottom: 21rem !important;
    padding-top: 21rem !important;
  }

  .pt-xxl-0 {
    padding-top: 0 !important;
  }

  .pt-xxl-1 {
    padding-top: 0.25rem !important;
  }

  .pt-xxl-2 {
    padding-top: 0.5rem !important;
  }

  .pt-xxl-3 {
    padding-top: 1rem !important;
  }

  .pt-xxl-4 {
    padding-top: 1.5rem !important;
  }

  .pt-xxl-5 {
    padding-top: 3rem !important;
  }

  .pt-xxl-6 {
    padding-top: 5rem !important;
  }

  .pt-xxl-7 {
    padding-top: 7rem !important;
  }

  .pt-xxl-8 {
    padding-top: 8rem !important;
  }

  .pt-xxl-9 {
    padding-top: 9rem !important;
  }

  .pt-xxl-10 {
    padding-top: 10rem !important;
  }

  .pt-xxl-11 {
    padding-top: 11rem !important;
  }

  .pt-xxl-12 {
    padding-top: 12rem !important;
  }

  .pt-xxl-13 {
    padding-top: 13rem !important;
  }

  .pt-xxl-14 {
    padding-top: 14rem !important;
  }

  .pt-xxl-15 {
    padding-top: 15rem !important;
  }

  .pt-xxl-16 {
    padding-top: 16rem !important;
  }

  .pt-xxl-17 {
    padding-top: 17rem !important;
  }

  .pt-xxl-18 {
    padding-top: 18rem !important;
  }

  .pt-xxl-19 {
    padding-top: 19rem !important;
  }

  .pt-xxl-20 {
    padding-top: 20rem !important;
  }

  .pt-xxl-21 {
    padding-top: 21rem !important;
  }

  .pe-xxl-0 {
    padding-right: 0 !important;
  }

  .pe-xxl-1 {
    padding-right: 0.25rem !important;
  }

  .pe-xxl-2 {
    padding-right: 0.5rem !important;
  }

  .pe-xxl-3 {
    padding-right: 1rem !important;
  }

  .pe-xxl-4 {
    padding-right: 1.5rem !important;
  }

  .pe-xxl-5 {
    padding-right: 3rem !important;
  }

  .pe-xxl-6 {
    padding-right: 5rem !important;
  }

  .pe-xxl-7 {
    padding-right: 7rem !important;
  }

  .pe-xxl-8 {
    padding-right: 8rem !important;
  }

  .pe-xxl-9 {
    padding-right: 9rem !important;
  }

  .pe-xxl-10 {
    padding-right: 10rem !important;
  }

  .pe-xxl-11 {
    padding-right: 11rem !important;
  }

  .pe-xxl-12 {
    padding-right: 12rem !important;
  }

  .pe-xxl-13 {
    padding-right: 13rem !important;
  }

  .pe-xxl-14 {
    padding-right: 14rem !important;
  }

  .pe-xxl-15 {
    padding-right: 15rem !important;
  }

  .pe-xxl-16 {
    padding-right: 16rem !important;
  }

  .pe-xxl-17 {
    padding-right: 17rem !important;
  }

  .pe-xxl-18 {
    padding-right: 18rem !important;
  }

  .pe-xxl-19 {
    padding-right: 19rem !important;
  }

  .pe-xxl-20 {
    padding-right: 20rem !important;
  }

  .pe-xxl-21 {
    padding-right: 21rem !important;
  }

  .pb-xxl-0 {
    padding-bottom: 0 !important;
  }

  .pb-xxl-1 {
    padding-bottom: 0.25rem !important;
  }

  .pb-xxl-2 {
    padding-bottom: 0.5rem !important;
  }

  .pb-xxl-3 {
    padding-bottom: 1rem !important;
  }

  .pb-xxl-4 {
    padding-bottom: 1.5rem !important;
  }

  .pb-xxl-5 {
    padding-bottom: 3rem !important;
  }

  .pb-xxl-6 {
    padding-bottom: 5rem !important;
  }

  .pb-xxl-7 {
    padding-bottom: 7rem !important;
  }

  .pb-xxl-8 {
    padding-bottom: 8rem !important;
  }

  .pb-xxl-9 {
    padding-bottom: 9rem !important;
  }

  .pb-xxl-10 {
    padding-bottom: 10rem !important;
  }

  .pb-xxl-11 {
    padding-bottom: 11rem !important;
  }

  .pb-xxl-12 {
    padding-bottom: 12rem !important;
  }

  .pb-xxl-13 {
    padding-bottom: 13rem !important;
  }

  .pb-xxl-14 {
    padding-bottom: 14rem !important;
  }

  .pb-xxl-15 {
    padding-bottom: 15rem !important;
  }

  .pb-xxl-16 {
    padding-bottom: 16rem !important;
  }

  .pb-xxl-17 {
    padding-bottom: 17rem !important;
  }

  .pb-xxl-18 {
    padding-bottom: 18rem !important;
  }

  .pb-xxl-19 {
    padding-bottom: 19rem !important;
  }

  .pb-xxl-20 {
    padding-bottom: 20rem !important;
  }

  .pb-xxl-21 {
    padding-bottom: 21rem !important;
  }

  .ps-xxl-0 {
    padding-left: 0 !important;
  }

  .ps-xxl-1 {
    padding-left: 0.25rem !important;
  }

  .ps-xxl-2 {
    padding-left: 0.5rem !important;
  }

  .ps-xxl-3 {
    padding-left: 1rem !important;
  }

  .ps-xxl-4 {
    padding-left: 1.5rem !important;
  }

  .ps-xxl-5 {
    padding-left: 3rem !important;
  }

  .ps-xxl-6 {
    padding-left: 5rem !important;
  }

  .ps-xxl-7 {
    padding-left: 7rem !important;
  }

  .ps-xxl-8 {
    padding-left: 8rem !important;
  }

  .ps-xxl-9 {
    padding-left: 9rem !important;
  }

  .ps-xxl-10 {
    padding-left: 10rem !important;
  }

  .ps-xxl-11 {
    padding-left: 11rem !important;
  }

  .ps-xxl-12 {
    padding-left: 12rem !important;
  }

  .ps-xxl-13 {
    padding-left: 13rem !important;
  }

  .ps-xxl-14 {
    padding-left: 14rem !important;
  }

  .ps-xxl-15 {
    padding-left: 15rem !important;
  }

  .ps-xxl-16 {
    padding-left: 16rem !important;
  }

  .ps-xxl-17 {
    padding-left: 17rem !important;
  }

  .ps-xxl-18 {
    padding-left: 18rem !important;
  }

  .ps-xxl-19 {
    padding-left: 19rem !important;
  }

  .ps-xxl-20 {
    padding-left: 20rem !important;
  }

  .ps-xxl-21 {
    padding-left: 21rem !important;
  }

  .gap-xxl-0 {
    gap: 0 !important;
  }

  .gap-xxl-1 {
    gap: 0.25rem !important;
  }

  .gap-xxl-2 {
    gap: 0.5rem !important;
  }

  .gap-xxl-3 {
    gap: 1rem !important;
  }

  .gap-xxl-4 {
    gap: 1.5rem !important;
  }

  .gap-xxl-5 {
    gap: 3rem !important;
  }

  .gap-xxl-6 {
    gap: 5rem !important;
  }

  .gap-xxl-7 {
    gap: 7rem !important;
  }

  .gap-xxl-8 {
    gap: 8rem !important;
  }

  .gap-xxl-9 {
    gap: 9rem !important;
  }

  .gap-xxl-10 {
    gap: 10rem !important;
  }

  .gap-xxl-11 {
    gap: 11rem !important;
  }

  .gap-xxl-12 {
    gap: 12rem !important;
  }

  .gap-xxl-13 {
    gap: 13rem !important;
  }

  .gap-xxl-14 {
    gap: 14rem !important;
  }

  .gap-xxl-15 {
    gap: 15rem !important;
  }

  .gap-xxl-16 {
    gap: 16rem !important;
  }

  .gap-xxl-17 {
    gap: 17rem !important;
  }

  .gap-xxl-18 {
    gap: 18rem !important;
  }

  .gap-xxl-19 {
    gap: 19rem !important;
  }

  .gap-xxl-20 {
    gap: 20rem !important;
  }

  .gap-xxl-21 {
    gap: 21rem !important;
  }

  .row-gap-xxl-0 {
    row-gap: 0 !important;
  }

  .row-gap-xxl-1 {
    row-gap: 0.25rem !important;
  }

  .row-gap-xxl-2 {
    row-gap: 0.5rem !important;
  }

  .row-gap-xxl-3 {
    row-gap: 1rem !important;
  }

  .row-gap-xxl-4 {
    row-gap: 1.5rem !important;
  }

  .row-gap-xxl-5 {
    row-gap: 3rem !important;
  }

  .row-gap-xxl-6 {
    row-gap: 5rem !important;
  }

  .row-gap-xxl-7 {
    row-gap: 7rem !important;
  }

  .row-gap-xxl-8 {
    row-gap: 8rem !important;
  }

  .row-gap-xxl-9 {
    row-gap: 9rem !important;
  }

  .row-gap-xxl-10 {
    row-gap: 10rem !important;
  }

  .row-gap-xxl-11 {
    row-gap: 11rem !important;
  }

  .row-gap-xxl-12 {
    row-gap: 12rem !important;
  }

  .row-gap-xxl-13 {
    row-gap: 13rem !important;
  }

  .row-gap-xxl-14 {
    row-gap: 14rem !important;
  }

  .row-gap-xxl-15 {
    row-gap: 15rem !important;
  }

  .row-gap-xxl-16 {
    row-gap: 16rem !important;
  }

  .row-gap-xxl-17 {
    row-gap: 17rem !important;
  }

  .row-gap-xxl-18 {
    row-gap: 18rem !important;
  }

  .row-gap-xxl-19 {
    row-gap: 19rem !important;
  }

  .row-gap-xxl-20 {
    row-gap: 20rem !important;
  }

  .row-gap-xxl-21 {
    row-gap: 21rem !important;
  }

  .column-gap-xxl-0 {
    -webkit-column-gap: 0 !important;
    -moz-column-gap: 0 !important;
    column-gap: 0 !important;
  }

  .column-gap-xxl-1 {
    -webkit-column-gap: 0.25rem !important;
    -moz-column-gap: 0.25rem !important;
    column-gap: 0.25rem !important;
  }

  .column-gap-xxl-2 {
    -webkit-column-gap: 0.5rem !important;
    -moz-column-gap: 0.5rem !important;
    column-gap: 0.5rem !important;
  }

  .column-gap-xxl-3 {
    -webkit-column-gap: 1rem !important;
    -moz-column-gap: 1rem !important;
    column-gap: 1rem !important;
  }

  .column-gap-xxl-4 {
    -webkit-column-gap: 1.5rem !important;
    -moz-column-gap: 1.5rem !important;
    column-gap: 1.5rem !important;
  }

  .column-gap-xxl-5 {
    -webkit-column-gap: 3rem !important;
    -moz-column-gap: 3rem !important;
    column-gap: 3rem !important;
  }

  .column-gap-xxl-6 {
    -webkit-column-gap: 5rem !important;
    -moz-column-gap: 5rem !important;
    column-gap: 5rem !important;
  }

  .column-gap-xxl-7 {
    -webkit-column-gap: 7rem !important;
    -moz-column-gap: 7rem !important;
    column-gap: 7rem !important;
  }

  .column-gap-xxl-8 {
    -webkit-column-gap: 8rem !important;
    -moz-column-gap: 8rem !important;
    column-gap: 8rem !important;
  }

  .column-gap-xxl-9 {
    -webkit-column-gap: 9rem !important;
    -moz-column-gap: 9rem !important;
    column-gap: 9rem !important;
  }

  .column-gap-xxl-10 {
    -webkit-column-gap: 10rem !important;
    -moz-column-gap: 10rem !important;
    column-gap: 10rem !important;
  }

  .column-gap-xxl-11 {
    -webkit-column-gap: 11rem !important;
    -moz-column-gap: 11rem !important;
    column-gap: 11rem !important;
  }

  .column-gap-xxl-12 {
    -webkit-column-gap: 12rem !important;
    -moz-column-gap: 12rem !important;
    column-gap: 12rem !important;
  }

  .column-gap-xxl-13 {
    -webkit-column-gap: 13rem !important;
    -moz-column-gap: 13rem !important;
    column-gap: 13rem !important;
  }

  .column-gap-xxl-14 {
    -webkit-column-gap: 14rem !important;
    -moz-column-gap: 14rem !important;
    column-gap: 14rem !important;
  }

  .column-gap-xxl-15 {
    -webkit-column-gap: 15rem !important;
    -moz-column-gap: 15rem !important;
    column-gap: 15rem !important;
  }

  .column-gap-xxl-16 {
    -webkit-column-gap: 16rem !important;
    -moz-column-gap: 16rem !important;
    column-gap: 16rem !important;
  }

  .column-gap-xxl-17 {
    -webkit-column-gap: 17rem !important;
    -moz-column-gap: 17rem !important;
    column-gap: 17rem !important;
  }

  .column-gap-xxl-18 {
    -webkit-column-gap: 18rem !important;
    -moz-column-gap: 18rem !important;
    column-gap: 18rem !important;
  }

  .column-gap-xxl-19 {
    -webkit-column-gap: 19rem !important;
    -moz-column-gap: 19rem !important;
    column-gap: 19rem !important;
  }

  .column-gap-xxl-20 {
    -webkit-column-gap: 20rem !important;
    -moz-column-gap: 20rem !important;
    column-gap: 20rem !important;
  }

  .column-gap-xxl-21 {
    -webkit-column-gap: 21rem !important;
    -moz-column-gap: 21rem !important;
    column-gap: 21rem !important;
  }

  .text-xxl-start {
    text-align: left !important;
  }

  .text-xxl-end {
    text-align: right !important;
  }

  .text-xxl-center {
    text-align: center !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .icon-link > .bi {
    -webkit-transition: none;
    transition: none;
  }
}

@media print {
  .d-print-inline {
    display: inline !important;
  }

  .d-print-inline-block {
    display: inline-block !important;
  }

  .d-print-block {
    display: block !important;
  }

  .d-print-grid {
    display: grid !important;
  }

  .d-print-inline-grid {
    display: inline-grid !important;
  }

  .d-print-table {
    display: table !important;
  }

  .d-print-table-row {
    display: table-row !important;
  }

  .d-print-table-cell {
    display: table-cell !important;
  }

  .d-print-flex {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .d-print-inline-flex {
    display: -webkit-inline-box !important;
    display: -webkit-inline-flex !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }

  .d-print-none {
    display: none !important;
  }

  img {
    max-width: 100% !important;
  }

  .h2,
  .h3,
  h2,
  h3,
  p {
    orphans: 3;
    widows: 3;
  }
}

@media (min-width: 320px) {
  .btn {
    font-size: -webkit-calc(0.18987vw + 14.39241px);
    font-size: calc(0.18987vw + 14.39241px);
  }

  .btn__arrow {
    font-size: -webkit-calc(0.12658vw + 15.59494px);
    font-size: calc(0.12658vw + 15.59494px);
  }

  .btn__about {
    font-size: -webkit-calc(0.18987vw + 11.39241px);
    font-size: calc(0.18987vw + 11.39241px);
  }

  .footer__mobile--menu--button {
    font-size: -webkit-calc(0.3125vw + 11px);
    font-size: calc(0.3125vw + 11px);
  }

  .footer__menu a {
    font-size: -webkit-calc(0.12658vw + 13.59494px);
    font-size: calc(0.12658vw + 13.59494px);
  }

  .footer__menu--catalog a {
    font-size: -webkit-calc(0.44304vw + 16.58228px);
    font-size: calc(0.44304vw + 16.58228px);
  }

  .footer__phone {
    font-size: -webkit-calc(0.75949vw + 12.56962px);
    font-size: calc(0.75949vw + 12.56962px);
  }

  .footer__email {
    font-size: -webkit-calc(0.37975vw + 16.78481px);
    font-size: calc(0.37975vw + 16.78481px);
  }

  .footer__address {
    font-size: -webkit-calc(0.12658vw + 13.59494px);
    font-size: calc(0.12658vw + 13.59494px);
  }

  .footer__label,
  .footer__socials {
    font-size: -webkit-calc(0.18987vw + 10.39241px);
    font-size: calc(0.18987vw + 10.39241px);
  }

  .rubric__big {
    font-size: -webkit-calc(0.44304vw + 15.58228px);
    font-size: calc(0.44304vw + 15.58228px);
  }

  .footer__text,
  .rubric__small {
    font-size: -webkit-calc(0.44304vw + 13.58228px);
    font-size: calc(0.44304vw + 13.58228px);
  }

  .footer__text span {
    font-size: -webkit-calc(0.12658vw + 15.59494px);
    font-size: calc(0.12658vw + 15.59494px);
  }

  .header__main--producers {
    font-size: -webkit-calc(0.44304vw + 11.58228px);
    font-size: calc(0.44304vw + 11.58228px);
  }

  .header__main--button {
    font-size: -webkit-calc(0.31646vw + 11.98734px);
    font-size: calc(0.31646vw + 11.98734px);
  }

  .header__text {
    font-size: -webkit-calc(0.18987vw + 12.39241px);
    font-size: calc(0.18987vw + 12.39241px);
  }

  .header__card--header,
  .header__card--header a,
  .mobile-menu__item-text,
  .mobile-menu__modal-back {
    font-size: -webkit-calc(0.12658vw + 17.59494px);
    font-size: calc(0.12658vw + 17.59494px);
  }

  .mobile-menu__item {
    font-size: -webkit-calc(0.12658vw + 15.59494px);
    font-size: calc(0.12658vw + 15.59494px);
  }

  .mobile-menu__caption {
    font-size: -webkit-calc(0.12658vw + 13.59494px);
    font-size: calc(0.12658vw + 13.59494px);
  }

  .about__header,
  .about__quote p {
    font-size: -webkit-calc(1.26582vw + 15.94937px);
    font-size: calc(1.26582vw + 15.94937px);
  }

  .about__into {
    font-size: -webkit-calc(0.25316vw + 25.18987px);
    font-size: calc(0.25316vw + 25.18987px);
  }

  .about__into--text,
  .about__into--text p {
    font-size: -webkit-calc(0.25316vw + 15.18987px);
    font-size: calc(0.25316vw + 15.18987px);
  }

  .about__section--header {
    font-size: -webkit-calc(0.25316vw + 25.18987px);
    font-size: calc(0.25316vw + 25.18987px);
  }

  .about__collage--block p {
    font-size: -webkit-calc(0.06329vw + 15.79747px);
    font-size: calc(0.06329vw + 15.79747px);
  }

  .accordion__inner--block--name {
    font-size: -webkit-calc(0.25316vw + 17.18987px);
    font-size: calc(0.25316vw + 17.18987px);
  }

  .accordion__name {
    font-size: -webkit-calc(0.25316vw + 22.18987px);
    font-size: calc(0.25316vw + 22.18987px);
  }

  .accordion-item-header:after {
    font-size: -webkit-calc(0.94937vw + 41.96203px);
    font-size: calc(0.94937vw + 41.96203px);
  }

  .ads__text {
    font-size: -webkit-calc(2.97468vw + 13.48101px);
    font-size: calc(2.97468vw + 13.48101px);
  }

  .ads__subtext {
    font-size: -webkit-calc(0.31646vw + 18.98734px);
    font-size: calc(0.31646vw + 18.98734px);
  }

  .ads__conditions {
    font-size: -webkit-calc(0.18987vw + 14.39241px);
    font-size: calc(0.18987vw + 14.39241px);
  }

  .benefits__header {
    font-size: -webkit-calc(0.25316vw + 15.18987px);
    font-size: calc(0.25316vw + 15.18987px);
  }

  .breadcrumbs li a {
    font-size: -webkit-calc(0.12658vw + 13.59494px);
    font-size: calc(0.12658vw + 13.59494px);
  }

  .cabinets__info--header {
    font-size: -webkit-calc(0.88608vw + 15.16456px);
    font-size: calc(0.88608vw + 15.16456px);
  }

  .cabinets__info--text,
  .cabinets__info--text p {
    font-size: -webkit-calc(0.12658vw + 13.59494px);
    font-size: calc(0.12658vw + 13.59494px);
  }

  .card .tovar__specs li {
    font-size: -webkit-calc(0.06329vw + 12.79747px);
    font-size: calc(0.06329vw + 12.79747px);
  }

  .card__price {
    font-size: -webkit-calc(0.75949vw + 15.56962px);
    font-size: calc(0.75949vw + 15.56962px);
  }

  .card__header {
    font-size: -webkit-calc(1.26582vw + 15.94937px);
    font-size: calc(1.26582vw + 15.94937px);
  }

  .catalog__filter--head--title {
    font-size: -webkit-calc(0.44304vw + 21.58228px);
    font-size: calc(0.44304vw + 21.58228px);
  }

  .catalog__intro--h1 .h1,
  .catalog__intro--h1 h1 {
    font-size: -webkit-calc(1.83544vw + 20.12658px);
    font-size: calc(1.83544vw + 20.12658px);
  }

  .catalog__intro--breadcrumb ul li a {
    font-size: -webkit-calc(0.12658vw + 12.59494px);
    font-size: calc(0.12658vw + 12.59494px);
  }

  .catalog__new .tabs ul li a {
    font-size: -webkit-calc(0.12658vw + 14.59494px);
    font-size: calc(0.12658vw + 14.59494px);
  }

  .catalog__new .accordion__name {
    font-size: -webkit-calc(0.31646vw + 14.98734px);
    font-size: calc(0.31646vw + 14.98734px);
  }

  .consultation__text {
    font-size: -webkit-calc(0.18987vw + 12.39241px);
    font-size: calc(0.18987vw + 12.39241px);
  }

  .consultation__header {
    font-size: -webkit-calc(0.63291vw + 17.97468px);
    font-size: calc(0.63291vw + 17.97468px);
  }

  .contacts__block--phone {
    font-size: -webkit-calc(0.25316vw + 25.18987px);
    font-size: calc(0.25316vw + 25.18987px);
  }

  .contacts__header {
    font-size: -webkit-calc(0.63291vw + 17.97468px);
    font-size: calc(0.63291vw + 17.97468px);
  }

  .contacts__info--new a,
  .contacts__info--new p {
    font-size: -webkit-calc(0.25316vw + 15.18987px);
    font-size: calc(0.25316vw + 15.18987px);
  }

  .contacts__block .footer__email {
    font-size: -webkit-calc(0.37975vw + 12.78481px);
    font-size: calc(0.37975vw + 12.78481px);
  }

  .content__double .h2,
  .content__double h2 {
    font-size: -webkit-calc(0.88608vw + 13.16456px);
    font-size: calc(0.88608vw + 13.16456px);
  }

  .cooperation--header {
    font-size: -webkit-calc(1.20253vw + 17.1519px);
    font-size: calc(1.20253vw + 17.1519px);
  }

  .cooperation__list--header {
    font-size: -webkit-calc(0.25316vw + 13.18987px);
    font-size: calc(0.25316vw + 13.18987px);
  }

  .cooperation__list--text,
  .cooperation__list--text p {
    font-size: -webkit-calc(0.12658vw + 13.59494px);
    font-size: calc(0.12658vw + 13.59494px);
  }

  .form__header {
    font-size: -webkit-calc(2.21519vw + 12.91139px);
    font-size: calc(2.21519vw + 12.91139px);
  }

  .form__conditions,
  .form__conditions a {
    font-size: -webkit-calc(0.18987vw + 12.39241px);
    font-size: calc(0.18987vw + 12.39241px);
  }

  .forms_section--header {
    font-size: -webkit-calc(1.20253vw + 17.1519px);
    font-size: calc(1.20253vw + 17.1519px);
  }

  .forms_section--privacy {
    font-size: -webkit-calc(0.06329vw + 10.79747px);
    font-size: calc(0.06329vw + 10.79747px);
  }

  .mega__menu--rubrics li a {
    font-size: -webkit-calc(0.18987vw + 12.39241px);
    font-size: calc(0.18987vw + 12.39241px);
  }

  .mega__menu--brends li a,
  .mega__menu--categories li a,
  .mega__menu--subcategories li a {
    font-size: -webkit-calc(0.18987vw + 14.39241px);
    font-size: calc(0.18987vw + 14.39241px);
  }

  .mega__menu--submenu li a {
    font-size: -webkit-calc(0.18987vw + 12.39241px);
    font-size: calc(0.18987vw + 12.39241px);
  }

  .mobile__menu--submenu li a {
    font-size: -webkit-calc(0.12658vw + 16.59494px);
    font-size: calc(0.12658vw + 16.59494px);
  }

  .rubric__header {
    font-size: -webkit-calc(0.75949vw + 15.56962px);
    font-size: calc(0.75949vw + 15.56962px);
  }

  .rubric .rubric__anons--header {
    font-size: -webkit-calc(0.63291vw + 17.97468px);
    font-size: calc(0.63291vw + 17.97468px);
  }

  .slide__header {
    font-size: 18px;
    font-size: -webkit-calc(1.80723vw + 24.21687px);
    font-size: calc(1.80723vw + 24.21687px);
  }

  .rubrics_slider .swiper-slide .slide__header--rubric {
    font-size: -webkit-calc(0.50633vw + 12.37975px);
    font-size: calc(0.50633vw + 12.37975px);
  }

  .hero__swiper .btn__arrow {
    font-size: -webkit-calc(0.12658vw + 11.59494px);
    font-size: calc(0.12658vw + 11.59494px);
  }

  .hero__swiper .swiper__bg--text {
    font-size: -webkit-calc(0.18987vw + 14.39241px);
    font-size: calc(0.18987vw + 14.39241px);
  }

  .specials_slider .specials_slider--name {
    font-size: -webkit-calc(0.12658vw + 17.59494px);
    font-size: calc(0.12658vw + 17.59494px);
  }

  .actual_slider .actual_slider--text {
    font-size: -webkit-calc(0.12658vw + 14.59494px);
    font-size: calc(0.12658vw + 14.59494px);
  }

  .actual_slider .actual_slider--name {
    font-size: -webkit-calc(0.25316vw + 14.18987px);
    font-size: calc(0.25316vw + 14.18987px);
    font-size: -webkit-calc(0.18987vw + 18.39241px);
    font-size: calc(0.18987vw + 18.39241px);
  }

  .tovar__head--h1 {
    font-size: -webkit-calc(1.26582vw + 17.94937px);
    font-size: calc(1.26582vw + 17.94937px);
  }

  .tovar__tab--description {
    font-size: -webkit-calc(0.44304vw + 14.58228px);
    font-size: calc(0.44304vw + 14.58228px);
  }

  .tovar__tab .h2,
  .tovar__tab h2 {
    font-size: -webkit-calc(0.50633vw + 20.37975px);
    font-size: calc(0.50633vw + 20.37975px);
  }

  .tovar__h1 .h1,
  .tovar__h1 h1 {
    font-size: -webkit-calc(3.41772vw + 15.06329px);
    font-size: calc(3.41772vw + 15.06329px);
  }

  .tovar__price {
    font-size: -webkit-calc(0.88608vw + 23.16456px);
    font-size: calc(0.88608vw + 23.16456px);
  }

  .tovar__tabs ul li a {
    font-size: -webkit-calc(0.88608vw + 13.16456px);
    font-size: calc(0.88608vw + 13.16456px);
  }

  body,
  p {
    font-size: -webkit-calc(0.31646vw + 12.98734px);
    font-size: calc(0.31646vw + 12.98734px);
  }

  .h1,
  h1 {
    font-size: -webkit-calc(1.26582vw + 15.94937px);
    font-size: calc(1.26582vw + 15.94937px);
  }

  .h3,
  h3 {
    font-size: -webkit-calc(0.44304vw + 16.58228px);
    font-size: calc(0.44304vw + 16.58228px);
  }

  .section__header {
    font-size: -webkit-calc(2.21519vw + 12.91139px);
    font-size: calc(2.21519vw + 12.91139px);
  }

  .section__text,
  .section__text p {
    font-size: -webkit-calc(0.18987vw + 14.39241px);
    font-size: calc(0.18987vw + 14.39241px);
  }

  .h1,
  h1 {
    font-size: -webkit-calc(1.77215vw + 24.32911px);
    font-size: calc(1.77215vw + 24.32911px);
  }

  .fixed .footer__menu a,
  .fixed .rubric__small,
  .mobile-menu__title {
    font-size: -webkit-calc(0.06329vw + 17.79747px);
    font-size: calc(0.06329vw + 17.79747px);
  }
}

@media (min-width: 1900px) {
  .btn,
  .btn__arrow {
    font-size: 18px;
  }

  .btn__about {
    font-size: 15px;
  }

  .footer__menu a {
    font-size: 16px;
  }

  .footer__menu--catalog a {
    font-size: 25px;
  }

  .footer__phone {
    font-size: 27px;
  }

  .footer__email {
    font-size: 24px;
  }

  .footer__address {
    font-size: 16px;
  }

  .footer__label,
  .footer__socials {
    font-size: 14px;
  }

  .rubric__big {
    font-size: 24px;
  }

  .footer__text,
  .rubric__small {
    font-size: 22px;
  }

  .footer__text span {
    font-size: 18px;
  }

  .header__main--producers {
    font-size: 20px;
  }

  .header__main--button {
    font-size: 18px;
  }

  .header__text {
    font-size: 16px;
  }

  .header__card--header,
  .header__card--header a,
  .mobile-menu__item-text,
  .mobile-menu__modal-back {
    font-size: 20px;
  }

  .mobile-menu__item {
    font-size: 18px;
  }

  .mobile-menu__caption {
    font-size: 16px;
  }

  .about__header,
  .about__quote p {
    font-size: 40px;
  }

  .about__into {
    font-size: 30px;
  }

  .about__into--text,
  .about__into--text p {
    font-size: 20px;
  }

  .about__section--header {
    font-size: 30px;
  }

  .about__collage--block p {
    font-size: 17px;
  }

  .accordion__inner--block--name {
    font-size: 22px;
  }

  .accordion__name {
    font-size: 27px;
  }

  .accordion-item-header:after {
    font-size: 60px;
  }

  .ads__text {
    font-size: 70px;
  }

  .ads__subtext {
    font-size: 25px;
  }

  .ads__conditions {
    font-size: 18px;
  }

  .benefits__header {
    font-size: 20px;
  }

  .breadcrumbs li a {
    font-size: 16px;
  }

  .cabinets__info--header {
    font-size: 32px;
  }

  .cabinets__info--text,
  .cabinets__info--text p {
    font-size: 16px;
  }

  .card .tovar__specs li {
    font-size: 14px;
  }

  .card__price {
    font-size: 30px;
  }

  .card__header {
    font-size: 40px;
  }

  .catalog__filter--head--title {
    font-size: 30px;
  }

  .catalog__intro--h1 .h1,
  .catalog__intro--h1 h1 {
    font-size: 55px;
  }

  .catalog__intro--breadcrumb ul li a {
    font-size: 15px;
  }

  .catalog__new .tabs ul li a {
    font-size: 17px;
  }

  .catalog__new .accordion__name {
    font-size: 21px;
  }

  .consultation__text {
    font-size: 16px;
  }

  .consultation__header,
  .contacts__block--phone,
  .contacts__header {
    font-size: 30px;
  }

  .contacts__block .footer__email,
  .contacts__info--new a,
  .contacts__info--new p {
    font-size: 20px;
  }

  .content__double .h2,
  .content__double h2 {
    font-size: 30px;
  }

  .cooperation--header {
    font-size: 40px;
  }

  .cooperation__list--header {
    font-size: 18px;
  }

  .cooperation__list--text,
  .cooperation__list--text p {
    font-size: 16px;
  }

  .form__header {
    font-size: 55px;
  }

  .form__conditions,
  .form__conditions a {
    font-size: 16px;
  }

  .forms_section--header {
    font-size: 40px;
  }

  .forms_section--privacy {
    font-size: 12px;
  }

  .mega__menu--rubrics li a {
    font-size: 16px;
  }

  .mega__menu--brends li a,
  .mega__menu--categories li a,
  .mega__menu--subcategories li a {
    font-size: 18px;
  }

  .mega__menu--submenu li a {
    font-size: 16px;
  }

  .mobile__menu--submenu li a {
    font-size: 19px;
  }

  .rubric .rubric__anons--header,
  .rubric__header {
    font-size: 30px;
  }

  .rubrics_slider .swiper-slide .slide__header--rubric {
    font-size: 22px;
  }

  .hero__swiper .btn__arrow {
    font-size: 14px;
  }

  .hero__swiper .swiper__bg--text {
    font-size: 18px;
  }

  .specials_slider .specials_slider--name {
    font-size: 20px;
  }

  .actual_slider .actual_slider--text {
    font-size: 17px;
  }

  .actual_slider .actual_slider--name {
    font-size: 19px;
    font-size: 22px;
  }

  .tovar__head--h1 {
    font-size: 42px;
  }

  .tovar__tab--description {
    font-size: 23px;
  }

  .tovar__tab .h2,
  .tovar__tab h2 {
    font-size: 30px;
  }

  .tovar__h1 .h1,
  .tovar__h1 h1 {
    font-size: 80px;
  }

  .tovar__price {
    font-size: 40px;
  }

  .tovar__tabs ul li a {
    font-size: 30px;
  }

  body,
  p {
    font-size: 19px;
  }

  .h1,
  h1 {
    font-size: 40px;
  }

  .h3,
  h3 {
    font-size: 25px;
  }

  .section__header {
    font-size: 55px;
  }

  .section__text,
  .section__text p {
    font-size: 18px;
  }

  .h1,
  h1 {
    font-size: 58px;
  }

  .fixed .footer__menu a,
  .fixed .rubric__small,
  .mobile-menu__title {
    font-size: 19px;
  }
}

@media (max-width: 768px) {
  .btn {
    font-size: 15px !important;
    height: 40px;
  }

  .more-btn {
    -webkit-border-radius: 20px;
    border-radius: 20px;
    height: 40px;
    min-height: 40px;
    padding: 0 24px 0 17px;
  }

  .more-btn:before {
    -webkit-border-radius: 20px;
    border-radius: 20px;
    width: 40px;
  }

  .more-btn:hover img {
    margin-right: 10px;
  }

  .more-btn img {
    height: 11px;
    margin-right: 30px;
    width: 8px;
  }

  .rubric__big {
    font-size: 19px;
  }

  .rubric__small {
    font-size: 18px;
  }

  .footer__section--addition {
    margin-bottom: 5px;
  }

  .footer__section--addition .footer__text a {
    font-size: 19px;
    font-weight: 500;
  }

  .footer__header--faq {
    border-top: 1px solid #000 !important;
  }

  .footer__header--faq .footer__header--support:not(.active) {
    border-bottom: 1px solid #000 !important;
  }

  .footer__copyright {
    margin-bottom: 29px !important;
    padding: 0;
    text-align: center;
  }

  .footer__copyright--dev {
    margin-top: 15px;
    text-align: center;
  }

  .accordion__inner--block {
    padding: 20px 10px;
  }

  .accordion__inner--block--image {
    width: 120px;
  }

  .accordion__inner--block--name {
    font-size: 18px;
    font-weight: 600;
  }

  .accordion__icon svg {
    height: 45px;
    width: 45px;
  }

  .accordion__name {
    font-size: 18px;
    margin-left: 20px;
    padding-right: 30px;
  }

  .accordion-item-header {
    padding: 10px 15px;
  }

  .accordion__inner--block--name {
    text-align: center;
  }

  .contacts__float {
    position: unset;
  }

  .cooperation__lists {
    padding: 0 !important;
  }

  .forms_section--privacy {
    margin-bottom: 20px;
    padding: 0 20px;
    text-align: center;
  }

  .main_slider,
  .main_slider .swiper-slide,
  .main_slider .swiper-slide img,
  .main_slider .swiper-wrapper {
    height: -webkit-calc(100dvh - 60px);
    height: calc(100dvh - 60px);
    max-height: unset;
  }

  .rubrics_slider .swiper-slide {
    min-height: 70px;
  }

  .rubrics_slider .swiper-slide .slide__header--rubric {
    font-size: 14px;
    height: 70px;
  }

  .rubrics_slider .swiper-slide .swiper-slide--image {
    height: 50px;
  }

  .actual_slider .actual_slider--price {
    font-size: 15px;
  }

  .brends_slider,
  .specials_slider {
    overflow: visible;
  }

  .specials_slider .specials_slider--buttons,
  .specials_slider .specials_slider--price {
    padding: 0 10px;
  }

  .benefits {
    padding: 25px 0 70px !important;
  }

  .benefits:has(.news_slider) {
    padding-bottom: 0 !important;
  }

  .specials_slider .specials_slider--buttons,
  .specials_slider .specials_slider--name,
  .specials_slider .specials_slider--price {
    padding: 0;
  }

  .section__header {
    font-size: 20px;
    letter-spacing: -1px;
    margin-bottom: 18px;
    margin-top: 0;
  }

  .lined {
    margin-top: 26px;
    padding-top: 20px;
  }

  .container__left {
    padding: 0 15px !important;
  }

  .tovar__tabs ul {
    overflow-x: scroll;
  }
}

@media (max-width: 1200px) {
  .btn {
    font-size: 12px;
    height: 50px;
    padding: 10px 15px;
  }

  .btn span {
    display: none;
  }

  .btn svg {
    display: block;
    height: 16px;
    width: 16px;
  }

  .header__main--producers {
    display: none;
  }

  .header__main--button {
    padding: 13px 13px 13px 40px;
  }

  .ads__image img {
    margin-right: -20vw;
  }

  .consultation__wrapper {
    padding: 0 40px;
  }

  .cooperation__lists {
    padding: 0 30px;
  }

  .rubrics_slider .swiper-slide img {
    height: 52px;
    width: 52px;
  }

  .rubrics_slider .swiper-slide .swiper-slide--image {
    height: 70px;
  }

  .brends_slider .swiper-slide {
    height: 100px;
  }

  .brends_slider--image img {
    max-width: 80px;
  }
}

@media (max-width: 1200px) and (min-width: 320px) {
  .btn {
    font-size: -webkit-calc(0.12658vw + 11.59494px);
    font-size: calc(0.12658vw + 11.59494px);
  }
}

@media (max-width: 1200px) and (min-width: 1900px) {
  .btn {
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  .btn__download .sub__btn--text:after {
    left: -30px;
  }

  .footer__wrapper {
    padding-top: 35px;
  }

  .footer__line {
    margin: 30px 0;
  }

  .form__header {
    text-align: center;
  }

  .form__conditions {
    ine-height: 1.6;
    font-size: 12px;
  }

  .header__main {
    gap: 0;
  }

  .header__main--search .form-control {
    height: 40px !important;
  }

  .header__main--search .mr-4 {
    position: absolute;
    right: 6px;
    top: 6px;
  }

  .about__quote p {
    padding-top: 10px;
    width: 100%;
  }

  .about__into {
    margin-bottom: 10px;
    margin-top: 40px;
  }

  .about__content {
    padding-bottom: 30px;
  }

  .about__content--wrapper {
    padding-top: 30px;
  }

  .about__collage {
    padding: 0 0 40px !important;
  }

  .about__collage--block {
    padding: 3vw;
  }

  .about__history {
    display: none;
  }

  .accordion__inner--block--name {
    font-size: 16px;
  }

  .breadcrumbs {
    display: none;
  }

  .cards .catalog__item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    padding: 20px 0;
  }

  .cards .catalog__item,
  .cards .catalog__new .catalog__item--buttons {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }

  .cards .catalog__new .catalog__item--image {
    height: 100%;
    mix-blend-mode: darken;
  }

  .cards .catalog__item--image--link,
  .cards .catalog__new .catalog__item--image {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }

  .cards .catalog__item--image--link {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    width: 40%;
  }

  .cards .catalog__item--image--link img {
    width: 100%;
  }

  .cards .catalog__item--info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    width: 60%;
  }

  .cards .catalog__item--info .catalog__item--buttons {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
  }

  .cards .catalog__item--info .catalog__item--buttons,
  .cards .catalog__item--info .catalog__item--name,
  .cards .catalog__item--info .catalog__item--price {
    padding: 0 !important;
  }

  .cards .catalog__item--info .catalog__item--name,
  .cards .catalog__item--info .catalog__item--price {
    margin-bottom: 10px;
  }

  .cards .catalog__item--info .catalog__item--button .btn {
    font-size: 14px !important;
    height: 35px !important;
    padding: 10px;
  }

  .cards .catalog__item--info .catalog__item--price {
    color: #999;
    font-size: 17px;
  }

  .cards .catalog__item--info .catalog__item--name {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
  }

  #contact_map {
    height: 250px;
    overflow: hidden;
  }

  .contacts__info--new {
    /* padding: 0 22px 22px */
    padding: 0;
    background-color: transparent;
  }

  .right__side .about__content:has(.contacts) {
    padding: 0;
  }

  .form__group input,
  .form__group textarea {
    background: #f6f6f6;
    -webkit-border-radius: 6px;
    border-radius: 6px;
    padding: 10px;
  }

  .form__buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }

  .form__submit {
    margin: 0 auto;
    width: 100%;
  }

  .form__submit input {
    margin-top: 30px;
  }

  .mobile__menu--submenu li a {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: -0.4px;
  }

  .mobile__accordion--section .accordion__name {
    font-size: 15px;
    letter-spacing: -0.5px;
  }

  .actual_slider--item {
    padding: 5px 10px;
  }

  .rubrics_slider,
  .specials_slider {
    overflow: visible;
  }

  .specials_slider .specials_slider--name {
    font-size: 12px;
    line-height: 1.2;
    padding: 0 10px;
  }

  .specials_slider .specials_slider--image {
    height: 115px;
  }

  .specials_slider .specials_slider--buttons .btn__order {
    font-size: 12px !important;
    font-weight: 400;
  }

  .specials_slider .specials_slider--buttons .btn {
    height: 40px;
    padding: 10px;
  }

  .actual_slider .actual_slider--text {
    display: none;
  }

  .actual_slider .actual_slider--name {
    font-size: 14px !important;
  }

  .actual_slider .actual_slider--buttons .btn {
    font-size: 12px !important;
    font-weight: 400;
    height: 40px;
    letter-spacing: 0.2px !important;
    padding: 0 10px;
  }

  .brends_slider--image img {
    max-width: 100px;
  }

  .rubrics_slider {
    padding-bottom: 25px !important;
  }

  .specials_slider .specials_slider--item {
    padding: 15px !important;
  }

  .specials_slider .specials_slider--image {
    margin: 0 !important;
  }

  .actual_slider .btn__blue,
  .specials_slider--button .btn__blue {
    height: 40px !important;
    width: 40px !important;
  }

  .new__slider .limiter {
    padding: 0 15px !important;
  }

  .catalog__accordion--filter .accordion__wrapper {
    padding: 0 !important;
  }

  .catalog__filters--buttons {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}

@media screen and (min-width: 768px) {
  .equipmentList-item__title > * .long-arrow-inner {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }

  .ads__info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
    -webkit-justify-content: center;
    justify-content: center;
    left: 0;
    position: absolute;
    top: 0;
  }
}

@media (max-width: 1279px) {
  .footer {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  .header__desktop {
    display: none;
  }

  .header__search {
    height: 16px;
    width: 16px;
  }

  .header__row {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }

  .header__mobile {
    display: block;
  }

  .header__col:nth-child(2) {
    width: auto;
  }

  .header__col:first-child {
    width: auto;
  }

  .header__buttons {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    margin-left: 0;
  }

  .header__buttons-item {
    margin-right: 0.75rem;
  }

  .header__inner {
    padding: 0.8125rem 0;
  }

  .header__buttons-item:not(:first-child) {
    margin-left: 0;
  }

  .header__buttons-item {
    height: 48px;
    width: 48px;
  }

  .header__inner {
    background: #fff;
  }

  .header__phone {
    font-size: 0.875rem;
    line-height: 1;
  }

  .button--sm {
    padding: 0.5625rem 1.625rem;
  }

  .header__inner {
    height: 60px;
  }

  .swiper-pagination-bullet_old {
    width: var(--bullet_width);
  }

  .slide__header {
    left: unset;
    max-width: unset;
    padding: 0 20px;
  }

  .container {
    padding: 0 10px;
  }
}

@media (min-width: 1600px) {
  .footer__mobile--menu--button {
    font-size: 16px;
  }

  .footer__header {
    font-size: 23px;
  }
}

@media (min-width: 360px) {
  .footer__header {
    font-size: -webkit-calc(0.56452vw + 13.96774px);
    font-size: calc(0.56452vw + 13.96774px);
  }
}

@media screen and (min-width: 991px) {
  .footer__menu--faq {
    display: block !important;
  }

  .hero__swiper {
    margin-bottom: 26px;
  }
}

@media screen and (max-width: 991px) {
  .footer__blocks {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 10px;
  }

  .footer__block-one,
  .footer__block-three,
  .footer__block-two {
    width: 32%;
  }

  .footer__block-four {
    width: 100%;
  }

  .footer__sections {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }

  .footer__label {
    margin-top: 0;
  }

  .footer__email {
    margin-bottom: 20px;
  }

  .footer__header--main {
    margin-top: 20px;
  }

  .footer__socials {
    margin-top: 0;
  }

  .HeaderTools_tools__A3kAN,
  .header__main--button,
  .header__main--producers,
  .header__top--panel {
    display: none;
  }

  .footer__mobile--menu {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }

  .header__main--logo-mob {
    display: block;
    margin-right: 0;
    width: 100px;
  }

  .header__main--logo-desktop {
    display: none;
  }

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

  .header__main {
    height: 70px;
  }
}

@media screen and (max-width: 990px) {
  .footer__blocks {
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    gap: 0;
  }

  .footer__blocks,
  .footer__sections {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .footer__label {
    margin-top: 20px;
  }

  .footer__email {
    margin-bottom: 0;
  }

  .footer__block-four,
  .footer__block-one,
  .footer__block-three,
  .footer__block-two {
    width: 100%;
  }

  .footer__header--faq {
    border-top: 1px solid #d9d9d9;
    margin-bottom: 0;
    padding-bottom: 15px;
    padding-top: 15px;
    position: relative;
  }

  .footer__header--faq.raize {
    margin-top: -1px;
  }

  .footer__header--cross {
    content: '';
    height: 20px;
    position: absolute;
    right: 5px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 20px;
  }

  .footer__header--cross span {
    background-color: #000;
    display: block;
    height: 2px;
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    width: 20px;
  }

  .footer__header--cross span:last-of-type {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  .footer__header--cross span:first-of-type {
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }

  .footer__header--support:not(.active) {
    border-bottom: 1px solid #d9d9d9;
  }

  .footer__menu--faq {
    cursor: pointer;
    display: none;
    margin-bottom: 35px;
  }

  .footer__menu--catalog {
    margin-bottom: 35px;
  }

  .footer__socials {
    margin-top: 35px;
  }

  .footer__header {
    text-transform: uppercase;
  }

  .footer__header--cross {
    display: block;
  }

  .footer__copyright {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 90px;
  }

  .footer__copyright--dev {
    margin-top: 15px;
  }
}

@media screen and (max-width: 768px) {
  .footer__block-three {
    margin-bottom: 20px;
  }

  .ads__info {
    padding: 20px 0 38px 5vw;
  }

  .ads__image img {
    margin-right: 0 !important;
  }

  .rubric__link .rubric {
    height: 250px;
  }

  .rubric__link .rubric__bg {
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
  }

  .rubric__link .rubric__header {
    -webkit-animation: fadeOut 0.3s cubic-bezier(0.33, 1, 0.68, 1) forwards;
    animation: fadeOut 0.3s cubic-bezier(0.33, 1, 0.68, 1) forwards;
    opacity: 0;
  }

  .rubric__link .rubric__arrow svg path {
    fill: #3f3f40 !important;
    color: #3f3f40 !important;
  }

  .rubric__link .rubric__anons--header {
    color: #3f3f40;
    font-weight: 600;
  }

  .rubric__link .rubric__anons,
  .rubric__link .rubric__anons p {
    font-size: 14px;
  }

  .rubric__link .rubric__anons {
    -webkit-animation: fadeIn 0.9s cubic-bezier(0.33, 1, 0.68, 1) forwards;
    animation: fadeIn 0.9s cubic-bezier(0.33, 1, 0.68, 1) forwards;
    display: block !important;
    font-size: 14px;
    height: auto;
    max-width: 90%;
    opacity: 1;
  }

  .rubric__link .rubric__link.active .rubric__bg,
  .rubric__link .rubric__link:hover .rubric__bg {
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
  }

  .container-section {
    padding: 0 1.2rem;
  }
}

@media (max-width: 768px) and (min-width: 320px) {
  .rubric__big {
    font-size: -webkit-calc(0.06329vw + 18.79747px);
    font-size: calc(0.06329vw + 18.79747px);
  }

  .accordion__name,
  .rubric__small {
    font-size: -webkit-calc(0.06329vw + 17.79747px);
    font-size: calc(0.06329vw + 17.79747px);
  }

  .rubrics_slider .swiper-slide .slide__header--rubric {
    font-size: -webkit-calc(0.44304vw + 12.58228px);
    font-size: calc(0.44304vw + 12.58228px);
  }

  .actual_slider .actual_slider--price {
    font-size: -webkit-calc(0.12658vw + 14.59494px);
    font-size: calc(0.12658vw + 14.59494px);
  }

  .section__header {
    font-size: -webkit-calc(2.21519vw + 12.91139px);
    font-size: calc(2.21519vw + 12.91139px);
  }
}

@media (max-width: 768px) and (min-width: 1900px) {
  .rubric__big {
    font-size: 20px;
  }

  .accordion__name,
  .rubric__small {
    font-size: 19px;
  }

  .rubrics_slider .swiper-slide .slide__header--rubric {
    font-size: 21px;
  }

  .actual_slider .actual_slider--price {
    font-size: 17px;
  }

  .section__header {
    font-size: 55px;
  }
}

@media (max-width: 1180px) {
  .header__main {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
}

@media (min-width: 1280px) {
  .header__buttons-item:hover .header__search path:first-child {
    stroke: #fff;
  }

  .header__buttons-item:hover .header__search path:last-child {
    fill: #fff;
  }

  .header__buttons-item:hover .header__cart-svg path {
    stroke: #fff;
  }

  .hhhhh {
    font-size: 64px;
  }
}

@media (max-width: 1024px) {
  .header__cart-count {
    height: 1.0875rem;
    margin-right: -7px;
    margin-top: -7px;
    width: 1.0875rem;
  }

  .about__quote {
    margin-bottom: 40px;
  }

  .about__quote p {
    padding-top: 40px;
  }

  .about__into {
    margin-bottom: 40px;
  }

  .about__into--text {
    margin-top: 20px;
  }

  .about__section--header {
    margin-bottom: 30px;
  }

  .about__collage {
    margin-bottom: 0;
    padding-bottom: 80px;
  }

  .about__collage--block {
    position: unset;
    width: 100%;
  }

  .ads {
    height: auto;
  }

  .cabinets__info {
    max-width: 100%;
    padding-left: 0;
  }

  .cabinets__info--arrow {
    display: none;
  }

  .cabinets__info--arrow,
  .cabinets__info--more {
    margin-left: 0;
  }

  .cabinets__info--header {
    margin-top: 20px;
  }

  .card__image {
    height: 223px;
    text-align: center;
  }

  .catalog__items .catalog__item--blocks {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .catalog__items .catalog__item--block:first-of-type {
    width: 100% !important;
  }

  .catalog__items .catalog__item--block:last-of-type {
    padding: 0 5px !important;
    width: 100% !important;
  }

  .catalog__items .catalog__item {
    width: 100% !important;
  }

  .catalog__filter--blocks {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .category__fast-filters__one {
    height: 40px !important;
  }

  .catalog__new .catalog__accordion--filter {
    max-width: 100%;
  }

  .catalog__seo {
    margin-bottom: 0 !important;
  }

  .catalog__new .cards {
    margin-bottom: 0;
    margin-top: 0;
  }

  .consultation__wrapper {
    padding: 0 !important;
  }

  .contacts__info {
    padding: 40px 0;
  }

  .contacts__block {
    padding-top: 20px;
  }

  .content__double {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 10px;
    padding-top: 20px;
  }

  .content__double--specs {
    margin-bottom: 20px;
  }

  .content__double--block {
    width: 100%;
  }

  .content__double--block--wrapper {
    max-width: 100%;
  }

  .content__double--text {
    width: 100%;
  }

  .content__double--image {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    width: 100%;
  }

  .content__double--image img {
    max-width: 100%;
  }

  .content__double.ltr .content__double--image {
    margin-bottom: 50px;
  }

  .content__double.rtl .content__double--image {
    margin-top: 50px;
  }

  .cooperation__wrapper {
    max-width: 100%;
  }

  .cooperation__lists {
    margin-bottom: 40px;
    margin-top: 50px;
    padding: 0;
  }

  .cooperation__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0;
  }

  .cooperation__list--image {
    margin-bottom: 20px;
  }

  .forms_section {
    padding: 50px 0;
  }

  .forms_section--container {
    max-width: 650px !important;
  }

  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }

  .actual_slider .actual_slider--price {
    color: #9b9b9b;
    font-size: 17px;
    margin-top: 15px;
  }

  .actual_slider--buttons span {
    display: none;
  }

  .actual_slider--buttons svg {
    display: block;
    height: 16px;
    width: 16px;
  }

  .actual_slider--buttons .btn {
    height: 40px;
    padding: 10px 15px;
  }

  .actual_slider--item--wrapper {
    padding: 14px 0;
  }

  .new__slider .limiter {
    padding: 0 1.75rem;
    width: unset;
  }

  .tovar .category__fast-filters__one {
    background: blue;
    border: none;
    -webkit-border-radius: 0 !important;
    border-radius: 0 !important;
    bottom: 65px;
    height: unset;
    left: 0;
    margin: 0;
    position: fixed;
    width: 100%;
    z-index: 99;
  }

  .tovar .category__fast-filters__one svg {
    display: none;
  }

  .tovar .category__fast-filters__one__name {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-align-items: center;
    align-items: center;
    background: #01549a;
    color: #fff;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    font-weight: 400;
    height: 62px;
    -webkit-justify-content: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    text-decoration: none;
    width: 100%;
  }

  .tovar__tab--description {
    margin-bottom: 20px;
  }

  .tovar__tabs {
    display: none;
  }

  .tovar__wrapper {
    margin: unset;
    padding: 0;
  }

  .tovar__wrapper--floated {
    position: fixed;
    top: 0;
  }

  .tovar__wrapper .card__more {
    margin: 20px 0 25px;
    padding: 0;
  }

  .tovar__image {
    background: #f3f3f3;
    height: 40vh;
    margin: 0;
    padding: 18px;
    text-align: center;
  }

  .tovar__specs {
    max-width: unset;
  }

  .bg__image {
    height: 40vw;
  }

  .half__colored:before {
    width: 100vw;
  }

  .section__text {
    margin-top: 0;
  }

  .container__left {
    padding: 0 1.75rem;
  }

  .swiper-button-next,
  .swiper-button-prev {
    display: none !important;
  }

  .tabs ul {
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    max-width: 100vw;
  }

  .tabs {
    margin-bottom: 0;
    margin-top: 0;
  }

  .catalog__filters {
    display: none !important;
  }

  .catalog__accordion--filter {
    display: none;
  }

  .catalog__accordion--filter.active {
    display: block;
  }
}

@media (min-width: 480px) {
  .hhhhh {
    font-size: 18px;
    font-size: -webkit-calc(6vw - 12.8px);
    font-size: calc(6vw - 12.8px);
  }
}

@media (max-width: 1439px) {
  .button--sm {
    padding: 7.5px 18px;
  }
}

@media screen and (max-width: 1280px) {
  .styles_mega-menu__Zu7HT .styles_sidebar-left__i2Dq3 {
    width: 360px;
  }
}

@media (max-width: 992px) {
  .about__main {
    height: 25vh;
  }

  .about__header {
    width: 100%;
  }

  .accordion__wrapper {
    padding: 0;
  }

  .card__buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .card__more,
  .card__text {
    padding-left: 20px;
    padding-right: 20px;
  }

  .card__price {
    font-size: 23px;
    margin-top: 30px;
  }

  .card__header,
  .card__order {
    padding-left: 20px;
    padding-right: 20px;
  }

  .catalog__intro--breadcrumb {
    display: none;
  }

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

  .forms_section--container {
    max-width: 500px !important;
  }

  .actual_slider .actual_slider--text {
    font-size: 13px;
  }

  .actual_slider .actual_slider--name {
    font-size: 18px;
    line-height: 1.1;
    margin-bottom: 10px;
  }

  .new__slider {
    height: 320px;
  }

  .new__slider .swiper-slide {
    height: 300px;
  }

  .new__slider .new__slider--info--logo {
    height: 70px;
    width: 70px;
  }

  .tovar__head {
    display: block;
    padding: 0 1.2rem;
  }

  .tovar__h1 {
    display: none;
  }
}

.faq {
  margin: 0;
}
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq__item {
  background: #f3f6f8;
  border-radius: 8px;
}

.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 16px 18px;
  background: transparent;
  border: 0;
  text-align: left;

  cursor: pointer;
}

.faq__question-text {
  font-size: 18px;
  line-height: 1.25;
}

.faq__icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  position: relative;
}

.faq__icon::before,
.faq__icon::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 2px;
  background: #3a3a3a;
  transform: translate(-50%, -50%);
}

.faq__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq__item.is-open .faq__icon::after {
  display: none; /* превращаем + в - */
}

.faq__answer {
  display: grid;
  grid-template-rows: 0fr;
  padding: 0 18px;
  overflow: hidden;
  transition: grid-template-rows 0.32s ease;
}

.faq__item.is-open .faq__answer {
  grid-template-rows: 1fr;
}

.faq__answer-inner {
  font-size: 16px;
  line-height: 1.35;
  opacity: 0.9;
  min-height: 0;
  overflow: hidden;
  padding-bottom: 16px;
}

@media screen and (min-width: 991px) and (max-width: 1280px) {
  .ads__image img {
    margin-right: -17vw;
  }
}

@media (max-width: 1400px) {
  .ads__image img {
    margin-right: -17vw;
  }
}

@media only screen and (min-width: 48rem) {
  .banner-column {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    -webkit-justify-content: center;
    justify-content: center;
  }

  .banner-image {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    height: auto;
    max-width: 20rem;
    -webkit-order: 1;
    order: 1;
  }
}

@media only screen and (min-width: 64rem) {
  .banner-column {
    -webkit-column-gap: 4rem;
    -moz-column-gap: 4rem;
    column-gap: 4rem;
    grid-template-columns: 1fr -webkit-max-content;
    grid-template-columns: 1fr max-content;
    margin-top: 3rem;
  }

  .banner-image {
    height: auto;
    margin-right: 5rem;
    max-width: 25rem;
  }
}

@media (max-width: 992px) and (min-width: 320px) {
  .card__price {
    font-size: -webkit-calc(0.44304vw + 21.58228px);
    font-size: calc(0.44304vw + 21.58228px);
  }

  .actual_slider .actual_slider--text {
    font-size: -webkit-calc(0.18987vw + 12.39241px);
    font-size: calc(0.18987vw + 12.39241px);
  }

  .actual_slider .actual_slider--name {
    font-size: -webkit-calc(0.06329vw + 17.79747px);
    font-size: calc(0.06329vw + 17.79747px);
  }
}

@media (max-width: 992px) and (min-width: 1900px) {
  .card__price {
    font-size: 30px;
  }

  .actual_slider .actual_slider--text {
    font-size: 16px;
  }

  .actual_slider .actual_slider--name {
    font-size: 19px;
  }
}

@media (max-width: 576px) and (min-width: 320px) {
  .cards .catalog__item--info .catalog__item--price {
    font-size: -webkit-calc(0.06329vw + 16.79747px);
    font-size: calc(0.06329vw + 16.79747px);
  }

  .cards .catalog__item--info .catalog__item--name {
    font-size: -webkit-calc(0.06329vw + 15.79747px);
    font-size: calc(0.06329vw + 15.79747px);
  }
}

@media (max-width: 576px) and (min-width: 1900px) {
  .cards .catalog__item--info .catalog__item--price {
    font-size: 18px;
  }

  .cards .catalog__item--info .catalog__item--name {
    font-size: 17px;
  }
}

@media screen and (max-width: 1200px) {
  .catalog__new .catalog__accordion--filter {
    max-width: 100%;
  }
}

@media screen and (max-width: 1300px) {
  .cooperation__list--image {
    min-width: 70px;
  }

  .cooperation__list--image img {
    width: 50px;
  }
}

@media screen and (max-width: 768px) and (min-width: 320px) {
  .rubric__link .rubric__anons,
  .rubric__link .rubric__anons p {
    font-size: -webkit-calc(0.25316vw + 13.18987px);
    font-size: calc(0.25316vw + 13.18987px);
  }

  .rubric__link .rubric__anons {
    font-size: -webkit-calc(0.12658vw + 13.59494px);
    font-size: calc(0.12658vw + 13.59494px);
  }
}

@media screen and (max-width: 768px) and (min-width: 1900px) {
  .rubric__link .rubric__anons,
  .rubric__link .rubric__anons p {
    font-size: 18px;
  }

  .rubric__link .rubric__anons {
    font-size: 16px;
  }
}

@media (min-width: 1980px) {
  .slide__header {
    font-size: 60px;
  }
}

@media (max-width: 1024px) and (min-width: 320px) {
  .actual_slider .actual_slider--price {
    font-size: -webkit-calc(0.18987vw + 16.39241px);
    font-size: calc(0.18987vw + 16.39241px);
  }
}

@media (max-width: 1024px) and (min-width: 1900px) {
  .actual_slider .actual_slider--price {
    font-size: 20px;
  }
}

@media screen and (min-width: 576px) {
  .new__slider .new__slider--hero img {
    bottom: 0;
    max-height: 100%;
    padding: 35px;
    position: absolute;
    right: 20px;
    top: 0;
  }
}

@media only screen and (max-width: 1440px) and (min-width: 1371px) {
  .svg,
  .svg__inner {
    height: 1.66667vw;
    width: 1.66667vw;
  }
}

@media screen and (max-width: 1024px) {
  .container-section {
    padding: 0 1.75rem;
  }
}

@media screen and (max-width: 578px) {
  .container-section {
    padding: 0 15px;
  }
}

@media screen and (min-width: 2122px) {
  .container__left {
    max-width: unset;
  }
}

@media (max-width: 991px) {
  main {
    padding-top: 70px;
  }
}


/* ===== Карточка товара: липкое меню разделов + нижняя плашка (каркас, итерация 1) ===== */
:root {
  --product-nav-top: 90px;
}

.product-nav {
  position: -webkit-sticky;
  position: sticky;
  top: var(--product-nav-top, 90px);
  z-index: 30;
  background: #015499;
  transition: box-shadow 0.2s ease;
}

.product-nav.is-stuck {
  box-shadow: 0 4px 14px -6px rgba(0, 0, 0, 0.18);
}

/* внутренний блок — центрирован по контенту карточки, всё в одну строку */
.product-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 24px;
  margin-bottom: 25px;
}

.product-nav__list {
  display: flex;
  flex-wrap: nowrap;
  gap: 30px;
  margin: 0;
  padding: 0;
  list-style: none;
  flex: 1 1 auto;
  min-width: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.product-nav__list::-webkit-scrollbar {
  display: none;
}

.product-nav__list li {
  margin: 0;
}

.product-nav .product-nav__list a {
  display: block;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  padding: 16px 0;
  position: relative;
  color: rgba(255, 255, 255, 0.85);
  white-space: nowrap;
  transition: color 0.2s ease;
}

.product-nav .product-nav__list a:hover,
.product-nav .product-nav__list a.active {
  color: #fff;
}

.product-nav .product-nav__list a.active:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 3px;
  background: #fff;
}

.product-nav__aside {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 0 0 auto;
}

.product-nav .product-nav__price {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  white-space: nowrap;
}

.product-nav__cta {
  display: inline-flex;
  align-items: center;
  background: #015499;
  color: #fff;
  font-weight: 600;
  padding: 9px 24px;
  border-radius: 6px;
  white-space: nowrap;
  transition: background 0.2s ease;
}

.product-nav__cta:hover {
  background: #013f73;
  color: #fff;
}

/* внутри синей полосы — белая кнопка с синим текстом + отступы сверху/снизу */
.product-nav .product-nav__cta {
  background: #E94739;
  color: #fff;
  margin: 7px 0;
}

.product-nav .product-nav__cta:hover {
  background: #d33b2e;
  color: #fff;
}

/* стек разделов */
.product-section {
  scroll-margin-top: calc(var(--product-nav-top, 90px) + 70px);
}

.product-section__title {
  color: #015499;
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 600;
  margin-bottom: 20px;
}

.product-reviews {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 992px) {
  .product-reviews {
    grid-template-columns: repeat(2, 1fr);
  }
}

.product-review {
  padding: 20px 22px;
  border: 1px solid rgba(1, 84, 153, 0.12);
  border-radius: 14px;
  background: #fff;
}

.product-review__head {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin-bottom: 6px;
}

.product-review__author {
  font-weight: 600;
  color: #015499;
}

.product-review__rating {
  display: inline-flex;
  gap: 2px;
  font-size: 15px;
  line-height: 1;
}

.product-review__star {
  color: rgba(1, 84, 153, 0.2);
}

.product-review__star.is-filled {
  color: #015499;
}

.product-review__meta {
  color: #6b7178;
  font-size: 14px;
  margin-bottom: 10px;
}

.product-review__text {
  line-height: 1.55;
}

.product-review__photos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.product-review__photo {
  display: block;
  width: 84px;
  height: 84px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(1, 84, 153, 0.12);
}

.product-review__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}

.product-review__photo:hover img {
  transform: scale(1.05);
}

.product-review__date {
  margin-top: 12px;
  color: #6b7178;
  font-size: 13px;
}

.product-reviews__more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

/* Слайдер «Актуальные материалы» — карточки как на /articles/ */
#related-articles .news_slider {
  margin-top: 4px;
}
#related-articles .news_slider .swiper-slide {
  height: auto;
}
#related-articles .awz-news-item {
  height: 100%;
}

/* нижняя плашка цена + КП (моб./планшет) */
.product-mobile-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1001;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 16px;
  background: #fff;
  box-shadow: 0 -4px 18px -6px rgba(0, 0, 0, 0.25);
  transform: translateY(100%);
  transition: transform 0.25s ease;
}

.product-mobile-bar.is-visible {
  transform: translateY(0);
}

.product-mobile-bar__price {
  font-size: 18px;
  font-weight: 600;
  color: #3f3f40;
  white-space: nowrap;
}

.product-mobile-bar__cta {
  flex: 1;
  text-align: center;
  background: #015499;
  color: #fff;
  font-weight: 600;
  padding: 12px 18px;
  border-radius: 6px;
}

.product-mobile-bar__cta:hover {
  color: #fff;
}

@media (max-width: 991px) {
  .product-nav__aside {
    display: none;
  }
  .product-nav__list {
    gap: 22px;
    -webkit-overflow-scrolling: touch;
  }
  .product-nav .product-nav__list a {
    font-size: 14px;
    padding: 13px 0;
  }
  .product-mobile-bar {
    display: flex;
  }
  body.has-product-bar .fab-contact {
    bottom: 84px;
  }
}

@media (max-width: 578px) {
  .product-nav__list {
    gap: 18px;
  }
  .product-nav .product-nav__list a {
    font-size: 13px;
    padding: 12px 0;
  }
  .product-mobile-bar {
    padding: 8px 12px;
    gap: 10px;
  }
  .product-mobile-bar__price {
    font-size: 16px;
  }
  .product-mobile-bar__cta {
    padding: 11px 16px;
  }
}

/* Карточка товара: документы-карточки */
.product-docs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 300px));
  gap: 16px;
}

.product-doc {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  background: #e6eef5;
  border: 1px solid #e6eef5;
  border-radius: 8px;
  text-decoration: none;
  transition: box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.product-doc:hover {
  background: #fff;
  border-color: #015499;
  box-shadow: 0 4px 14px rgba(1, 84, 153, 0.12);
}

.product-doc__media {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: #fff;
  color: #015499;
}

.product-doc:hover .product-doc__media {
  background: #f5f7f9;
}

.product-doc__icon {
  display: block;
}

.product-doc__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.product-doc__name {
  color: #3f3f40;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.3;
  word-break: break-word;
}

.product-doc:hover .product-doc__name {
  color: #015499;
}

.product-doc__size {
  color: #3f3f40;
  opacity: 0.55;
  font-size: 13px;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .product-docs {
    grid-template-columns: 1fr;
  }
}

/* Карточка товара: описание показывается целиком, без тизера «подробнее»/обрезки/затухания */
#description .tovar__tab--full_text {
  max-height: none !important;
  overflow: visible !important;
}

#description .tovar__tab--show-more--wrapper {
  display: none !important;
}

/* Карточка товара: SEO-ссылки «Все товары бренда/категории» — кликабельные чипы */
.product-category-link {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  color: #6b7178;
  font-size: 15px;
}

.category-back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border: 1px solid #01549a;
  border-radius: 5px;
  color: #01549a;
  font-weight: 600;
  line-height: 1.2;
  transition: background 0.2s ease, color 0.2s ease;
}

.category-back-link:hover {
  background: #01549a;
  color: #fff;
}

.category-back-link::after {
  content: '→';
  font-size: 14px;
  line-height: 1;
}

/* Карточка товара: плашка «Нам доверяют» (реальные логотипы клиентов из ИБ 16 + ссылка на главную) */
.product-trust {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  width: 100%;
  margin-top: auto;
  padding: 14px 18px;
  background: #e6eef5;
  border: 1.5px solid #e6eef5;
  border-radius: 10px;
  color: #3f3f40;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.product-trust:hover {
  color: #3f3f40;
}

.product-trust__body {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.product-trust__title {
  font-weight: 700;
  font-size: 16px;
  color: #01549a;
}

.product-trust__arrow {
  margin-left: auto;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #01549a;
  border-radius: 8px;
  font-size: 18px;
  line-height: 1;
  color: #01549a;
  transition: background 0.2s ease, color 0.2s ease;
}

.product-trust:hover .product-trust__arrow {
  background: #01549a;
  color: #fff;
}

.product-trust__text {
  font-size: 12px;
  line-height: 1.3;
  opacity: 0.7;
}

.product-trust__logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  flex-shrink: 0;
}

.product-trust__logo {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  border: 1px solid #e3e3e3;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-trust__logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  padding: 5px;
}

.product-trust__logo--more {
  background: #f0f4f8;
  border-color: #dbe3ec;
  color: #01549a;
  font-weight: 700;
  font-size: 13px;
}

#clients {
  scroll-margin-top: 120px;
}

/* Карточка товара: «ещё» в характеристиках (раскрытие длинных перечислений) */
.specs__more-btn {
  display: inline;
  margin-left: 6px;
  padding: 0;
  border: none;
  background: none;
  color: #01549a;
  font-weight: 600;
  font-size: 0.92em;
  line-height: 1.2;
  cursor: pointer;
  border-bottom: 1px dashed currentColor;
}

.specs__more-btn:hover {
  color: #013f73;
}

/* Карточка товара: фиксированная адаптивная высота фото-блока (без скачков при автосмене слайдов) */
.tovar__block_ .tovar__image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: clamp(300px, 30vw, 520px);
}

.tovar__block_ .tovar__image img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

@media (max-width: 767px) {
  .tovar__block_ .tovar__image {
    height: 260px;
  }
}

/* Карточка товара: блок «Лизинг/Доставка/Оплата/Гарантия» — 4 колонки под hero */
.product-terms {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 0 auto;
  padding: 32px 0 56px;
}

.product-terms__item {
  display: flex;
  flex-direction: column;
  padding: 22px 22px 24px;
  background: #e6eef5;
  border: 1px solid #e6eef5;
  border-radius: 5px;
  color: #3f3f40;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.product-terms__item:hover {
  box-shadow: 0 12px 28px -12px rgba(1, 84, 154, 0.35);
  transform: translateY(-2px);
}

.product-terms__icon {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: 12px;
  background: #fff;
  color: #01549a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.product-terms__title {
  font-weight: 700;
  font-size: 16px;
  color: #3f3f40;
  margin-bottom: 8px;
}

.product-terms__text {
  font-size: 13px;
  line-height: 1.55;
  color: #3f3f40;
  opacity: 0.7;
}

@media (max-width: 1199px) {
  .product-terms {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .product-terms {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .tovar__wrapper--labels {
    text-align: left;
  }
  .product-trust {
    margin-bottom: 20px;
  }
}

/* Карточка товара: кнопка «Запросить КП» — белый фон, синий текст; на hover синий фон + белый текст */
@media (min-width: 1025px) {
  .tovar .tovar__buttons-block .btn__order {
    border: none !important;
  }
  .tovar .tovar__buttons-block .category__fast-filters__one {
    background-color: #fff !important;
    color: #01549a !important;
    border: 1px solid #01549a !important;
    border-radius: 5px !important;
  }
  .tovar .tovar__buttons-block .btn__order:hover .category__fast-filters__one,
  .tovar .tovar__buttons-block .category__fast-filters__one:hover {
    background-color: #01549a !important;
    color: #fff !important;
  }
}

/* Карточка товара: верхний отступ у разделов */
.tovar-tab {
  padding: 0 0 10px;
}

/* Миниатюры/подписи фото — на всю ширину колонки и по левому краю */
.tovar__block_ .tovar__samples-title,
.tovar__block_ .row-addImages {
  width: 100%;
  text-align: left;
}


/* Доп. фото товара — «Примеры снимков» */
.tovar__samples {
  width: 100%;
  margin-top: 18px;
}
.tovar__samples-title {
  font-weight: 600;
  color: #015499;
  margin-bottom: 10px;
}
.tovar__samples-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.tovar__samples-item {
  display: block;
  width: 84px;
  height: 84px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(1, 84, 153, 0.15);
  cursor: pointer;
}
.tovar__samples-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.2s ease;
}
.tovar__samples-item:hover img {
  transform: scale(1.05);
}

/* Карточка товара: адаптив плашки «Нам доверяют» — компактнее, в одну строку */
@media (max-width: 1199px) {
  .product-trust {
    gap: 10px;
    padding: 12px 14px;
  }
  .product-trust__logos {
    gap: 5px;
  }
  .product-trust__logo {
    width: 38px;
    height: 38px;
  }
}


/* Карточка товара: отступ снизу hero на планшете/моб (чипсы не касаются липкого меню) */
@media (max-width: 991px) {
  .tovar .tovar__wrapper {
    padding-bottom: 24px !important;
  }
}

/* Карточка товара: таблицы в описании — современный минималистичный стиль + адаптив карточками */
.tovar__description table {
  width: 100% !important;
  max-width: 100% !important;
  border-collapse: separate !important;
  border-spacing: 0 !important;
  border: 1px solid #e3e3e3 !important;
  border-radius: 5px;
  overflow: hidden;
  margin: 20px 0;
  font-size: 15px;
}

.tovar__description table tr {
  background: transparent !important;
  color: #3f3f40 !important;
}

.tovar__description table th,
.tovar__description table td {
  border: none !important;
  padding: 13px 16px !important;
  text-align: left !important;
  vertical-align: middle;
  color: #3f3f40 !important;
}

.tovar__description table tr:first-child th,
.tovar__description table tr:first-child td {
  background: #eef2f6 !important;
  color: #3f3f40 !important;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  border-bottom: 1px solid #d7dde4 !important;
}

.tovar__description table tr:not(:first-child):nth-child(even) td {
  background: #f7f9fb !important;
}

.tovar__description table tr:not(:first-child):hover td {
  background: #eaf1fa !important;
}

@media (max-width: 767px) {
  .tovar__description table,
  .tovar__description table tbody,
  .tovar__description table tr,
  .tovar__description table td {
    display: block;
    width: 100% !important;
  }
  .tovar__description table tr:first-child {
    display: none;
  }
  .tovar__description table tr {
    margin-bottom: 14px;
    border: 1px solid #e3e3e3;
    border-radius: 8px;
    overflow: hidden;
  }
  .tovar__description table td {
    display: flex !important;
    align-items: baseline;
    justify-content: space-between;
    gap: 14px;
    border: none !important;
    border-bottom: 1px solid #eef1f4 !important;
    background: #fff !important;
    text-align: right !important;
  }
  .tovar__description table tr td:last-child {
    border-bottom: none !important;
  }
  .tovar__description table td::before {
    content: attr(data-label);
    font-weight: 600;
    color: #01549a;
    text-align: left;
    white-space: nowrap;
  }
}

/* Карточка товара: главное фото кликабельно (лайтбокс) */
.tovar__block_ .tovar__image img {
  cursor: zoom-in;
}
