@font-face {
  font-family: "PFDinText";
  src: url("../fonts/PFDinTextUniversal.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "PFDinText";
  src: url("../fonts/PFDinTextUniversal-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "PFDinText";
  src: url("../fonts/PFDinTextCondPro-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
::placeholder {
  color: inherit;
}
a,
button {
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}
strong {
  font-weight: 500;
}
/* News */
.news-page .offers-head .breadcrumbs {
  color: #fff;
}

.news-page .offer-head .breadcrumbs {
  color: rgba(45, 62, 78, 1);
}

.news-card {
  min-width: 0;
  height: 100%;
  padding: 0;
  margin: 0;
  overflow: hidden;
}

.news-card .news-card__image {
  display: block;
  width: 100%;
  height: auto;
  max-height: none;
  aspect-ratio: 1.91 / 1;
  overflow: hidden;
}

.news-card .news-card__image img,
.grid-offer-cards .news-card .news-card__image img,
.other-offers .news-card .news-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.news-card:hover .news-card__image img {
  transform: scale(1.03);
}

.news-card .news-card__content {
  flex: 1 1 auto;
  height: auto;
  min-height: 0;
  padding: 3.5rem 5rem;
}

.news-card .news-card__title {
  width: 100%;
  min-height: 0;
  margin: 0;
  padding: 0;
  font-size: 3rem;
  line-height: 1.14;
}

.news-card .news-card__title,
.news-card .news-card__title a {
  color: rgba(45, 62, 78, 1);
}

.news-card .news-card__excerpt {
  display: block;
  width: 100%;
  max-width: 53.7rem;
  min-height: 0;
  color: rgba(45, 62, 78, 1);
  font-weight: 300;
  line-height: 1.5;
}

.news-card .promo-btn {
  margin-top: 2rem;
}

.news-detail__image {
  width: 100%;
  height: auto;
  max-height: none;
}

.news-detail__image img {
  display: block;
  width: 100%;
  height: auto;
}

.news-detail__article {
  width: 100%;
}

.news-detail__lead {
  line-height: 1.4;
}

.news-application {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3.2rem;
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 7.5rem 2rem;
  border: 0.1rem solid rgba(108, 209, 255, 1);
  background: rgba(42, 89, 253, 1);
  color: #fff;
  text-align: center;
}

.news-application__title {
  color: inherit;
  font-size: 3rem;
  line-height: 1.15;
  text-transform: uppercase;
}

.news-application__text {
  max-width: 90rem;
  font-size: 20px;
  line-height: 1.4;
  text-wrap: balance;
}

.news-application__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34.5rem;
  max-width: 100%;
  min-height: 6rem;
  padding: 1.2rem 2.4rem;
  border: 0.1rem solid rgba(255, 255, 255, 0.7);
  background: transparent;
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  text-transform: uppercase;
  transition: opacity 0.2s ease;
  font-weight: 500;
}

.news-application__button:hover {
  opacity: 0.8;
}

/* Universal forms */
.ui-form {
  --form-color: rgba(45, 62, 78, 1);
  --form-border: rgba(45, 62, 78, 0.45);
  --form-accent: rgba(42, 89, 253, 1);
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
  width: 100%;
  color: var(--form-color);
}

.ui-form--page {
  max-width: 80rem;
  margin: 0 auto;
}

.ui-form--popup {
  --form-color: rgba(45, 62, 78, 1);
  --form-border: rgba(45, 62, 78, 0.55);
}

.ui-form .field-group {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
  min-width: 0;
  padding: 0;
  border: 0;
}

.ui-form .form-row {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  width: 100%;
  min-width: 0;
}

.ui-form .form-label {
  color: var(--form-color);
  font-size: 1.6rem;
  line-height: 1.2;
}

.ui-form .form-label .required {
  color: var(--form-accent);
}

.ui-form .form-field {
  width: 100%;
  padding: 0 0 1.2rem;
  border: 0;
  border-bottom: 0.1rem solid var(--form-border);
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--form-color);
  transition: border-color 0.2s ease;
  font-size: 1.6rem;
  font-weight: 400;
}

.ui-form textarea.form-field {
  min-height: 8rem;
  resize: vertical;
}



.ui-form .form-field:focus {
  border-bottom-color: var(--form-accent);
}

.ui-form select.form-field {
  padding-right: 3rem;
  appearance: none;
  cursor: pointer;
}

.ui-form .form-select {
  position: relative;
  width: 100%;
}

.ui-form .form-select .icon {
  position: absolute;
  right: 0;
  bottom: 2.1rem;
  display: flex;
  align-items: center;
  pointer-events: none;
}

.ui-form .form-select .icon svg {
  width: 1.3rem;
  height: auto;
}

.ui-form .form-select .icon path {
  fill: var(--form-color);
}

.ui-form .errorMessage {
  color: #e64646;
  font-size: 1.4rem;
  font-weight: 300;
}

.ui-form .form-field.error,
.ui-form .error .form-field {
  border-bottom-color: #e64646;
}

.ui-form .form-row.checkbox {
  flex-direction: row;
  align-items: flex-start;
  gap: 1.2rem;
}

.ui-form .form-row.checkbox label {
  color: var(--form-color);
  line-height: 1.4;
}

.ui-form .form-row.checkbox a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.2rem;
}

.ui-form .form-checkbox {
  flex: 0 0 auto;
  width: 2.3rem;
  height: 2.3rem;
  margin: 0;
  accent-color: var(--form-accent);
}

.ui-form .form-btn {
  width: 100%;
  min-height: 6rem;
  padding: 1.4rem 2.4rem;
  border: 0.1rem solid var(--form-accent);
  background: var(--form-accent);
  color: #fff;
  cursor: pointer;
  text-transform: uppercase;
  transition: opacity 0.2s ease;
}

.ui-form .form-btn:hover {
  opacity: 0.8;
}

.ui-form .form-btn:disabled {
  cursor: wait;
  opacity: 0.55;
}

#popup-form {
  width: min(100%, 64rem);
  padding: 5rem 8rem;
  border: 0.1rem solid rgba(45, 62, 78, 0.55);
  background: rgba(242, 243, 244, 1);
  color: rgba(45, 62, 78, 1);
}

#popup-form .popup__header {
  margin-bottom: 3.2rem;
  text-align: center;
}

#popup-form .popup__header .title {
  font-size: 3rem;
  line-height: 1.15;
  text-transform: uppercase;
}

#popup-form .ui-form--popup {
  gap: 3.2rem;
}

@media screen and (max-width: 768px) {
  .news-card .news-card__content {
    padding: 2.4rem 2rem;
  }

  .news-card .news-card__title {
    font-size: 2.2rem;
  }

  .news-card .news-card__image {
    max-height: none;
    aspect-ratio: 2 / 1;
  }

  .news-card .promo-btn {
    width: 100%;
    height: auto;
    min-height: 5.2rem;
  }

  .news-detail__article {
    padding: 5rem 2rem 8rem;
  }

  .news-detail__article .article {
    padding-bottom: 0;
  }

  .ui-form,
  .ui-form .field-group {
    gap: 2.4rem;
  }

  #popup-form {
    padding: 3rem 2rem;
  }
}

/* Error page */
.error-page {
  display: flex;
  width: 100%;
  min-height: 75rem;
  background: rgba(243, 243, 245, 1);
  color: rgba(45, 62, 78, 1);
}

/* Car page navigation */
.page__car {
  --car-page-header-height: 0rem;
  --car-page-nav-height: 6rem;
}

.car-nav {
  position: sticky;
  top: var(--car-page-header-height);
  z-index: 5400;
  width: 100%;
  border-top: 0.1rem solid rgba(217, 217, 217, 1);
  border-bottom: 0.1rem solid rgba(217, 217, 217, 1);
  background: #fff;
}

.car-nav__inner {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 162rem;
  min-height: 6rem;
  margin: 0 auto;
}

.car-nav__model {
  flex: 0 0 auto;
  margin-right: 6rem;
  color: rgba(45, 62, 78, 1);
  font-size: 2.6rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1;
}

.car-nav__links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3.6rem;
  min-width: 0;
}

.car-nav__link {
  flex: 0 0 auto;
  color: rgba(45, 62, 78, 1);

  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  transition:
    color 0.2s ease,
    opacity 0.2s ease;
}

.car-nav__link:hover {
  opacity: 0.65;
}

.car-nav__link.active {
  color: rgba(42, 89, 253, 1);
  opacity: 1;
}

.page__car > [id] {
  scroll-margin-top: calc(
    var(--car-page-header-height) + var(--car-page-nav-height)
  );
}
.car-nav .btn-group {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-left: auto;
}
.car-nav .price-download,
.car-nav__request {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 4.5rem;

  padding: 1rem 2rem;
  background: rgba(42, 89, 253, 1);
  color: #fff;

  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
  transition: opacity 0.2s ease;
}
.car-nav .price-download:hover,
.car-nav__request:hover {
  opacity: 0.8;
}

@media screen and (max-width: 768px) {
  .car-nav {
    position: sticky;
    top: 0;
    font-size: 14px;
  }

  .car-nav__inner {
    display: grid;
    grid-template-columns: 1fr auto;
    min-height: 0;
    padding: 0 2rem 0;
  }

  .car-nav__model {
    margin-right: 2rem;
  }

  .car-nav__links {
    grid-column: 1 / -1;
    grid-row: 2;
    gap: 2.4rem;
    margin: 0 -2rem 0;
    padding: 1.5rem 2rem;
    overflow-x: auto;
    border-top: 0.1rem solid rgba(217, 217, 217, 1);
    scrollbar-width: none;
  }

  .car-nav__links::-webkit-scrollbar {
    display: none;
  }

  .car-nav__request {
    flex-basis: auto;
    min-height: 4.2rem;
    margin-left: 0;
    padding: 1rem 1.6rem;
  }
}

/* Car exterior specifications */
.car-exterior {
  --car-exterior-block-height: 58rem;
  width: 100%;
  max-width: none;
  min-height: var(--car-exterior-block-height);
  background: rgba(243, 243, 245, 1);
  color: rgba(45, 62, 78, 1);
}

.car-exterior--scroll {
  height: calc(var(--car-exterior-block-height) + var(--car-exterior-scroll-distance)
  );
  min-height: calc(
    var(--car-exterior-block-height) + var(--car-exterior-scroll-distance)
  );
} 

.car-exterior__inner {
  display: grid;
  grid-template-columns: minmax(20rem, 1fr) minmax(42rem, 2.2fr) minmax(
      20rem,
      1fr
    );
  align-items: center;
  width: 100%;
  max-width: 162rem;
  min-height: inherit;
  margin: 0 auto;
  padding: 4rem 0;
}

.car-exterior--scroll .car-exterior__inner {
  height: 100%;
  min-height: 58rem;
}

.car-exterior__specs {
  display: grid;
  grid-template-rows: repeat(2, minmax(13rem, auto));
  align-items: stretch;
}

.car-exterior__spec {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.car-exterior__spec + .car-exterior__spec {
  border-top: 0.1rem solid rgba(45, 62, 78, 0.08);
}

.car-exterior__label {
  margin-bottom: 1rem;
  font-size: 16px;
}

.car-exterior__value {
  font-size: clamp(1.9rem, 1.65vw, 4rem);
  font-weight: 500;
  letter-spacing: 0.025em;
  line-height: 1.15;
}

.car-exterior__visual {
  position: relative;
  min-width: 0;
  min-height: 34rem;
}

.car-exterior__state {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s ease;
}

.car-exterior__state.is-active {
  z-index: 1;
  opacity: 1;
  pointer-events: auto;
}

.car-exterior--scroll .car-exterior__state {
  --exterior-car-opacity: 0;
  --exterior-logo-opacity: 0;
  --exterior-logo-shift: 0rem;
  z-index: auto;
  opacity: 1;
  visibility: hidden;
  transition: none;
}

.car-exterior--scroll .car-exterior__state.is-transitioning {
  visibility: visible;
}

.car-exterior--scroll .car-exterior__state.is-entering {
  pointer-events: auto;
}

.car-exterior__model-name {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 50%;
  width: min(72%, 44rem);
  height: 24rem;
  object-fit: contain;
  transform: translateX(-50%);
}

.car-exterior--scroll .car-exterior__model-name {
  opacity: var(--exterior-logo-opacity);
  transform: translate(-50%, var(--exterior-logo-shift));
  will-change: opacity, transform;
}

.car-exterior__car {
  position: relative;
  z-index: 2;
  width: min(88%, 54rem);
  height: auto;
  object-fit: contain;
}

.car-exterior--scroll .car-exterior__car {
  opacity: var(--exterior-car-opacity);
  will-change: opacity;
}

@media screen and (max-width: 768px) {
  .car-exterior {
    height: auto;
    min-height: 0;
  }

  .car-exterior--scroll {
    height: auto;
    min-height: 0;
  }

  .car-exterior__inner {
    display: block;
    align-content: start;
    padding: 4rem 2rem;
  }

  .car-exterior--scroll .car-exterior__inner {
    position: relative;
    top: auto;
    height: auto;
    min-height: 0;
  }

  .car-exterior__visual {
    grid-column: 1 / -1;
    grid-row: 1;
    min-height: 27rem;
    margin: 4rem auto;
  }

  .car-exterior__model-name {
    width: min(70%, 32rem);
    height: 19rem;
  }

  .car-exterior__car {
    width: min(90%, 42rem);
  }

  .car-exterior__specs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
  }

  .car-exterior__specs--left {
    grid-column: 1;
  }

  .car-exterior__specs--right {
    grid-column: 2;
  }

  .car-exterior__spec {
    justify-content: flex-start;
    padding: 0 1rem;
  }


  .car-exterior__value {
    font-size: clamp(1.6rem, 4.5vw, 2.2rem);
  }

  .car-exterior__spec + .car-exterior__spec {
    border-top: 0;
    border-left: 0.1rem solid rgba(45, 62, 78, 0.08);
  }

  .car-exterior__specs + .car-exterior__specs {
    border-top: 0.1rem solid rgba(45, 62, 78, 0.08);
  }
}

.error-page__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 107.2rem;
  min-height: inherit;
  padding: 10rem 2rem;
  text-align: center;
}

.error-page__code {
  color: rgba(42, 89, 253, 1);
  font-size: 18rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 0.85;
}

.error-page__title {
  margin-top: 4rem;
  font-size: 5.5rem;
  line-height: 1.05;
}

.error-page__text {
  max-width: 64rem;
  margin-top: 2.4rem;
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1.5;
}

.error-page__actions {
  display: flex;
  justify-content: center;
  gap: 2rem;
  width: 100%;
  margin-top: 5rem;
}

.error-page__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28rem;
  max-width: 100%;
  min-height: 6rem;
  padding: 1.4rem 2.4rem;
  border: 0.1rem solid rgba(42, 89, 253, 1);
  font-size: 1.6rem;
  line-height: 1;
  text-transform: uppercase;
  transition: opacity 0.2s ease;
}

.error-page__button--outline {
  background: transparent;
  color: rgba(42, 89, 253, 1);
}

.error-page__button--primary {
  background: rgba(42, 89, 253, 1);
  color: #fff;
}

.error-page__button--outline:hover,
.error-page__button--primary:hover {
  opacity: 0.8;
}

@media screen and (max-width: 768px) {
  .error-page {
    min-height: 64rem;
  }

  .error-page__content {
    padding: 8rem 2rem;
  }

  .error-page__code {
    font-size: 12rem;
  }

  .error-page__title {
    margin-top: 3rem;
    font-size: 3.6rem;
  }

  .error-page__text {
    font-size: 1.6rem;
  }

  .error-page__actions {
    flex-direction: column;
    align-items: center;
    margin-top: 4rem;
  }

  .error-page__button {
    width: 100%;
    max-width: 32rem;
  }
}

html {
  font-size: calc(10 / 1920 * 100vw);
}

body,
html {
  background-color: #fff;
  margin: 0%;
  padding: 0%;

  overflow-anchor: none;
}

body {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  font-size: 1.6rem;
  font-family: "PFDinText";
  overflow-x: hidden;
}

body > main {
  width: 100%;
  flex: 1 0 auto;
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

section {
  width: 100%;
  max-width: 162rem;
  margin: 0 auto;
  padding: 0;
}

.nav-outer-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 7000;
  display: none;
  opacity: 0;
}

h1,
.h1,
h2,
h3,
span {
  font-weight: 500;
  letter-spacing: 3%;
  line-height: 1;
}

a,
button {
  text-decoration: none;
}

button {
  font: inherit;
  color: inherit;
}

b,
h4 {
  font-weight: 500;
}

h1,
.h1 {
  font-size: 5.5rem;
  text-transform: uppercase;
}

h3 {
  font-size: 3rem;
  line-height: 3.4rem;
}

h4 {
  font-size: 2rem;
  line-height: 2.4rem;
}

p,
ul,
li,
td,
label {
  font-weight: 300;
  line-height: 2.4rem;
}

header {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  top: 0;
}

.burger-menu {
  width: 3.5rem;
  height: 1.8rem;
  display: none;
  margin-right: 10rem;
  cursor: pointer;
}

.burger-menu .close-icon {
  display: none;
}

.burger-menu.active .burger-icon {
  display: none;
}

.burger-menu.active .close-icon {
  display: block;
  width: 2.2rem;
  height: 2.2rem;
}

.desktop-btn {
  display: block;
}

.mobile-btn {
  display: none;
}

.static-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 6100;
}

.sticky-header {
  overflow: visible !important;
  position: sticky;
  top: 0;
  z-index: 5500;
  background-color: #fff;
  border-bottom: 1px solid rgba(217, 217, 217, 1);
  transition:
    background-color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.sticky-header.over-banner {
  position: fixed;
  left: 0;
  width: 100%;
  z-index: 6100;
  background-color: transparent;
  border-bottom-color: transparent;
}

body:has(.page__car) .sticky-header.over-banner {
  position: absolute;
}

.sticky-header.over-banner:not(.is-scrolled):not(.is-menu-open) a,
.sticky-header.over-banner:not(.is-scrolled):not(.is-menu-open) .models-nav,
.sticky-header.over-banner:not(.is-scrolled):not(.is-menu-open)
  .models-nav
  span {
  color: #fff;
}

.sticky-header.over-banner:not(.is-scrolled):not(.is-menu-open) .lng-d {
  border-left-color: #fff;
}

.sticky-header.over-banner:not(.is-scrolled):not(.is-menu-open) .logo-icon,
.sticky-header.over-banner:not(.is-scrolled):not(.is-menu-open)
  .socials-lng-icons
  img,
.sticky-header.over-banner:not(.is-scrolled):not(.is-menu-open) .lang img,
.sticky-header.over-banner:not(.is-scrolled):not(.is-menu-open)
  .burger-menu
  img {
  filter: brightness(0) invert(1);
}

.sticky-header.over-banner.is-scrolled,
.sticky-header.over-banner.is-menu-open {
  background-color: #fff;
  border-bottom-color: rgba(217, 217, 217, 1);
  box-shadow: 0 0.4rem 1.5rem rgba(0, 0, 0, 0.06);
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin: 0 auto;
  padding: 1.5rem 0 1rem;
}

.logo-nav {
  display: flex;
  align-items: center;
  gap: 7.1rem;
}

.logo-icon {
  width: 6.6rem;
  height: auto;
  cursor: pointer;
}

.logo-nav nav {
  display: flex;
  align-items: center;
  gap: 5rem;
}

.logo-nav a {
  text-decoration: none;
  text-align: center;
  margin: auto 0;
}

.logo-nav span {
  text-transform: uppercase;
}

.static-header a {
  color: #fff;
}

.nav-option span,
.lang a span {
  transition:
    color 0.2s ease,
    opacity 0.2s ease;
}

.sticky-header a {
  color: rgba(45, 62, 78, 1);
}

.sticky-header:not(.over-banner) .nav-option:hover span,
.sticky-header:not(.over-banner) .lang a:hover span,
.sticky-header.over-banner.is-scrolled .nav-option:hover span,
.sticky-header.over-banner.is-scrolled .lang a:hover span,
.sticky-header.over-banner.is-menu-open .nav-option:hover span,
.sticky-header.over-banner.is-menu-open .lang a:hover span {
  color: rgba(42, 89, 253, 1);
}

.models-nav {
  cursor: pointer;
}

.static-header .models-nav {
  color: #fff;
}

.sticky-header .models-nav {
  color: rgba(45, 62, 78, 1);
}

.sticky-header:not(.over-banner) .models-nav:hover::after,
.sticky-header.over-banner.is-scrolled .models-nav:hover::after,
.sticky-header.over-banner.is-menu-open .models-nav:hover::after {
  border-right: 1px solid rgba(42, 89, 253, 1);
  border-bottom: 1px solid rgba(42, 89, 253, 1);
}

.sticky-header .nav-option.active:hover span {
  color: rgba(45, 62, 78, 1);
}

.nav-option.active {
  border-bottom: 2px solid rgba(42, 89, 253, 1);
}

.static-header .nav-option:hover span,
.static-header .lang a:hover span,
.sticky-header.over-banner:not(.is-scrolled):not(.is-menu-open)
  .nav-option:hover
  span,
.sticky-header.over-banner:not(.is-scrolled):not(.is-menu-open)
  .lang
  a:hover
  span {
  color: #fff;
  opacity: 0.65;
}

.static-header .models-nav:hover::after,
.sticky-header.over-banner:not(.is-scrolled):not(.is-menu-open)
  .models-nav:hover::after {
  border-color: currentColor;
  opacity: 0.65;
}

.models-nav span {
  margin-right: 0.8rem;
  color: rgba(45, 62, 78, 1);
}

.static-header .models-nav span {
  color: #fff;
}

.models-nav::after {
  content: "";
  content: "";
  display: inline-block;
  width: 0.57rem;
  height: 0.57rem;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateX(-0.1rem) translateY(-0.35rem);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    opacity 0.2s ease;
  flex-shrink: 0;
}

.models-nav.open::after {
  transform: rotate(225deg) translateX(0.05rem) translateY(0.15rem);
}

.sticky-header.force-front {
  z-index: 99999 !important;
}

.models-dropdown-desktop {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-1rem);
  background-color: rgba(242, 243, 244, 1);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.12);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    visibility 0s linear 0.2s;
}

.models-dropdown-desktop-container {
  position: relative;
}

.models-dropdown-desktop-container::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 22rem;
  background-image: linear-gradient(0deg, #f2f3f4, #e5e5e5);
  opacity: 45%;
  bottom: 0;
  z-index: 1;
}

.models-dropdown-desktop.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition-delay: 0s;
}

.models-dropdown-close {
  position: absolute;
  top: 2.8rem;
  right: 15.05rem;
  width: 3.25rem;
  height: 3.25rem;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 3;
}

.models-dropdown-close img {
  display: block;
  width: 100%;
  height: auto;
}

.models-dropdown-cards {
  position: relative;
  max-width: 142rem;
  margin: 0 auto;
  padding: 6.7rem 0rem 10.4rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6rem;
  z-index: 2;
}
.models-dropdown-cards a:hover {
  opacity: 0.85;
  transition: opacity 0.2s ease;
}
.models-dropdown-cards .image-wrapper-mc {
  height: 15.281rem;
}

.models-dropdown-cards .model-card-content {
  padding: 0;
}

.socials-lang {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.socials-lng-icons {
  display: flex;
  align-items: center;
  gap: 4rem;
}
.socials-lng-icons a {
  display: inline-flex;
}
.socials-lng-icons img {
  height: 2rem;
  width: auto;
}

.jetta-small-icon {
  cursor: pointer;
}

.jetta-small-icon:hover {
  filter: brightness(0) saturate(100%) invert(28%) sepia(85%) saturate(2800%)
    hue-rotate(222deg) brightness(103%) contrast(101%);
}

.lang {
  display: flex;
  align-items: center;
  gap: 1.7rem;
}

.lang .language-icon {
  width: 2rem;
  height: 2rem;
  flex: 0 0 auto;
}
.lang a.active {
  color: #2a59fd;
}

.static-header .lang a.active,
.sticky-header.over-banner:not(.is-scrolled):not(.is-menu-open) .lang a.active {
  color: #fff;
}

.lang .lng-d {
  flex: 0 0 auto;
  align-self: center;
  width: 0;
  height: 1.6rem;
}

.static-header .lng-d {
  border-left: 1px solid #fff;
}

.sticky-header .lng-d {
  border-left: 1px solid rgba(45, 62, 78, 1);
}

footer {
  margin-top: auto;
  flex-shrink: 0;
  width: 100%;
  min-height: 28.8rem;
  color: rgba(45, 62, 78, 1);
  background-color: rgba(243, 243, 245, 1);
  background-image: url(/static/img/footer-bg.png);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 192rem 25.4rem;
}

.footer-main {
  width: 100%;
  max-width: 162rem;
  min-height: 28.8rem;
  margin: 0 auto;
  padding: 6.5rem 0 0;
  display: flex;
  align-items: start;
  gap: 2rem;
}

.footer-logo-cols {
  display: flex;
  flex: 2 1 0;
  min-width: 0;
}

.footer-cols {
  display: flex;
  flex: 1 1 0;
  min-width: 0;
}

.footer-col,
.footer-logo-col {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.footer-logo-col {
  flex: 0.5 1 0;
  gap: 3.2rem;
}

.footer-menu-col,
.footer-single-col {
  flex: 1 1 0;
}

.footer-col {
  gap: 1rem;
}

.footer-main a {
  text-decoration: none;
  color: inherit;
}

.footer-heading {
  color: rgba(45, 62, 78, 1);
  line-height: 1.9rem;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.footer-logo {
  width: 7.2rem;
  height: auto;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0;
  list-style: none;
}

.footer-links a {
  color: rgba(45, 62, 78, 1);
  line-height: 3rem;
  overflow-wrap: anywhere;
}

.footer-links li {
  text-transform: uppercase;
  font-weight: 500;
  display: flex;
  flex-direction: row;
  align-items: center;
  position: relative;
  padding-left: 1.4rem;
}

.footer-links li::before {
  content: "";
  border-right: 0.2rem solid rgba(42, 89, 253, 1);
  border-bottom: 0.2rem solid rgba(42, 89, 253, 1);
  width: 0.46rem;
  height: 0.46rem;
  position: absolute;
  left: 0;
  transform: rotate(-45deg) translateY(-0.15rem);
}

.socials-footer {
  display: flex;
  flex: 0 1 auto;
  flex-direction: row;
  gap: 2rem;
  margin-left: auto;
}

.socials-footer img {
  display: block;
  width: 2.7rem;
  height: 2.7rem;
}

.footer-legal {
  position: relative;
  flex: 2.65 1 0;
  min-width: 0;
  padding-left: 2.1rem;

  font-size: 1rem;
  font-weight: 300;
  line-height: 1.2;
  white-space: pre-line;
}

.footer-legal::before {
  content: "*";
  position: absolute;
  top: 0;
  left: 0;
  font-size: 1.2rem;
  line-height: 1;
}

/* Mp section */
.banner-swiper-section {
  position: relative;
}

.banner-swiper-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  width: 100%;
  height: 20rem;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.58) 0%,
    rgba(0, 0, 0, 0.28) 48%,
    rgba(0, 0, 0, 0) 100%
  );
}

.banner-swiper-container {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  min-height: 65rem;
  height: 100dvh;
}

.banner-swiper {
  width: 100%;
  height: 100%;
  position: relative;
}

.banner-swiper .swiper-slide {
  overflow: hidden;
}

.banner-slide {
  position: relative;
}


.banner-image {
  position: absolute;
  inset: 0;
  display: block;
}

.banner-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-content-image {
  display: block;
  max-width: 65rem;
}

.banner-content-image img {
  display: block;
  width: 100%;
  height: auto;
}

.warranty-logo {
  position: absolute;
  right: 5rem;
  bottom: 5rem;
  z-index: 2;
}

.warranty-logo img {
  display: block;
  max-width: 18rem;
  max-height: 12rem;
}

.countdown {
  display: flex;
  gap: 1rem;
  position: relative;
  z-index: 2;
}

.count-item {
  min-width: 5rem;
  padding: 1rem;
  border: 1px solid currentColor;
  text-align: center;
}

.left-side-banner {
  width: 60%;
  height: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 2.6rem;
  padding: 8rem 15rem;
  position: relative;
  z-index: 4;
}

.left-side-banner.top {
  justify-content: flex-start;
  padding-top: 12rem;
}

.left-side-banner.center {
  justify-content: center;
}

.left-side-banner.bottom {
  justify-content: flex-end;
}

.left-side-banner.text-center {
  align-items: center;
  text-align: center;
}

.left-side-banner.text-right {
  align-items: flex-end;
  text-align: right;
}

.banner-content {
  display: inherit;
  flex-direction: inherit;
  align-items: inherit;
  color: #fff;
  gap: 1.6rem;
}

.banner-head {
  font-size: 10rem;
  letter-spacing: 10%;
}

.banner-content p {
  font-size: 3rem;
  line-height: 100%;
}

.banner-content span {
  font-size: 7rem;
  font-weight: 500;
}

.page__car .banner {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #e7e6e1;
  min-height: 65rem;
  height: calc(100dvh - 6.2rem);
}

.page__car .banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  width: 100%;
  height: 20rem;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.58) 0%,
    rgba(0, 0, 0, 0.28) 48%,
    rgba(0, 0, 0, 0) 100%
  );
}

.page__car .banner > picture,
.page__car .banner > .video-embed-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page__car .banner > picture .img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page__car .banner .video-embed {
  width: 100%;
  height: 100%;
  border: 0;
  pointer-events: none;
}

.page__car .left-side-banner.between {
  justify-content: space-between;
}

.page__car .banner-btn-group {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
}

@media screen and (max-width: 768px) {
  .page__car .banner {
    height: 72rem;
    min-height: 0;

  }
  body.header-over-banner .page__car .banner {
    margin-top: 0;
  }

  .page__car .left-side-banner[data-mobile-align] {
    justify-content: center;
    padding-top: 8rem;
  }
  .page__car .left-side-banner[data-mobile-align="top"] {
    justify-content: flex-start;
    padding-top: 12rem;
  }
  .page__car .left-side-banner[data-mobile-align="center"] {
    justify-content: center;
  }
  .page__car .left-side-banner[data-mobile-align="bottom"] {
    justify-content: flex-end;
  }
  .page__car .left-side-banner[data-mobile-align="between"] {
    justify-content: space-between;
  }

  .page__car .banner-btn-group {
    justify-content: center;
    width: 100%;
  }
  .page__car .banner-btn-group .banner-btn {

    width: auto;
    padding: 2rem;
    flex: 1
  }
}

button {
  cursor: pointer;
}

.btn {
  font-size: 1.6rem;
  padding: 2rem 4rem;
  border-radius: 0;
  border: none;
  text-transform: uppercase;
  max-width: 34rem;
  width: 100%;
  text-align: center;
  font-weight: 500;
  transition: opacity 0.2s ease;
}

.btn:hover {
  opacity: 0.8;
}

.white-transparent {
  background-color: transparent;
  border: 1px solid #fff;
  color: #fff;
}

.white-grey {
  border: 1px solid rgba(45, 62, 78, 1);
  color: rgba(45, 62, 78, 1);
  background: none;
}

.blue-white {
  background-color: rgba(42, 89, 253, 1);
  color: #fff;
}

.white-borders {
  background-color: transparent;
  border: 1px solid #fff;
  color: #fff;
}

.banner-arrow {
  color: #fff;
  width: 5rem;
  height: 5rem;
}

.banner-arrow::after {
  font-size: 2.4rem;
}

.banner-progress {
  position: absolute;
  bottom: 4rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 3.2rem;
  width: 60rem;
  justify-content: center;
}

.banner-pause-btn {
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  flex-shrink: 0;
}

.banner-progress-bars {
  display: flex;
  gap: 0.6rem;
  flex: 1;
  max-width: 175px;
}

.banner-progress-bar {
  flex: 1;
  height: 0.3rem;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.banner-progress-bar .fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: #fff;
}

.pause-icon img {
  width: auto;
  height: 1.6rem;
}

.banner-progress-bar.done .fill {
  width: 100%;
}

.banner-progress-bar.active .fill {
  animation: progressFill var(--autoplay-duration) linear forwards;
}

.banner-progress-bar.paused .fill {
  animation-play-state: paused;
}

@keyframes progressFill {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}

.sticky-track {
  position: relative;
  width: 100%;
}

/* Models section */
.models-selection-section {
  position: relative;
  background-color: rgb(248, 249, 250);
}

.models-selection-section::after {
  position: absolute;
  content: "";
  bottom: 0;
  width: 100%;
  height: 33.3rem;
  background-image: linear-gradient(
    180deg,
    rgba(236, 236, 238, 1),
    rgba(229, 229, 229, 1)
  );
  opacity: 45%;
}

.models-selection-inner {
  position: static;
  padding: 14rem 0 12rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7rem;
  z-index: 2;
}

.ms-head {
  display: inherit;
  flex-direction: inherit;
  gap: 1rem;
  align-items: inherit;
  text-transform: uppercase;
}

.ms-head h2 {
  letter-spacing: 3%;
  color: rgba(45, 62, 78, 1);
}

.ms-head a {
  color: rgba(42, 89, 253, 1);
  font-size: 1.6rem;
  line-height: 2rem;
  text-decoration: underline;
  display: none;
}

.models-swiper-container {
  width: 100%;
  overflow: hidden;
  padding: 0 5rem;
}

.models {
  width: 100%;
  max-width: 128rem;
  overflow: hidden;
  margin: 0 auto;
}

.models-progress {
  display: none;
}

.model-card {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  position: relative;
  padding: 0 2rem;
}

.image-wrapper-mc {
  display: flex;
  position: relative;
  height: 20rem;
}

.model-name-grey {
  position: absolute;
  top: 0;
  z-index: 1;
  width: 100%;
  filter: grayscale(100%) brightness(1.3) opacity(10%);
  transition: filter 0.3s ease-in-out;
}

.model-name-blue {
  position: absolute;
  top: 0;
  z-index: 1;
  width: 100%;
  opacity: 0;
  visibility: hidden;
}

.car-model {
  position: relative;
  z-index: 2;
  margin-top: auto;
  margin-bottom: 0.5rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.model-card:hover .model-name-grey{
    filter: grayscale(0) brightness(1) opacity(1);
    transition: filter 0.3s ease-in-out;
}

/* .model-card:hover .model-name-blue{
    opacity: 1;
    visibility: visible;
} */

.model-card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  position: relative;
  padding-bottom: 9.5rem;
}

.mc-txt-content {
  display: inherit;
  flex-direction: inherit;
  align-items: center;
  gap: 0.3rem;
  color: rgba(45, 62, 78, 1);
}

.mcc-head {
  display: inherit;
  flex-direction: row;
  align-items: inherit;
  gap: 0.9rem;
}

.mcc-head span {
  text-transform: uppercase;
  color: rgba(45, 62, 78, 1);
}

.model-card-content .mcc-h {
  font-size: 30px;
}

.mcc-tag {
  display: flex;
  align-items: center;
  text-align: center;
  padding: 0.5rem 0.7rem;
  line-height: 1.8rem;
  color: #fff !important;
}

.mcc-tag span {
  font-size: 1.6rem;
}

.promo {
  background-color: rgba(153, 164, 255, 1);
}

.promo-btn {
  margin-top: 1rem;
}

.new {
  background-color: rgba(255, 20, 60, 1);
}

.mc-txt-content span {
  font-size: 20px;
}

.model-btn {
  position: absolute;
  bottom: 0;
  width: 100%;
  border: 1px solid rgba(42, 89, 253, 1);
  color: rgba(42, 89, 253, 1);
  text-decoration: none;
  text-wrap: nowrap;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.2s ease-in-out,
    visibility 0.2s ease-in-out;
}

.model-card:hover .model-btn {
  opacity: 1;
  visibility: visible;
}

.model-card:hover .mc-txt-content {
  margin-bottom: 0;
}

.models-progress-bars {
  display: flex;
  gap: 0.6rem;
  width: 100%;
  max-width: 30rem;
}

.models-progress-bar {
  flex: 1;
  height: 0.3rem;
  background: rgba(0, 0, 0, 0.15);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.models-progress-bar .fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: rgba(189, 194, 195, 1);
}

.models-progress-bar.done .fill,
.models-progress-bar.active .fill {
  width: 100%;
}

/* Offer section */
.offer-section {
  max-width: 100%;
  background-color: rgba(251, 251, 251, 1);
}

.offer-inner {
  max-width: 162rem;
  margin: 0 auto;
  padding: 11.2rem 0 6.5rem;
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
}

.offer-inner h2 {
  text-transform: uppercase;
  color: rgba(45, 62, 78, 1);
  text-align: center;
  line-height: 6.5rem;
}

.promo-swiper-container {
  overflow: hidden;
}

.promo-swiper {
  overflow: visible;
}

.promo-slide {
  display: flex;
  flex-direction: column;
  background-color: rgba(242, 243, 244, 1);
}

.promo-slide .image-wrapper {
  position: relative;
  overflow: hidden;
  height: 40.8rem;
}

.promo-slide .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.promo-slide .image-wrapper a::after {
  position: absolute;
  content: "";
  inset: 0;
  background-color: rgba(0, 0, 0, 0.2);
  pointer-events: none;
}

.exp-date {
  position: absolute;
  top: 3rem;
  left: 2.8rem;
  background-color: rgba(42, 89, 253, 1);
  color: #fff;
  padding: 0.7rem 1.8rem 0.6rem;
  font-size: 1.6rem;
  text-transform: uppercase;
  z-index: 1;
}

.promo-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
  padding: 3.5rem 5rem;
  height: 25rem;
}

.pc-head {
  font-size: 3rem;
  line-height: 3.4rem;
  min-height: 6.8rem;
  display: flex;
  justify-content: center;
  text-transform: uppercase;
  color: rgba(45, 62, 78, 1);
  text-align: center;
  width: 100%;
  max-width: 53.7rem;
}

.promo-content p {
  width: 100%;
  max-width: 53.7rem;
  min-height: 3.3rem;
  line-height: normal;
}

.promo-content .promo-btn {
  height: 6rem;
  margin-top: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.promo-progress {
  display: flex;
  justify-content: center;
  margin-top: 2.7rem;
}

.promo-progress-bars {
  display: flex;
  gap: 0.7rem;
  width: 72.4rem;
  justify-content: center;
}

.promo-progress-bar {
  flex: 1;
  height: 0.5rem;
  background: rgba(0, 0, 0, 0.15);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  max-width: 17.545rem;
}

.promo-progress-bar .fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: rgba(189, 194, 195, 1);
}

.promo-progress-bar.done .fill {
  width: 100%;
}

.promo-progress-bar.active .fill {
  animation: progressFill var(--autoplay-duration) linear forwards;
}

/* Scrn4 section */

.scrn4-bg {
  background-image: url(/static/img/blue-white-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-color: rgba(42, 89, 253, 1);
}

.scrn4 {
  height: 61.3rem;
  padding: 10.64rem 0 13.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  gap: 21rem;
}

.scrn-head {
  display: inherit;
  flex-direction: inherit;
  align-items: inherit;
  text-align: center;
}

.mpi-head {
  color: #fff;
}

.scrn-head h2 {
  font-size: 5.5rem;
  line-height: 6.5rem;
  text-transform: uppercase;
}

.scrn-head p {
  font-size: 2rem;
  line-height: 2.8rem;
  max-width: 76rem;
  margin: 0 auto;
}

.mpi-car {
  position: absolute;
  right: 0;
  top: 37%;
  width: 39.1rem;
  height: auto;
}

.select-group {
  display: inherit;
  flex-direction: row;
  gap: 2rem;
  width: 112rem;
  height: 6rem;
}

.select-group .select-wrapper-mpi,
.select-group .mpi-btn {
  flex-grow: 1;
  max-width: 36rem;
}

.so {
  width: 100%;
  height: 6rem;
  background-color: transparent;
  border: 1px solid #fff;
  color: #fff;
  border-radius: 0;
  padding: 0 3rem;
  font-size: 1.6rem;
  appearance: none;
}

.so option {
  background-color: #fff;
  color: rgba(45, 62, 78, 1);
}

.so:disabled {
  cursor: not-allowed;
  opacity: 0.65;
}

.select-wrapper-mpi {
  position: relative;
  display: inline-block;
}

.select-wrapper-mpi::after {
  content: "";
  position: absolute;
  right: 3rem;
  top: 50%;
  width: 1rem;
  height: 1rem;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translateY(-75%) rotate(45deg);
  pointer-events: none;
}

.mpi-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 6rem;
  padding: 0;
  background-color: #fff;
  border: 1px solid #fff;
  color: rgba(45, 62, 78, 1);
}

/* Advantages-special section */

.scrn5-bg {
  background-color: rgba(251, 251, 251, 1);
}

.scrn5 {
  padding: 10.2rem 0 11.4rem;
  display: flex;
  flex-direction: column;
  gap: 5.8rem;
}

.specials-card-swiper-container {
  width: 100%;
  overflow: hidden;
}

.specials-cards {
  width: 100%;
  overflow: visible;
  padding: 0;
}

.specials-cards .swiper-wrapper {
  align-items: stretch;
}

.special-card {
  width: 100%;
  display: flex !important;
  flex-direction: column;
  height: auto;
}

.alt-sp {
  position: relative;
  background-image:
    linear-gradient(
      to bottom,
      rgba(102, 102, 102, 0) 21%,
      rgba(0, 0, 0, 0.85) 100%
    ),
    var(--special-card-image);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 5rem;
  overflow: hidden;
}

.alt-sp .special-card-content {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  margin-top: auto;
  background-color: transparent;
  padding: 0;
  color: #fff;
}

.image-wrapper-sp {
  width: 100%;
  height: 34.4rem;
  flex-shrink: 0;
  overflow: hidden;
}

.image-wrapper-sp img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.special-card-content {
  background-color: rgba(242, 243, 244, 1);
  padding: 3.9rem 5rem 5.1rem;
  gap: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  flex: 1;
  color: rgba(45, 62, 78, 1);
}

.special-card-content h3 {
  text-transform: uppercase;
}

.spc-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25.5rem;
  height: 6rem;
  max-width: 25.5rem;
  padding: 0;
  margin-top: auto;
}

.specials-progress {
  display: none;
}

.specials-progress-bars {
  display: flex;
  gap: 0.6rem;
  width: 100%;
  max-width: 30rem;
}

.specials-progress-bar {
  flex: 1;
  height: 0.3rem;
  background: rgba(0, 0, 0, 0.15);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.specials-progress-bar .fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: rgba(189, 194, 195, 1);
}

.specials-progress-bar.done .fill,
.specials-progress-bar.active .fill {
  width: 100%;
}

/* SCRN6 section */
.scrn6-bg {
  background-color: rgba(242, 243, 244, 1);
}

.scrn6 {
  padding: 13rem 0;
  display: flex;
  flex-direction: row;
  gap: 15rem;
  color: #2d3e4e;
}

.scrn-col {
  display: flex;
  flex-direction: column;
  flex: 0 0 44rem;
}

.scrn-col-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.scrn-col-content h2 {
  font-size: 3rem;
  text-transform: uppercase;
}
#support h2,
#about-brand h2 {
  font-size: 5.5rem;
  line-height: 6.5rem;
}
.scrn6__extra {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: auto;
}

.scrn6__extra p {
  margin: 0;
}

.scrn6__extra strong {
  display: block;
  margin-top: 0.8rem;
  font-size: 3rem;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}

.split-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  width: 100%;
}

.split-metrics__item {
  min-width: 0;
}

.split-metrics__label {
  display: block;
  font-weight: 300;
  line-height: 1.25;
  font-size: 12px;
}

.divider-h {
  width: 5.45rem;
  height: 0;
  border-bottom: 0.2rem solid rgba(42, 89, 253, 1);
}

.scrn6-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 6rem;
  max-width: 34.5rem;
  padding: 0;
  background-color: rgba(42, 89, 253, 1);
  color: #fff;
  margin-top: auto;
}

.scrn6-btn.mobile-btn {
  display: none;
}

.scrn-content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  flex: 1;
  min-width: 0;
}

.factory {
  height: 58.3rem;
  width: 100%;
  display: block;
  object-fit: cover;
}

.car-back-img {
  width: 100%;
  height: 35.8rem;
  display: block;
  object-fit: cover;
}

.scrn-subcontent {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
}

.scrn-col-subcontent {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 13rem;
  align-items: center;
  font-size: 1.2rem;
}

.divider-v1 {
  height: 6.5rem;
  width: 0;
  border-left: 0.2rem solid rgba(42, 89, 253, 1);
}

.scrn-col-subcontent p {
  line-height: 1.6rem;
  font-size: 12px;
}

#support {
  background-color: rgba(251, 251, 251, 1);
}

#support .scrn-col-content > p {
  color: rgba(102, 102, 102, 1);
}

#va7-interior-space .scrn-col-content h2 {
  font-size: clamp(2.6rem, 1.8vw, 3.4rem);
  line-height: 1.15;
}

#va7-interior-space .scrn-col-content > p {
  font-weight: 300;
  line-height: 1.45;
}

#va7-interior-space .scrn6__extra {
  max-width: 16rem;
  font-weight: 300;
  line-height: 1.25;
}

@media screen and (min-width: 769px) {
  #support .scrn6 {
    padding: 11.9rem 0 16.2rem;
  }

  .scrn6.split-text-right {
    flex-direction: row-reverse;
  }
}

/* Banner with button */
.banner-button {
  --banner-button-bg: rgba(243, 243, 245, 1);
  --banner-button-color: #fff;
  position: relative;
  display: grid;
  grid-template-columns: 100%;
  overflow: hidden;
  width: 100%;
  max-width: none;
  /* height: calc(100dvh - 4.95rem); */
  min-height: 55rem;
  background-color: var(--banner-button-bg);
  color: var(--banner-button-color);
}

.banner-button--auto {
  height: auto;
  min-height: 0;
}

.banner-button__picture,
.banner-button__inner {
  grid-area: 1 / 1;
}

.banner-button__picture {
  display: block;
  min-width: 0;
}

.banner-button__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.banner-button--overlay::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(20, 28, 31, 0.18);
  content: "";
}

.banner-button__inner {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 162rem;
  height: 100%;
  min-height: inherit;
  margin: 0 auto;
  padding: 8.5rem 2rem;
}

.banner-button--top .banner-button__inner {
  align-items: flex-start;
}

.banner-button--center .banner-button__inner {
  align-items: center;
}

.banner-button--bottom .banner-button__inner {
  align-items: flex-end;
}

.banner-button__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  text-align: center;
  text-wrap: balance;
}

.banner-button__title {
  color: inherit;
  font-size: clamp(3rem, 2.7vw, 5.5rem);
  line-height: 1.08;
  text-transform: uppercase;
  max-width: 100rem;
}

.banner-button__text {
  max-width: 120rem;
  margin-top: 1.5rem;
  color: inherit;
  font-size: 3rem;
  font-weight: 300;
  line-height: 1.3;
}

.banner-button__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 27rem;
  min-height: 6rem;
  margin-top: 3rem;
  padding: 1.5rem 3rem;
  border: 0.1rem solid rgba(42, 89, 253, 1);
  background: rgba(42, 89, 253, 1);
  color: #fff;
  line-height: 1;
  text-transform: uppercase;
  transition: opacity 0.2s ease;
  font-weight: 500;
}

.banner-button__link:hover {
  opacity: 0.8;
}

#shop .banner-button__inner {
  padding: 10.8rem 2rem;
}

#shop .banner-button__link {
  border-color: rgba(255, 255, 255, 0.75);
  background: transparent;
}

#shop .banner-button__link:hover {
  opacity: 0.8;
}

#va7-exterior-banner {
  background-image: url("/userdata/images/banner%202.jpg");
}

/* Color switcher */
.color-switcher {
  --color-switcher-bg: rgba(243, 243, 245, 1);
  --color-switcher-text: #fff;
  position: relative;
  width: 100%;
  max-width: none;
  height: calc(100dvh - 4.95rem);
  min-height: 55rem;
  overflow: hidden;
  background-color: var(--color-switcher-bg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: var(--color-switcher-text);
}

.color-switcher__title {
  position: absolute;
  top: 8.5rem;
  left: 50%;
  z-index: 3;
  width: calc(100% - 4rem);
  color: inherit;
  font-size: clamp(3rem, 2.7vw, 5.2rem);
  line-height: 1.08;
  text-align: center;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.color-switcher__swiper,
.color-switcher__slide {
  width: 100%;
  height: 100%;
}

.color-switcher__slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.color-switcher--layered .color-switcher__slide,
.color-switcher--contain .color-switcher__slide {
  padding: 12rem 5rem 10rem;
}

.color-switcher--layered .color-switcher__slide img,
.color-switcher--contain .color-switcher__slide img {
  object-fit: contain;
}

.color-switcher__controls {
  position: absolute;
  bottom: 6.5rem;
  left: 50%;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  transform: translateX(-50%);
}

.color-switcher__control {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4.6rem;
  height: 4.6rem;
  padding: 0;
  border: 0.1rem solid rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  background: var(--switcher-color);
  color: #fff;
  cursor: pointer;
  transition:
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.color-switcher__control:hover {
  transform: scale(1.06);
}

.color-switcher__control.is-active {
  box-shadow:
    0 0 0 0.3rem rgba(255, 255, 255, 1),
    0 0 0 0.4rem rgba(45, 62, 78, 0.55);
}

.color-switcher__control span {
  opacity: 0;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
  transition: opacity 0.2s ease;
}

.color-switcher__control.is-active span {
  opacity: 1;
}

/* Feature tabs */
.feature-tabs {
  width: 100%;
  max-width: 162rem;
  padding: 10rem 0;
  background: #fff;
  color: rgba(45, 62, 78, 1);
}

.feature-tabs + .feature-tabs,
*:has(> .feature-tabs) + *:has(> .feature-tabs) > .feature-tabs {
  padding-top: 0;
}

.feature-tabs__layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  height: 51rem;
  background: rgba(243, 243, 245, 1);
}

.feature-tabs__layout--text-left .feature-tabs__image-swiper {
  grid-column: 2;
}

.feature-tabs__layout--text-left .feature-tabs__content {
  grid-column: 1;
  grid-row: 1;
}

.feature-tabs__image-swiper,
.feature-tabs__details-swiper {
  width: 100%;
}

.feature-tabs__image-swiper {
  min-width: 0;
  height: 51rem;
  min-height: 0;
}

.feature-tabs__image {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: rgba(243, 243, 245, 1);
}

.feature-tabs__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-tabs__content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-width: 0;
  padding: 5rem 10rem;
}

.feature-tabs__previews {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 7rem;
}

.feature-tabs__details {
  height: auto;
}

.feature-tabs__preview {
  display: block;
  flex: 0 0 7.4rem;
  width: 7.4rem;
  height: 7.4rem;
  padding: 0.3rem;
  overflow: hidden;
  border: 0.2rem solid transparent;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    transform 0.2s ease;
}

.feature-tabs__preview:hover {
  transform: scale(1.04);
}

.feature-tabs__preview.is-active {
  border-color: rgba(42, 89, 253, 1);
}

.feature-tabs__preview img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.feature-tabs__title {
  color: inherit;
  font-size: 3rem;
  line-height: 1.1;
  text-transform: uppercase;
}

.feature-tabs__line {
  width: 5.5rem;
  height: 0.2rem;
  margin: 2.5rem 0;
  background: rgba(42, 89, 253, 1);
}

.feature-tabs__text {
  max-width: 62rem;
  font-weight: 300;
  line-height: 1.45;
}

/* Feature list */
.feature-list {
  --feature-list-bg: #fff;
  --feature-list-color: rgba(45, 62, 78, 1);
  width: 100%;
  max-width: none;
  background-color: var(--feature-list-bg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: var(--feature-list-color);
}

.feature-list__inner {
  width: 100%;
  max-width: 162rem;
  margin: 0 auto;
  padding: 10rem 0;
}

.feature-list__header {
  max-width: 90rem;
  margin: 0 auto 7rem;
  text-align: center;
}

.feature-list--no-header .feature-list__header {
  display: none;
}

.feature-list__heading {
  color: inherit;
  font-size: clamp(3rem, 2.7vw, 5.2rem);
  line-height: 1.1;
  text-transform: uppercase;
}

.feature-list__intro {
  margin-top: 2rem;
  font-weight: 300;
  line-height: 1.45;
}

.feature-list__grid {
  display: grid;
  grid-template-columns: repeat(var(--feature-list-columns), minmax(0, 1fr));
  gap: 5.5rem;
}

.feature-list__grid + .feature-list__grid {
  margin-top: 7rem;
}

.feature-list__card {
  min-width: 0;
}

.feature-list__image {
  width: 100%;
  aspect-ratio: 2 / 1;
  overflow: hidden;
}

.feature-list__image picture,
.feature-list__image img {
  display: block;
  width: 100%;
  height: 100%;
}

.feature-list__image img {
  object-fit: cover;
}

.feature-list__content {
  padding-top: 4.5rem;
}

.feature-list__title {
  color: inherit;
  font-size: clamp(2rem, 1.45vw, 2.8rem);
  line-height: 1.15;
  text-transform: uppercase;
}

.feature-list__line {
  width: 5.5rem;
  height: 0.2rem;
  margin: 2.2rem 0;
  background: rgba(42, 89, 253, 1);
}

.feature-list__text {
  margin: 0;
  font-weight: 300;
  line-height: 1.45;
}

/* Scroll-driven image comparison */
.image-compare {
  --image-compare-progress: 0%;
  position: relative;
  width: 100%;
  max-width: none;
  height: calc(
    320dvh - var(--car-page-header-height) - var(--car-page-nav-height)
  );
  min-height: 120rem;
  background: #111;
  
}

.image-compare__sticky {
  position: sticky;
  top: calc(var(--car-page-header-height) + var(--car-page-nav-height));
  width: 100%;
  height: calc(
    100dvh - var(--car-page-header-height) - var(--car-page-nav-height)
  );
  min-height: 52rem;
  overflow: hidden;

}

.image-compare__layers,
.image-compare__reveal {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.image-compare__picture {
  position: absolute;
  inset: 0;
  display: block;

}
.image-compare__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-compare__reveal {
  z-index: 1;
  overflow: hidden;
  will-change: clip-path;
}

.image-compare.horizontal .image-compare__reveal {
  clip-path: inset(0 calc(100% - var(--image-compare-progress)) 0 0);
}

.image-compare.vertical .image-compare__reveal {
  clip-path: inset(0 0 calc(100% - var(--image-compare-progress)) 0);
}

.image-compare__image--active {
  position: absolute;
  inset: 0;
}

.image-compare__divider {
  position: absolute;
  z-index: 2;
  background: rgba(255, 255, 255, 0.85);
}

.image-compare.horizontal .image-compare__divider {
  top: 0;
  bottom: 0;
  left: var(--image-compare-progress);
  width: 0.1rem;
  transform: translateX(-50%);
  will-change: left;
}

.image-compare.vertical .image-compare__divider {
  top: var(--image-compare-progress);
  right: 0;
  left: 0;
  height: 0.1rem;
  transform: translateY(-50%);
  will-change: top;
  display: none;
}

.image-compare__shade {
  position: absolute;
  /* inset: 40% 0 0;
  z-index: 3;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.72)); */
  pointer-events: none;
}

.image-compare__content {
  position: absolute;
  right: 2rem;
  top: 10rem;
  bottom: 10rem;
  left: 2rem;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #fff;
  text-align: center;

  pointer-events: none;
}

.image-compare__content--top { justify-content: flex-start; }
.image-compare__content--bottom { justify-content: flex-end; }
.image-compare__content--center { justify-content: center; }
.image-compare__title {
  color: inherit;
  font-size: 5.5rem;
  line-height: 1.1;
  text-transform: uppercase;
}

.image-compare__text {
  max-width: 110rem;
  margin-top: 1.5rem;
  font-weight: 300;
  font-size: 2.6rem;
}

.image-compare__switch {
  display: grid;
  align-items: start;
  justify-items: center;
  width: 100%;
  transition: height 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.image-compare__switch > * {
  grid-area: 1 / 1;
}

.image-compare__copy {
  pointer-events: none;
}

.image-compare__copy--base {
  opacity: 1;
}

.image-compare__copy--active {
  opacity: 0;
}

.image-compare.is-second-slide .image-compare__copy--base {
  opacity: 0;
}

.image-compare.is-second-slide .image-compare__copy--active {
  opacity: 1;
}
.image-compare__copy {
  --image-compare-copy-shift: 2.4rem;
  pointer-events: none;
  transition:
    opacity 0.35s ease,
    transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: opacity, transform;
}

.image-compare__copy--base {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.12s;
}

.image-compare__copy--active {
  opacity: 0;
  transform: translateY(var(--image-compare-copy-shift));
  transition-delay: 0s;
}

.image-compare.is-second-slide .image-compare__copy--base {
  opacity: 0;
  transform: translateY(calc(var(--image-compare-copy-shift) * -1));
  transition-delay: 0s;
}

.image-compare.is-second-slide .image-compare__copy--active {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.12s;
}

/* CTA виден только на втором (последнем) слайде сравнения */
.image-compare__cta {
  margin-top: 2.4rem;
  pointer-events: none;
  opacity: 0;
  transform: translateY(2.4rem);
  transition:
    opacity 0.35s ease,
    transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition-delay: 0s;
}

.image-compare.is-second-slide .image-compare__cta {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  transition-delay: 0.12s;
}
/* CTA виден только на втором (последнем) слайде сравнения */
.image-compare__cta {
  margin-top: 2.4rem;
  pointer-events: none;
  opacity: 0;
  transform: translateY(2.4rem);
  transition:
    opacity 0.35s ease,
    transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition-delay: 0s;
}

.image-compare.is-second-slide .image-compare__cta {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  transition-delay: 0.12s;
}
/* Feature carousel */
.feature-carousel {
  width: 100%;
  max-width: none;
  padding: 8rem 0;
  overflow: hidden;
  background: #fff;
  color: rgba(45, 62, 78, 1);
}

.feature-carousel__header {
  width: calc(100% - 4rem);
  max-width: 90rem;
  margin: 0 auto 6rem;
  text-align: center;
}

.feature-carousel--no-header .feature-carousel__header {
  display: none;
}

.feature-carousel__heading {
  color: inherit;
  font-size: clamp(3rem, 2.7vw, 5.2rem);
  line-height: 1.1;
  text-transform: uppercase;
}

.feature-carousel__intro {
  margin-top: 2rem;
  font-weight: 300;
  line-height: 1.45;
}

.feature-carousel__viewport {
  position: relative;
}

.feature-carousel__swiper {
  width: 100%;
  overflow: visible;
}

.feature-carousel__slide {
  width: min(62rem, calc(100vw - 8rem));
  height: auto;
}

.feature-carousel__image {
  width: 100%;
  aspect-ratio: 2 / 1;
  overflow: hidden;
}

.feature-carousel__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-carousel__content {
  padding-top: 4.5rem;
}

.feature-carousel__title {
  color: inherit;
  font-size: clamp(2.2rem, 1.55vw, 3rem);
  line-height: 1.15;
  text-transform: uppercase;
}

.feature-carousel__line {
  width: 5.5rem;
  height: 0.2rem;
  margin: 2.2rem 0;
  background: rgba(42, 89, 253, 1);
}

.feature-carousel__text {
  font-weight: 300;
  line-height: 1.45;
}

.feature-carousel__arrow {
  position: absolute;
  top: calc((100vw - 12rem) / 14);
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 5rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(42, 89, 253, 1);
  cursor: pointer;
  transform: translateY(-50%);
  transition: opacity 0.2s ease;
}

/* Model gallery */
.model-gallery {
  width: 100vw;
  max-width: none;
  padding: 8rem 0;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  background: var(--model-gallery-bg, #fff);
}

.model-gallery__inner {
  width: min(100% - 12rem, 162rem);
  margin: 0 auto;
}

.model-gallery__header {
  margin-bottom: 5rem;
  text-align: center;
}

.model-gallery__title {
  margin: 0;
  font-size: 5.5rem;
  line-height: 1.1;
  text-transform: uppercase;
}

.model-gallery__intro {
  margin-top: 1.8rem;
  font-size: 2.6rem;
}

.model-gallery__grid {
  display: grid;
  grid-template-columns: 3fr 1fr 1fr;
  /* grid-template-rows: repeat(2, minmax(0, 1fr)); */
  gap: 1.6rem;
  aspect-ratio: 3 / 1;
}

.model-gallery__item {
  display: block;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
}

.model-gallery__item--1 {
  grid-column: 1;
  grid-row: 1 / span 2;
}

.model-gallery__item--2 {
  grid-column: 2;
  grid-row: 1;
}

.model-gallery__item--3 {
  grid-column: 3;
  grid-row: 1;
}

.model-gallery__item--4 {
  grid-column: 2 / span 2;
  grid-row: 2;
}

.model-gallery__item--hidden {
  display: none;
}

.model-gallery__item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.model-gallery__item:hover img {
  transform: scale(1.025);
}

.model-gallery__more {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  min-width: 21.5rem;
  min-height: 6rem;
  padding: 2rem 4.5rem;
  margin: 4.5rem auto 0;
  border: 0.1rem solid currentColor;
  background: transparent;
  color: inherit;
  font: inherit;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.2s ease;
  font-weight: 500;
}

.model-gallery__more:hover {
  opacity: 0.8;
}

/* Editable HTML section */
.html-section {
  width: 100vw;
  max-width: none;
  padding: 8rem 0;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);

  background-position: center;
  background-size: cover;
}

.html-section__inner {
  width: min(100% - 12rem, 162rem);
  margin: 0 auto;

}

.html-section__header,
.html-section__content {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  font-size: 16px;
}

.html-section__header {
  margin-bottom: 4rem;
  text-align: center;
}

.html-section__title {
  margin: 0;
  font-size: 5rem;
  line-height: 1.1;
  text-transform: uppercase;
}

.html-section__intro {
  margin-top: 2rem;
  line-height: 1.5;
}

.html-section__button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26rem;
  min-height: 6rem;
  padding: 1.4rem 2rem;
  margin: 5rem auto 0;
  background: #2a59fd;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  transition: opacity 0.2s ease;
  font-weight: 500;
}

.html-section__button:hover {
  opacity: 0.8;
}


.tech-table .html-section__content {
  width: 100%;
  color: #2D3E4E
}

.tech-table table,
.tech-table thead,
.tech-table tbody {
  display: block;
  width: 100%;
}

.tech-table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.tech-table-wrapper table {
  min-width: 100%;
}

.tech-table-head-sticky {
  position: sticky;
  top: 6.1rem;
  z-index: 3;
}

.tech-table-head-scroll {
  overflow: hidden;
}

.tech-table-head-scroll table {
  min-width: 100%;
}

.tech-table tbody{
  position: relative;
  z-index: 1;
}

.tech-table thead tr {
  border-top: 1px solid rgba(45, 62, 78, 0.28);
  background: rgba(255, 255, 255, 1);
}
.tech-table tr {
  display: flex;
  border-bottom: 1px solid rgba(45, 62, 78, 0.28);
}
.tech-table tr:not(.tech-title):nth-child(even) {
  background: rgba(242, 243, 244, 1);
  border-top: none;
}
.tech-table th,
.tech-table td {
  flex: 1 1 0;
  min-width: 0;
  padding: 1.4rem 2rem;

  text-align: left;
  word-break: break-word;
}

.tech-table tbody th,
.tech-table tr > *:first-child {
  font-weight: 400;
}

.tech-table tr > *:first-child {
  flex: 0 0 25%;
  padding-left: 0;
  font-weight: 500;
}

.tech-table thead th {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  font-weight: 400;
  text-transform: uppercase;
}

.tech-table tr.tech-title {
  cursor: pointer;

}

.tech-table tr.tech-title > * {
  display: flex;
  align-items: center;
  flex: 1 1 auto;
  justify-content: space-between;
  gap: 2rem;
  padding: 2.4rem 0;
  font-size: 2.6rem;

}

.tech-table tr.tech-title > *::after {
  content: "";
  flex: 0 0 auto;
  width: 1.4rem;
  height: 1.4rem;
  background:
    linear-gradient(currentColor, currentColor) center / 1.4rem 0.1rem no-repeat,
    linear-gradient(currentColor, currentColor) center / 0.1rem 1.4rem no-repeat;
}

.tech-table tr.tech-title.open > *::after {
  background: linear-gradient(currentColor, currentColor) center / 1.4rem 0.1rem
    no-repeat;
}

.tech-table tr.hide {
  display: none;
}


.tech-table {
  --tech-symbols: "Segoe UI Symbol", "Apple Symbols", "Noto Sans Symbols 2",
    sans-serif;
}

.tech-table td,
.tech-table .tech-legend {
  font-family: "PFDinText", var(--tech-symbols);
}

.tech-table .right {
  text-align: right;
}

.tech-table .tech-note {
  padding-top: 3rem;
}

.tech-table .tech-legend {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  padding-top: 4rem;
  font-size: 1.8rem;
  font-weight: 500;
}


.feature-carousel__arrow--prev {
  left: 6rem;
}

.feature-carousel__arrow--next {
  right: 6rem;
}

.feature-carousel__arrow span {
  width: 1.1rem;
  height: 1.1rem;
  border-top: 0.2rem solid #fff;
  border-right: 0.2rem solid #fff;
}

.feature-carousel__arrow--prev span {
  transform: rotate(-135deg);
}

.feature-carousel__arrow--next span {
  transform: rotate(45deg);
}

.feature-carousel__arrow.swiper-button-disabled {
  opacity: 0.35;
  pointer-events: none;
}

/* SCRN8 section */

.scrn8-bg {
  background-color: rgba(251, 251, 251, 1);
}

.scrn8 {
  padding: 11.9rem 0 16.2rem;
  display: flex;
  flex-direction: row-reverse;
  gap: 15.7rem;
  color: #2d3e4e;
}

.scrn8 .scrn-content {
  flex-direction: row;
}

/* Dealers */

.map-container {
  position: relative;
  width: 100%;
  height: calc(100dvh - 7.2rem - 25.5rem);
  min-height: 65rem;
}

#map {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.map-balloon {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 36.6rem;
  max-width: 90vw;
}

.map-balloon-card {
  position: relative;
  width: 100%;
  padding: 3.8rem 4.1rem 5rem;
  background-color: #fff;
  border-radius: 2rem;
  box-shadow: 0 0.8rem 3rem rgba(0, 0, 0, 0.18);
}

.map-balloon-close-btn {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 1.5rem;
  height: 1.5rem;
  padding: 0;
  border: none;
  background-color: transparent;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.2s ease;
}

.map-balloon-close-btn:hover {
  opacity: 1;
}

.map-balloon-close-btn img {
  display: block;
  width: 100%;
  height: 100%;
}

.map-balloon-title {
  padding-right: 3rem;
  font-size: 2rem;
  line-height: 3rem;
  text-transform: uppercase;
  color: rgba(45, 62, 78, 1);
}

.map-balloon-d {
  margin: 1.8rem 0;
  height: 1px;
  background-color: rgba(217, 217, 217, 1);
}

.map-balloon-body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.map-balloon-field {
  font-weight: 300;
  font-size: 1.6rem;
  line-height: 2.4rem;
  color: rgba(45, 62, 78, 1);
}

.map-balloon-field a {
  color: inherit;
  text-decoration: none;
}

.map-balloon-link-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.5rem;
  padding: 1.3rem 2rem;
  background-color: rgba(42, 89, 253, 1);
  color: #fff;
  font-size: 1.4rem;
  font-weight: 500;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  transition: opacity 0.2s ease;
}

.map-balloon-link-btn:hover {
  opacity: 0.8;
}

.map-balloon-tail {
  width: 1.8rem;
  height: 1.8rem;
  margin-top: -0.9rem;
  background-color: #fff;
  transform: rotate(45deg);
  box-shadow: 0.3rem 0.3rem 0.4rem -0.3rem rgba(0, 0, 0, 0.15);
}

.map-cluster-badge {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  color: rgba(42, 89, 253, 1);
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -0.5rem;
  right: -0.5rem;
  font-size: 1.4rem;
  box-shadow: 0 0.2rem 0.6rem rgba(0, 0, 0, 0.25);
}

.dealers-container {
  position: absolute;
  top: 4.8rem;
  bottom: 4.8rem;
  left: 4rem;
  z-index: 10;
  width: 50rem;
  max-width: 100%;
  height: auto;
  background-color: #fff;
  box-shadow: 0.4rem 0 2rem rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
}

.dealers-search-dl {
  position: relative;
  flex-shrink: 0;
  padding: 3.6rem 6.8rem 3.7rem;
  background-color: rgba(243, 243, 245, 1);
}

.search-bar {
  display: flex;
  flex-direction: row;
  border-bottom: 1px solid rgba(45, 62, 78, 1);
  padding-bottom: 1rem;
}

.dealers-search-input-dl {
  width: 100%;
  border: none;
  outline: none;
  padding: 0 3rem 0 0;
  background-color: transparent;
  font-weight: 300;
  font-size: 1.6rem;
  color: rgba(45, 62, 78, 1);
}

.dealers-search-input-dl::placeholder {
  color: rgba(45, 62, 78, 1);
}

.search-icon {
  width: 2.2rem;
  height: auto;
}

.dealers-list-dl {
  flex: 1;
  overflow-y: auto;
  scrollbar-color: rgba(42, 89, 253, 1) transparent;
  scrollbar-width: thin;
  padding: 2.6rem 0;
}

.dealers-list-dl::-webkit-scrollbar {
  width: 0.5rem;
}

.dealers-list-dl::-webkit-scrollbar-thumb {
  background-color: rgba(42, 89, 253, 1);
  border-radius: 1rem;
}

.dealers-item {
  border-bottom: 1px solid rgba(217, 217, 217, 1);
  max-width: 36.6rem;
  width: 100%;
  margin: 0 auto;
}

.dealers-item:last-child {
  border-bottom: none;
}

.dealer-item-dl.active-dl .dealer-header-dl {
  border-bottom: 1px solid rgba(217, 217, 217, 1);
}

.dealer-header-dl {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem 0;
  cursor: pointer;
  user-select: none;
}

.dealer-header-dl span {
  font-size: 2rem;
  text-transform: uppercase;
  color: rgba(45, 62, 78, 1);
}

.dealer-chevron-dl {
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  border-right: 2px solid rgba(45, 62, 78, 1);
  border-bottom: 2px solid rgba(45, 62, 78, 1);
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}

.dealer-item-dl.active-dl .dealer-header-dl .dealer-chevron-dl {
  transform: rotate(-135deg);
}

.dealer-body-dl {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows 0.35s ease;
}
.dealer-item-dl.active-dl .dealer-body-dl {
  grid-template-rows: 1fr;
}

.dealer-body-inner {
  min-height: 0;
  overflow: hidden;
  padding: 0;
  transition: padding 0.35s ease;
}
.dealer-item-dl.active-dl .dealer-body-inner {
  padding: 1.9rem 0 1.9rem;
}

.dealer-field-dl {
  color: rgba(45, 62, 78, 1);
  margin-bottom: 1rem;
}

.dealer-field-dl a {
  color: inherit;
  text-decoration: none;
}

.dealer-actions-dl {
  display: flex;
  gap: 1rem;
  margin-top: 2.6rem;
}

.dealer-site-btn-dl a {
  font-size: 1.6rem;
  text-decoration: none;
  color: rgba(45, 62, 78, 1);
}

.dealer-actions-dl .btn {
  padding: 1.3rem 2rem 1.1rem;
  font-size: 1.6rem;
  max-width: none;
  flex: 1;
  text-align: center;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Offers */
.offers-banner {
  background-image: url(/static/img/offer-banner.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.offers-head,
.offer-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.1rem;
  padding: 10.8rem 0 9.7rem;
  max-width: 100rem;
  margin: 0 auto;
  color: #fff;
}

.crumbs {
  display: inherit;
  flex-direction: row;
  align-items: inherit;
  gap: 1rem;
  text-transform: uppercase;
}

.crumbs a {
  color: #fff;
}

.crumbs h2 {
  font-size: 1.6rem;
}

.divider-crumbs {
  transform: translateY(0.25rem);
}

.offers {
  padding: 10rem 0 6.6rem;
  display: flex;
  flex-direction: column;
  gap: 7rem;
}

.grid-offer-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5.025rem 2rem;
}

.grid-offer-cards .promo-slide .image-wrapper,
.other-offers .promo-slide .image-wrapper {
  max-height: 40.8rem;
}

.grid-offer-cards .promo-slide .image-wrapper img,
.other-offers .promo-slide .image-wrapper img {
  object-fit: cover;
  height: 40.8rem;
}

.grid-offer-cards .promo-content,
.other-offers .promo-content {
  height: auto;
}

.pagination {
  display: flex;
  flex-direction: row;
  gap: 4.8rem;
  margin: 0 auto;
}

.pag-btn {
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  border: 1px solid rgba(45, 62, 78, 1);
  background-color: transparent;
}

.prev-btn::after,
.next-btn::after {
  display: flex;
  content: "";
  width: 0.834rem;
  height: 0.834rem;
  border-left: 2px solid rgba(45, 62, 78, 1);
  border-bottom: 2px solid rgba(45, 62, 78, 1);
}

.prev-btn::after {
  transform: translateX(1.844rem) rotate(45deg);
}

.next-btn::after {
  transform: translateX(1.544rem) rotate(225deg);
}

.pages-pagination {
  display: inherit;
  flex-direction: inherit;
  align-items: center;
  gap: 2.6rem;
}

.pages-pagination a {
  color: rgba(45, 62, 78, 1);
  height: auto;
}

.pages-pagination a:nth-child(even) {
  text-decoration: none;
}

.page__pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2.6rem;
  width: 100%;
  margin: 0 auto 8rem;
}

.page__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(45, 62, 78, 1);
  font-size: 1.6rem;
  line-height: 1;
  transition: opacity 0.2s ease;
}

.page__link--number {
  min-width: 1.4rem;
  text-decoration: underline;
  text-underline-offset: 0.3rem;
}

.page__link--number:hover,
.page__link--number.active {
  opacity: 0.6;
}

.page__link--arrow {
  width: 4.5rem;
  height: 4.5rem;
  border: 0.1rem solid rgba(45, 62, 78, 1);
  border-radius: 50%;
}

.page__link--arrow:hover {
  opacity: 0.6;
}

.page__link--arrow.is-disabled {
  pointer-events: none;
}

.page__link--arrow svg {
  width: 0.9rem;
  height: auto;
}

.page__link--arrow svg path {
  fill: currentColor;
}

.page__ellipsis {
  color: rgba(45, 62, 78, 1);
  font-size: 1.6rem;
  line-height: 1;
}

/* Offer */

.offer-banner {
  background-color: rgba(243, 243, 245, 1);
}

.offer-head {
  padding: 7.8rem 0 7.3rem;
}

.offer-head,
.offer-head .crumbs a {
  color: rgba(45, 62, 78, 1);
  text-align: center;
}

.offer-exp-date {
  position: relative;
  top: auto;
  left: auto;
  font-size: 1.6rem;
  padding: 0.6rem 1.7rem;
}

.offer-banner-1 {
  height: 100dvh;
  min-height: 75rem;
}

.offer-banner-1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

article {
  padding: 6rem 0 11.2rem;
  margin: 0 auto;
}

article h4 {
  color: rgba(45, 62, 78, 1);
}

.article {
  display: flex;
  flex-direction: column;
  gap: 5rem;
  max-width: 107.2rem;
}

.part-one {
  padding-bottom: 6.4rem;
}

.part-two {
  padding-top: 6.7rem;
  gap: 4.2rem;
}

.subarticle {
  display: inherit;
  flex-direction: inherit;
  gap: 3rem;
}

.frame-article {
  display: flex;
  align-items: center;
  padding: 5.2rem 7.4rem;
  border: 1px solid rgba(42, 89, 253, 1);
}

.frame-article h4 {
  color: rgba(45, 62, 78, 1);
}

.article-list {
  display: inherit;
  flex-direction: inherit;
  gap: 3rem;
}

.article-list h4 {
  font-size: 1.6rem;
}

.a-list,
.an-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  list-style: none;
}

.a-list li,
.an-list li {
  position: relative;
  counter-increment: my-counter;
  padding-left: 3rem;
}

.a-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 35%;
  width: 5px;
  height: 5px;
  background-color: rgba(42, 89, 253, 1);
}

.an-list li::before {
  content: counter(my-counter) ".";
  position: absolute;
  left: 0;
  color: rgba(42, 89, 253, 1);
  transform: translateY(0.3rem);
}

.roulette {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.roulette-pagination {
  gap: 2.5rem;
}

.roulette-pagination .pages-pagination {
  gap: 0;
}

.roulette-pagination .pages-pagination a {
  text-decoration: none;
}

.roulette-slide {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 54.8rem;
}

.roulette-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.advertisement {
  display: flex;
  background-color: rgba(42, 89, 253, 1);
  padding: 8.8rem 0 7.7rem;
}

.ad-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.6rem;
  width: 100%;
  max-width: 100rem;
  margin: 0 auto;
  text-align: center;
}

.ad-content h4 {
  color: #fff;
}

.divider-article {
  width: 100%;
  height: 0;
  border-bottom: 1px solid rgba(217, 217, 217, 1);
}

.share-friends {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2.1rem;
}

.socials-icons-article {
  display: inherit;
  flex-direction: inherit;
  align-items: inherit;
  gap: 2.7rem;
}

.social-icon-a {
  width: auto;
  height: 2rem;
}

.vk-icon {
  height: 1.7rem;
}

.fb-icon {
  height: 2.2rem;
}

.form-bg {
  background-color: rgba(242, 243, 244, 1);
  padding: 8.6rem 0 11.7rem;
}
#feedback-form {
  padding: 8rem 0;
}
.form-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 76rem;
  margin: 0 auto;
}

.form-container h1,
.form-container h2 {
  font-size: 5.5rem;
  text-transform: uppercase;
}

.form-container form {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
  max-width: 80rem;
  width: 100%;
  margin: 0 auto;
}

.form-input {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(0, 0, 0, 1);
  padding: 0 0 1.4rem;
  color: rgba(0, 0, 0, 1);
  font-size: 1.6rem;
  outline: none;
}


.form-input:focus {
  border-bottom: 1px solid rgba(0, 0, 0, 1);
}

.consent-wrapper {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-size: 1.6rem;
}

.form-checkbox {
  width: 2.3rem;
  height: 2.3rem;
  cursor: pointer;
  color: white;
}

.form-btn {
  width: 100%;
  max-width: 100%;
}
.rubric-text {margin-bottom: 4rem;}
.consent-submit {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7.1rem;
  margin-top: 3.6rem;
}

.other-offers-section {
  padding: 11.2rem 0 12rem;
  display: flex;
  flex-direction: column;
  gap: 3.6rem;
}

.other-offers-section h2 {
  font-size: 5.5rem;
  text-align: center;
  text-transform: uppercase;
}

.other-offers-container {
  width: 100%;
  overflow: hidden;
}

.other-offers {
  display: flex;
  flex-direction: row;
  gap: 2rem;
}

.text-page-hero {
  width: 100%;
  background-color: rgba(243, 243, 245, 1);
}

.form-page-hero {
  position: relative;
  overflow: hidden;
}

.form-page-hero.has-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

.form-page-hero__background {
  position: absolute;
  inset: 0;
}

.form-page-hero__background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.form-page-hero.has-image .text-page-head {
  position: relative;
  z-index: 1;
  color: #fff;
}

.text-page-head {
  width: 100%;
  max-width: 107.2rem;
  margin: 0 auto;
  padding: 7.8rem 0 7.3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.1rem;
  text-align: center;
  color: rgba(45, 62, 78, 1);
}

.text-page-head h1 {
  font-size: 5.5rem;
  line-height: 1;
  text-transform: uppercase;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 1.6rem;
  line-height: 1.2;
  text-transform: uppercase;
}

.breadcrumbs > span {
  display: inline-flex;
  align-items: center;
  line-height: inherit;
}

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

.breadcrumbs a:hover {
  opacity: 0.65;
}

.breadcrumbs .sep {
  transform: translateY(-0.05rem);
}

.text-page-body {
  width: 100%;
  padding: 8rem 0 11.2rem;
}

.text-page-body > .text {
  width: 100%;
  max-width: 162rem;
  margin: 0 auto;
}

.text {
  color: rgba(45, 62, 78, 1);
  font-size: 1.8rem;
  line-height: 1.6;
  overflow-wrap: anywhere;
}

.text > * + * {
  margin-top: 2.4rem;
}

.text > :first-child {
  margin-top: 0;
}

.text h1,
.text h2,
.text h3,
.text h4 {
  margin-top: 4rem;
  color: inherit;
  line-height: 1.2;
}

.text h1 {
  font-size: 4rem;
}

.text h2 {
  font-size: 3rem;
}

.text h3 {
  font-size: 2.4rem;
}

.text h4 {
  font-size: 2rem;
}

.text p,
.text li {
  line-height: 1.6;
}

.text p + p {
  margin-top: 1.6rem;
}

.text ul,
.text ol {
  padding-left: 2.4rem;
}

.text li::marker {
  color: rgba(42, 89, 253, 1);
  font-weight: 500;
}

.text li + li {
  margin-top: 1rem;
}

.text a {
  color: rgba(42, 89, 253, 1);
  text-decoration: underline;
  text-underline-offset: 0.2rem;
}

.text img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.text iframe,
.text video {
  max-width: 100%;
  width: 100%;
  height: auto;
  min-height: 32rem;
}

.text hr {
  height: 0.1rem;
  border: 0;
  background-color: rgba(217, 217, 217, 1);
}

.text table {
  width: 100%;
  overflow-x: auto;
  border-collapse: collapse;
}

.text th,
.text td {
  padding: 1.4rem 1.6rem;
  border: 0.1rem solid rgba(217, 217, 217, 1);
  text-align: left;
  vertical-align: top;
}
.text th {
  font-weight: 500;
}
.text blockquote {
  padding: 3rem;
  border: 1px solid rgba(42, 89, 253, 1);
  font-size: 2rem;
  text-wrap: balance;
  text-align: center;
}
.text blockquote p {
  font-weight: 500;
}
.text .carousel-2 {
  position: relative;
  width: 100%;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  body,
  html {
    font-size: calc(10 / 480 * 100vw);
  }

  section {
    max-width: 44rem;
  }

  h1,
  .h1,
  h2 {
    font-size: 30px;
  }

  h3 {
    font-size: 1.5rem;
    line-height: 100%;
  }

  p,
  ul,
  li,
  td,
  label {
    font-weight: 300;
    line-height: normal;
    font-size: 14px;
  }

  .burger-menu {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    margin: 0;
  }

  .burger-menu img {
    width: 3.2rem;
    height: auto;
  }

  .desktop-btn {
    display: none;
  }

  .mobile-btn {
    display: block;
    max-width: 100%;
    margin-top: 0.5rem;
  }

  .header-main {
    padding: 1.5rem 0;
  }

  .logo-icon {
    width: 5rem;
    height: auto;
  }

  .logo-nav nav {
    display: none;
  }

  .socials-lng-icons {
    display: none;
  }

  .lang {
    display: none;
  }

  .footer-logo {
    display: none;
  }

  footer {
    min-height: 0;
    background-image: url(/static/img/footer-mobile-bg.png);
    background-position: center bottom;
    background-size: 46rem 18.4rem;
  }

  .footer-main {
    width: 100%;
    max-width: 44rem;
    min-height: 0;
    margin: 0 auto;
    padding: 4rem 0 5rem;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 3rem;
  }

  .footer-logo-cols {
    order: 3;
    flex: none;
    width: 100%;
    display: flex;
    flex-direction: row;
  }

  .footer-cols {
    display: none;
  }

  .footer-logo-col {
    flex: 1 1 auto;
    align-items: center;
    gap: 0;
  }

  .socials-footer {
    order: 2;
    flex: none;
    display: flex;
    flex-direction: row;
    justify-self: auto;
    margin-left: 0;
  }

  .footer-legal {
    order: 1;
    flex: none;
    top: 0;
    width: 100%;
    padding-left: 1.5rem;
    font-size: 12px;
    line-height: 1.3;
  }
  #feedback-form {
    padding: 0;
  }

  /* Mp section */
  .banner-swiper-section {
    position: relative;
    z-index: 6000;
    margin-top: -7.2rem;
  }

  body.header-over-banner .banner-swiper-section {
    margin-top: 0;
  }

  .banner-swiper-container {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    position: relative;
    z-index: 4;
  }

  .banner-swiper {
    width: 100%;
    height: 100%;
    position: relative;
  }

  .left-side-banner {
    width: 100%;
    gap: 2.6rem;
    padding: 3rem 2rem;
  }

  .banner-content {
    display: inherit;
    flex-direction: inherit;
    color: #fff;
    gap: 1rem;
    align-items:center;
  }

  .banner-head {
    font-size: 6rem;
    line-height: 100%;
    letter-spacing: 10%;
  }

  .banner-content p {
    font-size: 2rem;
    line-height: 100%;
  }

  .banner-content span {
    font-size: 4rem;
  }

  .banner-content-image {
    max-width: 100%;
  }

  .warranty-logo {
    right: 2rem;
    bottom: 8rem;
  }

  .warranty-logo img {
    max-width: 11rem;
    max-height: 8rem;
  }

  .btn {
    font-size: 1.6rem;
    padding: 2.1rem 10rem;
  }

  .banner-arrow {
    display: none;
  }

  .banner-progress {
    left: 2rem;
    transform: translateX(0);
    gap: 6.35rem;
    width: calc(100% - 4rem);
  }

  .banner-pause-btn {
    height: 2rem;
    width: auto;
  }

  .banner-progress-bars {
    gap: 0.5rem;
    max-width: 29.5rem;
  }

  .pause-icon img {
    width: auto;
    height: 2rem;
  }

  /* Models section */
  .models-selection-section {
    background-position: bottom;
    background-size: 100% 26.9rem;
  }

  .models-selection-section::after {
    height: 28.8rem;
  }

  .models-selection-inner {
    padding: 5rem 0rem 3.3rem;
    gap: 3.6rem;
  }

  .ms-head {
    gap: 0.7rem;
  }

  .ms-head h2 {
    font-size: 3rem;
    line-height: 3.5rem;
  }

  .models-progress {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 1rem;
  }

  .model-card {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
    position: relative;
    padding: 0;
  }

  .car-model {
    margin-bottom: 0rem;
    width: 100%;
  }

  .model-card:hover .model-name-grey {
    display: block;
    transform: translateY(0);
  }

  .model-card:hover .model-name-blue {
    display: none;
  }

  .model-card-content {
    gap: 3rem;
    padding: 0;
  }

  .mc-txt-content {
    gap: 1rem;
  }

  .mcc-head {
    gap: 0.9rem;
  }

  .mcc-tag {
    margin-bottom: 0.7rem;
  }

  .model-btn {
    position: static;
    display: block;
    opacity: 1;
    visibility: visible;
    padding: 2rem 0;
    text-wrap: nowrap;
  }

  /* Offer section */
  .offer-section {
    max-width: 100%;
    background-color: #fff;
  }

  .offer-inner {
    max-width: 100%;
    padding: 5.9rem 0 6.1rem;
    gap: 2.6rem;
  }

  .promo-swiper-container {
    overflow: hidden;
  }

  .promo-swiper {
    padding: 0 2rem;
    overflow: visible;
  }

  .promo-slide {
    display: flex;
    flex-direction: column;
    background-color: rgba(242, 243, 244, 1);
  }

  .promo-slide .image-wrapper {
    position: relative;
    overflow: hidden;
    height: auto;
  }

  .promo-slide .image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
  }

  .exp-date {
    position: absolute;
    top: 2.4rem;
    left: 2.4rem;
    background-color: rgba(42, 89, 253, 1);
    color: #fff;
    padding: 0.4rem 1.2rem;
    font-size: 1.6rem;
    text-transform: uppercase;
    z-index: 1;
  }

  .promo-content {
    gap: 1.2rem;
    padding: 4.3rem 4.5rem 5rem;
    height: 100%;
  }

  .pc-head {
    font-size: 20px;
    line-height: 1.15;
    min-height: 4.8rem;
  }

  .promo-content p {
    font-size: 14px;
  }

  .promo-progress {
    display: flex;
    justify-content: center;
    margin-top: 0;
  }

  .promo-progress-bars {
    display: flex;
    gap: 0.6rem;
    width: 22rem;
  }

  .promo-progress-bar {
    height: 0.3rem;
  }

  /* Scrn4 section */

  .scrn4-bg {
    background-image: url(/static/img/blue-white-bg.jpg);
    background-size: 125.9rem 34.4rem;
    background-repeat: no-repeat;
    background-position: -63rem 6rem;
    background-color: rgba(42, 89, 253, 1);
  }

  .scrn4 {
    height: auto;
    padding: 7rem 0 7.7rem;
    gap: 16.9rem;
  }

  .mpi-head {
    color: #fff;
  }

  .scrn-head h2 {
    font-size: 30px;
    line-height: 1.15;
  }

  .scrn-head p {
    font-size: 16px;
    line-height: normal;

  }

  .mpi-car {
    right: 8.1rem;
    top: 28rem;
    width: 27.8rem;
  }

  .select-group {
    flex-direction: column;
    gap: 2rem;
    width: 100%;
    height: auto;
  }

  .select-group .select-wrapper-mpi,
  .select-group .mpi-btn {
    flex-grow: 1;
    max-width: 100%;
  }

  .select-wrapper-mpi::after {
    border-right: 2.5px solid #fff;
    border-bottom: 2.5px solid #fff;
  }

  .mpi-btn {
    color: rgba(45, 62, 78, 1);
  }

  .specials-progress {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 1rem;
  }

  /* Advantages-special section */

  .scrn5-bg {
    background-color: rgba(251, 251, 251, 1);
  }

  .scrn5 {
    padding: 7rem 0 5.3rem;
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
    max-width: 100%;
  }

  .special-head {
    width: 100%;
    max-width: 44rem;
    margin: 0 auto;
    gap: 2.5rem;
  }

  .specials-cards {
    padding: 0 2rem;
  }

  .special-card {
    flex-grow: 1;
    max-width: 52.5rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    height: auto;
  }

  .alt-sp {
    background-image:
      linear-gradient(
        to bottom,
        rgba(102, 102, 102, 0) 21%,
        rgba(0, 0, 0, 0.85) 100%
      ),
      var(--special-card-image);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 5rem 5rem 5.5rem;
  }

  .alt-sp .special-card-content {
    margin-top: auto;
    background-color: transparent;
    padding: 0;
    height: auto;
    color: #fff;
  }

  .image-wrapper-sp {
    height: 28.8rem;
  }

  .image-wrapper-sp img {
    width: 100%;
    height: 100%;
  }

  .special-card-content {
    padding: 4rem 3.5rem 4.5rem;
    gap: 1.5rem;
    align-items: center;
    text-align: center;
    flex: 1;
  }

  .special-card-content h3 {
    font-size: 20px;
  }

  .special-card-content p {
    font-size: 14px;
    line-height: normal;
  }

  .spc-btn {
    max-width: 25.5rem;
    padding: 2.1rem 0;
    width: 100%;
    margin-top: 1.9rem;
  }

  .specials-progress-bars {
    margin-top: 1.2rem;
  }

  .scrn6,
  .scrn8 {
    flex-direction: column;
  }

  /* SCRN6 section */

  .scrn6 {
    padding: 6rem 0;
    gap: 4rem;
  }

  .scrn-col {
    flex: 0 0 auto;
    max-width: 100%;
  }

  .scrn-col-content {
    display: inherit;
    flex-direction: inherit;
    gap: 2.7rem;
  }

  .scrn-col-content h2 {
    font-size: 30px !important;
    line-height: 1.15 !important;
  }

  .scrn-col-content p {
    line-height: normal;
    font-size: 16px;
  }

  .factory {
    height: auto;
    width: 100%;
  }

  .car-back-img {
    width: 100%;
    height: auto;
  }

  .scrn-content {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .scrn-subcontent {
    display: flex;
    flex-direction: column;
    gap: 4rem;
  }

  .scrn-col-subcontent {
    display: flex;
    align-items: stretch;
    gap: 13.4rem;
    line-height: normal;
  }
  .scrn-col-subcontent p {
    line-height: normal;
    font-size: 12px;
  }
  .divider-v1 {
    width: 1px;
    height: auto;
  }
  .scrn-col-subcontent {
    gap: 3.9rem;
  }

  .scrn6-btn {
    width: 100%;
    max-width: 100%;
  }

  .scrn6-btn.mobile-btn {
    display: flex;
  }

  .split-metrics {
    gap: 1.5rem;
    margin-top: 2.5rem;
  }

  .split-metrics .split-metrics__label {
    font-size: 12px;
  }

  .split-metrics strong {
    font-size: 2.2rem;
  }

  /* Banner with button */
  #shop.banner-button {
    height: auto;
    min-height: auto;
  }
  #shop .banner-button__inner {
    padding: 4rem 2rem 6rem;
  }
  #shop .banner-button__inner .banner-button__title {
    max-width: 90%
  }
  .banner-button {
    height: 100vw;
    min-height: 32rem;
  }

  .banner-button__inner{
    padding: 4rem 2rem;
  }

  .color-switcher {
    height: 40rem;
    min-height: auto;
  }

  .color-switcher__title {
    top: 5rem;
  }

  .color-switcher--layered .color-switcher__slide,
  .color-switcher--contain .color-switcher__slide {
    padding: 10rem 2rem 9rem;
  }

  .color-switcher__controls {
    bottom: 4rem;
    gap: 1rem;
  }

  .color-switcher__control {
    width: 4rem;
    height: 4rem;
  }

  .feature-tabs {
    padding: 3rem 2rem;
  }

  .feature-tabs__layout {
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: 0;
  }

  .feature-tabs__image-swiper {
    width: 100%;
    height: 32rem;
    min-height: 0;
  }

  .feature-tabs__image {
    height: 100%;
    min-height: 0;
    aspect-ratio: auto;
  }

  .feature-tabs__content {
    padding: 4rem 2rem 5rem;
  }

  .feature-tabs__previews {
    gap: 1rem;
    margin-bottom: 4rem;
  }

  .feature-tabs__preview {
    flex-basis: 5.5rem;
    width: 5.5rem;
    height: 5.5rem;
  }

  .feature-list__inner {
    padding: 5rem 2rem;
  }

  .feature-list__header {
    margin-bottom: 4rem;
  }

  .feature-list__grid {
    grid-template-columns: 1fr;
    gap: 5rem;
  }

  .feature-list__grid + .feature-list__grid {
    margin-top: 5rem;
  }

  .feature-list__content {
    padding-top: 2.5rem;
  }

  .feature-list__title {
    font-size: 2.2rem;
  }


  .image-compare {
    height: auto;
    min-height: 100vw;
  }

  .image-compare__sticky {
    position: relative;
    top: auto;
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: 120vw;
  }

  .image-compare__content {
    position: relative;
    top: 0;
    right: auto;
    bottom: auto;
    left: auto;
    padding: 4rem 2rem;
  }

  .image-compare__title {
    font-size: 3rem;
  }
  .image-compare__text {font-size: 14px;}
  .feature-carousel {
    padding: 6rem 0;
  }

  .feature-carousel__header {
    margin-bottom: 4rem;
  }

  .feature-carousel__slide {
    width: calc(100vw - 6rem);
  }

  .feature-carousel__content {
    padding-top: 2.5rem;
  }

  .feature-carousel__arrow {
    top: calc((100vw - 6rem) / 4);
    width: 4.5rem;
    height: 4.5rem;
  }

  .feature-carousel__arrow--prev {
    left: 1rem;
  }

  .feature-carousel__arrow--next {
    right: 1rem;
  }

  .model-gallery {
    max-width: none;
    padding: 6rem 0;
  }

  .model-gallery__inner {
    width: calc(100% - 4rem);
  }

  .model-gallery__header {
    margin-bottom: 3.5rem;
  }

  .model-gallery__title {
    font-size: 3rem;
    line-height: 1.15;
  }

  .model-gallery__intro {
    margin-top: 1.5rem;
    font-size: 1.4rem;
  }

  .model-gallery__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, 14rem);
    gap: 1rem;
    aspect-ratio: auto;
  }

  .model-gallery__item--1,
  .model-gallery__item--2,
  .model-gallery__item--3,
  .model-gallery__item--4 {
    grid-column: auto;
    grid-row: auto;
  }

  .model-gallery__more {
    width: 100%;
    min-height: 5.6rem;
    margin-top: 3rem;
    font-size: 14px;
  }

  .html-section {
    max-width: none;
    padding: 6rem 0;
  }

  .html-section__inner {
    width: calc(100% - 4rem);
    padding: 5rem 2rem;
  }

  .html-section__header {
    margin-bottom: 3rem;
  }

  .html-section__title {
    font-size: 3rem;
    line-height: 1.15;
  }

  .tech-table .html-section__inner {
    padding: 0;
  }

  .tech-table .html-section__content {
    padding:0;
    font-size: 1.4rem;
  }

  .tech-table table {
    min-width: 56rem;
  }

  .tech-table th,
  .tech-table td {
    padding: 1.2rem 1.4rem;
  }

  .tech-table tr > *:first-child {
    position: sticky;
    left: 0;
    z-index: 1;
    flex-basis: 13rem;
    background: #fff;
    box-shadow: 0.1rem 0 0 rgba(45, 62, 78, 0.16);
  }

  .tech-table tr.tech-title > *:first-child {
    z-index: 2;
    flex: 0 0 auto;
    gap: 1.4rem;
    padding: 2rem 0;
    font-size: 2rem;
    box-shadow: none;
    align-items: center;
  }

  .tech-table .tech-legend {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.4rem;
    padding-left: 0;
  }

  .html-section__button {
    width: 100%;
    font-size: 14px;
  }

  .banner-button__link {
    width: 100%;
    min-width: 0;
    max-width: 34rem;
    font-size: 14px;
    margin-top: 15px;
  }

  /* SCRN8 section */

  .scrn8-bg {
    background-color: rgba(251, 251, 251, 1);
  }

  .scrn8 {
    padding: 6.093rem 0 7.9rem;
    display: flex;
    gap: 5rem;
  }

  .scrn8 .scrn-content {
    flex-direction: column;
  }

  /* The same header markup is used for desktop and mobile. */
  .sticky-header.mobile-menu-open,
  .sticky-header.over-banner.mobile-menu-open,
  body:has(.page__car) .sticky-header.over-banner.mobile-menu-open {
    position: fixed;
    inset: 0;
    z-index: 7100;
    width: 100%;
    height: 100dvh;
    background-color: #f5f5f7;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .sticky-header.mobile-menu-open .header-main {
    background-color: #fff;
    width: 100%;
    max-width: none;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    padding: 2rem 2rem 0;
  }

  .sticky-header.mobile-menu-open .logo-nav {
    display: contents;
  }

  .sticky-header.mobile-menu-open .logo-nav > a {
    display: none;
  }

  .sticky-header.mobile-menu-open .socials-lang {
    display: contents;
  }

  .sticky-header.mobile-menu-open .socials-lng-icons {
    grid-column: 1;
    grid-row: 1;
    display: flex;
    align-items: center;
    gap: 2rem;
  }

  .sticky-header.mobile-menu-open .socials-lng-icons img {
    width: 2rem;
    height: 2rem;
  }

  .sticky-header.mobile-menu-open .lang {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    justify-self: center;
    gap: 1.5rem;
  }

  .sticky-header.mobile-menu-open .lang a {
    font-size: 14px;
  }

  .sticky-header.mobile-menu-open .burger-menu {
    grid-column: 3;
    grid-row: 1;
    width: 2.5rem;
    height: 2.5rem;
  }

  .sticky-header.mobile-menu-open .logo-nav nav {
    grid-column: 1 / -1;
    grid-row: 2;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: calc(100% + 4rem);
    margin: 2rem -2rem 0;
    border-top: 0.1rem solid rgba(217, 217, 217, 1);
    background-color: #f5f5f7;
  }

  .sticky-header.mobile-menu-open .logo-nav nav > .nav-option {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 2.4rem 2rem;
    border-bottom: 0.1rem solid rgba(217, 217, 217, 1);
    color: rgba(45, 62, 78, 1);
    font-size: 14px;
    font-weight: 500;
    text-align: left;
  }

  .sticky-header.mobile-menu-open .logo-nav nav > .nav-option span {
    color: inherit;
  }

  .sticky-header.mobile-menu-open .models-dropdown-desktop {
    position: static;
    display: block;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: none;
    box-shadow: none;
    transition:
      max-height 0.3s ease,
      opacity 0.2s ease;
  }

  .sticky-header.mobile-menu-open .models-dropdown-desktop.open {
    max-height: 300rem;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .sticky-header.mobile-menu-open .models-dropdown-desktop-container::after,
  .sticky-header.mobile-menu-open .models-dropdown-close {
    display: none;
  }

  .sticky-header.mobile-menu-open .models-dropdown-cards {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    width: 100%;
    padding: 3rem 2rem 4rem;
    border-bottom: 0.1rem solid rgba(217, 217, 217, 1);
  }

  .sticky-header.mobile-menu-open .models-dropdown-cards .model-card {
    display: grid;
    grid-template-columns: minmax(15rem, 20rem) 1fr;
    align-items: center;
    gap: 3rem;
    width: 100%;
    padding: 0;
  }

  .sticky-header.mobile-menu-open .models-dropdown-cards .image-wrapper-mc {
    width: 100%;
    height: 10rem;
  }

  .sticky-header.mobile-menu-open .models-dropdown-cards .model-card-content {
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    min-width: 0;
  }

  .sticky-header.mobile-menu-open .models-dropdown-cards .mc-txt-content {
    align-items: flex-start;
    gap: 0;
  }

  .sticky-header.mobile-menu-open .models-dropdown-cards .mcc-h {
    font-size: 2.2rem;
    line-height: 1.1;
  }

  .sticky-header.mobile-menu-open .models-dropdown-cards p {
    font-size: 12px;
    line-height: 1.2;
  }

  .sticky-header.mobile-menu-open .models-dropdown-cards .price {
    margin-top: 1rem;
    font-size: 1.8rem;
    line-height: 1.1;
  }
  .mc-txt-content span {
    font-size: 12px;
  }
  .map-container {
    height: auto;
    display: flex;
    flex-direction: column-reverse;
  }

  #map {
    height: 40rem;
  }

  .dealers-container {
    position: static;
    width: 100%;
    height: auto;
    box-shadow: none;
    border-bottom: 1px solid rgba(217, 217, 217, 1);
  }

  .dealers-list-dl {
    max-height: 100%;
    padding: 0;
  }

  .dealers-search-dl {
    padding: 2rem;
  }

  .dealers-item {
    max-width: 44rem;
  }

  .dealers-search-icon-dl {
    right: 2rem;
  }

  /* Offers */
  .offer-banner {
    background-size: cover;
  }

  .offers-head,
  .offer-head {
    gap: 1rem;
    max-width: 50rem;
    margin: 0 auto;
    color: #fff;
  }
  .offer-head {
    padding: 0 3rem;
  }
  .offers-head {
    padding: 5rem 2rem;
  }

  .offers {
    padding: 5rem 0 6.6rem;
    display: flex;
    flex-direction: column;
    gap: 7rem;
  }

  .grid-offer-cards {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .grid-offer-cards .promo-slide .image-wrapper {
    position: relative;
    max-height: 20.8rem;
  }

  .grid-offer-cards .promo-slide .image-wrapper img {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }

  .grid-offer-cards .promo-content {
    height: auto;
  }

  .pagination {
    display: flex;
    flex-direction: row;
    gap: 4.8rem;
    margin: 0 auto;
  }

  .pag-btn {
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 50%;
    border: 1px solid rgba(45, 62, 78, 1);
    background-color: transparent;
  }

  .prev-btn::after,
  .next-btn::after {
    display: flex;
    content: "";
    width: 0.834rem;
    height: 0.834rem;
    border-left: 2px solid rgba(45, 62, 78, 1);
    border-bottom: 2px solid rgba(45, 62, 78, 1);
  }

  .prev-btn::after {
    transform: translateX(1.844rem) rotate(45deg);
  }

  .next-btn::after {
    transform: translateX(1.544rem) rotate(225deg);
  }

  .pages-pagination {
    display: inherit;
    flex-direction: inherit;
    align-items: center;
    gap: 2.6rem;
  }

  .pages-pagination a {
    color: rgba(45, 62, 78, 1);
    height: auto;
    font-size: 1.6rem;
  }

  .pages-pagination a:nth-child(even) {
    text-decoration: none;
  }

  /* Offer */

  .offer-banner {
    padding: 5rem 0;
  }

  .offer-exp-date {
    position: relative;
    top: auto;
    left: auto;
  }

  .offer-banner h1,
  .offer-banner .crumbs {
    color: rgba(45, 62, 78, 1);
  }

  .offer-banner-1 {
    height: auto;
    position: relative;
    min-height: auto;
  }

  .offer-banner-1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .news-application {
    padding: 4rem 2rem;
  }
  article {
    padding: 6rem 0 11.2rem;
    margin: 0 auto;
  }

  .article {
    display: flex;
    flex-direction: column;
    gap: 5rem;
    max-width: 44rem;
  }

  .part-one {
    padding-bottom: 6.4rem;
  }

  .part-two {
    padding-top: 6.7rem;
    gap: 4.2rem;
  }

  .subarticle {
    display: inherit;
    flex-direction: inherit;
    gap: 3rem;
  }

  .frame-article {
    display: flex;
    align-items: center;
    padding: 3rem 5rem;
    border: 1px solid rgba(42, 89, 253, 1);
  }

  .article-list {
    display: inherit;
    flex-direction: inherit;
    gap: 3rem;
  }

  .article-list h4 {
    font-size: 1.6rem;
  }

  .a-list,
  .an-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    list-style: none;
  }

  .a-list li,
  .an-list li {
    position: relative;
    counter-increment: my-counter;
    padding-left: 2.5rem;
  }

  .a-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 30%;
    width: 5px;
    height: 5px;
    background-color: rgba(42, 89, 253, 1);
  }

  .an-list li::before {
    content: counter(my-counter) ".";
    position: absolute;
    left: 0;
    color: rgba(42, 89, 253, 1);
    transform: translateY(0.1rem);
  }

  .roulette {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
  }

  .roulette-pagination {
    gap: 2.5rem;
  }

  .roulette-pagination .pages-pagination {
    gap: 0.5rem;
  }

  .roulette-pagination .pages-pagination a {
    text-decoration: none;
  }

  .roulette-pagination span {
    font-size: 1.6rem;
  }

  .roulette-slide {
    width: 100%;
    height: 30rem;
  }

  .roulette-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .advertisement {
    display: flex;
    background-color: rgba(42, 89, 253, 1);
    padding: 8.8rem 0 7.7rem;
  }

  .ad-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3.6rem;
    width: 100%;
    max-width: 44rem;
    margin: 0 auto;
  }

  .share-friends {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2.1rem;
  }

  .socials-icons-article {
    display: inherit;
    flex-direction: inherit;
    align-items: inherit;
    gap: 2.7rem;
  }

  .social-icon-a {
    width: auto;
    height: 2rem;
  }

  .vk-icon {
    height: 1.7rem;
  }

  .fb-icon {
    height: 2.2rem;
  }

  .form-bg {
    background-color: rgba(242, 243, 244, 1);
    padding: 8.6rem 0 11.7rem;
  }

  .form-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 4rem 2.4rem;
    border: none;
    color: rgba(45, 62, 78, 1);
    gap: 2.9rem;
  }

  .form-container h1,
  .form-container h2 {
    font-size: 5.5rem;
    text-transform: uppercase;
  }

  .form-container form {
    display: flex;
    flex-direction: column;
    gap: 3.2rem;
    max-width: 38rem;
    width: 100%;
    margin: 0 auto;
  }

  .form-input {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 1);
    padding: 0 0 1.4rem;
    color: rgba(0, 0, 0, 1);
    font-size: 1.6rem;
    outline: none;
  }

  .form-input:focus {
    border-bottom: 1px solid rgba(0, 0, 0, 1);
  }

  .consent-wrapper {
    display: flex;
    align-items: center;
    gap: 2rem;
    font-size: 1.6rem;
  }

  .form-checkbox {
    width: 2.3rem;
    height: 2.3rem;
    cursor: pointer;
    color: white;
  }

  .form-btn {
    width: 100%;
    max-width: 100%;
  }

  .consent-submit {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 7.1rem;
    margin-top: 3.6rem;
  }

  .other-offers-section {
    padding: 5rem 0;
    display: flex;
    flex-direction: column;
    gap: 3.6rem;
  }

  .other-offers-section h2 {
    font-size: 3rem;
    text-align: center;
    text-transform: uppercase;
  }

  .other-offers-container {
    width: 100%;
    overflow: hidden;
  }

  .other-offers {
    display: flex;
    flex-direction: row;
    gap: 2rem;
  }

  .text-page-head {
    max-width: 44rem;
    padding: 3rem 2rem;
    gap: 0.5rem;
  }

  .text-page-head h1 {
    font-size: 3.6rem;
    line-height: 1.1;
  }

  .breadcrumbs {
    gap: 0.8rem;
    font-size: 12px;
  }

  .text-page-body {
    padding: 4rem 2rem;
  }

  .text-page-body > .text {
    max-width: 44rem;
    padding: 0;
  }

  .text {
    font-size: 1.6rem;
  }

  .text h1 {
    font-size: 3rem;
  }

  .text h2 {
    font-size: 2.6rem;
  }

  .text h3 {
    font-size: 2.2rem;
  }

  .text blockquote {
    padding: 2rem;
  }
  .news-card .news-card__excerpt {
    font-size: 12px;
    text-wrap: balance;
  }
  #va7-interior-space .scrn6__extra {
    max-width: 100%;
    margin-top: 2rem;
  }
  .car-nav__model {
    font-size: 2rem;
  }
  .car-nav__model,
  .car-nav__request {
    display: none;
  }

  .tech-table-head-sticky {
    top: 4.7rem;
  }
}

/* Scroll to top */
.return-wrapper {
  position: fixed;
  right: 4rem;
  bottom: 4rem;
  z-index: 5400;
  width: 6rem;
  height: 6rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(1rem);
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease,
    transform 0.25s ease;
}

.return-wrapper.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.return-wrapper.is-visible .return {
  visibility: visible;
  pointer-events: auto;
}

.return {
  position: static;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 6rem;
  height: 6rem;
  padding: 0;
  border: 0.1rem solid rgba(42, 89, 253, 1);
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0 0.4rem 1.5rem rgba(0, 0, 0, 0.1);
  visibility: hidden;
  cursor: pointer;
  pointer-events: none;
}

.return img {
  width: 2rem;
  height: auto;
}

/* Responsive overrides for news cards */
.grid-offer-cards .promo-slide.news-card .image-wrapper.news-card__image,
.other-offers .promo-slide.news-card .image-wrapper.news-card__image {
  height: auto;
  max-height: none;
  aspect-ratio: 1.91 / 1;
}

.grid-offer-cards .promo-slide.news-card .image-wrapper.news-card__image img,
.other-offers .promo-slide.news-card .image-wrapper.news-card__image img {
  width: 100%;
  height: 100%;
}

.grid-offer-cards .promo-slide.news-card .promo-content.news-card__content,
.other-offers .promo-slide.news-card .promo-content.news-card__content {
  height: auto;
  min-height: 0;
}

.promo-slide.news-card .pc-head.news-card__title,
.promo-slide.news-card .news-card__excerpt {
  min-height: 0;
}

.news-grid .promo-slide.news-card .pc-head.news-card__title {
  min-height: 6.8rem;
  align-items: center;
}

.news-grid .promo-slide.news-card .promo-btn {
  margin-top: auto;
}
.tech-disclaimer {
  margin-top: 4rem;
  font-size:1.6rem;
}

/* Video section */
.section-video {
  width: 100vw;
  max-width: none;
  padding: 8rem 0;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  overflow: hidden;
}

.section-video__inner {
  width: min(100% - 12rem, 162rem);
  margin: 0 auto;
}

.section-video__media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000;
}

.section-video__poster {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-video__media video,
.section-video__media iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}

.section-video__play {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  width: 7.2rem;
  height: 7.2rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: #2a59fd;
  color: #fff;
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: opacity 0.2s ease;
}

.section-video__play svg {
  margin-left: 0.3rem;
}

.section-video__play:hover {
  opacity: 0.85;
}

.section-video__header {
  margin-top: 4rem;
  text-align: center;
}

.section-video__title {
  margin: 0 auto;
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.2;
  text-transform: uppercase;

}
.section-video__text {
  font-size: 14px;
}
.section-video__divider {
  margin: 1.6rem auto;
}

@media screen and (max-width: 768px) {
  .return-wrapper {
    right: 2rem;
    bottom: 2rem;
    width: 5rem;
    height: 5rem;
  }

  .return {
    width: 5rem;
    height: 5rem;
  }

  .return img {
    width: 1.4rem;
  }

  .grid-offer-cards .promo-slide.news-card .image-wrapper.news-card__image,
  .other-offers .promo-slide.news-card .image-wrapper.news-card__image {
    height: auto;
    max-height: none;
    aspect-ratio: 2 / 1;
  }

  .news-grid .promo-slide.news-card .pc-head.news-card__title {
    min-height: 0;
  }
  .feature-carousel__text,
  .feature-tabs__image-swiper,
  .feature-tabs__details-swiper {
    font-size: 14px;
  }
  .banner-button__text {
    font-size: 1.8rem;
    display:none
  }
  .feature-tabs__title {
    font-size: 2.4rem;
  }
  .left-side-banner.center {
    justify-content: flex-start;
    padding-top: 10vh;
  }
  .left-side-banner{
    position: absolute;
    top: 0;
    height: 100%;
    align-items: center;
  }
  .left-side-banner.center {
    align-items: center
  }
  .banner-image{
    position: relative;
    height: 72rem;
  }
  .banner-swiper-container {
    height:auto;
    min-height: auto;
  }
  .models {
    overflow: visible;
  }
  .models .price {
    font-size: 2rem;
  }
  .models-swiper-container .swiper-slide-next .btn,
  .models-swiper-container .swiper-slide-prev .btn {
    display: none;
  }
  .models-dropdown-desktop .mcc-tag.promo {
    padding: 0.15rem 0.5rem;
    font-size: 10px;
    margin-bottom: 0;
  }
  .section-video {
    max-width: none;
    padding: 6rem 0;
  }

  .section-video__inner {
    width: calc(100% - 4rem);
  }

  .section-video__play {
    width: 5.6rem;
    height: 5.6rem;
  }

  .section-video__play svg {
    width: 16px;
    height: 20px;
  }

  .section-video__header {
    margin-top: 3rem;
  }

  .section-video__title {
    font-size: 2rem;
  }

  .section-video__text {
    max-width: none;
    font-size: 14px;
  }
}

.fancybox-slide--html .fancybox-close-small {
  padding: 4px;
}

