@charset "UTF-8";/**
 * Swiper 12.1.2
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2026 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: February 18, 2026
 */

: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-wrapper > .swiper-slide:first-child {
      margin-inline-start: var(--swiper-slides-offset-before);
      scroll-margin-inline-start: var(--swiper-slides-offset-before);
    }
    > .swiper-wrapper > .swiper-slide:last-child {
      margin-inline-end: var(--swiper-slides-offset-after);
    }
  }
  &.swiper-vertical {
    > .swiper-wrapper {
      scroll-snap-type: y mandatory;
    }
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-block-start: var(--swiper-slides-offset-before);
      scroll-margin-block-start: var(--swiper-slides-offset-before);
    }
    > .swiper-wrapper > .swiper-slide:last-child {
      margin-block-end: var(--swiper-slides-offset-after);
    }
  }
  &.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 {
  --white: #fff;
  --black: #261c15;
  --gray: #f3f3f3;
  --yellow: #ff0;
  --orange: #f60;
  --brown: #40342c;
  --black-80: rgba(38, 28, 21, 0.8);
  --black-64: rgba(38, 28, 21, 0.64);
  --black-48: rgba(38, 28, 21, 0.48);
  --black-24: rgba(38, 28, 21, 0.24);
  --black-16: rgba(38, 28, 21, 0.16);
  --black-8: rgba(38, 28, 21, 0.08);
  --black-4: rgba(38, 28, 21, 0.04);
  --white-80: rgba(255, 255, 255, 0.8);
  --white-64: rgba(255, 255, 255, 0.64);
  --white-48: rgba(255, 255, 255, 0.48);
  --white-32: rgba(255, 255, 255, 0.32);
  --white-24: rgba(255, 255, 255, 0.24);
  --white-16: rgba(255, 255, 255, 0.16);
  --white-8: rgba(255, 255, 255, 0.08);
  --white-4: rgba(255, 255, 255, 0.04);
  --hover-orange: #ff8432;
  --container-width: 1632px;
  --container-padding: 16px;
  --container-final-size: calc(var(--container-width) + (var(--container-padding) * 2));
  --title-font-family: 'Manrope', sans-serif;
  --default-font-family: 'Manrope', 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: 144px;
}
@media screen and (max-width: 768px) {
  .section {
    scroll-margin-block: 60px;
    margin-bottom: 78px;
  }
}

.h1Title {
  font-family: var(--title-font-family);
  font-weight: 800;
  font-size: 120px;
  line-height: 100%;
  color: var(--black);
}
.h1Title.uppercase {
  text-transform: uppercase;
}
.h1Title.white {
  color: var(--white);
}
.h1Title .orange {
  color: var(--orange);
}
@media screen and (max-width: 768px) {
  .h1Title {
    font-size: 34px;
  }
}

.h1TitleV2 {
  font-family: var(--title-font-family);
  font-weight: 800;
  font-size: 80px;
  line-height: 100%;
  color: var(--black);
}
@media (max-width: 768px) {
  .h1TitleV2 {
    font-size: 32px;
    margin-bottom: -8px;
  }
}

.h2Title {
  font-family: var(--title-font-family);
  font-weight: 800;
  font-size: 64px;
  line-height: 100%;
  color: var(--black);
}
.h2Title.uppercase {
  text-transform: uppercase;
}
.h2Title.white {
  color: var(--white);
}
.h2Title .orange {
  color: var(--orange);
}
@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(--black);
}
.h3Title.white {
  color: var(--white);
}
.h3Title .orange {
  color: var(--orange);
}
@media screen and (max-width: 768px) {
  .h3Title {
    font-size: 28px;
  }
}

.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.orange {
  color: var(--orange);
}
.text.white-48 {
  color: var(--white-48);
}
.text.white-64 {
  color: var(--white-64);
}
.text.white-80 {
  color: var(--white-80);
}
.text.black-48 {
  color: var(--black-48);
}
.text.black-64 {
  color: var(--black-64);
}
.text.black-80 {
  color: var(--black-80);
}
.text.yellow {
  color: var(--yellow);
}
.text {
  /* custom modifiers */
}
.text.center {
  text-align: center;
}
.text.uppercase {
  text-transform: uppercase;
}
.text.underline {
  text-decoration: underline;
}
.text .underline {
  text-decoration: underline;
}
.text.nowrap {
  white-space: nowrap;
}

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

.blackBorderBtn {
  border: 1px solid var(--black);
  padding: 19px 24px;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.blackBorderBtn:hover {
  background-color: var(--black);
}
.blackBorderBtn:hover span {
  color: var(--white) !important;
}
.blackBorderBtn:disabled {
  opacity: 0.64;
}

.customInput {
  position: relative;
  display: flex;
  width: 100%;
  border-bottom: 1px solid var(--primary-text-color);
  height: 64px;
  min-height: 64px;
  background-color: var(--white);
  align-items: center;
  padding: 4px 4px 4px 24px;
  max-width: 445px;
  border-radius: 100px;
}
@media screen and (max-width: 768px) {
  .customInput {
    max-width: initial;
    height: 54px;
    min-height: 54px;
    padding: 4px 4px 4px 16px;
  }
}
.customInput input {
  display: flex;
  width: 100%;
  background: none;
  border: none;
  outline: none;
  font-size: 16px;
  font-family: var(--default-font-family);
  padding: 0 10px;
  position: relative;
  z-index: 99;
}
@media screen and (max-width: 768px) {
  .customInput input {
    font-size: 14px;
  }
}
.customInput__placeholder {
  position: absolute;
  top: 50%;
  left: 58px;
  transform: translate(0, -50%);
  transform-origin: left;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  color: var(--black-64);
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  .customInput__placeholder {
    left: 50px;
    font-size: 14px;
  }
}
.customInput__phoneIcon {
  display: flex;
}
.customInput__button {
  display: flex;
  background-color: var(--orange);
  height: 100%;
  align-items: center;
  padding: 0 24px;
  border-radius: 100px;
}
@media screen and (max-width: 768px) {
  .customInput__button {
    padding: 0 20px;
  }
}
.customInput__button:hover {
  background-color: var(--hover-orange);
}
.customInput__button:disabled {
  opacity: 0.64;
}
.customInput:has(input:focus) .customInput__placeholder, .customInput:not(:has(input:placeholder-shown)) .customInput__placeholder {
  transform: translate(0, -200%) scale(0.7);
}
@media screen and (max-width: 768px) {
  .customInput:has(input:focus) .customInput__placeholder, .customInput:not(:has(input:placeholder-shown)) .customInput__placeholder {
    transform: translate(0, -180%) scale(0.8);
  }
}

.footerInput {
  position: relative;
  display: flex;
  width: 100%;
  height: 64px;
  min-height: 64px;
  background-color: var(--black-4);
  align-items: center;
}
@media screen and (max-width: 768px) {
  .footerInput {
    max-width: initial;
    height: 60px;
    min-height: 60px;
  }
}
.footerInput input {
  display: flex;
  width: 100%;
  background: none;
  border: none;
  outline: none;
  font-weight: 600;
  font-size: 16px;
  font-family: var(--default-font-family);
  padding: 0 16px;
}
@media (max-width: 768px) {
  .footerInput input {
    font-size: 14px;
  }
}
.footerInput__placeholder {
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translate(0, -50%);
  transform-origin: left;
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  color: var(--black-64);
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .footerInput__placeholder {
    font-size: 14px;
  }
}
.footerInput:has(input:focus) .footerInput__placeholder, .footerInput:not(:has(input:placeholder-shown)) .footerInput__placeholder {
  transform: translate(0, -180%) scale(0.8);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  padding: 180px 0 32px 0;
  background-color: transparent;
}
.breadcrumbs a {
  display: flex;
  align-items: center;
  text-decoration: none !important;
}
.breadcrumbs.withoutPadding {
  padding: 0;
  margin: 0 calc(var(--container-padding) * -1);
}
.breadcrumbs.withoutPadding * {
  margin: 0;
}
@media screen and (max-width: 768px) {
  .breadcrumbs {
    padding: 140px 0 24px 0;
  }
}

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

.fileInput {
  display: flex;
  align-items: center;
  cursor: pointer;
  max-width: 100%;
  overflow: hidden;
}
.fileInput.active .fileInput__inactiveIcon, .fileInput.active .fileInput__valueDefault {
  display: none;
}
.fileInput.active .fileInput__activeIcon {
  display: flex;
}
.fileInput.active .fileInput__value {
  display: inline;
}
.fileInput input {
  display: none;
}
.fileInput__valueWrap {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}
.fileInput__valueIcons {
  display: flex;
  align-items: center;
  gap: 8px;
}
.fileInput__inactiveIcon {
  display: flex;
}
.fileInput__activeIcon {
  display: none;
}
.fileInput__valueText {
  display: flex;
  width: 100%;
  align-items: center;
}
.fileInput__valueDefault {
  display: inline;
  /* max-width: calc(100% - 40px);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis; */
}
.fileInput__value {
  display: none;
  width: 100%;
  max-width: calc(100% - 40px);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.customTextArea {
  display: flex;
  position: relative;
  width: 100%;
}
.customTextArea textarea {
  width: 100%;
  padding: 24px 16px 4px 16px;
  border: none;
  outline: none;
  background: var(--gray);
  font-weight: 600;
  font-size: 16px;
  color: var(--black);
  line-height: 100%;
  resize: none;
  max-height: 200px;
  min-height: 64px;
  overflow: auto;
}
@media (max-width: 768px) {
  .customTextArea textarea {
    font-size: 14px;
  }
}
.customTextArea__placeholder {
  position: absolute;
  top: 14px;
  left: 16px;
  transition: all 0.3s ease;
  transform-origin: left;
  background-color: var(--gray);
  padding-right: 5px;
  font-weight: 600;
  font-size: 16px;
  color: var(--black-64);
}
@media (max-width: 768px) {
  .customTextArea__placeholder {
    font-size: 14px;
  }
}
.customTextArea:has(textarea:focus) .customTextArea__placeholder, .customTextArea:not(:has(textarea:placeholder-shown)) .customTextArea__placeholder {
  transform: translate(0, -70%) scale(0.8);
}

.customCheckbox {
  display: flex;
  align-items: start;
  gap: 10px;
  position: relative;
}
.customCheckbox input {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  width: 20px;
  height: 20px;
  margin: 0;
  padding: 0;
}
.customCheckbox__inactive {
  display: flex;
  width: 20px;
  min-width: 20px;
  height: 20px;
}
.customCheckbox__active {
  display: none;
  width: 20px;
  min-width: 20px;
  height: 20px;
}
.customCheckbox:has(input:checked) .customCheckbox__inactive {
  display: none;
}
.customCheckbox:has(input:checked) .customCheckbox__active {
  display: flex;
}
.customCheckbox > span {
  margin-top: 3px;
}

.orangeBtnWithIcon {
  display: flex;
  align-items: center;
  gap: 16px;
  height: 64px;
  padding: 4px 4px 4px 24px;
  background: var(--orange);
  border-radius: 100px;
  width: fit-content;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .orangeBtnWithIcon {
    height: 54px;
  }
}
.orangeBtnWithIcon svg {
  width: 56px;
  height: 56px;
  background-color: var(--white);
  border-radius: 50%;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .orangeBtnWithIcon svg {
    width: 46px;
    height: 46px;
  }
}
.orangeBtnWithIcon:hover {
  background-color: var(--black);
}
.orangeBtnWithIcon:hover svg {
  transform: rotate(45deg);
}
.orangeBtnWithIcon:disabled {
  opacity: 0.64;
}

.orangeBtn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: fit-content;
  background-color: var(--orange);
  padding: 0 24px;
  height: 48px;
  border-radius: 100px;
}
@media (max-width: 768px) {
  .orangeBtn {
    height: 46px;
  }
}

.cookies {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--white);
  z-index: var(--header-zindex);
}
.cookies.hidden {
  display: none;
}
.cookies__wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  padding: 24px 0;
}
@media (max-width: 768px) {
  .cookies__wrap {
    flex-direction: column;
    gap: 16px;
    align-items: start;
    padding: 20px 0;
  }
}
.cookies__text {
  max-width: 1400px;
}
@media (max-width: 768px) {
  .cookies__btn {
    width: 100%;
  }
}

.fileValues {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.fileValues__item {
  display: flex;
  align-items: center;
  gap: 4px;
  background-color: var(--black);
  border-radius: 100px;
  cursor: pointer;
  padding: 12px 16px;
  max-width: 200px;
}
.fileValues__item span {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.fileValues__item svg {
  min-width: 16px;
}
.fileValues__item--example {
  display: none;
}

.header {
  background: var(--white);
  display: flex;
  width: 100%;
  flex-direction: column;
  transition: all 0.3s ease;
  position: fixed;
  z-index: var(--header-zindex);
}
.header.opacity {
  background: transparent;
}
.header.opacity .header__top {
  background: var(--black-48);
  backdrop-filter: blur(20px);
}
.header.opacity .header__bottom {
  background: var(--black-48);
  border-top: 1px solid var(--white-64);
  backdrop-filter: blur(20px);
}
.header.opacity span {
  color: var(--white);
}
.header.opacity .header__bottomListItem svg path {
  stroke: var(--white);
}
.header.opacity .blackBorderBtn {
  border-color: var(--white);
}
.header.opacity .blackBorderBtn:hover {
  background-color: var(--white);
}
.header.opacity .blackBorderBtn:hover span {
  color: var(--black) !important;
}
.header.opacity .blackBorderBtn:disabled {
  opacity: 0.64;
}
.header.opacity .header__reviewContainer svg:first-child path {
  fill: var(--white);
}
.header.opacity .header__logo svg:first-child path {
  fill: var(--yellow);
}
.header.opacity .header__burger svg rect {
  fill: rgba(255, 255, 255, 0.0784313725);
}
.header.opacity .header__burger svg path {
  stroke: var(--yellow);
}
.header.opacity .header__tg svg rect {
  fill: var(--white-8);
}
.header.opacity .header__tg svg path {
  fill: var(--yellow);
}
.header.opacity .header__socialItem svg path {
  stroke: var(--yellow);
}
.header.opacity .header__searchBtn svg path, .header.opacity .header__searchBtn svg circle {
  stroke: var(--white);
}
.header__searchBtn {
  display: flex;
  width: 24px;
  height: 24px;
  min-width: 24px;
}
.header__searchWrap {
  display: flex;
  position: relative;
}
.header__searchForm {
  position: absolute;
  top: calc(100% + 28px);
  right: 0;
  width: 445px;
  max-width: 445px;
  display: none;
}
.header__searchForm.active {
  display: flex;
}
.header__searchForm .customInput__placeholder {
  color: var(--black-64) !important;
}
.header__top {
  width: 100%;
  background: var(--white);
  display: flex;
  padding: 8px 0;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1199px) {
  .header__top {
    background: var(--gray);
  }
}
.header__topWrap {
  width: 100%;
  justify-content: space-between;
  display: flex;
  align-items: center;
  gap: 20px;
}
.header__logo {
  display: flex;
}
@media screen and (max-width: 768px) {
  .header__logo {
    width: 99px;
  }
}
.header__infoContainer {
  display: flex;
  gap: 80px;
  flex-direction: row;
}
@media screen and (max-width: 1199px) {
  .header__infoContainer {
    margin-left: auto;
  }
}
.header__reviewContainer {
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
}
@media screen and (max-width: 1199px) {
  .header__reviewContainer {
    display: none;
  }
}
.header__social {
  display: flex;
  flex-direction: row;
  gap: 32px;
}
.header__socialLink {
  display: flex;
  flex-direction: row;
  gap: 24px;
}
.header__socialItem {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
}
@media screen and (max-width: 1199px) {
  .header__socialItem {
    justify-self: end;
  }
  .header__socialItem svg {
    display: none;
  }
}
.header__tg {
  display: flex;
}
@media screen and (max-width: 1199px) {
  .header__tg {
    display: none;
  }
}
.header__buttonRequest {
  display: flex;
}
@media screen and (max-width: 1199px) {
  .header__buttonRequest {
    display: none;
  }
}
.header__mail {
  display: flex;
}
@media screen and (max-width: 1199px) {
  .header__mail {
    display: none;
  }
}
.header__bottom {
  width: 100%;
  background: var(--gray);
  display: flex;
  transition: all 0.3s ease;
  border-top: 1px solid var(--gray);
  height: 48px;
  max-height: 48px;
}
@media screen and (max-width: 1199px) {
  .header__bottom {
    display: none;
  }
}
.header__bottomList {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: 48px;
  max-height: 48px;
}
.header__bottomListItem {
  display: flex;
  flex-direction: row;
  gap: 10px;
}
.header__burger {
  display: none;
}
@media screen and (max-width: 1199px) {
  .header__burger {
    display: flex;
  }
}
.header__bottomListItemWrap {
  display: flex;
  position: relative;
  z-index: 3;
}
.header__bottomListItemWrap:hover .header__bottomListItemContent {
  visibility: visible;
  opacity: 1;
}
.header__bottomListItemWrap:hover::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 30px;
}
.header__bottomListItemContent {
  position: absolute;
  top: calc(100% + 30px);
  left: 0;
  background-color: var(--white);
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 40px;
  padding: 32px;
  width: 100vw;
  max-width: 900px;
}
.header__bottomListItemContent--right {
  left: initial;
  right: 0;
}
.header__backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: calc(var(--header-zindex) - 1);
  display: none;
  opacity: 1;
  transition: opacity 0.3s ease;
}
.header__backdrop.active {
  display: flex;
}

body:has(.header__bottomListItemWrap:hover) .header__backdrop {
  display: block;
}

@starting-style {
  .header__backdrop {
    opacity: 0;
  }
}
.burgerMenu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  max-height: 100dvh;
  overflow: auto;
  background-color: var(--white);
  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;
  height: 100%;
}
.burgerMenu__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 24px;
}
.burgerMenu__logo {
  display: flex;
}
.burgerMenu__close {
  display: flex;
  align-items: center;
  gap: 10px;
}
.burgerMenu__search {
  display: flex;
  width: 100%;
  margin-bottom: 32px;
}
.burgerMenu__searchInput {
  display: flex;
  position: relative;
  height: 54px;
  border-radius: 100px;
  overflow: hidden;
  width: 100%;
}
.burgerMenu__searchInput svg {
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  z-index: 2;
}
.burgerMenu__searchInput input {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border: none;
  outline: none;
  padding: 0 100px 0 42px;
  background-color: var(--gray);
  font-size: 14px;
  font-weight: 600;
}
.burgerMenu__submit {
  display: flex;
  align-items: center;
  gap: 10px;
  position: absolute;
  top: 4px;
  right: 4px;
  background-color: var(--orange);
  border-radius: 100px;
  width: fit-content;
  border-radius: 100px;
  height: 46px;
  padding: 0 20px;
}
.burgerMenu__navWrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}
.burgerMenu__navWrap.hidden {
  display: none;
}
.burgerMenu__nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: start;
  width: 100%;
  margin-bottom: 32px;
}
.burgerMenu__navItem {
  display: flex;
  align-items: center;
  gap: 40px;
  justify-content: space-between;
  width: 100%;
}
.burgerMenu__navBot {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-bottom: 50px;
}
.burgerMenu__contacts {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 32px;
  border-top: 1px solid var(--black-16);
}
.burgerMenu__contacts .header__reviewContainer {
  display: flex;
}
.burgerMenu__contactLink {
  display: flex;
  align-items: center;
  gap: 10px;
}
.burgerMenu__navSteps {
  display: none;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}
.burgerMenu__navSteps.active {
  display: flex;
}
.burgerMenu__navStepsBack {
  display: flex;
  align-items: center;
  gap: 4px;
}
.burgerMenu__navStepsContent {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mainSlider {
  display: flex;
  min-height: 100vh;
}
.mainSlider__background {
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-start;
  gap: 59px;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 64px;
  padding-top: 200px;
}
.mainSlider__background::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(270deg, rgba(38, 28, 21, 0) 0%, rgba(38, 28, 21, 0.6) 100%);
}
@media screen and (max-width: 768px) {
  .mainSlider__background {
    justify-content: space-between;
  }
}
@media screen and (max-width: 1800px) {
  .mainSlider__background {
    padding: 150px 60px 64px 60px;
  }
}
@media screen and (max-width: 768px) {
  .mainSlider__background {
    padding: 150px 0 60px 0;
  }
}
.mainSlider__background .container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.mainSlider__swiper {
  width: 100%;
  display: flex;
  overflow: visible;
  padding: 0 20px;
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .mainSlider__swiper {
    margin-top: 40px;
    margin-bottom: 20px;
  }
}
.mainSlider__swiper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 50.1%, rgba(0, 0, 0, 0.8) 100%);
  z-index: 1;
}
.mainSlider__sliderTop {
  display: flex;
  gap: 32px;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .mainSlider__sliderTop {
    gap: 16px;
  }
}
.mainSlider__h1Text {
  max-width: 1152px;
}
@media screen and (max-width: 1440px) {
  .mainSlider__h1Text {
    font-size: 80px;
  }
}
@media screen and (max-width: 1024px) {
  .mainSlider__h1Text {
    font-size: 60px;
  }
}
@media screen and (max-width: 768px) {
  .mainSlider__h1Text {
    font-size: 34px;
  }
}
@media screen and (max-width: 425px) {
  .mainSlider__h1Text {
    font-size: 30px;
  }
}
.mainSlider__descriptionText {
  max-width: 1020px;
}
.mainSlider__phoneInput {
  background-color: var(--white);
  padding: 31px 0;
}
.mainSlider__sliderBottom {
  display: flex;
  gap: 64px;
  width: 100%;
  justify-content: flex-end;
  align-items: end;
}
@media screen and (max-width: 768px) {
  .mainSlider__sliderBottom {
    justify-content: space-between;
    margin-top: 50px;
    gap: 20px;
  }
}
.mainSlider__sliderBottomItem {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.mainSlider__sliderBottomItem sup {
  color: var(--yellow);
}
.mainSlider__navigationBtns {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: red;
  z-index: 10;
}
.mainSlider__pagination {
  width: fit-content;
  position: absolute;
  bottom: 64px !important;
  height: 10px;
  display: flex;
  width: var(--container-final-size);
  max-width: var(--container-final-size);
  left: 50% !important;
  transform: translateX(-50%);
  z-index: 2;
  padding: 0 var(--container-padding);
}
@media screen and (max-width: 1800px) {
  .mainSlider__pagination {
    padding: 0 80px;
  }
}
@media screen and (max-width: 768px) {
  .mainSlider__pagination {
    bottom: 20px !important;
    padding: 0 var(--container-padding);
  }
}
.mainSlider__pagination .swiper-pagination-bullet {
  border-radius: 100px;
  background-color: var(--white-64);
  opacity: 1;
}
.mainSlider__pagination .swiper-pagination-bullet-active {
  width: 32px;
  background-color: var(--white);
}
.mainSlider__navPrev, .mainSlider__navNext {
  display: flex;
  cursor: pointer;
  position: absolute;
  top: 50%;
  z-index: 2;
}
.mainSlider__navPrev.swiper-button-disabled, .mainSlider__navNext.swiper-button-disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
@media screen and (max-width: 768px) {
  .mainSlider__navPrev, .mainSlider__navNext {
    display: none;
  }
  .mainSlider__navPrev svg, .mainSlider__navNext svg {
    width: 24px;
    height: 24px;
  }
}
.mainSlider__navNext {
  transform: rotate(180deg);
  right: 48px;
}

.popularService {
  display: flex;
}
.popularService__wrap {
  display: flex;
  gap: 64px;
  flex-direction: column;
}
.popularService__content {
  display: flex;
  gap: 32px;
  flex-direction: column;
}
@media (max-width: 1080px) {
  .popularService__content {
    gap: 24px;
  }
}
.popularService__top {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.popularService__linkService {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}
@media (max-width: 1080px) {
  .popularService__linkService {
    display: none;
  }
}
.popularService__tabs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .popularService__tabs {
    width: calc(100% + 36px);
    flex-wrap: nowrap;
    margin-left: -20px;
    padding: 0 20px;
    overflow: auto;
  }
}
.popularService__tabItem {
  display: flex;
  align-items: center;
  border-radius: 100px;
  min-height: 40px;
  padding: 0 20px;
  border: 1px solid var(--black-16);
  cursor: pointer;
}
.popularService__tabItem span {
  white-space: nowrap;
}
.popularService__tabItem.active {
  background: var(--yellow);
  border: none;
}
.popularService__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  display: none;
}
.popularService__grid.active {
  display: grid;
}
@media (max-width: 1200px) {
  .popularService__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .popularService__grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.popularService__gridImg {
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-start;
  aspect-ratio: 543/400;
  padding: 25px 24px;
  position: relative;
}
@media (max-width: 1080px) {
  .popularService__gridImg {
    padding: 16px;
  }
}
.popularService__gridText {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
  position: relative;
  z-index: 2;
  height: fit-content;
  align-self: flex-end;
  gap: 8px;
}
.popularService__blackBorderBtn {
  border: 1px solid var(--white-32);
  padding: 19px 24px;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media (max-width: 1080px) {
  .popularService__blackBorderBtn {
    padding: 11px 12px;
  }
}
.popularService__blackBorderBtn:hover {
  background-color: var(--white);
}
.popularService__blackBorderBtn:hover span {
  color: var(--black) !important;
}
.popularService__blackBorderBtn:disabled {
  opacity: 0.64;
}
.popularService__bottomText {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  justify-content: space-between;
}
.popularService__gallery {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.popularService__pagination {
  position: absolute;
  z-index: 3;
  top: 16px;
  right: 16px;
  bottom: initial !important;
  left: initial !important;
  transform: initial !important;
  width: fit-content !important;
}
.popularService__pagination .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  background-color: var(--white-64);
  border-radius: 100px;
}
.popularService__pagination .swiper-pagination-bullet-active {
  width: 24px;
  height: 6px;
  background-color: var(--white);
}
.popularService__zonesGrid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: grid;
  z-index: 2;
}
.popularService__gallerySlide {
  display: flex;
  width: 100%;
  height: 100%;
  position: relative;
}
.popularService__gallerySlide::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.64) 100%), linear-gradient(180deg, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0.48) 100%);
}
.popularService__gallerySlide img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.popularService__moreShow {
  display: flex;
  border: 1px solid var(--orange);
  padding: 65px 0;
  justify-content: center;
}
@media (max-width: 1080px) {
  .popularService__moreShow {
    padding: 30px 0;
  }
}
.popularService__showAll {
  display: none;
}
@media (max-width: 1080px) {
  .popularService__showAll {
    display: flex;
    background-color: var(--black);
    padding: 30px;
    gap: 16px;
    justify-content: center;
  }
}
.popularService__buttonContainer {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ourAdvantages {
  display: flex;
  background-color: var(--gray);
  padding: 144px 0;
}
@media screen and (max-width: 1200px) {
  .ourAdvantages {
    padding: 78px 0;
  }
}
.ourAdvantages__wrap {
  display: flex;
  gap: 64px;
  flex-direction: row;
}
@media screen and (max-width: 1200px) {
  .ourAdvantages__wrap {
    flex-direction: column;
    gap: 32px;
  }
}
.ourAdvantages__list {
  display: flex;
  flex-direction: column;
}
.ourAdvantages__listItem {
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-bottom: 1px solid rgba(38, 28, 21, 0.1607843137);
  justify-content: space-between;
  padding: 32px 0;
}
.ourAdvantages__listTopItem {
  display: flex;
  flex-direction: row;
  gap: 8px;
}
.ourAdvantages__numberList {
  padding-top: 4px;
}

.ourGuarantees {
  display: flex;
}
.ourGuarantees__wrap {
  display: flex;
  flex-direction: column;
  gap: 64px;
}
.ourGuarantees__top {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .ourGuarantees__top {
    flex-direction: column;
    gap: 16px;
  }
}
.ourGuarantees__description {
  display: flex;
  flex-direction: column;
  max-width: 808px;
  gap: 32px;
}
.ourGuarantees__description span {
  color: var(--black-64);
}
.ourGuarantees__linkMore {
  display: flex;
  align-items: center;
  gap: 16px;
}
.ourGuarantees__content {
  display: flex;
}
.ourGuarantees__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.ourGuarantees__grid div:nth-child(1) {
  grid-column: 1/3;
}
@media screen and (max-width: 1200px) {
  .ourGuarantees__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .ourGuarantees__grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .ourGuarantees__grid div:nth-child(1) {
    grid-column: initial;
  }
}
.ourGuarantees__gridItem {
  border-radius: 16px;
  padding: 40px;
  justify-content: space-between;
  display: flex;
  flex-direction: column;
}
.ourGuarantees__gridItem img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .ourGuarantees__gridItem {
    padding: 24px;
    gap: 32px;
  }
}
.ourGuarantees__containerImg {
  aspect-ratio: 428/262;
  width: 100%;
  max-height: 300px;
}
.ourGuarantees__containerImg img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media screen and (max-width: 768px) {
  .ourGuarantees__containerImg {
    aspect-ratio: 295/181;
  }
}
.ourGuarantees__itemContainer {
  display: flex;
  flex-direction: row;
  gap: 24px;
}
@media screen and (max-width: 1200px) {
  .ourGuarantees__itemContainer {
    flex-direction: column;
    gap: 32px;
  }
}
.ourGuarantees__descriptionContainer {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.ourGuarantees__descriptionTop {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.marquee {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  height: 56px;
  margin-top: 88px;
}
.marquee__wrap {
  display: flex;
  align-items: center;
}
.marquee__wrap .js-marquee-wrapper {
  display: flex;
}
.marquee__wrap .js-marquee {
  display: flex;
  align-items: center;
  gap: 128px;
  padding-right: 128px;
}
@media screen and (max-width: 768px) {
  .marquee__wrap .js-marquee {
    gap: 48px;
    padding-right: 48px;
  }
}
.marquee__container {
  display: flex;
  flex-direction: column;
}

.review {
  display: flex;
  background-color: var(--gray);
  padding: 72px 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .review {
    padding: 78px 0;
  }
}
.review__wrap {
  gap: 32px;
  display: flex;
  flex-direction: column;
  width: 100%;
}
.review__topContainer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.review__tabs {
  display: flex;
  flex-direction: row;
  gap: 12px;
}
.review__reviewButton {
  gap: 24px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .review__reviewButton {
    display: none;
  }
}
.review__tabsItem {
  display: flex;
  border: 1px solid var(--black-16);
  padding: 15px 16px;
  border-radius: 100px;
  align-items: center;
}
.review__tabsItem.active {
  border: none;
  background-color: var(--yellow);
}
.review__card {
  background-color: var(--white);
  gap: 24px;
  padding: 32px;
  display: flex;
  flex-direction: column;
}
.review__cardImg {
  object-fit: cover;
  border-radius: 100px;
  width: 64px;
  height: 64px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .review__cardImg {
    width: 48px;
    height: 48px;
  }
}
.review__cardTop {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.review__cardTop img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.review__textContainer {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (max-width: 768px) {
  .review__textContainer {
    gap: 12px;
  }
}
.review__reviewCard {
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .review__reviewCard svg {
    height: 16px;
  }
}
.review__text {
  display: flex;
  flex-direction: column;
}
.review__content {
  flex-direction: row;
  display: flex;
  gap: 16px;
  max-width: 396px;
}
.review__navPrev, .review__navNext {
  display: flex;
  cursor: pointer;
  position: absolute;
  top: 50%;
  z-index: 2;
}
.review__navPrev.swiper-button-disabled, .review__navNext.swiper-button-disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
@media screen and (max-width: 1750px) {
  .review__navPrev, .review__navNext {
    display: none;
  }
}
.review__navPrev {
  left: -48px;
}
.review__swiper {
  overflow: hidden;
  width: 100%;
}
.review__navNext {
  transform: rotate(180deg);
  right: -48px;
}
.review__swiperContainer {
  position: relative;
  display: none;
}
.review__swiperContainer.active {
  display: flex;
}
.review__reviewButtonMobile {
  display: none;
}
@media screen and (max-width: 768px) {
  .review__reviewButtonMobile {
    display: flex;
    gap: 24px;
  }
}

.faq {
  display: flex;
}
.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__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: linear-gradient(82deg, rgba(255, 255, 255, 0.2), rgba(50, 64, 49, 0.1));
  --lg-bg: #3240311a;
  --lg-br: 50%;
  position: relative;
  overflow: hidden;
  transition: all 0.2s ease;
}
.faq__indicator.active svg rect {
  fill: var(--yellow);
}
.faq__indicator.active {
  transform: rotate(180deg);
}
.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);
  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;
  padding: 0 0 0 0;
  list-style-type: none;
}
@media screen and (max-width: 768px) {
  .faq__itemContent {
    font-size: 14px;
  }
}

.footer {
  background-color: var(--black);
}
.footer__wrap {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 80px;
}
@media screen and (max-width: 768px) {
  .footer__wrap {
    gap: 40px;
  }
}
.footer__form {
  background-color: white;
  margin-top: 80px;
  padding: 64px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 20px;
}
@media screen and (max-width: 1024px) {
  .footer__form {
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .footer__form {
    padding: 24px;
    gap: 32px;
    margin-top: 48px;
  }
}
.footer__form.hidden {
  display: none;
}
.footer__formTitle {
  max-width: 469px;
  flex-direction: column;
  display: flex;
  gap: 10px;
}
.footer__formInput {
  display: flex;
  gap: 16px;
  flex-direction: column;
  width: 100%;
  max-width: 880px;
}
.footer__formInputRow {
  display: grid;
  gap: 16px;
  width: 100%;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 768px) {
  .footer__formInputRow {
    display: flex;
    flex-direction: column;
  }
}
.footer__infoMiddleContent {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 20px;
}
@media screen and (max-width: 1250px) {
  .footer__infoMiddleContent {
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .footer__infoMiddleContent {
    align-items: center;
    gap: 40px;
  }
}
.footer__infoFooter {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media screen and (max-width: 768px) {
  .footer__infoFooter {
    align-items: center;
    flex-direction: column;
    min-width: 0;
    width: 100%;
    gap: 24px;
  }
}
.footer__logoContainer {
  display: flex;
}
.footer__info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (max-width: 768px) {
  .footer__info {
    align-items: center;
    flex-direction: column;
    min-width: 0;
    width: 100%;
  }
}
.footer__infoItem {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
}
.footer__addressText {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.footer__addressText * {
  text-align: left;
}
@media screen and (max-width: 768px) {
  .footer__addressText {
    align-items: center;
  }
  .footer__addressText * {
    text-align: center;
  }
}
.footer__infoMaps {
  display: flex;
  flex-direction: row;
  gap: 13px;
  align-items: center;
}
.footer__mapsInfo {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media screen and (max-width: 768px) {
  .footer__mapsInfo {
    align-items: center;
    flex-direction: column;
    min-width: 0;
    width: 100%;
  }
}
.footer__socialLinks {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.footer__socialItem {
  display: flex;
}
.footer__link {
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-width: 233px;
}
@media screen and (max-width: 1300px) {
  .footer__link {
    min-width: 0;
  }
}
@media screen and (max-width: 768px) {
  .footer__link {
    align-items: center;
    flex-direction: column;
    min-width: 0;
    width: 100%;
    gap: 20px;
  }
  .footer__link * {
    text-align: center;
  }
}
.footer__formSubmit {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 24px;
}
@media screen and (max-width: 768px) {
  .footer__formSubmit {
    gap: 32px;
    margin-top: 16px;
  }
}
.footer__linksContainer {
  gap: 120px;
  display: flex;
  flex-direction: row;
  padding-top: 24px;
}
@media screen and (max-width: 1300px) {
  .footer__linksContainer {
    gap: 60px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .footer__linksContainer {
    align-items: center;
    padding-top: 0;
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
}
.footer__linksTitle {
  display: flex;
}
@media screen and (max-width: 768px) {
  .footer__linksTitle * {
    text-align: center;
  }
}
.footer__linkList {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (max-width: 768px) {
  .footer__linkList {
    align-items: center;
    flex-direction: column;
    gap: 12px;
  }
  .footer__linkList * {
    text-align: center;
  }
}
.footer__botContent {
  display: grid;
  width: 100%;
  align-items: center;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  padding: 60px 0;
  border-top: 1px solid var(--white-16);
}
@media screen and (max-width: 1024px) {
  .footer__botContent {
    gap: 24px;
  }
}
@media screen and (max-width: 768px) {
  .footer__botContent {
    gap: 24px;
    grid-template-columns: 1fr;
    align-items: center;
    padding: 32px 0;
  }
  .footer__botContent * {
    text-align: center;
  }
}
.footer__botContent a:last-child {
  text-align: right;
}
@media screen and (max-width: 768px) {
  .footer__botContent a:last-child {
    text-align: center;
  }
}
.footer__devLink {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}
.footer__devLink a {
  display: flex;
  margin-top: 3px;
}
.footer__formInputsGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  grid-template-areas: "a b" "c d" "e e" "f f";
}
.footer__formInputsGrid .customTextArea {
  grid-area: e;
}
.footer__formInputsGrid .fileValues {
  grid-area: f;
}
@media screen and (max-width: 768px) {
  .footer__formInputsGrid {
    grid-template-columns: 1fr;
    grid-template-areas: "a" "b" "c" "e" "d" "f";
  }
}
.footer__success {
  background-color: var(--white);
  padding: 64px;
  justify-content: space-between;
  align-items: center;
  display: none;
  margin-top: 80px;
}
.footer__success.show {
  display: flex;
}
@media screen and (max-width: 768px) {
  .footer__success {
    flex-direction: column;
    padding: 24px;
    gap: 10px;
    align-items: flex-start;
    margin-top: 60px;
  }
}
.footer__textIcon {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .footer__textIcon {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
}

.service {
  display: flex;
}
.service__wrap {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
@media screen and (max-width: 768px) {
  .service__wrap {
    gap: 24px;
  }
}
.service__top {
  display: flex;
}
.service__content {
  display: flex;
  gap: 32px;
  flex-direction: column;
}
@media (max-width: 1080px) {
  .service__content {
    gap: 24px;
  }
}
.service__tabs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .service__tabs {
    width: calc(100% + 32px);
    flex-wrap: nowrap;
    margin-left: -20px;
    padding: 0 20px;
    overflow: auto;
  }
}
.service__tabItem {
  display: flex;
  align-items: center;
  border-radius: 100px;
  min-height: 40px;
  padding: 0 20px;
  border: 1px solid var(--black-16);
  cursor: pointer;
}
.service__tabItem span {
  white-space: nowrap;
}
.service__tabItem.active {
  background: var(--yellow);
  border: none;
}
.service__grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  display: none;
}
.service__grid.active {
  display: grid;
}
@media (max-width: 1080px) {
  .service__grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.service__gridImg {
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-start;
  aspect-ratio: 543/400;
  padding: 25px 24px;
  position: relative;
}
@media (max-width: 1080px) {
  .service__gridImg {
    padding: 16px;
  }
}
.service__gridText {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
  position: relative;
  z-index: 2;
  height: fit-content;
  align-self: flex-end;
  gap: 8px;
}
.service__gallery {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.service__pagination {
  position: absolute;
  z-index: 3;
  top: 16px;
  right: 16px;
  bottom: initial !important;
  left: initial !important;
  transform: initial !important;
  width: fit-content !important;
}
.service__pagination .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  background-color: var(--white-64);
  border-radius: 100px;
}
.service__pagination .swiper-pagination-bullet-active {
  width: 24px;
  height: 6px;
  background-color: var(--white);
}
.service__zonesGrid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: grid;
  z-index: 2;
}
.service__gallerySlide {
  display: flex;
  width: 100%;
  height: 100%;
  position: relative;
}
.service__gallerySlide::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.64) 100%), linear-gradient(180deg, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0.48) 100%);
}
.service__gallerySlide img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.service__blackBorderBtn {
  border: 1px solid var(--white-32);
  padding: 19px 24px;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media (max-width: 1080px) {
  .service__blackBorderBtn {
    padding: 11px 12px;
  }
}
.service__blackBorderBtn:hover {
  background-color: var(--white);
}
.service__blackBorderBtn:hover span {
  color: var(--black) !important;
}
.service__blackBorderBtn:disabled {
  opacity: 0.64;
}
.service__bottomText {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 1350px) {
  .service__breadCrumbs {
    padding-top: 102px;
  }
}

.serviceDetailBanner {
  display: flex;
  flex-direction: column;
  padding: 0 !important;
}
.serviceDetailBanner__background {
  height: 100vh;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .serviceDetailBanner__background {
    align-items: center;
    justify-content: center;
    min-height: 600px;
  }
}
.serviceDetailBanner__white span {
  color: var(--white);
}
@media screen and (max-width: 768px) {
  .serviceDetailBanner__white {
    padding-top: 0;
  }
}
.serviceDetailBanner__activeBreadCrumbs {
  color: var(--white-64) !important;
}
.serviceDetailBanner__content {
  max-width: 1210px;
  gap: 48px;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .serviceDetailBanner__content {
    gap: 24px;
  }
}
.serviceDetailBanner__topContent {
  gap: 32px;
  display: flex;
  flex-direction: column;
}
.serviceDetailBanner__topContent ul {
  margin: 0;
}
.serviceDetailBanner__topContent li {
  font-weight: 500;
  font-size: 20px;
  line-height: 160%;
  color: var(--white);
}

.exampleService {
  display: flex;
}
.exampleService__wrap {
  gap: 64px;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .exampleService__wrap {
    gap: 32px;
  }
}
.exampleService__content {
  flex-direction: row;
  display: flex;
  gap: 16px;
  max-width: 396px;
  width: 100%;
}
.exampleService__card {
  display: flex;
  gap: 24px;
  flex-direction: column;
  width: 100%;
}
.exampleService__cardText {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.exampleService__cardImg {
  width: 100%;
  display: flex;
  aspect-ratio: 396/297;
}
.exampleService__cardImg img {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 1600px) {
  .exampleService__swiper {
    margin: 0 -16px;
    padding: 0 16px;
  }
}
.exampleService__navPrev, .exampleService__navNext {
  display: flex;
  cursor: pointer;
  position: absolute;
  top: 50%;
  z-index: 2;
}
.exampleService__navPrev.swiper-button-disabled, .exampleService__navNext.swiper-button-disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
@media screen and (max-width: 1750px) {
  .exampleService__navPrev, .exampleService__navNext {
    display: none;
  }
}
.exampleService__navNext {
  transform: rotate(180deg);
  right: -48px;
}
.exampleService__navPrev {
  left: -48px;
}

.exampleWork {
  display: flex;
  background-color: var(--gray);
  padding: 144px 0;
}
@media screen and (max-width: 768px) {
  .exampleWork {
    padding: 78px 0;
  }
}
.exampleWork__wrap {
  gap: 64px;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .exampleWork__wrap {
    gap: 32px;
  }
}
.exampleWork__top {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.exampleWork__title {
  max-width: 800px;
}
.exampleWork__buttonRequest {
  display: flex;
}
@media screen and (max-width: 1500px) {
  .exampleWork__buttonRequest {
    display: none;
  }
}
.exampleWork__buttonRequestMobile {
  display: none;
}
@media screen and (max-width: 1500px) {
  .exampleWork__buttonRequestMobile {
    display: flex;
  }
}
.exampleWork__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
}
@media screen and (max-width: 1500px) {
  .exampleWork__grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.exampleWork__img {
  aspect-ratio: 543/400;
  align-items: flex-end;
  display: flex;
  padding: 24px;
  display: flex;
  width: 100%;
  height: 100%;
  position: relative;
  background-size: contain;
}
.exampleWork__img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.64) 100%), linear-gradient(180deg, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0.48) 100%);
}
.exampleWork__img span {
  z-index: 2;
}

.infoService {
  display: flex;
}
.infoService__wrap {
  display: flex;
  flex-direction: column;
}
.infoService__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media screen and (max-width: 1024px) {
  .infoService__grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.infoService__gridItem {
  display: flex;
  border-radius: 8px;
  padding: 60px;
  gap: 32px;
  flex-direction: column;
  background-color: var(--gray);
}
@media screen and (max-width: 768px) {
  .infoService__gridItem {
    padding: 24px;
  }
}
.infoService__gridTop {
  gap: 24px;
  display: flex;
  flex-direction: column;
}
.infoService__gridBottom {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.infoService__gridVideo {
  display: flex;
  border-radius: 8px;
  gap: 32px;
  position: relative;
  overflow: hidden;
  /*aspect-ratio: 360 / 200;*/
}
.infoService__gridVideo img {
  width: 100%;
}
.infoService__gridVideo video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.infoService__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .infoService__play {
    --play-size: 60px;
  }
  .infoService__play svg {
    width: 20px;
    height: 20px;
  }
}

.advantagesService {
  display: flex;
}
.advantagesService__top {
  max-width: 533px;
}
.advantagesService__wrap {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
@media screen and (max-width: 1200px) {
  .advantagesService__wrap {
    flex-direction: column;
    gap: 32px;
  }
}
.advantagesService__list {
  display: flex;
  flex-direction: column;
}
.advantagesService__listItem {
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-bottom: 1px solid rgba(38, 28, 21, 0.1607843137);
  justify-content: space-between;
  padding: 32px 0;
  max-width: 945px;
}
.advantagesService__listTopItem {
  display: flex;
  flex-direction: row;
  gap: 8px;
}
.advantagesService__numberList {
  padding-top: 4px;
}

.info {
  display: flex;
  background-color: var(--gray);
  padding-top: 144px;
}
@media screen and (max-width: 1200px) {
  .info {
    padding-top: 78px;
  }
}
.info__wrap {
  display: flex;
  flex-direction: column;
  gap: 144px;
}
@media screen and (max-width: 1200px) {
  .info__wrap {
    gap: 78px;
  }
}
.info__top {
  max-width: 800px;
  display: flex;
  gap: 24px;
  flex-direction: column;
}
.info__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media screen and (max-width: 1200px) {
  .info__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .info__grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.info__gridItem {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.info__gridImg {
  /*aspect-ratio: 396/360;*/
  max-height: 360px;
  max-width: 100%;
}
.info__gridImg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.info__gridDescription {
  display: flex;
  gap: 12px;
  flex-direction: column;
}
.info__titleGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: flex-end;
}
@media screen and (max-width: 768px) {
  .info__titleGrid {
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
  }
}
.info__topTop {
  display: flex;
  flex-direction: column;
  gap: 64px;
}
@media screen and (max-width: 768px) {
  .info__topTop {
    gap: 32px;
  }
}
.info__bottomBottom {
  display: flex;
  flex-direction: column;
  gap: 64px;
  padding-bottom: 144px;
}
@media screen and (max-width: 768px) {
  .info__bottomBottom {
    padding-bottom: 72px;
  }
}
.info__slideImg {
  display: flex;
  aspect-ratio: 808/396;
}
.info__slideImg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.info__slideItem {
  max-width: 808px;
  display: flex;
}
@media screen and (max-width: 768px) {
  .info__swiper {
    margin: 0 -16px;
    padding: 0 16px;
  }
}
.info__contentSwiper {
  display: flex;
  position: relative;
}
.info__navPrev, .info__navNext {
  display: flex;
  cursor: pointer;
  position: absolute;
  top: 50%;
  z-index: 2;
}
.info__navPrev.swiper-button-disabled, .info__navNext.swiper-button-disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
@media screen and (max-width: 1750px) {
  .info__navPrev, .info__navNext {
    display: none;
  }
}
.info__navNext {
  right: -48px;
}
.info__navPrev {
  left: -48px;
}

.stepService {
  display: flex;
  flex-direction: column;
}
.stepService__wrap {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
@media screen and (max-width: 1534px) {
  .stepService__wrap {
    flex-direction: column;
    gap: 32px;
  }
}
.stepService__title {
  max-width: 533px;
}
.stepService__stepItem {
  display: flex;
  flex-direction: row;
  min-height: 124px;
  gap: 30px;
  max-width: 945px;
}
.stepService__stepNumber {
  background-color: var(--orange);
  border-radius: 100px;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  display: flex;
  position: relative;
}
@media screen and (max-width: 768px) {
  .stepService__stepNumber {
    max-height: 32px;
    max-width: 32px;
    min-height: 32px;
    min-width: 32px;
  }
}
.stepService__stepNumber::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: calc(100% + 84px);
  background: var(--orange);
}
.stepService__stepText {
  padding-top: 5px;
  max-width: 875px;
}

.videoService {
  display: flex;
}
.videoService__wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.videoService__video {
  position: relative;
  aspect-ratio: 1632/700;
  width: 100%;
  height: 100%;
  display: flex;
  border-radius: 8px;
  overflow: hidden;
  display: none;
}
.videoService__video.active {
  display: flex;
}
.videoService__video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.videoService__video video::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(100.42deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
}
.videoService__videoList {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 16px;
}
.videoService__listItem {
  display: flex;
  position: relative;
}
.videoService__listItem img {
  aspect-ratio: 240/140;
  width: 100%;
  height: 100%;
  max-width: 240px;
  object-fit: cover;
  border-radius: 8px;
}
.videoService__listItem img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(100.42deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
}
.videoService__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .videoService__play svg {
    width: 64px;
    height: 64px;
  }
}
.videoService__playList {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .videoService__playList svg {
    width: 32px;
    height: 32px;
  }
}
.videoService__title {
  position: absolute;
  max-width: 845px;
  top: 64px;
  left: 64px;
}
@media screen and (max-width: 768px) {
  .videoService__title {
    top: 24px;
    left: 24px;
    font-size: 20px;
  }
}

.deliveryService {
  display: flex;
  flex-direction: column;
}
.deliveryService iframe {
  width: 100%;
  aspect-ratio: 16/9;
  height: auto;
}
.deliveryService__wrap {
  display: flex;
  flex-direction: column;
  gap: 64px;
}
.deliveryService__content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  flex-direction: row;
  gap: 32px;
}
@media screen and (max-width: 768px) {
  .deliveryService__content {
    grid-template-columns: repeat(1, 1fr);
  }
}
.deliveryService__contentDelivery {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}
.deliveryService__contentText {
  display: flex;
  flex-direction: column;
}
.deliveryService__textItem {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px 0px;
}
.deliveryService__textItem:first-child {
  padding: 10px 0 24px 0;
  border-bottom: 1px solid var(--black-16);
}

.technology {
  display: flex;
  flex-direction: column;
}
.technology__wrap {
  display: flex;
  gap: 64px;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .technology__wrap {
    gap: 32px;
  }
}
.technology__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  counter-reset: ol;
  gap: 16px;
}
@media screen and (max-width: 1200px) {
  .technology__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}
@media screen and (max-width: 768px) {
  .technology__grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.technology__gridItem {
  background-color: var(--gray);
  padding: 30px;
  gap: 30px;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .technology__gridItem {
    gap: 24px;
  }
}
.technology__number {
  background-color: var(--orange);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.technology__number::before {
  content: counter(ol, decimal-leading-zero);
  counter-increment: ol;
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  line-height: 100%;
}
@media screen and (max-width: 768px) {
  .technology__number::before {
    font-size: 14px;
  }
}
.technology__gridText {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.technology__title {
  max-width: 808px;
}

.composite {
  display: flex;
  flex-direction: column;
}
.composite__wrap {
  display: flex;
  flex-direction: column;
  gap: 64px;
}
@media screen and (max-width: 768px) {
  .composite__wrap {
    gap: 32px;
  }
}
.composite__title {
  max-width: 920px;
}
.composite__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media screen and (max-width: 1200px) {
  .composite__grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.composite__gridItem {
  display: flex;
  flex-direction: row;
  background-color: var(--gray);
  border-radius: 8px;
  overflow: hidden;
}
@media screen and (max-width: 1200px) {
  .composite__gridItem {
    flex-direction: column;
  }
}
.composite__gridImg {
  aspect-ratio: 260/240;
  min-height: 240px;
  max-height: 240px;
}
.composite__gridImg img {
  display: flex;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 1200px) {
  .composite__gridImg {
    aspect-ratio: unset;
  }
}
.composite__gridText {
  display: flex;
  flex-direction: column;
  padding: 30px;
  gap: 10px;
}

.printTypes {
  display: flex;
}
.printTypes__wrap {
  display: flex;
  flex-direction: column;
  gap: 64px;
}
@media screen and (max-width: 768px) {
  .printTypes__wrap {
    gap: 32px;
  }
}
.printTypes__title {
  max-width: 808px;
}
.printTypes__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  counter-reset: ol;
  gap: 32px;
}
@media screen and (max-width: 1200px) {
  .printTypes__grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
  }
}
.printTypes__gridItem {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (max-width: 768px) {
  .printTypes__gridItem {
    gap: 12px;
  }
}
.printTypes__gridTop {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .printTypes__gridTop {
    gap: 12px;
  }
}
.printTypes__gridBot {
  display: flex;
}
.printTypes__number {
  background-color: var(--orange);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.printTypes__number::before {
  content: counter(ol, decimal-leading-zero);
  counter-increment: ol;
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  line-height: 100%;
}
@media screen and (max-width: 768px) {
  .printTypes__number::before {
    font-size: 14px;
  }
}

.plusMinus {
  display: flex;
}
.plusMinus__wrap {
  display: flex;
  gap: 64px;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .plusMinus__wrap {
    gap: 32px;
  }
}
.plusMinus__title {
  max-width: 808px;
}
.plusMinus__content {
  display: flex;
  flex-direction: row;
  gap: 48px;
}
@media screen and (max-width: 768px) {
  .plusMinus__content {
    flex-direction: column;
    gap: 32px;
  }
}
.plusMinus__columnContainer {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .plusMinus__columnContainer {
    gap: 20px;
  }
}
.plusMinus__contentList {
  display: flex;
  flex-direction: column;
  counter-reset: ol;
}
.plusMinus__contentListItem {
  display: flex;
  flex-direction: row;
  gap: 10px;
  border-bottom: 1px solid var(--black-16);
  padding: 32px 0;
}
.plusMinus__contentListItem:first-child {
  padding-top: 0;
}
@media screen and (max-width: 768px) {
  .plusMinus__contentListItem {
    padding: 24px 0;
  }
  .plusMinus__contentListItem:first-child {
    padding-top: 0;
  }
}
.plusMinus__number {
  display: flex;
  padding-top: 5px;
}
.plusMinus__number::before {
  content: counter(ol, decimal-leading-zero);
  counter-increment: ol;
  color: var(--orange);
  font-size: 16px;
  font-weight: 700;
  line-height: 100%;
}
@media screen and (max-width: 768px) {
  .plusMinus__number::before {
    font-size: 14px;
  }
}
.plusMinus__textContainer {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ourGuaranteesService {
  display: flex;
}
.ourGuaranteesService__wrap {
  display: flex;
  flex-direction: row;
  gap: 48px;
}
@media screen and (max-width: 1300px) {
  .ourGuaranteesService__wrap {
    flex-direction: column;
    gap: 32px;
  }
}
.ourGuaranteesService__title {
  display: flex;
  gap: 20px;
  flex-direction: column;
  max-width: 776px;
}
.ourGuaranteesService__description {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media screen and (max-width: 1200px) {
  .ourGuaranteesService__description {
    gap: 24px;
  }
}
.ourGuaranteesService__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media screen and (max-width: 768px) {
  .ourGuaranteesService__grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 12px;
  }
}
.ourGuaranteesService__gridItem {
  padding: 40px;
  display: flex;
  flex-direction: column;
  min-height: 300px;
  justify-content: space-between;
  border-radius: 8px;
}
@media screen and (max-width: 1200px) {
  .ourGuaranteesService__gridItem {
    padding: 24px;
    min-height: 168px;
  }
}
.ourGuaranteesService__gridTop {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ourGuaranteesService__gridImg {
  display: flex;
  flex-direction: column;
  min-height: 300px;
  justify-content: space-between;
  border-radius: 8px;
  max-height: 300px;
  overflow: hidden;
}
.ourGuaranteesService__gridImg img {
  width: 100%;
  height: 100%;
  aspect-ratio: 396/300;
  object-fit: cover;
}
.ourGuaranteesService__linkMore {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
}

.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: 48px;
  width: 100%;
  max-width: 600px;
}
@media (max-width: 768px) {
  .requestModal {
    max-width: calc(100% - 40px);
    padding: 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: 16px;
}
.requestModal__inputs {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.successModal {
  padding: 48px;
  width: 100%;
  max-width: 600px;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .successModal {
    max-width: calc(100% - 40px);
    padding: 24px;
  }
}
.successModal__wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
@media (max-width: 768px) {
  .successModal__wrap {
    gap: 24px;
  }
}
.successModal__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.successModal__text * {
  text-align: center;
}
.successModal__close {
  position: initial;
}

.portfolioModal {
  width: 100%;
  max-width: 1632px;
  align-items: center;
  flex-direction: column;
}
@media (max-width: 1300px) {
  .portfolioModal {
    max-width: calc(100% - 32px);
  }
}
.portfolioModal__wrap {
  display: flex;
  flex-direction: row;
  width: 100%;
}
@media (max-width: 1300px) {
  .portfolioModal__wrap {
    gap: 0px;
    flex-direction: column-reverse;
  }
}
.portfolioModal__img {
  display: flex;
  aspect-ratio: 996/646;
  width: 100%;
  max-width: 996px;
}
.portfolioModal__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 1300px) {
  .portfolioModal__img {
    max-width: initial;
    width: initial;
  }
}
.portfolioModal__content {
  display: flex;
  flex-direction: column;
  max-width: 628px;
  justify-content: space-between;
  padding: 60px 40px 40px 48px;
}
@media (max-width: 1300px) {
  .portfolioModal__content {
    padding: 24px;
  }
}
@media (max-width: 1300px) {
  .portfolioModal__content {
    max-width: initial;
    align-items: center;
  }
}
.portfolioModal__text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.portfolioModal__textTop {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.portfolioModal__normalSwiper {
  max-width: 996px;
  margin: 0;
}
@media (max-width: 1300px) {
  .portfolioModal__normalSwiper {
    max-width: initial;
  }
}
.portfolioModal__imgHorizonal {
  aspect-ratio: 88/60;
  display: flex;
  width: 100%;
  max-width: 88px;
  opacity: 40%;
}
.portfolioModal__imgHorizonal.swiper-slide-thumb-active {
  opacity: 1;
}
.portfolioModal__imgHorizonal img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.portfolioModal__horizontalSwiper {
  display: flex;
  width: 100%;
}
@media (max-width: 1300px) {
  .portfolioModal__horizontalSwiper {
    display: none;
  }
}
.portfolioModal__navPrev, .portfolioModal__navNext {
  display: flex;
  cursor: pointer;
  position: absolute;
  top: 50%;
  z-index: 2;
}
.portfolioModal__navPrev.swiper-button-disabled, .portfolioModal__navNext.swiper-button-disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.portfolioModal__navNext {
  right: 4px;
}
.portfolioModal__navPrev {
  left: 4px;
}

.imageModal {
  width: 100%;
  height: 100dvh;
  min-height: 100dvh;
  background-color: transparent;
  align-items: center;
  justify-content: center;
}
.imageModal img {
  width: 100%;
  max-width: 80vw;
  max-height: 80vh;
  object-fit: contain;
}

.search__wrap {
  display: flex;
  flex-direction: column;
  gap: 64px;
  width: 100%;
}
@media (max-width: 768px) {
  .search__wrap {
    gap: 32px;
  }
}
.search__top {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (max-width: 768px) {
  .search__top {
    gap: 24px;
  }
}
.search__title {
  font-weight: 800;
  font-size: 80px;
  line-height: 100%;
  color: var(--black);
}
@media (max-width: 768px) {
  .search__title {
    font-size: 32px;
    margin-bottom: -8px;
  }
}
.search__form {
  display: flex;
  width: 100%;
  max-width: 600px;
}
.search__input {
  background: var(--gray);
}
.search__input:has(:placeholder-shown) .search__clearBtn {
  display: none;
}
.search__clearBtn {
  display: flex;
  margin-right: 16px;
}
.search__content {
  display: flex;
  flex-direction: column;
  gap: 64px;
}
@media (max-width: 768px) {
  .search__content {
    gap: 32px;
  }
}
.search__category {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (max-width: 768px) {
  .search__category {
    gap: 16px;
  }
}
.search__items {
  display: flex;
  flex-direction: column;
}
.search__item {
  display: grid;
  grid-template-columns: 1fr 1fr 40px;
  align-items: start;
  gap: 32px;
  padding-top: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--black-16);
}
.search__item:first-child {
  padding-top: 16px;
}
@media (max-width: 768px) {
  .search__item {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-top: 24px;
    padding-bottom: 24px;
  }
  .search__item:first-child {
    padding-top: 0;
  }
}
.search__itemText {
  display: flex;
  flex-direction: column;
}
.search__itemText ul {
  margin: 0;
  padding: 0 0 0 20px;
}
.search__indicator {
  width: 40px;
  height: 40px;
  background: var(--yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .search__indicator {
    width: 32px;
    height: 32px;
  }
  .search__indicator svg {
    width: 16px;
    height: 16px;
  }
}

.blog__wrap {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 32px;
}
@media (max-width: 768px) {
  .blog__wrap {
    gap: 24px;
  }
}
.blog__top {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 48px;
}
@media (max-width: 768px) {
  .blog__top {
    gap: 24px;
  }
}
.blog__tabs {
  display: flex;
  flex-direction: row;
  gap: 12px;
}
.blog__tabsItem {
  display: flex;
  border: 1px solid var(--black-16);
  padding: 15px 16px;
  border-radius: 100px;
  align-items: center;
}
.blog__tabsItem.active {
  border: none;
  background-color: var(--yellow);
}
.blog__content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 16px;
}
@media (max-width: 1024px) {
  .blog__content {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .blog__content {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.blog__card {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.blog__card:hover span:last-child {
  opacity: 0.6;
}
.blog__img {
  display: flex;
  width: 100%;
  aspect-ratio: 533/360;
}
.blog__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog__text {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: start;
}
.blog__text span:last-child {
  transition: all 0.3s ease;
}

.article {
  overflow: visible;
}
.article__wrap {
  display: flex;
  flex-direction: column;
  gap: 80px;
}
@media (max-width: 768px) {
  .article__wrap {
    gap: 48px;
  }
}
.article__top {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
@media (max-width: 768px) {
  .article__top {
    gap: 32px;
  }
}
.article__titleWrap {
  display: flex;
  gap: 40px;
  align-items: end;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  .article__titleWrap {
    flex-direction: column;
    align-items: start;
    gap: 24px;
  }
}
.article__title {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 1260px;
}
@media (max-width: 768px) {
  .article__title {
    gap: 16px;
  }
}
.article__date {
  display: flex;
  flex-direction: column;
  align-items: end;
  gap: 16px;
}
@media (max-width: 1024px) {
  .article__date {
    align-items: start;
  }
}
.article__date * {
  white-space: nowrap;
}
.article__views {
  display: flex;
  align-items: center;
  gap: 10px;
}
.article__img {
  display: flex;
  width: 100%;
  aspect-ratio: 1632/700;
}
.article__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.article__content {
  display: grid;
  grid-template-columns: 460px 1fr;
  align-items: start;
  gap: 60px;
}
@media (max-width: 1024px) {
  .article__content {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.article__sidebarCol {
  height: 100%;
}
.article__sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: 160px;
}
@media (max-width: 768px) {
  .article__sidebar {
    gap: 16px;
  }
}
.article__sidebar a {
  opacity: 0.6;
}
.article__sidebar a.active {
  opacity: 1;
}
.article__textContent {
  display: flex;
  flex-direction: column;
  gap: 64px;
}
@media (max-width: 768px) {
  .article__textContent {
    gap: 32px;
  }
}
.article__contentBlock {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (max-width: 768px) {
  .article__contentBlock {
    gap: 16px;
  }
}
.article__text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 768px) {
  .article__text {
    gap: 16px;
  }
}
.article__list--ul {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding-left: 48px;
}
@media (max-width: 1024px) {
  .article__list--ul {
    gap: 16px;
    padding-left: 36px;
  }
}
.article__list--ul span {
  position: relative;
}
.article__list--ul span::before {
  content: "";
  position: absolute;
  top: 0;
  left: -48px;
  background-color: var(--orange);
  background-image: url('data:image/svg+xml,<svg width="13" height="10" viewBox="0 0 13 10" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M11.6667 1L4.33333 8.33333L1 5" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
}
@media (max-width: 768px) {
  .article__list--ul span::before {
    left: -36px;
    width: 24px;
    height: 24px;
    background-image: url('data:image/svg+xml,<svg width="10" height="8" viewBox="0 0 10 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M9 1L3.5 6.5L1 4" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  }
}
.article__list--ol {
  counter-reset: ol;
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding-left: 48px;
}
@media (max-width: 1024px) {
  .article__list--ol {
    gap: 16px;
    padding-left: 36px;
  }
}
.article__list--ol span {
  position: relative;
}
.article__list--ol span::before {
  content: counter(ol);
  counter-increment: ol;
  position: absolute;
  top: 0;
  left: -48px;
  background-color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  border-radius: 50%;
}
@media (max-width: 768px) {
  .article__list--ol span::before {
    left: -36px;
    width: 24px;
    height: 24px;
    font-size: 12px;
  }
}
.article__links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (max-width: 768px) {
  .article__links {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}
.article__links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px;
  gap: 16px;
  background-color: var(--gray);
}
@media (max-width: 768px) {
  .article__links a {
    padding: 20px 16px;
  }
}
.article__links a, .article__links a span, .article__links a svg path {
  transition: all 0.3s ease;
}
.article__links a:hover {
  background-color: var(--orange);
}
.article__links a:hover span {
  color: var(--white);
}
.article__links a:hover svg path {
  stroke: var(--white);
}
.article__newsContent {
  display: flex;
  flex-direction: column;
  gap: 80px;
}
@media (max-width: 768px) {
  .article__newsContent {
    gap: 48px;
  }
}
.article__galleryWrap {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (max-width: 768px) {
  .article__galleryWrap {
    gap: 24px;
  }
}
.article__gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (max-width: 768px) {
  .article__gallery {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}
.article__galleryItem {
  aspect-ratio: 808/500;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.article__galleryItem img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.article__galleryItem:hover img {
  transform: translate(-50%, -50%) scale(1.2);
}
.article__newsVideo {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (max-width: 768px) {
  .article__newsVideo {
    gap: 16px;
  }
}
.article__newsVideoTop {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (max-width: 768px) {
  .article__newsVideoTop {
    gap: 16px;
  }
}
.article__video {
  display: flex;
  position: relative;
  width: 100%;
  aspect-ratio: 1632/700;
  overflow: hidden;
}
@media (max-width: 768px) {
  .article__video {
    aspect-ratio: 342/460;
  }
}
.article__video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.article__video::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(100.42deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
}
.article__video.is-playing::after {
  opacity: 0;
  pointer-events: none;
}
.article__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .article__play {
    --play-size: 60px;
  }
  .article__play svg {
    width: 20px;
    height: 20px;
  }
}

.articlesSlider {
  background-color: var(--gray);
  margin: 0;
  padding: 144px 0;
}
@media (max-width: 768px) {
  .articlesSlider {
    padding: 78px 0;
  }
}
.articlesSlider__wrap {
  display: flex;
  flex-direction: column;
  gap: 64px;
}
@media (max-width: 768px) {
  .articlesSlider__wrap {
    gap: 32px;
  }
}
.articlesSlider__swiperWrap {
  display: flex;
  position: relative;
}
.articlesSlider__swiper {
  display: flex;
  width: 100%;
  max-width: 100%;
}
.articlesSlider__slide {
  width: 100%;
  max-width: 533px;
}
@media (max-width: 768px) {
  .articlesSlider__slide {
    max-width: 300px;
  }
}
.articlesSlider__navNext {
  position: absolute;
  top: 50%;
  right: -56px;
  display: flex;
}
.articlesSlider__navNext.swiper-button-disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
@media (max-width: 1760px) {
  .articlesSlider__navNext {
    display: none;
  }
}
.articlesSlider__navPrev {
  position: absolute;
  top: 50%;
  left: -56px;
  display: flex;
}
.articlesSlider__navPrev.swiper-button-disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
@media (max-width: 1760px) {
  .articlesSlider__navPrev {
    display: none;
  }
}

.priceList {
  display: flex;
}
.priceList__wrap {
  display: flex;
  flex-direction: column;
  gap: 64px;
}
.priceList__table {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.priceList__grid {
  display: flex;
  flex-direction: column;
  overflow-x: scroll;
  margin: 0 -16px;
  padding: 0 16px;
}
.priceList__row {
  display: grid;
  grid-template-columns: 632px 300px 300px 300px;
  padding: 20px;
  align-items: center;
  grid-auto-flow: column;
  min-width: max-content;
}
.priceList__row:nth-child(odd) {
  background: var(--gray);
}
@media screen and (max-width: 768px) {
  .priceList__row {
    grid-template-columns: 300px 300px 300px 300px;
  }
}

.contacts__wrap {
  display: flex;
  flex-direction: column;
}
.contacts__wrap h1 {
  margin-bottom: 64px;
}
@media (max-width: 768px) {
  .contacts__wrap h1 {
    margin-bottom: 32px;
  }
}
.contacts__content {
  margin-bottom: 100px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  width: 100%;
  max-width: 100%;
  gap: 48px;
}
@media (max-width: 1024px) {
  .contacts__content {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .contacts__content {
    gap: 32px;
    margin-bottom: 48px;
  }
}
.contacts__infoWrap {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
@media (max-width: 768px) {
  .contacts__infoWrap {
    gap: 32px;
  }
}
.contacts__info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 16px;
}
@media (max-width: 768px) {
  .contacts__info {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.contacts__infoItem {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 20px;
}
@media (max-width: 768px) {
  .contacts__infoItem {
    gap: 16px;
  }
}
.contacts__socials {
  display: flex;
  gap: 8px;
  align-items: center;
}
.contacts__socials svg * {
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .contacts__socials svg {
    width: 40px;
    height: 40px;
  }
}
.contacts__socials a:hover svg rect {
  fill: var(--orange);
}
.contacts__socials a:hover svg path {
  fill: var(--white);
}
.contacts__tgLink {
  display: flex;
  align-items: center;
  gap: 16px;
}
@media (max-width: 768px) {
  .contacts__tgLink {
    gap: 8px;
  }
  .contacts__tgLink svg {
    width: 40px;
    height: 40px;
  }
}
.contacts__tgLinkText {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (max-width: 768px) {
  .contacts__tgLinkText {
    gap: 4px;
  }
}
.contacts__map {
  width: 100%;
}
.contacts__map iframe {
  max-width: 100%;
  width: 100%;
  min-height: 500px;
}
@media (max-width: 768px) {
  .contacts__map iframe {
    min-height: 460px;
    max-height: 460px;
  }
}
.contacts__accord {
  display: flex;
  flex-direction: column;
}
.contacts__accordItem {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid rgba(38, 28, 21, 0.1607843137);
}
.contacts__accordBtn {
  padding-bottom: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
.contacts__accordBtn h3 {
  text-align: left;
}
.contacts__indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  background-color: var(--gray);
  transition: all 0.3s ease;
}
.contacts__indicator svg {
  transition: all 0.3s ease;
}
.contacts__indicator.active {
  background-color: var(--yellow);
}
.contacts__indicator.active svg {
  transform: rotate(180deg);
}
.contacts__accrodContent {
  display: flex;
  flex-direction: column;
  height: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}
.contacts__rows {
  display: flex;
  flex-direction: column;
}
.contacts__rowItem {
  display: flex;
  align-items: center;
  gap: 48px;
  justify-content: space-between;
  padding: 32px 0;
  border-bottom: 1px solid rgba(38, 28, 21, 0.1607843137);
}
.contacts__rowItem span:last-child {
  text-align: right;
}
.contacts__rowItem:last-child {
  border-bottom: none;
}
.contacts__rowItem:first-child {
  padding-top: 0;
}
@media (max-width: 768px) {
  .contacts__rowItem {
    gap: 16px;
    flex-direction: column;
    align-items: start;
    padding: 24px 0;
  }
  .contacts__rowItem:first-child {
    padding-top: 0;
  }
  .contacts__rowItem span:last-child {
    text-align: left;
  }
}
.contacts__accordSubtitle {
  margin-bottom: 24px;
  margin-top: 48px;
}
@media (max-width: 768px) {
  .contacts__accordSubtitle {
    margin-bottom: 24px;
    margin-top: 24px;
  }
}

.requirementsMain {
  background-color: var(--gray);
  padding-top: 160px;
}
@media screen and (max-width: 1350px) {
  .requirementsMain {
    padding-top: 80px;
  }
}
.requirementsMain__wrap {
  padding: 32px 0;
  display: flex;
  align-items: start;
  gap: 48px;
}
@media screen and (max-width: 1024px) {
  .requirementsMain__wrap {
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .requirementsMain__wrap {
    gap: 32px;
  }
}
.requirementsMain__left {
  padding-top: 28px;
  width: 100%;
  max-width: 808px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media screen and (max-width: 1024px) {
  .requirementsMain__left {
    max-width: 100%;
    padding-top: 0;
  }
}
@media screen and (max-width: 768px) {
  .requirementsMain__left {
    gap: 16px;
  }
  .requirementsMain__left a {
    margin-top: 8px;
  }
}
.requirementsMain__img {
  width: 100%;
  max-width: 776px;
  aspect-ratio: 776/600;
}
@media screen and (max-width: 1024px) {
  .requirementsMain__img {
    max-width: 100%;
    padding-top: 0;
  }
}
.requirementsMain__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.requirementsPrice__wrap {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 48px;
  align-items: center;
}
@media (max-width: 1024px) {
  .requirementsPrice__wrap {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
}
.requirementsPrice__left {
  display: flex;
  flex-direction: column;
  max-width: 1076px;
  gap: 32px;
}
@media (max-width: 768px) {
  .requirementsPrice__left {
    gap: 16px;
  }
}
.requirementsPrice__right {
  display: flex;
  flex-direction: column;
  background: var(--gray);
  padding: 40px;
  gap: 32px;
  align-items: start;
  height: fit-content;
}
@media (max-width: 768px) {
  .requirementsPrice__right {
    gap: 24px;
    padding: 24px;
    width: 100%;
  }
}
.requirementsPrice__item {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: start;
}

.requirementsRestrict__wrap {
  display: flex;
  flex-direction: column;
  gap: 64px;
}
@media (max-width: 768px) {
  .requirementsRestrict__wrap {
    gap: 32px;
  }
}
.requirementsRestrict__wrap h2 {
  max-width: 800px;
}
.requirementsRestrict__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 32px;
  counter-reset: grid;
}
@media (max-width: 768px) {
  .requirementsRestrict__grid {
    gap: 24px;
    grid-template-columns: 1fr;
  }
}
.requirementsRestrict__item {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: start;
}
.requirementsRestrict__counter {
  width: 40px;
  height: 40px;
  background-color: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .requirementsRestrict__counter {
    width: 32px;
    height: 32px;
    min-width: 32px;
  }
}
.requirementsRestrict__counter::before {
  content: counter(grid, decimal-leading-zero);
  counter-increment: grid;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  color: var(--white);
}
@media (max-width: 768px) {
  .requirementsRestrict__counter::before {
    font-size: 14px;
  }
}

.requirementsGeneral {
  padding: 144px 0;
  background-color: var(--gray);
  counter-reset: requirementsGeneral;
}
@media (max-width: 768px) {
  .requirementsGeneral {
    padding: 78px 0;
  }
}
.requirementsGeneral__wrap {
  display: flex;
  flex-direction: column;
  gap: 64px;
}
@media (max-width: 768px) {
  .requirementsGeneral__wrap {
    gap: 32px;
  }
}
.requirementsGeneral__items {
  display: flex;
  flex-direction: column;
  gap: 64px;
}
@media (max-width: 768px) {
  .requirementsGeneral__items {
    gap: 32px;
  }
}
.requirementsGeneral__item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 64px;
}
.requirementsGeneral__item.requirementsGeneral__item--img-right {
  flex-direction: row-reverse;
}
@media (max-width: 1024px) {
  .requirementsGeneral__item {
    flex-direction: column;
    align-items: start;
  }
  .requirementsGeneral__item.requirementsGeneral__item--img-right {
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .requirementsGeneral__item {
    gap: 24px;
  }
}
.requirementsGeneral__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  max-width: 808px;
}
@media (max-width: 768px) {
  .requirementsGeneral__list {
    gap: 16px;
  }
}
.requirementsGeneral__listItem {
  display: flex;
  align-items: start;
  gap: 16px;
}
.requirementsGeneral__listIndicator {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background-color: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .requirementsGeneral__listIndicator {
    width: 24px;
    height: 24px;
    min-width: 24px;
  }
}
.requirementsGeneral__listIndicator {
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  color: var(--white);
}
@media (max-width: 768px) {
  .requirementsGeneral__listIndicator {
    font-size: 12px;
  }
}
.requirementsGeneral__img {
  display: flex;
  width: 100%;
  aspect-ratio: 760/345;
  overflow: hidden;
}
.requirementsGeneral__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.requirementsFiles__wrap {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 48px;
}
.requirementsFiles__wrap h2 {
  max-width: 580px;
}
@media (max-width: 1024px) {
  .requirementsFiles__wrap {
    flex-direction: column;
    gap: 32px;
  }
  .requirementsFiles__wrap h2 {
    max-width: 100%;
  }
}
.requirementsFiles__right {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 945px;
  gap: 32px;
}
@media (max-width: 1024px) {
  .requirementsFiles__right {
    max-width: 100%;
  }
}
.requirementsFiles__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  counter-reset: requirementsGeneral;
}
@media (max-width: 768px) {
  .requirementsFiles__list {
    gap: 16px;
  }
}
.requirementsFiles__listItem {
  display: flex;
  align-items: start;
  gap: 16px;
}
@media (max-width: 768px) {
  .requirementsFiles__listItem {
    gap: 8px;
  }
}
.requirementsFiles__indicator {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background-color: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .requirementsFiles__indicator {
    width: 24px;
    height: 24px;
    min-width: 24px;
  }
}
.requirementsFiles__indicator {
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  color: var(--white);
}
@media (max-width: 768px) {
  .requirementsFiles__indicator {
    font-size: 12px;
  }
}
.requirementsFiles__table {
  display: flex;
  flex-direction: column;
  background-color: var(--gray);
  padding: 40px;
  gap: 30px;
}
@media (max-width: 768px) {
  .requirementsFiles__table {
    padding: 24px;
    gap: 24px;
  }
}
.requirementsFiles {
  /* &__img {
     display: flex;
     flex-direction: column;
     background-color: var(--gray);
     padding: 15px;
     width: 100%;
     aspect-ratio: 945 / 440;

     & img {
        height: 100%;
        object-fit: contain;
     }
  } */
}
.requirementsFiles__tableTitle {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.requirementsFiles__tableTitle span:last-child {
  text-align: right;
}
.requirementsFiles__tableContent {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (max-width: 768px) {
  .requirementsFiles__tableContent {
    gap: 24px;
  }
}
.requirementsFiles__row {
  display: flex;
  align-items: end;
  gap: 20px;
}
@media (max-width: 768px) {
  .requirementsFiles__row {
    gap: 12px;
  }
}
.requirementsFiles__row div {
  display: flex;
  width: 100%;
  border-bottom: 1px dashed rgba(38, 28, 21, 0.4784313725);
}
.requirementsFiles__images {
  display: flex;
  flex-direction: column;
  background-color: var(--gray);
  padding: 14px;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.requirementsFiles__img {
  width: 100%;
  max-width: 945px;
  aspect-ratio: 945/440;
  padding: 15px;
  background-color: var(--gray);
}
@media (max-width: 1024px) {
  .requirementsFiles__img {
    max-width: 100%;
  }
}
.requirementsFiles__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.requirementsVars__wrap {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media screen and (max-width: 768px) {
  .requirementsVars__wrap {
    gap: 24px;
  }
}
.requirementsVars__wrap h2 {
  max-width: 920px;
}
.requirementsVars__tabs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .requirementsVars__tabs {
    width: calc(100% + 36px);
    flex-wrap: nowrap;
    margin-left: -20px;
    padding: 0 20px;
    overflow: auto;
  }
}
.requirementsVars__tabsItem {
  display: flex;
  align-items: center;
  border-radius: 100px;
  min-height: 40px;
  padding: 0 20px;
  border: 1px solid var(--black-16);
  cursor: pointer;
}
.requirementsVars__tabsItem span {
  white-space: nowrap;
}
.requirementsVars__tabsItem.active {
  background: var(--yellow);
  border: none;
}
.requirementsVars__content {
  flex-direction: column;
  gap: 32px;
  display: none;
}
.requirementsVars__content.active {
  display: flex;
}
@media screen and (max-width: 768px) {
  .requirementsVars__content {
    gap: 24px;
  }
}
.requirementsVars__contentTop {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 1076px;
}
@media screen and (max-width: 768px) {
  .requirementsVars__contentTop {
    gap: 16px;
  }
}
.requirementsVars__contentGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media screen and (max-width: 1024px) {
  .requirementsVars__contentGrid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 8px;
  }
}
.requirementsVars__contentItem {
  aspect-ratio: 396/351;
  position: relative;
  /*cursor: pointer;*/
  overflow: hidden;
}
.requirementsVars__contentItem:hover img {
  transform: translate(-50%, -50%) scale(1.2);
}
.requirementsVars__contentItem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.priceListPage__wrap {
  display: flex;
  flex-direction: column;
  gap: 64px;
  align-items: start;
}
@media (max-width: 768px) {
  .priceListPage__wrap {
    gap: 32px;
  }
}
.priceListPage__cards {
  display: flex;
  gap: 16px;
}
@media (max-width: 768px) {
  .priceListPage__cards {
    flex-direction: column;
    width: 100%;
  }
}
.priceListPage__item {
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: var(--gray);
  padding: 16px 16px 32px 16px;
  max-width: 396px;
  width: 100%;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .priceListPage__item {
    max-width: 100%;
    padding: 16px 16px 24px 16px;
    gap: 16px;
  }
}
.priceListPage__item:hover {
  background: var(--orange);
}
.priceListPage__item:hover span {
  color: var(--white);
}
.priceListPage__img {
  display: flex;
  width: 100%;
  aspect-ratio: 364/205;
  overflow: hidden;
}
.priceListPage__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.colorsMain {
  background-color: var(--gray);
  padding-top: 160px;
}
@media screen and (max-width: 1350px) {
  .colorsMain {
    padding-top: 80px;
  }
}
.colorsMain__text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (max-width: 768px) {
  .colorsMain__text {
    gap: 8px;
  }
}
.colorsMain__wrap {
  padding: 32px 0;
  display: flex;
  align-items: start;
  gap: 48px;
}
@media screen and (max-width: 1024px) {
  .colorsMain__wrap {
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .colorsMain__wrap {
    gap: 32px;
  }
}
.colorsMain__left {
  padding-top: 28px;
  width: 100%;
  max-width: 808px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media screen and (max-width: 1024px) {
  .colorsMain__left {
    max-width: 100%;
    padding-top: 0;
  }
}
@media screen and (max-width: 768px) {
  .colorsMain__left {
    gap: 16px;
  }
  .colorsMain__left a {
    margin-top: 8px;
  }
}
.colorsMain__img {
  width: 100%;
  max-width: 776px;
  aspect-ratio: 776/600;
}
@media screen and (max-width: 1024px) {
  .colorsMain__img {
    max-width: 100%;
    padding-top: 0;
  }
}
.colorsMain__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.colorsPecul__wrap {
  display: flex;
  flex-direction: column;
  gap: 64px;
}
@media (max-width: 768px) {
  .colorsPecul__wrap {
    gap: 32px;
  }
}
.colorsPecul__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  counter-reset: colorsGrid;
}
@media (max-width: 1440px) {
  .colorsPecul__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .colorsPecul__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
.colorsPecul__gridItem {
  display: flex;
  flex-direction: column;
  gap: 30px;
  min-height: 300px;
  background-color: var(--gray);
  padding: 30px;
}
@media (max-width: 768px) {
  .colorsPecul__gridItem {
    min-height: 0;
    padding: 24px;
    gap: 24px;
  }
}
.colorsPecul__gridItem:last-child {
  background-color: var(--orange);
}
.colorsPecul__indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  aspect-ratio: 1;
  min-width: 40px;
  border-radius: 50%;
  background-color: var(--orange);
}
@media (max-width: 768px) {
  .colorsPecul__indicator {
    width: 32px;
    height: 32px;
    min-width: 32px;
  }
}
.colorsPecul__indicator::before {
  content: counter(colorsGrid, decimal-leading-zero);
  counter-increment: colorsGrid;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  color: var(--white);
}
@media (max-width: 768px) {
  .colorsPecul__indicator::before {
    font-size: 14px;
  }
}
.colorsPecul__text {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.colorsSamples__wrap {
  display: flex;
  flex-direction: column;
  gap: 64px;
}
@media (max-width: 768px) {
  .colorsSamples__wrap {
    gap: 32px;
  }
}
.colorsSamples__wrap h2 {
  max-width: 700px;
}
.colorsSamples__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 1024px) {
  .colorsSamples__grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
  }
}
.colorsSamples__card {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.colorsSamples__img {
  display: flex;
  width: 100%;
  aspect-ratio: 533/360;
  overflow: hidden;
}
.colorsSamples__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.creditMain {
  background-color: var(--gray);
  padding-top: 160px;
}
@media screen and (max-width: 1350px) {
  .creditMain {
    padding-top: 80px;
  }
}
.creditMain__text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (max-width: 768px) {
  .creditMain__text {
    gap: 8px;
  }
}
.creditMain__wrap {
  padding: 32px 0;
  display: flex;
  align-items: start;
  gap: 48px;
}
@media screen and (max-width: 1024px) {
  .creditMain__wrap {
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .creditMain__wrap {
    gap: 32px;
  }
}
.creditMain__left {
  padding-top: 28px;
  width: 100%;
  max-width: 808px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media screen and (max-width: 1024px) {
  .creditMain__left {
    max-width: 100%;
    padding-top: 0;
  }
}
@media screen and (max-width: 768px) {
  .creditMain__left {
    gap: 16px;
  }
  .creditMain__left a {
    margin-top: 8px;
  }
}
.creditMain__img {
  width: 100%;
  max-width: 776px;
  aspect-ratio: 776/600;
}
@media screen and (max-width: 1024px) {
  .creditMain__img {
    max-width: 100%;
    padding-top: 0;
  }
}
.creditMain__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.creditFromComp__wrap {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 48px;
}
@media (max-width: 1100px) {
  .creditFromComp__wrap {
    flex-direction: column;
    display: flex;
  }
}
@media (max-width: 768px) {
  .creditFromComp__wrap {
    gap: 24px;
  }
}
.creditFromComp__left {
  display: flex;
  flex-direction: column;
  gap: 46px;
  width: 100%;
  max-width: 808px;
}
@media (max-width: 1100px) {
  .creditFromComp__left {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .creditFromComp__left {
    gap: 24px;
  }
}
.creditFromComp__leftTop {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (max-width: 768px) {
  .creditFromComp__leftTop {
    gap: 16px;
  }
}
.creditFromComp__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
@media (max-width: 768px) {
  .creditFromComp__grid {
    grid-template-columns: 1fr;
  }
}
.creditFromComp__card {
  padding: 16px;
  gap: 16px;
  display: flex;
  flex-direction: column;
  align-items: start;
  background-color: var(--gray);
}
.creditFromComp__card svg {
  width: 24px;
  height: 24px;
  background-color: var(--orange);
  border-radius: 50%;
  overflow: hidden;
}
.creditFromComp__img {
  display: flex;
  width: 100%;
  max-width: 776px;
  overflow: hidden;
  border-radius: 8px;
  height: 100%;
  padding: 40px;
  height: 100%;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1100px) {
  .creditFromComp__img {
    max-width: 100%;
    aspect-ratio: 343/194;
  }
}
.creditFromComp__img img {
  width: 420px;
  max-width: 80%;
}

.creditFract {
  background-color: var(--gray);
  padding: 144px 0;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .creditFract {
    padding: 78px 0;
  }
}
.creditFract__wrap {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 48px;
}
@media (max-width: 1100px) {
  .creditFract__wrap {
    flex-direction: column;
    display: flex;
  }
}
@media (max-width: 768px) {
  .creditFract__wrap {
    gap: 24px;
  }
}
.creditFract__left {
  display: flex;
  flex-direction: column;
  gap: 46px;
  width: 100%;
  max-width: 808px;
}
@media (max-width: 1100px) {
  .creditFract__left {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .creditFract__left {
    gap: 24px;
  }
}
.creditFract__leftTop {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (max-width: 768px) {
  .creditFract__leftTop {
    gap: 16px;
  }
}
.creditFract__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
@media (max-width: 768px) {
  .creditFract__grid {
    grid-template-columns: 1fr;
  }
}
.creditFract__card {
  padding: 16px;
  gap: 16px;
  display: flex;
  flex-direction: column;
  align-items: start;
  background-color: var(--white);
}
.creditFract__card svg {
  width: 24px;
  height: 24px;
  background-color: var(--orange);
  border-radius: 50%;
  overflow: hidden;
}
.creditFract__img {
  display: flex;
  width: 100%;
  max-width: 776px;
  overflow: hidden;
  border-radius: 8px;
  height: 100%;
  padding: 40px;
  height: 100%;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1100px) {
  .creditFract__img {
    max-width: 100%;
    aspect-ratio: 343/194;
  }
}
/*.creditFract__img img {*/
/*  width: 420px;*/
/*  max-width: 80%;*/
/*}*/

.deliveryMain {
  background-color: var(--gray);
  padding-top: 160px;
}
@media screen and (max-width: 1350px) {
  .deliveryMain {
    padding-top: 80px;
  }
}
.deliveryMain__wrap {
  padding: 32px 0;
  display: flex;
  align-items: start;
  gap: 48px;
}
@media screen and (max-width: 1024px) {
  .deliveryMain__wrap {
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .deliveryMain__wrap {
    gap: 32px;
  }
}
.deliveryMain__left {
  padding-top: 28px;
  width: 100%;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media screen and (max-width: 1024px) {
  .deliveryMain__left {
    max-width: 100%;
    padding-top: 0;
  }
}
@media screen and (max-width: 768px) {
  .deliveryMain__left {
    gap: 24px;
  }
  .deliveryMain__left a {
    margin-top: 8px;
  }
}
.deliveryMain__img {
  width: 100%;
  max-width: 700px;
  aspect-ratio: 776/600;
}
@media screen and (max-width: 1024px) {
  .deliveryMain__img {
    max-width: 100%;
    padding-top: 0;
  }
}
.deliveryMain__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.deliveryConditions__wrap {
  display: flex;
  flex-direction: column;
  gap: 64px;
}
@media screen and (max-width: 768px) {
  .deliveryConditions__wrap {
    gap: 32px;
  }
}
.deliveryConditions__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  counter-reset: grid;
}
@media (max-width: 1200px) {
  .deliveryConditions__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .deliveryConditions__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
.deliveryConditions__card {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 30px;
  background-color: var(--gray);
}
@media (max-width: 768px) {
  .deliveryConditions__card {
    gap: 24px;
    padding: 24px;
  }
}
.deliveryConditions__indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  aspect-ratio: 1;
  min-width: 40px;
  border-radius: 50%;
  background-color: var(--orange);
}
@media (max-width: 768px) {
  .deliveryConditions__indicator {
    width: 32px;
    height: 32px;
    min-width: 32px;
  }
}
.deliveryConditions__indicator::before {
  content: counter(grid, decimal-leading-zero);
  counter-increment: grid;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  color: var(--white);
}
@media (max-width: 768px) {
  .deliveryConditions__indicator::before {
    font-size: 14px;
  }
}
.deliveryConditions__text {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.deliveryZones__wrap {
  display: flex;
  flex-direction: column;
  gap: 64px;
}
@media (max-width: 768px) {
  .deliveryZones__wrap {
    gap: 32px;
  }
}
.deliveryZones__cols {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 32px;
}
@media (max-width: 1400px) {
  .deliveryZones__cols {
    display: flex;
    flex-direction: column;
  }
}
.deliveryZones__map {
  display: flex;
}
@media (max-width: 1400px) {
  .deliveryZones__map {
    min-height: 440px;
  }
}
.deliveryZones__map iframe {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
}
@media (max-width: 1400px) {
  .deliveryZones__map iframe {
    min-height: 440px;
  }
}
.deliveryZones__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.deliveryZones__contentItems {
  display: flex;
  flex-direction: column;
}
.deliveryZones__contentItem {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-bottom: 24px;
  padding-top: 10px;
  border-bottom: 1px solid var(--black-16);
}
@media (max-width: 768px) {
  .deliveryZones__contentItem {
    padding-top: 0;
  }
}
.deliveryZones__contentItem:last-child {
  padding-top: 24px;
  border-bottom: none;
}
@media (max-width: 768px) {
  .deliveryZones__contentItem:last-child {
    padding-bottom: 0;
  }
}
.deliveryZones__list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (max-width: 768px) {
  .deliveryZones__list {
    gap: 24px;
  }
}
.deliveryZones__listItem {
  display: flex;
  align-items: end;
  gap: 20px;
}
@media (max-width: 768px) {
  .deliveryZones__listItem {
    flex-direction: column;
    align-items: start;
    gap: 12px;
  }
}
.deliveryZones__listItem div {
  width: 100%;
  border-bottom: 1px dashed var(--black-48);
}
@media (max-width: 768px) {
  .deliveryZones__listItem div {
    display: none;
  }
}
.deliveryZones__listItem span:first-child {
  white-space: nowrap;
}
.deliveryZones__link {
  display: flex;
  align-items: center;
  gap: 10px;
}
.deliveryZones__linkIndicator {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  min-width: 40px;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: var(--yellow);
}

.deliveryBottom {
  background-color: var(--gray);
  padding: 144px 0;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .deliveryBottom {
    padding: 78px 0;
  }
}
.deliveryBottom__wrap {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.deliveryBottom__wrap h2 {
  max-width: 808px;
}
.deliveryBottom__top {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.deliveryBottom__tabs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .deliveryBottom__tabs {
    width: calc(100% + 36px);
    flex-wrap: nowrap;
    margin-left: -20px;
    padding: 0 20px;
    overflow: auto;
  }
}
.deliveryBottom__tabItem {
  display: flex;
  align-items: center;
  border-radius: 100px;
  min-height: 40px;
  padding: 0 20px;
  border: 1px solid var(--black-16);
  cursor: pointer;
  color: var(--black);
}
.deliveryBottom__tabItem span {
  white-space: nowrap;
}
.deliveryBottom__tabItem.active {
  background: var(--yellow);
  border: none;
}
.deliveryBottom__content {
  display: none;
  align-items: start;
  gap: 32px;
}
.deliveryBottom__content.active {
  display: flex;
}
@media (max-width: 1200px) {
  .deliveryBottom__content {
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .deliveryBottom__content {
    gap: 24px;
  }
}
.deliveryBottom__contentTextWrap {
  display: flex;
  flex-direction: column;
  max-width: 808px;
  padding-top: 24px;
  gap: 24px;
}
@media (max-width: 1200px) {
  .deliveryBottom__contentTextWrap {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .deliveryBottom__contentTextWrap {
    padding-top: 0;
  }
}
.deliveryBottom__contentText {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 768px) {
  .deliveryBottom__contentText {
    gap: 16px;
  }
}
.deliveryBottom__img {
  display: flex;
  width: 100%;
  max-width: 776px;
  aspect-ratio: 776/440;
  overflow: hidden;
  border-radius: 8px;
}
@media (max-width: 1200px) {
  .deliveryBottom__img {
    max-width: 100%;
  }
}
.deliveryBottom__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.guaranteesMain {
  background-color: var(--gray);
  padding-top: 160px;
}
@media screen and (max-width: 1350px) {
  .guaranteesMain {
    padding-top: 80px;
  }
}
.guaranteesMain__wrap {
  padding: 32px 0;
  display: flex;
  align-items: start;
  gap: 48px;
}
@media screen and (max-width: 1024px) {
  .guaranteesMain__wrap {
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .guaranteesMain__wrap {
    gap: 32px;
  }
}
.guaranteesMain__left {
  padding-top: 28px;
  width: 100%;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media screen and (max-width: 1024px) {
  .guaranteesMain__left {
    max-width: 100%;
    padding-top: 0;
  }
}
@media screen and (max-width: 768px) {
  .guaranteesMain__left {
    gap: 24px;
  }
  .guaranteesMain__left a {
    margin-top: 8px;
  }
}
.guaranteesMain__img {
  width: 100%;
  max-width: 700px;
  aspect-ratio: 776/600;
}
@media screen and (max-width: 1024px) {
  .guaranteesMain__img {
    max-width: 100%;
    padding-top: 0;
  }
}
.guaranteesMain__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.guaranteesSigns__wrap {
  display: grid;
  grid-template-columns: 1.37fr 0.63fr;
  width: 100%;
  gap: 48px;
}
@media (max-width: 1200px) {
  .guaranteesSigns__wrap {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
}
.guaranteesSigns__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
}
.guaranteesSigns__content h2 {
  max-width: 800px;
}
.guaranteesSigns__cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  counter-reset: grid;
}
@media (max-width: 768px) {
  .guaranteesSigns__cols {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.guaranteesSigns__item {
  display: flex;
  align-items: start;
  gap: 16px;
}
.guaranteesSigns__indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  aspect-ratio: 1;
  min-width: 40px;
  border-radius: 50%;
  background-color: var(--orange);
}
@media (max-width: 768px) {
  .guaranteesSigns__indicator {
    width: 32px;
    height: 32px;
    min-width: 32px;
  }
}
.guaranteesSigns__indicator::before {
  content: counter(grid);
  counter-increment: grid;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  color: var(--white);
}
@media (max-width: 768px) {
  .guaranteesSigns__indicator::before {
    font-size: 14px;
  }
}
.guaranteesSigns__img {
  max-width: 100%;
  overflow: hidden;
}
@media (max-width: 1200px) {
  .guaranteesSigns__img {
    /*aspect-ratio: 1137/758;*/
  }
}
@media (max-width: 768px) {
  .guaranteesSigns__img {
    /*aspect-ratio: 343/419;*/
  }
}
.guaranteesSigns__img img {
  width: 100%;
  height: 100%;
  /*object-fit: cover;*/
}

.guaranteesSigns2__wrap {
  display: flex;
  flex-direction: column;
  gap: 64px;
}
.guaranteesSigns2__wrap h2 {
  max-width: 808px;
}
@media screen and (max-width: 768px) {
  .guaranteesSigns2__wrap {
    gap: 32px;
  }
}
.guaranteesSigns2__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  counter-reset: grid;
}
@media (max-width: 1200px) {
  .guaranteesSigns2__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .guaranteesSigns2__grid {
    grid-template-columns: 1fr !important;
    gap: 12px;
  }
}
.guaranteesSigns2__card {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 30px;
  background-color: var(--gray);
}
@media (max-width: 768px) {
  .guaranteesSigns2__card {
    gap: 24px;
    padding: 24px;
  }
}
.guaranteesSigns2__indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  aspect-ratio: 1;
  min-width: 40px;
  border-radius: 50%;
  background-color: var(--orange);
}
@media (max-width: 768px) {
  .guaranteesSigns2__indicator {
    width: 32px;
    height: 32px;
    min-width: 32px;
  }
}
.guaranteesSigns2__indicator::before {
  content: counter(grid, decimal-leading-zero);
  counter-increment: grid;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  color: var(--white);
}
@media (max-width: 768px) {
  .guaranteesSigns2__indicator::before {
    font-size: 14px;
  }
}
.guaranteesSigns2__text {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.guaranteesGray {
  background-color: var(--gray);
  padding: 144px 0;
}
@media (max-width: 768px) {
  .guaranteesGray {
    padding: 78px 0;
  }
}
.guaranteesGray__container {
  display: flex;
  flex-direction: column;
  gap: 144px;
}
@media (max-width: 768px) {
  .guaranteesGray__container {
    gap: 78px;
  }
}
.guaranteesSignsGray__wrap {
  display: flex;
  flex-direction: column;
  gap: 64px;
}
.guaranteesSignsGray__wrap h2 {
  max-width: 808px;
}
@media screen and (max-width: 768px) {
  .guaranteesSignsGray__wrap {
    gap: 32px;
  }
}
.guaranteesSignsGray__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  counter-reset: grid;
}
@media (max-width: 1024px) {
  .guaranteesSignsGray__grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .guaranteesSignsGray__grid {
    gap: 12px;
  }
}
.guaranteesSignsGray__card {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 30px;
  background-color: var(--white);
}
@media (max-width: 768px) {
  .guaranteesSignsGray__card {
    gap: 24px;
    padding: 24px;
  }
}
.guaranteesSignsGray__indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  aspect-ratio: 1;
  min-width: 40px;
  border-radius: 50%;
  background-color: var(--orange);
}
@media (max-width: 768px) {
  .guaranteesSignsGray__indicator {
    width: 32px;
    height: 32px;
    min-width: 32px;
  }
}
.guaranteesSignsGray__indicator::before {
  content: counter(grid, decimal-leading-zero);
  counter-increment: grid;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  color: var(--white);
}
@media (max-width: 768px) {
  .guaranteesSignsGray__indicator::before {
    font-size: 14px;
  }
}
.guaranteesSignsGray__text {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.guaranteesBottom {
  background-color: var(--gray);
  padding: 144px 0;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .guaranteesBottom {
    padding: 78px 0;
  }
}
.guaranteesBottom__wrap {
  display: flex;
  flex-direction: column;
  gap: 64px;
}
.guaranteesBottom__wrap h2 {
  max-width: 808px;
}
@media screen and (max-width: 768px) {
  .guaranteesBottom__wrap {
    gap: 32px;
  }
}
.guaranteesBottom__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media screen and (max-width: 768px) {
  .guaranteesBottom__content {
    gap: 24px;
  }
}
.guaranteesBottom__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
@media (max-width: 1024px) {
  .guaranteesBottom__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .guaranteesBottom__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
.guaranteesBottom__card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px;
  background-color: var(--white);
}
.guaranteesBottom__indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  aspect-ratio: 1;
  min-width: 24px;
  border-radius: 50%;
  background-color: var(--orange);
}
.guaranteesBottom__indicator svg {
  width: 12px;
  min-width: 12px;
  height: 12px;
}
@media (max-width: 768px) {
  .guaranteesBottom__indicator {
    /* width: 32px;
    height: 32px;
    min-width: 32px; */
  }
}

.priceListService {
  display: flex;
}
.priceListService__wrap {
  display: flex;
  flex-direction: column;
  gap: 64px;
}
@media screen and (max-width: 768px) {
  .priceListService__wrap {
    gap: 32px;
  }
}
.priceListService__title {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 768px) {
  .priceListService__title {
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
  }
}
.priceListService__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media screen and (max-width: 768px) {
  .priceListService__grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.priceListService__gridItem {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.priceListService__gridImg {
  display: flex;
  aspect-ratio: 396/300;
}
.priceListService__gridImg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.priceListService__gridText {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.priceListService__top {
  gap: 20px;
  display: flex;
  flex-direction: column;
}
.priceListService__table {
  display: flex;
  flex-direction: column;
  overflow-x: scroll;
  gap: 30px;
}
.priceListService__header {
  display: grid;
  grid-template-columns: 632px 300px;
  padding: 20px;
  align-items: center;
  grid-auto-flow: column;
  min-width: max-content;
}
.priceListService__header:nth-child(odd) {
  background: var(--gray);
}
@media screen and (max-width: 768px) {
  .priceListService__header {
    grid-template-columns: 300px 300px;
  }
}
.priceListService__row {
  display: grid;
  grid-template-columns: 632px 300px;
  padding: 20px;
  align-items: center;
  grid-auto-flow: column;
  min-width: max-content;
}
.priceListService__row:nth-child(even) {
  background: var(--gray);
}
@media screen and (max-width: 768px) {
  .priceListService__row {
    grid-template-columns: 300px 300px;
  }
}
.priceListService__titleContainer {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
}
@media screen and (max-width: 768px) {
  .priceListService__titleContainer {
    flex-direction: column;
    gap: 24px;
  }
}
.priceListService__allPrice {
  display: flex;
  align-items: center;
  gap: 16px;
}
.priceListService__gridWithIcon {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media screen and (max-width: 1300px) {
  .priceListService__gridWithIcon {
    grid-template-columns: repeat(1, 1fr);
  }
}
.priceListService__gridWithIconItem {
  display: flex;
  flex-direction: column;
  background-color: var(--gray);
  padding: 60px;
  border-radius: 8px;
  gap: 30px;
}
.priceListService__dashedLine {
  width: 100%;
  border-bottom: 1px dashed var(--black-48);
}
@media screen and (max-width: 768px) {
  .priceListService__dashedLine {
    display: none;
  }
}
.priceListService__priceItem {
  display: flex;
  flex-direction: row;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .priceListService__priceItem {
    flex-direction: column;
    gap: 10px;
  }
  .priceListService__priceItem span:first-child {
    color: var(--black-80);
  }
}
.priceListService__gridImgIcon {
  max-height: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}
.priceListService__gridImgIcon img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 1300px) {
  .priceListService__gridImgIcon {
    aspect-ratio: 808/440;
  }
}
@media screen and (max-width: 768px) {
  .priceListService__gridImgIcon {
    aspect-ratio: 343/320;
  }
}

.materialsService {
  display: flex;
}
.materialsService__wrap {
  display: flex;
  flex-direction: column;
  gap: 64px;
}
.materialsService__title {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.materialsService__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.materialsService__gridItem {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.materialsService__gridImg {
  display: flex;
  aspect-ratio: 533/360;
  overflow: hidden;
}
.materialsService__gridImg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.materialsService__gridText {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.guaranteesService__wrap {
  display: flex;
  flex-direction: row;
}
.guaranteesService__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
}
@media (max-width: 1024px) {
  .guaranteesService__grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .guaranteesService__grid {
    gap: 24px;
  }
}
.guaranteesService__img {
  width: 100%;
  aspect-ratio: 808/480;
  overflow: hidden;
}
.guaranteesService__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.guaranteesService__gridItem {
  flex-direction: column;
  gap: 20px;
  display: flex;
}
.guaranteesService__text {
  display: -webkit-box;
  -webkit-line-clamp: 8; /* Показываем 10 строк */
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.guaranteesService__text.show {
  -webkit-line-clamp: unset;
}
.guaranteesService__text ul {
  margin: 0 0 10px 0;
  padding: 0 20px;
}
.guaranteesService__text p, .guaranteesService__text span {
  margin-bottom: 10px;
}
.guaranteesService__text p:last-child, .guaranteesService__text span:last-child {
  margin-bottom: 0;
}
.guaranteesService__text * {
  font-size: 20px;
  font-weight: 600;
  line-height: 160%;
  color: var(--black-64);
}
@media (max-width: 768px) {
  .guaranteesService__text * {
    font-size: 14px;
  }
}
.guaranteesService__showMore {
  align-self: start;
  display: flex;
}
.guaranteesService__showMore span:last-child {
  display: none;
}
.guaranteesService__showMore.active span:first-child {
  display: none;
}
.guaranteesService__showMore.active span:last-child {
  display: flex;
}

.howDelivery {
  display: flex;
  background-color: var(--gray);
  padding: 116px 0;
}
@media screen and (max-width: 1200px) {
  .howDelivery {
    padding: 60px 0;
  }
}
.howDelivery__wrap {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 48px;
}
@media screen and (max-width: 1200px) {
  .howDelivery__wrap {
    gap: 24px;
  }
}
@media screen and (max-width: 1024px) {
  .howDelivery__wrap {
    flex-direction: column;
  }
}
.howDelivery__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 1076px;
}
.howDelivery__contactBlock {
  display: flex;
  flex-direction: column;
  background-color: var(--white);
  padding: 49px;
  border-radius: 8px;
  gap: 40px;
  max-width: 396px;
  min-width: 396px;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .howDelivery__contactBlock {
    max-width: initial;
    min-width: initial;
    padding: 40px 24px;
    gap: 24px;
  }
}
.howDelivery__contactItem {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
}

.portfolio {
  display: flex;
}
.portfolio__wrap {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.portfolio__top {
  gap: 48px;
  display: flex;
  flex-direction: column;
}
.portfolio__tabs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .portfolio__tabs {
    width: calc(100% + 36px);
    flex-wrap: nowrap;
    margin-left: -20px;
    padding: 0 20px;
    overflow: auto;
  }
}
.portfolio__tabItem {
  display: flex;
  align-items: center;
  border-radius: 100px;
  min-height: 40px;
  padding: 0 20px;
  border: 1px solid var(--black-16);
  cursor: pointer;
}
.portfolio__tabItem span {
  white-space: nowrap;
}
.portfolio__tabItem.active {
  background: var(--yellow);
  border: none;
}
.portfolio__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  /*display: none;*/
}
.portfolio__grid.active {
  display: grid;
}
@media (max-width: 1200px) {
  .portfolio__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .portfolio__grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.portfolio__gridItem {
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-start;
  aspect-ratio: 543/400;
  padding: 25px 24px;
  position: relative;
}
@media (max-width: 1080px) {
  .portfolio__gridItem {
    padding: 16px;
  }
}
.portfolio__gridItem::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.64) 100%), linear-gradient(180deg, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0.48) 100%);
}
.portfolio__gridText {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
  position: relative;
  z-index: 2;
  height: fit-content;
  align-self: flex-end;
  gap: 8px;
}
.portfolio__breadCrumbsPadding {
  padding-top: 96px;
}

.about {
  display: flex;
}
.about__wrap {
  display: flex;
  flex-direction: column;
  gap: 64px;
}
@media screen and (max-width: 768px) {
  .about__wrap {
    gap: 32px;
  }
}
.about__top {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .about__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
}
.about__title {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 1382px;
}
.about__requestButton {
  display: flex;
  min-width: 240px;
}
.about__img {
  aspect-ratio: 1632/700;
  width: 100%;
  display: flex;
}
.about__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about__topContent {
  display: flex;
  gap: 48px;
  flex-direction: column;
}
@media screen and (max-width: 1024px) {
  .about__topContent {
    gap: 32px;
  }
}
.about__swiperItem {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 533px;
}
.about__swiperImg {
  aspect-ratio: 533/360;
  width: 100%;
  max-width: 533px;
  background-color: var(--gray);
  padding: 15px;
}
.about__swiperImg img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.about__swiperText {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 1024px) {
  .about__swiperText {
    gap: 10px;
  }
}
@media screen and (max-width: 1653px) {
  .about__swiper {
    margin-left: calc(var(--container-padding) * -1);
    width: calc(100% + var(--container-padding) * 2);
    padding: 0 var(--container-padding);
  }
}
.about__navPrev, .about__navNext {
  display: flex;
  cursor: pointer;
  position: absolute;
  top: 50%;
  z-index: 2;
}
.about__navPrev.swiper-button-disabled, .about__navNext.swiper-button-disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
@media screen and (max-width: 1750px) {
  .about__navPrev, .about__navNext {
    display: none;
  }
}
.about__navNext {
  transform: rotate(180deg);
  right: -48px;
}
.about__navPrev {
  left: -48px;
}
.about__swiperWithButton {
  position: relative;
}
.about__youtube {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
}
.about__ytImg {
  width: 92px;
  min-width: 92px;
  height: 22px;
}
.about__video {
  display: flex;
  flex-direction: column;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}
.about__video::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(100.42deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
}
.about__video.is-playing::after {
  opacity: 0;
  pointer-events: none;
}
.about__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .about__play {
    --play-size: 60px;
  }
  .about__play svg {
    width: 20px;
    height: 20px;
  }
}
.about__teamGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
}
@media (max-width: 1024px) {
  .about__teamGrid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .about__teamGrid {
    grid-template-columns: 1fr;
  }
}
.about__teamGridImg {
  display: flex;
  aspect-ratio: 543/272;
}
.about__teamGridImg img {
  width: 100%;
  height: 100%;
}
.about__teamTitle {
  display: flex;
  gap: 24px;
  flex-direction: column;
}
@media screen and (max-width: 1024px) {
  .about__teamTitle {
    gap: 16px;
  }
}
.about__blogTitle {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 1653px) {
  .about__blogTitle {
    grid-template-columns: repeat(1, 1fr);
    gap: 16px;
  }
}
.about__titleContent {
  display: flex;
  gap: 32px;
  flex-direction: column;
}
@media screen and (max-width: 1653px) {
  .about__titleContent {
    gap: 24px;
  }
}
.about__blogLink {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}
.about__swiperImgBlog {
  aspect-ratio: 533/360;
  width: 100%;
  max-width: 533px;
}
.about__swiperImgBlog img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.about__swiperTextBlog {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.about__navPrevBlog, .about__navNextBlog {
  display: flex;
  cursor: pointer;
  position: absolute;
  top: 50%;
  z-index: 2;
}
.about__navPrevBlog.swiper-button-disabled, .about__navNextBlog.swiper-button-disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
@media screen and (max-width: 1750px) {
  .about__navPrevBlog, .about__navNextBlog {
    display: none;
  }
}
.about__navNextBlog {
  transform: rotate(180deg);
  right: -48px;
}
.about__navPrevBlog {
  left: -48px;
}
.about__swiperItemBlog {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 533px;
}
@media screen and (max-width: 1653px) {
  .about__swiperBlog {
    margin-left: calc(var(--container-padding) * -1);
    width: calc(100% + var(--container-padding) * 2);
    padding: 0 var(--container-padding);
  }
}

.notFound {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}
.notFound__wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.notFound__content {
  gap: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .notFound__content {
    gap: 40px;
  }
}
.notFound__description {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .notFound__description {
    gap: 30px;
  }
}
.notFound__img {
  aspect-ratio: 700/307;
}
.notFound__img img {
  width: 100%;
  height: 100%;
}

.footerNotFound {
  background-color: var(--black);
}
.footerNotFound__wrap {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 44px;
}
.footerNotFound__contactItem {
  flex-direction: row;
  display: flex;
  gap: 60px;
}
@media screen and (max-width: 768px) {
  .footerNotFound__contactItem {
    gap: 12px;
    flex-direction: column;
  }
}
.footerNotFound__infoItem {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}
.footerNotFound__socialLinks {
  display: flex;
  flex-direction: row;
  gap: 16px;
}

.policy {
  overflow: initial;
}
.policy__wrap {
  display: flex;
  flex-direction: column;
  gap: 64px;
}
@media (max-width: 768px) {
  .policy__wrap {
    gap: 32px;
  }
}
.policy__main {
  display: grid;
  grid-template-columns: 460px 1fr;
  gap: 60px;
}
@media (max-width: 1300px) {
  .policy__main {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .policy__main {
    gap: 32px;
  }
}
.policy__sidebar div {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: 140px;
}
.policy__sidebar div a.active {
  color: var(--black);
}
@media (max-width: 1300px) {
  .policy__sidebar div {
    position: initial;
  }
}
@media (max-width: 768px) {
  .policy__sidebar div {
    gap: 16px;
  }
}
.policy__content {
  display: flex;
  flex-direction: column;
  gap: 64px;
}
@media (max-width: 768px) {
  .policy__content {
    gap: 32px;
  }
}
.policy__content h2 {
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .policy__content h2 {
    margin-bottom: 16px;
  }
}
.policy__content p {
  margin: 0;
  padding: 0;
  margin-bottom: 20px;
  font-size: 20px;
  color: var(--black);
  font-weight: 600;
  line-height: 160%;
}
.policy__content p:last-child {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .policy__content p {
    font-size: 14px;
    margin-bottom: 10px;
  }
  .policy__content p:last-child {
    margin-bottom: 0;
  }
}
.policy__content a {
  font-size: 20px;
  color: var(--orange);
  text-decoration: underline;
  font-weight: 600;
  line-height: 160%;
}
.policy__content a:hover {
  color: var(--black);
}
