@charset "UTF-8";
/**
  Нормализация блочной модели
 */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/**
  Убираем внутренние отступы слева тегам списков,
  у которых есть атрибут class
 */
:where(ul, ol):where([class]) {
  padding-left: 0;
}

/**
  Убираем внешние отступы body и двум другим тегам,
  у которых есть атрибут class
 */
body,
:where(blockquote, figure):where([class]) {
  margin: 0;
}

/**
  Убираем внешние отступы вертикали нужным тегам,
  у которых есть атрибут class
 */
:where(h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
dl):where([class]) {
  margin-block: 0;
}

:where(dd[class]) {
  margin-left: 0;
}

:where(fieldset[class]) {
  margin-left: 0;
  padding: 0;
  border: none;
}

/**
  Убираем стандартный маркер маркированному списку,
  у которого есть атрибут class
 */
:where(ul[class]) {
  list-style: none;
}

/**
  Обнуляем вертикальные внешние отступы параграфа,
  объявляем локальную переменную для внешнего отступа вниз,
  чтобы избежать взаимодействие с более сложным селектором
 */
p {
  --paragraphMarginBottom: 24px;
  margin-block: 0;
}

/**
  Внешний отступ вниз для параграфа без атрибута class,
  который расположен не последним среди своих соседних элементов
 */
p:where(:not([class]):not(:last-child)) {
  margin-bottom: var(--paragraphMarginBottom);
}

/**
  Упрощаем работу с изображениями
 */
img {
  display: block;
  max-width: 100%;
}

/**
  Наследуем свойства шрифт для полей ввода
 */
input,
textarea,
select,
button {
  font: inherit;
}

html {
  /**
    Пригодится в большинстве ситуаций
    (когда, например, нужно будет "прижать" футер к низу сайта)
   */
  height: 100%;
  /**
    Плавный скролл
   */
  scroll-behavior: smooth;
}

body {
  /**
    Пригодится в большинстве ситуаций
    (когда, например, нужно будет "прижать" футер к низу сайта)
   */
  min-height: 100%;
  /**
    Унифицированный интерлиньяж
   */
  line-height: 1.5;
}

/**
  Приводим к единому цвету svg-элементы
 */

/**
  Удаляем все анимации и переходы для людей,
  которые предпочитают их не использовать
 */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
@font-face {
  font-family: "Wix Madefor Display";
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Wix Madefor Display";
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Wix Madefor Display";
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Wix Madefor Display";
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
:root {
  --color-dark: #0A0F15;
  --color-light: #FFFFFF;
  --color-grey-background: #F0F1F5;
  --color-grey-text:#657084;
  --color-accent: #D42824;
  --color-accent-hover:#BC1915;
  --color-grey-icon: #D2D6E1;
  --color-text-description:#373E4E;
  --color-text-description-alt: #4E5669;
  --border: 1px solid #D2D6E1;
  --border-radius: 20px;
  --border-radius-button: 100px;
  --font-family-base: "Wix Madefor Display", sans-serif;
  --container-width: 1280px;
  --container-padding-x:20px;
  --section-padding-y: 80px;
  --input-height: 47px;
  --button-height: 48px;
  --transition-duration:0.2s;
}

.container {
  max-width: calc(var(--container-width) + var(--container-padding-x) * 2);
  margin-inline: auto;
  padding-inline: var(--container-padding-x);
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  border: 0 !important;
  padding: 0 !important;
  white-space: nowrap !important;
  clip-path: inset(100%) !important;
  clip: rect(0 0 0 0) !important;
  overflow: hidden !important;
}

@media (max-width: 767px) {
  .hidden-mobile {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .visible-mobile {
    display: none !important;
  }
}

body {
  font-size: clamp(14px, 1.0256410256vw, 16px);
  font-family: var(--font-family-base);
  font-weight: 400;
  line-height: 1.28;
  color: var(--color-dark);
  background-color: var(--color-light);
}

a,
button,
input,
textarea,
svg * {
  transition-duration: var(--transition-duration);
}

a {
  text-decoration: none;
  color: inherit;
}

h1, h2, h3, h4 {
  font-weight: 500;
}

h1, .h1 {
  font-size: clamp(43px, 3.8461538462vw, 60px);
}

h2, .h2 {
  font-size: clamp(36px, 3.2051282051vw, 50px);
}

h3, .h3 {
  font-size: clamp(16px, 1.2820512821vw, 20px);
}

h4, .h4 {
  font-size: clamp(14px, 1.0256410256vw, 16px);
}

.text__grey{
  color: var(--color-grey-text)
}
.text__grey-small{
  color: var(--color-grey-text);
  font-size: 24px;
}
.text__dark{
  color: var(--color-dark);
  font-weight: 500;
  font-size: 16px;

}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: var(--button-height);
  font-size: 16px;
  color: var(--color-light);
  padding-inline: 24px;
  border: none;
  background-color: var(--color-accent);
  cursor:pointer;
  border-radius: var(--border-radius-button);
  font-weight: 700;
  line-height: 150%;

}
.gallery-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s;
}

.gallery-modal__content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    margin: auto;
    /* padding: 3px; */
    /* width: 90%; */
    /* max-width: 1200px; */
    top: 50%;
    height: 100%;
    transform: translateY(-50%);
}

.gallery-modal__image {
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
}

.gallery-modal__close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
}

.gallery-modal__close:hover {
    color: #ccc;
}

.gallery-modal__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    font-size: 24px;
    padding: 16px;
    cursor: pointer;
    border-radius: 3px;
}

.gallery-modal__nav--prev {
    left: 20px;
    background: none;
}

.gallery-modal__nav--next {
    right: 20px;
    background: none;
}

.gallery-modal__nav:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.gallery-modal__caption {
    color: #fff;
    text-align: center;
    padding: 10px 0;
    font-size: 18px;
}

.project__image-wrapper {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.project__image-wrapper:hover {
    transform: scale(1.02);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@media (hover: hover) {
  .button:hover {
    background-color: var(--color-accent-hover);
  }
}
@media (hover: none) {
  .button:active {
    background-color: var(--color-accent-hover);
  }
}
.button--transparent {
  color: var(--color-dark);
  background-color: transparent;
}
.button--accent {
  color: var(--color-dark);
  background-color: var(--color-accent);
}
.footer__left{
      display: flex;
    gap: 60px;
}
@media (hover: hover) {
  .button--accent:hover {
    color: var(--color-accent);
    background-color: var(--color-dark);
  }
}
@media (hover: none) {
  .button--accent:active {
    color: var(--color-accent);
    background-color: var(--color-dark);
  }
}

.logo__image {
  display: flex;
  align-items: flex-start;
  width: 101px;
  height: 40px;
}

.burger-old__burger-button {
  padding: 0;
  background-color: transparent;
  border: none;
  aspect-ratio: 1;
  position: relative;
  border-radius: var(--border-radius-button);
  width: 34px;
  height: 34px;
  /* background: #D42824; */
  border-radius: 100px;

}

.burger-button {
  padding: 0;
  background-color: transparent;
  border: none;
  aspect-ratio: 1;
  position: relative;
  border-radius: var(--border-radius-button);
  width: 34px;
  height: 34px;
  background: #D42824;
  border-radius: 100px;

}


@media (hover: hover) {
  .burger-button:hover {
    background-color: var(--color-accent);
  }
}
@media (hover: none) {
  .burger-button:active {
    background-color: var(--color-accent);
  }
}
.burger-button::after {
  position: absolute;
  top: 40%;
  left: 50%;
  translate: -50% -50%;
  content: "";
  width: 50%;
  height: 2px;
  background-color: var(--color-light);
  border-radius: 5px;
  box-shadow: 0 0px, 0 8px;
  color: var(--color-light);
}

.header {
  display: flex;
  width: 100%;
  justify-content: center;
  position: fixed;
  background-color: var(--color-light);
  z-index: 100;
}
.footer__info{
  padding-left: 0px;
  padding-right: 0px;
}
@media (max-width: 1280px) {
  .header {
    padding-top: 0px;
  }
}
@media (max-width: 767px) {
  .header {
    padding-top: 0px;
  }
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px;
  padding-top: 16px;
  padding-bottom: 16px;
  -moz-column-gap: 40px;
       column-gap: 40px;
  border-bottom: var(--border);
  width: 100%;
}
@media (max-width: 1023px) {
  .header__inner {
    -moz-column-gap: 30px;
         column-gap: 30px;
  }
}
.header__logo {
  display: flex;
  align-items: flex-start;
}
@media (max-width: 1023px) {
  .header__logo {
    max-width: 120px;
  }
}
@media (max-width: 767px) {
  .header__logo {
    max-width: 144px;
  }
}
.header__menu {
  font-size: 16px;
}
@media (max-width: 1280px) {
  .header__menu {
    font-size: 18px;
  }
}
@media (max-width: 1023px) {
  .header__menu {
    font-size: 16px;
  }
}
.header__menu-list {
  display: flex;
  align-items: center;
  -moz-column-gap: 40px;
       column-gap: 40px;
  margin: 0px;
  padding: 0px;
}
@media (max-width: 1280px) {
  .header__menu-list {
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
}
.header__contact{
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
}
.header__menu-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 48px;
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  color: #2b2f37;
}
@media (hover: hover) {
  .header__menu-link:hover {
    color: var(--color-accent);
  }
}
@media (hover: none) {
  .header__menu-link:active {
    color: var(--color-accent);
  }
}
.header__button {
  height: 48px;
  padding-inline: 18px;
  font-size: 16px;
}

.mobile-overlay {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 14px 20px;
  border: none;
}
.mobile-overlay:modal {
  max-width: 100%;
  max-height: 100%;
}
.button__step-mobile{
    display: none;
  }
.mobile-overlay__close-button-wrapper {
  display: flex;
  justify-content: end;
}
.mobile-overlay__list {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  row-gap: 30px;
  min-height: 80vh;
}

.about-us {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.about-us__main {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 0px;
  gap: 60px;
  justify-content: space-between;
}
.about-us__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  width: 100%;
  max-width: 542px;
  justify-content: space-between;
}
.about-us__image {
  width: 100%;
  max-width: 678px;
  border-radius: 20px;
  max-height: 257px;
}
.about-us__addition {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0px;
  gap: 16px;
}
.about-us__blocks {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0px;
  gap: 16px;
  justify-content: space-between;
  width: 100%;
}
.about-us__block {
  max-width: 100%;
  background: var(--color-grey-background);
  border-radius: 20px;
  overflow: hidden;
  max-height: 131px;
  z-index: -1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap:16px;
}
.about-us__block-img {
  position: relative;
  width: 241.4px;
  height: 284px;
  left: 224px;
  top: -110px;
  z-index: 1;
}
.about-us__video {
    width: 600px;
    height: 672px;
    object-fit: cover;
    z-index: 1;
    border-radius: 20px; 
}

.about-us__main {
    position: relative;
    overflow: hidden; 
}

.about-us__video::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.about-us__body {
    position: relative;
    z-index: 3;
}
.about-us__block-title {
  position: relative;
  z-index: 2;
  font-weight: 500;
  font-size: 20px;
  line-height: 120%;
  color: var(--color-dark);
}
.about-us__block-description {
  position: relative;
  z-index: 2;
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  color: var(--color-text-description-alt);

}

.catalog {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
}
.contact__icon{
  cursor: pointer;
}
.catalog__content {
  width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 190px;
  max-width: 432px;
}

.catalog__text {
  margin-bottom: 30px;
}

.catalog__title {
  font-size: 36px;
  margin-bottom: 15px;
  color: #2c3e50;
}

.catalog__description {
  font-size: 16px;
  line-height: 1.6;
  color: #657084;
}


.step__inner{
  max-width: 440px;
}
.catalog__bar span {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  cursor: pointer;
}
.container-dop-service-home{
    padding: 0px !important;
    margin-top: 60px;
    margin-bottom: 180px;
    max-height: 625px;
}
.left-right-dop-service-home-mob{
  gap:40px;
}
.catalog__bar span.active {
  background-color: #3498db;
  color: white;
}

.catalog__slider {
  width: 65%;
}

.btn {
  padding: 10px 20px;
  background-color: #3498db;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}



.section {
  padding-block: var(--section-padding-y);
  padding-left: 0px;
  padding-right: 0px;
  overflow-x: visible;
}
.catalog__wrapper{
  overflow-x: hidden;
}
@media (max-width: 1100px) {
  .section {
    padding-block: 40px;
  }
  .step__image-container {
    height: 100%;
}
}
.section--hidden-x {
  overflow-x: hidden;
  background-image: url('https://storage.yandexcloud.net/ficomp/2025-12-15%2016.45.52.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100%;
  min-height: 820px;
}
.text__grey-dark{
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: #373E4E;
}
.section__header {
  display: flex;
  align-items: center;
  -moz-column-gap: 40px;
       column-gap: 40px;
}
@media (max-width: 767px) {
  .section__header {
    flex-direction: column;
    row-gap: 30px;
    text-align: center;
  }
}
.section__header:not(:last-child) {
  margin-bottom: 80px;
}
@media (max-width: 767px) {
  .section__header:not(:last-child) {
    margin-bottom: 40px;
  }
}
.section__description {
  max-width: 580px;
}
/* .section__body {
  min-width: 563px;
} */
.footer__inner-mobile{
  display: none;
}
.step__title {
  font-style: normal;
  font-weight: 500;
  font-size: 50px;
  line-height: 120%;
  color: var(--color-dark);
}
.link{
  color:#D42824;
}
.hero {
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  margin: 0px;
  
}
@media (max-width: 1400px) {
  .hero {
    row-gap: 60px;
    padding-left: 60px;
    padding-right: 60px;
  }
  .header__inner{
    padding-left: 60px;
    padding-right: 60px;
    margin: 0px;
  }
  .footer__inner{
    padding-left: 0px;
    padding-right: 0px;
    margin: 0px;
  }
  .about-us{
    padding-left: 60px;
    padding-right: 60px;
  }
  .step{
    padding-left: 60px;
    padding-right: 60px;
  }
  .clients__image {
    object-fit: cover;
    width: 150px;
    height: 150px;
}
  .catalog{
    padding-left: 60px;
    padding-right: 60px;
  }
  .reviews{
    padding-left: 60px;
    padding-right: 60px;
  }
  .project{
    padding-left: 60px;
    padding-right: 60px;
  }
  .order{
    padding-left: 60px;
    padding-right: 60px;
  }
  .faq{
    padding-left: 60px;
    padding-right: 60px;
  }
  .custom-slider-arrows{
    left: 60%;
  }
  .order__text {
        margin-bottom: 20px;
    }
      .clients{
      padding-left: 60px;
      padding-right: 60px;
    }
    .hero{
      margin: 0px;
    }
    .production__container{
      margin: 0px;
    }
    .order__section{
      margin: 0px;
    }
    .faq__section{
      margin: 0px;
    }
    .footer {
      margin: 0px;
      padding-left: 0px;
      padding-right: 0px;
    }
    .production__container{
      padding-left: 60px;
      padding-right: 60px;
    }
    .container-dop-service-home{
      padding-left: 60px !important;
      padding-right: 60px !important;
    }
    .title{

    }
}
@media (max-width: 1100px) {
  .hero {
    row-gap: 60px;
    padding-left: 60px;
    padding-right: 60px;
  }
  .about-us{
    padding-left: 60px;
    padding-right: 60px;
  }
  .step{
    padding-left: 60px;
    padding-right: 60px;
  }
  .catalog{
    padding-left: 60px;
    padding-right: 60px;
  }
  .reviews{
    padding-left: 60px;
    padding-right: 60px;
  }
  .project{
    padding-left: 60px;
    padding-right: 60px;
  }
  .order{
    padding-left: 60px;
    padding-right: 60px;
  }
  .faq{
    padding-left: 60px;
    padding-right: 60px;
  }
}
.step__image-container-mobile {
  display: none;
}
.hero__main {
  display: flex;
  justify-content: space-between;
  align-items: start;
  -moz-column-gap: 30px;
       column-gap: 30px;
  padding: 0px;
}
@media (max-width: 767px) {
  .hero__main {
    flex-direction: column;
  }
}
.hero__body {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: start;
  width: 100%;
  row-gap: 30px;
  padding-top: 301px;
  padding-bottom: 60px;
}
@media (max-width: 767px) {
  .hero__body {
    padding-top: 100px;
    padding-bottom: 0px;
  }
  .section--hidden-x {
    min-height: 500px;
  }

}
.hero__title {
  position: relative;
  width: 100%;
  color:#FFFFFF !important;
}
.text__grey-hero{
  font-weight: 500;
  font-size: 60px;
  line-height: 120%;
  color: #D2D6E1;

}
@media (max-width: 767px) {
  .hero__title {
    order: -2;
    margin-bottom: 10px;
  }
}
.hero__description {
  font-family: var( --font-family-base);
  max-width: 656px;
  font-weight: 400;
  font-size: 16px ;
  line-height: 120%;
  color: var(--color-light);
}
.text__dark-hero{
  color: #E0E5EB;
}
.text__dark-about-us{
  FONT-WEIGHT: 700;
  font-size: 24px !important;
  font-family: var( --font-family-base);
  max-width: 656px;
  font-size: 24px !important;
  line-height: 120%;
  color: var(--color-dark);
}
.about-us__description{
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 120%;
    color: #657084;
    margin-bottom: 25px;
}
@media (max-width: 767px) {
  .hero__description {
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .hero__button {
    width: 100%;
    max-width: 390px;
    margin-inline: auto;
  }
}
.hero__partners-list {
  display: flex;
  justify-content: space-between;
  -moz-column-gap: 37px;
       column-gap: 37px;
}
@media (max-width: 1023px) {
  .hero__partners-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    row-gap: 20px;
  }
}
@media (max-width: 480px) {
  .hero__partners-list {
    --heroPartnersWidthOffsetX: 60px;
    -moz-column-gap: 0;
         column-gap: 0;
    width: calc(100vw + var(--heroPartnersWidthOffsetX) * 2);
    margin-left: calc((var(--heroPartnersWidthOffsetX) + var(--container-padding-x)) * -1);
  }
}
@media (max-width: 1023px) {
  .hero__partners-item {
    display: flex;
    justify-content: center;
  }
}
@media (max-width: 480px) {
  .hero__partners-item {
    justify-content: start;
  }
  .hero__partners-item:nth-child(-n+3) {
    justify-content: end;
  }
}
.hero__partners-image {
  filter: grayscale(1);
}
.hero__image {
  position: absolute;
  width: 564px;
  height: 269px;
  right: 15%;
  top: 35%;
  background: #D9D9D9;
  border-radius: 20px;
}
.hero__photo{
    position: absolute;
    right: 0px;
    top: 120px;
    border-radius: 20px;
    object-fit: cover;
}
.hero__zabor{
  position: absolute;
  width: 867px;
  height: 440px;
  left: 800px;
  top: -2px;
  border-radius: 20px;
  z-index: 3;
}
.hero__zabor-fon{
  
  /* Rectangle 1 */

position: absolute;
width: 845px;
height: 175px;
left: 800px;
top: 263px;
border-radius: 20px 0px 0px 20px;

  object-fit: cover;
  z-index: 2;
}
@media (max-width: 1023px) {
  .hero__image {
    max-width: 40%;
    height: auto;
  }
  .about-us__body {
    width: 45%;
    max-width: 100%;
}
.about-us__video {
    width: 100%;
    max-width: 100%;
    height: 500px;
}
}
@media (max-width: 767px) {
  .hero__image {
    order: -1;
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
  }
  .about-us__video_phone{
    display: flex !important;
    width: 100%;
  }
  .about-us__video_desc{
    display: none;
  }
  .about-us__body{
    width: 100%;
  }
  .about-us__video {
      width: 100% !important;
      max-width: 100%;
      height: 400px !important;
  }
  /* .catalog__bar_phone{
    display: flex;
  } */

}

.about-us__video_phone{
  display: none;
}
@media (max-width: 1600px) {
.hero__photo {
    position: absolute;
    right: 0px;
    top: 150px;
    border-radius: 20px;
    object-fit: cover;
    width: 40%;
}
}
@media (max-width: 1300px) {
.hero__photo {
    position: absolute;
    right: 0px;
    top: 200px;
    border-radius: 20px;
    object-fit: cover;
    width: 40%;
}
}
@media (max-width: 1250px) {
    .title{
    font-weight: 500;
    font-size: 34px;
    line-height: 120%;
    }
      .hero__photo {
        position: absolute;
        right: 0px;
        top: 130px;
        border-radius: 20px;
        object-fit: cover;
        width: 40%;
    }
}
@media (max-width: 1200px) {
    .about-us__block-title {
    font-weight: 500;
    font-size: 15px;
    line-height: 120%;
    }
      .clients__image {
    object-fit: cover;
    width: 100px;
    height: 100px;
}
    .left-right-dop-service-home-mob{
      flex-direction: row !important;
    }
    .clients{
      padding-left: 60px;
      padding-right: 60px;
    }
    .hero{
      margin: 0px;
    }
    .production__container{
      margin: 0px;
    }
    .order__section{
      margin: 0px;
    }
    .faq__section{
      margin: 0px;
    }
    .footer {
      margin: 0px;
      padding-left: 60px;
      padding-right: 60px;
    }

}
@media (max-width: 1150px) {

      .hero__photo {
        position: absolute;
        right: 0px;
        top: 170px;
        border-radius: 20px;
        object-fit: cover;
        width: 40%;
    }
}
@media (max-width: 1100px) {
.hero__photo {
    position: absolute;
   right: 0px;
        top: 170px;
    border-radius: 20px;
    object-fit: cover;
    width: 40%;
}
  .faq__contacts{
    max-width: 450px;
  }
  .faq__contacts-description{
    margin-bottom: 20px;
  }

}
@media (max-width: 1024px) {
.about-us__button {
    display: none;
}
.about-us__video{
  width: auto;
  height: auto;
}
.about-us__description{
    font-size: 16px;
}
.text__dark-about-us{
  font-size: 16px !important;
}

}

@media (max-width: 900px) {
.slider {
  overflow: hidden;
  width: 100%;
  position: relative;
}
.header__menu-list{
  display: none;
}

.clients__slider {
  display: flex;
          overflow-x: auto;
        overflow-y: hidden;
        white-space: nowrap;
        width: 100%;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
}

.clients__slider:hover {
  animation-play-state: paused;
}

.clients__image {
  flex: 0 0 auto;
  width: 80px;
  height: 80px;
  object-fit: cover;
}

@keyframes slide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-600%); }
}

}
@media (max-width: 865px) {
.hero__photo {
    position: absolute;
    right: 0px;
    top: 200px;
    border-radius: 20px;
    object-fit: cover;
    width: 40%;
}

}
@media (max-width: 770px) {
.hero__button  {
    display: none;
}
    .hero {
        height: 519px;
        padding-left: 20px;
        padding-right: 20px;
        padding-top: 70px;
        width: 100%;
    }
    .hero__photo {
        position: absolute;
        right: 0px;
        top: 250px;
        border-radius: 20px;
        object-fit: cover;
        width: 380px;
    }

}
.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  background: #FFFFFF;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-overlay[open] {
  opacity: 1;
  visibility: visible;
}

.mobile-overlay__content {
  position: relative;
  height: 100%;
  padding: 20px 0px 20px;
  display: flex;
  flex-direction: column;
  /* justify-content: space-between; */
}

.mobile-overlay__close {
  position: absolute;
  top: 0px;
  right: 0px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  box-shadow: none!important;
  outline: none!important;
}
.mobile-contacts {
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-content: center;
}
.mobile-menu__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu__item {
  margin: 0px;
}

.mobile-menu__link {
  text-decoration: none;
  font-size: 24px;
  font-weight: 500;
  transition: color 0.3s ease;
  margin: 0px;
}

.mobile-menu__link:hover {
  color: #D42824;
}

.mobile-contacts {
  text-align: center;
}

.mobile-phone {
  font-size: 20px;
  text-decoration: none;
  display: block;
  margin-bottom: 20px;
}
.mobile-menu {
    position: sticky;
    width: 100%;
    height: auto;
    max-height: 80vh;
    z-index: 1000;
    padding: 0px;
    overflow-y: auto;
    background: none;
    /* top: 60px; */
}
.mobile-overlay:modal {
    max-width: 100%;
    max-height: 400px;
}
.mobile-menu ul li a {
    color: #4E5669;
    text-decoration: none;
    font-size: 18px;
    border: none;
    background-color: none;
    border-radius: 10px;
    padding: 0;
    margin: 0px;
}
.mobile-menu__list{
  display: flex;
  flex-direction: column;
}
.production {
  padding: 0px  !important;
}
.order__main {
  padding: 0px !important;
}
.faq__content{
  padding: 0px !important;
}
.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin-top: 22px;
    display: flex;
    gap: 12px;
    justify-content: space-between;
    flex-wrap: wrap;
    flex-direction: column;
    width: 100%;
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 14px;
    line-height: 150%;
    color: #4E5669;
}
.mobile-phone {
    font-size: 20px;
    text-decoration: none;
    display: block;
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 14px;
    line-height: 150%;
    color: #4E5669;
}
@media (max-width: 850px) {
  
  .about-us__main {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 0px;
    gap: 60px;
    justify-content: space-between;
}
.about-us__image {
    width: 100%;
    max-width: 100%;
    border-radius: 20px;
    max-height: 257px;
}
    .about-us__block {
        max-height: 130px;
        max-width: 100%;
    }
    .about-us__blocks {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px;
    gap: 16px;
    justify-content: space-between;
    width: 100%;
}

}
@media (max-width: 750px) {
.title {
  font-weight: 500 !important;
  font-size: 28px !important;
  line-height: 120% !important;

}
.text__grey-hero {
   font-weight: 500 !important;
  font-size: 28px !important;
  line-height: 120% !important;
}
.step__inner{
  max-width: 100%;
}
.project::-webkit-scrollbar {
  display: none;
}
.clients__slider::-webkit-scrollbar {
  display: none;
}
.project {
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    width: 100%;
    scroll-behavior: smooth; /* Плавный скролл */
    -webkit-overflow-scrolling: touch; /* Плавный скролл на iOS */
}
.header__inner{
  padding-left: 0px !important;
  padding-right: 0px !important;
}

.project__block {
    display: inline-block;
    width: 100%;
    white-space: normal;
    vertical-align: top;
    display: flex;
    gap:16px;
}

}
.logo__image-mobile{
  margin: 0 auto;
  width: 28px;
  height: 33px;
}
.header__tel{
  font-weight: 700;
  font-size: 12px;
  line-height: 150%;
  color: #D42824;
}

.old__header__tel{
  font-weight: 700;
  font-size: 12px;
  line-height: 150%;
  color: #ffffff;
}

.header__contact-mobile{
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
}
.hero__advantage {
  padding: 0px;
  margin: 0px;
  margin-top: 30px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 40px;
  max-width: 656px;
}
.hero__photo-mobile{
  display: none;
}
.hero__advantage-list {
  padding: 0px;
  margin: 0px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 40px;
  max-width: 656px;
}
.hero__advantage-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
 .step__mobile{
  display: none;
 }
.hero__advantage-title {
  font-weight: 500;
  font-size: 36px;
  line-height: 120%;
  color: #0A0F15;
  white-space: nowrap;
}
.hero__advantage-text {
  font-weight: 400;
  font-size: 14px;
  line-height: 120%;
  color: var(--color-grey-text);
}/*# sourceMappingURL=style.css.map */
@media (max-width: 1200px) {

#mySlider .splide__slide.is-active {
    flex-shrink: 0;
    position: relative;
    width: 350px !important;
    height: 400px;
    border: none !important;
    transition: all 0.3s ease;
}
#mySlider .splide__slide:not(.is-active) {
    flex-shrink: 0;
    position: relative;
    width: 362px !important;
    height: 321px !important;
    border: none !important;
    transition: all 0.3s ease;
}
.catalog__slider {
    width: 55%;
}
.custom-slider-arrows {
    position: relative;
    bottom: 150px;
    left: 80%;
    display: flex;
    gap: 20px;
    z-index: 10;
}
.catalog__content {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    max-width: 432px;
}
.card__active-number {
    z-index: 2;
    position: absolute;
    width: 224px;
    height: 143px;
    left: 150px;
    top: -120px;
    font-weight: 500;
    font-size: 200px;
    line-height: 120%;
    color: #BFC7D4;
    white-space: nowrap;
}
}
.about-us__video_desc{
  width: 50%;
}
@media (max-width: 1000px) {
  /* .catalog__bar{
    display: none;
  } */
  .custom-slider-arrows{
    display: none;
  }
  .order__main {
    display: flex;
    flex-direction: column;
    padding: 0px;
    justify-content: space-between;
}
.faq__contacts{
      max-width: 100%;
      margin-left: 0px;
      margin-top: -20px;
}
}
@media (max-width: 750px) {
    .catalog__bar{
    display: none;
  }
  .hero{
    padding-left: 0px;
    padding-right: 0px;
    margin: 0px;
  }
  .production__container{
    padding-left: 20px;
    padding-right: 20px;
    margin: 0px;
  }
  .container-dop-service-home{
    padding-left: 0px !important;
    padding-right: 0px !important;
    margin: 0px !important;
    max-height: 100%;
  }
  .step__content-inner{
    margin-left: 20px;
    margin-right: 20px;
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .about-us__container{
    padding-top: 20px;
    padding-bottom: 60px;
  }
  .clients{
    padding-left: 0px;
    padding-right: 0px;
    margin: 0px;
  }
  .button__step-mobile{
    display: flex;
    width: 100%;
  }
  .footer {
    padding-left: 0px;
    padding-right: 0px;
    margin: 0px;
  }
  .hero__main {
    width: 100%;
    margin: 0px;
  }
    .hero__photo{
        right: 0px;
        display: none;
    }
    .hero__photo-mobile{
      display: flex;
    }
  .about-us{
    padding-left: 0px;
    padding-right: 0px;
    margin: 0px;
  }
  .about-us__main{
    display: flex;
    flex-direction: column;
  }
  .about-us__main{
    width: 100%;
    gap:24px;
  }
  .about-us__blocks{
    width: 100%;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: column;
  }
    .about-us__block {
      max-height: 130px;
  }
  .production__container{
    margin: 0px;
  }
  .production__up, .production__down{
    flex-direction: column;
  }

  .catalog{
    padding-left: 0px;
      padding-right: 0px;
      margin: 0px;
      flex-direction: column;
  }
  .catalog__content{
    max-width: 100%;
  }
    #mySlider .splide__slide.is-active {
      width: 330px !important;
      height: 341px;
  }
      #mySlider .splide__slide:not(.is-active) {
        width: 330px !important;
        height: 341px !important;
    }
    #mySlider .splide__list {
    height: auto !important; 
}
/* .catalog__bar{
  display:flex;
} */
 .content{
  overflow: hidden !important;
 }
 .step__mobile{
  display: block;
 }
 .reviews{
      padding-left: 0px;
      padding-right: 0px;
      margin: 0px;
 }
 .reviews__slide{
    width: 330px;
    height: 373px;
 }
 .reviews__image{
  width: 100% !important;
    height: 200px;
 }
 .rewiews__info{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 16px;
  gap: 16px;

  width: 330px;
  height: 173px;
 }
 .rewiews__nickname-name{
    font-weight: 600;
    font-size: 16px;
    line-height: 120%;
 }
 .rewiews__info-description{
  width: 298px;
  height: 68px;
 }
 .rewiews__info-addition{
  margin:0px;
  width: 298px;
 }
 .clients__slider{
  gap:24px;
 }
 .clients__image{
      width: 80px;
    height: 80px;
 }
 .project{
        padding-left: 0px;
      padding-right: 0px;
      margin: 0px;

 }
 .project__block{
  min-width: 330px !important;
  height: 500px;
 }
 .order{
   padding-left: 20px !important;
      padding-right: 20px !important;
      margin: 0px !important;
      padding-top: 20px !important;
      padding-bottom: 40px;
 }
 .order__main {
  flex-direction: column;
 }
 .order__section{
       margin: 0px !important;
 }
 .order__image {
  max-height: 405px;
  width: 100%;
 }
.order__image {
    width: 100%;
    height: 405px;
}
.order__text{
  margin: 0px;
  width: 322px;
  padding-right: 20px;
}
.order__block-title{
font-weight: 600;
font-size: 14px;
line-height: 120%;
}
.order__block {
    gap: 12px;
}
.order__block1{
  max-width: 100%;
}
.order__addvantages{
  max-width: 100%;
  margin-top: 16px;
}
.order__contact{
  margin: 0px;
  margin-top: 24px;
  margin-bottom: 20px;
}
.order__inner {
  top:16px;
}
.faq__contacts{
      max-width: 100%;
              height: auto;
}
.faq__contacts-description{
  margin-bottom: 24px;
}
.faq__contact-item{
  width: 130px;
}
.faq__contacts-title{
  width: 314px;
  height: 22px;
  font-weight: 500;
  font-size: 18px;
  line-height: 120%;
}
.faq__contacts-description{
  margin: 0px;
}
.faq__section{
  margin: 0px;
}
.faq{
    padding-left: 20px !important;
      padding-right: 20px !important;
      padding-top: 40px !important;
      padding-bottom: 20px !important;
}
.faq__question-up{
  max-width: 100%;
}
.faq__blocks {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-wrap: nowrap;
}
.faq__question-text{
font-weight: 700;
font-size: 14px;
line-height: 120%;
}
.footer {
  margin: 0px;
}
.footer__inner{
  display: none;
}
.footer__inner-mobile{
  display: flex;
  flex-direction: column;
  gap:16px;
  padding-left: 20px !important;
  padding-right: 20px !important;
}
.header__contact{
  width: 100%;
  justify-content: space-between;
}
.header__button{
  width: 100%;
}
.footer__info {
  flex-direction: column;
  align-items: flex-start;
  row-gap: 8px;
}
.footer__info-law{
  width: 100%;
  justify-content: space-between;
}
.step__image-container-mobile {
  display: flex;
}
.step__image-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: auto;
    background: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    mask-image: none; 
  -webkit-mask-image:  none; 
    pointer-events: none;
}
.step__button{
  display: none;
}
.sticky-left-block{
  display: none;
}
  .production__info{
    height: auto;
  }
    .production__slide-up, .production__slide-down {
    height: auto;
    width: 100% !important;
    max-width: 100%;
}
.step__block{
  max-width: 100% !important;
}
.about-us__block{
  max-width: 100% !important;
}
    
}
@media (max-width: 500px) {
    .about-us__block-img {
      position: relative;
      width: 241.4px;
      height: 284px;
      left: 224px;
      top: -115px;
      z-index: 1;
  }
}


@media (max-width: 1040px) {
  .faq__blocks{
    justify-content: space-between;
  }
  .faq__block{
    width: 100%;
  }
  .faq__contact-item{
    width: 40%;
  }
}

@media (max-width: 750px) {
    .faq__contact-item{
        width: 100%;
    }
}

@media (max-width: 400px) {
    .hero__photo {
        position: absolute;
        right: 0px;
        top: 280px;
        border-radius: 20px;
        object-fit: cover;
        width: 350px;
    }
    .faq__contact-item{
      width: 100%;
      min-width: auto;
    }
    .faq__block{
      width: 100%;
    }
}

.modal-content-feedback {
    background-color: #F0F1F5;
    border-radius: 10px;
    padding: 20px;
    border: 1px solid #F0F1F5;
}

.modal-header-zag {
    color: #0A0F15;
    font-size: 26px;
    font-weight: 600;
}

.modal-body {
    padding: 0;
    padding-top: 10px;
}

.mini-text-modal-feedback {
    color: #4E5669;
    font-size: 14px;
    margin-top: 10px;
}

.form-modal-body-feedback {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 28px;
}

.custom-input {
    background-color: #FFFFFF;
    border: 1px solid #FFFFFF;
    border-radius: 10px;
    padding: 16px;
    box-shadow: none!important;
    outline: none!important;
}

.custom-label-input-form {
    color: #657084;
    font-size: 12px;
}

.modal-dialog-feedback {
    max-width: 450px;
    width: 100%;
}

.card-favorite-messager {
    background-color: #FFFFFF;
    border: 2px solid transparent;
    border-radius: 6px;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 90px;
    width: 74px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.card-favorite-messager.active {
    border-color: #D2D6E1;
}

.custom-checkbox__input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.custom-checkbox__checkmark {
    display: block;
    width: 20px;
    height: 20px;
    border: 1px solid #BFC7D4;
    border-radius: 0px;
    background: #F0F1F5;
    transition: all 0.3s ease;
    position: relative;
    border-radius: 3px;
}

.custom-checkbox__checkmark::after {
    content: "";
    position: absolute;
    left: 6px;
    top: 4px;
    width: 5px;
    height: 8px;
    border: solid #657084;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.custom-checkbox__input:checked + .custom-checkbox__checkmark {
    background: #F0F1F5;
    border-color: #BFC7D4;
}

.custom-checkbox__input:checked + .custom-checkbox__checkmark::after {
    opacity: 1;
}

@media (max-width: 790px) {
    .modal-dialog-feedback {
        width: auto;
        max-width: 100%;
    }
    .modal-content-feedback {
        padding: 10px;
    }
    .modal-body {
        padding: 0;
        padding-top: 10px;
    }
    .modal-body img {
        opacity: 0.7;
    }
}