/* cover — фон первого экрана; десктоп и планшет — исходное фото (сужается через cover) */
/* Базовый фон без классов ws/wn на <html>: иначе при отключённом/падающем JS картинки не было бы */
.main-screen {
  background-position: 68% 34%;
  background-repeat: no-repeat;
  background-color: #0e0e1a;
  background-size: cover;
  position: relative;
  /* Фон интерьера (без людей) — латинское имя файла, без кириллицы в URL */
  background-image: url(../img/hero-closet-bg.png);
}

.ws .main-screen {
  background-image: url(../img/hero-closet-bg.png);
}

.wn .main-screen {
  background-image: url(../img/hero-closet-bg.png);
}

.main-screen__desktop-people {
  display: none;
}

/* Десктоп ≥769: интерьер без пары в фоне + люди отдельным слоем (редактируйте переменные на .main-screen) */
@media (min-width: 769px) {
  .main-screen {
    --hero-desktop-bg-x: center;
    /* --hero-desktop-bg-y: center; */
    --hero-desktop-people-nudge-x: 60px;
    --hero-desktop-people-nudge-y: 8rem;
    --hero-desktop-people-scale: 1.12;
    --hero-desktop-people-max-h: min(95vh, 800px, 100%);
  }

  .ws .main-screen,
  .wn .main-screen,
  .main-screen {
    background-image: url(../img/hero-closet-bg.png);
    background-size: cover;
    background-position: var(--hero-desktop-bg-x) var(--hero-desktop-bg-y);
  }

  .main-screen > .wrap {
    position: relative;
    z-index: 2;
  }

  .main-screen__desktop-people {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    pointer-events: none;
    /* за контентом .wrap (текст, кнопки), но поверх фона секции */
    z-index: -1;
  }

  .main-screen__desktop-people-img {
    width: auto;

    object-fit: contain;
    object-position: bottom center;
    -webkit-transform: translate(var(--hero-desktop-people-nudge-x), var(--hero-desktop-people-nudge-y))
      scale(var(--hero-desktop-people-scale));
    transform: translate(var(--hero-desktop-people-nudge-x), var(--hero-desktop-people-nudge-y))
      scale(var(--hero-desktop-people-scale));
    -webkit-transform-origin: bottom center;
    transform-origin: bottom center;
  }
}

@media (min-width: 1440px) and (max-height: 800px) {
  .main-screen {
    --hero-desktop-people-scale: 1.34;
  }
}
/* Вырез с людьми — только узкий телефон; в потоке под кнопкой, фигура в полный рост */
.main-screen__people-cutout {
  display: none;
}

/* Плавный сдвиг фокуса — широкий десктоп */
@media (max-width: 1280px) and (min-width: 1025px) {
  .main-screen {
    background-position: 68% 24%;
  }
}

@media (max-width: 768px) and (min-width: 581px) {
  .main-screen {
    background-position: center 30%;
  }
}

/* Колонка «ДО 70%…» — чуть правее от людей (десктоп / узкий планшет, где блок не скрыт) */
@media (min-width: 1025px) {
  .main-screen__features {
    margin-left: clamp(1.35rem, 4.2vw, 3.4rem);
  }
}

/* Мобильный hero (≤768): фон интерьера + вырез; scale() выходит за блок — padding-top даёт зазор от кнопки */
@media (max-width: 768px) {
  .main-screen {
    overflow-x: visible;
    overflow-y: visible;
  }

  /* Иначе подсказка по горизонтали обрезается и визуально «уезжает» вправо */
  .main-screen > .wrap {
    overflow-x: visible;
  }

  .ws .main-screen,
  .wn .main-screen,
  .main-screen {
    background-image: url(../img/hero-closet-bg-mobile.png);
    background-size: cover;
    background-position: right;
  }

  .main-screen::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: linear-gradient(
      180deg,
      rgba(14, 14, 26, 0.72) 0%,
      rgba(14, 14, 26, 0.28) 38%,
      transparent 62%
    );
  }

  .main-screen > .wrap {
    position: relative;
    z-index: 1;
  }

  .main-screen__content .btn {
    margin-bottom: 3.25rem !important;
    position: relative;
    z-index: 3;
  }

  /* «i» №1: подсказка не под золотой кнопкой (в DOM кнопка после абзаца и z-index 5 перекрывала) */
  .main-screen__content .main-screen__sub-title2 {
    position: relative;
    z-index: 40;
  }

  .main-screen__content .tooltip_main {
    position: relative !important;
    z-index: 41;
  }

  .main-screen__content .tooltip_main:hover {
    z-index: 42;
  }

  /* Подсказка №1: привязка к иконке (absolute), не fixed и не за курсором — только :hover */
  .main-screen__content .tooltip_main .tooltip__text {
    z-index: 43;
    position: absolute !important;
    left: 50% !important;
    right: auto !important;
    top: calc(100% + 1.2rem) !important;
    bottom: auto !important;
    width: min(29.5rem, calc(100vw - 1.1rem)) !important;
    max-width: min(29.5rem, calc(100vw - 1.1rem)) !important;
    margin: 0 !important;
    -webkit-transform: translate(calc(-50% - 4.25rem), 0) !important;
    transform: translate(calc(-50% - 4.25rem), 0) !important;
    max-height: min(52vh, 20rem) !important;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    -webkit-box-sizing: border-box;
    box-sizing: border-box !important;
    white-space: normal !important;
    padding: 1.35rem 1.2rem 1.4rem !important;
    text-align: left !important;
    line-height: 1.48 !important;
    font-family: FuturaPT, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
    font-size: 1.22rem !important;
    font-weight: 400 !important;
    font-style: normal !important;
    letter-spacing: 0 !important;
    color: #2e2e2e !important;
    background: #f2eee9 !important;
    border-radius: 3px !important;
    -webkit-box-shadow: 0 4px 22px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.07);
    box-shadow: 0 4px 22px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.07);
    -webkit-font-smoothing: antialiased;
  }

  .main-screen__content .tooltip_main .tooltip__text::before {
    top: 0 !important;
    left: 50% !important;
    right: auto !important;
    background: #f2eee9 !important;
    -webkit-box-shadow: -2px -2px 4px rgba(0, 0, 0, 0.04);
    box-shadow: -2px -2px 4px rgba(0, 0, 0, 0.04);
    -webkit-transform: translate(-50%, -50%) rotate(45deg) !important;
    transform: translate(-50%, -50%) rotate(45deg) !important;
  }

  .main-screen__content .main-screen__people-cutout {
    display: block;
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 100%;
    margin: 0 auto -3rem !important;
    padding: 3.5rem 0 0 !important;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    line-height: 0;
    pointer-events: none;
  }

  .main-screen__content .main-screen__people-cutout-img {
    display: block;
    width: auto;
    max-width: min(100%, 480px);
    max-height: min(88vh, 720px);
    height: auto;
    margin: 60px 0 auto;
    object-fit: contain;
    object-position: bottom center;
    /* мобилка: чуть правее предыдущего «влево» */
    -webkit-transform: translate(-0.45rem, 0.75rem) scale(1.14);
    transform: translate(-0.45rem, 0.75rem) scale(1.32);
    -webkit-transform-origin: bottom center;
    transform-origin: bottom center;
  }
}

/* «Лет опыта»; плюс лежит поверх значка */
.main-screen__reward-experience {
  white-space: nowrap;
}

.main-screen__reward-experience br.mobile {
  display: none;
}

@media (max-width: 768px) {
  .main-screen__reward-experience {
    white-space: normal;
  }

  .main-screen__reward-experience br.mobile {
    display: block;
  }
}

.main-screen__reward-figure {
  position: relative;
  z-index: 3;
  display: inline-block;
  vertical-align: top;
}

.main-screen__reward-figure .main-screen__reward-img {
  display: block;
}

.header__contact-pin {
    width: 15px;
    height: 26px;
    flex-shrink: 0;
    position: relative;
    top: -0.2rem;
}

.main-screen__reward-plus--on-badge {
  position: absolute;
  top: 35%;
  right: 14%;
  width: 26%;
  height: auto;
  max-width: 1.75rem;
  object-fit: contain;
  object-position: center;
  pointer-events: none;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transform-origin: center center;
  transform-origin: center center;
}

@media (max-width: 1024px) {
  .main-screen__reward-plus--on-badge {
    top: 33%;
    right: 15%;
    max-width: 1.62rem;
  }
}

@media (max-width: 768px) {
  .main-screen__reward-plus--on-badge {
    top: 31%;
    right: 16%;
    width: 24%;
    max-width: 1.48rem;
  }
}

@media (max-width: 580px) {
  .main-screen__reward-plus--on-badge {
    top: 29%;
    right: 17%;
    width: 22%;
    max-width: 1.28rem;
  }
}

/* «Облачко» (overlay) за «Лет опыта»: чуть правее; на ≤768 overlay отключён в app3 */
@media (min-width: 769px) {
  .ws .main-screen__reward:nth-child(1)::before,
  .wn .main-screen__reward:nth-child(1)::before {
    -webkit-transform: translateX(-1rem);
    transform: translateX(2.5rem);
  }
}

/* Телефон: 3 в ряд (Fashion — «20+» — Будапешт), 4-й блок скрыт; золотые шевроны; полоска снизу */
.main-screen__rewards-gold-line {
  display: none;
}

/* Узкий экран: макет 1×3; картинка main-screen__reward1 + PNG «+» = «20+» */
@media (max-width: 768px) {
  .main-screen__rewards {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem 0.45rem;
    align-items: center;
    justify-items: center;
    width: 100%;
    max-width: 100%;
    left: auto;
    margin: 1.25rem auto 0;
    padding: 3.35rem 0.5rem 3.5rem;
    box-sizing: border-box;
    overflow: visible;
    z-index: 2;
  }
  .main-screen {
    overflow: hidden;
  }

  .main-screen__rewards::before,
  .main-screen__rewards::after {
    content: "";
    position: absolute;
    width: 100vw;
    left: 50%;
    height: 50%;
    z-index: 0;
    pointer-events: none;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background-repeat: no-repeat;
    background-size: 100% auto;
  }

  .main-screen__rewards::after {
    top: 0;
    background-image: url(../img/rewards__bg.png);
    background-position: top left;
  }

  .ws .main-screen__rewards::after {
    background-image: url(../img/rewards__bg.webp);
  }

  .main-screen__rewards::before {
    bottom: 0;
    background-image: url(../img/rewards__bg.png);
    background-position: bottom left;
  }

  .ws .main-screen__rewards::before {
    background-image: url(../img/rewards__bg.webp);
  }

  /* Визуальный порядок: Милан — центр «20+» — Будапешт */
  .main-screen__rewards .main-screen__reward:nth-child(1) {
    order: 2;
  }

  .main-screen__rewards .main-screen__reward:nth-child(2) {
    order: 1;
  }

  .main-screen__rewards .main-screen__reward:nth-child(3) {
    order: 3;
  }

  .main-screen__rewards .main-screen__reward:nth-child(4) {
    display: none !important;
  }

  .main-screen__rewards .main-screen__reward {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: none;
    min-width: 0;
    white-space: normal;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .main-screen__rewards .main-screen__reward-img {
    display: block;
    width: auto;
    max-width: 100%;
    /* max-height: 4.35rem; */
    height: auto;
    margin: 0 auto 0.55rem;
    object-fit: contain;
  }

  .main-screen__rewards .main-screen__reward-text {
    white-space: normal;
    font-size: clamp(0.68rem, 3.1vw, 0.98rem) !important;
    line-height: 1.4;
    max-width: 100%;
    padding: 0 2px;
    box-sizing: border-box;
    text-align: center;
  }

  .main-screen__rewards .main-screen__reward:nth-child(1) .main-screen__reward-text {
    font-size: clamp(0.85rem, 3.6vw, 1.15rem) !important;
    margin-top: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1.25;
  }

  /* «+» на значке 20: ровно (без наклона), квадрат, фиксированная позиция */
  .main-screen__rewards .main-screen__reward:nth-child(1) .main-screen__reward-plus--on-badge {
    top: 27%;
    right: 6%;
    width: 1.12rem;
    height: 1.12rem;
    max-width: 1.12rem;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transform-origin: center center;
    transform-origin: center center;
    filter: brightness(1.55) contrast(1.22) drop-shadow(0 0 2px rgba(255, 220, 160, 0.55));
    -webkit-filter: brightness(1.55) contrast(1.22) drop-shadow(0 0 2px rgba(255, 220, 160, 0.55));
  }

  .main-screen__rewards-gold-line {
    display: block;
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 100%;
    margin: 0.85rem auto 0;
    padding: 0 0.45rem 1.35rem;
    box-sizing: border-box;
    line-height: 0;
  }

  .main-screen__rewards-gold-line-img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    vertical-align: top;
  }
}

@media (max-width: 580px) {
  .main-screen__wrap > .main-screen__rewards {
    margin-top: -140px !important;
  }

  .main-screen__rewards {
    gap: 0.75rem 0.32rem;
    padding: 3rem 0.4rem 3.15rem;
  }

 /*  .main-screen__rewards .main-screen__reward-img {
    max-height: 3.95rem;
  } */

  .main-screen__rewards .main-screen__reward:nth-child(1) .main-screen__reward-plus--on-badge {
    top: 27%;
    right: 1%;
    width: 1.05rem;
    height: 1.05rem;
    max-width: 1.05rem;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transform-origin: center center;
    transform-origin: center center;
    filter: brightness(1.55) contrast(1.22) drop-shadow(0 0 2px rgba(255, 220, 160, 0.55));
    -webkit-filter: brightness(1.55) contrast(1.22) drop-shadow(0 0 2px rgba(255, 220, 160, 0.55));
  }

  .main-screen__rewards-gold-line {
    margin-top: 0.65rem;
    padding: 0 0.35rem 1.2rem;
  }
}

/* Блок с фото (Трамп / Армани): поднять вверх — в app3 у .peoples_main padding-top 16rem/12rem, из‑за этого зазор под шевроном */
@media (max-width: 768px) {
  section.peoples.peoples_main {
    padding-top: 2.25rem !important;
    margin-top: -10.5rem !important;
  }
}




@media only screen and (max-width: 768px) {


    .mobileAwards {
        display: block !important;

        margin: 0 1.5rem;
       padding: 2.8rem 18rem 2.4rem;

        background: #FFFEFE;
        box-shadow: 0 0.2rem 1rem rgba(0,0,0,.12);
                margin-top: -216px !important;
                z-index: 99;
                        margin-bottom: 115px;
    }

    .mobileAwards__title {
        text-align: center;
font-family: Tragan;
        font-size: 1.6rem;
        line-height: 1.15;
        font-weight: 400;
        text-transform: uppercase;
        color: #333333;
    }

    .mobileAwards__line {
        width: 12rem;
        height: 0.2rem;

        margin: 1.8rem auto 2.4rem;

        background: linear-gradient(
            90deg,
            #C89F61 0%,
            #EED39E 50%,
            #C89F61 100%
        );
    }

    .mobileAwards__items {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
    }

    .mobileAwards__item {
        width: 30%;
        text-align: center;
    }

    .mobileAwards__item img {
        width: auto;
        height: 58px;
        display: block;
        margin: 0 auto 1.4rem;
    }

    .mobileAwards__count {
        font-size: 7rem;
        line-height: 1;
        font-weight: 300;
        color: #B4B4B4;
        margin-bottom: 1rem;
    }

    .mobileAwards__text {
        font-size: 1rem;
        line-height: 1.25;
        color: #333;
    }

        .peoples_main .wrap {
        padding-top: 0px !important;

        }

    .main-screen {
        position: relative;
        overflow: hidden;
    }

    .main-screen::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        z-index: 0;
        width: 100%;
        height: 24rem;
        pointer-events: none;
        background: linear-gradient(
            180deg,
            #fff 0%,
            rgba(255, 255, 255, 0.95) 22%,
            rgba(255, 255, 255, 0.65) 55%,
            rgba(255, 255, 255, 0) 100%
        );
    }

    .main-screen::after {
        content: "";
        display: block !important;
        position: absolute;
        left: 0;
        bottom: 0;
        z-index: 0;
        width: 100%;
        height: 24rem;
        pointer-events: none;
        background: linear-gradient(
            0deg,
            #fff 0%,
            rgba(255, 255, 255, 0.95) 22%,
            rgba(255, 255, 255, 0.65) 55%,
            rgba(255, 255, 255, 0) 100%
        );
    }

    .main-screen > .wrap {
        position: relative;
        z-index: 1;
    }

    .peoples_main > .wrap {
    background: #FFFEFE;
    padding-top: 17px;
    padding-bottom: 0px;

  }

.peoples__item-img {
    width: auto !important;
    height: auto !important;
}

.peoples_main::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 15;
    width: 100%;
    height: 0.2rem;
    background: linear-gradient(
        90deg,
        #C89F61 0%,
        #EED39E 50%,
        #C89F61 100%
    );
}

    .main-screen__top {
        margin-bottom: 4rem;
    }

.header__contact-city {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.main-screen__wrap {
   padding-top: 11.5rem;
}

.header__contact-pin {
    width: 10px;
    height: 13px;
    flex-shrink: 0;
    position: relative;
    top: -0.1rem;
}

  section.peoples.peoples_main {
    padding-top: 1.5rem !important;
    margin-top: -9.5rem !important;
  }

  .logo {
    max-width: 200px !important;
  }
  
  .header__phone a {
    font-size: 11px;
  }
  
.header__contact-line {
  width: 90px;
  margin: 0.3rem 0;
  height: 1px !important;
}

.header__contact-city {
  font-size: 12.5px;
  align-items: start;
  margin-top: 2px;

}

.header__contact {
    /* transform: translateY(0.4rem); */
}

.header__wrap {
  justify-content: space-between;
}

.header__phone {
  margin-top: 0;
}
.main-screen {
    padding-top: 0;
}

    .main-screen__sub-title2 {
      font-size: 4rem !important;
    }

    

    .main-screen__divider {
        max-width: 66rem;
        margin: 0;
    }

        .main-screen__extra-text p:first-child {
        font-size: 4rem;
    }

    .mobExt {
      display: none;
    }

    .ws .main-screen__rewards::before
    .ws .main-screen__rewards::after {
      display: none;
    }

    .peoples_main {
      padding-bottom: 0 !important;
      padding-top: 0 !important;
      margin-top: 0 !important;
    }

    .main-screen__rewards {
        display: none !important;
    }

    section.peoples.peoples_main {
      padding-bottom: 0 !important;
      padding-top: 0 !important;
      margin-top: 0 !important;
    }

    .main-screen__content .main-screen__people-cutout-img {
      margin-left: -122px !important;
      scale: 1.4;
      margin: 127px 0 auto;
    }

        .main-screen__content .btn {
          margin-bottom: 243px !important;
              margin-top: -121px;
        }
.main-screen__title {
    line-height: 1.05;
}

.main-screen__sub-title2 {
  margin-bottom: 0.6rem;
}

.main-screen__extra-text {
margin-top: 4px;
}

}

@media (max-width: 580px) {
  section.peoples.peoples_main {
    padding-top: 1.5rem !important;
    margin-top: -9.5rem !important;
  }

  .logo {
    max-width: 200px !important;
  }
  
  .header__phone a {
    font-size: 11px;
  }
  
.header__contact-line {
  width: 90px;
  margin: 0.3rem 0;
  height: 1px !important;
}

.header__contact-city {
  font-size: 12.5px;
  align-items: start;
  margin-top: 2px;

}

.header__contact {
    /* transform: translateY(0.4rem); */
}

.header__wrap {
  justify-content: space-between;
}

.header__phone {
  margin-top: 0;
}
.main-screen {
    padding-top: 0;
}

    .main-screen__sub-title2 {
      font-size: 1.7rem !important;
    }

    .main-screen__content {
      margin-top: -75px;
    }

    .main-screen__divider {
        max-width: 28rem;
        margin: 0;
    }

        .main-screen__extra-text p:first-child {
        font-size: 1.59rem;
    }

    .mobExt {
      display: none;
    }

    .ws .main-screen__rewards::before
    .ws .main-screen__rewards::after {
      display: none;
    }

    .peoples_main {
      padding-bottom: 0 !important;
      padding-top: 0 !important;
      margin-top: 0 !important;
    }

    .main-screen__rewards {
        display: none !important;
    }

    section.peoples.peoples_main {
      padding-bottom: 0 !important;
      padding-top: 0 !important;
      margin-top: 0 !important;
    }

    .main-screen__content .main-screen__people-cutout-img {
      margin-left: -122px !important;
      scale: 1.4;
      margin: 127px 0 auto;
    }

        .main-screen__content .btn {
          margin-bottom: 243px !important;
              margin-top: -121px;
        }
.main-screen__title {
    line-height: 1.05;
}

.main-screen__sub-title2 {
  margin-bottom: 0.6rem;
}

.main-screen__extra-text {
margin-top: 4px;
}

}

@media (max-width: 430px) {
    .main-screen__content .main-screen__people-cutout-img {
      margin-left: -106px !important;
      scale: 1.3
      ;
      margin: 127px 0 auto;
    }

        .main-screen__content .btn {
        margin-top: -100px;
    }

        .main-screen__content .main-screen__people-cutout {
                padding: 0.5rem 0 0 !important;  
        }
}

.mobileAwards {
    display: none;
}

@media (max-width: 580px) {

    .mobileAwards {
        display: block;

        margin: 0 1.5rem;
       padding: 2.8rem 3.0rem 2.4rem;

        background: #FFFEFE;
        box-shadow: 0 0.2rem 1rem rgba(0,0,0,.12);
                margin-top: -216px !important;
                z-index: 99;
                        margin-bottom: 115px;
    }

    .mobileAwards__title {
        text-align: center;
font-family: Tragan;
        font-size: 1.6rem;
        line-height: 1.15;
        font-weight: 400;
        text-transform: uppercase;
        color: #333333;
    }

    .mobileAwards__line {
        width: 12rem;
        height: 0.2rem;

        margin: 1.8rem auto 2.4rem;

        background: linear-gradient(
            90deg,
            #C89F61 0%,
            #EED39E 50%,
            #C89F61 100%
        );
    }

    .mobileAwards__items {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
    }

    .mobileAwards__item {
        width: 30%;
        text-align: center;
    }

    .mobileAwards__item img {
        width: auto;
        height: 58px;
        display: block;
        margin: 0 auto 1.4rem;
    }

    .mobileAwards__count {
        font-size: 7rem;
        line-height: 1;
        font-weight: 300;
        color: #B4B4B4;
        margin-bottom: 1rem;
    }

    .mobileAwards__text {
        font-size: 1rem;
        line-height: 1.25;
        color: #333;
    }

    .main-screen {
        position: relative;
    }

    .main-screen {
        position: relative;
    }

    .main-screen {
        position: relative;
        overflow: hidden;
    }

    .main-screen::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        z-index: 0;
        width: 100%;
        height: 24rem;
        pointer-events: none;
        background: linear-gradient(
            180deg,
            #fff 0%,
            rgba(255, 255, 255, 0.95) 22%,
            rgba(255, 255, 255, 0.65) 55%,
            rgba(255, 255, 255, 0) 100%
        );
    }

    .main-screen::after {
        content: "";
        display: block !important;
        position: absolute;
        left: 0;
        bottom: 0;
        z-index: 0;
        width: 100%;
        height: 24rem;
        pointer-events: none;
        background: linear-gradient(
            0deg,
            #fff 0%,
            rgba(255, 255, 255, 0.95) 22%,
            rgba(255, 255, 255, 0.65) 55%,
            rgba(255, 255, 255, 0) 100%
        );
    }

    .main-screen > .wrap {
        position: relative;
        z-index: 1;
    }

    .peoples_main > .wrap {
    background: #FFFEFE;
    padding-top: 17px;
    padding-bottom: 0px;

  }

.peoples__item-img {
    width: auto !important;
    height: auto !important;
}

.peoples_main::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 15;
    width: 100%;
    height: 0.2rem;
    background: linear-gradient(
        90deg,
        #C89F61 0%,
        #EED39E 50%,
        #C89F61 100%
    );
}

    .main-screen__top {
        margin-bottom: 4rem;
    }

.header__contact-city {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.header__contact-pin {
    width: 10px;
    height: 13px;
    flex-shrink: 0;
    position: relative;
    top: -0.1rem;
}

.peoples__item-name {
    margin-top: 0.5rem !important;
    font-size: 0.8rem !important;
}

}

@media only screen and (max-width: 1024px) {
    .main-screen__content .btn {
        width: 91%;
    }

        .peoples_main .wrap {
            padding-top: 80px;
    padding-bottom: 10px;
        max-width: none;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .peoples__wrap {
        position: relative !important;
        width: calc(100vw - 4rem) !important;
        max-width: none !important;
        padding-left: 6rem !important;
        padding-right: 6rem !important;
        box-sizing: border-box !important;
    }

    .peoples__slider {
        width: 100% !important;
        max-width: none !important;
        overflow: hidden !important;
    }

    .peoples__slider .swiper-container {
        width: 100% !important;
        overflow: hidden !important;
    }

    .peoples__slider .swiper-slide {
        width: calc((100vw - 4rem - 12rem - 7.8rem) / 4) !important;
        margin-right: 2.6rem !important;
    }

    .peoples__item-img {
        width: 100% !important;
        aspect-ratio: 220 / 235;
        height: auto !important;
    }

    .peoples__btn_prev {
        left: 1.5rem !important;
    }

    .peoples__btn_next {
        right: 1.5rem !important;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .peoples_main > .wrap {
        width: 100% !important;
        max-width: none !important;
        padding-left: 2rem !important;
        padding-right: 2rem !important;
        box-sizing: border-box !important;
    }

    .peoples__wrap {
        width: 100% !important;
        margin-left: auto !important;
        margin-right: auto !important;
        padding-left: 8rem !important;
        padding-right: 8rem !important;
        box-sizing: border-box !important;
        transform: none !important;
        left: auto !important;
        right: auto !important;
    }

    .peoples__slider {
        width: 100% !important;
        margin: 0 auto !important;
    }

    .peoples__btn_prev {
        left: 2rem !important;
    }

    .peoples__btn_next {
        right: 2rem !important;
    }
}


@media (min-width: 769px) and (max-width: 1024px) {
    .swiper-wrapper {
        width: auto !important;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .peoples__slider {
        width: 100% !important;
        max-width: none !important;
        margin: 0 auto !important;
        overflow: hidden !important;
    }

    .peoples__slider .swiper-slide {
        width: calc((100vw - 4rem - 16rem - 7.8rem) / 4) !important;
        margin-right: 2.6rem !important;
        box-sizing: border-box !important;
    }

    .peoples__item-img {
        width: 100% !important;
        height: auto !important;
        aspect-ratio: 220 / 235;
    }

    .peoples__item-img img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }
}

@media (max-width: 580px) {
    .main-screen__wrap {
        padding-top: 4.5rem;
    }
  }

@media (max-width: 1300px) and (max-height: 750px) {
 /* .main-screen__wrap {
    padding-top: 7rem;
  } */
   .main-screen__desktop-people {
max-width: 95%;
top: -71px !important;
   }
  }

  @media (max-width: 580px) {
    .mobileAwards {
        width: calc(100vw - 3rem) !important;
        max-width: 43rem !important;

        padding: 2.8rem 1.6rem 2.4rem !important;
        background: #FFFEFE;
        box-shadow: 0 0.2rem 1rem rgba(0,0,0,.12);
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    .mobileAwards__inner {
        padding: 0 !important;
    }

    .mobileAwards__title {
        max-width: 34rem;
        margin: 0 auto;
        text-align: center;
        font-size: 1.4rem;
        line-height: 1.12;
        letter-spacing: 0.04em;
        text-transform: uppercase;
        color: #303030;
        white-space: normal !important;
    }

    .mobileAwards__line {
        width: 13rem;
        height: 0.1rem;
        margin: 1.3rem auto 2.2rem;
        background: linear-gradient(90deg, #C89F61 0%, #EED39E 50%, #C89F61 100%);
    }

    .mobileAwards__items {
        display: grid !important;
        grid-template-columns: 1fr 1.15fr 1fr;
        column-gap: 1rem;
        width: 100%;
        align-items: start;
    }

    .mobileAwards__item {
        width: auto !important;
        min-width: 0 !important;
        text-align: center;
    }

    .mobileAwards__item img {
        display: block;
        height: 5.8rem !important;
        width: auto !important;
        max-width: 100% !important;
        margin: 0 auto 1rem;
    }

    .mobileAwards__number {
        font-size: 7.4rem;
        line-height: 0.85;
        font-weight: 300;
        color: #AAAAAA;
        margin: 0 0 2rem;
        white-space: nowrap;
    }

    .mobileAwards__text {
        font-size: 1.15rem;
        line-height: 1.15;
        color: #333;
        text-align: center;
        word-break: normal;
        overflow-wrap: normal;
    }

        .mobileAwards__item:nth-child(1) {
      margin-left: -2rem !important;
    }

            .mobileAwards__item:nth-child(3) {
      margin-right: -2.5rem !important;

    height: 4.5rem !important;

    }

                .mobileAwards__item:nth-child(2) img {
          height: 3rem !important;
    margin-top: 1.2rem;
    }

                .mobileAwards__item:nth-child(3) img {
    height: 4.7rem !important;
        margin-top: 0.4rem;

    }
    
}

