/**
 * Swiper 12.0.3
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2025 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: October 21, 2025
 */

:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}
:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}
.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}
.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}
.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}
.swiper-horizontal {
  touch-action: pan-y;
}
.swiper-vertical {
  touch-action: pan-x;
}
.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}
.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}
.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}
/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}
.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}
.swiper-3d {
  perspective: 1200px;
  .swiper-slide,
  .swiper-cube-shadow {
    transform-style: preserve-3d;
  }
}

/* CSS Mode */
.swiper-css-mode {
  > .swiper-wrapper {
    overflow: auto;
    scrollbar-width: none; /* For Firefox */
    -ms-overflow-style: none; /* For Internet Explorer and Edge */
    &::-webkit-scrollbar {
      display: none;
    }
  }
  > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: start start;
  }
  &.swiper-horizontal {
    > .swiper-wrapper {
      scroll-snap-type: x mandatory;
    }
  }
  &.swiper-vertical {
    > .swiper-wrapper {
      scroll-snap-type: y mandatory;
    }
  }
  &.swiper-free-mode {
    > .swiper-wrapper {
      scroll-snap-type: none;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: none;
    }
  }
  &.swiper-centered {
    > .swiper-wrapper::before {
      content: '';
      flex-shrink: 0;
      order: 9999;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: center center;
      scroll-snap-stop: always;
    }
  }
  &.swiper-centered.swiper-horizontal {
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-inline-start: var(--swiper-centered-offset-before);
    }
    > .swiper-wrapper::before {
      height: 100%;
      min-height: 1px;
      width: var(--swiper-centered-offset-after);
    }
  }
  &.swiper-centered.swiper-vertical {
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-block-start: var(--swiper-centered-offset-before);
    }
    > .swiper-wrapper::before {
      width: 100%;
      min-width: 1px;
      height: var(--swiper-centered-offset-after);
    }
  }
}

/* Slide styles start */
/* 3D Shadows */
.swiper-3d {
  .swiper-slide-shadow,
  .swiper-slide-shadow-left,
  .swiper-slide-shadow-right,
  .swiper-slide-shadow-top,
  .swiper-slide-shadow-bottom,
  .swiper-slide-shadow,
  .swiper-slide-shadow-left,
  .swiper-slide-shadow-right,
  .swiper-slide-shadow-top,
  .swiper-slide-shadow-bottom {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
  }
  .swiper-slide-shadow {
    background: rgba(0, 0, 0, 0.15);
  }
  .swiper-slide-shadow-left {
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-right {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-top {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-bottom {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
}
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}
.swiper:not(.swiper-watch-progress),
.swiper-watch-progress .swiper-slide-visible {
  .swiper-lazy-preloader {
    animation: swiper-preloader-spin 1s infinite linear;
  }
}
.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}
.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}
@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Slide styles end */

.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}
.swiper-virtual.swiper-css-mode {
  .swiper-wrapper::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
  }
}
.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 {
    width: 1px;
    height: var(--swiper-virtual-size);
  }
}



:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-top-offset: 50%;
  --swiper-navigation-sides-offset: 4px;
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}
.swiper-button-prev,
.swiper-button-next {
  position: absolute;

  width: var(--swiper-navigation-size);
  height: var(--swiper-navigation-size);

  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
  &.swiper-button-disabled {
    opacity: 0.35;
    cursor: auto;
    pointer-events: none;
  }
  &.swiper-button-hidden {
    opacity: 0;
    cursor: auto;
    pointer-events: none;
  }
  .swiper-navigation-disabled & {
    display: none !important;
  }
  svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform-origin: center;
    fill: currentColor;
    pointer-events: none;
  }
}

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

.swiper-button-prev,
.swiper-button-next {
  top: var(--swiper-navigation-top-offset, 50%);
  margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
}
.swiper-button-prev {
  left: var(--swiper-navigation-sides-offset, 4px);
  right: auto;
  .swiper-navigation-icon {
    transform: rotate(180deg);
  }
}
.swiper-button-next {
  right: var(--swiper-navigation-sides-offset, 4px);
  left: auto;
}
.swiper-horizontal {
  .swiper-button-prev,
  .swiper-button-next,
  ~ .swiper-button-prev,
  ~ .swiper-button-next {
    top: var(--swiper-navigation-top-offset, 50%);
    margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
    margin-left: 0;
  }
  .swiper-button-prev,
  & ~ .swiper-button-prev,
  &.swiper-rtl .swiper-button-next,
  &.swiper-rtl ~ .swiper-button-next {
    left: var(--swiper-navigation-sides-offset, 4px);
    right: auto;
  }
  .swiper-button-next,
  & ~ .swiper-button-next,
  &.swiper-rtl .swiper-button-prev,
  &.swiper-rtl ~ .swiper-button-prev {
    right: var(--swiper-navigation-sides-offset, 4px);
    left: auto;
  }
  .swiper-button-prev,
  & ~ .swiper-button-prev,
  &.swiper-rtl .swiper-button-next,
  &.swiper-rtl ~ .swiper-button-next {
    .swiper-navigation-icon {
      transform: rotate(180deg);
    }
  }
  &.swiper-rtl .swiper-button-prev,
  &.swiper-rtl ~ .swiper-button-prev {
    .swiper-navigation-icon {
      transform: rotate(0deg);
    }
  }
}
.swiper-vertical {
  .swiper-button-prev,
  .swiper-button-next,
  ~ .swiper-button-prev,
  ~ .swiper-button-next {
    left: var(--swiper-navigation-top-offset, 50%);
    right: auto;
    margin-left: calc(0px - (var(--swiper-navigation-size) / 2));
    margin-top: 0;
  }
  .swiper-button-prev,
  ~ .swiper-button-prev {
    top: var(--swiper-navigation-sides-offset, 4px);
    bottom: auto;
    .swiper-navigation-icon {
      transform: rotate(-90deg);
    }
  }
  .swiper-button-next,
  ~ .swiper-button-next {
    bottom: var(--swiper-navigation-sides-offset, 4px);
    top: auto;
    .swiper-navigation-icon {
      transform: rotate(90deg);
    }
  }
}

:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  --swiper-pagination-left: auto;
  --swiper-pagination-right: 8px;
  --swiper-pagination-bottom: 8px;
  --swiper-pagination-top: auto;
  --swiper-pagination-fraction-color: inherit;
  --swiper-pagination-progressbar-bg-color: rgba(0,0,0,0.25);
  --swiper-pagination-progressbar-size: 4px;
  --swiper-pagination-bullet-size: 8px;
  --swiper-pagination-bullet-width: 8px;
  --swiper-pagination-bullet-height: 8px;
  --swiper-pagination-bullet-border-radius: 50%;
  --swiper-pagination-bullet-inactive-color: #000;
  --swiper-pagination-bullet-inactive-opacity: 0.2;
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 4px;
  --swiper-pagination-bullet-vertical-gap: 6px;
  */
}
.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
  &.swiper-pagination-hidden {
    opacity: 0;
  }
  .swiper-pagination-disabled > &,
  &.swiper-pagination-disabled {
    display: none !important;
  }
}
/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}
/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
  .swiper-pagination-bullet {
    transform: scale(0.33);
    position: relative;
  }
  .swiper-pagination-bullet-active {
    transform: scale(1);
  }
  .swiper-pagination-bullet-active-main {
    transform: scale(1);
  }
  .swiper-pagination-bullet-active-prev {
    transform: scale(0.66);
  }
  .swiper-pagination-bullet-active-prev-prev {
    transform: scale(0.33);
  }
  .swiper-pagination-bullet-active-next {
    transform: scale(0.66);
  }
  .swiper-pagination-bullet-active-next-next {
    transform: scale(0.33);
  }
}
.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
  button& {
    border: none;
    margin: 0;
    padding: 0;
    box-shadow: none;
    appearance: none;
  }
  .swiper-pagination-clickable & {
    cursor: pointer;
  }

  &:only-child {
    display: none !important;
  }
}
.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-vertical > .swiper-pagination-bullets,
.swiper-pagination-vertical.swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  transform: translate3d(0px, -50%, 0);
  .swiper-pagination-bullet {
    margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
    display: block;
  }
  &.swiper-pagination-bullets-dynamic {
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    .swiper-pagination-bullet {
      display: inline-block;
      transition:
        200ms transform,
        200ms top;
    }
  }
}
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-horizontal.swiper-pagination-bullets {
  .swiper-pagination-bullet {
    margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
  }
  &.swiper-pagination-bullets-dynamic {
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    .swiper-pagination-bullet {
      transition:
        200ms transform,
        200ms left;
    }
  }
}
.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition:
    200ms transform,
    200ms right;
}
/* Fraction */
.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}
/* Progress */
.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
  position: absolute;
  .swiper-pagination-progressbar-fill {
    background: var(--swiper-pagination-color, var(--swiper-theme-color));
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transform-origin: left top;
  }
  .swiper-rtl & .swiper-pagination-progressbar-fill {
    transform-origin: right top;
  }
  .swiper-horizontal > &,
  &.swiper-pagination-horizontal,
  .swiper-vertical > &.swiper-pagination-progressbar-opposite,
  &.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
    width: 100%;
    height: var(--swiper-pagination-progressbar-size, 4px);
    left: 0;
    top: 0;
  }
  .swiper-vertical > &,
  &.swiper-pagination-vertical,
  .swiper-horizontal > &.swiper-pagination-progressbar-opposite,
  &.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
    width: var(--swiper-pagination-progressbar-size, 4px);
    height: 100%;
    left: 0;
    top: 0;
  }
}
.swiper-pagination-lock {
  display: none;
}

:root {
  /*
  --swiper-scrollbar-border-radius: 10px;
  --swiper-scrollbar-top: auto;
  --swiper-scrollbar-bottom: 4px;
  --swiper-scrollbar-left: auto;
  --swiper-scrollbar-right: 4px;
  --swiper-scrollbar-sides-offset: 1%;
  --swiper-scrollbar-bg-color: rgba(0, 0, 0, 0.1);
  --swiper-scrollbar-drag-bg-color: rgba(0, 0, 0, 0.5);
  --swiper-scrollbar-size: 4px;
  */
}
.swiper-scrollbar {
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  position: relative;
  touch-action: none;
  background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, 0.1));
  .swiper-scrollbar-disabled > &,
  &.swiper-scrollbar-disabled {
    display: none !important;
  }
  .swiper-horizontal > &,
  &.swiper-scrollbar-horizontal {
    position: absolute;
    left: var(--swiper-scrollbar-sides-offset, 1%);
    bottom: var(--swiper-scrollbar-bottom, 4px);
    top: var(--swiper-scrollbar-top, auto);
    z-index: 50;
    height: var(--swiper-scrollbar-size, 4px);
    width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
  }
  .swiper-vertical > &,
  &.swiper-scrollbar-vertical {
    position: absolute;
    left: var(--swiper-scrollbar-left, auto);
    right: var(--swiper-scrollbar-right, 4px);
    top: var(--swiper-scrollbar-sides-offset, 1%);
    z-index: 50;
    width: var(--swiper-scrollbar-size, 4px);
    height: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
  }
}
.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, 0.5));
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  left: 0;
  top: 0;
}
.swiper-scrollbar-cursor-drag {
  cursor: move;
}
.swiper-scrollbar-lock {
  display: none;
}


/* Zoom container styles start */
.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;

  > img,
  > svg,
  > canvas {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
  }
}
/* Zoom container styles end */

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


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




.swiper-thumbs {
  .swiper-slide-thumb-active {
    /* Styles for active thumb slide */
  }
}

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

.swiper-grid > .swiper-wrapper {
  flex-wrap: wrap;
}
.swiper-grid-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}


.swiper-fade {
  &.swiper-free-mode {
    .swiper-slide {
      transition-timing-function: ease-out;
    }
  }
  .swiper-slide {
    pointer-events: none;
    transition-property: opacity;
    .swiper-slide {
      pointer-events: none;
    }
  }
  .swiper-slide-active {
    pointer-events: auto;
    & .swiper-slide-active {
      pointer-events: auto;
    }
  }
}

.swiper.swiper-cube {
  overflow: visible;
}
.swiper-cube {
  .swiper-slide {
    pointer-events: none;
    backface-visibility: hidden;
    z-index: 1;
    visibility: hidden;
    transform-origin: 0 0;
    width: 100%;
    height: 100%;
    .swiper-slide {
      pointer-events: none;
    }
  }
  &.swiper-rtl .swiper-slide {
    transform-origin: 100% 0;
  }
  .swiper-slide-active {
    &,
    & .swiper-slide-active {
      pointer-events: auto;
    }
  }
  .swiper-slide-active,
  .swiper-slide-next,
  .swiper-slide-prev {
    pointer-events: auto;
    visibility: visible;
  }

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

    &:before {
      content: '';
      background: #000;
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      right: 0;
      filter: blur(50px);
    }
  }
}
.swiper-cube {
  .swiper-slide-next + .swiper-slide {
    pointer-events: auto;
    visibility: visible;
  }
}
/* Cube slide shadows start */
.swiper-cube {
  .swiper-slide-shadow-cube.swiper-slide-shadow-top,
  .swiper-slide-shadow-cube.swiper-slide-shadow-bottom,
  .swiper-slide-shadow-cube.swiper-slide-shadow-left,
  .swiper-slide-shadow-cube.swiper-slide-shadow-right {
    z-index: 0;
    backface-visibility: hidden;
  }
}
/* Cube slide shadows end */

.swiper.swiper-flip {
  overflow: visible;
}
.swiper-flip {
  .swiper-slide {
    pointer-events: none;
    backface-visibility: hidden;
    z-index: 1;
    .swiper-slide {
      pointer-events: none;
    }
  }
  .swiper-slide-active {
    &,
    & .swiper-slide-active {
      pointer-events: auto;
    }
  }
}
/* Flip slide shadows start */
.swiper-flip {
  .swiper-slide-shadow-flip.swiper-slide-shadow-top,
  .swiper-slide-shadow-flip.swiper-slide-shadow-bottom,
  .swiper-slide-shadow-flip.swiper-slide-shadow-left,
  .swiper-slide-shadow-flip.swiper-slide-shadow-right {
    z-index: 0;
    backface-visibility: hidden;
  }
}
/* Flip slide shadows end */

.swiper-coverflow {
}

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

.swiper.swiper-cards {
  overflow: visible;
}
.swiper-cards {
  .swiper-slide {
    transform-origin: center bottom;
    backface-visibility: hidden;
    overflow: hidden;
  }
}
:root {
  --beige: #fcf3ea;
  --gray: #f1f2f3;
  --yellow: #f9d54a;
  --white: #fff;
  --white-24: rgba(255, 255, 255, 0.24);
  --white-48: rgba(255, 255, 255, 0.48);
  --white-64: rgba(255, 255, 255, 0.64);
  --black: #012348;
  --black-16: rgba(1, 35, 72, 0.16);
  --black-48: rgba(1, 35, 72, 0.48);
  --black-64: rgba(1, 35, 72, 0.64);
  --black-1: #261c15;
  --container-width: 1304px;
  --container-padding: 8px;
  --container-final-size: calc(var(--container-width) + (var(--container-padding) * 2));
  --title-font-family: 'Gilroy', sans-serif;
  --default-font-family: 'Gilroy', sans-serif;
  --header-zindex: 100;
  --backdrop-zindex: 999;
  --modals-zindex: 1000;
}

body,
html,
p,
h1,
h2,
h3 {
  padding: 0;
  margin: 0;
}

* {
  box-sizing: border-box;
  font-family: var(--default-font-family);
}

a {
  text-decoration: none;
}

html,
body {
  scroll-behavior: smooth;
  background: var(--primary-bg);
  min-height: 100vh;
  scrollbar-gutter: stable;
}

button {
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
}

.container {
  width: 100%;
  max-width: var(--container-final-size);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  position: relative;
  z-index: 2;
}

.section {
  scroll-margin-block: 125px;
  width: 100%;
  overflow: hidden;
  margin-bottom: 127px;
}
@media screen and (max-width: 768px) {
  .section {
    scroll-margin-block: 60px;
    margin-bottom: 64px;
  }
}

.h1Title {
  font-family: var(--default-font-family);
  font-weight: 600;
  font-size: 96px;
  line-height: 110%;
  color: var(--black);
}
.h1Title.uppercase {
  text-transform: uppercase;
}
.h1Title.white {
  color: var(--white);
}
@media screen and (max-width: 768px) {
  .h1Title {
    font-size: 40px;
  }
}

.h2Title {
  font-family: var(--title-font-family);
  font-weight: 600;
  font-size: 64px;
  line-height: 100%;
  color: var(--black);
}
.h2Title.uppercase {
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  .h2Title {
    font-size: 40px;
  }
}

.h3Title {
  font-family: var(--title-font-family);
  font-weight: 700;
  font-size: 48px;
  line-height: 100%;
  color: var(--black);
}
@media screen and (max-width: 768px) {
  .h3Title {
    font-size: 24px;
  }
}

.orangeLink {
  display: flex;
  align-items: center;
  gap: 10px;
}
.orangeLink span {
  color: var(--orange);
  border-bottom: 1px solid var(--orange);
  white-space: nowrap;
}

/*
WEIGHT - .w{number}
SIZE - .s{number}
HEIGHT - .h{number}
ADAPTIVE SIZE - .as{number}
*/
.text {
  font-family: var(--default-font-family);
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  margin: 0;
  color: var(--black);
}
.text.w300 {
  font-weight: 300;
}
.text.w400 {
  font-weight: 400;
}
.text.w500 {
  font-weight: 500;
}
.text.w600 {
  font-weight: 600;
}
.text.w700 {
  font-weight: 700;
}
.text.w800 {
  font-weight: 800;
}
.text.h100 {
  line-height: 100%;
}
.text.h120 {
  line-height: 120%;
}
.text.h130 {
  line-height: 130%;
}
.text.h140 {
  line-height: 140%;
}
.text.h160 {
  line-height: 160%;
}
.text.s10 {
  font-size: 10px;
}
.text.s11 {
  font-size: 11px;
}
.text.s12 {
  font-size: 12px;
}
.text.s14 {
  font-size: 14px;
}
.text.s16 {
  font-size: 16px;
}
.text.s18 {
  font-size: 18px;
}
.text.s20 {
  font-size: 20px;
}
.text.s24 {
  font-size: 24px;
}
.text.s28 {
  font-size: 28px;
}
.text.s32 {
  font-size: 32px;
}
.text.s40 {
  font-size: 40px;
}
.text.s48 {
  font-size: 48px;
}
.text.s100 {
  font-size: 100px;
}
@media screen and (max-width: 768px) {
  .text.as10 {
    font-size: 10px;
  }
  .text.as12 {
    font-size: 12px;
  }
  .text.as14 {
    font-size: 14px;
  }
  .text.as16 {
    font-size: 16px;
  }
  .text.as20 {
    font-size: 20px;
  }
  .text.as24 {
    font-size: 24px;
  }
  .text.as28 {
    font-size: 28px;
  }
  .text.as32 {
    font-size: 32px;
  }
  .text.as40 {
    font-size: 40px;
  }
}
.text.white {
  color: var(--white);
}
.text.blackBlack {
  color: var(--black-1);
}
.text.white-64 {
  color: var(--white-64);
}
.text {
  /* custom modifiers */
}
.text.center {
  text-align: center;
}
.text.uppercase {
  text-transform: uppercase;
}
.text.underline {
  text-decoration: underline;
}
.text.nowrap {
  white-space: nowrap;
}
.text.opacity {
  opacity: 0.8;
}

.hoverOpacity {
  opacity: 1;
  transition: all 0.3s ease;
}
.hoverOpacity:hover {
  opacity: 0.8;
}

.themeSwitch {
  display: flex;
  width: 100%;
  max-width: 48px;
  min-height: 24px;
  padding: 4px;
  overflow: hidden;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
  border: 1px solid var(--primary-border-color);
  border-radius: 100px;
  position: relative;
  cursor: pointer;
}
.themeSwitch input {
  display: none;
}
.themeSwitch svg {
  width: 16px;
}
.themeSwitch svg path {
  transition: all 0.3s ease;
  stroke: var(--black);
}
.themeSwitch span {
  position: absolute;
  width: 16px;
  aspect-ratio: 1;
  background: var(--black);
  border-radius: 50%;
  top: 4px;
  left: 4px;
  transition: all 0.3s ease;
}
.themeSwitch:hover span {
  transform: scale(1.1);
}
.themeSwitch:has(input:checked) span {
  transform: translateX(22px);
}
.themeSwitch:has(input:checked):hover span {
  transform: scale(1.1) translateX(20px);
}

.orangeFillBtn {
  cursor: pointer;
  background: var(--orange);
  min-height: 56px;
  max-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 100px;
  width: fit-content;
  padding: 0 30px;
  transition: all 0.3s ease;
}
.orangeFillBtn span {
  font-family: var(--default-font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  color: var(--white);
  white-space: nowrap;
}
.orangeFillBtn:hover {
  background: #ec895b;
}
@media screen and (max-width: 768px) {
  .orangeFillBtn {
    min-height: 44px;
    max-height: 44px;
    padding: 0 20px;
  }
  .orangeFillBtn span {
    font-size: 14px;
  }
}

.whiteFillBtn {
  cursor: pointer;
  background: var(--black);
  min-height: 56px;
  max-height: 56px;
  display: flex;
  align-items: center;
  border-radius: 100px;
  width: fit-content;
  padding: 0 30px;
  transition: all 0.3s ease;
}
.whiteFillBtn span {
  font-family: var(--default-font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  color: var(--invert-text-color);
  white-space: nowrap;
}
.whiteFillBtn:hover {
  opacity: 0.8;
}
@media screen and (max-width: 768px) {
  .whiteFillBtn {
    min-height: 44px;
    max-height: 44px;
    padding: 0 20px;
  }
  .whiteFillBtn span {
    font-size: 14px;
  }
}

.grayFillBtn {
  cursor: pointer;
  background: var(--secondary-bg);
  min-height: 56px;
  max-height: 56px;
  display: flex;
  align-items: center;
  border-radius: 100px;
  width: fit-content;
  padding: 0 30px;
  transition: all 0.3s ease;
}
.grayFillBtn span {
  font-family: var(--default-font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  color: var(--black);
  white-space: nowrap;
}
.grayFillBtn:hover {
  opacity: 0.8;
}
@media screen and (max-width: 768px) {
  .grayFillBtn {
    min-height: 44px;
    max-height: 44px;
    padding: 0 20px;
  }
  .grayFillBtn span {
    font-size: 14px;
  }
}

.customInput {
  position: relative;
  display: flex;
  width: 100%;
  border-bottom: 1px solid var(--black);
  height: 53px;
  min-height: 53px;
}
.customInput input {
  display: flex;
  width: 100%;
  background: none;
  border: none;
  outline: none;
  color: var(--black);
  font-size: 20px;
  font-weight: 600;
  font-family: var(--default-font-family);
}
.customInput__placeholder {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  transform-origin: left;
  font-weight: 600;
  font-size: 20px;
  line-height: 100%;
  color: var(--black-64);
  transition: all 0.3s ease;
}
.customInput:has(input:focus) .customInput__placeholder, .customInput:not(:has(input:placeholder-shown)) .customInput__placeholder {
  transform: translate(0, -200%) scale(0.7);
}

.customTextarea {
  position: relative;
  display: flex;
  width: 100%;
  border-bottom: 1px solid var(--black);
  height: 100px;
  min-height: 100px;
  padding-top: 10px;
}
.customTextarea textarea {
  display: flex;
  width: 100%;
  background: none;
  border: none;
  outline: none;
  color: var(--black);
  font-size: 16px;
  font-family: var(--default-font-family);
  min-height: 90px;
  padding-bottom: 10px;
  resize: none;
}
.customTextarea__placeholder {
  position: absolute;
  top: 10px;
  left: 0;
  transform-origin: left;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  color: var(--secondary-text-color);
  transition: all 0.3s ease;
}
.customTextarea:has(textarea:focus) .customTextarea__placeholder, .customTextarea:not(:has(textarea:placeholder-shown)) .customTextarea__placeholder {
  transform: translate(0, -100%) scale(0.7);
}

.borderedLabel {
  display: flex;
  font-weight: 500;
  font-size: 14px;
  line-height: 100%;
  text-transform: uppercase;
  color: var(--black);
  padding: 10px;
  border-radius: 100px;
  border: 1px solid var(--primary-border-color);
  width: fit-content;
}
@media screen and (max-width: 768px) {
  .borderedLabel {
    font-size: 12px;
  }
}

.mainVideo {
  min-height: 80vh;
  height: 80vh;
  width: 100%;
  position: relative;
  background: var(--secondary-bg);
  border-radius: 0 0 64px 64px;
  overflow: hidden;
}
.mainVideo__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.borderedBtn {
  cursor: pointer;
  background: transparent;
  border: 1px solid var(--orange);
  min-height: 56px;
  max-height: 56px;
  display: flex;
  align-items: center;
  border-radius: 100px;
  width: fit-content;
  padding: 0 30px;
  transition: all 0.3s ease;
}
.borderedBtn span {
  font-family: var(--default-font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  color: var(--black);
  white-space: nowrap;
}
.borderedBtn:hover {
  background: var(--orange);
}
.borderedBtn:hover span {
  color: var(--white);
}
@media screen and (max-width: 768px) {
  .borderedBtn {
    min-height: 44px;
    max-height: 44px;
    padding: 0 20px;
  }
  .borderedBtn span {
    font-size: 14px;
  }
}

.whiteBorderedBtn {
  cursor: pointer;
  background: transparent;
  border: 1px solid var(--black);
  min-height: 56px;
  max-height: 56px;
  display: flex;
  align-items: center;
  border-radius: 100px;
  width: fit-content;
  padding: 0 30px;
  transition: all 0.3s ease;
}
.whiteBorderedBtn span {
  font-family: var(--default-font-family);
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  color: var(--black);
  white-space: nowrap;
}
.whiteBorderedBtn:hover {
  background: var(--black);
}
.whiteBorderedBtn:hover span {
  color: var(--invert-text-color);
}
@media screen and (max-width: 768px) {
  .whiteBorderedBtn {
    min-height: 44px;
    max-height: 44px;
    padding: 0 20px;
  }
  .whiteBorderedBtn span {
    font-size: 14px;
  }
}

.modalsBackdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(16, 16, 16, 0.6);
  z-index: calc(var(--modals-zindex) - 1);
  display: none;
  opacity: 1;
  transition: opacity 0.3s ease;
}
.modalsBackdrop.active {
  display: flex;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 60px 0 40px 0;
}
.breadcrumbs a {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .breadcrumbs {
    padding: 40px 0 30px 0;
  }
}

.cluster {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: red;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}
.cluster:hover {
  transform: scale(1.2);
}
.cluster span {
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  color: var(--white);
}

.customSelect2,
.customSelectMultiple {
  display: flex;
  position: relative;
  width: 100%;
}
.customSelect2 select,
.customSelectMultiple select {
  display: none;
}
.customSelect2__value,
.customSelectMultiple__value {
  display: grid;
  grid-template-columns: 1fr 24px;
  align-items: center;
  width: 100%;
  gap: 20px;
  border-bottom: 1px solid var(--black);
  height: 56px;
  min-height: 56px;
  color: var(--black);
  font-size: 16px;
  font-family: var(--default-font-family);
  cursor: pointer;
}
.customSelect2__value span,
.customSelectMultiple__value span {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: left;
  white-space: nowrap;
}
.customSelect2__list,
.customSelectMultiple__list {
  position: absolute;
  top: calc(100% + 20px);
  left: 0;
  width: 100%;
  background: var(--bg30);
  padding: 15px 20px;
  border-radius: 24px;
  display: none;
  flex-direction: column;
  z-index: 2;
}
.customSelect2.active .customSelect2__list,
.customSelect2.active .customSelectMultiple__list,
.customSelectMultiple.active .customSelect2__list,
.customSelectMultiple.active .customSelectMultiple__list {
  display: flex;
}
.customSelect2__option,
.customSelectMultiple__option {
  display: flex;
  align-items: start;
  gap: 10px;
  width: 100%;
  padding: 15px 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  font-family: var(--default-font-family);
  color: var(--secondary-text-color);
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: left;
}
.customSelect2__option:hover,
.customSelectMultiple__option:hover {
  color: var(--black);
}
.customSelect2__option svg,
.customSelectMultiple__option svg {
  width: 24px;
  height: 24px;
  min-width: 24px;
}
.customSelect2__option svg:first-child,
.customSelectMultiple__option svg:first-child {
  display: flex;
}
.customSelect2__option svg:nth-child(2),
.customSelectMultiple__option svg:nth-child(2) {
  display: none;
}
.customSelect2__option.active,
.customSelectMultiple__option.active {
  color: var(--black);
}
.customSelect2__option.active svg:first-child,
.customSelectMultiple__option.active svg:first-child {
  display: none;
}
.customSelect2__option.active svg:nth-child(2),
.customSelectMultiple__option.active svg:nth-child(2) {
  display: flex;
}
.customSelect2__placeholder,
.customSelectMultiple__placeholder {
  display: flex;
  width: 100%;
  max-width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.notFound__wrap {
  display: flex;
  flex-direction: column;
  padding-top: 40px;
  gap: 10px;
  align-items: center;
}
.notFound img {
  max-width: 1024px;
  width: 100%;
}
.notFound__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  margin-top: -100px;
}
.notFound__content * {
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .notFound__content {
    margin-top: -50px;
  }
}
@media screen and (max-width: 768px) {
  .notFound__content {
    gap: 20px;
  }
}

body.dark .notFound__wrap img.dark {
  display: initial;
}
body.dark .notFound__wrap img.light {
  display: none;
}

body.light .notFound__wrap img.dark {
  display: none;
}
body.light .notFound__wrap img.light {
  display: initial;
}

.button {
  background-color: var(--black);
  padding: 22px 40px;
  border-radius: 8px;
  align-self: flex-start;
}

.whiteButton {
  padding: 16px 40px;
  border-radius: 8px;
  align-self: flex-start;
  border: 1px solid var(--black);
  justify-content: center;
  display: flex;
  gap: 10px;
}
.whiteButton span {
  display: flex;
  align-items: center;
}

.header {
  display: flex;
  border-bottom: 1px solid var(--black-16);
  position: fixed;
  width: 100%;
  transition: background 0.3s ease !important;
  z-index: 3;
}
.header__img {
  display: flex;
  aspect-ratio: 91/90;
  max-height: 90px;
}
.header__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media screen and (max-width: 1110px) {
  .header__img {
    width: 65px;
    height: 64px;
  }
}
.header__logoContainer {
  display: flex;
  flex-direction: row;
  gap: 48px;
  align-items: center;
}
.header__wrap {
  padding: 12px 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .header__wrap {
    padding: 8px 0;
  }
}
.header__link {
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: center;
  text-align: center;
}
@media screen and (max-width: 1110px) {
  .header__link {
    display: none;
  }
}
.header__contact {
  display: flex;
  flex-direction: row;
  gap: 48px;
}
@media screen and (max-width: 1110px) {
  .header__contact {
    gap: 24px;
  }
}
.header__phone {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}
.header__buttonKredit {
  background-color: var(--black);
  padding: 22px 40px;
  border-radius: 8px;
}
@media screen and (max-width: 1110px) {
  .header__buttonKredit {
    display: none;
  }
}
.header__burger {
  display: none;
}
@media screen and (max-width: 1110px) {
  .header__burger {
    display: flex;
  }
}

.burgerMenu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  max-height: 100dvh;
  overflow: auto;
  background-color: var(--beige);
  z-index: calc(var(--header-zindex) + 2);
  padding: 12px 0 32px 0;
  display: none;
}
.burgerMenu.active {
  display: flex;
}
.burgerMenu .container {
  height: 100%;
}
.burgerMenu__wrap {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.burgerMenu__header {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  padding: 8px 0;
}
.burgerMenu__img {
  display: flex;
  aspect-ratio: 65/64;
  max-height: 64px;
  padding: 8px .burgerMenu__img img;
  padding-width: 100%;
  padding-height: 100%;
}
.burgerMenu__contact {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
}
.burgerMenu__phone {
  gap: 8px;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.burgerMenu__top {
  gap: 40px;
  display: flex;
  flex-direction: column;
}
.burgerMenu__nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  text-align: center;
}
.burgerMenu__contactBot {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
.burgerMenu__botContent {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}
.burgerMenu__socialLink {
  display: flex;
  flex-direction: row;
  gap: 16px;
}

.header--beige {
  background: var(--beige);
  transition: all 0.3s ease;
}

.header--hidden {
  transform: translateY(-100%);
}

.mainBanner {
  display: flex;
  justify-content: center;
}
.mainBanner__img {
  width: 100vw;
  aspect-ratio: 1920/850;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: var(--desktop-img);
  padding-bottom: 146px;
}
@media screen and (max-width: 768px) {
  .mainBanner__img {
    background-image: var(--mobile-img);
    height: 100vh;
    aspect-ratio: 393/720;
  }
}
.mainBanner__title {
  max-width: 640px;
  width: 377px;
}
@media screen and (max-width: 1110px) {
  .mainBanner__title {
    font-size: 40px;
  }
}
@media screen and (max-width: 768px) {
  .mainBanner__title {
    max-width: 377px;
  }
}
.mainBanner__textTitle {
  display: flex;
  padding-top: 280px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .mainBanner__textTitle {
    flex-direction: column;
    text-align: center;
    padding-top: 96px;
    gap: 32px;
    align-items: center;
  }
}
.mainBanner__buttonKredit {
  display: none;
}
@media screen and (max-width: 768px) {
  .mainBanner__buttonKredit {
    display: flex;
    background-color: var(--black);
    border-radius: 8px;
    padding: 22px;
    width: 100%;
    justify-content: center;
  }
}

.about {
  display: flex;
  flex-direction: column;
}
.about__wrap {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .about__wrap {
    flex-direction: column;
  }
}
.about__text {
  max-width: 754px;
  gap: 64px;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .about__text {
    gap: 40px;
  }
}
.about__textContent {
  display: flex;
  flex-direction: column;
  gap: 16px;
  opacity: 0.8;
}
.about__textTop {
  display: flex;
  gap: 24px;
  flex-direction: column;
}
.about__advantages {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1200px) {
  .about__advantages {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
.about__item {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.about__img {
  display: flex;
  aspect-ratio: 424/487;
  border-radius: 16px;
  overflow: hidden;
  max-width: 424px;
  min-height: 433px;
  min-width: 424px;
}
.about__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .about__img {
    max-width: initial;
  }
}

.service {
  display: flex;
  background-color: var(--beige);
  padding: 128px 0;
}
@media screen and (max-width: 768px) {
  .service {
    padding: 64px 0;
  }
}
.service__wrap {
  display: flex;
  flex-direction: column;
  gap: 64px;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .service__wrap {
    gap: 32px;
  }
}
.service__serviceList {
  display: flex;
  flex-direction: row;
  counter-reset: service;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .service__serviceList {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
}
.service__numberItem {
  display: flex;
  background-color: var(--yellow);
  border-radius: 50%;
  width: 64px;
  height: 64px;
  align-items: center;
  justify-content: center;
}
.service__numberItem::before {
  counter-increment: service;
  content: counter(service, decimal-leading-zero);
  color: var(--black);
  font-weight: 600;
  font-family: var(--default-font-family);
  font-size: 24px;
  line-height: 100%;
}
@media screen and (max-width: 768px) {
  .service__numberItem::before {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .service__numberItem {
    height: 40px;
    width: 40px;
  }
}
.service__listItem {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  width: 100%;
  max-width: 314px;
  aspect-ratio: 1/1;
  background-color: var(--white);
  border-top: 4px solid var(--yellow);
  border-radius: 16px;
  padding-top: 40px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .service__listItem {
    width: 184px;
    aspect-ratio: 184/208;
    padding: 24px 16px 0 16px;
    gap: 24px;
  }
}
.service__listItem span {
  word-break: break-word;
}

.affiliateProgram {
  display: flex;
  flex-direction: column;
}
.affiliateProgram__wrap {
  display: flex;
  flex-direction: row;
  gap: 126px;
}
@media screen and (max-width: 1024px) {
  .affiliateProgram__wrap {
    flex-direction: column;
    gap: 32px;
  }
}
.affiliateProgram__title {
  max-width: 424px;
}
.affiliateProgram__content {
  display: flex;
  flex-direction: column;
}
.affiliateProgram__textContainer {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.affiliateProgram__textTopContainer {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (max-width: 768px) {
  .affiliateProgram__textTopContainer {
    gap: 16px;
  }
}
.affiliateProgram__textBottomContainer {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.affiliateProgram__containerButton {
  display: flex;
  flex-direction: row;
  gap: 16px;
}

.bank {
  display: flex;
  flex-direction: column;
}
.bank__img {
  aspect-ratio: 1920/678;
  max-width: 1920px;
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 340px;
  width: 100%;
}
.bank__img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(1, 35, 72, 0.3019607843);
}
.bank__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bank__title {
  display: flex;
  max-width: 863px;
  color: #ffffff;
  z-index: 2;
  text-align: center;
  padding: 0 10px;
}
.bank__wrap {
  display: flex;
  gap: 64px;
  flex-direction: column;
}
.bank__map {
  display: flex;
  position: relative;
}
.bank__mapTitle {
  position: absolute;
  z-index: 2;
  max-width: 1024px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
@media screen and (max-width: 768px) {
  .bank__mapTitle {
    width: 100%;
  }
}

.advantages {
  display: flex;
  flex-direction: column;
  background-color: var(--beige);
  padding: 128px 0;
}
@media screen and (max-width: 768px) {
  .advantages {
    padding: 64px 0;
  }
}
.advantages__wrap {
  display: flex;
  flex-direction: row;
  gap: 126px;
}
@media screen and (max-width: 768px) {
  .advantages__wrap {
    gap: 32px;
    flex-direction: column;
  }
}
.advantages__rightContent {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.advantages__leftContent {
  display: flex;
  flex-direction: column;
  counter-reset: number;
  max-width: 754px;
}
.advantages__contentItem {
  flex-direction: row;
  display: flex;
  gap: 16px;
  border-bottom: 1px solid var(--black-16);
  padding: 32px 0;
}
.advantages__contentItem :first-child {
  padding-top: 0;
}
@media screen and (max-width: 768px) {
  .advantages__contentItem {
    padding: 24px 0;
  }
}
.advantages__numberItem {
  background-color: var(--yellow);
  border-radius: 50%;
  min-width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  display: flex;
}
.advantages__numberItem::before {
  counter-increment: number;
  content: counter(number, decimal-leading-zero);
  color: var(--black);
  font-weight: 600;
  font-family: var(--default-font-family);
  font-size: 14px;
  line-height: 100%;
}
@media screen and (max-width: 768px) {
  .advantages__numberItem::before {
    font-size: 16px;
  }
}

.faq {
  display: flex;
  background-color: var(--beige);
  padding: 128px 0;
}
@media screen and (max-width: 768px) {
  .faq {
    padding: 64px 0;
  }
}
.faq__wrap {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .faq__wrap {
    flex-direction: column;
    gap: 20px;
  }
}
.faq__titleContainer {
  max-width: 533px;
}
.faq__item {
  display: flex;
  flex-direction: column;
  width: 100%;
  border-bottom: 1px solid var(--black-16);
}
.faq__item.active {
  border-bottom: 1px solid var(--black);
}
.faq__itemBtn {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
  padding: 30px 0;
}
.faq__itemBtn span {
  text-align: left;
}
@media screen and (max-width: 768px) {
  .faq__itemBtn {
    padding: 20px 0;
  }
}
.faq__indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  min-width: 32px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--white);
  position: relative;
  overflow: hidden;
  transition: all 0.2s ease;
}
.faq__indicator.active {
  background: var(--yellow);
}
.faq__indicator.active .faq__burgerAccordIndicator::after {
  transform: translateX(-50%) rotate(90deg);
}
.faq__indicator svg {
  position: relative;
  z-index: 4;
  transition: all 0.3s ease;
}
.faq__indicator svg path {
  transition: all 0.3s ease;
}
.faq__indicator::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 3;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: all 0.3s ease;
}
.faq__itemContent {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 16px;
  font-family: var(--default-font-family);
  font-weight: 600;
  font-size: 16px;
  line-height: 160%;
  color: var(--black-64);
  max-width: 754px;
  height: 0;
  padding: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  .faq__itemContent {
    gap: 10px;
    font-size: 14px;
  }
}
.faq__itemContent ul {
  margin: 0;
}
@media screen and (max-width: 768px) {
  .faq__itemContent {
    font-size: 14px;
  }
}
.faq__burgerAccordIndicator {
  width: 10px;
  height: 10px;
  position: relative;
}
.faq__burgerAccordIndicator::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 100px;
  background: var(--black);
  transform: translateY(-50%);
}
.faq__burgerAccordIndicator::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  border-radius: 100px;
  background: var(--black);
  transform: translateX(-50%);
  transition: all 0.3s ease;
}

.conditions {
  display: flex;
}
.conditions__wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 64px;
  flex-direction: column;
}
.conditions__cardsConditions {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
@media screen and (max-width: 1250px) {
  .conditions__cardsConditions {
    flex-direction: column;
  }
}
.conditions__firstCard {
  background-color: var(--yellow);
  border-radius: 16px;
  display: flex;
  flex-direction: row;
  gap: 42px;
  padding: 21px 0 21px 24px;
}
@media screen and (max-width: 1250px) {
  .conditions__firstCard {
    flex-direction: column-reverse;
    gap: 20px;
    padding: 40px 24px;
  }
}
.conditions__imgCard {
  display: flex;
  aspect-ratio: 317/259;
  max-width: 317px;
  width: 100%;
}
.conditions__imgCard img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media screen and (max-width: 1250px) {
  .conditions__imgCard {
    justify-self: center;
  }
}
.conditions__card {
  display: flex;
  flex-direction: column;
  padding: 64px 32px;
  background-color: var(--beige);
  border-radius: 16px;
  max-width: 314px;
  height: 300px;
}
@media screen and (max-width: 1250px) {
  .conditions__card {
    max-width: initial;
    padding: 40px 24px;
    height: initial;
  }
}
.conditions__textFirst {
  padding: 43px 32px 64px 0;
}
@media screen and (max-width: 1250px) {
  .conditions__textFirst {
    padding: 0;
  }
}

.footer {
  display: flex;
  flex-direction: column;
  background-color: var(--black);
}
.footer__wrap {
  display: flex;
  gap: 80px;
  padding-top: 80px;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .footer__wrap {
    padding-top: 64px;
    gap: 64px;
  }
}
.footer__form {
  background-color: var(--white);
  border-radius: 24px;
  display: flex;
  flex-direction: row;
  padding: 48px;
  height: 100%;
  gap: 128px;
}
@media screen and (max-width: 768px) {
  .footer__form {
    flex-direction: column;
    gap: 40px;
  }
}
.footer__formInfo {
  display: flex;
  flex-direction: column;
  gap: 32px;
  min-width: 467px;
}
@media screen and (max-width: 768px) {
  .footer__formInfo {
    gap: 24px;
    min-width: initial;
  }
}
.footer__formInput {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 24px;
}
.footer__logoFooter {
  display: flex;
  aspect-ratio: 121/120;
  max-height: 120px;
}
.footer__logoFooter img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media screen and (max-width: 768px) {
  .footer__logoFooter {
    aspect-ratio: 96/95;
    max-height: 95px;
  }
}
.footer__textContent {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .footer__textContent {
    flex-direction: column;
    gap: 64px;
  }
}
.footer__textRight {
  display: flex;
  flex-direction: column;
  text-align: right;
  gap: 32px;
}
@media screen and (max-width: 768px) {
  .footer__textRight {
    align-items: center;
  }
}
.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer__contact a:hover {
  color: var(--white-64);
}
@media screen and (max-width: 768px) {
  .footer__contact {
    align-items: center;
  }
}
.footer__socialLink {
  gap: 16px;
  display: flex;
  justify-content: flex-end;
}
.footer__botContent {
  padding: 32px 0;
  border-top: 1px solid var(--white-24);
  flex-direction: row;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .footer__botContent {
    flex-direction: column;
    gap: 16px;
  }
}
.footer__developer {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
}
.footer__buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media screen and (max-width: 768px) {
  .footer__buttons {
    gap: 16px;
  }
}
.footer__formRightContent {
  display: flex;
  gap: 48px;
  flex-direction: column;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .footer__formRightContent {
    gap: 40px;
  }
}
.footer__checkBox {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  position: relative;
}
.footer__checkBox input {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
}
.footer__checkBox:has(input:checked) .footer__checkBoxIndicators svg:first-child {
  opacity: 0;
}
.footer__checkBox:has(input:checked) .footer__checkBoxIndicators svg:last-child {
  opacity: 1;
}
.footer__button {
  width: 100%;
}
.footer__formBotContent {
  display: flex;
  gap: 24px;
  flex-direction: column;
}
.footer__socialItem {
  display: flex;
}
.footer__socialItem svg:hover {
  fill: var(--white);
}
.footer__socialItem svg:hover path {
  fill: var(--black);
}
.footer__checkBoxIndicators {
  display: flex;
  width: 20px;
  height: 20px;
  min-width: 20px;
  position: relative;
}
.footer__checkBoxIndicators svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  transition: all 0.3s ease;
}
.footer__checkBoxIndicators svg:last-child {
  opacity: 0;
}

.map {
  display: flex;
  width: 100%;
  min-height: 640px;
}
.map .map__markers {
  display: none;
}
.map ymaps3.ymaps3--map-container {
  width: 100%;
  height: 640px;
}
.map__markerPopup {
  background-color: white;
  padding: 32px;
  min-width: 340px;
  gap: 34px;
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  display: none;
}
@media screen and (max-width: 768px) {
  .map__markerPopup {
    padding: 16px;
    gap: 40px;
  }
}
.map__markerPopupTop {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.map__markerPopupBot {
  display: flex;
  align-items: center;
  gap: 8px;
}
.map__marker {
  width: 40px;
  height: 40px;
  position: relative;
  display: flex;
}
.map__marker.active {
  z-index: 2;
}
.map__marker.active .map__markerPopup {
  display: flex;
}

.modalsBackdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: calc(var(--modals-zindex) - 1);
  opacity: 1;
  transition: all 0.3s ease;
  display: none;
}
.modalsBackdrop.active {
  display: flex;
}

.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--white);
  z-index: var(--modals-zindex);
  opacity: 1;
  transition: all 0.3s ease;
  display: none;
  max-height: 80dvh;
  overflow: auto;
}
.modal.active {
  display: flex;
}
.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
}
@media (max-width: 768px) {
  .modal__close {
    top: 12px;
    right: 12px;
  }
}

@starting-style {
  .modal,
  .modalsBackdrop {
    opacity: 0;
  }
}
.requestModal {
  padding: 64px 48px;
  width: 100%;
  max-width: 500px;
  border-radius: 24px;
}
@media (max-width: 768px) {
  .requestModal {
    max-width: 100%;
    border-radius: 24px 24px 0 0;
    top: initial;
    bottom: 0;
    transform: none;
    left: 0;
    max-height: 90dvh;
    overflow: auto;
    padding: 48px 24px;
  }
}
.requestModal__wrap {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (max-width: 768px) {
  .requestModal__wrap {
    gap: 24px;
  }
}
.requestModal__top {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.requestModal__inputs {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.requestModal__formRightContent {
  display: flex;
  gap: 48px;
  flex-direction: column;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .requestModal__formRightContent {
    gap: 40px;
  }
}
.requestModal__formInput {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 24px;
}
.requestModal__formBotContent {
  display: flex;
  gap: 24px;
  flex-direction: column;
}
.requestModal__checkBoxIndicators {
  display: flex;
  width: 20px;
  height: 20px;
  min-width: 20px;
  position: relative;
}
.requestModal__checkBoxIndicators svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  transition: all 0.3s ease;
}
.requestModal__checkBoxIndicators svg:last-child {
  opacity: 0;
}
.requestModal__checkBox {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  position: relative;
}
.requestModal__checkBox input {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
}
.requestModal__checkBox:has(input:checked) .footer__checkBoxIndicators svg:first-child {
  opacity: 0;
}
.requestModal__checkBox:has(input:checked) .footer__checkBoxIndicators svg:last-child {
  opacity: 1;
}
.requestModal__button {
  width: 100%;
}


.center {
    text-align:center;
}

.loader {
  /* Анимация: имя, время, тип, цикл */
  animation: rotation 1s linear infinite;
}