/* ==========================================================================
   EVRAZ STEEL BOX — стили по макету Figma (figma.nm-css)
   Основа: flexbox + grid
   ========================================================================== */

@font-face {
  font-family: 'EvrazSans';
  src: url('fonts/EvrazSans-Regular.woff2') format('woff2'),
    url('fonts/EvrazSans-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'EvrazSans';
  src: url('fonts/EvrazSans-Medium.woff2') format('woff2'),
    url('fonts/EvrazSans-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'EvrazSans';
  src: url('fonts/EvrazSans-Bold.woff2') format('woff2'),
    url('fonts/EvrazSans-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --color-bg: #F9F9F9;
  --color-white: #FFFFFF;
  --color-text: #2C2C2C;
  --color-text-2: #424242;
  --color-text-3: #616161;
  --color-muted: #999999;
  --color-border: #D9D9D9;
  --color-orange: #FF6600;
  --color-orange-light: #FEF4EC;
  --color-purple: #722082;
  --color-purple-light: #A16AAC;
  --color-purple-bg: #F6F0F7;
  --color-purple-bg-1: #B88FC0;
  --font: 'EvrazSans', 'Arial', 'Helvetica Neue', sans-serif;
  --container: 1330px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.01em;
  color: var(--color-text);
  background: var(--color-bg);
  overflow-x: hidden;
}

img,
svg {
  display: block;
}

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

a:hover,
a:focus,
a:active {
  color: inherit;
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

sup {
  font-size: 0.5em;
}

/* Сброс глобальных h1–h4/p из CSS шаблона Bitrix (text-align:center, uppercase и т.п.) */
h1,
h2,
h3,
h4,
p,
blockquote {
  margin: 0;
  padding: 0;
  font-family: var(--font);
  font-size: inherit;
  font-weight: inherit;
  font-style: normal;
  line-height: inherit;
  letter-spacing: inherit;
  color: inherit;
  text-align: left;
  text-transform: none;
}

.nm-container {
  width: 100%;
  max-width: calc(var(--container) + 48px);
  margin: 0 auto;
  padding: 0 24px;
}

button {
  outline: none;
}

/* --------------------------------------------------------------------------
   Типографика секций
   -------------------------------------------------------------------------- */

.nm-section-title {
  font-weight: 500;
  font-size: 30px;
  line-height: 1.2;
  color: var(--color-text);
  text-align: left;
  text-transform: none;
}

.nm-section-desc {
  font-size: 20px;
  line-height: 1.45;
  color: var(--color-text);
  max-width: 80%;
}

.nm-section-footer {
  display: flex;
  justify-content: center;
  /* margin-top: 40px;*/
}

/* --------------------------------------------------------------------------
   Кнопки
   -------------------------------------------------------------------------- */

.nm-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 8px 24px;
  min-height: 40px;
  font-family: inherit;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.01em;
  border: none;
  cursor: pointer;
  transition: background-color .2s, color .2s, border-color .2s;
}

.nm-btn--orange {
  background: var(--color-orange);
  color: var(--color-white);
}

.nm-btn--orange:hover {
  background: #e05a00;
}

.nm-btn--outline {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  color: var(--color-text-2);
}

.nm-btn--outline:hover {
  border-color: var(--color-orange);
  color: var(--color-orange);
}

.nm-btn--lg {
  min-height: 60px;
  padding: 10px 40px;
}

.nm-btn--330 {
  min-height: 60px;
  min-width: 330px;
}

.nm-btn--300 {
  height: 60px;
  width: 300px;
}

/* --------------------------------------------------------------------------
   Стрелки слайдеров
   -------------------------------------------------------------------------- */

.nm-slider-arrows {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nm-slider-arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  flex: none;
  background: var(--color-white);
  border: 2px solid var(--color-border);
  border-radius: 50%;
  color: var(--color-purple);
  cursor: pointer;
  transition: border-color .2s, color .2s, opacity .2s;
}

.nm-slider-arrow:hover {
  border-color: var(--color-purple);
}

.nm-slider-arrow:disabled {
  opacity: .4;
  cursor: default;
  color: var(--color-muted);
}

.nm-slider-arrow:disabled:hover {
  border-color: var(--color-border);
}

.nm-slider-arrow--light {
  background: transparent;
  border-color: var(--color-white);
  color: var(--color-white);
}

.nm-slider-arrow--light.nm-slider-arrow--filled {
  background: var(--color-white);
  color: var(--color-purple);
}

.nm-slider-arrow--light:hover {
  border-color: var(--color-white);
  opacity: .85;
}

/* --------------------------------------------------------------------------
   ШАПКА
   -------------------------------------------------------------------------- */

.nm-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
}

.nm-header__inner {
  display: flex;
  align-items: center;
  gap: 43px;
  min-height: 127px;
  padding-top: 25px;
  padding-bottom: 30px;
}

.nm-header__logo,
.nm-footer__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: none;
}

.nm-logo-mark {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 58px;
  height: 58px;
  background: var(--color-orange);
  color: var(--color-white);
  font-size: 34px;
  font-weight: 700;
}

.nm-logo-mark--light {
  background: var(--color-white);
  color: var(--color-orange);
}

.nm-logo-text {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.06em;
}

.nm-header__center {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1 1 auto;
}

.nm-header__nav,
.nm-header__subnav {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: nowrap;
}

.nm-header__nav-link {
  font-size: 16px;
  color: var(--color-text-2);
  transition: color .2s;
}

.nm-header__nav-link:hover,
.nm-header__nav-link--active {
  color: var(--color-orange);
}

.nm-header__subnav-link {
  font-size: 18px;
  color: var(--color-text);
  transition: color .2s;
  text-align: center;
}

.nm-header__subnav-link:hover {
  color: var(--color-orange);
}

.nm-header__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
}

.nm-header__contacts {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nm-header__phone {
  color: var(--color-text);
}

.nm-header__email {
  color: var(--color-orange);
}

.nm-header__burger {
  /*display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 24px;
  height: 24px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;*/
}

.nm-header__burger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--color-orange);
}

.nm-header__callback {
  padding: 11.5px 15.5px 13.5px 15.5px;
}

.nm-parking-page {
  background-color: var(--color-white);
}

/* --------------------------------------------------------------------------
   ГЛАВНЫЙ БАННЕР (слайдер)
   -------------------------------------------------------------------------- */

.nm-parking-page .nm-hero {
  position: relative;
}

.nm-parking-page .nm-hero__slider {
  position: relative;
  overflow: hidden;
}

.nm-parking-page .nm-hero__track {
  display: flex;
  transition: transform .6s ease;
}

.nm-parking-page .nm-hero__slide {
  flex: 0 0 100%;
  min-height: 712px;
  display: flex;
  align-items: stretch;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  transition: opacity .6s ease;
  background-blend-mode: multiply;
  background-color: rgba(44, 44, 44, 0.3);
}

.nm-parking-page .nm-hero__slide1 {
  background-image: url('images/slider-bg-1.webp');
}

.nm-parking-page .nm-hero__slide2 {
  background-image: url('images/slider-bg-2.webp');
}

.nm-parking-page .nm-hero__slide3 {
  background-image: url('images/slider-bg-3.webp');
}

.nm-parking-page .nm-hero__content {
  display: flex;
  align-items: flex-start;
  padding-top: 91px;
  justify-content: space-between;
}

.nm-parking-page .nm-hero__text {
  display: flex;
  flex-direction: column;
  gap: 48px;
  max-width: 50%;
}

.nm-parking-page .nm-hero__text .nm-hero__description {
  color: var(--color-white);
  font-size: 24px;
  line-height: 130%;
  font-weight: normal;
}

.nm-parking-page .nm-hero__title {
  font-weight: 700;
  font-size: 40px;
  line-height: 55px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--color-white);
}

.nm-parking-page .nm-text-primary {
  color: #FF6600;
}

.nm-parking-page .nm-hero__feature .nm-text-primary {
  font-size: 96px;
  line-height: 100%;
}

.nm-parking-page .nm-hero__feature {
  padding: 8px 24px;
  padding-right: 15px;
  border-left: 2px solid var(--color-orange);
  font-size: 18px;
  line-height: 130%;
  color: var(--color-white);
  width: 20%;
}

.nm-hf_240 {
  flex-basis: 240px;
}

.nm-hf_616 {
  flex-basis: 616px;
}

.nm-parking-page .nm-hero__bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 96px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}

.nm-parking-page .nm-hero__buttons {
  display: flex;
  gap: 32px;
  align-items: stretch;
}

.nm-parking-page .nm-hero__buttons .nm-btn {
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
  box-sizing: border-box;
}

.nm-parking-page .nm-hero__buttons .nm-btn--orange {
  padding: 24.5px 30.5px;
}

.nm-parking-page .nm-hero__buttons .nm-btn--outline {
  padding: 24.5px 54px;
}

.nm-parking-page .nm-hero__progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 27px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nm-parking-page .nm-hero__progress-line {
  flex: 1 1 0;
  height: 2px;
  padding: 0;
  background: var(--color-border);
  border: none;
  cursor: pointer;
  transition: background-color .3s;
}

.nm-parking-page .nm-hero__progress-line--active {
  background: var(--color-purple);
}

/* --------------------------------------------------------------------------
   ЗАПРОЕКТИРОВАНО И ПОСТРОЕНО
   -------------------------------------------------------------------------- */

.nm-parking-page .nm-project-build__block {
  padding-top: 80px;
  padding-bottom: 65px;
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.nm-parking-page .nm-project-build__block .nm-content-block {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
  width: 50%;
}

.nm-project-build__stats {
  display: flex;
  gap: 32px;
  align-items: stretch;
  width: 100%;
}

.nm-project-build__stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  padding-left: 24px;
  border-left: 2px solid var(--color-orange);
  width: 50%;
}

.nm-project-build__stat-value {
  display: flex;
  align-items: baseline;
  margin: 0;
  padding: 0;
  font-weight: 500;
  font-size: 24px;
  line-height: 1;
  color: var(--color-orange);
}

.nm-project-build__stat-value > span:not(.nm-project-build__stat-suffix) {
  display: inline-block;
  font-size: 64px;
  font-weight: 500;
  line-height: 1;
}

.nm-project-build__stat-value .nm-project-build__stat-suffix {
  display: inline-block;
  font-family: var(--font);
  font-weight: 500;
  font-style: normal;
  font-size: 32px;
  line-height: 20px;
  letter-spacing: 0.01em;
  text-box: trim-both cap alphabetic;
}

.nm-project-build__stat-label {
  margin: 0;
  padding: 0;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.2;
  color: var(--color-text-3);
}

/* --------------------------------------------------------------------------
   Клиенты и бизнес-парнеры (слайдер)
   -------------------------------------------------------------------------- */

.nm-parking-partners {
  padding-bottom: 80px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.nm-parking-partners__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
}

.nm-parking-partners__intro {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.nm-parking-partners__intro .nm-section-desc {
  max-width: 100%;
  font-family: var(--font);
  font-weight: 400;
  font-style: normal;
  font-size: 22px;
  line-height: 32px;
  letter-spacing: 0.01em;
  text-box: trim-both cap alphabetic;
}

.nm-parking-partners .nm-slider-arrow-next {
  background: var(--color-purple);
  border-radius: 50%;
  color: var(--color-white)
}

.nm-parking-partners .nm-slider-arrow:disabled {
  background: var(--color-white);
  color: var(--color-border);
  opacity: 1;
}

.nm-parking-partners__slider-viewport {
  overflow: hidden;
}

.nm-parking-partners__track {
  display: flex;
  gap: 16px;
  transition: transform .5s ease;
}

.nm-parking-partners__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100px;
  width: 200px;
  min-width: 200px;
  padding: 12px 16px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  transition: box-shadow .2s;
}

.nm-parking-partners__card:hover {
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.25);
}

.nm-parking-partners__card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* --------------------------------------------------------------------------
   РЕАЛИЗОВАННЫЕ ПРОЕКТЫ (слайдер + фильтр)
   -------------------------------------------------------------------------- */

.nm-parking-page__projects {
  background-color: var(--color-bg);
  padding-top: 80px;
  padding-bottom: 80px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.nm-parking-projects__head {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.nm-parking-tabs__button {
  display: flex;
  gap: 16px;
  height: 40px;
  padding: 4px;
  flex-wrap: wrap;
  border: 1px solid var(--color-border);
  background: var(--color-white);
  box-sizing: border-box;
}

.nm-parking-tabs-filters {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  padding-bottom: 32px;
}

.nm-parking-filters {
  display: flex;
  gap: 24px;
  align-items: center;
  min-height: 40px;
}

.nm-parking-tabs {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
  width: 100%;
  min-height: 40px;
}

.nm-parking-tabs__btn,
.nm-parking-filter__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 16px;
  font-family: inherit;
  font-size: 16px;
  line-height: 1;
  background: var(--color-white);
  border: 0px solid var(--color-border);
  color: var(--color-text-2);
  cursor: pointer;
  transition: background-color .2s, color .2s, border-color .2s;
  box-sizing: border-box;
}

.nm-parking-tabs__button .nm-parking-tabs__btn {
  height: 100%;
}

.nm-parking-filter__btn {
  border: 1px solid #D9D9D9;
}

.nm-parking-filters__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: auto;
  min-height: 40px;
}

.nm-parking-filters__count {
  display: none;
  color: var(--color-text);
  font-size: 15px;
  line-height: 1;
  white-space: nowrap;
}

.nm-parking-clean-filters {
  position: relative;
  align-self: center;
  height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 0 0 35px;
  cursor: pointer;
  background: transparent;
  appearance: none;
  border: none;
  font: var(--font);
  color: var(--color-text);
  outline: none;
}

.nm-parking-clean-filters::before {
  position: absolute;
  content: "";
  width: 24px;
  height: 24px;
  background: url(./images/rotate-cw.png) no-repeat center / cover;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.nm-parking-clean-filters:hover {
  opacity: 0.8;
}

.nm-parking-clean-filters:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}

.nm-parking-tabs__btn:hover {
  border-color: var(--color-orange);
  color: var(--color-orange);
}

.nm-parking-tabs__btn--active,
.nm-parking-tabs__btn--active:hover {
  background: var(--color-purple-light);
  border-color: var(--color-purple-light);
  color: var(--color-white);
}

.nm-parking-filter__btn--active,
.nm-parking-filter__btn--active:hover {
  border: 2px solid #722082;
}

.nm-projects-slider__viewport {
  overflow: hidden;
}

.nm-projects-slider__track {
  display: flex;
  gap: 32px;
  transition: transform .5s ease;
  padding-bottom: 32px;
}

.nm-parking-page__projects .nm-projects-slider__viewport {
  overflow: visible;
}

.nm-parking-page__projects .nm-projects-slider__track {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  width: 100%;
  transform: none !important;
}

.nm-parking-project__card {
  display: flex;
  flex-direction: column;
  flex: none;
  width: auto;
  min-width: 0;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  transition: box-shadow .2s;
}

.nm-parking-project__card:hover {
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.25);
}

.nm-parking-project-card__img {
  position: relative;
  height: 385px;
  overflow: hidden;
}

.nm-parking-project-card__link {
  display: block;
  width: 100%;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.nm-parking-project-card__slides {
  display: flex;
  height: 100%;
  transition: transform .4s ease;
}

.nm-parking-project-card__slide {
  flex: 0 0 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.nm-parking-project-card__build {
  position: absolute;
  right: 0px;
  top: 0px;
  z-index: 1;
  padding: 4px 12px;
  background: var(--color-orange);
  color: var(--color-white);
  font-size: 13px;
  font-weight: 500;
}

.nm-parking-project-card__project {
  position: absolute;
  right: 0px;
  top: 0px;
  z-index: 1;
  padding: 4px 12px;
  background: var(--color-purple-bg-1);
  color: var(--color-white);
  font-size: 13px;
  font-weight: 500;
}

.nm-parking-project-card__body {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 8px 24px 24px;
}

.nm-parking-project-card__lines {
  display: flex;
  gap: 4px;
}

.nm-parking-project-card__lines span.nm-is-active {
  background: var(--color-purple);
}

.nm-parking-project-card__lines span {
  flex: 1 1 0;
  height: 1px;
  background: #E0E0E0;
  cursor: pointer;
  transition: background .2s;
}

.nm-parking-project-card__title {
  font-size: 20px;
  font-weight: 400;
  line-height: 120%;
  height: 40px;
}

.nm-parking-project-card__specs {
  display: flex;
  gap: 24px;
  padding: 0;
  font-size: 15px;
  font-weight: 400;
  line-height: 1;
  flex-wrap: wrap;
  color: var(--color-muted);
}



/* --------------------------------------------------------------------------
  Почему выбирают нас
   -------------------------------------------------------------------------- */
.nm-parking-page__choice {
  background-color: var(--color-white);
  padding-top: 80px;
  padding-bottom: 138px;
}

.nm-parking-choice__text {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-bottom: 48px;
}

.nm-parking-choice__description {
  color: var(--color-text);
  font-style: normal;
  font-weight: 400;
  font-size: 22px;
  line-height: 130%;
}

.nm-parking-choice__blocks {
  display: flex;
  gap: 100px;
  row-gap: 48px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.nm-parking-choice__block {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  width: 28%;
}

.nm-parking-choice__block img {
  width: 359px;
  height: 210px;
  object-fit: cover;
  display: block;
}

.nm-parking-choice__block-title {
  color: var(--color-orange);
  font-size: 24px;
  line-height: 120%;
  font-weight: 500;
}

.nm-parking-choice__block-decription {
  color: var(--color-text-3);
  font-weight: 400;
}


/* --------------------------------------------------------------------------
   Решение на основе технологии ПРЕФАБ
   -------------------------------------------------------------------------- */

.nm-parking-page__prefab {
  background-color: var(--color-white);
  padding-bottom: 84px;
}

.nm-parking-prefab__container {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.nm-prefab-block__inner {
  display: flex;
  gap: 79px;
  align-items: flex-start;
}

.nm-prefab-block__left {
  width: 575px;
}

.nm-prefab-block__image-wrap {
  position: relative;
  width: 100%;
}

.nm-prefab-block__image {
  display: block;
  width: 100%;
  height: auto;
}

.nm-prefab-block__marker {
  position: absolute;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #894597;
  border: 2px solid #FFFFFF;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  font-family: var(--font);
}

.nm-marker--1 {
  left: 61%;
  top: 45%;
  ;
}

.nm-marker--2 {
  left: 4%;
  top: 28%;
}

.nm-marker--3 {
  left: 78%;
  top: 29%;
}

.nm-marker--4 {
  left: 44%;
  top: 9%;
}

.nm-marker--5 {
  left: 40%;
  top: 82%;
}

.nm-marker--6 {
  left: 25%;
  top: 51%;
}

.nm-prefab-block__right {
  max-width: 50%;
}

.nm-prefab-block__section-head {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.nm-prefab-block__step {
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  min-width: 32px;
  min-height: 32px;
  border-radius: 50%;
  background: #ff7a00;
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.nm-prefab-block__subtitle {
  color: var(--color-text);
  font-size: 24px;
  line-height: 120%;
  font-weight: 500;
  margin: 0;
  min-width: 0;
}

.nm-prefab-block__text {
  color: var(--color-text-2);
  font-weight: 400;
}

.nm-prefab-block__gallery {
  display: flex;
  gap: 30px;
  align-items: center;
  flex-wrap: wrap;
}

.nm-prefab-block__gallery-img {
  width: 47%;
}

.nm-prefab-block__gallery3 .nm-prefab-block__img-text {
  width: 47%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nm-prefab-block__gallery3 .nm-prefab-block__img-text .nm-prefab-block__gallery-img {
  width: 100%;
}

.nm-prefab__img-text {
  font-size: 18px;
  line-height: 120%;
  font-weight: 500;
}

.nm-prefab-block__gallery4 .nm-prefab-block__gallery-img {
  width: 100%;
}

.nm-prefab-block__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.nm-prefab-block__item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--color-text-2);
  padding-left: 55px;
  font-family: var(--font);
  font-weight: 400;
  font-style: normal;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.01em;
  text-box: trim-both cap alphabetic;
}

.nm-prefab-block__item::before {
  content: "";
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: top;
  left: 0px;
  position: absolute;
}

.nm-prefab-block__list1 {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
}

.nm-prefab-block__list1 .nm-prefab-block__item {
  width: 48%;
}

.nm-prefab-block__list1 .nm-prefab-block__item1::before {
  background-image: url(./images/prefab-slides-1-icon1.png);
}

.nm-prefab-block__list1 .nm-prefab-block__item2::before {
  background-image: url(./images/prefab-slides-1-icon2.png);
}

.nm-prefab-block__list1 .nm-prefab-block__item3::before {
  background-image: url(./images/prefab-slides-1-icon3.png);
}

.nm-prefab-block__list1 .nm-prefab-block__item4::before {
  background-image: url(./images/prefab-slides-1-icon4.png);
}

.nm-prefab-block__list1 .nm-prefab-block__item5::before {
  background-image: url(./images/prefab-slides-1-icon5.png);
}

.nm-prefab-block__list1 .nm-prefab-block__item6::before {
  background-image: url(./images/prefab-slides-1-icon6.png);
}

.nm-prefab-block__list4 .nm-prefab-block__item1::before {
  background-image: url(./images/prefab-slides-1-icon3.png);
}

.nm-prefab-block__list4 .nm-prefab-block__item2::before {
  background-image: url(./images/prefab-slides-1-icon1.png);
}

.nm-prefab-block__list4 .nm-prefab-block__item3::before {
  background-image: url(./images/prefab-slides-4-icon1.png);
}

.nm-prefab-block__list5 .nm-prefab-block__item1::before {
  background-image: url(./images/prefab-slides-5-icon1.png);
}

.nm-prefab-block__list5 .nm-prefab-block__item2::before {
  background-image: url(./images/prefab-slides-1-icon4.png);
}

.nm-prefab-block__list5 .nm-prefab-block__item3::before {
  background-image: url(./images/prefab-slides-4-icon1.png);
}

.nm-prefab-block__list4,
.nm-prefab-block__list5,
.nm-prefab-block__list6 {
  gap: 30px;
}

.nm-prefab-block__section-head6 {
  align-items: flex-start;
}

.nm-prefab-block__list6 .nm-prefab-block__item1::before {
  background-image: url(./images/prefab-slides-1-icon6.png);
}

.nm-prefab-block__list6 .nm-prefab-block__item2::before {
  background-image: url(./images/prefab-slides-1-icon4.png);
}

.nm-prefab-block__list6 .nm-prefab-block__item3::before {
  background-image: url(./images/prefab-slides-6-icon1.png);
}

.nm-prefab-content {
  display: none;
}

.nm-prefab-content.nm-is-active {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}

.nm-prefab-block__marker {
  cursor: pointer;
  padding: 0;
  appearance: none;
}

.nm-prefab-block__marker.nm-is-active {
  background: #ff7a00;
}

.nm-prefab-block__marker:focus-visible {
  outline: 2px solid #000;
  outline-offset: 3px;
}

/* --------------------------------------------------------------------------
  ТИПОВЫЕ РЕШЕНИЯ (слайдер)
   -------------------------------------------------------------------------- */
.nm-parking-page__type {
  padding: 80px 0 40px;
}

/* --------------------------------------------------------------------------
  На 15% больше машиномест
   -------------------------------------------------------------------------- */
.nm-parking-page__more {
  padding: 40px 0 80px;
}

.nm-parking-more {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: stretch;
}

.nm-parking-more__content {
  display: flex;
  flex-direction: column;
  gap: 48px;
  width: 100%;
  background: #fff;
  padding: 48px;
  box-sizing: border-box;
}

.nm-parking-more__lead {
  margin: 0;
  font-family: inherit;
  font-size: 22px;
  font-weight: 400;
  line-height: 28px;
  color: var(--color-text);
}

.nm-parking-more__title {
  font-family: var(--font);
  font-weight: 500;
  font-style: normal;
  font-size: 29px;
  line-height: 20px;
  letter-spacing: 0.01em;
  text-box: trim-both cap alphabetic;
  color: var(--color-text);
}

.nm-parking-more__media {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  width: 100%;
  min-width: 0;
  align-items: stretch;
}

.nm-parking-more__figure {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
}

.nm-parking-more__figure-inner {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 24px;
  width: fit-content;
  max-width: 100%;
}

.nm-parking-more__figure img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: contain;
  object-position: left center;
}

.nm-parking-more__caption {
  margin: 0;
  padding: 24px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
}

.nm-parking-more__caption-head {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nm-parking-more__caption-title {
  font-family: inherit;
  font-size: 24px;
  font-weight: 500;
  line-height: 28px;
  color: var(--color-text);
}

.nm-parking-more__caption-sub {
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  color: var(--color-text);
}

.nm-parking-more__caption-desc {
  font-family: inherit;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  color: var(--color-text);
}

.nm-parking-more__caption-area {
  margin-top: 16px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  color: var(--color-text);
}

.nm-parking-more__caption-area strong {
  font-weight: 500;
}

.nm-parking-more__caption-area-value {
  font-size: 20px;
  font-weight: 500;
  line-height: 26px;
}

.nm-parking-type__container {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: stretch;
}

.nm-parking-type__container > .nm-btn {
  align-self: center;
  width: auto;
  max-width: 100%;
  box-sizing: border-box;
}

.nm-parking-type-projects {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
}

.nm-parking-type-projects__title {
  font-family: var(--font);
  font-weight: 500;
  font-style: normal;
  font-size: 29px;
  line-height: 20px;
  letter-spacing: 0.01em;
  text-box: trim-both cap alphabetic;
}

.nm-parking-type-projects__tabs-row {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nm-parking-type-projects__tabs-group {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  border: 1px solid #e2e2e2;
  background: #fff;
  padding: 4px 14.5px;
}

.nm-parking-type-projects__tabs-label {
  color: var(--color-muted);
  font-weight: 400;
}

.nm-parking-type-tabs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.nm-parking-type-tabs__btn {
  padding: 10.5px 27px;
  border: 0;
  background: var(--color-white);
  color: var(--color-text-2);
  font-size: 16px;
  cursor: pointer;
  transition: 0.2s ease;
}

.nm-parking-type-tabs__btn--active {
  background: #9c63b1;
  color: #fff;
}

.nm-parking-type-tabs__btn:hover:not(:disabled):not(.nm-parking-type-tabs__btn--disabled) {
  background: #f3edf6;
}

.nm-parking-type-tabs__btn--active:hover {
  background: #9c63b1;
  color: #fff;
}

.nm-parking-type-tabs__btn:disabled,
.nm-parking-type-tabs__btn--disabled {
  opacity: 0.4;
  cursor: default;
  pointer-events: none;
  background: var(--color-white);
  color: var(--color-muted, #9a9a9a);
}

.nm-parking-type-projects__content {
  background: #fff;
  border: 1px solid #e4e4e4;
  padding: 48px 64px;
}

.nm-parking-type-projects__panel {
  display: none;
}

.nm-parking-type-projects__panel.nm-is-active {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 48px;
  width: 100%;
}

.nm-parking-type-projects__card-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.nm-parking-type-projects__card {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
}

.nm-parking-type-projects__note {
  margin: 0;
  padding: 0;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: var(--color-muted);
  text-align: left;
  align-self: flex-start;
}

.nm-parking-type-projects__text {
  color: var(--color-text);
}

.nm-parking-type__text {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.nm-parking-type-projects__headings {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.nm-parking-type-projects__subtitle {
  line-height: 20px;
}

.nm-parking-type-projects__props {
  font-family: inherit;
  font-size: 24px;
  font-weight: 400;
  line-height: 24px;
  min-height: 24px;
  color: var(--color-text);
}

.nm-parking-type-projects__params {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid #e9e9e9;
  font-weight: 400;
  width: 100%;
}

.nm-parking-type-projects__params li {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 9px 0;
  border-bottom: 1px solid #e9e9e9;
  color: var(--color-text-2);
}

.nm-parking-type-projects__info {
  flex: 1 1 0;
  min-width: 0;
  width: auto;
  align-self: stretch;
}

.nm-parking-type-projects__media {
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
}

.nm-parking-type__slider-content {
  display: flex;
  align-items: center;
  gap: 0;
  width: 100%;
  max-width: 100%;
  position: relative;
}

.nm-parking-type__slider-content--single {
  justify-content: center;
}

.nm-parking-type__slider-content--single .nm-parking-type__slider {
  flex: 0 0 500px;
}

.nm-parking-type__slider {
  flex: 0 0 500px;
  width: 500px;
  max-width: 100%;
  min-width: 0;
  overflow: visible;
  position: relative;
  padding-bottom: 24px;
}

.nm-parking-type__slider-viewport {
  overflow: hidden;
  width: 100%;
}

.nm-parking-type__track {
  display: flex;
  width: 100%;
  transition: transform 0.3s ease;
}

.nm-parking-type__slide {
  flex: 0 0 100%;
  width: 100%;
}

.nm-parking-type__slide img {
  display: block;
  width: 100%;
  max-width: 500px;
  height: 350px;
  object-fit: contain;
  object-position: center;
  cursor: pointer;
}

.nm-parking-type__slider-content .nm-slider-arrow-next {
  background: var(--color-purple);
  border-color: var(--color-purple);
  color: var(--color-white);
}

.nm-parking-type__slider-content .nm-slider-arrow:disabled {
  background: var(--color-white);
  border-color: var(--color-border);
  color: var(--color-border);
  opacity: 1;
}

.nm-parking-type-slider__arrow {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  border: 2px solid #D9D9D9;
  background: #FFFFFF;
  cursor: pointer;
  display: grid;
  place-items: center;
  z-index: 3;
  border-radius: 100%;
}

.nm-parking-type-slider__arrow--next {
  background: var(--color-purple);
  border-radius: 50%;
  color: var(--color-white);
  border: none;
}

.nm-parking-type-slider__arrow:disabled {
  background: var(--color-white);
  color: var(--color-border);
  opacity: 1;
}

.nm-parking-type__progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  height: 4px;
  z-index: 2;
  padding: 0;
}

.nm-parking-type__progress-line {
  flex: 1 1 0;
  height: 2px;
  padding: 0;
  display: block;
  background: var(--color-border);
  border: none;
  cursor: pointer;
  transition: background-color .3s;
}

.nm-parking-type__progress-line--active {
  background: var(--color-purple);
}

/* --------------------------------------------------------------------------
  Гарантии, допуски и контроль качества
   -------------------------------------------------------------------------- */
.nm-parking-page__guarantee {
  background-color: var(--color-white);
  padding-top: 80px;
  padding-bottom: 81px;
}

.nm-parking-guarantee__container {
  display: flex;
  flex-direction: column;
  gap: 24px;

}

.nm-guarantee-content {
  display: flex;
  gap: 64px;
  align-items: flex-start;
}

.nm-guarantee-block {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  max-width: 24%;
}

.nm-guarantee-block img {
  border-radius: 100%;
}

.nm-guarantee__description {
  color: var(--color-text);
  font-style: normal;
  font-weight: 400;
  font-size: 22px;
  line-height: 32px;
}

.nm-guarantee__block-title {
  color: var(--color-orange);
  font-size: 24px;
  line-height: 120%;
  font-weight: 500;
}

.nm-guarantee__block-decription {
  color: var();
}


/* --------------------------------------------------------------------------
   ФОРМА / КОНТАКТЫ
   -------------------------------------------------------------------------- */

.nm-parking-contacts {
  padding-top: 179px;
  padding-bottom: 149px;
  background: url(./images/contact-bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.nm-parking-contacts__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 50%;
}

.nm-parking-contact-form {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 48px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
}

.nm-parking-contacts__text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.nm-parking-contact-form__title {
  font-weight: 500;
  font-size: 30px;
}

.nm-parking-contact-form__description {
  color: var(--color-text);
}

.nm-contact-form__fields {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.nm-contact-form__row {
  display: flex;
  gap: 32px;
}

.nm-contact-form__row--split>.nm-field {
  flex: 1 1 0;
}

.nm-parking-contacts .nm-field {
  flex: 1 1 auto;
  width: 100%;
  padding: 10px;
  font-family: inherit;
  font-size: 16px;
  line-height: 26px;
  color: var(--color-text);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--color-border);
  outline: none;
  transition: border-color .2s;
}

.nm-parking-contacts .nm-field::placeholder {
  color: var(--color-muted);
}

.nm-parking-contacts .nm-field:focus {
  border-bottom-color: var(--color-orange);
}

.nm-parking-contacts .nm-contact-form__checks {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.nm-parking-contacts .nm-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}

.nm-parking-contacts .nm-check input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.nm-parking-contacts .nm-check__box {
  width: 20px;
  height: 20px;
  flex: none;
  margin-top: 2px;
  background: var(--color-white);
  border: 1px solid var(--color-muted);
  border-radius: 3px;
  position: relative;
  transition: background-color .2s, border-color .2s;
}

.nm-parking-contacts .nm-check input:checked+.nm-check__box {
  background: var(--color-orange);
  border-color: var(--color-orange);
}

.nm-parking-contacts .nm-check input:checked+.nm-check__box::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid var(--color-white);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.nm-parking-contacts .nm-check__label {
  font-size: 15px;
  line-height: 22px;
  color: #6b6b6b;
}

.nm-parking-contacts .nm-check__label a {
  color: var(--color-orange);
  text-decoration: underline;
}

.nm-parking-contacts .nm-check__label a:hover {
  color: var(--color-orange);
  text-decoration: none;
}

.nm-parking-contacts .nm-contact-form__describe {
  border: 1px solid var(--color-border);
  width: 553px;
  height: 80px;
}

.nm-parking-contacts .nm-contact-form__submit {
  width: 300px;
  margin: auto;
}

/* --------------------------------------------------------------------------
   ПОДВАЛ
   -------------------------------------------------------------------------- */

.nm-footer {
  background: #2C2C2C;
  color: var(--color-white);
  padding: 64px 0;
}

.nm-footer__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 48px;
}

.nm-footer__col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.nm-footer__title {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 500;
  color: var(--color-white);
}

.nm-footer__col a {
  color: #cfcfcf;
  transition: color .2s;
}

.nm-footer__col a:hover {
  color: var(--color-orange);
}

.nm-footer__col p {
  color: #cfcfcf;
  line-height: 1.5;
}

.nm-footer__copy {
  margin-top: 16px;
  color: var(--color-muted);
  font-size: 14px;
}

/* --------------------------------------------------------------------------
   Адаптив
   -------------------------------------------------------------------------- */
.nm-mob-version {
  display: none;
}

.nm-mail-icom {
  width: 20px;
  height: 20px;
}

.nm-project-card__meta-item1 {
  position: relative;
  padding-left: 30px;
}

.nm-project-card__meta-item1::before {
  position: absolute;
  content: "";
  background: url(../verstkamain/images/proect-icon.svg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 24px;
  height: 24px;
  top: 0px;
  left: 0px;
}

.nm-project-card__meta-item2 {
  position: relative;
  padding-left: 30px;
}

.nm-project-card__meta-item2::before {
  position: absolute;
  content: "";
  background: url(../verstkamain/images/house-icon.svg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 24px;
  height: 24px;
  top: 0px;
  left: 0px;
}

@media (max-width: 1200px) {
  .nm-type-card {
    flex-basis: calc((100% - 3 * 24px) / 4);
  }

  .nm-project-card,
  .nm-partner-card {
    flex-basis: calc((100% - 32px) / 2);
  }

  .nm-advantages__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .nm-contacts__inner {
    grid-template-columns: 1fr;
  }

  .nm-header__subnav {
    display: none;
  }

  .nm-blog__grid {
    overflow: scroll;
    grid-template-columns: repeat(4, 1fr);
  }

  .nm-header__contacts {
    flex-wrap: wrap-reverse;
    justify-content: center;
  }

  .nm-header__right {
    align-items: center;
  }

  .nm-parking-type-projects__card {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .nm-parking-more__figure img {
    width: 100%;
    height: auto;
    max-height: none;
  }

  .nm-parking-type-projects__media {
    flex-basis: auto;
    width: 100%;
    max-width: 100%;
  }

  .nm-parking-type__slider {
    flex: 1 1 auto;
    width: auto;
    max-width: calc(100% - 96px);
  }

  .nm-parking-type__slide img {
    width: 100%;
    height: 350px;
    max-height: 350px;
    object-fit: contain;
    object-position: center;
  }

  .nm-parking-choice__blocks {
    gap: 30px;
  }

  .nm-parking-choice__block {
    width: 45%;
  }

  .nm-parking-choice__block img {
    width: 100%;
    height: auto;
  }
}

@media (max-width: 1100px) {
  .nm-parking-page .nm-hero__feature {
    width: 35%;
  }

  .nm-parking-page .nm-project-build__stats,
  .nm-prefab-block__inner,
  .nm-parking-type-projects__tabs-row {
    flex-direction: column;
  }

  .nm-project-build__stat-value > span:not(.nm-project-build__stat-suffix) {
    line-height: 100%;
  }

  .nm-parking-filters,
  .nm-guarantee-content {
    flex-wrap: wrap;
  }

  .nm-guarantee-content,
  .nm-prefab-block__inner,
  .nm-parking-type-projects__tabs-row {
    gap: 24px;
  }

  .nm-prefab-block__inner {
    align-items: center;
  }

  .nm-prefab-block__right {
    max-width: 80%;
  }

  .nm-parking-contacts__inner {
    max-width: 70%;
  }
}

@media (max-width: 900px) {
  .nm-parking-page .nm-hero__content {
    padding-top: 54px;
  }

  .nm-parking-page .nm-hero__title {
    font-size: 40px;
    line-height: 120%;
  }

  .nm-parking-page .nm-project-build__block {
    flex-direction: column;
  }

  .nm-parking-page .nm-project-build__stats {
    flex-direction: row;
  }

  .nm-parking-page .nm-project-build__block .nm-content-block {
    width: 100%;
  }

  .nm-prefab-block__right {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .nm-parking-page .nm-hero__content {
    flex-direction: column;
    gap: 24px;
    justify-content: flex-start;
  }

  .nm-parking-page .nm-hero__buttons {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }

  .nm-parking-page .nm-hero__title {
    font-size: 26px;
  }

  .nm-parking-page .nm-hero__text {
    max-width: 100%;
  }

  .nm-parking-page .nm-hero__feature {
    width: 100%;
  }

  .nm-parking-page .nm-hero__feature .nm-text-primary {
    font-size: 48px;
  }

  .nm-parking-page .nm-slider-arrows {
    display: none;
  }

  .nm-header__inner {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .nm-parking-page__projects .nm-projects-slider__track {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .nm-parking-choice__blocks {
    flex-direction: column;
  }

  .nm-parking-choice__block {
    width: 100%;
    align-items: center;
  }

  .nm-parking-choice__block img {
    width: 60%;
    height: auto;
  }

  .nm-guarantee-block {
    max-width: 48%;
  }

  .nm-parking-type-projects__info,
  .nm-parking-type-projects__media img {
    width: 100%;
  }

  .nm-parking-type-projects__media {
    max-width: 500px;
  }

  .nm-parking-type__slide img {
    width: 100%;
    height: 350px;
    max-height: 350px;
    object-fit: contain;
    object-position: center;
  }
}

@media (max-width: 640px) {
  .nm-parking-type-projects__tabs-group {
    flex-wrap: nowrap;
    overflow: visible;
    width: 100%;
    max-width: 100%;
  }

  .nm-parking-type-projects__tabs-label {
    flex: 0 0 auto;
  }

  .nm-parking-type-tabs {
    flex: 1 1 auto;
    min-width: 0;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    overscroll-behavior-x: contain;
  }

  .nm-parking-type-tabs::-webkit-scrollbar {
    display: none;
  }

  .nm-parking-type-tabs__btn {
    flex: 0 0 auto;
    scroll-snap-align: start;
  }

  .nm-parking-page .nm-hero__slide {
    min-height: 677px;
  }

  .nm-parking-page .nm-hero__text {
    gap: 24px;
  }

  .nm-parking-page .nm-hero__text .nm-hero__description {
    font-size: 18px;
  }

  .nm-parking-page .nm-project-build__block {
    padding: 64px 16px 70px 16px;
  }

  .nm-project-build__stat-value > span:not(.nm-project-build__stat-suffix) {
    font-size: 48px;
  }

  .nm-project-build__stat {
    gap: 24px;
  }

  .nm-parking-partners,
  .nm-parking-page__projects,
  .nm-parking-page__type,
  .nm-parking-page__more,
  .nm-parking-page__guarantee,
  .nm-parking-contacts, .nm-parking-page__prefab {
    padding-bottom: 40px;
  }

  .nm-parking-page__projects,
  .nm-parking-page__choice,
  .nm-parking-page__type,
  .nm-parking-page__more,
  .nm-parking-contacts {
    padding-top: 40px;
  }

  .nm-parking-tabs {
    flex-direction: column-reverse;
  }

  .nm-parking-project,
  .nm-parking-type-slider__arrow,
  .nm-parking-type__slider-content .nm-slider-arrow {
    display: none;
  }

  .nm-parking-filters {
    gap: 8px;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: flex-start;
    width: 100%;
    max-width: 100%;
    overflow: visible;
  }

  .nm-parking-buld-block,
  .nm-parking-size-block,
  .nm-parking-commers-block {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    width: 100%;
  }

  .nm-parking-filters__actions {
    width: 100%;
  }

  .nm-parking-filters__count {
    display: block;
  }

  .nm-parking-clean-filters {
    align-self: center;
  }

  .nm-parking-tabs__button {
    width: 100%;
    max-width: 100%;
    gap: 8px;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    overscroll-behavior-x: contain;
  }

  .nm-parking-tabs__button::-webkit-scrollbar {
    display: none;
  }

  .nm-parking-tabs__button .nm-parking-tabs__btn {
    flex: 0 0 auto;
    scroll-snap-align: start;
  }

  .nm-parking-choice__block {
    align-items: flex-start;
  }

  .nm-prefab-block__right {
    max-width: 100%;
  }

  .nm-prefab-block__image-wrap img,
  .nm-prefab-block__left {
    width: 100%;
  }

  .nm-prefab-block__inner {
    align-items: flex-start;
  }

  .nm-prefab-block__right {
    width: 100%;
    max-width: 100%;
    align-items: flex-start;
  }

  .nm-prefab-block__section-head {
    justify-content: flex-start;
    align-self: flex-start;
    width: 100%;
  }

  .nm-parking-page__choice {
    padding-bottom: 40px;
  }

  .nm-guarantee-content {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 24px;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
    overscroll-behavior-x: contain;
  }

  .nm-guarantee-content::-webkit-scrollbar {
    display: none;
  }

  .nm-guarantee-block {
    flex: 0 0 auto;
    max-width: none;
    width: 220px;
    scroll-snap-align: start;
  }

  .nm-guarantee__block-decription {
    width: 100%;
  }

  .nm-parking-contact-form {
    padding: 48px 16px;
  }

  .nm-parking-contacts__inner {
    max-width: 100%;
  }

  .nm-btn--330 {
    width: auto;
    min-width: 0;
    max-width: 100%;
    align-self: center;
  }

  .nm-parking-contacts .nm-contact-form__describe {
    width: 100%;
    max-width: 100%;
  }

  .nm-parking-contacts .nm-contact-form__submit {
    width: 100%;
    max-width: 100%;
  }

  .nm-header__nav,
  .nm-header__callback,
  .nm-icon-man-block {
    display: none;
  }

  .nm-mob-version {
    display: block;
  }

  .nm-header__inner {
    min-height: 60px;
    box-sizing: border-box;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .nm-hf_240,
  .nm-hf_616 {
    flex-basis: 100%;
  }

  .nm-desk-version,
  .nm-header__email {
    display: none;
  }

  .nm-section-desc,
  .nm-blog-card__title,
  .nm-parking-choice__description {
    font-size: 18px;
    max-width: 100%;
  }

  .nm-section-title {
    font-size: 24px;
  }

  .nm-parking-page .nm-hero-container {
    padding: 54px 16px;
  }

  .nm-parking-page .nm-hero__bottom {
    bottom: 65px;
  }

  .nm-parking-type-projects__title {
    font-family: var(--font);
    font-weight: 500;
    font-style: normal;
    font-size: 24px;
    line-height: 30px;
    letter-spacing: 0.01em;
    text-box: trim-both cap alphabetic;
  }

  .nm-parking-more__title {
    font-size: 24px;
    line-height: 30px;
  }

  .nm-parking-more__content {
    padding: 24px;
  }

  .nm-parking-more__lead {
    font-size: 16px;
    line-height: 22px;
  }

  .nm-parking-more__media {
    flex-direction: column;
    gap: 24px;
  }

  .nm-parking-more__figure {
    flex: 1 1 100%;
    min-width: 0;
    width: 100%;
  }

  .nm-parking-more__figure-inner {
    width: 100%;
  }

  .nm-parking-more__figure img {
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
  }

  .nm-parking-more__caption-title {
    font-size: 16px;
    line-height: 22px;
  }

  .nm-parking-more__caption-sub {
    font-size: 14px;
    line-height: 20px;
  }

  .nm-parking-type-projects__subtitle {
    font-size: 22px;
  }

  .nm-parking-type-projects__props {
    font-size: 16px;
    line-height: 20px;
    min-height: 20px;
  }

  .nm-parking-type-projects__params li {
    display: block;
  }

  .nm-parking-type-projects__params li span {
    display: inline;
    min-width: 0;
    max-width: none;
    overflow-wrap: anywhere;
    word-break: break-word;
    white-space: normal;
  }

  .nm-parking-type-projects__params li span:first-child::after {
    content: ': ';
  }

  .nm-parking-page .nm-hero__buttons {
    width: 100%;
  }

  .nm-parking-page .nm-hero__buttons .nm-btn--outline {
    padding: 10px;
    height: 60px;
    min-height: 60px;
    box-sizing: border-box;
    font-family: var(--font);
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0.01em;
    text-box: trim-both cap alphabetic;
  }

  .nm-project-build__stats,
  .nm-prefab-block__gallery {
    gap: 24px;
  }


  .nm-parking-partners {
    gap: 32px;
  }

  .nm-parking-partners,
  .nm-parking-projects,
  .nm-parking-choice,
  .nm-parking-type-projects__content {
    padding-left: 16px;
    padding-right: 16px;
  }

  .nm-parking-type-projects__content {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .nm-parking-tabs__button {
    gap: 8px;
  }

  .nm-parking-tabs__btn,
  .nm-parking-filter__btn,
  .nm-parking-type-tabs__btn,
  .nm-parking-type-projects__tabs-label,
  .nm-parking-clean-filters,
  .nm-parking-filters__count {
    font-size: 15px;
  }

  .nm-parking-tabs__btn {
    padding: 0 15px;
  }

  .nm-parking-buld-block,
  .nm-parking-size-block {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
  }

  .nm-parking-tabs {
    align-items: flex-start;
  }

  .nm-parking-project-card__body {
    padding: 24px 16px 16px;
  }

  .nm-parking-project-card__title {
    height: 100%;
    font-size: 18px;
  }

  .nm-parking-project-card__specs {
    padding: 0px;
    font-size: 14px;
  }

  .nm-parking-choice__text {
    padding-bottom: 30px;
  }

  .nm-parking-choice__block img {
    width: 100%;
    height: auto;
  }

  .nm-parking-choice__block {
    gap: 16px;
  }

  .nm-parking-choice__block-title {
    font-size: 22px;
  }

  .nm-parking-type-projects__media {
    width: 100%;
    max-width: 100%;
  }

  .nm-parking-type__slider-content .nm-slider-arrow {
    display: none;
  }

  .nm-parking-type__slider {
    flex: 1 1 auto;
    width: 100%;
    max-width: 100%;
  }

  .nm-parking-type__slide img {
    width: 100%;
    height: auto;
    max-height: 350px;
    object-fit: contain;
    object-position: center;
  }

  .nm-prefab-block__gallery {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    align-self: center;
    width: 65%;
  }

  .nm-prefab-block__gallery-img {
    width: 100%;
  }

  .nm-prefab-content.nm-is-active {
    align-items: flex-start;
  }

  .nm-prefab-block__list,
  .nm-prefab-block__list1,
  .nm-prefab-block__list4,
  .nm-prefab-block__list5,
  .nm-prefab-block__list6 {
    width: 100%;
    align-self: stretch;
    align-items: flex-start;
  }

  .nm-prefab-block__list1 {
    flex-direction: column;
    gap: 30px;
  }

  .nm-prefab-block__list1 .nm-prefab-block__item,
  .nm-prefab-block__gallery3 .nm-prefab-block__img-text {
    width: 100%;
  }
}

@media (max-width: 550px) {
  .nm-parking-project-card__img {
    height: 215px;
    width: 100%;
  }

  .nm-btn--lg,
  .nm-wide-card__body a {
    width: 100%;
  }

  .nm-parking-page .nm-hero__buttons .nm-btn--lg {
    width: auto;
    max-width: 100%;
  }

  .nm-parking-type-projects__params li {
    display: block;
  }

  .nm-parking-type-projects__params li span {
    display: inline;
    min-width: 0;
    max-width: none;
    overflow-wrap: anywhere;
    word-break: break-word;
    white-space: normal;
  }

  .nm-parking-type-projects__params li span:first-child::after {
    content: ': ';
  }

  .nm-prefab-block__gallery {
    width: 80%;
  }
  .nm-prefab-block__item::before {
    width: 35px;
    height: 35px;
  }
  .nm-prefab-block__item {
    padding-left: 45px;
  }
}

@media (max-width: 450px) {
  .nm-prefab-block__gallery {
    width: 100%;
  }
}

/* --------------------------------------------------------------------------
   Лайтбокс типовых решений
   -------------------------------------------------------------------------- */
.nm-typical-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.nm-typical-lightbox[hidden] {
  display: none;
}

.nm-typical-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 20, 20, 0.72);
}

.nm-typical-lightbox__dialog {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: min(1100px, 100%);
  max-height: calc(100vh - 48px);
  padding: 64px;
  background: var(--color-white);
  box-sizing: border-box;
  outline: none;
  overflow: hidden;
}

.nm-typical-lightbox__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  background: transparent;
  color: var(--color-text);
  cursor: pointer;
}

.nm-typical-lightbox__close:hover {
  color: var(--color-orange);
}

.nm-typical-lightbox__title {
  flex: 0 0 auto;
  margin: 0;
  padding-right: 48px;
  text-align: left;
  font-family: inherit;
  font-size: 28px;
  line-height: 130%;
  font-weight: 500;
  color: var(--color-text);
}

.nm-typical-lightbox__main {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
}

.nm-typical-lightbox__stage {
  flex: 1 1 auto;
  min-width: 0;
  min-height: 0;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #f5f5f5;
}

.nm-typical-lightbox__image {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
}

.nm-typical-lightbox__nav {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  color: var(--color-purple);
  cursor: pointer;
}

.nm-typical-lightbox__nav:hover {
  border: none;
  background: transparent;
  color: var(--color-purple);
  opacity: 0.85;
}

.nm-typical-lightbox__nav:disabled {
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
}

.nm-typical-lightbox__nav svg {
  width: 48px;
  height: 48px;
}

.nm-typical-lightbox__thumbs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  flex: 0 0 auto;
  gap: 10px;
  width: 100%;
  padding: 4px 2px;
}

.nm-typical-lightbox__thumb {
  flex: 0 0 auto;
  width: 96px;
  height: 64px;
  padding: 0;
  border: 2px solid transparent;
  background: #f5f5f5;
  cursor: pointer;
  box-sizing: border-box;
}

.nm-typical-lightbox__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nm-typical-lightbox__thumb.nm-is-active {
  border-color: var(--color-orange);
}

body.nm-is-typical-lightbox-open {
  overflow: hidden;
}

@media (max-width: 768px) {
  .nm-typical-lightbox {
    padding: 12px;
  }

  .nm-typical-lightbox__dialog {
    padding: 32px 16px;
    gap: 24px;
  }

  .nm-typical-lightbox__nav {
    display: none;
  }

  .nm-typical-lightbox__title {
    font-size: 22px;
  }

  .nm-typical-lightbox__thumb {
    width: 72px;
    height: 52px;
  }
}