:root {
  --font-base: calc(10 / 1440 * 100vw);
  --font-base-mobile: calc(10 / 320 * 100vw);
}

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

html {
  font-size: var(--font-base);
  scroll-behavior: smooth;
}

body {
  font-family: "Source Sans 3", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-size: var(--font-base);
  overflow-x: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

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

main.single section:last-of-type,
main.home section:last-of-type {
  min-height: 103rem;
  overflow: hidden;
  margin-bottom: 10rem;
}

main.about section:last-of-type {
  min-height: 83.9rem;
  overflow: hidden;
}

.about .banner .bg-wrapper::before {
  content: none;
}

.about [bg="transparent"],
.about+.header[bg="transparent"] {
  color: #000;
}

.about .contacts {
  color: #fff;
}

.about+.header[bg="transparent"] img {
  filter: none;
}

main {
  flex: 1 0 auto;
}

footer {
  flex-shrink: 0;
  position: relative;
}

.footer__heading.noborder {
  padding-top: 0;
  border-top: none;
}

.hidden {
  opacity: 0;
  transition: 0.8s;
  transform: translateY(10rem);
}

.shown {
  opacity: 1;
  transform: translateY(0);
}

[bg="dark"] {
  background-color: #000;
  color: #fff;
  border-color: #fff;
}

[bg="light"] {
  background-color: #fff;
  color: #000;
  border-color: #000;
}

[bg="transparent"] {
  background-color: #00000000;
  color: #fff;
  border-color: #fff;
}

[bg="gray"] {
  background-color: #f1f1f1;
  color: #7b7b7b;
}

[bg="beige"] {
  background: #8d8d8b;
  color: #000;
}

[bg="dark-gray"] {
  background-color: #1b1b1b;
  color: #ffffff;

  .logo img {
    filter: invert(1);
  }
}

.burger-menu {
  display: none;
  position: fixed;
  width: 100dvw;
  height: 100dvh;
  overflow: hidden;
  z-index: 1001;
  flex-direction: column;
  font-size: 1.6rem;
  padding: 2rem 3.2rem;
  align-items: flex-start;
}

.link__to {
  z-index: 2;
  opacity: 0;
  position: absolute;
  inset: 0;
}

.burger-menu .nav-links {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.burger-menu.active {
  display: flex;
}

.header[bg="transparent"]:has(.burger-menu.active) {
  background: #fff;
}

.burger-menu .btn {
  margin-bottom: 2.2rem;
}

.lang-select.mob {
  display: none;
  font-size: 1.1rem;
  color: inherit;
  margin: 5.2rem 0;
}

.menu__model {
  position: fixed;
  top: 0;
  z-index: 2000;
  background: #000;
  color: #fff;
  height: 100%;
  width: 54rem;
  display: flex;
  flex-direction: column;
  padding: 2.5rem 6rem 0 15.6rem;
  align-items: center;
  transform: translateX(-100%);
  transition: 0.6s;
  overflow-y: scroll;
}

.menu__model::-webkit-scrollbar {
  display: none;
}

.menu__model {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.menu__model.open {
  transform: translateX(0);
}

ul {
  list-style: none;
}

.text__page ul {
  list-style: disc inside;
}

.text__page table {
  border-collapse: collapse;
  width: 100%;
  table-layout: fixed;
}

.text__page table p {
  margin: 0;
}

.text__page td {
  border: 1px #000 solid;
  text-align: center;
  padding: 2rem;

}

.menu__translate {
  transition: transform 0.6s ease;
  transform: translateX(54rem);
}

.menu__translate:first-of-type {
  transition-delay: 0;
}

.menu__translate:nth-of-type(2) {
  transition-delay: 0.1s;
}

.menu__translate:last-of-type {
  transition-delay: 0.2s;
}

.menu__model ul {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.menu__model ul li {
  cursor: pointer;
  position: relative;
}

.menu__model ul .chevron {
  width: 1.5rem;
  display: none;
}

.menu__model ul li:hover .chevron {
  display: block;
}

.menu__model ul .car_preview {
  width: 60%;
  object-fit: scale-down;
  max-height: 10rem;
  margin-bottom: 0.8rem;
}

.menu__model .model__icon {
  max-height: 50px;
  max-width: 13.1rem;
}

.model__icon {
  max-width: 21.1rem;
  height: 3rem;
  object-fit: scale-down;
  object-position: left;
}

.menu__model ul li a {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
}

.menu__heading {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
  margin-bottom: 3.2rem;

  img {
    width: 1.245rem;
  }
}

.menu__links a {
  padding: 1.2rem 1rem;
  border-bottom: 1px solid;
}

.container {
  padding: 5rem 15.6rem 6rem;
  width: 100%;
  position: relative;
}

.rounded_container {
  padding: 3.9rem;
  width: 100%;
  position: relative;
  min-height: 58.5rem;
  margin-bottom: 4.4rem;
  border-radius: 1.5rem;
}

.rounded_container .bg-wrapper img {
  border-radius: 1.5rem;
}

.dealership__btn {
  margin-left: auto;
}

.rounded_container .content {
  display: block;
  position: relative;
  z-index: 3;
  text-align: center;
  width: 60%;
  margin: 0 auto;
}

a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  font-weight: 400;
}

[bg="light"] a {
  color: #000;
}

[bg="dark"] .logo,
[bg="transparent"] .logo {
  filter: invert(1);
}

.header {
  width: 100%;
  position: fixed;
  top: 0;
  transition: 0.4s;
  z-index: 1000;
}

h4,
h1,
h3,
.text-lg,
.text-md,
.text-sm,
.text-xs,
.text-xl,
p {
  font-weight: 350;
}

.text {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
}

.text h3,
.text h4 {
  font-size: 2rem;
  margin-bottom: 2rem;
  font-weight: 600;
  line-height: 1.3;
}

.text p {
  margin-bottom: 3rem;
}

.text ul:has(h3),
.text ul:has(h4) {
  margin-bottom: 0;
}

.text ul {
  list-style: disc;
  padding-left: 1.6rem;
}

.text ul {
  margin-bottom: 3rem;
}

.single section:last-child .bg-wrapper {
  inset: revert;
  bottom: 0;
  height: 100rem;
  left: 0;
  width: 100%;
}

.header .container {
  padding: 1.4rem 15rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.text__black {
  color: #000;
}

.text__white {
  color: #fff;
}

.header .logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.header__section {
  display: flex;
  align-items: center;
  gap: 5.2rem;
}

.header__section:first-child {
  gap: 3.2rem;
}

.lang-select {
  display: flex;
  align-items: center;
}

.lang-select a,
.lang-select span {
  text-align: center;
  text-transform: uppercase;
}

.lang-select a.active {
  color: #7b7b7b;
}

.lang-select span {
  margin: 0 1.4rem 0 1.5rem;
}

h2 {
  font-size: 3.5rem;
  font-weight: 500;
}

h4 {
  font-size: 3.2rem;
  font-weight: 500;
}

h3 {
  font-size: 4rem;
  font-weight: 400;
}

h1 {
  font-size: 6.5rem;
}

h5 {
  font-size: 2.8rem;
}

.text-xxl {
  font-size: 3.2rem;
}

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

.text-lg {
  font-size: 1.8rem;
}

.text-md {
  font-size: 1.6rem;
}

.text-sm {
  font-size: 1.4rem;
}

.text-xs {
  font-size: 1.3rem;
}

.text-xxs {
  font-size: 1.2rem;
}

.uppercase {
  text-transform: uppercase;
}

.bold {
  font-weight: 600;
}

img {
  width: 100%;
  height: 100%;
  -webkit--webkit-object-fit: cover;
  object-fit: cover;
}

.btn {
  border: 1px solid;
  padding: 0.6rem 1.4rem;
  font-size: 1.4rem;
  background: none;
}

.btn.btn__black {
  background: #000;
  color: #fff;
}

.banner {
  height: 100vh;
  position: relative;
  min-height: 700px;
}

.bg-wrapper {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.swiper-button-next,
.swiper-button-prev {
  top: 27%;
}

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 4.7rem;
  left: 15.6rem;
  width: fit-content;
}

.swiper-pagination-bullet-active {
  background: #fff;
  opacity: 1 !important;
}

.swiper-pagination-bullet {
  border-radius: 0;
  width: 2.2rem;
  height: 0.1rem;
  background: #fff;
  opacity: 0.5;
}

.banner__content {
  z-index: 10;
  position: absolute;
  left: 15.7rem;
  top: 17vh;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: calc(100% - 31.4rem);
}

.banner .btn {
  /* position: absolute;
  right: 15.6rem;
  bottom: 9rem; */
}

.banner__content .text-sm {
  margin: 0.773rem 0 1.3rem;
}

.banner__content .text-sm p img {
  margin-bottom: 1rem;
}

.banner__content .text-sm img {
  height: revert-layer;
  width: auto;
}

.banner__content .btn-container {
  width: 100%;
}

.models {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.noscroll {
  overflow: hidden;
}

.select__slider {
  display: flex;
  align-items: center;
  margin: 2.5rem 0 5.9rem;
  justify-content: space-between;
  gap: 5.7rem;
  color: #acacac;
}

.select__slider div {
  cursor: pointer;
}

.select__slider .text-md:first-child {
  margin-right: 1rem;
}

.select__slider .text-md.active {
  color: #000;
  font-weight: 400;
}

.model__details-block {
  display: flex;
  align-items: center;
  gap: 6.85rem;
  margin: 2.3rem 0 6.4rem;
  justify-content: center;
}

.model__details-block+a.btn {
  display: inline-block;
}

.model__detail {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-left: 1.95rem;
  border-left: 1px solid;
}

.models__slider {
  height: auto;
  width: 100%;
  text-align: center;
}

.models__slider img {
  object-fit: scale-down;
  width: 77.4rem;
  height: 32.4rem;
}

.swiper-button-next,
.swiper-button-prev {
  color: inherit;
}

.swiper-button-next {
  right: 10%;
}

.swiper-button-prev {
  left: 10%;
}

.models__slider {
  display: flex;
}

.ecology {
  height: 69.2rem;
  display: flex;
  position: relative;
}

.ecology__content {
  margin: auto 15.7rem;
}

.section__title {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  font-size: 1.6rem;
  font-weight: 200;
  text-transform: uppercase;
}

.section__title h6 {
  font-size: 20px;
  font-weight: 400;
  margin-left: 10px;
}

.ecology__content .section__title {
  font-size: 1.5rem;
  margin-bottom: 3.9rem;
}

.section__title img {
  width: 6.6rem;
  height: 1.3rem;
}

.ecology__content .text-md.uppercase {
  margin: 1rem 0 5rem;
}

.ecology__content .text-xxl {
  width: 80%;
}

.battery__grid {
  display: flex;
  gap: 2.4rem;
  align-items: stretch;
  margin-top: 5.3rem;
  height: 100%;
}

.battery__grid_column_1 {
  width: 70%;
  display: flex;
  flex-wrap: wrap;
  column-gap: 2.4rem;
  row-gap: 2.8rem;
}

.battery__block {
  background-color: #f1f1f1;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.battery__grid_column_1 .battery__block {
  flex-basis: 48.4%;
  flex-grow: 0;
}

.battery__grid_column_1 .battery__block:first-child {
  flex-basis: 100%;
}

.battery__grid_column_2 {
  width: 30%;
  flex-direction: column;
  display: flex;
  gap: 2rem;
  justify-content: space-between;
}

.battery__grid_column_2 .battery__block:last-child {
  flex-grow: 1;
}

.battery__grid_column_2 .battery__block:last-child img {
  object-fit: none;
}

.block__content {
  padding: 1rem 2rem;
}

.battery.container {
  padding: 6.2rem 15.6rem;
}

.block__content .text-md {
  line-height: 2.9rem;
}

.block__content .text-sm {
  color: #7b7b7b;
  line-height: 2rem;
}

.block__content:hover {
  max-height: 100%;
}

.battery__image {
  height: 100%;
}

.battery__image img {
  -webkit-object-fit: cover;
  object-fit: cover;
}

.battery__grid_column_1 .battery__block:first-child .battery__image {
  height: 77%;
}

.promo .section__title {
  margin: 0 15.7rem 4.4rem;
}

.promo__slider {
  height: 60.4rem;
  margin-bottom: 5.3rem;
}

.promo__content {
  position: absolute;
  left: 76.3rem;
  top: 16.2rem;
  line-height: 2;
}

.promo__content .text-md {
  margin: 0.3rem 0 0.9rem;
}

.promo__content h3 {
  font-weight: 400;
}

.custom__navigation {
  display: flex;
  align-items: baseline;
  gap: 1.12rem;
  margin-left: auto;
  cursor: pointer;
}

.text__page {
  font-size: 2rem;
}

.text__page .container {
  margin: 0 auto;
  margin-top: 10rem;
}

.text__page p,
.text__page h4,
.text__page ul,
.text__page li {
  margin-bottom: 2rem;
  line-height: 1.4;
}

.banner .custom__navigation {
  position: absolute;
  margin: 0;
  color: inherit !important;
  bottom: 4.7rem;
  right: 15.6rem;

  .next,
  .prev {
    filter: invert(1);
  }
}

.banner .bg-wrapper::before {
  content: "";
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0.5) 0%,
      rgba(0, 0, 0, 0) 100%);
  height: 18.4rem;
  width: 100%;
  position: absolute;
  top: 0;
  z-index: 2;
  left: 0;
}

.yuan_up_page .banner .bg-wrapper::after {
  content: "";
  height: 100%;
  width: 90%;
  position: absolute;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.5) 1%, rgba(87, 199, 133, 0) 65%);
  top: 0;
  z-index: 2;
  left: 0;
}

.custom__navigation object {
  z-index: -1;
}

.custom__navigation a {
  z-index: 10;
  width: 2rem;
  height: 2rem;
}

.custom__navigation .prev {
  background: url(../img/icons/prev.svg) no-repeat;
  background-size: cover;
}

.custom__navigation .prev:active,
.custom__navigation .next:active {
  opacity: 0.5;
}

.custom__navigation .next {
  background: url(../img/icons/next.svg) no-repeat;
  background-size: cover;
  opacity: 1;
}

.news {
  padding: 6rem 0;
  margin: 0 15.6rem;
  display: flex;
  flex-direction: column;
  border-top: 1px solid #b2b2b2;
}

.news__row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 11.3rem;
  flex-wrap: wrap;
}

.news__row.first_news {
  flex-wrap: nowrap;
}

.news__row .news_title {
  font-weight: 400;
}

.news__row:first-child {
  margin-bottom: 2.4rem;
}

.first_news .news_image {
  width: 74.4rem;
}

.news__row:last-child .news__col {
  line-height: 2.6rem;
}

.news__row:nth-child(2) {
  gap: 2rem;
  row-gap: 4.4rem;
  flex-wrap: wrap;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.news__row:last-child {
  margin-bottom: 6.1rem;
}

.news__row:nth-child(2) .news__col img {
  width: 100%;
  height: 18.7rem;
  margin-bottom: 1rem;
}

.page__header {
  padding: 9rem 15.6rem 0;
}

.news__col {
  display: flex;
  flex-direction: column;
}

.pc .news__col {
  width: 36rem;
}

.pc.first_news .news__col {
  width: 27.1rem;
}

.news__content {
  margin-top: 16.8rem;
}

.news__content .text-sm {
  margin: 1.7rem 0 4.7rem;
  color: #acacac;
}

.more__news {
  align-self: center;
  margin-top: 6.1rem;
}

.news__single-col:first-child {
  width: 65%;
}

.news__single-col:last-child {
  width: 25%;
}

.news__single-col.others .news__grid .news__col {
  margin-bottom: 1rem;
  width: 100%;
}

.news__single-col.others .news__grid img {
  margin-bottom: 1rem;
}

.news__single-col.others .news__grid .news_title {
  line-height: 1.2;
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 0.3rem;
}

.news__single-col.others .news__grid .news_date {
  color: #8c8c8c;
  font-size: 1.3rem;
  font-weight: 400;
}

.news__single .banner .content {
  position: absolute;
  max-width: 74rem;
  bottom: 5.6rem;
  left: 15.2rem;
}

.news__single .banner {
  position: relative;
}

.news__single .banner:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(181deg,
      rgba(255, 255, 255, 0) 30%,
      rgba(0, 0, 0, 0.45) 100%);
  height: 100%;
  width: 100%;
  z-index: 0;
}

.text-2col {
  column-count: 2;
}

.others {
  flex-shrink: 0;
}

.socials {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding-top: 2rem;
  border-top: 1px solid #b2b2b2;
}

.news__single-col .socials img {
  height: 3.2rem;
  margin-bottom: 0;
}

.news__single-col.others .news__grid img {
  width: 100%;
  height: 14.5rem;
}

.news__grid {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;

  .text-md {
    margin-bottom: revert !important;
  }
}

.news__single-col img {
  width: 100%;
}

.news__single .text-xl,
.news__single img {
  margin-bottom: 2rem;
}

.news__single .text-md {
  margin-bottom: 3.2rem;
}

.news__single .container {
  display: flex;
  gap: 12rem;
}

.home .video__banner {
  width: 100%;
  height: 100vh;
  position: relative;
  display: flex;
  padding: 10rem 0;
}

.video .bg-wrapper {
  position: relative;
}

.video__banner .items {
  width: 100%;
}

.video__banner .item {
  width: 100%;
  height: 100vh;
  position: relative;
  display: flex;
}

.video__banner .item video {
  width: 100%;
  height: 100%;
  -webkit-object-fit: cover;
  object-fit: cover;
}

.video__banner h1 {
  margin: auto;
  font-weight: 400;
}

.qaz__map {
  margin-top: 2.4rem;
  position: relative;
}

.dot {
  position: absolute;
  width: 1.4rem;
  height: 1.4rem;
  background-color: #4ba0eb;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 0 1rem rgba(75, 160, 235, 0.3);
  -moz-box-shadow: 0 0 0 1rem rgba(75, 160, 235, 0.3);
  box-shadow: 0 0 0 1rem rgba(75, 160, 235, 0.3);
  cursor: pointer;
  transition: 0.4s;
}

.map_about .dot {
  background-color: #fff;
  -webkit-box-shadow: 0 0 0 1rem rgba(255, 255, 255, 0.3);
  -moz-box-shadow: 0 0 0 1rem rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 0 1rem rgba(255, 255, 255, 0.3);
}

.dot:hover {
  -webkit-box-shadow: 0 0 0 1.6rem rgba(75, 160, 235, 0.35);
  -moz-box-shadow: 0 0 0 1.6rem rgba(75, 160, 235, 0.35);
  box-shadow: 0 0 0 1.6rem rgba(75, 160, 235, 0.35);
}

.map_about .dot:hover {
  -webkit-box-shadow: 0 0 0 1.6rem rgba(255, 255, 255, 0.35);
  -moz-box-shadow: 0 0 0 1.6rem rgba(255, 255, 255, 0.35);
  box-shadow: 0 0 0 1.6rem rgba(255, 255, 255, 0.35);
}

.dot_7 {
  top: 8.152rem;
  left: 45.7rem;
}

.map_about .dot_7 {
  top: 7.152rem;
  left: 30.7rem;
}

.dot_2 {
  top: 17.552rem;
  left: 68.3rem;
}

.dot_8 {
  top: 8.2rem;
  right: 50.2rem;
}

.instagram__icon {
  filter: revert !important;
}

.footer .instagram__icon {
  height: 1.4rem;
  width: 1.4rem;
}

.footer[bg="light"] .instagram__icon {
  filter: invert(1) !important;
}

.map_about .dot_2 {
  top: 32%;
  left: 58%;
}

.map_about .dot_8 {
  top: 6.2rem;
  right: 31.2rem;
}

.dot_6 {
  top: 23.252rem;
  left: 72.7rem;
}

.dot_1 {
  bottom: 10.272rem;
  right: 28.6rem;
}

.map_about .dot_1 {
  bottom: 9.6rem;
  right: 16.3rem;
}

.map_about .dot_2 {}

.dot_18 {
  bottom: 6.872rem;
  right: 48.9rem;
}

.map_about .dot_18 {
  bottom: 4.872rem;
  right: 30.9rem;
}

.dot_10 {
  top: 14rem;
  right: 30rem;
}

.map_about .dot_10 {
  top: 9rem;
  right: 18rem;
}

.balloon {
  position: absolute;
  background: #6b6b6b80;
  border-radius: 0.6rem;
  width: 19.9rem;
  max-height: 0;
  overflow: hidden;
  transition: 1s;
}

.about .contacts .balloon .text-md {
  margin-bottom: 2rem;
  margin-top: 0;
  width: 100%;
}

section {
  overflow: hidden;
  position: relative;
}

.balloon__container {
  padding: 1.4rem 2.1rem 3rem;
}

.dot_1:hover .balloon[city="city_1"],
.balloon[city="city_2"]:hover {
  max-height: 60rem;
}

.dot_2:hover .balloon[city="city_2"],
.balloon[city="city_2"]:hover {
  max-height: 60rem;
}

.dot_8:hover .balloon[city="city_8"],
.balloon[city="city_8"]:hover {
  max-height: 60rem;
}

.dot_18:hover .balloon[city="city_18"],
.balloon[city="city_18"]:hover {
  max-height: 60rem;
}

.dot_6:hover .balloon[city="city_6"],
.balloon[city="city_6"]:hover {
  max-height: 60rem;
}

.dot_7:hover .balloon[city="city_7"],
.balloon[city="city_7"]:hover {
  max-height: 60rem;
}

.map_about:has(.dot_1:hover) .balloon[city="city_1"],
.balloon[city="city_1"]:hover {
  max-height: 60rem;
}

.map_about:has(.dot_2:hover) .balloon[city="city_2"],
.balloon[city="city_2"]:hover {
  max-height: 60rem;
}

.map_about:has(.dot_18:hover) .balloon[city="city_18"],
.balloon[city="city_18"]:hover {
  max-height: 60rem;
}

.map_about:has(.dot_6:hover) .balloon[city="city_6"],
.balloon[city="city_6"]:hover {
  max-height: 60rem;
}

.map_about:has(.dot_7:hover) .balloon[city="city_7"],
.balloon[city="city_7"]:hover {
  max-height: 60rem;
}

.balloon[city="city_7"] {
  top: 7.152rem;
  left: 23.7rem;
}

.balloon[city="city_1"] {
  top: 32.152rem;
  left: 60.7rem;
}

.map_about .balloon[city="city_1"] {
  top: 24.152rem;
  left: 24.7rem;
}

.balloon[city="city_2"] {
  top: 16.152rem;
  left: 46.7rem;
}

.balloon[city="city_8"] {
  top: 10.152rem;
  left: 47.7rem;
}

.map_about .balloon[city="city_2"] {
  top: 10.152rem;
  left: 13.7rem;
}

.balloon[city="city_18"] {
  top: 35.152rem;
  left: 39.7rem;
}

.balloon[city="city_10"] {
  top: 20.152rem;
  right: 20.7rem;
}

.balloon[city="city_6"] {
  top: 23.152rem;
  left: 51.7rem;
}

.balloon .text-md {
  margin: 1.3rem 0 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;

  img {
    width: 1rem;
    height: 1rem;
  }
}

.balloon .text-sm {
  line-height: 1.3;
}

.footer {
  padding: 2.4rem 15.7rem;
  display: flex;
  flex-direction: column;
}

.single.page .footer {
  background: transparent;
}

main.single+.footer,
main.home+.footer,
main.about.distributor+.footer {
  position: absolute;
  bottom: 0;
  left: 0;
  background: linear-gradient(0deg,
      rgba(21, 21, 22, 1) 49%,
      rgba(131, 131, 132, 0) 69%,
      rgba(255, 255, 255, 0) 100%);
  color: #fff;

  a {
    color: #fff;
  }

  img {
    filter: invert(1);
  }

  .footer__social a img {
    filter: revert;
  }
}

main.single+.footer[bg="light"] .instagram__icon {
  filter: revert !important;
}

main.about.distributor+.footer {
  background: transparent;
}

.footer__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 4.1rem;
  border-bottom: 1px #d9d9d9 solid;
  margin-bottom: 4.3rem;
}

.footer__social a img {
  width: 1.4rem;
  height: 1.4rem;
}

.footer__links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  position: relative;
  row-gap: 3.2rem;
}
.footer__links img {
  margin-right: 1.1rem;
  object-fit: scale-down;
}

.footer__social {
  display: flex;
  gap: 1.2rem;
}

body:has(.codus-group-panel) .footer {
  padding-bottom: 8.5rem;
}

.footer__social a:first-child img {
  height: 1.4rem;
  width: 1.4rem;
  object-fit: contain;
}

.footer[bg="light"] .footer__social a:first-child img {
  filter: invert(1);
}

.footer[bg="dark"] .footer__links img,
.footer[bg="transparent"] .footer__links img {
  filter: invert(1);
}

.footer__social a {
  display: flex;
  gap: 0.4rem;
  align-items: center;
}



.footer__bottom {
  display: flex;
  align-items: flex-start;
  gap: 4.3rem;
}

.footer__bottom .text-xs {
  width: 43.2rem;
  flex-grow: 1;
  flex-shrink: 0;
}

.model__banner-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: absolute;
  top: 20vh;
  left: 15.8rem;
  z-index: 1;
}

.model__banner-content img {
  max-height: 50px;
  width: auto;
}

.model__banner-content .text-md {
  margin: 1.814rem 0 3.591rem;
  line-height: 1.4;
  max-width: 39rem;
}

.mob {
  display: none !important;
}

.model__bannner-specs {
  display: flex;
  gap: 4.4rem;
  align-items: center;
  position: absolute;
  left: 15.8rem;
  bottom: 5.512rem;
  z-index: 2;
}

.model__bannner-specs .spec__text h5 {
  margin-bottom: 1rem;
}

.model__bannner-specs .spec__text .text-xs {
  max-width: 16rem;
}

.video__banner .model__bannner-specs {
  position: absolute;
  left: 18.6rem;
  bottom: 6.4rem;
  gap: 8.2rem;

  h5 {
    font-size: 15rem;
    font-weight: 350;

    span {
      font-size: 4rem;
    }
  }

  .text-xs {
    font-size: 2.5rem;
  }

  .spec__block {
    padding-left: 2.6rem;
    border-left: 1px solid #ffffff80;
  }
}

#popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #00000070;
  z-index: 99999999;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-y: scroll;
}

.disabled,
.spec__link_btn {
  opacity: 0.5 !important;
  pointer-events: none !important;
}

.popup-content {
  width: 51.2rem;
  margin: auto;
  position: relative;
  color: #000;
  height: 130%;
}

.popup-content .wrapper {
  background: #fff;
  padding: 2.9rem 3.5rem;
}

.popup-content a {
  color: #000;
  font-weight: 500;
  text-decoration: underline;
}

.noscroll {
  overflow: hidden;
}

.popup-header {
  text-align: center;
  margin-bottom: 2.1rem;
  margin-top: 1rem;
}

.popup-title {
  font-size: 3.6rem;
  color: #000;
  font-weight: 400;
  text-align: center;
}

.form-container {
  display: flex;
  flex-direction: column;
  padding-left: 3.2rem;
  padding-right: 3.1rem;
}

.form-container .form .btn {
  margin: 3.1rem 0 2.8rem;
}

#popup_form {
  display: flex;
  flex-direction: column;
}

#popup_form .btn {
  background: #fff;
  z-index: 100;
  color: #000;
  align-self: center;
  cursor: pointer;
}



.form-row {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.popup-btn-close {
  width: 2rem;
  height: 2rem;
  background-image: url(/static/img/icons/cross.svg);
  filter: invert(1);
  position: absolute;
  top: 3rem;
  left: 2rem;
  background-size: cover;
  cursor: pointer;
}

.popup-header .text-xl {
  font-size: 1.6rem;
}

.form-row:nth-of-type(2) {
  margin: 2.1rem 0 1.8rem;
}

.form-row.checkbox {
  flex-direction: row;
}

.form-row label {
  font-size: 1.2rem;
}

.input-field {
  width: 100%;
  font-size: 1.2rem;
  line-height: 1.4;
  padding-bottom: 1rem;
}

.memo {
  border: 1px #000 solid;
  height: 6.1rem;
  background: #fff;
  font-size: 1.2rem;
  padding: 1rem 0.8rem;
  vertical-align: top;
  font-family: inherit;
}

.han.video__banner .feature1 {
  min-height: 95rem;

  h5 {
    font-weight: 300;
    margin-bottom: 0.7rem;

    span {
      font-size: 4rem;
    }

    span.num {
      font-size: 12rem;
      margin-bottom: 0.1rem;
      line-height: 0.7;
    }
  }

  .bg-wrapper {
    inset: revert;
    left: 0;
    top: 0;
    width: 100%;
  }

  .model__bannner-specs {
    bottom: 0;
  }
}

.spec__block {
  display: flex;
  gap: 0.899rem;
}

.spec__block h5 {
  font-weight: 600;
  line-height: 0.7;
  white-space: nowrap;
}

.spec__img {
  padding-right: 0.8rem;
  border-right: 1px solid;
  width: 50px;
}

.spec__img img {
  object-fit: contain;
}

.model__color {
  padding: 10.8rem 25.2rem;
}

.model__color h3 {
  font-weight: 400;
  width: 50%;
}

.model__color img {
  width: 100%;
  border-radius: 0.8rem;
  height: 44.1rem;
  margin-bottom: 2.4rem;
}

.model__color img.active {
  display: block;
  opacity: 1;
}

.select__color {
  border-radius: 50%;
  position: relative;
  width: 2.3rem;
  display: block;
  height: 2.3rem;
  cursor: pointer;
  color: #000;
}

.select__color input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.colors__container .col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}

.colors__container .col .text-md {
  font-weight: 500;
  text-align: center;
}

.select__color:has(input:checked) {
  padding: 0.2rem;
  border: 0.22rem #fff solid;
  outline: 0.1px #000 solid;
}

.select__color[bg="white"]:has(input:checked) {
  padding: 0.2rem;
  border: 0.22rem #000 solid;
  outline: 0.1px #000 solid;
}

.select__color[bg="blue"] {
  background: #547899;
}

.select__color[bg="gray"] {
  background: #595a5f;
}

.select__color[bg="white"] {
  background: #fff;
  border: 2px #000 solid;
}

.select__color[bg="red"] {
  background: #e52d2d;
  border: 1px #bbbbbb solid;
}

.select__color[bg="olive"] {
  background: #afb8a3;
  border: 1px #bbbbbb solid;
}

.color__pick {
  display: flex;
  align-items: baseline;
  justify-content: space-between;

}

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

.warranty__details-container {
  display: flex;
  flex-direction: column;
  gap: 9.3rem;
}

.warranty__details-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  flex-wrap: wrap;
}

.warranty__details-row:first-child .spec__block .spec__img {
  border: none;
  padding: 0;
}

.warranty__details-row:first-child .spec__block .text-sm+.text-md {
  border-top: 1px #fff solid;
  padding-top: 1rem;
  margin-top: 1rem;
}

.warranty__details-row .spec__block:nth-last-child(-n + 4) {
  gap: 1.758rem;
}

.spec__block:nth-last-child(-n + 4) .text-sm {
  border-left: 1px solid #ffffff80;
  padding-left: 1.5rem;
}

.warranty__details-row:first-child .spec__block .text-sm+.text-md b {
  font-weight: 400;
  font-size: 2.5rem;
}

.gradient_transition-top {
  height: 12rem;
  width: 100%;
  background: linear-gradient(180deg, #1b1b1b 0%, rgba(0, 0, 0, 0) 100%);
  position: absolute;
  top: 0;
  left: 0;
}

.gradient_transition-bottom {
  height: 12rem;
  width: 100%;
  background: linear-gradient(0deg, #1b1b1b 0%, rgba(0, 0, 0, 0) 100%);
  position: absolute;
  bottom: 0;
  left: 0;
}

.banner .gradient_transition-top {
  height: 30rem;
}

.banner .gradient_transition-bottom {
  height: 25rem;
}

.warranty__details-row .spec__block {
  gap: 1.6rem;
  width: 26%;
}

.warranty__details-row:last-child .spec__text {
  width: fit-content;
}

.warranty__details-row .spec__img {
  min-width: 45px;
  width: 45px;
}

.warranty__details-row:last-child .spec__img {
  padding-right: 1.6rem;
}

.warranty__details-row:last-child {
  gap: 10rem;
}

.warranty__details-row .text-lg {
  font-size: 2.5rem;
}

.warranty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8.9rem;
  padding: 7.7rem 24.1rem 15.3rem;
}

.model__features,
.features__extended {
  padding: 12.3rem 25.1rem 12.4rem 25.2rem;
}

.features__extended {
  padding-bottom: 0;
}

.items .item.align_right .item_data {
  text-align: right;
}

.items .item.align_right .item_data * {
  margin-left: auto;
}

.model__features .items,
.features__extended .items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 0.9rem;
  grid-row-gap: 0.8rem;
  width: 100%;
  color: #000;
  height: 100%;
}

.model__features .items .text-sm {
  font-weight: 350;
}

.model__features .items .text-xl {
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.features__extended .items .text-xl {
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 2rem;
}

.model__features .items .item:first-child,
.features__extended .items .item:first-child {
  position: relative;
  grid-area: 1 / 1 / 2 / 3;
  height: 44.7rem;
  padding: 2.4rem 3.4rem;
}

.feature1 .text-xl {
  line-height: 4.1rem;
}

.feature1 .text-sm {
  width: 70%;
}

.han .feature1 {
  grid-area: 3 / 1 / 5 / 3;
}

.han .feature2 {
  grid-area: 1 / 1 / 3 / 2;
}

.han .feature3 {
  grid-area: 1 / 2 / 2 / 3;
}

.han .feature4 {
  grid-area: 2 / 2 / 3 / 3;
}

.feature2 {
  position: relative;
  grid-area: 2 / 1 / 4 / 2;
  height: 71rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 3.2rem 3.4rem;
}

.han.exterior .item {
  padding: 6.4rem 25.2rem;
}

.feature .item_title {
  font-size: 3.2rem;
  font-weight: 400;
}

.han.exterior .item {
  align-items: flex-start;
  justify-content: flex-start;

  .item_data {
    height: 100%;
    justify-content: space-between;
    display: flex;
    flex-direction: column;
  }
}

.feature3 {
  position: relative;
  grid-area: 2 / 2 / 3 / 3;
  height: 35.1rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 7.7rem 3.3rem;
}

.feature3 .text-sm {
  margin-top: 1rem;
}

.feature4 {
  position: relative;
  grid-area: 3 / 2 / 4 / 3;
  height: 35.1rem;
  padding: 7.1rem 3.8rem;
}

.model__features .feature4 .text-xl {
  width: 70%;
}

.feature4 .text-sm {
  width: 40%;
}

.features__extended .feature1 {
  grid-area: 1 / 1 / 3 / 3;
}

.features__extended .feature2 {
  grid-area: 3 / 1 / 5 / 2;
  position: relative;
  height: 70.9rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 3.2rem 3.4rem;
  color: #fff;
}

.features__extended .feature2 .text-xl {
  width: 80%;
}

.features__extended .feature2 .text-sm {
  width: 75%;
}

.model__features .items .feature3 .item_data {
  width: 40%;
  text-align: right;
  hyphens: auto;
  overflow-wrap: break-word;
}

.single .video__banner.exterior .item:first-child::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 75%;
  background: linear-gradient(0, #000000 -0.13%, rgba(0, 0, 0, 0) 45.91%);
  z-index: -1;
}

.single .han.video__banner.exterior .item:first-child::after {
  height: 55%;
}

.single .han.video__banner.exterior .item:first-child::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 25%;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 1) 50%,
      rgba(0, 0, 0, 0) 90%,
      rgba(255, 255, 255, 0) 52%);
  z-index: 0;
}

.single .video__banner.exterior .item:last-child::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(180deg, #000000 -0.13%, rgba(0, 0, 0, 0) 57.58%);
}

.features__extended .feature3 {
  grid-area: 3 / 2 / 4 / 3;
  justify-content: end;
  align-items: self-start;
  padding: 3.6rem 3rem;

  .text-sm {
    width: 100%;
  }
}

.features__extended .feature4 {
  grid-area: 4 / 2 / 5 / 3;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: self-start;
  padding: 3.6rem 3rem;

  .text-sm {
    width: 100%;
  }
}

.features__extended .feature5 {
  grid-area: 5 / 1 / 7 / 3;
  height: 38.4rem;
  padding: 2.6rem 2rem;

  .text-xl {
    font-size: 2rem;
    line-height: 2.2rem;
    width: 80%;
  }

  .text-sm {
    width: 80%;
  }
}

/* .features__extended .feature5::before {
  content: "";
  width: 70%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 1) 40%,
    rgba(131, 131, 132, 0.2) 81%,
    rgba(255, 255, 255, 0) 97%
  );
  z-index: 1;
} */

.features__extended .reveal__features {
  color: inherit;

  img {
    height: 1rem;
  }
}

.brochure_btn {
  position: absolute;
  bottom: 5.512rem;
  right: 15rem;
  z-index: 5;
  display: flex;
  gap: 2rem;
}

.gradient__overlay-white {
  background: linear-gradient(90deg,
      rgba(255, 255, 255, 0.48) 0%,
      rgba(255, 255, 255, 0) 100%);
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
}

.features__extended .feature6 {
  grid-area: 7 / 1 / 8 / 2;
  color: #fff;
  height: 35.1rem;
  padding: 1.3rem 2.8rem 2.8rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.song .feature6::after {
  position: absolute;
  content: "";
  height: 60%;
  background: linear-gradient(0deg,
      rgba(0, 0, 0, 0.9) 0%,
      rgba(255, 255, 255, 0) 100%);
  width: 100%;
  left: 0;
  bottom: 0;
}

.features__extended .feature6 .text-xl {
  font-size: 2rem;
  width: 80%;
}

.features__extended .feature7 {
  grid-area: 8 / 1 / 9 / 2;
  height: 35.1rem;
  color: #fff;
  padding: 1.3rem 2.8rem 2.8rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.features__extended .feature7 .text-xl {
  font-size: 2rem;
  width: 90%;
}

.features__extended .feature7 .text-sm {
  margin-top: 1rem;
}

.features__extended .item_data {
  z-index: 2;
  position: relative;
}

.features__extended .feature8 {
  grid-area: 7 / 2 / 9 / 3;
  color: #fff;
  padding: 6.8rem 5.9rem;
}

.features__extended .feature8 .text-xl {
  font-size: 2.4rem;
  margin-bottom: 1rem;
}

.features__extended .feature8 .gradient__overlay {
  bottom: revert;
  top: 0;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0.4) 0%,
      rgba(0, 0, 0, 0) 100%);
}

.thumbs__slider h3 {
  font-size: 4.3rem;
  margin-bottom: 1.5rem;
}

.thumbs__slider .text-md {
  width: 70%;
}

.thumbs__slider-preview .text-md {
  width: 100%;
}

.thumbs__slider-preview {
  height: 52rem;
  position: relative;
}

.thumbs__slider-preview .swiper-button-next::after,
.thumbs__slider-preview .swiper-button-prev::after {
  content: "";
  width: 100%;
  height: 100%;
}

.thumbs__slider-preview .swiper-button-next,
.thumbs__slider-preview .swiper-button-prev {
  z-index: 20;
  height: 46rem;
  width: 25.1%;
  top: 49%;
  transform: translateY(-50%);
  /* margin-bottom: -27.5%; */
}

.thumbs__slider-preview .swiper-button-prev {
  left: 0;
}

.thumbs__slider-preview .swiper-button-next {
  right: 0;
}

.thumbs__slider-preview .swiper-wrapper {
  padding-bottom: 5.3rem;
  padding-top: 1rem;
}

.comfort .swiper-pagination-bullet {
  width: 16.3rem;
}

.thumbs__slider .swiper-slide {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 75.3rem;
  position: relative;

  padding: 9.6rem 25.3rem;
}

.gradient__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgb(0, 0, 0);
  background: linear-gradient(0deg,
      rgba(0, 0, 0, 0.8) 0%,
      rgba(0, 0, 0, 0) 100%);

  height: 50%;
  z-index: -1;
}

.comfort .swiper-horizontal>.swiper-pagination-bullets,
.comfort .swiper-pagination-bullets.swiper-pagination-horizontal,
.comfort .swiper-pagination-custom,
.comfort .swiper-pagination-fraction {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}

.thumbs__slider-preview .swiper-slide {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 46rem;
  position: relative;
  background: rgb(0, 0, 0);
  background: linear-gradient(0deg,
      rgba(0, 0, 0, 0.24413515406162467) 26%,
      rgba(0, 0, 0, 0.21332282913165268) 49%,
      rgba(0, 0, 0, 0) 79%);
  padding: 4rem 6rem;
  cursor: grab;
}

.thumbs__slider-preview .swiper-slide:active {
  cursor: grabbing;
}

.thumbs__slider-preview .swiper-slide h3 {
  font-size: 2.6rem;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.thumbs__slider .swiper-slide .bg-wrapper {
  background: linear-gradient(0deg,
      rgba(0, 0, 0, 0.24413515406162467) 26%,
      rgba(0, 0, 0, 0.21332282913165268) 49%,
      rgba(0, 0, 0, 0) 79%);
}

#warranty__page .select__slider {
  justify-content: center;
  /* column-gap: 18.2rem; */
  margin-top: 8.4rem;
}

#warranty__page .select__slider .text-md {
  padding: 1.1rem 2.2rem;
  background-color: #fff;
  color: #242424;
  border-radius: 4.7rem;
  font-size: 2rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0;
}

#warranty__page .select__slider .text-md.active {
  background-color: #242424;
  color: #fff;
}

#warranty__page .models__slider img,
#warranty__page .carousel-2 img {
  width: 100%;
  height: 30.8rem;
  object-fit: scale-down;
}

.carousel-2 {
  position: relative;
}

.carousel-2 .swiper-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.carousel-2 .swiper-button-next,
.carousel-2 .swiper-button-prev {
  top: 50%;
  transform: translateY(-50%);
}

#warranty__page .models__slider .swiper-button-next,
#warranty__page .models__slider .swiper-button-prev {
  top: 50%;
  transform: translateY(-50%);
}

#warranty__page .models__slider .swiper-button-next {
  right: 2%;
}

#warranty__page .models__slider .swiper-button-prev {
  left: 2%;
}

#warranty__page .btn-container {
  justify-content: space-evenly;
  margin-top: 10.6rem;
}

#warranty__page .btn-container .btn,
#warranty__page .spec__link_btn {
  width: 34.1rem;
  background-color: #000;
  color: #fff;
  text-align: center;
  font-size: 2rem;
  height: 7.3rem;
  vertical-align: middle;
  display: flex;
  align-items: center;
  justify-content: center;
}

#warranty__page .swiper-slide .spec__link_btn {
  display: none;
}

#warranty__page .models__slider .model__icon {
  height: revert;
  margin-top: 2rem;
  height: 3.1rem;
}

.model__battery {
  padding: 8rem 15.9rem 8rem 15.5rem;
}

.model__battery .bg-wrapper {
  position: relative;
}

.model__battery .feature1 {
  height: auto;
  display: flex;
  flex-direction: column;
}

.han .model__battery {
  padding: 0 0 6.3rem;
}

.han .model__battery .model__detail .text-xxl {
  font-size: 15rem;
  line-height: 21.3rem;

  span {
    font-size: 4rem;
    line-height: 5.696rem;
  }
}

.han .battery__content {
  justify-content: center;
  gap: 8.2rem;
  padding: 0;
}

.han .model__battery .model__detail .text-xs {
  font-size: 3.2rem;
}

.han .model__battery .battery__image {
  position: relative;
}

.han .model__battery h2 {
  position: absolute;
  top: 6.4rem;
  left: 25.2rem;
  text-transform: uppercase;
  font-weight: 300;
}

.han .model__battery img {
  -webkit-object-fit: cover;
  object-fit: cover;
  margin-bottom: 13.2rem;
}

.han .model__battery .gradient__overlay {
  z-index: 0;
}

.han .model__battery .gradient__overlay.top {
  bottom: revert;
  top: 0;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0.8) 0%,
      rgba(0, 0, 0, 0) 100%);
}

.model__battery img {
  -webkit-object-fit: cover;
  object-fit: cover;
}

.model__battery .item_data {
  display: flex;
  padding-left: 9.7rem;
  gap: 2rem;
  flex-direction: row-reverse;
  margin-top: 3rem;
}

.model__battery .item_title {
  font-size: 16rem;
  font-weight: 300;
  padding-left: 6rem;
  white-space: nowrap;
  border-left: 1px #fff solid;
  line-height: 1;
}

.model__battery .item_title span {
  font-size: 12rem;
}

.model__battery .item_text {
  font-size: 3rem;
  line-height: 3.5rem;
  font-weight: 300;
  width: 60%;
}

.exterior .item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding-bottom: 9.3rem;
  position: relative;
  padding-top: 3.2rem;
  padding-left: 25.2rem;
  padding-right: 19.7rem;
  height: 85rem;
}

.exterior .item .bg-wrapper::after {
  position: absolute;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0.8) 0%,
      rgba(0, 0, 0, 0) 100%);
  background-size: 100%;
  height: 12rem;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

.exterior .item.mtop_1 {
  justify-content: flex-end;
}

.exterior .item.mtop_2 {
  justify-content: flex-start;
}

.outside .item {
  justify-content: flex-start;
  padding-top: 13.2rem;
}

.video__banner.exterior .item_data {
  line-height: 3.8rem;
  z-index: 3;
}

.yuan.exterior .item.mtop_1 .item_data {
  padding-bottom: 6.3rem;
  border-bottom: 1px #fff solid;
}

.yuan.exterior .feature1.item.mtop_1 {
  padding-bottom: 0;
}

.yuan.exterior .item.mtop_2 {
  padding-top: 6.3rem;
}

.video__banner.exterior .item_data .item_text {
  font-size: 3.2rem;
  width: 100%;
  font-weight: 300;
}

.video__banner.exterior .item_data .item_text b {
  font-weight: 500;
}

.outside .gradient__overlay {
  bottom: revert;
  top: 0;
  background: linear-gradient(180deg, #000000 -0.13%, rgba(0, 0, 0, 0) 45.91%);
}

.test-drive {
  height: 100vh;
  overflow: visible;

  .bg-wrapper {
    height: 110%;
    z-index: -1 !important;
  }

  .gradient__overlay {
    z-index: 1;
    bottom: -10rem;
  }

  .btn-container {
    display: flex;
    align-items: center;
    gap: 1.4rem;
    z-index: 2;
    position: relative;
    font-weight: 400;
  }

  .btn-container .btn {
    color: #000;
  }

  .items {
    height: 100%;

    .item {
      padding: 12.3rem 25.2rem;
      height: 100%;
    }

    .item_data {
      position: relative;
    }
  }
}

.btn-container {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  position: relative;
  font-weight: 400;
}

.test-drive .item_text {
  z-index: 2;
  position: relative;
  line-height: 3.8rem;
  margin-bottom: 3.9rem;
  font-size: 3.2rem;
  font-weight: 350;
  width: 100%;
}

.test-drive .item::before {
  content: "";
  background: linear-gradient(180deg,
      rgba(255, 255, 255, 1) 20%,
      rgba(131, 131, 132, 0.2) 49%,
      rgba(255, 255, 255, 0) 59%);

  z-index: 1;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.responsive__image-container {
  position: relative;
  width: 100%;
  padding-top: 177.78%;
  overflow: hidden;
  height: 100%;
}

.responsive__image-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-object-fit: cover;
  object-fit: cover;
  object-position: center;
}

[bg="light"] .bg-wrapper {
  z-index: 0;
}

[bg="light"] .open__menu {
  filter: invert(1);
}

.footer[bg="transparent"] {
  background: linear-gradient(0deg,
      rgba(0, 0, 0, 1) 0%,
      rgba(0, 0, 0, 1) 61%,
      rgba(0, 0, 0, 0.6895133053221288) 75%,
      rgba(0, 0, 0, 0) 100%,
      rgba(0, 0, 0, 0) 100%);
}

.footer__links {
  z-index: 5;
}

[bg="light"] .close__menu {
  filter: invert(1);
}

.close__menu {
  display: none;
}

#news {
  padding-top: 8rem;
}

#dealers {
  padding-top: 4rem;
}

#dealers .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 6.8rem 0 7.1rem;
}

#news .news__slider-separate {
  overflow: hidden;
  border-bottom: 1px #b2b2b2 solid;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 2.8rem;
  column-gap: 2.4rem;
  margin-bottom: 8rem;
}

.pagination {
  display: flex;
  align-items: center;
  font-size: 1.6rem;
  font-weight: 500;
  gap: 0.8rem;
  justify-content: center;
  width: 100%;
}

.pagination .page {
  width: 3.1rem;
  height: 3.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pagination .active {
  background-color: #eeeeee;
  border-radius: 50%;
}

.errorMessage {
  font-size: 1.2rem;
  color: rgb(234, 18, 18);
}

.form__page .container {
  width: 54.6rem;
  margin: 0 auto;
  padding: 9.1rem 0 9.8rem;
  height: 100%;
}

#service.form__page .container {
  width: 88.6rem;
  padding-top: 6.3rem;
}

#service .banner {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 3.7rem;
}

#service .banner .btn-container {
  justify-content: center;
}

#warranty__page .container {
  width: calc(100% - 31.4rem);
  padding-bottom: 9rem;
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
}

#warranty__page .banner {
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding-bottom: 14.2rem;
  padding-left: 15.5rem;
}

#service.form__page .container #form.form {
  padding-left: 15.6rem;
  padding-right: 15.6rem;
  margin-top: 18rem;
  margin-bottom: 14rem;
}

.form__page .title-md,
.form__page h3,
.form__page .text-xl {
  text-align: center;
}

.form__page .title-md,
.form__page h3 {
  font-size: 3.6rem;
}

.form__page .text-xl,
.form__page p {
  font-size: 1.6rem;
}

.title-md {
  font-size: 4.8rem;
  font-weight: 350;
}

.form__page .form {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2.8rem;
  margin-top: 4.1rem;

  label.form__field {
    font-size: 1.2rem;
    color: #9b9b9b;
    display: flex;
    flex-direction: column;
    font-weight: 400;
  }

  select,
  input {
    height: 2.8rem;
    font-size: 1.2rem;
    color: #fff;
    border-bottom: 1px solid #fff;
  }

  option {
    background-color: #000;
  }

  .btn {
    align-self: flex-start;
    color: inherit;
  }

  .link {
    text-decoration: underline;
  }
}

[bg="light"] select,
[bg="light"] input {
  color: #000 !important;
  border-bottom: 1px #000 solid !important;
}

#service.form__page .form {

  select,
  input {
    font-size: 2rem;
    height: 3.1rem;
  }

  label {
    font-size: 1.5rem;
  }

  .memo {
    height: 10.5rem;
  }
}

input[type="radio"] {
  border-radius: 50%;
  width: 1.8rem;
  height: 1.8rem !important;
  border-radius: 50%;
  vertical-align: middle;
  border: 1px solid #000;
  appearance: none;
  -webkit-appearance: none;
  outline: none;
  cursor: pointer;
  position: relative;
  margin-right: 1.8rem;
}

#Form_note {
  display: flex;
  align-items: center;
}

#Form_note label {
  margin-right: 3rem;
}

input[type="radio"]:checked::after {
  background-color: #000;
  width: 60%;
  height: 60%;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

[bg="light"] option {
  background-color: #fff !important;
}

#service .text-xl,
#warranty__page .text-xl,
.form__page p {
  font-size: 2.4rem;
  text-align: center;
  margin-top: 2rem;
}

.form__page .form label.form__field:has(.col) {
  flex-direction: row;
  gap: 6rem;
  flex-wrap: wrap;
}

.form__field .col {
  display: flex;
  align-items: center;
  gap: 2rem;
  color: #000;
}

select,
input {
  background: none;
  border: none;
  border-bottom: 1px solid;
}

select:focus,
input:focus {
  outline: none;
}

.dealers__control {
  display: flex;
  align-items: center;
  gap: 9.9rem;
}

.dealers__control select {
  min-width: 19.2rem;
  font-size: inherit;
}

.tab.active {
  font-weight: 600;
  border-bottom: 1px solid;
}

.tab {
  font-weight: 350;
  cursor: pointer;
  padding-right: 1.6rem;
}

.tabs {
  display: flex;
  align-items: center;

  border-bottom: 1px solid #b2b2b2;
}

.dealers__list {
  display: none;
  flex-direction: column;
  gap: 4.3rem;
}

.dealers__list.active {
  display: flex;
}

.dealer {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-bottom: 1px solid #b2b2b2;
  padding-bottom: 2.9rem;
  align-items: center;
}

.dealer:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.website__button {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.website__button::before {
  content: "";
  width: 1rem;
  height: 1rem;
  display: block;
  background: url('/static/img/globe.svg') center center/cover no-repeat;
}

.dealer__item {
  display: flex;
  flex-direction: column;
}

.dealer__item:last-child {
  align-items: flex-end;
}

.dealer__phone {
  padding-left: 4rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.dealer__phone::before {
  content: "";
  width: 1rem;
  height: 1rem;
  background: url("/static/img/icons/call.svg") no-repeat;
  background-size: contain;
  display: block;
  filter: invert(1);
}

.dealer .title-md {
  font-size: 2.4rem;
}

.about .title-md {
  font-size: 2.4rem;
  text-align: center;
  margin-bottom: 6.1rem;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 2.4rem;
  margin-top: 4.8rem;
  margin-bottom: 8.6rem;
  row-gap: 0.9rem;
}

.about .contacts .container {
  display: flex;
  gap: 0;
  align-items: flex-start;
}

.map_about {
  height: 39.705rem;
  position: relative;
  flex-shrink: 0;
}

.about .contacts .title-md {
  text-align: start;
  font-size: 4.8rem;
  margin-bottom: 2.7rem;
}

.about .contacts .text-md {
  margin-bottom: 6.1rem;
  width: 60%;
}

.about .contacts .col {
  display: flex;
  flex-direction: column;
  width: 40%;
  flex-shrink: 0;
}

.about .contacts {
  height: 58.5rem;
}

.about .banner .content {
  position: absolute;
  left: 15.2rem;
  bottom: 29.2rem;
  max-width: 60rem;

  h2 {
    font-weight: 400;
    margin-bottom: 1.7rem;
  }
}

.service__block {
  display: flex;
  flex-direction: column;
  background-color: #f2f2f2;
  align-items: flex-start;
  padding: 3.5rem 2.2rem;
  position: relative;
}

.service__block img {
  max-width: 6rem;
  height: 4.1rem;
  object-fit: contain;
}

.service__block .text-24 {
  margin: 2.5rem 0 1.2rem;
}

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

.text-center {
  text-align: center;
}

.dealer .btn {
  width: fit-content;
}

.dealers__map {
  display: none;
  width: calc(100% + 31.2rem);
  margin-left: -15.6rem;
  height: 60.3rem;
}

.zoom img {
  transition: transform 0.4s ease-in-out;
}

.zoom:hover img {
  transform: scale(1.1);
}

.song_battery .bg-wrapper .text-xl {
  font-size: 3.6rem;
  position: absolute;
  top: 6.3rem;
  left: 9.5rem;
}

.model__battery .btn {
  margin: 2rem auto;

}

.song_battery .bg-wrapper .content-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 27.6rem;
  width: 100%;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0.8) 0%,
      rgba(0, 0, 0, 0) 100%);
}

.item:has(.zoom):hover img {
  transform: scale(1.1);
}

.zoom {
  overflow: hidden;
}

.content-wrap {
  width: 100%;
  height: 100%;
  position: relative;
}

#preloader {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.733rem;
  flex-direction: column;
}

#preloader .logo {
  width: 9.737rem;
  height: 1.876rem;
}

#preloader .logo img {
  -webkit-object-fit: cover;
  object-fit: cover;
}

.progress-bar {
  width: 100%;
  height: 0.2rem;
  background-color: #d9d9d9;
  border-radius: 5px;
  overflow: hidden;
  max-width: 15.2rem;
  transition: 0.1s;
}

.progress {
  width: 0;
  height: 100%;
  background-color: #000;
}

.go_back_btn {
  display: none;
}

.dropdown_item {
  display: flex;
  flex-direction: column;
}

.dropdown_menu {
  display: none;
  flex-direction: column;
  gap: 1rem;
  position: absolute;
  top: 4rem;
  padding: 1rem;
}

.dropdown_item.active .dropdown_menu {
  display: flex;
}

.dropdown_link {
  cursor: pointer;
  font-weight: 400;
  display: flex;
  align-items: baseline;
  gap: 1rem;
}

.dropdown_link::after {
  content: "";
  width: 2rem;
  height: 1rem;
  background: url('/static/img/icons/chevron.svg') no-repeat;
  display: block;
  background-size: contain;
}

[bg="transparent"] .dropdown_link::after {
  filter: invert();
}

[bg="light"] .dropdown_menu {
  background: #fff;
}

.promo__slider .swiper-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 0;
}

#service .banner .btn-container {
  color: #fff;
}

@media (max-width: 768px) {
  .pc {
    display: none !important;
  }

  html {
    font-size: var(--font-base-mobile);
  }

  .mob {
    display: flex !important;
  }

  .container {
    padding: 2.5rem 1rem !important;
    width: 100%;
    overflow: hidden;
  }

  .header .container {
    padding: 1.5rem 1rem !important;
    width: 100%;
    overflow: hidden;
  }

  .battery__block .block__content {
    max-height: revert;
    position: absolute;
    background: inherit;
    top: 51%;
    left: 0;
    /* max-height: 100%; */
    overflow: hidden;
    transition: all 0.4s ease-in-out;
    height: 100%;
  }

  .battery__block:hover .block__content {
    top: 0;
  }

  .header .container {
    justify-content: space-between;
  }

  .home .banner .bg-wrapper {
    position: relative;
    overflow: hidden;
  }

  .home .banner .bg-wrapper picture,
  .home .banner .bg-wrapper img {
    height: 155vw;
  }

  .banner__content,
  .swiper-horizontal>.swiper-pagination-bullets,
  .swiper-pagination-bullets.swiper-pagination-horizontal,
  .swiper-pagination-custom,
  .swiper-pagination-fraction {
    left: 2.1rem;
    bottom: 4rem;
  }

  .banner .bg-wrapper::before {
    background: linear-gradient(142deg,
        rgba(0, 0, 0, 1) -18%,
        rgba(140, 140, 140, 0) 63%,
        rgba(255, 255, 255, 0) 100%);
    height: 100%;
  }

  .model__banner-content .text-md {
    margin: 1.814rem 0 3.591rem;
  }

  .model__banner-content img {
    max-height: revert;
    max-width: 60%;
    object-fit: contain;
  }

  .song_battery .item {
    flex-direction: column;
  }

  .model__features .items .feature3 .item_data {
    width: 45%;
  }

  .model__details-block {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 1.2rem;
    column-gap: 3.9rem;
    margin-top: 0;
    margin-bottom: 3.2rem;
  }

  .model__detail {
    padding-left: 0;
    border: none;
    align-items: center;
    text-align: center;
  }

  .news {
    margin: 0;
    padding: 0 1rem 2.7rem;
    border: none;
  }

  .news__slider .bold {
    font-weight: 400;
  }

  .more__news {
    margin-top: 2rem;
  }

  section {
    overflow: hidden;
  }

  .footer {
    padding: 2.4rem 1rem;
  }

  .footer__heading {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding-bottom: 0;
    border-bottom: 0;
    margin-bottom: 5.2rem;
  }

  .footer__heading .address {
    margin-top: 5.1rem;
  }

  .footer__heading .footer__social {
    margin-top: 2rem;
    flex-direction: column;
  }

  .footer__links {
    flex-direction: column;
    align-items: start;
    gap: 1.1rem;
  }

  .footer__links a {
    font-size: 4vw;
  }

  .footer__social a {
    font-size: 4vw;
  }

  .footer__logo {
    margin: 0;
    margin-bottom: 1.4rem;
  }

  .footer__links .instagram__icon {
    margin-bottom: 0;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 4.9rem;
  }

  .footer__bottom div {
    font-size: 10px;
  }

  .footer__bottom .text-xs {
    width: 100%;
  }

  .ecology {
    height: 39.1rem;
  }

  .ecology__content {
    margin: 2rem 1rem;
  }

  h1 {
    font-size: 2rem;
  }

  .header .btn {
    font-size: 1.1rem;
    padding: 0.4rem 0.7rem;
  }

  .about .banner .content {
    left: 1rem;
    bottom: 31rem;
    width: 80%;

    .text-lg {
      line-height: 1.4;
    }
  }

  .about .text-24 {
    font-size: 1.6rem;
  }

  .carousel-2 .swiper-slide {
    gap: 0;
  }

  .service__block .text-24 {
    font-size: 2rem;
  }

  .rounded_container {
    margin-bottom: 1rem;
    min-height: 24.8rem;
  }

  .about .title-md {
    font-size: 1.6rem;
  }

  .services__grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(3, 1fr);
    column-gap: 2.4rem;
    margin-top: 4.8rem;
    margin-bottom: 8.6rem;
    row-gap: 0.9rem;
  }

  .service__block {
    padding: 3.1rem 1rem;
  }

  .rounded_container .content {
    width: 100%;
  }

  .content_rounded {
    text-align: center;
    margin-bottom: 3.2rem;

    h3 {
      font-size: 3.2rem;
      margin-bottom: 2.1rem;
    }

    .text-xl {
      font-size: 1.1rem;
      width: 70%;
      margin: 0 auto;
    }
  }

  .text-lg {
    font-size: 1.2rem;
  }

  .about .banner .content h2 {
    font-size: 1.6rem;
  }

  .header .logo {
    margin: 0;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }

  h4,
  h1,
  h3,
  .text-lg,
  .text-md,
  .text-sm,
  .text-xs,
  .text-xl {
    line-height: 1;
  }

  .text-xxl {
    line-height: 4.5rem;
    font-size: 2.4rem;
  }

  .ecology__content .text-xxl {
    margin-bottom: 3rem;
  }

  h4 {
    font-size: 2rem;
  }

  .page__header {
    padding: 9rem 1rem 0;
  }

  .feature {
    display: flex;
  }

  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }

  .select__slider {
    gap: 2rem;
    width: calc(100% + 2rem);
    margin-right: 0;
    margin-left: -1rem;
    padding-left: 1rem;
    overflow: scroll;
    margin-bottom: 0;
    justify-content: flex-start;
  }

  .select__slider .text-md {
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-right: 0;
  }

  .select__slider .text-md:first-child {
    margin-right: 0;
  }

  .select__slider::-webkit-scrollbar {
    display: none;
  }

  .battery.container {
    padding-bottom: 2.1rem;
  }

  .select__slider {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .models__slider.active {
    display: flex;
    width: calc(100% + 2rem);
    margin-left: -1rem;
  }

  .ecology__content .section__title {
    margin-bottom: 7.9rem;
  }

  .section__title h6 {
    font-size: 1.5rem;
    font-weight: 400;
  }

  .promo .section__title {
    margin: 0 1rem 2.5rem;
    border-top: #b2b2b2 1px solid;
    padding-top: 2.873rem;
  }

  .model__battery .item_title {
    font-size: 8rem;
    padding: 0;
    border-left: 0;
    font-weight: 350;

    span {
      font-size: 7.6rem;
      font-weight: 300;
    }
  }

  .model__battery .item_data {
    flex-direction: column;
    padding: 0;
    margin-top: 1rem;

    .item_text {
      font-size: 1.4rem;
      width: 100%;
      line-height: 2rem;
    }
  }

  .brochure_btn {
    right: revert;
    left: 1rem;
    bottom: 6rem;
    gap: 1rem;
    position: static;
    justify-content: center;
    margin-top: 1.9rem;
  }

  .news .section__title {
    margin: 0;
    border-top: #b2b2b2 1px solid;
    padding-top: 2.873rem;
  }

  .battery__image {
    height: 15.6rem;
    width: 100%;
  }

  .battery__block {
    height: 100%;
    min-height: 29rem;
    overflow: hidden;
  }

  .battery__slider .swiper-slide {
    align-self: stretch;
    height: auto;
    overflow: hidden;
  }

  .title-md {
    font-size: 2.4rem;
  }

  #dealers .row {
    margin: 3.5rem 0 5.2rem;
    row-gap: 2rem;
  }

  .features__extended .feature4 img {
    -webkit-object-fit: cover;
    object-fit: cover;
    object-position: top;
  }

  #dealers .container {
    padding-top: 4rem !important;
    margin-bottom: 8rem;
  }

  .dealer {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 2rem;
  }

  .dealer .title-md {}

  .dealer__item:last-child {
    align-items: flex-start;
  }

  .battery__slider,
  .news__slider {
    margin-top: 2.5rem;
  }

  .model__banner-content .btn-container {
    gap: 1rem;
  }

  .model__battery .btn {
    align-self: center;
    margin-top: 2rem;
  }

  .battery__slider .swiper-slide:nth-child(4) img {
    object-fit: scale-down;
  }

  .block__content {
    padding: 1rem;
  }

  .block__content .text-md {
    line-height: 1.1;
    margin-bottom: 1rem;
  }

  .news__col img {
    height: 16.5rem;
    margin-bottom: 1.2rem;
  }

  .model__features .items .feature2 .item_data {
    width: 100%;
  }

  .model__features .items .feature4 .item_data {
    width: 70%;
    text-align: left;
  }

  main.single section:last-of-type {
    min-height: revert;
    margin-bottom: revert;
  }

  .song_battery .bg-wrapper .text-xl {
    font-size: 1.6rem;
    left: 1rem;
    top: 0.1rem;
  }

  main.single+.footer {
    position: static;
    background: #000;
  }

  .news__col .text-sm {
    margin-top: 1rem;
  }

  .single section:last-child .bg-wrapper {
    height: 37.5rem;
    inset: revert;
    left: 0;
    bottom: 0;
    z-index: -1 !important;
  }

  .test-drive .item::before {
    background: linear-gradient(180deg,
        rgba(255, 255, 255, 1) 46%,
        rgba(131, 131, 132, 0.2) 65%,
        rgba(255, 255, 255, 0) 100%);
  }

  .test-drive .item::after {
    content: "";
    height: 20%;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    background: linear-gradient(0deg,
        rgba(0, 0, 0, 1) 11%,
        rgba(131, 131, 132, 0.2) 88%,
        rgba(0, 0, 0, 0) 100%);
  }

  .han.video__banner .feature1 {
    min-height: revert;
  }

  .about .contacts .text-md {
    width: 100%;
  }

  .text {
    font-size: 1.2rem;
  }

  .text ul {
    padding-left: 1rem;
  }

  .map_about {
    height: 22.228rem;

    img {
      object-fit: contain;
    }
  }

  .map_about .dot {
    width: 0.784rem;
    height: 0.784rem;
    background-color: #fff;
    -webkit-box-shadow: 0 0 0 0.4rem rgba(255, 255, 255, 0.3);
    -moz-box-shadow: 0 0 0 0.4rem rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 0 0.4rem rgba(255, 255, 255, 0.3);
  }

  .song_battery .bg-wrapper .content-wrap::before {
    height: 30%;
  }

  .dealer__phone {
    padding-left: 0;
  }

  .map_about .dot_1 {
    bottom: 6.2rem;
    right: 8.8rem;
  }

  .map_about .dot:hover {
    -webkit-box-shadow: 0 0 0 0.8rem rgba(255, 255, 255, 0.35);
    -moz-box-shadow: 0 0 0 0.8rem rgba(255, 255, 255, 0.35);
    box-shadow: 0 0 0 0.8rem rgba(255, 255, 255, 0.35);
  }

  .map_about .dot_2 {
    left: 16.6rem;
    top: 8rem;
  }

  .promo__list {
    flex-direction: column;
    gap: 1.6rem;
    padding: 0 1rem 3.1rem;
    align-items: center;
  }

  .menu__model {
    padding: 2.6rem 3.2rem;
    width: 100%;
    transition: none;
    z-index: 9999;
  }

  .menu__model.open {
    transform: translate(0, 4.39rem);
  }

  .menu__translate {
    transform: none;
  }

  .video__banner .item {
    height: 30rem;
  }

  .promo__block {
    width: 100%;
    position: relative;
    height: 23.2rem;
  }

  .promo__block .text-xxl {
    line-height: 1.3;
  }

  .thumbs__slider-preview {
    padding: 0 1rem;
  }

  .thumbs__slider .gradient__overlay {
    z-index: 0;
  }

  .thumbs__slider .text-md,
  .thumbs__slider .text-md {
    z-index: 1;
  }

  .models__slider img {
    width: 20rem;
    height: 21rem;
  }

  .promo__content {
    top: 1.2rem;
    left: 1.1rem;
    position: static;
    padding: 1.2rem 1.1rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: flex-start;
  }

  .promo__content .btn:only-child {
    margin-top: auto;
    max-height: 5rem;
    margin-left: auto;
    line-height: 1;
  }

  .promo__list .btn {
    margin-top: 1.5rem;
  }

  .promo__content .text-md {
    margin: 0.8rem 0 1.683rem;
    font-size: 1.1rem;
    line-height: 1.4;
  }

  .cities__list {
    margin-top: 4.7rem;
    display: flex;
    flex-direction: column;
  }

  .about .banner img {
    object-position: -76rem 0;
  }

  .text h3,
  .text h4 {
    font-size: 1.6rem;
  }

  .accordion__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    cursor: pointer;
  }

  .feature {
    grid-area: revert !important;
  }

  .han.exterior .item {
    padding: 3.2rem 1rem;
    height: 27.7rem;
  }

  .text__page {
    font-size: 1.3rem;
    position: relative;
  }

  .text__page .gradient_transition-bottom {
    background: linear-gradient(0deg, #000 11%, rgba(0, 0, 0, 0) 50%);
  }

  .exterior .feature1 img {
    -webkit-object-fit: cover;
    object-fit: cover;
  }

  .video__banner .model__bannner-specs {
    width: 100%;
    position: static;
    gap: 1.7rem;

    h5 {
      font-size: 4rem;

      span.num {
        font-size: 4rem !important;
        font-weight: 300;
        white-space: nowrap;
      }

      span {
        font-size: 1.2rem !important;
      }
    }

    .text-xs {
      font-size: 1rem;
    }

    .spec__block {
      padding-left: 0.7rem;
      border-left: 1px solid #ffffff80;
    }
  }

  .model__features .feature .item_title,
  .han .item:first-child .item_title {
    font-size: 1.6rem;
  }

  .accordion__header a {
    display: none;
    width: 2.1rem;
  }

  .accordion__header a img {
    object-fit: none;
  }

  .accordion__header a.open img {
    filter: invert(1);
  }

  .accordion__header a.close {
    opacity: 0.5;
  }

  .mob__hide,
  .mob__hide.shown.item {
    display: none;
  }

  #news .news__row {
    grid-template-columns: repeat(1, 1fr);
    display: grid;
    row-gap: 2rem;
    margin: 3.4rem 0;
  }

  .first_news {
    display: flex;
    flex-direction: column-reverse;
  }

  .first_news .news_image {
    width: 100%;
  }

  .accordion__header a.open {
    display: block;
  }

  .accordion__content {
    flex-direction: column;
    align-items: flex-start;
    display: none;

    .container {
      padding: 2rem 0 !important;
    }
  }

  #service.form__page .container {
    width: 100%;
  }

  #service.form__page .container #form.form {
    padding: 0;
    margin-top: 4rem;
  }

  .form__page .form label.form__field:has(.col) {
    row-gap: 2rem;
  }

  #service.form__page .form {

    select,
    input {
      font-size: 1.2rem;
      height: 3.1rem;
    }
  }

  #service .text-xl {
    font-size: 1.6rem;
  }

  #service.form__page .container {
    padding-top: 2rem !important;
  }

  /* .features__extended .item_data {
    padding-left: 1.4rem;
  } */

  .accordion__content .text-md {
    margin-top: 2rem;
    font-size: 1.6rem;
    margin-bottom: 5.7rem;
    display: flex;
    align-items: center;
  }

  .accordion__content .text-xl {
    margin-bottom: 2rem;
  }

  .go_back_btn {
    display: flex;
    width: 2rem;
    height: 2rem;
    position: absolute;
    top: 7rem;
    right: 1rem;
  }

  .form__page .container {
    width: 100%;
    padding: 9.1rem 1rem !important;
    padding-bottom: 7.1 !important;
  }

  .accordion__content .text-md img {
    width: 2rem;
    height: 1.5rem;
    object-fit: contain;
    margin-right: 1rem;
  }

  .model__color,
  .model__features,
  .features__extended,
  .model__battery {
    padding: 1.9rem 1rem 4.5rem;
  }

  .warranty {
    padding: 2.7rem 2.7rem 4.2rem;
    text-align: center;
    gap: 3.9rem;
  }

  .model__color img {
    height: 20.3rem;
    width: 100%;
  }

  .warranty__details-row {
    flex-direction: column;
    align-items: start;
    gap: 2.2rem;
    text-align: start;
  }

  .warranty__details-row:last-child {
    gap: 4rem;
    width: 100%;
  }

  .warranty__details-row .spec__block {
    width: 100%;
  }

  .banner {
    min-height: revert;
  }

  .single .banner {
    height: 44.9rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1rem;
  }

  .model__banner-content,
  .model__bannner-specs {
    position: static;
  }

  .yuan_up_page .model__banner-content {
    margin-bottom: 14rem;
  }

  h2 {
    font-size: 2rem;
    font-weight: 300;
  }

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

  .about .service__block .text-md {
    font-size: 1.4rem;
  }

  .warranty__details-container {
    gap: 3.9rem;
    width: 100%;
  }

  main.about section:last-of-type {
    min-height: 105.9rem;
  }

  .dropdown_menu {
    position: static;
    padding-left: 0;
  }

  .dropdown_link {
    align-items: center;
  }

  .about .contacts .container {
    flex-direction: column;
    position: relative;
    gap: 0;
  }

  .about .contacts .col {
    width: 100%;
  }




  .model__features .feature .text-sm {
    margin-top: 1rem !important;
  }

  .single .video__banner {
    height: 23.4rem;
  }

  .single .video__banner.exterior {
    height: fit-content;

    .item_text {
      font-size: 1.4rem;
      font-weight: 300;
      width: 100%;
      text-align: center;
    }

    .feature2 .text-xl.item_title {
      text-align: center;
      font-size: 2rem;
      font-weight: 400;
      width: 80%;
      margin: 0 auto;
    }
  }

  .single .video__banner.exterior .item:last-child::before {
    background: linear-gradient(180deg,
        rgba(0, 0, 0, 1) 56%,
        rgba(0, 0, 0, 0) 90%,
        rgba(255, 255, 255, 0) 100%);
  }

  .exterior .item.mtop_2 {
    padding-top: 2rem;
  }

  .model__features .items {
    grid-template-columns: repeat(1, 1fr);
  }

  .model__features .items .item {
    grid-area: revert !important;
    height: 27.5rem !important;
    padding: 3rem 1rem !important;

    .item_data {
      color: #000 !important;
      width: 100%;
      text-align: left;
    }
  }

  .thumbs__slider .swiper-slide {
    padding: 1.4rem 2.3rem;
    height: 36.3rem;
  }

  .thumbs__slider h3 {
    font-size: 2rem;
    z-index: 1;
  }

  .thumbs__slider-preview .swiper-slide h3 {
    font-size: 1.6rem;
  }

  .thumbs__slider .text-md {
    width: 100%;
  }

  .thumbs__slider-preview .swiper-slide {
    height: 54.5rem;
    padding: 1.3rem 1rem;
    max-width: revert;
    justify-content: flex-start;
  }

  .thumbs__slider-preview .swiper-slide .bg-wrapper {
    position: static;
    height: 22.7rem;
    margin-bottom: 2rem;

    img {
      height: 22.7rem;
    }
  }

  .thumbs__slider-preview .text-md {
    width: 100%;
  }

  .comfort .swiper-pagination-bullet {
    width: 3.7rem;
  }

  #warranty__page .container {
    width: calc(100% - 2rem);
    padding: 0 0 2.4rem !important;
  }

  #warranty__page .banner {
    padding: 6.2rem 1rem;
    height: 45.1rem;
  }


  #warranty__page .select__slider {
    column-gap: 2rem;
  }

  #warranty__page .select__slider .text-md {
    font-size: 1.3rem;
    border-radius: 2rem;
    height: revert;
    padding: 0.8rem;
  }

  #service .text-xl,
  #warranty__page .text-xl,
  .form__page p {
    font-size: 1.6rem;
  }

  .form__page .banner {
    height: 30vh;
  }

  #warranty__page .models__slider img,
  #warranty__page .carousel-2 img {
    height: 30.8rem;
  }

  #warranty__page .btn-container {
    flex-direction: column;
    gap: 1.8rem;
    margin-top: 4rem;
  }

  #warranty__page .btn-container .btn,
  #warranty__page .spec__link_btn {
    height: revert;
    width: 100%;
  }

  .thumbs__slider .text-md,
  .thumbs__slider-preview .text-md {
    font-size: 1.3rem;
  }

  .thumbs__slider-preview .swiper-wrapper {
    padding: 2.8rem 0 4.9rem;
  }

  .comfort .swiper-horizontal>.swiper-pagination-bullets,
  .comfort .swiper-pagination-bullets.swiper-pagination-horizontal,
  .comfort .swiper-pagination-custom,
  .comfort .swiper-pagination-fraction {
    bottom: 2.4rem;
  }

  .battery__content {
    padding-left: 0;
    flex-direction: column;
  }

  .about .contacts .balloon .text-md {
    margin: 1.3rem 0 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .map_about .balloon {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .news__single .banner .content {
    left: 1rem;
  }

  .news__single .container {
    flex-direction: column-reverse;
    gap: 0;

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

  .news__single img {
    margin-bottom: 0;
  }

  .text p {
    margin-bottom: 2rem;
  }

  .text-2col {
    column-count: 1;
  }

  .news__single .banner {
    height: 33.4rem;
  }

  .news__single .banner .content {
    bottom: 2rem;
    left: 1rem;
    max-width: 25rem;

    h3 {
      font-size: 2rem;
    }
  }

  .news__single-col:first-child,
  .news__single-col:last-child {
    width: 100%;
  }

  .model__battery img {
    margin-bottom: 1.8rem;
  }

  .model__battery h5 {
    width: 100%;
    font-size: 1.4rem;
    line-height: 2rem;
  }

  .menu__model ul .car_preview {
    width: 70%;
  }

  .model__battery h1 {
    padding-left: 0;
    border: none;
    font-size: 12rem;
  }

  .model__battery h1 span {
    font-size: 9.6rem;
  }

  .video__banner.outside {
    height: 60rem;
    padding-bottom: 5rem;
  }

  .video__banner.outside {
    padding-top: 2.4rem;
  }

  .video__banner.exterior .gradient__overlay {
    height: 50%;
  }

  .outside .gradient__overlay {
    height: 50%;
    background: linear-gradient(180deg,
        #000000 20.87%,
        rgba(0, 0, 0, 0) 45.91%);
  }

  .exterior h4.hidden {
    transform: translateY(1rem);
  }

  .exterior h4,
  .outside h4 {
    font-size: 1.6rem;
    margin: 0;
    padding: 0 2.6rem;
    text-align: center;
    width: 100%;
    line-height: 2.4rem;
  }

  .footer__links img {
    margin-right: 1.1rem;
    -webkit-object-fit: cover;
    object-fit: cover;
  }

  .model__features .items .item .text-sm,
  .model__features .items .item .text-xl {
    z-index: 1;
    position: relative;
    width: 100%;
  }

  .model__features .items .text-xl {
    font-size: 1.6rem;
    line-height: 1;
  }

  .model__features .items .text-sm {
    font-size: 1.3rem;
    line-height: 1.9rem;
    width: 80%;
  }

  .features__extended {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
    padding-bottom: 0;
  }

  .features__extended .items {
    gap: 1rem;
    grid-template-columns: repeat(1, 1fr);
    row-gap: 2rem;
  }

  .features__extended .items .text-xl {
    font-size: 1.4rem;
  }

  .features__extended .items .item .bg-wrapper,
  .model__features .items .item .bg-wrapper {
    position: static;
    height: 16rem;
    width: 100%;
  }

  .features__extended .items .item,
  .model__features .items .item {
    color: #000;
    flex-direction: column;
    gap: 1rem;
    line-height: 1.7rem;
    padding: 0 !important;
    height: revert !important;
  }

  .features__extended .items .item .text-sm {
    margin-top: 0.6rem;
    width: 100%;
    color: #000;
    line-height: 1.7rem;
  }

  .features__extended .items .item .text-xl {
    line-height: 1.7rem;
    width: 100%;
    font-weight: 400;
    color: #000;
    margin-bottom: 1rem;
    font-size: 1.6rem;
  }

  .features__extended .gradient__overlay {
    display: none;
  }

  main.home section:last-of-type {
    min-height: revert;
    overflow: hidden;
    margin-bottom: 0;
  }

  main.home+.footer {
    position: static;
    background: #000;
  }

  .color__pick {
    flex-direction: column;
    gap: 2.3rem;
    align-items: center;

    .text-xxl {
      font-size: 2rem;
      text-align: center;
      line-height: 1.1;
      font-weight: 400;
    }
  }

  .text__page .container {
    margin-top: 4rem;
  }

  .home .banner {
    height: auto;
  }

  .banner .gradient_transition-bottom {
    height: 9rem;
  }

  .single .banner .bg-wrapper img {
    /*
    object-view-box: inset(2% 22% 32% -20%);
    object-position: top -2rem left -63rem;
		*/
  }

  .song .feature6::after {
    content: none;
  }

  .test-drive {
    h4 {
      z-index: 2;
      position: relative;
      line-height: 2.8rem;
      font-size: 2rem;
      margin-bottom: 3.9rem;
    }

    .btn-container {
      display: flex;
      align-items: center;
      gap: 1.4rem;
      z-index: 2;
      position: relative;
      font-weight: 400;
      flex-wrap: wrap;
    }

    .gradient__overlay-white {
      height: 50%;
    }
  }

  .test-drive {
    padding: 0;

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

    .items {
      .item {
        padding: 3.2rem 1rem;
      }
    }
  }

  .exterior .item {
    padding: 0;

    height: 50vh;
  }


  .yuan.exterior .item.mtop_1 {
    height: 35.7rem;
    justify-content: flex-start;
  }

  .yuan.exterior .item.mtop_1 .bg-wrapper {
    position: static;
    width: calc(100% + 2rem);
    margin-left: -1rem;
    margin-bottom: 3.4rem;
    height: 22.6rem;
  }

  .yuan.exterior .item.mtop_1 .item_data {
    max-width: 24.5rem;
    margin: 0 auto;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid;
  }

  .single .video__banner.yuan.exterior .item.mtop_1:after {
    bottom: 11rem;
  }

  .exterior .item .text-sm {

    line-height: 1.4;
  }

  .reveal__features {
    align-items: center;
    justify-content: center;
    align-self: center;
    gap: 0.4rem;
  }

  .warranty .reveal__features img {
    filter: invert(1);
  }

  .reveal__features img {
    transform: translateY(-0.1rem);
  }

  .han .model__battery .model__detail {
    padding-left: 0.7rem;
    border-left: 1px solid;

    .text-xxl {
      font-size: 4rem;
      line-height: 5.696rem;

      span {
        font-size: 1.2rem;
        line-height: 1.7rem;
      }
    }
  }

  .han .model__battery .model__detail .text-xs {
    font-size: 1rem;
  }

  .han .battery__content {
    flex-direction: row;
    gap: 1.4rem;
  }

  .han .model__battery .battery__image {
    height: 17.6rem;
    margin-bottom: 1.9rem;

    h2 {
      left: 1rem;
      top: 1rem;
    }
  }

  .banner__content {
    bottom: revert;
    top: 7rem;
    height: auto;
    width: 100%;
    z-index: 2;
  }

  .banner__content .text-sm {
    line-height: 1.4;
  }

  .banner .bg-wrapper::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 35%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
  }

  .dealership__btn {
    margin-left: 0;
  }

  .banner__content .btn-container {
    flex-wrap: wrap;
  }

  .banner .btn-container,
  .car_buy {
    flex-wrap: wrap;
    margin-top: auto;
    justify-content: start;
    align-items: center;
    margin-top: 1.4rem;
    padding: 0 2.1rem;
    row-gap: 1.5rem;
    column-gap: 3rem;
  }

  .banner .btn-container {
    margin-top: auto;
    padding-left: 0;
  }

  .banner .btn-container .btn {}


  .car_buy .btn {
    color: #000;
    border-color: #000;
  }

  .car_buy {
    gap: 1rem;
    padding: 0 1rem;
    justify-content: center;
  }

  .car_buy .btn {
    width: 48%;
    padding: 0.8rem 0.6rem;
    font-size: 1.2rem;
    text-align: center;
  }

  .popup-content {
    width: 100%;
    padding: 0;
    height: 130%;
    overflow: auto;
  }

  .popup-content .wrapper {
    padding: 2rem 1rem;
  }

  .popup-title {
    font-size: 2rem;
  }

  .popup-content .text-xl,
  .form__page .text-xl {
    font-size: 1.4rem;
  }

  .form-container {
    padding: 0;
  }

  .form-row label {
    font-size: 1.1rem;
  }

  .input-field {
    font-size: 1.3rem;
  }

  .form__page .title-md,
  .form__page h3 {
    font-size: 2.6rem;
  }

  .popup-btn-close {
    top: 2rem;
    left: 1rem;
  }


  .text__page td {
    padding: 1rem;
    font-size: 1rem;
  }

  .text__page tr:first-child td {
    font-weight: 400;
    padding: 0.3rem;
  }
}

.closePopupForm {
  align-self: center;
  display: none;
}

.whitespace {
  white-space: wrap;
}

.loading {
  transition: 0.1s;
  opacity: 0.5;
}