@charset "UTF-8"; /**
 * 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
 */

a {
  color: #ed9f2d;
}

: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 {
  --yellow: #ed9f2d;
  --yellow2: #e29627;
  --yellow3: #dd8608;
  --black: #323232;
  --gray: #959595;
  --white: #ffffff;
  --gray2: #f3f3f3;
  --gray3: #f5f5f5;
  --gray4: #e0e0e0;
  --container-width: 1550px;
  --main-container-padding: 20px;
  --container-final-size: calc(
    var(--container-width) + (var(--main-container-padding) * 2)
  );
  --title-font-family: "HelveticaNeueCyr", sans-serif;
  --default-font-family: "HelveticaNeueCyr", 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(--main-container-padding);
  position: relative;
  z-index: 2;
}

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

.h2Title {
  font-family: var(--title-font-family);
  font-weight: 700;
  font-size: 80px;
  line-height: 100%;
  color: var(--primary-text-color);
}
.h2Title.uppercase {
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  .h2Title {
    font-size: 32px;
  }
}

.h3Title {
  font-family: var(--title-font-family);
  font-weight: 700;
  font-size: 48px;
  line-height: 100%;
  color: var(--primary-text-color);
}
@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.s36 {
  font-size: 36px;
}
.text.s40 {
  font-size: 40px;
}
.text.s48 {
  font-size: 48px;
}
.text.s58 {
  font-size: 58px;
}
.text.s100 {
  font-size: 100px;
}

@media screen and (max-width: 768px) {
  .text.as10 {
    font-size: 10px !important;
  }
  .text.as12 {
    font-size: 12px !important;
  }
  .text.as14 {
    font-size: 14px !important;
  }
  .text.as16 {
    font-size: 16px !important;
  }
  .text.as18 {
    font-size: 18px !important;
  }
  .text.as20 {
    font-size: 20px !important;
  }
  .text.as24 {
    font-size: 24px !important;
  }
  .text.as28 {
    font-size: 28px !important;
  }
  .text.as32 {
    font-size: 32px !important;
  }
  .text.as40 {
    font-size: 40px !important;
  }
}
.text.yellow {
  color: var(--yellow);
}
.text.white {
  color: var(--white);
}
.text.gray {
  color: var(--gray);
}
.text {
  /* custom modifiers */
}
.text.center {
  text-align: center;
}
.text.uppercase {
  text-transform: uppercase;
}
.text.underline {
  text-decoration: underline;
}
.text.nowrap {
  white-space: nowrap;
}

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

.yellowBtn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 50px;
  gap: 10px;
  border-radius: 100px;
  height: 60px;
  width: fit-content;
  background: var(--yellow);
  transition: all 0.3s ease;
}
.yellowBtn * {
  white-space: nowrap;
}
.yellowBtn:hover {
  background: var(--yellow2);
}
.yellowBtn:active {
  background: var(--yellow3);
}

.grayBtn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 50px;
  border-radius: 100px;
  height: 60px;
  width: fit-content;
  background: #504f4e;
  transition: all 0.3s ease;
}
.grayBtn * {
  white-space: nowrap;
}
.grayBtn:hover {
  background: #ed9f2d;
}
.grayBtn:active {
  background: #e29627;
}

.breadCrumbs {
  display: flex;
  align-items: center;
  gap: 15px;
}
.breadCrumbs a {
  color: #828282;
}
.breadCrumbs span {
  color: #bdbdbd;
}

.header {
  display: flex;
  width: 100%;
  align-items: center;
  height: 170px;
  position: sticky;
  top: 0;
  z-index: var(--header-zindex);
  background: #fff;
}
@media screen and (max-width: 1024px) {
  .header {
    height: initial;
  }
  .mainSlider__rightImg {
    display: none !important;
  }
}
.header__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 185px;
  height: 100%;
  background: var(--black);
}
.header__logo.mobile {
  display: none;
}
@media screen and (max-width: 1024px) {
  .header__logo {
    display: none;
  }
  .header__logo.mobile {
    display: flex;
    min-width: 116px;
    height: 96px;
    margin-right: auto;
  }
  .header__logo.mobile img {
    height: 60px;
  }
}
.header__content {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.header__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 65px 30px 55px;
  gap: 50px;
  height: 84px;
}
@media screen and (max-width: 1400px) {
  .header__top {
    padding: 30px 35px 30px 25px;
  }
}
@media screen and (max-width: 1024px) {
  .header__top {
    padding: 0;
    height: 96px;
  }
}
.header__topNav {
  display: flex;
  align-items: center;
  gap: 45px;
}
@media screen and (max-width: 1770px) {
  .header__topNav {
    gap: 25px;
  }
}
@media screen and (max-width: 1024px) {
  .header__topNav {
    display: none;
  }
}
.header__topNav a {
  transition: all 0.3s ease;
}
.header__topNav a:hover {
  color: var(--yellow2);
}
.header__topNav a:active {
  color: var(--yellow3);
}
.header__topRight {
  display: flex;
  align-items: center;
  gap: 120px;
}
@media screen and (max-width: 1835px) {
  .header__topRight {
    gap: 60px;
  }
}
@media screen and (max-width: 1770px) {
  .header__topRight {
    gap: 30px;
  }
}
@media screen and (max-width: 1024px) {
  .header__topRight {
    width: 100%;
    justify-content: end;
    padding-right: 20px;
    gap: 45px;
  }
}
.header__location {
  display: flex;
  align-items: center;
  gap: 4px;
}
@media screen and (max-width: 1660px) {
  .header__location span {
    max-width: 250px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}
@media screen and (max-width: 1400px) {
  .header__location {
    display: none;
  }
}
.header__langSelect {
  display: none;
  align-items: center;
  gap: 6px;
}
.header__langSelect div {
  width: 2px;
  height: 17px;
  background: var(--gray);
}
.header__langSelect a.active {
  color: var(--yellow);
  font-weight: bold;
}
.header__tools {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header__tools a {
  display: flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #ed9f2d;
}
.header__bot {
  display: flex;
  height: 86px;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .header__bot {
    height: 70px;
    width: 100%;
  }
}
@media screen and (max-width: 500px) {
  .header__bot {
    flex-direction: column;
    height: initial;
  }
  .header__bot button,
  .header__bot a {
    height: 70px;
  }
}
.header__catalogBtn {
  display: flex;
  align-items: center;
  height: 100%;
  justify-content: center;
  background: var(--yellow);
  padding: 0 55px;
  gap: 18px;
  transition: all 0.3s ease;
}
.header__catalogBtn--mobile {
  display: none;
}
@media screen and (max-width: 1024px) {
  .header__catalogBtn {
    width: 100%;
    display: none;
  }
  .header__catalogBtn--mobile {
    display: flex;
  }
}
.header__catalogBtn span {
  white-space: nowrap;
}
.header__catalogBtn:hover {
  background: var(--yellow2);
}
.header__catalogBtn:active {
  background: var(--yellow3);
}
@media screen and (max-width: 1400px) {
  .header__catalogBtn {
    padding: 0 25px;
  }
}
.header__searchInput {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  height: 100%;
  border-top: 1px solid var(--gray4);
  border-bottom: 1px solid var(--gray4);
}
.header__searchInput input {
  width: 100%;
  height: 100%;
  border: none;
  outline: none;
  padding: 0 55px 0 25px;
  font-family: var(--default-font-family);
  font-size: 18px;
  color: var(--black);
}
.header__searchInput .header__searchIcon {
  position: absolute;
  top: 50%;
  right: 25px;
  transform: translateY(-50%);
}
.header__searchInput .header__searchIcon path {
  transition: all 0.3s ease;
}
.header__searchInput:has(input:focus) .header__searchIcon path {
  stroke: var(--yellow);
}
@media screen and (max-width: 1024px) {
  .header__searchInput {
    display: none;
  }
  .burgerMenu__wrap .header__searchInput {
    display: flex;
  }
}
.header__downloadCatalogLink {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  height: 100%;
  border-top: 1px solid var(--gray4);
  border-bottom: 1px solid var(--gray4);
  border-left: 1px solid var(--gray4);
  padding: 0 65px;
}
@media screen and (max-width: 1400px) {
  .header__downloadCatalogLink {
    padding: 0 35px;
  }
}
@media screen and (max-width: 1024px) {
  .header__downloadCatalogLink {
    width: 100%;
  }
}
@media screen and (max-width: 500px) {
  .header__downloadCatalogLink {
    border: none;
  }
}
.header__downloadCatalogLink * {
  transition: all 0.3s ease;
}
.header__downloadCatalogLink span {
  white-space: nowrap;
}
.header__downloadCatalogLink:hover span {
  color: var(--yellow2);
}
.header__downloadCatalogLink:hover svg path {
  stroke: var(--yellow2);
}
.header__downloadCatalogLink:active span {
  color: var(--yellow3);
}
.header__downloadCatalogLink:active svg path {
  stroke: var(--yellow3);
}
.header__whatsappLink {
  display: flex;
  align-items: center;
  height: 100%;
  justify-content: center;
  background: var(--yellow);
  padding: 0 65px;
  gap: 18px;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1400px) {
  .header__whatsappLink {
    padding: 0 35px;
  }
}
@media screen and (max-width: 1250px) {
  .header__whatsappLink {
    display: none;
  }
}
.header__whatsappLink span {
  white-space: nowrap;
}
.header__whatsappLink:hover {
  background: var(--yellow2);
}
.header__whatsappLink:active {
  background: var(--yellow3);
}
.header__burgerBtn {
  display: none;
}
@media screen and (max-width: 1024px) {
  .header__burgerBtn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
  }
}
.header__burgerBtn svg:last-child {
  display: none;
}
.header__burgerBtn.active svg:first-child {
  display: none;
}
.header__burgerBtn.active svg:last-child {
  display: flex;
}
.header__searchResults {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #fff;
  flex-direction: column;
  box-shadow: 0px 4px 50px rgba(0, 0, 0, 0.15);
  max-height: 345px;
  overflow: auto;
  display: none;
  opacity: 1;
  transition: all 0.3s ease;
  scrollbar-width: thin;
}
.header__searchResults.active {
  display: flex;
}
.header__searchTitle {
  padding: 40px 30px;
}
@media screen and (max-width: 768px) {
  .header__searchTitle {
    padding: 40px 20px;
  }
}
.header__searchItems {
  display: flex;
  flex-direction: column;
}
.header__searchItem {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 45px 20px 25px;
  gap: 40px;
  border-bottom: 1px solid #e0e0e0;
}
@media screen and (max-width: 1780px) {
  .header__searchItem {
    padding: 20px 25px 20px 25px;
  }
}
@media screen and (max-width: 768px) {
  .header__searchItem {
    padding: 20px;
  }
}
.header__searchItem:first-child {
  border-top: 1px solid #e0e0e0;
}
.header__searchItem:last-child {
  border-bottom: none;
}
.header__searchItemLeft {
  display: flex;
  align-items: center;
  gap: 30px;
}
.header__searchItemImg {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 130px;
}
.header__searchItemImg img {
  max-width: 100%;
  max-height: 90px;
}
.header__searchItemText {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.header__searchItemRight {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header__searchInput-wrapper,
.header__searchInput-wrapper > div,
.header__searchInput .search-page,
.header__searchInput .search-page form {
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 1780px) {
  .header__searchItemRight {
    display: none;
  }
}
.header__catalogPopup {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1550px;
  background: #fff;
  box-shadow: 0px 4px 50px rgba(0, 0, 0, 0.15);
  display: none;
  grid-template-columns: 320px 1fr;
  width: 100%;
  transition: all 0.3s ease;
  opacity: 1;
}
.header__catalogPopup.active {
  display: grid;
}
.header__catalogSidebar {
  background: #ffffff;
  box-shadow: 0px 4px 50px rgba(0, 0, 0, 0.15);
  max-height: calc(100vh - 190px);
  overflow: auto;
  scrollbar-width: thin;
  width: 100%;
  height: 100%;
  max-width: 320px;
  padding: 45px 20px 40px 25px;
}

.header__catalogSidebarItems {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.header__catalogSidebarItem {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  justify-content: space-between;
  padding-bottom: 10px;
  border-bottom: 1px solid transparent;
}
.header__catalogSidebarItemwrap {
  display: flex;
  align-items: center;
  gap: 18px;
}
.header__catalogSidebarItemwrap img {
  max-width: 30px;
}
.header__catalogSidebarItem.active {
  border-bottom: 1px solid var(--yellow);
}
.header__catalogSidebarItem.active span {
  color: var(--yellow);
}
.header__catalogSidebarItem.active svg path {
  stroke: var(--yellow);
}
.header__catalogContent {
  display: flex;
  width: 100%;
  height: 100%;
  max-height: calc(100vh - 190px);
  overflow: auto;
  padding: 55px 65px;
  scrollbar-width: thin;
}
@media screen and (max-width: 1200px) {
  .header__catalogContent {
    padding: 45px 35px;
  }
}
.header__catalogContentItem {
  display: none;
  flex-direction: column;
  gap: 30px;
  width: 100%;
}
.header__catalogContentItem.active {
  display: flex;
}
.header__catalogCols {
  column-count: 4; /* количество колонок */
  column-gap: 100px; /* расстояние между колонками */
  width: 100%;
}
@media screen and (max-width: 1440px) {
  .header__catalogCols {
    column-gap: 50px;
  }
}
.header__catalogCols a {
  margin-bottom: 20px;
  display: flex;
}

.burgerMenu {
  display: none;
}
@media screen and (max-width: 1024px) {
  .search-page {
    display: flex;
    align-items: center;
    padding: 30px 0;
  }
  .burgerMenu__nav {
    padding-top: 50px;
  }
  .about__bolt,
  .aboutProd__sliderNavigation {
    display: none !important;
  }
  .burgerMenu {
    position: fixed;
    top: 96px;
    left: 0;
    min-height: calc(100dvh - 96px);
    max-height: calc(100dvh - 96px);
    width: 100%;
    overflow: auto;
    background: #fff;
    z-index: calc(infinity);
    box-shadow: 0px 4px 50px rgba(0, 0, 0, 0.15);
    transform: translateY(0);
    opacity: 1;
    transition: all 0.3s ease;
  }
  .burgerMenu.active {
    display: flex;
  }
}
.burgerMenu__wrap {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: calc(100dvh - 96px);
  width: 100%;
}
.burgerMenu__searchInput {
  display: flex;
  width: 100%;
  max-width: 100%;
  height: 85px;
  margin-bottom: 65px;
}
.burgerMenu__content {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 65px;
  margin-bottom: 30px;
}
.burgerMenu__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.burgerMenu__location {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  max-width: 280px;
}
.burgerMenu__location * {
  text-align: center;
}
.burgerMenu__whatsappLink {
  display: flex;
  height: 85px;
  margin-top: auto;
}

@starting-style {
  .burgerMenu {
    transform: translateY(100%);
    opacity: 0;
  }
  .header__searchResults,
  .header__catalogPopup {
    opacity: 0;
  }
}
.footer {
  display: flex;
  width: 100%;
  background: #323232;
  padding: 60px 0 40px 0;
}
@media screen and (max-width: 1024px) {
  .footer {
    padding-top: 50px;
  }
}
.footer__wrap {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 80px;
}
@media screen and (max-width: 1440px) {
  .footer__wrap {
    gap: 40px;
  }
}
@media screen and (max-width: 1024px) {
  .footer__wrap {
    flex-direction: column;
    align-items: center;
  }
}
.footer__left {
  display: flex;
  align-items: start;
  gap: 50px;
}
@media screen and (max-width: 1440px) {
  .footer__left {
    gap: 25px;
  }
}
@media screen and (max-width: 1024px) {
  .footer__left {
    flex-direction: column;
    align-items: center;
  }
}
.footer__logo {
  width: 107px;
}
.footer__logo img {
  max-width: 100%;
}
@media screen and (max-width: 1024px) {
  .footer__logo {
    width: 70px;
  }
}
.footer__mainContent {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: start;
}
@media screen and (max-width: 1440px) {
  .footer__mainContent {
    gap: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .footer__mainContent {
    flex-direction: column;
    align-items: center;
  }
}
.footer__topNav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}
.footer__topNav a.mobile {
  display: none;
}
@media screen and (max-width: 1440px) {
  .footer__topNav {
    gap: 25px;
  }
}
@media screen and (max-width: 1024px) {
  .footer__topNav {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .footer__topNav a.mobile {
    display: flex;
  }
}
.footer__botNav {
  display: flex;
  align-items: start;
  gap: 40px;
}
@media screen and (max-width: 1440px) {
  .footer__botNav {
    gap: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .footer__botNav {
    flex-direction: column-reverse;
    align-items: center;
  }
}
.footer__catalogNav {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 15px;
}
@media screen and (max-width: 1024px) {
  .footer__catalogNav a:first-child {
    display: none;
  }
}
.footer__downloadCatalog {
  background: #494949;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 0 25px;
  border-radius: 4px;
}
.footer__cols {
  display: flex;
  align-items: start;
  flex-wrap: wrap;
  gap: 45px;
}
@media screen and (max-width: 1440px) {
  .footer__cols {
    gap: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .footer__cols {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 60px;
  }
}
.footer__cols div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media screen and (max-width: 1024px) {
  .footer__cols div {
    align-items: center;
  }
  .footer__cols div * {
    text-align: center;
  }
}
.footer__right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 1024px) {
  .footer__right {
    align-items: center;
  }
}
.footer__phoneLink {
  display: flex;
  align-items: center;
  gap: 5px;
}
@media screen and (max-width: 1024px) {
  .footer__location {
    display: none;
  }
}
.footer__mobileLocation {
  display: none;
}
@media screen and (max-width: 1024px) {
  .footer__mobileLocation {
    display: flex;
    text-align: center;
  }
}

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

.formModal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  padding: 60px 50px;
  display: flex;
  width: 100%;
  max-width: 915px;
  max-height: 90vh;
  overflow: auto;
  z-index: var(--modals-zindex);
  display: none;
}
@media screen and (max-width: 768px) {
  .formModal {
    top: initial;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
    max-width: 100%;
    padding: 50px 20px 20px 20px;
  }
  .formModal .yellowBtn {
    width: 100%;
  }
}
.formModal.active {
  display: flex;
}
.formModal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 22px;
  height: 22px;
}
.formModal__content {
  display: flex;
  width: 100%;
}
.formModal__content .mainForm__form {
  padding: 0;
}
.formModal__content .mainForm__form::after,
.formModal__content .mainForm__form::before {
  display: none;
}

.mainSlider {
  display: flex;
  align-items: start;
  max-width: 100%;
  --mainSlider-top-height: 570px;
  --mainSlider-bot-height: 234px;
}
.mainSlider__left {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: calc(100% - 414px);
}
@media screen and (max-width: 1440px) {
  .mainSlider__left {
    max-width: 100%;
  }
}
.mainSlider__slider {
  display: flex;
  width: 100%;
  background: #f3f3f3;
  position: relative;
  height: var(--mainSlider-top-height);
}
@media screen and (max-width: 1024px) {
  .mainSlider__slider {
    height: auto;
  }
}
.mainSlider__slide {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f3f3f3;
  gap: 70px;
  width: 100%;
  padding-left: var(--container-padding);
}
@media screen and (max-width: 1440px) {
  .mainSlider__slide {
    padding: 0 var(--container-padding);
  }
}
@media screen and (max-width: 1024px) {
  .mainSlider__slide {
    padding: 60px var(--container-padding) 0 var(--container-padding);
    flex-direction: column;
    align-items: start;
  }
}
.mainSlider__slideMain {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.mainSlider__slideText {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.mainSlider__slideImg {
  display: flex;
  height: var(--mainSlider-top-height);
  aspect-ratio: 1;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .mainSlider__slideImg {
    height: auto;
    aspect-ratio: initial;
    width: 100dvw;
  }
}
.mainSlider__slideImg img:first-child {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  /*max-width: 456px;*/
  /*aspect-ratio: 456/470;*/
}
@media screen and (max-width: 1024px) {
  .mainSlider__slideImg img:first-child {
    max-width: 350px;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
.mainSlider__slideImg img:last-child {
  width: 100%;
  aspect-ratio: 1;
}
@media screen and (max-width: 1024px) {
  .mainSlider__slideImg img:last-child {
    position: static;
    transform: none;
    margin-left: auto;
    max-width: 100%;
    aspect-ratio: initial;
  }
}
@media screen and (max-width: 1024px) {
  .mainSlider__slideImg {
    margin-left: -20px;
    aspect-ratio: initial;
  }
}
.mainSlider__cards {
  display: flex;
  padding-left: var(--container-padding);
  align-items: center;
  gap: 170px;
  width: 100%;
  height: var(--mainSlider-bot-height);
}
.mainSlider__cards .mainSlider__callBlock {
  display: none;
}
@media screen and (max-width: 1440px) {
  .mainSlider__cards {
    height: initial;
    gap: 70px;
  }
}
@media screen and (max-width: 1024px) {
  .mainSlider__cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    padding-top: 50px;
  }
  .mainSlider__cards .mainSlider__callBlock {
    display: flex;
  }
}
@media screen and (max-width: 768px) {
  .mainSlider__cards {
    grid-template-columns: repeat(1, 1fr);
    align-items: center;
    width: calc(100% + 20px);
    margin-left: -20px;
  }
  .mainSlider__cards .mainSlider__callBlock {
    align-items: center;
    justify-content: center;
  }
}
.mainSlider__right {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 414px;
  height: 100%;
}
.mainSlider__right.desktop-small {
  display: none;
}
@media screen and (max-width: 1440px) {
  .mainSlider__right {
    display: none;
  }
  .mainSlider__right.desktop-small {
    display: flex;
    flex-direction: row;
    max-width: 100%;
    height: var(--mainSlider-bot-height);
  }
  .mainSlider__right.desktop-small .mainSlider__rightImg {
    max-height: 100%;
  }
  .mainSlider__right.desktop-small .mainSlider__callBlock {
    min-width: 414px;
  }
}
@media screen and (max-width: 1024px) {
  .mainSlider__right .mainSlider__callBlock {
    display: none;
  }
}
.mainSlider__cardItem {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
@media screen and (max-width: 1440px) {
  .mainSlider__cardItem {
    height: var(--mainSlider-bot-height);
    justify-content: center;
  }
}
@media screen and (max-width: 1024px) {
  .mainSlider__cardItem {
    height: fit-content;
  }
}
@media screen and (max-width: 768px) {
  .mainSlider__cardItem {
    align-items: center;
    padding: 0 20px;
  }
  .mainSlider__cardItem * {
    text-align: center;
  }
}
.mainSlider__cardItemImg {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--gray3);
}
.mainSlider__cardItemImg img {
  width: 24px;
  height: 24px;
}
.mainSlider__cardItemText {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mainSlider__rightImg {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
  height: var(--mainSlider-top-height);
}
.mainSlider__rightImg video {
  max-width: 100%;
}
.mainSlider__rightImg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mainSlider__callBlock {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  align-items: start;
  padding: 40px;
  height: var(--mainSlider-bot-height);
  background: #504f4e;
}
.mainSlider__callBlockText {
  display: flex;
  align-items: center;
  gap: 10px;
}
.mainSlider__callBlockIndicator {
  width: 11px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #4fcd5e;
  box-shadow: 0px 2px 10px #4fcd5e;
}
.mainSlider__callBtn {
  display: flex;
  height: 60px;
  background: transparent;
  border: 1px solid #4fcd5e;
  border-radius: 100px;
  font-family: var(--default-font-family);
  font-size: 18px;
  color: #4fcd5e;
  line-height: 1;
  font-weight: 400;
  align-items: center;
  padding: 0 40px;
}
.mainSlider__sliderNavigation {
  display: flex;
  align-items: center;
  gap: 10px;
  position: absolute;
  left: var(--container-padding);
  z-index: 2;
  bottom: 60px;
}
@media screen and (max-width: 1024px) {
  .mainSlider__sliderNavigation {
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
  }
}
.mainSlider__sliderNav {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  border-radius: 50%;
  aspect-ratio: 1;
  border: 1px solid var(--gray4);
}

.mainCategories {
  width: 100%;
}
.mainCategories__wrap {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
}
.mainCategories__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #e0e0e0;
  border-right: 1px solid #e0e0e0;
}
@media screen and (max-width: 1200px) {
  .mainCategories__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 900px) {
  .mainCategories__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .mainCategories__grid {
    display: none;
  }
}
.mainCategories__card {
  display: flex;
  flex-direction: column;
  gap: 50px;
  align-items: center;
  justify-content: center;
  padding: 30px;
  background: #fff;
  border-bottom: 1px solid #e0e0e0;
  border-left: 1px solid #e0e0e0;
}
.mainCategories__card img {
  max-width: 190px;
}
.mainCategories__slider {
  display: none;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .mainCategories__slider {
    display: flex;
  }
}
.mainCategories__slider .swiper-slide {
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
}
.mainCategories__swiperPagination {
  display: none;
  position: initial;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .mainCategories__swiperPagination {
    display: flex;
  }
}
.mainCategories__swiperPagination .swiper-pagination-bullet {
  transition: all 0.3s ease;
}
.mainCategories__swiperPagination
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 30px;
  background: var(--yellow);
  border-radius: 100px;
}

.mainForm__wrap {
  display: flex;
  width: 100%;
  gap: 0;
  align-items: start;
}
@media screen and (max-width: 768px) {
  .mainForm__wrap {
    flex-direction: column;
  }
}
.mainForm__form {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 955px;
  padding: 60px 70px;
  position: relative;
}
.mainForm__form::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background: #e0e0e0;
}
.mainForm__form::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 50%;
  width: 1px;
  background: #e0e0e0;
}
@media screen and (max-width: 1440px) {
  .mainForm__form {
    padding: 20px 30px;
  }
}
@media screen and (max-width: 1024px) {
  .mainForm__form {
    padding: 0;
  }
  .mainForm__form::after,
  .mainForm__form::before {
    display: none;
  }
}
.mainForm__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 55px;
}
.mainForm__top * {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .mainForm__top {
    margin-bottom: 45px;
  }
}
.mainForm__inputs {
  display: grid;
  width: 100%;
  max-width: 730px;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px 65px;
  margin-bottom: 50px;
}
.mainForm__inputs input {
  border: none;
  outline: none;
  border-bottom: 1px solid #e0e0e0;
  height: 35px;
  font-family: var(--default-font-family);
  font-size: 16px;
  font-weight: 400;
  color: var(--black);
}
@media screen and (max-width: 1100px) {
  .mainForm__inputs {
    flex-direction: column;
    display: flex;
    gap: 35px;
  }
}
@media screen and (max-width: 768px) {
  .mainForm__inputs {
    margin-bottom: 40px;
  }
}
.mainForm__radio {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  width: 100%;
  max-width: 730px;
  margin-bottom: 35px;
}
@media screen and (max-width: 1440px) {
  .mainForm__radio {
    flex-direction: column;
    align-items: start;
    gap: 20px;
  }
}
@media screen and (max-width: 768px) {
  .mainForm__radio {
    align-items: center;
    margin-bottom: 30px;
  }
}
.mainForm__radioBtns {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 500px;
  height: 40px;
  border-radius: 100px;
  overflow: hidden;
  background: #f6f6f6;
}
.mainForm__radioItem {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 40px;
  border-radius: 100px;
  cursor: pointer;
}
.mainForm__radioItem:has(input:checked) {
  background: var(--yellow);
}
.mainForm__radioItem:has(input:checked) span {
  color: var(--white);
}
.mainForm__radioItem input {
  display: none;
}
.mainForm__bottom {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: space-between;
  width: 100%;
  max-width: 730px;
}
@media screen and (max-width: 1440px) {
  .mainForm__bottom {
    flex-direction: column;
    align-items: start;
  }
}
@media screen and (max-width: 768px) {
  .mainForm__bottom {
    align-items: center;
  }
}
.mainForm__checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .mainForm__checkbox {
    max-width: 222px;
  }
}
.mainForm__checkboxIndicator {
  position: relative;
  width: 23px;
  height: 23px;
  min-width: 23px;
}
.mainForm__checkboxIndicator:has(input:checked) svg.checked {
  display: flex;
}
.mainForm__checkboxIndicator:has(input:checked) svg.unchecked {
  display: none;
}
.mainForm__checkboxIndicator svg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.mainForm__checkboxIndicator input {
  width: 23px;
  height: 23px;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.mainForm__checkboxIndicator svg.unchecked {
  display: flex;
}
.mainForm__checkboxIndicator svg.checked {
  display: none;
}
.mainForm__img {
  display: flex;
  width: 100%;
  max-width: 595px;
}
.mainForm__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .mainForm__img {
    width: calc(100% + 40px);
    max-width: calc(100% + 40px);
    margin-left: -20px;
    margin-top: -40px;
  }
}

.mainHistory {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .mainHistory {
    grid-template-columns: 1fr;
  }
}
.mainHistory__img {
  width: 100%;
  height: 645px;
  display: flex;
}
.mainHistory__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 1440px) {
  .mainHistory__img {
    height: 100%;
  }
}
.mainHistory__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
}
.mainHistory__top {
  display: flex;
  flex-direction: column;
  gap: 35px;
  align-items: start;
  justify-content: start;
  padding: 90px 0 90px 90px;
  padding-right: var(--container-padding);
}
@media screen and (max-width: 1440px) {
  .mainHistory__top {
    padding-left: 45px;
  }
}
@media screen and (max-width: 768px) {
  .mainHistory__top {
    padding: 80px 20px 40px 20px;
  }
}
.mainHistory__text {
  display: flex;
  flex-direction: column;
  gap: 25px;
  max-width: 550px;
}
.mainHistory__bot {
  display: flex;
  width: 100%;
  padding: 45px 90px;
  justify-content: space-between;
  gap: 20px;
  background: #504f4e;
  padding-right: var(--container-padding);
}
@media screen and (max-width: 1440px) {
  .mainHistory__bot {
    padding-left: 45px;
  }
}
@media screen and (max-width: 768px) {
  .mainHistory__bot {
    flex-direction: column;
    align-items: center;
    padding: 45px;
    gap: 40px;
  }
}
.mainHistory__botItem {
  display: flex;
  align-items: start;
  flex-direction: column;
  gap: 15px;
}
@media screen and (max-width: 768px) {
  .mainHistory__botItem {
    flex-direction: column;
    align-items: center;
  }
}

@media screen and (max-width: 768px) {
  .mainTrust {
    margin-bottom: 0;
  }
}
.mainTrust__wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
}
@media screen and (max-width: 768px) {
  .mainTrust__wrap {
    display: flex;
    flex-direction: column;
    gap: 45px;
  }
}
.mainTrust__left {
  display: flex;
  align-items: start;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
  padding: 35px 0;
}
@media screen and (max-width: 768px) {
  .mainTrust__left {
    padding: 0;
    gap: 80px;
  }
}
.mainTrust__textContent {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
  max-width: 500px;
  padding-right: 45px;
}
@media screen and (max-width: 768px) {
  .mainTrust__textContent {
    padding: 0;
  }
}
.mainTrust__navigation {
  display: flex;
  justify-content: end;
  gap: 10px;
  width: 100%;
  border-top: 1px solid #e0e0e0;
  padding-top: 40px;
  padding-right: 45px;
}
@media screen and (max-width: 768px) {
  .mainTrust__navigation {
    justify-content: center;
    padding: 40px 0 0 0;
  }
}
.mainTrust__sliderNav {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  border-radius: 50%;
  aspect-ratio: 1;
  border: 1px solid var(--gray4);
}
.mainTrust__slider {
  display: flex;
  width: 100%;
  height: 100%;
  background: #504f4e;
}
@media screen and (max-width: 768px) {
  .mainTrust__slider {
    width: calc(100% + 40px);
    margin-left: -20px;
    display: grid;
    grid-template-rows: 1fr;
  }
}
.mainTrust__slide {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  height: 100%;
  background: #504f4e;
  position: relative;
  overflow: hidden;
  padding: 60px 65px 40px 65px;
}
@media screen and (max-width: 768px) {
  .mainTrust__slide {
    padding: 30px 20px 60px 20px;
  }
}
.mainTrust__slide div {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.mainTrust__slide span {
  position: relative;
  z-index: 2;
}
.mainTrust__slideBg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
}
.mainTrust__slideComma {
  position: relative;
  z-index: 2;
}

.catalog {
  padding-top: 80px;
  overflow: visible;
}
.catalog__wrap {
  width: 100%;
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 60px;
}
@media screen and (max-width: 1200px) {
  .catalog__wrap {
    display: flex;
    flex-direction: column;
  }
}
.catalog__left {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 30px;
}
.catalog__sidebar {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 25px;
  position: sticky;
  top: 190px;
}
.catalog__sidebarItems {
  display: flex;
  width: 100%;
  flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 1200px) {
  .catalog__sidebarItems {
    height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    padding: 0 20px 0 20px;
  }
}
.catalog__sidebarItem {
  display: flex;
  width: 100%;
}
.catalog__right {
  display: flex;
  width: 100%;
  flex-direction: column;
}
.catalog__filters {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 55px 140px;
  width: 100%;
  padding: 60px 80px;
  border: 1px solid #e0e0e0;
  margin-bottom: 80px;
}
@media screen and (max-width: 900px) {
  .catalog__filters {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px 30px;
    gap: 20px;
  }
}
.catalog__input {
  display: flex;
  align-items: end;
  gap: 20px;
}
@media screen and (max-width: 900px) {
  .catalog__input {
    width: 100%;
    flex-direction: column;
    align-items: start;
  }
}
.catalog__input span {
  color: #504f4e;
  white-space: nowrap;
}
.catalog__input input {
  width: 100%;
  display: flex;
  border: none;
  border-bottom: 1px solid #c4c4c4;
  height: 20px;
  font-family: var(--default-font-family);
  font-size: 20px;
  font-weight: 400;
  color: #504f4e;
}
.catalog__input input:focus {
  outline: none;
}
.catalog__select {
  display: flex;
  width: 100%;
  gap: 20px;
  align-items: end;
  height: 20px;
  position: relative;
}
@media screen and (max-width: 900px) {
  .catalog__select {
    width: 100%;
    flex-direction: column;
    align-items: start;
    height: 55px;
  }
}
.catalog__select span {
  color: #504f4e;
}
.catalog__select select {
  display: none;
}
.catalog__select.active .catalog__selectPopup {
  display: flex;
}
.catalog__select.active .catalog__selectValue svg {
  transform: rotateX(180deg);
}
.catalog__selectValue {
  position: relative;
  display: flex;
  width: 100%;
  border-bottom: 1px solid #c4c4c4;
  height: 20px;
  min-height: 20px;
}
.catalog__selectValue svg {
  position: absolute;
  top: -2px;
  right: 0;
  transition: all 0.3s ease;
}
.catalog__selectPopup {
  display: none;
  flex-direction: column;
  align-items: start;
  gap: 20px;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: 100%;
  background: #fff;
  padding: 40px;
  box-shadow: 0px 4px 50px rgba(0, 0, 0, 0.15);
  max-height: 204px;
  overflow: auto;
  scrollbar-width: thin;
  z-index: 1;
}
.catalog__mainContent {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 60px;
}
.catalog__mainTop {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
}
@media screen and (max-width: 900px) {
  .catalog__mainTop {
    flex-direction: column;
    align-items: start;
    gap: 30px;
  }
}
.catalog__titleWrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media screen and (max-width: 900px) {
  .catalog__titleWrap {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
}
.catalog__select2 {
  display: flex;
  align-items: center;
  gap: 30px;
  position: relative;
}
.catalog__select2 > span {
  color: #bdbdbd;
  white-space: nowrap;
}
.catalog__select2 select {
  display: none;
}
.catalog__select2.active .catalog__select2Popup {
  display: flex;
}
.catalog__select2.active .catalog__select2Value svg {
  transform: rotateX(180deg);
}
.catalog__select2Value {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 190px;
  min-width: 190px;
  height: 36px;
  padding: 0 24px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
}
.catalog__select2Value span {
  color: #828282;
}
.catalog__select2Popup {
  display: none;
  flex-direction: column;
  align-items: start;
  gap: 20px;
  width: 100%;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background: #fff;
  padding: 35px 40px;
  box-shadow: 0px 4px 50px rgba(0, 0, 0, 0.15);
  max-height: 194px;
  overflow: auto;
  scrollbar-width: thin;
  z-index: 1;
}
.catalog__productsWrap {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 25px;
}
.catalog__productsTitles {
  display: grid;
  grid-template-columns: 120px 1fr 100px 1fr 170px;
  padding: 0 25px;
  gap: 60px;
}
@media screen and (max-width: 1440px) {
  .catalog__productsTitles {
    gap: 25px;
  }
}
@media screen and (max-width: 900px) {
  .catalog__productsTitles {
    display: flex;
    justify-content: space-between;
  }
  .catalog__productsTitles span:first-child,
  .catalog__productsTitles span:nth-child(4),
  .catalog__productsTitles span:nth-child(5) {
    display: none;
  }
}
.catalog__products {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.catalog__product {
  display: grid;
  grid-template-columns: 120px 1fr 100px 1fr 170px;
  gap: 60px;
  padding: 20px 25px;
  align-items: center;
  border: 1px solid #e0e0e0;
}
.catalog__product:first-child {
  border-top: 1px solid #e0e0e0;
}
@media screen and (max-width: 1440px) {
  .catalog__product {
    gap: 25px;
  }
}
@media screen and (max-width: 900px) {
  .catalog__product {
    display: flex;
    flex-direction: column;
    align-items: start;
  }
  .catalog__product span:nth-child(3) {
    display: none;
  }
}
.catalog__img {
  display: flex;
  width: 100%;
  max-width: 120px;
}
.catalog__img span {
  display: none;
}
.catalog__img img {
  width: 100%;
}
@media screen and (max-width: 900px) {
  .catalog__img {
    max-width: 100%;
    justify-content: space-between;
  }
  .catalog__img img {
    max-width: 120px;
  }
  .catalog__img span {
    display: flex;
  }
}
.catalog__title {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.catalog__count {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 10px;
}
.catalog__count svg {
  min-width: 24px;
}
.catalog__callPrice {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 10px;
}
.catalog__pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 30px;
}
@media screen and (max-width: 900px) {
  .catalog__pagination {
    display: grid;
    gap: 15px;
    grid-template-areas: "a a a b b b" "c d e f g h";
  }
}
.catalog__paginationItem {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  min-width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #e0e0e0;
}
.catalog__paginationItem--special {
  width: fit-content;
  min-width: fit-content;
  border-radius: 100px;
  padding: 0 35px;
}
.catalog__paginationItem--special:first-child {
  grid-area: a;
}
.catalog__paginationItem--special:last-child {
  grid-area: b;
}
@media screen and (max-width: 900px) {
  .catalog__paginationItem--special:last-child {
    margin-left: auto;
  }
}
.catalog__sidebarAccord {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 1200px) {
  .catalog__sidebarAccord {
    border-bottom: 1px solid #e0e0e0;
    border-top: 1px solid #e0e0e0;
    width: calc(100% + 40px);
    margin-left: -20px;
  }
}
.catalog__sidebarAccordBtn {
  display: none;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 55px;
  padding: 0 20px;
}
.catalog__sidebarAccordBtn svg {
  transition: all 0.3s ease;
}
.catalog__sidebarAccordBtn.active svg {
  transform: rotate(90deg);
}
@media screen and (max-width: 1200px) {
  .catalog__sidebarAccordBtn {
    display: flex;
  }
}

.downloadCatalog {
  overflow: visible;
}
.downloadCatalog--big {
  margin-bottom: 0;
}
.downloadCatalog--big .downloadCatalog__wrap {
  border-radius: 0;
  padding: 0 !important;
}
.downloadCatalog--big .downloadCatalog__wrap .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
@media screen and (max-width: 900px) {
  .downloadCatalog--big .downloadCatalog__wrap .container {
    flex-direction: column;
    align-items: start;
    padding-block: 80px;
    gap: 25px;
  }
}
@media screen and (max-width: 900px) {
  .downloadCatalog--big .downloadCatalog__wrap * {
    text-align: left;
  }
}
.downloadCatalog--big .downloadCatalog__right {
  position: relative;
  top: initial;
  left: initial;
  bottom: initial;
  padding: 10px 0;
}
@media screen and (max-width: 900px) {
  .downloadCatalog--big .downloadCatalog__right {
    align-items: start;
    justify-content: start;
  }
}
@media screen and (max-width: 900px) {
  .downloadCatalog--big .downloadCatalog__left {
    align-items: start;
  }
}
.downloadCatalog--big h2 {
  max-width: 540px;
}
.downloadCatalog__textContent {
  display: flex;
  flex-direction: column;
  max-width: 340px;
  gap: 20px;
}
.downloadCatalog__textContent * {
  color: #ac6b0b;
}
.downloadCatalog__wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: var(--yellow);
  padding: 0 0 0 60px;
  border-radius: 20px;
  position: relative;
}
@media screen and (max-width: 900px) {
  .downloadCatalog__wrap {
    flex-direction: column;
    align-items: center;
    padding: 40px 0;
    overflow: hidden;
  }
  .downloadCatalog__wrap * {
    text-align: center;
  }
}
.downloadCatalog__left {
  display: flex;
  align-items: center;
  padding: 40px 0;
  gap: 50px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1200px) {
  .downloadCatalog__left {
    flex-direction: column;
    align-items: start;
    gap: 20px;
  }
}
@media screen and (max-width: 900px) {
  .downloadCatalog__left {
    padding: 0 20px;
    align-items: center;
  }
}
.downloadCatalog__downloadBtn {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 0 55px;
  border-radius: 100px;
  background: #323232;
  width: fit-content;
  height: 60px;
}
.downloadCatalog__right {
  position: absolute;
  bottom: 0;
  right: 115px;
  display: flex;
  z-index: 1;
}
@media screen and (max-width: 900px) {
  .downloadCatalog__right {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    right: initial;
    margin-top: 20px;
  }
  .downloadCatalog__right img {
    max-width: 100%;
  }
}
.downloadCatalog__bg {
  position: absolute;
  bottom: 0;
  right: 30px;
  display: flex;
  max-height: 100%;
  overflow: hidden;
  width: 469px;
  height: 100%;
  z-index: 0;
}
.downloadCatalog__bg svg {
  position: absolute;
  bottom: -30px;
  left: 0;
  width: 100%;
}
@media screen and (max-width: 900px) {
  .downloadCatalog__bg {
    width: 100%;
    right: 0;
  }
  .downloadCatalog__bg svg {
    width: initial;
  }
}

.about {
  width: 100%;
  background: #f5f5f5;
  min-height: 570px;
  display: flex;
  margin-bottom: 0;
}
.about .container {
  min-height: 570px;
}
.about.marb {
  margin-bottom: 80px;
}
.about--4 .about__wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 1024px) {
  .about--4 .about__wrap {
    flex-direction: column;
    display: flex;
  }
}
.about--4 .about__bg {
  left: 10px;
}
.about__wrap {
  display: flex;
  width: 100%;
  align-items: start;
  height: 100%;
  gap: 40px;
  justify-content: space-between;
}
.about__wrap.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 1440px) {
  .about__wrap.grid {
    grid-template-columns: 1fr 550px;
  }
}
@media screen and (max-width: 1200px) {
  .about__wrap.grid {
    grid-template-columns: 1fr 440px;
  }
}
@media screen and (max-width: 1024px) {
  .about__wrap {
    flex-direction: column;
    display: flex;
    gap: 0;
  }
  .about__wrap.grid {
    display: flex;
  }
}
.about__left {
  display: flex;
  flex-direction: column;
  padding-block: 70px;
  position: relative;
  z-index: 3;
}
.about__left.withPadding {
  padding-left: var(--container-padding);
}
.about__titleWrap {
  display: flex;
  flex-direction: column;
  max-width: 630px;
  gap: 25px;
  margin: 45px 0 30px 0;
}
.about__titleWrap.w700 {
  max-width: 700px;
}
@media screen and (max-width: 1024px) {
  .about__titleWrap {
    margin: 60px 0 25px 0;
  }
}
.about__right {
  display: flex;
  height: 100%;
  align-items: start;
  position: relative;
  margin-top: auto;
}
@media screen and (max-width: 1024px) {
  .about__right {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
}
.about__bg {
  position: absolute;
  top: 0;
  left: -100px;
  aspect-ratio: 1;
  height: 100%;
}
.about__bg svg {
  width: 100%;
  aspect-ratio: 1;
  height: 100%;
}
@media screen and (max-width: 1024px) {
  .about__bg {
    left: -20px;
    bottom: 0;
    top: initial;
  }
}
.about__weatherCol {
  display: flex;
  flex-direction: column;
  gap: 60px;
  position: relative;
  z-index: 2;
  margin-right: 90px;
  margin-top: 55px;
  padding-bottom: 20px;
}
.about__weatherCol img {
  max-width: 83px;
  height: fit-content;
}
@media screen and (max-width: 1024px) {
  .about__weatherCol {
    flex-direction: row;
    align-items: center;
    padding-bottom: 0;
    margin: 0;
    margin-bottom: 55px;
    gap: 20px;
  }
}
.about__bolt {
  display: flex;
  width: 100%;
  max-width: 470px;
  aspect-ratio: 470/515;
  margin-top: auto;
  position: relative;
  z-index: 2;
}
.about__bolt img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 425px) {
  .about__bolt {
    max-width: calc(100% + 80px);
    width: calc(100% + 80px);
  }
}
.about__box {
  height: 100%;
  display: flex;
  position: relative;
  z-index: 2;
}
.about__box img {
  height: 100%;
}
.about__box img:last-child {
  display: none;
}
@media screen and (max-width: 1024px) {
  .about__box {
    width: 100%;
    max-width: 550px;
    margin-left: auto;
  }
  .about__box img:first-child {
    display: none;
  }
  .about__box img:last-child {
    display: flex;
    width: 100%;
  }
}
.about__people {
  height: 100%;
  display: flex;
  position: relative;
  margin-left: auto;
  z-index: 2;
}
.about__people img {
  height: 100%;
}
.about__people img:last-child {
  display: none;
}
@media screen and (max-width: 1024px) {
  .about__people {
    width: calc(100% + 40px);
    max-width: calc(100% + 40px);
    margin-left: 0;
  }
  .about__people img:first-child {
    display: none;
  }
  .about__people img:last-child {
    display: flex;
    width: 100%;
    max-width: 550px;
    margin-left: auto;
  }
}
.about__cert {
  height: 100%;
  display: flex;
  position: relative;
  margin-left: auto;
  z-index: 2;
}
.about__cert img {
  height: 100%;
}
.about__cert img:last-child {
  display: none;
}
@media screen and (max-width: 1350px) {
  .about__cert {
    margin-left: -250px;
  }
}
@media screen and (max-width: 1024px) {
  .about__cert {
    width: calc(100% + 40px);
    max-width: calc(100% + 40px);
    margin-left: 0;
  }
  .about__cert img:first-child {
    display: none;
  }
  .about__cert img:last-child {
    display: flex;
    width: 100%;
    max-width: 550px;
    margin-right: auto;
  }
}

.aboutProd {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
  margin-inline: auto;
  align-items: center;
}
.aboutProd--3 {
  background: #f5f5f5;
  margin-bottom: 0;
}
.aboutProd--3 .aboutProd__right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.aboutProd--4 .aboutProd__right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 1024px) {
  .aboutProd {
    display: flex;
    flex-direction: column;
    gap: 80px;
    padding-top: 80px;
  }
}
.aboutProd__left {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding-left: var(--container-padding);
  padding-right: 50px;
  padding-block: 30px;
  gap: 35px;
}
@media screen and (max-width: 1024px) {
  .aboutProd__left {
    padding: 0 20px;
  }
}
.aboutProd__text {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 645px;
}
@media screen and (max-width: 1024px) {
  .aboutProd__text {
    max-width: 100%;
  }
}
.aboutProd__items {
  display: flex;
  align-items: start;
  flex-wrap: wrap;
  gap: 30px 85px;
  max-width: 645px;
}
@media screen and (max-width: 1024px) {
  .aboutProd__items {
    max-width: 100%;
  }
}
@media screen and (max-width: 550px) {
  .aboutProd__items {
    flex-direction: column;
    align-items: center;
  }
}
.aboutProd__item {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.aboutProd__item span:first-child {
  position: relative;
  z-index: 1;
}
.aboutProd__item span:first-child::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -20px;
  width: 70px;
  height: 70px;
  background: #f5f5f5;
  transform: translateY(-50%);
  border-radius: 50%;
  z-index: -1;
}
@media screen and (max-width: 550px) {
  .aboutProd__item {
    flex-direction: column;
    align-items: center;
  }
}
.aboutProd__right {
  height: 100%;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .aboutProd__right {
    max-height: initial;
  }
}
.aboutProd__right.small {
  height: 100%;
}
@media screen and (max-width: 1024px) {
  .aboutProd__right.small {
    max-height: initial;
    aspect-ratio: 393/428;
  }
}
.aboutProd__slide {
  display: flex;
  width: 100%;
  height: 100%;
}
.aboutProd__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.aboutProd__sliderNavigation {
  display: flex;
  align-items: center;
  gap: 10px;
  position: absolute;
  left: 35px;
  bottom: 35px;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .aboutProd__sliderNavigation {
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
  }
}
.aboutProd__sliderNav {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  border-radius: 50%;
  aspect-ratio: 1;
  border: 1px solid var(--gray4);
  background: #fff;
}

.aboutMap .container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .aboutMap .container {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 80px;
  }
}
.aboutMap__mapImg {
  display: flex;
  width: 100%;
}
.aboutMap__mapImg img {
  width: 100%;
}
.aboutMap__content {
  padding-left: 100px;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 25px;
  max-width: 605px;
}
.aboutMap__content.big {
  max-width: 100%;
  gap: 50px;
}
@media screen and (max-width: 1024px) {
  .aboutMap__content {
    padding-left: 0;
  }
}
.aboutMap__text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.aboutMap__table {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
}
.aboutMap__tableItems {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 50px;
}
@media screen and (max-width: 1024px) {
  .aboutMap__tableItems {
    grid-template-columns: 250px 1px 280px;
  }
}
@media screen and (max-width: 768px) {
  .aboutMap__tableItems {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
}
.aboutMap__tableItem {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}
.aboutMap__tableTitle {
  display: flex;
  align-items: center;
  gap: 10px;
}
.aboutMap__tableLine {
  display: flex;
  width: 1px;
  height: 100%;
  background: #e0e0e0;
}
@media screen and (max-width: 768px) {
  .aboutMap__tableLine {
    height: 1px;
    width: 100%;
  }
}

.aboutCert__wrap {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
@media screen and (max-width: 1024px) {
  .aboutCert__wrap {
    flex-direction: column;
    gap: 0;
  }
  .aboutCert__wrap.reverse .aboutCert__left {
    margin-bottom: 0;
  }
  .aboutCert__wrap.reverse .aboutCert__right {
    margin-bottom: 80px;
  }
  .aboutCert__wrap.gap {
    gap: 40px;
  }
}
@media screen and (max-width: 768px) {
  .aboutCert__wrap.reverse .aboutCert__right {
    margin-bottom: 40px;
  }
  .aboutCert__wrap.reverse .aboutCert__pagination {
    margin-bottom: 60px;
  }
}
.aboutCert__left {
  display: flex;
  flex-direction: column;
  gap: 25px;
  width: 100%;
  max-width: 510px;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .aboutCert__left {
    margin-bottom: 85px;
  }
}
.aboutCert__right {
  display: flex;
  width: 100%;
  max-width: 815px;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .aboutCert__right {
    width: calc(100% + 40px);
    max-width: calc(100% + 40px);
    padding: 0 20px;
    margin-bottom: 45px;
  }
}
.aboutCert__slide {
  display: flex;
  width: 100%;
  max-width: 250px;
  aspect-ratio: 250/350;
  overflow: hidden;
}
.aboutCert__slide:last-child {
  margin-right: 0;
}
.aboutCert__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.aboutCert__pagination {
  display: none;
  position: initial;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .aboutCert__pagination {
    display: flex;
  }
}
.aboutCert__pagination .swiper-pagination-bullet {
  transition: all 0.3s ease;
}
.aboutCert__pagination
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 30px;
  background: var(--yellow);
  border-radius: 100px;
}

.aboutYellowBlock {
  width: 100%;
  padding: 45px 0;
  background: var(--yellow);
}
@media screen and (max-width: 768px) {
  .aboutYellowBlock {
    padding: 80px 0;
  }
}
.aboutYellowBlock__wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .aboutYellowBlock__wrap {
    flex-direction: column;
    align-items: start;
  }
}
.aboutYellowBlock__wrap > h2 {
  width: 100%;
  max-width: 257px;
}
@media screen and (max-width: 768px) {
  .aboutYellowBlock__wrap > h2 {
    text-align: center;
    max-width: 100%;
  }
}
.aboutYellowBlock__items {
  display: grid;
  align-items: start;
  grid-template-columns: repeat(3, 1fr);
  gap: 200px;
}
@media screen and (max-width: 1440px) {
  .aboutYellowBlock__items {
    gap: 100px;
  }
}
@media screen and (max-width: 1340px) {
  .aboutYellowBlock__items {
    gap: 50px;
  }
}
@media screen and (max-width: 768px) {
  .aboutYellowBlock__items {
    flex-direction: column;
    display: flex;
    width: 100%;
    align-items: center;
  }
}
.aboutYellowBlock__item {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .aboutYellowBlock__item {
    align-items: center;
  }
}
.aboutYellowBlock__img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 70px;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  background: #e29627;
}
.aboutYellowBlock__img img,
.aboutYellowBlock__img svg {
  width: 24px;
  height: 24px;
}
.aboutYellowBlock__itemText {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .aboutYellowBlock__itemText {
    align-items: center;
  }
  .aboutYellowBlock__itemText * {
    text-align: center;
  }
}

.logistic__wrap {
  display: flex;
  align-items: start;
  gap: 50px;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .logistic__wrap {
    flex-direction: column;
  }
}
.logistic__left {
  display: flex;
  flex-direction: column;
  gap: 25px;
  width: 100%;
  max-width: 445px;
}
.logistic__left.small {
  max-width: 370px;
}
@media screen and (max-width: 1024px) {
  .logistic__left {
    max-width: 100%;
  }
}
.logistic__right {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  max-width: 945px;
  gap: 10px;
}
@media screen and (max-width: 1200px) {
  .logistic__right {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .logistic__right {
    grid-template-columns: repeat(1, 1fr);
  }
}
.logistic__right.col4 {
  grid-template-columns: repeat(4, 1fr);
  max-width: 1200px;
}
@media screen and (max-width: 1440px) {
  .logistic__right.col4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .logistic__right.col4 {
    grid-template-columns: repeat(1, 1fr);
  }
}
.logistic__card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  padding: 40px;
  border: 1px solid var(--yellow);
}
.logistic__card--2 {
  display: flex;
  flex-direction: column;
  gap: 45px;
  padding: 35px;
}
.logistic__card.active {
  background: var(--yellow);
}
.logistic__card.active span:last-child {
  color: #ac6b0b;
}
.logistic__cardText {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.infoBlock {
  padding: 100px 0;
  background: #323232;
}
@media screen and (max-width: 1024px) {
  .infoBlock {
    padding: 80px 0;
  }
}
.infoBlock__wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .infoBlock__wrap {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: start;
  }
}
.infoBlock__left {
  display: flex;
  flex-direction: column;
  gap: 25px;
  width: 100%;
  max-width: 465px;
}
.infoBlock__right {
  display: flex;
  flex-direction: column;
  gap: 25px;
  width: 100%;
  max-width: 630px;
}
.infoBlock__list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 0;
  padding: 0 0 0 20px;
  list-style-type: square;
}

.vacantions {
  background: var(--black);
  padding: 80px 0;
}
.vacantions--2 .vacantions__row {
  grid-template-columns: repeat(3, 1fr);
}
.vacantions--2 .vacantions__left {
  max-width: 432px;
}
.vacantions__wrap {
  display: flex;
  align-items: start;
  gap: 90px;
  justify-content: space-between;
}
@media screen and (max-width: 1440px) {
  .vacantions__wrap {
    flex-direction: column;
    gap: 90px;
  }
}
.vacantions__left {
  display: flex;
  flex-direction: column;
  gap: 25px;
  width: 100%;
  max-width: 380px;
}
@media screen and (max-width: 1440px) {
  .vacantions__left {
    max-width: 100%;
  }
}
.vacantions__table {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 35px;
}
.vacantions__table--mobile {
  display: none;
}
@media screen and (max-width: 425px) {
  .vacantions__table--mobile .yellowBtn {
    width: 100%;
  }
}
.vacantions__table--mobile .vacantions__fileInputValue span {
  max-width: 100%;
}
@media screen and (max-width: 850px) {
  .vacantions__table {
    display: none;
  }
  .vacantions__table--mobile {
    display: flex;
    gap: 50px;
  }
}
.vacantions__row {
  display: grid;
  grid-template-columns: 260px 255px 180px 210px;
  align-items: center;
  width: 100%;
  gap: 55px;
  padding-bottom: 45px;
  border-bottom: 1px solid #494949;
}
@media screen and (max-width: 1440px) {
  .vacantions__row {
    grid-template-columns: 1fr 1fr 1fr 210px;
  }
}
.vacantions__row--titles {
  border-bottom: none;
  padding-bottom: 0;
}
.vacantions__row .yellowBtn {
  width: 100%;
}
.vacantions__fileInputWrap {
  display: flex;
}
.vacantions__fileInputWrap .vacantions__fileInputValue {
  display: none;
}
.vacantions__fileInputWrap.active .vacantions__fileInputValue {
  display: flex;
}
.vacantions__fileInputWrap.active .vacantions__fileInput {
  display: none;
}
.vacantions__fileInput {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.vacantions__fileInput input {
  display: none;
}
.vacantions__fileInputValue {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 10px;
}
.vacantions__fileInputValue svg {
  width: 20px;
  height: 20px;
}
.vacantions__fileInputValue span {
  max-width: 162px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.vacantions__item {
  display: flex;
  flex-direction: column;
  gap: 50px;
  border-bottom: 1px solid #494949;
  padding-bottom: 50px;
}
.vacantions__itemContent {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.page-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 266px;
  background: #f5f5f5;
  margin-bottom: 30px;
}
.page-header__title {
  color: #323232;
  font-weight: bold;
  font-size: 58px;
  margin-top: 40px;
}
.success-message {
  font-weight: bold;
  font-size: 20px;
}
@media (max-width: 540px) {
  .page-header__title {
    font-size: 36px;
  }

  .page-header {
    height: 216px;
  }
}

/*  NEW */
.footer__right {
  display: flex;
  align-items: start;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: 677px;
}
.footer__rightTop {
  display: flex;
  align-items: start;
  gap: 85px;
}
.footer__rightTopLeft {
  display: flex;
  align-items: start;
  flex-direction: column;
  gap: 10px;
}
.footer__rightItem {
  display: flex;
  align-items: start;
  gap: 5px;
}
.footer__rightItem * {
  white-space: nowrap;
}

.footer__rightItem--wrap span:last-child {
  white-space: initial;
}
.footer__rightItems {
  display: flex;
  align-items: start;
  flex-direction: column;
  gap: 10px;
}

.footer__logo {
  min-width: 107px;
}
.footer__left {
  align-items: stretch;
}
.footer__policyLink {
  margin-top: auto;
}

.footer .container {
  display: flex;
  flex-direction: column;
}
.footer__bot {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
  padding: 40px 0 0 0;
}

@media screen and (max-width: 1024px) {
  .footer__left {
    flex-direction: column;
    align-items: center;
  }
  .footer__right {
    align-items: center;
  }
  .footer__rightTop {
    flex-direction: column-reverse;
    align-items: center;
    gap: 20px;
  }
  .footer__rightTopLeft,
  .footer__rightItems {
    flex-direction: column;
    align-items: center;
  }

  .footer__rightItem--wrap {
    display: inline;
    text-align: center;
  }

  .footer__logo {
    min-width: 70px;
  }
}
