@charset "UTF-8";
/* === HONORSans === */
@font-face {
  font-family: "HONORSans";
  src: url("/assets/HONORSans-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "HONORSans";
  src: url("/assets/HONORSans-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "HONORSans";
  src: url("/assets/HONORSans-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "HONORSans";
  src: url("/assets/HONORSans-Demibold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "HONORSans";
  src: url("/assets/HONORSans-ExtraBold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
/* === ProstoOne === */
@font-face {
  font-family: "ProstoOne";
  src: url("/assets/ProstoOne-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
:root {
  --HONORSans: "HONORSans", sans-serif;
  --ProstoOne: "ProstoOne", sans-serif;
}

/* === Применение шрифтов === */
body {
  font-family: var(--HONORSans), sans-serif;
  font-weight: 400;
}
h2 {
    font-family: var(--ProstoOne), sans-serif;}
/* reset.scss */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Сброс стилей списков */
ul,
ol {
  list-style: none;
}

/* Сброс ссылок */
a {
  text-decoration: none;
  color: inherit;
}

/* Сброс кнопок и инпутов */
button,
input,
textarea,
select {
  font: inherit;
  border: none;
  background: none;
  outline: none;
}

/* Сброс таблиц */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Сброс изображений */
img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* Сброс заголовков и параграфов */
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  font-weight: normal;
}

:root {
  --dark: #000000;
  --brown: #261008;
  --white: #ffffff;
  --light-green: #4a962a;
  --gray: #bebebe;
  --header-height: 87px;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  color: var(--deep-green);
  background-color: var(--white);
  overflow-x: hidden;
  -webkit-transition: background 0.2s ease-in-out 0.5s;
  transition: background 0.2s ease-in-out 0.5s;
}
body.menu-open {
  overflow: hidden;
  background: var(--Brown, #3c1f1b);
}

.wrapper {
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  background-color: var(--white);
}
.wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0, 0, 0);
  opacity: 0;
  pointer-events: none;
  z-index: 10;
  -webkit-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
}
.menu-open .wrapper::before {
  opacity: 0.6;
}

[class$=__container] {
  max-width: 1740px;
  margin: 0 auto;
  padding: 0 30px;
  width: 100%;
}
[class$=__containermini] {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 30px;
  width: 100%;
}
.hero__slide [class$=hero__container] {    padding-right: 10px;}
@media (max-width: 480px) {
  [class$=__container] {
    padding: 0 16px;
  }
}

strong {
  font-weight: 600;
}

.btn-transparent {
  display: block;
  background-color: transparent;
  padding: 6px 17px 8px;
  border: 1px solid var(--gray);
  color: var(--gray);
  -webkit-transition: color 0.2s ease-in-out, border 0.2s ease-in-out;
  transition: color 0.2s ease-in-out, border 0.2s ease-in-out;
}
.btn-transparent strong {
  color: var(--white);
}
.btn-transparent:hover {
  color: var(--white);
  border: 1px solid var(--white);
}
.btn-transparent:hover strong {
  color: var(--white);
}

.btn-primary {
  display: block;
  background-color: var(--brown);
  padding: 16px 40px;
  color: var(--gray);
  -webkit-transition: color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out;
  text-transform: uppercase;
  font-weight: 300;
  text-align: center;
}
.btn-primary strong {
  color: var(--white);
  font-weight: 400;
}
.btn-primary:hover {
  color: var(--white);
}
.btn-primary:hover strong {
  color: var(--white);
}

.btn-white {
  display: block;
  background-color: var(--white);
  padding: 12px 24px;
  color: var(--brown);
  -webkit-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
  cursor: pointer;
  font-weight: 300;
  text-align: center;
}
.btn-white:hover {
  opacity: 0.8;
}

.btn-big {
  padding: 30px 50px;
  font-size: 32px;
}
@media (max-width: 1278px) {
  .btn-big {
    font-size: 24px;
    padding: 20px 40px;
  }
}
.thumbs-navigation {display: none;}
@media (max-width: 768px) {
  .btn-big {
    font-size: 18px;
    padding: 15px 30px;
  }
  
  .footer__wrapper {    padding-bottom: 90px!important;}
	.header__nav .header__dropdown-link span {
 
    text-align: left!important;
  
}
  .thumbs-navigation {display: flex;}
.quote__params {min-width: 100%;        text-align: center;        margin-bottom: 27px;}
.params__wrapper {
    display: flex
;
    justify-content: space-between;
    flex-wrap: wrap;
}
.params__text {
    display: flex
;
    align-items: center;
    gap: 10px;
    text-align: center;
    justify-content: center;
}

}

.swiper-slide {
  cursor: -webkit-grab;
  cursor: grab;
}

.header {
  background-color: var(--brown);
  color: var(--white);
  padding: 12px 0 12px;
  position: relative;
  z-index: 50;
  position: fixed;
    width: 100%;
}
.header__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 24px;
}
@media (max-width: 935px) {
  .header__wrapper {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.header__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 32px;
     -moz-column-gap: 32px;
          column-gap: 32px;
  row-gap: 16px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-block: auto;
}
.header__logo {
  max-width: 200px;
}
.header__button-open {
  display: none;
}
.header__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  text-transform: uppercase;
  font-family: var(--ProstoOne);
  font-size: 13px;
}
.andavideos {    height: 560px;
    overflow: hidden;}
    .andavideos video {    width: 100%;
    top: -290px;
    position: relative;}
@media (max-width: 1618px) {
  .header__list {
    gap: 14px;
  }
    .header__list   .header__list{
        gap: 23px;
    }
}
.header__item {
  cursor: pointer;
}
.header__item--active .header__link {
  border-color: var(--white);
}
.header__link {
  padding-block: 2px;
  border-bottom: 1px solid transparent;
  -webkit-transition: border-color 0.3s ease-in-out;
  transition: border-color 0.3s ease-in-out;
}
.header__link:hover {
  border-color: var(--white);
}
.header__item--has-dropdown {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2px;
}
.header__item--has-dropdown svg {
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  width: 20px;
  height: 20px;
}
.header__item--has-dropdown.open svg {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.header__item--has-dropdown.open .header__dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.header__dropdown {
  -webkit-transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  position: absolute;
  top: 100%;
  background-color: var(--white);
  color: var(--dark);
  width: 100%;
  left: 0;
  opacity: 0;
  visibility: hidden;
  z-index: 20;
}
.header__dropdown-list {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; gap: 18px;
  padding-block: 24px;
}
.header__dropdown-link {
  padding-block: 2px;
  border-bottom: 1px solid transparent;
  -webkit-transition: border-color 0.3s ease-in-out;
  transition: border-color 0.3s ease-in-out;
}
.header__dropdown-link:hover {
  border-color: var(--brown);
}
.header__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.header__phone {
  font-size: 28px;
  font-weight: 300;
  padding: 2px 0;
  border-bottom: 1px solid transparent;
  -webkit-transition: border-color 0.3s ease-in-out;
  transition: border-color 0.3s ease-in-out;
}
.header__phone:hover {
  border-color: var(--white);
}
@media (max-width: 1618px) {
  .header__phone {
    font-size: 18px;
  }
}

.hero {
    color: var(--white);
    position: relative;
  
}
.hero__slide {
  position: relative;
  width: 100%;
  height: 100%;
  cursor: -webkit-grab;
  cursor: grab;
}
.gallery__swiper1 .gallery__slide {    max-width: 550px;}
.gallery__swiper1 img { max-width: 420px;}
.gallery__swiper1 .swiper-slide {
    -ms-flex-negative: initial;
    flex-shrink: initial;}
.hero__container {
  height: 100%;
}
.hero__content {
  padding-block: 16px;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  min-height: calc(100vh - var(--header-height)  + 3vh);
      padding-bottom: 40px;
}
.hero__head {
  margin-left: auto;
  padding: 24px;
  background-color: var(--brown);
}
.hero__title {
  font-size: 167px;
  line-height: 80%;
  font-family: var(--ProstoOne);
}
.hero__text {
  text-transform: uppercase;
  font-size: 80px;
  line-height: 94%;
  font-family: var(--ProstoOne);
}
.hero__foo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-right: auto;
}
.hero__foo.auto .hero__info {    text-shadow: 5px 3px 3px #261008;  font-size: 124px;    font-family: var(--ProstoOne), sans-serif;

}
.hero__foo.auto {    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
;    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    /* margin-right: auto; */
    align-items: flex-end;}
.hero__info {
  font-size: 94px;
  line-height: 100%;
  font-weight: 300;
}
.hero__price {
  font-size: 120px;
  font-family: var(--ProstoOne);
  line-height: 100%;
}
.hero__rub {
  font-size: 32px;
  text-align: right;
  line-height: 100%;
}
.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
}
.hero__paginations {
  position: absolute;
  z-index: 3;
  bottom: 40px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.hero__pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
}
.hero__pagination .swiper-pagination-bullet {
  width: 16px;
  height: 16px;
  background-color: var(--white);
  border-radius: 50%;
  display: block;
  cursor: pointer;
  border: 3px solid transparent;
  -webkit-transition: background-color 0.3s ease-in-out, border-color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out, border-color 0.3s ease-in-out;
}
.hero__pagination .swiper-pagination-bullet-active {
  background-color: transparent;
  border-color: var(--white);
  cursor: default;
}

.conditions__wrapper {
  padding-block: 64px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 36px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.conditions__title {
  text-transform: uppercase;
  font-size: 32px;
  font-weight: 300;
  text-align: center;
}
.conditions__btns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 64px;
}

.calc {
  position: relative;
}
.calc__wrapper {
  min-height: 768px;
  height: 80vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: center;
}
.calc__info {
  color: var(--white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  padding-bottom: 48px;
  position: relative;
  z-index: 2;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.bread__info {
color: var(--white);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px;
    padding-bottom: 48px;
    position: relative;
    z-index: 2;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding-top: 93px;
}
.breadcrumb {       display: flex
;
    gap: 3px;
    font-size: 14px;}
    .separator {    margin-left: 1px;}
.calc__title {
  text-transform: uppercase;
  font-family: var(--ProstoOne);
  line-height: 94%;
  font-size: 80px;
  font-weight: 400;
}
.calc__title.bread {
    text-transform: uppercase;
    font-family: var(--ProstoOne);
    line-height: 94%;
    font-size: 70px;
    font-weight: 400;
}
.breadcrumbs li {    font-size: 12px;}
.calc__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.configurator {
  text-align: center;
  padding-block: 64px;    padding-top: 20px;
}
.configurator__title {
  margin-bottom: 48px;
  font-size: 32px;
  font-weight: 300;
}
.configurator__tabs {
  margin-bottom: 32px;
}
.configurator__thumbs {
  margin-bottom: 32px;
}
.configurator__display {
  margin-bottom: 24px;    position: relative;
}
.configurator__colors {
  margin-bottom: 32px;
}
.configurator__gallery {
  width: 80%;
  margin: 0 auto;
}
.auto-buttons {    position: absolute;
    top: 0;
    bottom: 0;
    color: white;
    display: flex
;

    align-items: center;
    font-weight: 300;
    left: 3%;}
    .auto-buttons .auto-name {    font-size: 80px;}
    .auto-buttons-inside div {margin-bottom: 10px;}
.configurator .tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 32px;
}
.configurator .tabs__item {
  font-size: 17px;
  cursor: pointer;
  font-weight: 600;    color: var(--dark);
  border-bottom: 2px solid transparent;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.configurator .tabs__item--active {
  border-color: var(--dark);
}
.configurator .thumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
}
.configurator .thumbs__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;    color: var(--dark);
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  cursor: pointer;
}
.configurator .thumbs__item--active .thumbs__caption {
  border-color: var(--dark);
}
.configurator .thumbs__item:hover .thumbs__item-img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.configurator .thumbs__caption {
  border-bottom: 1px solid transparent;    color: var(--dark);
  -webkit-transition: border-color 0.2s ease;
  transition: border-color 0.2s ease;
}
.configurator .thumbs__item-img {
  width: 100px;
  height: 70px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  cursor: pointer;
  -webkit-transition: border 0.2s, -webkit-transform 0.2s;
  transition: border 0.2s, -webkit-transform 0.2s;
  transition: transform 0.2s, border 0.2s;
  transition: transform 0.2s, border 0.2s, -webkit-transform 0.2s;
}

.configurator .display__image {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 3/1;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.configurator .colors {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  gap: 16px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-left: 48px;
}
.configurator .colors__caption {
  font-size: 18px;
  font-weight: 500;
}
.configurator .colors__dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 16px;
}
.configurator .colors__dot {
  width: 40px;
  height: 40px;
  cursor: pointer;
  outline: 1px solid var(--gray);
  -webkit-transition: -webkit-transform 0.2s;
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
  background: linear-gradient(135deg, var(--base-color) 30%, var(--dark-color) 100%);
}
.configurator .colors__dot:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.configurator .colors__dot--active {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  outline-color: var(--gray);
}
.configurator .colors__nav {
  color: white;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  -webkit-transition: background-color 0.2s ease-in-out, opacity 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out, opacity 0.2s ease-in-out;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.configurator .colors__nav:hover {
  /*background-color: rgba(38, 16, 8, 0.8);*/
}
.configurator .colors__nav:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.configurator .colors__nav--prev {
    margin-right: 16px;
    transform: rotate(180deg);
    left: 0;
    position: absolute;
    top: 40%;
}
.configurator .colors__nav--next {
  margin-left: 16px;  
    right: 0;
    position: absolute;
    top: 45%;
}
.configurator .gallery {
  position: relative;
  width: 100%;
}
.preimsanda {        display: flex;
    flex-wrap: wrap;
    margin-top: 70px;
    margin-bottom: 0px;
    gap: 10px;
    justify-content: space-evenly;}
.preimsanda div {        flex: 0 0 40%;
    margin-bottom: 30px;}
.preimsanda div p {    font-size: 20px;    font-weight: bold;
    margin-bottom: 10px;}
.configurator .gallery__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 100%;
}
.configurator .gallery__swiper {
  width: 100%;
  overflow: hidden;
}
.configurator .gallery .swiper-slide img {
  width: 100%;
  height: auto;
}
.configurator .gallery__pagination {
  position: absolute;
  bottom: 10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
.configurator .gallery__counter {
  color: #fff;
  font-size: 20px;
}
.configurator .gallery-slide {
  position: relative;
}
.configurator .gallery .swiper-slide {transition: 0.3s all;}
.configurator .gallery .swiper-slide:hover::before {    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    background: red;
    background: rgba(0, 0, 0, 0.6);}
.configurator .gallery-caption {
  position: absolute;
  bottom: 50%;    font-size: 24px;
  left: 50%;
  -webkit-transform: translate(-50%, 50%);
          transform: translate(-50%, 50%);
 
  color: #fff;
  padding: 10px 10px;
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.wrapper .first-partners {    padding-top: 0;
    padding-bottom: 0;}
   .wrapper .models {padding-top: 0;}
.configurator .gallery__nav {
  position: absolute;
  z-index: 3;
  bottom: 8%;
  right: 8%;
  gap: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.configurator .gallery .swiper-slide {
  aspect-ratio: 8/3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
}
.configurator .gallery .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.configurator .gallery .swiper {
  position: relative;
}
.configurator .gallery .gallery-slide.active .gallery-caption {
  opacity: 1;
}
.configurator .gallery .swiper-pagination {
  position: static;
}
.configurator .gallery .swiper-pagination .swiper-pagination-bullet-active {
  opacity: 1;
}
.configurator .gallery .swiper-button-prev,
.configurator .gallery .swiper-button-next {
  opacity: 1;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
  cursor: pointer;
  color: var(--white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.configurator .gallery .swiper-button-prev {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.configurator .gallery .swiper-button-disabled {
  opacity: 0;
  cursor: default;
}
.configurator__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 48px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.partners {
  padding-block: 64px;
}
.partners__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
.partners__title {
  text-transform: uppercase;
  font-size: 32px;
  font-weight: 300;
}
.partners__items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}
.partners .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.hero__foo .btn-primary{    max-width: 292px;}
.partners .item__image {
  width: 180px;
  aspect-ratio: 1.3/1;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.second-partners .item__image{  aspect-ratio: 3/1;
}
.second-partners .item__title {
    font-weight: 600;
    margin-top: 48px;
    margin-bottom: 32px;
    font-weight: normal!important;
}
.partners .item__title {
  font-weight: 600;
}

.register {
  padding-block: 64px;
}
.register__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.register__img {
  aspect-ratio: 4/3;
  position: relative;
  width: 50%;
}
.register__img img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.register__form {
  width: 50%;
  aspect-ratio: 4/3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: var(--white);
  background-color: var(--brown);
  gap: 32px;
  padding: 36px;
}
.register__title {
  text-transform: uppercase;
  font-size: 32px;
  font-family: var(--ProstoOne);
  max-width: 500px;
  text-align: center;
}
.register .form {
  max-width: 500px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
}
.register .form__inputs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  gap: 10px;
}
.register .form__input {
  color: var(--gray);
  background-color: transparent;
  border: 1px solid var(--gray);    width: 100%;
  padding: 8px 16px;
}
.register  .form__group-hint {display: none;}
.models {
  padding-block: 64px;
}
.models__title {
  text-align: center;
  font-size: 32px;
  font-weight: 300;
  padding-bottom: 40px;
}
.models .gallery {
  padding-inline: 40px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}
.models .gallery__slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.models .gallery__button {
  position: absolute;
  z-index: 3;
  top: 10.3vw;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  cursor: pointer;
}
.models .gallery__button.models__button--next {
  right: -8px;
}
.models .gallery__button.models__button--prev {
  left: -8px;
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}
.models .gallery__button.swiper-button-disabled {
  opacity: 0;
  cursor: default;
}
.models .gallery__button svg {
  width: 50px;
  height: 50px;
}
.models .gallery__button::after {
  font-size: 16px;
  font-weight: bold;
}
.models .card {
  width: 100%;
  overflow: hidden;
  text-align: center;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.models .card__image {
  width: 100%;
  aspect-ratio: 5/3;
  -o-object-fit: cover;
     object-fit: cover;
}
.models .card__title {
  font-size: 24px;
  text-transform: uppercase;
  margin: 28px 0 16px;
}
.models .card__title span {
  font-family: var(--ProstoOne);
}
.models .card__info {
  margin-bottom: 10px;
  max-width: 250px;
}
.models .card__btn {
    margin-bottom: 20px;        width: 227px;
    font-size: 18px;
    font-weight: 300;
    /* font-family: var(--ProstoOne); */
    display: block;
    border: 1px solid var(--brown);
    padding: 14px 21px;
    color: #261008;
    -webkit-transition: color 0.2s 
ease-in-out;
    transition: color 0.2s 
ease-in-out;
    text-transform: uppercase;
    font-weight: 500;
    text-align: center;
    font-size: 17px;    margin-top: 10px;

}
.models .card__btn:hover {
    color: var(--white);
    background:  var(--brown);
}
.quote__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.quote__img {
  width: 50%;
  aspect-ratio: 1/1;
  position: relative;
}
.quote__img img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.quote__content {
  aspect-ratio: 1/1;
  background-color: var(--brown);
  width: 50%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  color: var(--white);
}
.quote__texts {
  max-width: 600px;
  padding-block: 64px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
  font-size: 32px;
  padding-inline: 28px;    line-height: 1.4;font-size: 24px;
}
.quote__text {
  font-weight: 300;
}

.hero2 .hero__bg {
  z-index: 1;
}
.hero2 .hero__content {
  position: relative;
  z-index: 2;
}
.hero2 .hero__wrapper {
  position: relative;
}
.hero2 .hero__info-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: block;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
.hero2 .hero__foo {
  margin-left: 48px;
}
@media (max-width: 1596px) {
  .hero2 .hero__container {
    max-width: 100%;
    padding: 0;
  }
}

.footer {
  color: var(--white);
}
.footer__wrapper {
  padding-block: 64px;
  width: 100%;
  background-color: var(--brown);
}
@media (max-width: 1596px) {
  .footer__wrapper {
    padding-inline: 30px;
  }
}
.footer__grid {
    max-width: 1440px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-evenly;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 16px;
}
.footer__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 18px;
}
.footer__title {
  font-family: var(--ProstoOne);
  font-size: 19px;
}
.seo-text {    font-family: var(--HONORSans), sans-serif;    margin: 39px auto 8px;
    font-size: 18px;
    line-height: 1.5;}
.seo-text *{    font-family: var(--HONORSans), sans-serif;  }
.seo-text h1{     text-align: center;
    margin-bottom: 20px;
    font-size: 40px;  }

   .seo-text h1, .seo-text h2, .seo-text h3 {    font-family: var(--ProstoOne), sans-serif;}
.seo-text h2{       text-align: center;
    margin-bottom: 20px;
    font-size: 30px;}
.seo-text h3{      text-align: center;
    margin-bottom: 20px;
    font-size: 27px; }
.seo-text p{     margin-bottom: 12px;  }
.seo-text ul{     list-style: inside;
    margin-bottom: 12px;  }
.seo-text ul li{   }
.params__text {display: flex
;
    align-items: center;
    gap: 10px;}
.params__text span{    font-size: 80px;}
.params__text span.mini{font-size: 20px;}
.quote__params div{    font-size: 17px;}
.params__wrapper{    display: flex
;
    justify-content: space-between;}
.footer__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
.footer__list a {
  padding-bottom: 2px;font-size: 14px;
  border-bottom: 1px solid transparent;
  cursor: pointer;
  -webkit-transition: border-color 0.3s ease-in-out;
  transition: border-color 0.3s ease-in-out;
}
.footer__list a:hover {
  border-bottom: 1px solid var(--white);
}
.footer__icons {
  padding-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer__icon {
  width: 20px;
  height: 20px;
  -o-object-fit: cover;
     object-fit: cover;
  cursor: pointer;
}
@media (max-width: 1596px) {
  .footer__container {
    max-width: 100%;
    padding: 0;
  }
}

.fixed-elements .links {
  position: fixed;
  z-index: 40;
  right: 10px;
  bottom: 20px;
}
.fixed-elements .links svg {
  color: var(--white);
}
.fixed-elements .links__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
}
.fixed-elements .links__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: var(--brown);
  border-radius: 8px;
  -webkit-box-shadow: 0 0 10px var(--dark);
          box-shadow: 0 0 10px var(--dark);
  padding: 12px;
  gap: 16px;
}
.fixed-elements .links__link {
  border-radius: 50%;
  padding: 8px;
  border: 2px solid var(--white);
  height: 100%;
  aspect-ratio: 1/1;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;width: 44px;
}
.fixed-elements .links__link:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.fixed-elements__title {
  position: fixed;
  z-index: 40;
  left: 10px;
  top: 77px;
  background-color: rgba(74, 150, 42, 0.9);
  color: var(--white);
  padding: 12px 24px;
  font-size: 21px;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  cursor: pointer;
}
.fixed-elements__title:hover {
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
}
.fixed-elements__text strong {
  font-size: 32px;
  font-weight: 500;
  font-family: var(--ProstoOne);
}

@media (max-width: 1278px) {
  .header__button-open {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 6px;
    width: 32px;
    height: 32px;
    position: relative;
    cursor: pointer;
  }
  .header__button-open::before, .header__button-open::after {
    content: "";
    display: block;
    width: 32px;
    height: 2px;
    background-color: var(--white);
    border-radius: 1px;
    -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
    transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transition: transform 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
    position: absolute;
    left: 0;
  }
  .header__button-open::before {
    top: 10px; /* верхняя линия */
  }
  .header__button-open::after {
    bottom: 10px; /* нижняя линия */
  }
  .menu-open .header__button-open::before {
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(45deg);
            transform: translateY(-50%) rotate(45deg);
  }
  .menu-open .header__button-open::after {
    bottom: 50%;
    -webkit-transform: translateY(50%) rotate(-45deg);
            transform: translateY(50%) rotate(-45deg);
  }
  .header__nav {
    position: absolute;
    right: 0;
    top: 100%;
    z-index: 30;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  .menu-open .header__nav {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .header__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 24px 32px;
    background-color: var(--brown);
    height: calc(100vh - var(--header-height));
   /* width: 30vw;*/
    min-width: 280px;
    gap: 24px;
    max-height: calc(100vh - var(--header-height));
    overflow-y: auto;
  }
  .header__item {
    width: 100%;
  }
  .header__item--has-dropdown {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 0;
  }
  .header__item--has-dropdown .header__link {
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .header__item--has-dropdown.open .header__dropdown {
    max-height: 1000px;
    opacity: 1;
  }
  .header__dropdown {
    position: static;
    background-color: transparent;
    max-height: 0;
    opacity: 0;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  .header__dropdown__container {
    padding: 0;
    color: var(--white);
  }
  .header__dropdown-list {
    padding: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 16px;
    margin-top: 16px;
    margin-left: 10px;
  }
  .fixed-elements__title {
    top: var(--header-height);
  }
  .fixed-elements__text {
    font-size: 18px;
  }
  .fixed-elements__text strong {
    font-size: 24px;
  }
  .hero__title {
    font-size: 100px;
  }
  .hero__text {
    font-size: 60px;
  }
  .hero__info {
    font-size: 50px;
  }
    .hero__foo.auto .hero__info {
    font-size: 120px;
  }
  .auto-buttons {position: relative;left: 0;}
  .auto-buttons >div {    width: 100%;}
  .auto-buttons-inside{    display: flex
;
    gap: 10px;}
    .auto-buttons-inside div {
    margin-bottom: 10px;
    width: 50%;
}
  .auto-buttons .btn-primary{    padding: 16px 16px;}
  .auto-buttons .auto-name {color: var(--brown);
      font-size: 46px;
        margin: 9px 0 10px;
  }
  .hero__price {
    font-size: 80px;
  }
  .hero__rub {
    font-size: 21px;
  }
  .hero__paginations {
    bottom: 20px;
  }
  .hero__pagination {
    gap: 16px;
  }
  .calc__title {
    font-size: 48px;
  }
    .calc__title.bread {
    font-size: 48px;
  }
  .calc__wrapper {
    min-height: 600px;
  }
  .configurator__title {
    text-align: center;
    margin-bottom: 36px;
  }
  .configurator__tabs {
    margin-bottom: 20px;
  }
  .register__title {
    font-size: 26px;
  }
  .models .card .btn-primary {
    padding-inline: 16px;        width: 190px;
  }
      .models .card__btn {
        width: 190px;
    }
  .quote__texts {
    font-size: 18px;padding-block: 10px;
  }
  .footer__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    grid-template-rows: repeat(2, 1fr);
    row-gap: 36px;
  }
  .footer__item:first-child {
    grid-row: span 2;
  }
}
.header__nav .header__dropdown-link span {    font-size: 17px;
    text-align: center;
    display: block;
    margin-top: 3px;}
      .partners__item .item__title  span{    font-weight: 700;}
.footer__icons .links__row{    display: flex
;
    gap: 13px;}
    .quote__params.second-type div {
    font-size: 17px;
    text-align: center;
}
    .params {    margin: 10px 0 50px;}
    .params.params2 {
    margin: 30px 0 40px;
}
.buttons-auto {       display: flex
;
    gap: 17px;
    margin-bottom: 5px;
    position: absolute;
    bottom: 25px;
    left: 10px;}
   .buttons-auto .btn-primary{padding: 12px 27px}

     .flexeranda {display: flex; margin-bottom: 15px;}
  .flexeranda > *{flex: 1}
  .card__info > span {margin-bottom: 10px; font-weight: bold;}
  .card__price {    margin-bottom: 12px;
    font-size: 24px;}
    .__containermini.seo-text h1 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 24px;    margin-top: 20px;
}
.seo-text.__containermini{margin:10px auto 59px}
@media (max-width: 768px) {
    .preimsanda {       display: block;
    flex-wrap: wrap;
    margin-top: 70px;
    margin-bottom: 0px;}
    .andavideos {    height: auto;
    overflow: hidden;}
    .andavideos video {    width: 100%;
    top: auto;
    position: relative;}
    .seo-text h1 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 30px;        margin-top: 18px;
}
  .flexeranda {display: block}

  .buttons-auto {    display: flex
;
    gap: 8px;
    margin-bottom: 5px;   
    position: absolute;
    bottom: 11px;
    left: 0px;
    flex-wrap: wrap;
    justify-content: center;}
   .gallery__swiper1 .swiper-wrapper {    flex-wrap: wrap;
    gap: 33px;}
  .buttons-auto .btn-primary {    flex-wrap: wrap;    padding: 9px 29px;     min-width: 47%;}
  .quote__container {}

.configurator .colors__nav--prev, .configurator .colors__nav--next {

    top: 30%;
}

  .configurator .display__image {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 1 / 1;
  }
  .configurator .thumbs {

    justify-content: flex-start;}
  .hero__content {

  min-height: calc(80vh - var(--header-height));

}
.topseo2 {margin: 12px auto -15px;}
.params {
    margin: 20px 0 35px;
}
.params.params2 {
    margin: 15px 0 15px;
}
.configurator .gallery .swiper-slide {
    aspect-ratio: 2 / 1;}
.hero__foo.auto .hero__info {      font-size: 58px;        padding-top: 32px;
        text-align: center;}

        .hero__foo.auto {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
;
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    /* margin-right: auto; */
    align-items: center;
}
    .hero__info {
        font-size: 50px;
        text-align: center;
    }
.hero__foo {

  margin-right: auto;margin-left: auto; 
}
  .header__btn {
    margin-inline: auto;
        margin: 0;
  }
  .fixed-elements__title {
    top: var(--header-height);
    padding: 8px 12px;
  }
  .hero {
    color: var(--white);
    position: relative;
    padding-top: 63px;
}
.tophero {
    padding-top: 55px!important;
}
.hero__head {
        padding: 20px;
    margin-top: 31px;
}
[class$=hero__container] {
    padding-right: 0px!important;        padding-left: 0 !important;
}
.partners .item {        max-width: 48%;        min-width: 48%;
        gap: 1%;}
  .fixed-elements__text {
    font-size: 16px;
    text-align: center;
        display: block;
  }
  .fixed-elements__text strong {
    font-size: 20px;
  }
  .fixed-elements .links__row {
    padding: 7px;
  }
  .hero__title {
    font-size: 80px;
  }

  .conditions__wrapper {
    padding-block: 32px;
  }
  .conditions__btns {
    gap: 16px;
  }
  .conditions__title {
    font-size: 24px;
  }
  .calc__wrapper {
    min-height: 500px;        align-items: flex-end;
  }
  .calc__title {
    font-size: 36px;
  }
    .calc__title.bread {
    font-size: 36px;
  }
  .configurator {
    padding-block: 32px;
  }
  .configurator__title {
    font-size: 24px;
    margin-bottom: 24px;
  }
  .configurator .tabs {
    gap: 16px;        z-index: 12;
        position: relative;
  }
  .configurator .tabs__item {
    font-size: 18px;
    font-weight: 500;
  }
  .configurator .colors {
    margin-left: 3px;
  }
  .configurator .colors__dot {
    width: 32px;
    height: 32px;
  }
  .configurator .colors__caption {
    font-size: 16px;
  }
  .configurator .thumbs {
    max-width: 100%;
    width: 100%;
    overflow-x: auto;
  }
  .configurator .thumbs::-webkit-scrollbar {
    width: 0;
  }
  .configurator .thumbs__item {
    gap: 6px;width: 31%;
  }
  .configurator .thumbs__item-img {
    min-width: 100px;       
        min-height: 100px;
        object-fit: cover;
  }
  .partners {
    padding-block: 32px;
  }
  .partners__title {
    font-size: 24px;
  }
  .partners__wrapper {
    gap: 0px;
  }
  .partners__items {
    gap: 8px;
  }
  .partners .item__image {
    width: 130px;
  }
  .partners .item__title {
    font-weight: 500;        font-size: 19px;
  }
  .register {
    padding-block: 32px;
  }
  .register__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .register__img {
    width: 100%;
  }
  .register__form {
    width: 100%;
  }
  .register .form {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .models {
    padding-block: 32px;
  }
  .models__title {
    font-size: 30px;
  }
  .models__container {
    padding: 0;
  }
  .models__title {
    padding-bottom: 28px;        padding-bottom: 36px;
        padding-top: 15px;
  }
  .models .gallery__button {
    top: 16vw;
  }
  .models .card__title {
    font-size: 20px;
    margin: 20px 0 12px;
  }
  .quote__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .quote__img {
    width: 100%;
  }
  .quote__content {
    width: 100%;        aspect-ratio: 1.55/1;
  }
  .hero2 .hero__content {
    gap: 16px;
  }
  .hero2 .hero__info-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-bottom: 16px;
  }
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .footer__item:first-child {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
          /*  order: 1; */
    grid-row: span 1;
  }
}
.tophero {    padding-top: 65px;}
@media (max-width: 480px) {
  .header__wrapper {
    gap: 16px;
  }
  .header__phone {
    font-size: 16px;
  }
 .configurator .colors {    align-items: center;}
  .header__list {
            height: auto;
    max-height: calc(100vh - 64px);
  }
  .fixed-elements .links {
    right: 50%;
    bottom: 7px;
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
  }
  .fixed-elements .links__wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .fixed-elements .links__row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .fixed-elements .links__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .fixed-elements .links__link svg {
    width: 16px;
    height: 16px;
  }
    .fixed-elements__title {
        top: 56px;
        bottom: 0;
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        width: 100%;
        height: 40px;
    }
  .hero__title {
    font-size: 70px;
  }
  .hero__text {
        font-size: 37px;
  }
  .hero__foo {

    margin-bottom: 26px;
}
.hero__foo .btn-primary {
    max-width: 292px;        padding: 16px 15px;
    margin-bottom: 3px;
}
  .hero__price {
    font-size: 60px;
  }
  .hero__pagination .swiper-pagination-bullet {
    width: 16px;
    height: 16px;
  }
  .conditions__btns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
  }
  .calc__info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;        gap: 7px;
            flex-direction: column-reverse;
  }
  .configurator .gallery {
    width: 100%;
  }
  .configurator .gallery__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .partners__items {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .register__img {
    aspect-ratio: 5/3;
  }
  .register__title {
    font-size: 20px;
  }
  .models .gallery__button {
    top: 30vw;
  }
  .quote__img {
    aspect-ratio: 5/3;
  }
  .hero2 .hero__foo {
    margin-left: 15px;margin-bottom: -15px;
  }
  .hero2 .hero__content {
    padding-bottom: 32px;
  }
  .footer__grid {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }
  .footer__wrapper {
    padding-block: 32px;
  }
}/**
 * Swiper 12.0.2
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2025 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: September 18, 2025
 */

:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}
:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}
.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}
.swiper-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
          transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}
.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
          transform: translate3d(0px, 0, 0);
}
.swiper-horizontal {
  -ms-touch-action: pan-y;
      touch-action: pan-y;
}
.swiper-vertical {
  -ms-touch-action: pan-x;
      touch-action: pan-x;
}
.swiper-slide {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  display: block;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}
.swiper-autoheight .swiper-wrapper {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform;
}
.swiper-backface-hidden .swiper-slide {
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  -webkit-perspective: 1200px;
          perspective: 1200px;
}
.swiper-3d .swiper-wrapper {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}
.swiper-3d {
  -webkit-perspective: 1200px;
          perspective: 1200px;
  .swiper-slide,
  .swiper-cube-shadow {
    -webkit-transform-style: preserve-3d;
            transform-style: preserve-3d;
  }
}

/* CSS Mode */
.swiper-css-mode {
  > .swiper-wrapper {
    overflow: auto;
    scrollbar-width: none; /* For Firefox */
    -ms-overflow-style: none; /* For Internet Explorer and Edge */
    &::-webkit-scrollbar {
      display: none;
    }
  }
  > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: start start;
  }
  &.swiper-horizontal {
    > .swiper-wrapper {
      -ms-scroll-snap-type: x mandatory;
          scroll-snap-type: x mandatory;
    }
  }
  &.swiper-vertical {
    > .swiper-wrapper {
      -ms-scroll-snap-type: y mandatory;
          scroll-snap-type: y mandatory;
    }
  }
  &.swiper-free-mode {
    > .swiper-wrapper {
      -ms-scroll-snap-type: none;
          scroll-snap-type: none;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: none;
    }
  }
  &.swiper-centered {
    > .swiper-wrapper::before {
      content: '';
      -ms-flex-negative: 0;
          flex-shrink: 0;
      -webkit-box-ordinal-group: 10000;
          -ms-flex-order: 9999;
              order: 9999;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: center center;
      scroll-snap-stop: always;
    }
  }
  &.swiper-centered.swiper-horizontal {
    > .swiper-wrapper > .swiper-slide:first-child {
      -webkit-margin-start: var(--swiper-centered-offset-before);
              margin-inline-start: var(--swiper-centered-offset-before);
    }
    > .swiper-wrapper::before {
      height: 100%;
      min-height: 1px;
      width: var(--swiper-centered-offset-after);
    }
  }
  &.swiper-centered.swiper-vertical {
    > .swiper-wrapper > .swiper-slide:first-child {
      -webkit-margin-before: var(--swiper-centered-offset-before);
              margin-block-start: var(--swiper-centered-offset-before);
    }
    > .swiper-wrapper::before {
      width: 100%;
      min-width: 1px;
      height: var(--swiper-centered-offset-after);
    }
  }
}

/* Slide styles start */
/* 3D Shadows */
.swiper-3d {
  .swiper-slide-shadow,
  .swiper-slide-shadow-left,
  .swiper-slide-shadow-right,
  .swiper-slide-shadow-top,
  .swiper-slide-shadow-bottom,
  .swiper-slide-shadow,
  .swiper-slide-shadow-left,
  .swiper-slide-shadow-right,
  .swiper-slide-shadow-top,
  .swiper-slide-shadow-bottom {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
  }
  .swiper-slide-shadow {
    background: rgba(0, 0, 0, 0.15);
  }
  .swiper-slide-shadow-left {
    background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-right {
    background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-top {
    background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-bottom {
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
}
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
          transform-origin: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}
.swiper:not(.swiper-watch-progress),
.swiper-watch-progress .swiper-slide-visible {
  .swiper-lazy-preloader {
    -webkit-animation: swiper-preloader-spin 1s infinite linear;
            animation: swiper-preloader-spin 1s infinite linear;
  }
}
.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}
.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}
.header__dropdown .header__dropdown-link img {width: 200px;}
@-webkit-keyframes swiper-preloader-spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes swiper-preloader-spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@media (max-width: 768px) {
.__containermini.seo-text h1 {
          text-align: center;
        margin-bottom: 20px;
        font-size: 18px;
        margin-top: 20px;
        line-height: 1.3;
}
.hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: -1;
    background-position: right;
}
}

/* Slide styles end */
@media (max-width: 1278px) {
  .header__dropdown .header__dropdown-link img {
    display: none;
}

}
/*480px 768px 935px 1278px 1618px*/