/* ================================
   ND COMMON
   ================================ */
.nd-page {
  --nd-blue: #455fff;
  --nd-red: #ff3d3d;
  --nd-dark: #282828;
  --nd-gray: #f0f0f0;
  --nd-white: #ffffff;
  --nd-radius: 10px;
  font-family: 'Raleway', sans-serif;
  color: var(--nd-dark);
  font-variant-numeric: lining-nums proportional-nums;

}

.nd-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  padding: 0 30px;
  border-radius: var(--nd-radius);
  font-size: 20px;
  font-weight: 500;
  text-decoration: none;
  transition: opacity .2s;
  white-space: nowrap;
}
.nd-btn:hover { opacity: .85; }
.nd-btn--red  { background: var(--nd-red);  color: var(--nd-white); }
.nd-btn--blue { background: var(--nd-blue); color: var(--nd-white); }

.nd-hero__bottom a:hover{ color: var(--nd-white) !important;}



#breadcrumbs {
    display: none !important;
}

/* ================================
   HERO
   ================================ */
.nd-hero { padding: 150px 0 ; }

/* Верхняя часть — сетка */
.nd-hero__top {
  display: grid;
  grid-template-columns: 444px 1fr;
  grid-template-rows: 570px;
  margin: 0 auto;
  max-width: 1200px;
  gap:73px
}

/* Левая колонка */
.nd-hero__left {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-right: 30px;
  padding-top: 60px;
}
.nd-hero__title {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
}
.nd-hero__subtitle {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  margin: 0;
}

/* Правая колонка */
.nd-hero__right {
  display: flex;
  flex-direction: row;
  overflow: hidden;
 
  position: relative;

}

/* Promo блок */
.nd-hero__promo {
  
  max-width:580px;
  max-height:380px;
  flex-shrink: 0;
  overflow: hidden;
    position: absolute;
  left: 0;
  top: 60px;
  bottom: 0;
  width: 100%;
  z-index: 2;
  background: transparent;
}
.nd-hero__promo-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}




.nd-hero__promo-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 2;
  background: var(--nd-white);
  border-radius: var(--nd-radius);
  padding: 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 133px;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.20)) drop-shadow(0 9px 9px rgba(0, 0, 0, 0.17)) drop-shadow(0 21px 13px rgba(0, 0, 0, 0.10)) drop-shadow(0 38px 15px rgba(0, 0, 0, 0.03)) drop-shadow(0 59px 16px rgba(0, 0, 0, 0.00));
}

.nd-percent {display: flex;  flex-direction: row; align-items: flex-end; justify-content: space-between; } 


.nd-hero__promo-icon { display: flex;  }
.nd-hero__promo-icon svg { background-color:#FF3D3D; border-radius: 3.694px; padding:4px; width:24px; height:24px;}
.nd-hero__promo-label {
  font-size: 18px;
  font-weight: 500;
  line-height:0.6;
  color: var(--nd-dark);
}
.nd-hero__promo-percent {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.1;
  color: var(--nd-dark);
  
}
.nd-hero__promo-date {
  font-size: 17px;
  font-weight: 500;
  color: var(--nd-dark);
  line-height: 1.1;
}

/* Фото с оверлеем */
.nd-hero__bg {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 580px;
  overflow: hidden;
  background: var(--nd-blue);
}
.nd-hero__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.nd-hero__bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(69, 95, 255, 0.55);
}

/* Вертикальный текст */
.nd-hero__sidebar {
  position: absolute;
  right: 0;
  top: 73px;
  bottom: 0;
  z-index: 2;
  display: flex;
  
  width: 55px;
}
.nd-hero__sidebar span {
  writing-mode: vertical-rl;

  font-size: 18px;
  font-weight: 500;
  color: #fff;
  opacity: 0.8;
  white-space: nowrap;
}

/* Нижняя плашка */
.nd-hero__bottom {
  max-width: 1200px;
  margin: 0 auto;
  background: var(--nd-white);
  border-radius: var(--nd-radius);
  box-shadow: 0 14px 64px -4px rgba(24,39,75,.12), 0 8px 22px -6px rgba(24,39,75,.12);
  position: relative;
  z-index: 3;
  transform: translateY(-50%);
}
.nd-hero__bottom-inner {
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 0 30px;
  height: 120px;
  overflow: hidden;
}
.nd-hero__badges {
  display: flex;
  gap: 60px;
}
.nd-hero__badge {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
}
.nd-hero__badge svg { flex-shrink: 0; }

/* ================================
   RESPONSIVE HERO
   ================================ */
@media (max-width: 1280px) {
   .nd-hero { padding: 150px 40px; }
  .nd-hero__top { gap: 40px; grid-template-columns: 406px 1fr;}
  .nd-hero__title { font-size: 42px; }
  .nd-hero__bg { width: 460px;}
  .nd-hero__promo  { max-width: 460px;}
  .nd-hero__bottom-inner {gap: 40px;}
  .nd-hero__badges { gap: 40px;}
  
}

@media (max-width: 1024px) {
  .nd-hero__top {  grid-template-columns: 1fr; grid-template-rows: auto 500px;  padding-left: 0;}
   .nd-hero__subtitle { font-size: 18px; }
    .nd-hero__bottom-inner {flex-wrap: wrap; height: auto; padding: 20px; gap: 20px; flex-direction: column-reverse; align-items: flex-start;}
  .nd-hero__left { padding: 30px 20px; }
  .nd-hero__bottom { transform: none; margin-top: 0; border-radius: 0; box-shadow: 0 4px 20px rgba(0,0,0,.08); }
  .nd-hero__sidebar span {  font-size: 16px;}
}

  @media (max-width: 767px){ 
    .nd-hero {padding: 120px 20px;}
}

  @media (max-width: 600px){ 
    .nd-hero {padding: 120px 40px;}
      .nd-hero__bg { width: 340px;}
  .nd-hero__promo  { max-width: 340px;}
}


@media (max-width: 480px) {
    .nd-hero {padding: 100px 10px;}
  .nd-hero__top { grid-template-rows: auto 248px; gap:30px; }
   .nd-hero__title { font-size: 34px; }
   .nd-hero__subtitle { font-size: 16px; }
    .nd-hero__left { padding:0px; }
 .nd-hero__right {display: none;}
 .nd-hero__bottom-inner {display: none;}
}



/* ================================
   скидка -моб
   ================================ */

.nd-mob-promo { display: none; }

@media (max-width: 480px) {
  .nd-mob-promo { display: flex; flex-direction: column;}
  
 .nd-mob-promo .nd-btn--red{font-size:14px; margin-top: 20px;}
   .nd-mob-promo .nd-btn {width:100%;}
  
}





._8 {
  display: flex;
  align-items: center;
  gap: 10px;

  position: relative;
  overflow: hidden;
}


.group-50 {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;
 width: 36px;
height: 36px;
border-radius: 5px;
background: #FF3D3D;

}

.group-51 {
  display: flex;
  align-items: center;
  gap: 8px;
 
  background: var(--nd-blue);
  border-radius: 5px;
  padding: 4px 12px;
}
._60 {
  font-family: 'Raleway', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--nd-white);
  line-height: 1;
}
._30-11 {
  font-family: 'Raleway', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: var(--nd-white);
  line-height: 1.2;
}



.nd-mob-badges {
  position: relative;
  margin-top:80px;
}
.nd-mob-badges__bg {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom:0;
  background: var(--nd-blue);
  overflow: hidden;
  margin: 0 -10px;
}
.nd-mob-badges__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url('/wp-content/uploads/2026/04/freepik__-__40212-1.png') center/cover no-repeat;

}
.nd-mob-badges__grid {
  position: relative;
  z-index: 1;
    display: flex;
  gap: 12px;
  margin: -50px 0;
}
.nd-mob-badges__col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.nd-mob-badges__col--offset {
  margin-top: 20px;
}

.nd-mob-badge-card {
  background: var(--nd-white);
  border-radius: var(--nd-radius);
  box-shadow: 0 14px 64px -4px rgba(24,39,75,.12), 0 8px 22px -6px rgba(24,39,75,.12);
  height: 158px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 29px 17px 29px 16px;
  font-size: 12px;
  font-weight: 500;
  text-align: center;
  line-height: 1.3;
  overflow: hidden;
}
.nd-mob-badge-card__icon {
  width: 50px;
  height: 50px;
  object-fit: contain;
}
.nd-mob-badge-card--photo {
  padding: 0;
}
.nd-mob-badge-card__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ----------------------------------------*/

/* SECTION COMMON */
.nd-section { padding: 0; }
.nd-container { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
.nd-section__header { display: flex; align-items: center; gap: 15px; margin-bottom: 80px; padding-left:26px;}
.nd-line {flex-grow: 1;}
.nd-section__header svg {width:100%; max-width:766px;}
.nd-dot { display: block; width: 18px; height: 18px; border-radius: 50%; background: var(--nd-blue); flex-shrink: 0; }
.nd-section__title { font-size: 42px; font-weight: 600; line-height: 1.1; margin: 0; margin-right: 38px;}

/* ПРОДУКЦИЯ */
.nd-products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.nd-product-card {
  position: relative;
  display: block;
  height: 260px;
  border-radius: var(--nd-radius);
  overflow: hidden;
  background: var(--nd-gray);
  text-decoration: none;
  transition: transform .2s;
}
.nd-product-card:hover { transform: translateY(-4px); }
.nd-product-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.nd-product-card__label {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background: var(--nd-blue);
  border-radius: 8px;
  padding: 0 15px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: calc(100% - 30px);
  color: var(--nd-white);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.1;
  width:280px;
}


@media (max-width: 1024px) {
  .nd-products__grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
.nd-section__header {  margin-bottom: 80px; padding-left:20px;}
}



@media (max-width: 767px) {
    .nd-line {display:none;}
.nd-container { padding: 0 20px; }
.nd-section__header {  margin-bottom: 50px; padding-left:20px;}
.nd-product-card__label { width: calc(100% - 30px);}
.nd-product-card svg {width:17px;}
}

/* Мобильный */
@media (max-width: 480px) {
 .nd-container { padding: 60px 10px; }
 .nd-section__header {  margin-bottom: 50px; margin-top: 60px; padding-left:0px;}
  .nd-product-card { height: 220px; }
  .nd-product-card__label { height: 45px; font-size: 12px; padding: 0 11px; border-radius: 7px; }
  .nd-section__title { font-size: 36px; }
}



/* ================================
   CTA РАССРОЧКА
   ================================ */
.nd-cta { padding: 180px 0 ; }

.nd-cta__wrap {
  position: relative;
  border-radius: var(--nd-radius);
  height: 614px;
  overflow: hidden;
  display: flex;
}
.nd-cta__bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Колонка формы */
.nd-cta__form-col {
  position: relative;
  z-index: 2;
  width: 506px;
  flex-shrink: 0;
  
  padding: 70px 80px 50px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.nd-cta__title {
  font-size: 42px;
  font-weight: 700;
  color: var(--nd-white);
  line-height: 1.1;
  margin: 0;
}

.nd-cta__title-dot {
  display: inline-block;
  width: 14px;
  height: 14px;
  background: var(--nd-red);
  border-radius: 50%;
  margin-left: 4px;
  vertical-align: super;
   transform: translateY(-10px);
}

.nd-cta__subtitle {
  font-size: 16px;
  font-weight: 500;
  color: var(--nd-white);
  margin: 0;
  line-height: 1.4;
}

/* ================================
   CTA ФОРМА — CF7 override
   ================================ */
.nd-cta__form-col .wpcf7 { width: 100%; }
.nd-cta__form-col .wpcf7-form { display: flex; flex-direction: column; gap: 12px; }
.nd-cta__form-col .wpcf7-form p { margin: 0; display: flex; flex-direction: column; gap: 12px; }
.nd-cta__form-col .wpcf7-form br { display: none; }

/* Инпуты */
.nd-cta__form-col .wpcf7-form-control-wrap { display: block; }
.nd-cta__form-col .wpcf7-text,
.nd-cta__form-col .wpcf7-tel {
  width: 100%;
  height: 60px;
  border-radius: var(--nd-radius);
  border: none;
  padding: 0 20px;
  font-size: 16px;
  font-family: 'Raleway', sans-serif;
  color: #bfbfbf;
  outline: none;
  box-sizing: border-box;
}

/* Чекбокс */
.nd-cta__form-col .wpcf7-acceptance { display: flex; justify-content: center;}
.nd-cta__form-col .wpcf7-list-item { margin: 0; max-width: 200px; }
.nd-cta__form-col .wpcf7-list-item label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  color: var(--nd-white);
}  
 .nd-cta__form-col .wpcf7-acceptance .wpcf7-list-item-label {color: #ffffff !important; }
  
  
.nd-cta__form-col .wpcf7-list-item input[type="checkbox"] {
  width: 24px;
  height: 24px;
  min-width: 24px;
  border: 2px solid var(--nd-white);
  border-radius: 5px;
  appearance: none;
  background: transparent;
  cursor: pointer;
  margin: 0;
}
.nd-cta__form-col .wpcf7-list-item-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--nd-white);
  text-decoration: underline;
  line-height: 1.3;
}
.nd-cta__form-col .acceptance-error-msg {
  font-size: 12px;
  color: var(--nd-red);
  margin-top: 4px;
}


.nd-cta__form-col .wpcf7-list-item input[type="checkbox"] {
  width: 24px;
  height: 24px;
  min-width: 24px;
  border: 2px solid var(--nd-white);
  border-radius: 5px;
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  cursor: pointer;
  margin: 0;
  position: relative;
  flex-shrink: 0;
}
.nd-cta__form-col .wpcf7-list-item input[type="checkbox"]:checked {
  background: var(--nd-white);
}
.nd-cta__form-col .wpcf7-list-item input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 2px;
  width: 10px;
  height: 6px;
  border-left: 2px solid var(--nd-blue);
  border-bottom: 2px solid var(--nd-blue);
  transform: rotate(-45deg);
}



/* Кнопка */
.nd-cta__form-col .wpcf7-submit {
  width: 100%;
  height: 60px;
  background: var(--nd-red);
  color: var(--nd-white);
  border: none;
  border-radius: var(--nd-radius);
  font-size: 20px;
  font-weight: 500;
  font-family: 'Raleway', sans-serif;
  cursor: pointer;
  transition: opacity .2s;
}
.nd-cta__form-col .wpcf7-submit:hover { opacity: .85; }
.nd-cta__form-col .wpcf7-submit:disabled { opacity: .6; cursor: default; }

/* Спиннер и ответ */
.nd-cta__form-col .wpcf7-spinner { display: none; }
.nd-cta__form-col .wpcf7-response-output {
  margin: 0;
  padding: 8px 12px;
  font-size: 13px;
  border-radius: 6px;
  border: none;
}




/* Фото по центру */
.nd-cta__photo {
  position: relative;
  z-index: 1;
  flex: 1;
}
.nd-cta__photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* Сайдбар с иконкой */
.nd-cta__sidebar {
  position: relative;
  z-index: 2;
  width: 70px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 54px;
  padding-right:54px;
  align-items: center;

    flex-direction: column;
    gap: 24px;
}

.nd-cta-line{flex-grow: 1;} 
.nd-cta-line svg { heght:100%;}


/* Карточки оплаты */
.nd-payment__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-top: 15px;
  transform: translateY(-50%);
  max-width:1085px;
      justify-self: center;
    width: 100%;
      margin-left: auto;
  margin-right: auto;
}
.nd-payment__card {
  background: var(--nd-white);
  border-radius: var(--nd-radius);
  box-shadow: 0 2px 4px rgba(0,0,0,.05), 0 8px 8px rgba(0,0,0,.04), 0 18px 11px rgba(0,0,0,.03);
  height: 80px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 20px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
}
.nd-payment__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nd-cta__bg-img--mob { display: none; }

@media (max-width: 900px) {
  .nd-cta__bg-img--desk { display: none; }
  .nd-cta__bg-img--mob { display: block; }
}




@media (max-width: 1024px){
.nd-cta__bg-img { object-position: 50% center;}
.nd-cta__form-col .wpcf7-list-item {  max-width:100%; }

}


@media (max-width: 900px) {
  .nd-cta__wrap { height: auto; flex-direction: column; }
  .nd-cta__form-col { width: 100%; padding: 40px 30px; background: rgba(0, 0, 0, 0.20);}
  .nd-cta__photo { height: 300px; }
  .nd-cta__sidebar { display: none; }
  .nd-payment__grid { grid-template-columns: repeat(2, 1fr); transform: translateY(0%); }
}

@media (max-width: 767px) {
.nd-cta { padding: 120px 0 ; }
}




@media (max-width: 480px) {
  .nd-cta__title { font-size: 28px; }
  .nd-payment__grid { grid-template-columns: 1fr; }
  .nd-cta { padding:  0 ; }
}




/* ГАЛЕРЕЯ */


.nd-gallery__masonry {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 10px;
  scrollbar-width: none;
}
.nd-gallery__masonry::-webkit-scrollbar { display: none; }

.nd-gallery__col {
  flex-shrink: 0;
  width: 387px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.nd-gallery__item {
  position: relative;
  border-radius: var(--nd-radius);
  overflow: hidden;
  background: var(--nd-gray);
}
.nd-gallery__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.nd-gallery__caption {
  position: absolute;
  bottom: 15px;
  left: 15px;
  right: 15px;
  background: var(--nd-blue);
  border-radius: 8px;
  padding: 0 15px;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--nd-white);
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  line-height: 1.3;
}

.nd-gallery__masonry {
  cursor: grab;
}
.nd-gallery__masonry:active {
  cursor: grabbing;
}


@media (max-width: 480px) {
.nd-gallery__col {  width: 260px;}
.nd-gallery .nd-container { padding:0 10px;}

}




/* О НАС */

.nd-about .nd-container { padding-top:120px;}

.nd-about__inner {
  display: grid;
  grid-template-columns: 48.4% 1fr;
  gap: 40px;
  align-items: start;
}

/* Текст */
.nd-about__text {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.25;
  color: var(--nd-dark);
}
.nd-about__text strong,
.nd-about__text b {
  color: var(--nd-blue);
  font-weight: 700;
}
.nd-about__text a {
  color: var(--nd-blue);
  text-decoration: underline;
}


.nd-about__text ul {
  list-style-type: disc;
  padding-left: 0.4em !important;
  margin: 8px ;
}
.nd-about__text ul li::before {
  content: '•';
 
  margin-right: 8px;
  color: var(--nd-dark);
}


.nd-about__text ul li {
  padding-left: 0.7em;
  text-indent: -0.7em;
}
.nd-about__text li { margin-bottom: 4px; }
.nd-about__text p  { margin: 0 0 12px; }

/* Медиа блок */
.nd-about__media {
  position: relative;
}
.nd-about__img {
  width: 100%;
  height: 699px;
  object-fit: cover;
  border-radius: var(--nd-radius);
  display: block;
}

/* Логотип поверх фото */
.nd-about__logo-wrap {
  position: absolute;
  top: -50px;
  right: 20px;
  background: var(--nd-white);
  border-radius: var(--nd-radius);
  padding: 20px;
  width: 145px;
  height: 158px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 64px -4px rgba(24,39,75,.12), 0 8px 22px -6px rgba(24,39,75,.12);
}
.nd-about__logo {
  max-width: 102px;
  height: auto;
}

/* Responsive */
@media (max-width: 1024px) {
  .nd-about__inner { grid-template-columns: 1fr 1fr; }
  .nd-about__img   { height: 500px; }
  .nd-about__text {font-size: 18px;}
}
@media (max-width: 768px) {
  .nd-about__inner { grid-template-columns: 1fr; }
  .nd-about__img   { height: 400px; }
  .nd-about__logo-wrap {  width: 100px; height: 110px; }
  .nd-about__logo {max-width: 75px;}
}
@media (max-width: 480px) {
  .nd-about__text  { font-size: 16px; }
  .nd-about__img   { height: 350px; }
  .nd-about .nd-container { padding:0 10px;}
}


/* ПРЕИМУЩЕСТВА */
.nd-advantages { padding: 75px 0 80px; }

.nd-advantages__label {
  text-align: center;
  font-size: 48px;
  font-weight: 700;
  text-transform: uppercase;
  color: #000;
  opacity: .2;
  margin: 0 0 0;
  line-height: 1.1;
  white-space: nowrap;
}
.nd-advantages__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: -10px;
}
.nd-advantages__card {
  background: var(--nd-white);
  border-radius: var(--nd-radius);
  box-shadow: 0 2px 4px rgba(0,0,0,.05), 0 8px 8px rgba(0,0,0,.04), 0 18px 11px rgba(0,0,0,.03);
  min-height: 130px;
  display: flex;
  
  gap: 0;
  padding: 16px 20px 16px 16px;
  position: relative;
}
.nd-advantages__num {
  font-size: 48px;
  font-weight: 700;
  color: var(--nd-blue);
  line-height: 1;
  width: 63px;
  flex-shrink: 0;
  text-align: center;
}
.nd-advantages__body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top:13px;
}
.nd-advantages__body strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
}
.nd-advantages__body p {
  font-size: 14px;
  font-weight: 500;
  margin: 0;
  line-height: 1.1;
}


@media (max-width: 1280px) {

.nd-advantages__label { font-size: 42px;}
.nd-advantages__grid { margin-top: -8px;}


}

@media (max-width: 1140px) {

.nd-advantages__label { font-size: 36px;}
.nd-advantages__grid { margin-top: -6px;}


}


@media (max-width: 990px) {
  .nd-advantages__grid  { grid-template-columns: 1fr; }
  .nd-advantages__label { font-size: 28px; white-space: normal; text-align: center; }
}

@media (max-width: 480px) {

.nd-advantages { padding: 60px 0 ; }

}
/* SEO */
.nd-seo { padding: 0px 0 80px; }

.nd-seo__text {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.25;
  color: #7d7d7d;
  margin-bottom: 50px;
  
}
.nd-seo__text p  { margin: 0 0 8px; }
.nd-seo__text ul {
  list-style: none;
  padding-left: 0;
  margin: 4px 0 8px;
}
.nd-seo__text ul li {
  padding-left: 1em;
  text-indent: -1em;
}
.nd-seo__text ul li::before {
  content: '·';
  margin-right: 6px;
}
.nd-seo__text a,
.nd-seo__text strong {
  color: var(--nd-blue);
  text-decoration: underline;
  font-weight: 500;
}

.nd-seo__btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  background: var(--nd-blue);
  color: var(--nd-white);
  border-radius: 8px;
  padding: 0 15px;
  height: 60px;
  width: 320px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: opacity .2s;
}
.nd-seo__btn:hover { opacity: 0.85; color:#fff !important;}




@media (max-width: 480px) {
  .nd-seo .nd-container { padding:0 10px;}
   .nd-about .nd-container { padding:0 10px;}
}


 
 
 .nd-btn--red:hover { color:#fff !important;}
 
/* ТЕКСТ + СЛАЙДЕР */
.nd-textslider__inner {
  display: grid;
  grid-template-columns: 580px 1fr;
  gap: 40px;
  align-items: start;
}
.nd-textslider__left {
  display: flex;
  flex-direction: column;
  gap: 30px;
  justify-content: space-between;
    height: 100%;
}
}
.nd-textslider__text {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.25;
  color: var(--nd-dark);
}


.nd-textslider__text p {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.25;
  color: var(--nd-dark);
}

.nd-about__text--cat p{
      font-size: 20px;
  font-weight: 500;
  line-height: 1.25;
  color: var(--nd-dark);
    
}

.nd-textslider__text ul {
  list-style: none;
  padding-left: 8px;
  margin: 8px 0;
}
.nd-textslider__text ul li {
  padding-left: 0.8em;
  text-indent: -0.8em;
}
.nd-textslider__text ul li::before {
  content: '•';
 
  margin-right: 8px;
}
.nd-textslider__bottom {
  display: flex;
  align-items: center;
  gap: 20px;
}
.nd-textslider__price {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.nd-textslider__price-cur {
  font-size: 24px;
  font-weight: 700;
  color: var(--nd-dark);
}
.nd-textslider__price-old {
  font-size: 20px;
  font-weight: 500;
  color: #bcbcbc;
  text-decoration: line-through;
}

/* Слайдер */
.nd-textslider__right {
  position: relative;
}
.nd-textslider__slider {
  border-radius: var(--nd-radius);
  overflow: hidden;
  position: relative;
  min-height: 449px;
  height:100%;
  background: var(--nd-gray);
}
.nd-textslider__track {
  display: flex;
  height: 100%;
  transition: transform .4s ease;
}
.nd-textslider__slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
}
.nd-textslider__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.nd-textslider__controls {
  position: absolute;
  bottom: 15px;
  left: 15px;
  
  display: flex;
  gap: 30px;
}
.nd-textslider__prev,
.nd-textslider__next {
  width: 57px;
  height: 57px;
  background: var(--nd-blue);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .2s;
}
.nd-textslider__prev:hover,
.nd-textslider__next:hover { opacity: .8; }

/* Логотип поверх */
.nd-textslider__logo {
  position: absolute;
  top: -50px;
  right: 15px;
  background: var(--nd-white);
  border-radius: var(--nd-radius);
  padding: 16px 20px;
  width: 145px;
  height: 158px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 64px -4px rgba(24,39,75,.12);
  z-index: 2;
}
.nd-textslider__logo img { max-width: 102px; height: auto; }

.nd-textslider__inner { margin-bottom:60px;}

@media (max-width: 1024px) {
  .nd-textslider__inner { grid-template-columns: 1fr 1fr; margin-bottom:30px; }
  .nd-textslider__text { font-size: 18px;}
  .nd-textslider__controls { gap: 20px;}
  .nd-textslider__text p { font-size: 18px;}
  .nd-about__text--cat p { font-size: 18px;}
}
@media (max-width: 768px) {
  .nd-textslider__inner { grid-template-columns: 1fr; }
  .nd-textslider__slider { min-height: 350px; }

  .nd-textslider__bottom { flex-wrap: wrap; }
}
 
 
@media (max-width: 480px) {
.nd-textslider__inner { gap:60px; margin-bottom: -60px; }
 .nd-textslider__text { font-size: 16px;}
 .nd-textslider__text p { font-size: 16px;}
 .nd-about__text--cat p { font-size: 16px;}
.nd-textslider__logo img { max-width: 75px;  }
.nd-textslider__logo {width: 120px; height: 133px;  top: -40px; right: 10px;}
 .nd-textslider__controls { gap: 10px;}
 
}
  
 
 .nd-textslider__inner--reverse {
  grid-template-columns: 1fr 580px;
}
.nd-textslider__inner--reverse .nd-textslider__left {
  order: 2;
}
.nd-textslider__inner--reverse .nd-textslider__right {
  order: 1;
}

@media (max-width: 1024px) {
  .nd-textslider__inner--reverse {
    grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nd-textslider__inner--reverse .nd-textslider__left,
  .nd-textslider__inner--reverse .nd-textslider__right { order: unset;}
    .nd-textslider__inner--reverse { display: flex; flex-direction: column; gap: 60px;}
  
}

@media (max-width: 480px) {
    .nd-textslider__inner--reverse { margin-bottom: 0px; }
  
}

.nd-textslider__inner--reverse .nd-textslider__logo {
  right: auto;
  left: 15px;
}

.nd-textslider__controls--right {
  left: auto;
  right: 15px;
}

.section-divider {width:100%; height:180px;}
@media (max-width: 1024px) {
.section-divider {width:100%; height:150px;}
}
@media (max-width: 480px) {
.section-divider {width:100%; height:0px;}
}

.nd-about__text--cat{ display:flex; flex-direction: column; align-items: flex-start; justify-content: space-between; height: 100%;}

.nd-about__img--cat{height:449px; border-radius: 10px;}


@media (max-width: 1024px) {
.nd-about__img--cat { height: 379px;}
}
@media (max-width: 768px) {
.nd-about__img--cat { width: 100%; object-fit: cover;}
}


.section-divider2 {width:100%; height:100px;}
@media (max-width: 1024px) {
.section-divider2 {width:100%; height:80px;}
}
@media (max-width: 480px) {
.section-divider2 {width:100%; height:60px;}
}



.nd-about__media--t {display: flex; justify-content: center; margin-top: -60px;}
.nd-about__img--t { width:409px;}
@media (max-width: 1024px) {
.nd-about__img--t { width:320px;}
}
@media (max-width: 768px) {
.nd-about__media--t{ margin-top: 0px;}
}
@media (max-width: 480px) {
.nd-about__media--t{ margin-bottom: 60px;}
}




.section-divider3 {width:100%; height:0px;}
@media (max-width: 1024px) {
.section-divider3 {width:100%; height:60px;}
}
@media (max-width: 480px) {
.section-divider3 {width:100%; height:60px;}
}



/* INTRO БЛОК */
.nd-intro__top {
    display: flex;
    gap: 80px;
    align-items: flex-end;
    margin-bottom: 40px;
    flex-direction: column;
    margin-bottom:130px;
}
.nd-intro__text {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.25;
  color: var(--nd-dark);
}
.nd-intro__img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--nd-radius);
  padding-bottom: 50px;
  	border-width:2px;
	border-bottom-style:solid;
	border-bottom-color: #DFDFDF;
  
}


@media (max-width: 1024px) {
.nd-intro__text { font-size: 18px;}
}

@media (max-width: 768px) {
.nd-intro__top { margin-bottom:60px;}
.nd-intro__text { font-size: 16px;}
}


@media (max-width: 480px) {
.nd-intro .nd-container { margin-bottom:-120px;}
.nd-section__title { margin-right: 0px;}
}


