:root {
  --color-primary: #111111;
  --color-secondary: #E1251B;
  --font-base-desktop: calc(10px);
  --font-base-mobile: calc(10 / 320 * 100vw);
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: var(--font-base-desktop);
  overflow-x: hidden;
  font-family: "Noto Sans", sans-serif;
  width: 100%;
  height: 100%;
}

body {
  font-size: 1rem;
  font-family: "Noto Sans", sans-serif;
  display: flex;
  font-weight: 400;
  flex-direction: column;
  width: 100%;
  height: 100%;
  color: var(--color-primary);
  overflow-x: hidden;
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 15rem;
}

main {
  flex: 1 0 0;
  margin-top: -13rem;
}

a:-webkit-any-link {
  text-decoration: none;
  color: inherit;
}

.container {
  width: 100%;
  max-width: 144rem;
  padding: 0 5rem;
  margin: 0 auto;
  position: relative;
}

.container-sm {
  max-width: 130rem;
}

.container-xxs {
  width: 100%;
  max-width: 88.5rem;
  padding: 0 4.4rem;
  margin: 0 auto;
  position: relative;
}


.header {
  position: sticky;
  top: -5.3rem;
  left: 0;
  background: rgba(140, 140, 140, 0.4);
  width: 100%;
  color: #fff;
  transition: 0.4s ease;
  font-size: 1.6rem;
  z-index: 999;
  font-weight: 400;
}

.header.cars_header {
  position: static;
}

.header.active {
  background: #fff;
  color: var(--color-primary);
}

.text-uppercase {
  text-transform: uppercase;
}

.header_panel {
  padding: 1.4rem 0;
  background: #464646;
  color: #8B8D96;
}

.company_logos {
  display: flex;
  align-items: center;
  column-gap: 1.2rem;
  height: 100%;
}

.company_logos .separator {
  width: 0.1rem;
  height: 2.1rem;
  background: #8B8D96;
}

.footer .company_logos .separator {
  background: #fff;
}

.company_logos a:first-child img {
  min-height: 1.27rem;
  object-fit: contain;
}


.header.active .company_logos {
  filter: none;
}

.phone__button:before {
  content: "";
  display: block;
  width: 1.7rem;
  margin-right: 0.3rem;
  height: 1.7rem;
  background: url('/static/img/phone.svg') no-repeat;
  background-size: cover;
}

.facebook__button:before {
  content: "";
  display: block;
  width: 1.7rem;
  height: 1.7rem;
  background: url('/static/img/facebook.svg') no-repeat;
  background-size: cover;
}

.whatsapp__button:before {
  content: "";
  display: block;
  width: 1.7rem;
  height: 1.7rem;
  background: url('/static/img/whatsapp.svg') no-repeat;
  background-size: cover;
}

.lang_select {
  display: flex;
  align-items: center;
  column-gap: 1rem;
}

.lang_select__item {
  position: relative;
  display: flex;
  align-items: center;
  color: rgba(102, 114, 125, 1);

}

.lang_select__item:after {
  content: "";
  display: block;
  width: 0.1rem;
  height: 1rem;
  background: #fff;
  margin-left: 1rem;
}

.lang_select__item:last-child::after {
  display: none;
}

.lang_select__item.active {
  color: #fff;
}

.header.active .lang_select__item {
  color: rgba(102, 114, 125, 1);
}

.header.active .lang_select__item.active {
  color: #000;
}

.header.active .lang_select__item::after {
  background: #000;
}

.main_header .logo_sm {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.main_header {
  padding-top: 2.05rem;
  padding-bottom: 2.05rem;
}

.header.active .main_header .logo_sm {
  filter: invert();
}

.header_panel .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header_right {
  align-items: center;
  column-gap: 1rem;
}


.header__items {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__item {
  display: flex;
  column-gap: 4rem;
  align-items: center;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #002169;
  padding: 1.4rem 3.4rem;
  font-weight: 500;
  cursor: pointer;
  font-size: 1.4rem;
}

.btn__container {
  display: flex;
  column-gap: 2rem;
}

.btn__blue {
  border: none;
  background: var(--color-primary);
  color: #fff;
}


.social_btn {
  display: flex;
  align-items: center;
  color: var(--color-primary);
  gap: 0.5rem;
}

.mail__button::before {
  content: "";
  display: block;
  width: 2rem;
  height: 1.6rem;
  background: url('/static/img/mail.svg') no-repeat;
  background-size: contain;
  margin-right: 1.5rem;
  font-weight: 550;
}



.location_button::before {
  content: "";
  display: block;
  width: 1.8rem;
  height: 1.8rem;
  background: url('/static/img/location.svg') no-repeat;
  background-size: contain;
  font-weight: 550;
}




.instagram__button::before {
  content: "";
  display: block;
  width: 1.8rem;
  height: 1.8rem;
  background: url('/static/img/instagram.svg') no-repeat;
  background-size: contain;
  font-weight: 550;
}

.modal {
  display: none;
  opacity: 0;
  transition: 0.4s ease;
}

.bg-wrapper {
  position: absolute;
  inset: 0;
  z-index: -1;
}

img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.bg-wrapper img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
}

.bg-wrapper video {
  width: 100%;
  border-radius: inherit;
}



section {
  position: relative;
}

[bg="red"] {
  background: #C30C0E;
  color: #fff;
}

[bg="blue"] {
  background: var(--color-primary);
  color: #fff;
}

[bg="gray"] {
  background: #F5F7FA;
}

[bg="light-gray"] {
  background: #F4F5F3;
}

[color="light"] {
  color: #fff;
  border-color: #fff;
}

[color="light"] .specs__item-separator {
  background: #fff;
}




.banner {
  min-height: 70rem;
  height: calc(100vh - 6rem);
  position: relative;
  color: #fff;
  padding: 25.7rem 0 13rem;
  width: 100%;
  aspect-ratio: 1440 / 750;
}

.banner .text-lg {
  margin: 1rem 0 3rem;
}

.model__panel {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 1.3rem 0;
  box-shadow: 0px 1px 8.9px 0px #5C548940;
  background: #fff;
}

.section__title {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1;
  padding-top: 7rem;
  text-align: center;
  margin-bottom: 5.5rem;
}

.section__title.title_border {
  position: relative;
}

.design__image {
  margin-top: 4rem;
  width: 100%;
  height: auto;
}


  .section__title.title_border::after {
    content: '';
    position: absolute;
    width: 4rem;
    height: 4px;
    background: #0F47EA;
    left: 50%;
    transform: translateX(-50%);
    bottom: -2.5rem;
  }



.section__title.text-start {
  text-align: left;
}

#about {
  margin-top: 5.1rem;
  position: relative;
  /* margin-bottom: 5.1rem; */
}

#about .text-xxl {
  padding-top: 0;
  line-height: 1.25;
  margin-bottom: 0;
  margin-right: 0rem;
  flex: 1;
}

.specs_banner {
  position: relative;
}

.specs_banner:after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 21.5rem;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(115, 114, 126, 0.62) 100%);
  left: 0;
  z-index: -1;
}

#about .flex {
  align-items: flex-start;
}



#about .text-md {
  line-height: 1.5;
  flex: 1;
}

.model__panel .container {
  display: flex;
  align-items: center;

}

.model__panel .nav {
  display: flex;
  column-gap: 4rem;
  font-size: 1.4rem;
  margin-right: 7rem;
  align-items: center;
  font-weight: 300;
  margin-left: 2.5vw;
}

.model__panel .btn {
  width: 22rem;
  padding: 1.2rem 0;
}


.model__panel .nav a {
  color: #111111;
}

.download__button:after {
  content: "";
  display: block;
  width: 1.8rem;
  height: 1.8rem;
  background: url('/static/img/download.svg') no-repeat;
  background-size: contain;
  margin-left: 0.5rem;
}


.model__panel .btn__container {
  margin-left: auto;
}

.specs_banner {
  height: 72rem;
  margin-top: 5.5rem;
  padding-bottom: 5.5rem;
}

.specs_banner .container {
  display: flex;
  flex-direction: column;
  justify-content: end;
  height: 100%;
}

.specs_banner .section__title {
  margin: 0 0 3rem;
}

.specs__item-separator {
  width: 0.05rem;
  height: 4.7rem;
  background: #000;
}

#showcase .container {
  width: 100%;
  height: 100%;
  display: flex;
  gap: 7.2rem;
  z-index: 2;
  position: relative;
}

.text-sm {
  font-size: 1.4rem;
  line-height: 1.5;
}

.text-xs {
  font-size: 1.2rem;
}

.text-md {
  font-size: 1.6rem;
  line-height: 1.5;
}

.text-lg {
  font-size: 2rem;
}

h4 {
  font-size: 2rem;
  line-height: 1;
  font-weight: 700;
}

.text-xl {
  font-size: 2.3rem;
  line-height: 1.1;
}

.flex {
  display: flex;
}

.header_panel__img {
  object-fit: contain;
  width: 13rem;
}

.header .social_btn {
  color: #fff;
}

.header.active .social_btn {
  color: #000;
}

.header .social_btn::before {
  filter: invert();
}

.header.active .social_btn::before {
  filter: none;
}

.title-lg {
  font-size: 8rem;
  line-height: 0.875;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

.title-sm {
  font-size: 5rem;
  line-height: 1.2;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

.banner .title-sm {
  font-weight: 500;
}

.title-xs {
  font-size: 3rem;
  line-height: 1.2;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

h3 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
}

.text-xxl {
  font-size: 2.5rem;
  line-height: 1.2;
}

.text-48 {
  font-size: 4.8rem;
}

.btn__transparent {
  background: none;
  border: #fff 1px solid;
  color: #fff;
  backdrop-filter: blur(10px);
  transition: 0.3s ease;
}

.btn__transparent:hover {
  background: color-mix(in srgb, #fff 40%, transparent);
  border-color: var(#fff, hsla(0, 0%, 100%, .6));
}

a.btn__black {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}


.col {
  display: flex;
  flex-direction: column;
}

.btn.btn__white {
  background: #fff;
  border: none;
  color: #111111;
}


.mob {
  display: none;
}

.specs {
  display: flex;
  column-gap: 5.8rem;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 6rem;
}

#color_picker .specs {
  padding-bottom: 5.5rem;
  justify-content: center;
  column-gap: 1.2rem;
}

#color_picker .specs__item {
  min-width: 10rem;
}



.specs__vertical {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 3.5rem;
  column-gap: 5.2rem;
  margin-top: 0;
  align-self: center;
  align-items: flex-start;
  width: 100%;
  padding-bottom: 0;
}

.specs__vertical .specs__item {
  align-items: flex-start;
  text-align: left;
}

.fancybox-active {
  height: 100%;
}

.specs__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.specs__item-text {
  font-size: 2rem;
  font-weight: 250;
  margin-top: 1rem;
}

.specs__item-text.text-md {
  font-size: 1.6rem;
}

#specs {
  margin-top: 7rem;
}

.specs__image {
 width: 50%;
 min-width: 50%;
 overflow: hidden;
}

.specs__image img {
  width: 100%;
 max-height: 66.7rem;
 object-fit: contain;
}

#specs .col {
  width: 50%;
  background: #F4F5F3;
  padding-left: 10.7rem;
  padding-top: 10.1rem;
  padding-bottom: 9.8rem;
  row-gap: 4.1rem;
}

#color_picker {
  color: #fff;
  width: 100%;
  position: relative;
  display: flex;
  height: calc(100vh - 10rem);
  transition: 0.4s ease;
}


.color-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

#color_picker .section__title {
  position: absolute;
  top: 7rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  width: 100%;
  padding-top: 0;
}

#color_picker .container {
  display: flex;
  flex-direction: column;
  height: 100%;
}


.color-picker {
  display: flex;
  column-gap: 2.5rem;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  margin-bottom: 5.5rem;
  flex-wrap: wrap;
  row-gap: 1rem;
}

.color-picker__item {
  display: block;
  border-radius: 50%;
  width: 4rem;
  height: 4rem;
  padding: 1rem;
  cursor: pointer;
  position: relative;
}


.color-picker__item.active::after {
  content: "";
  display: block;
  width: 5rem;
  height: 5rem;
  background: transparent;
  border-radius: 50%;
  border: 1px #fff solid;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.color_names {
  width: 100%;
}

.color_name {
  font-weight: 600;
  text-align: center;
  display: none;
  transition: 0.4s ease;
  opacity: 0;
  position: absolute;
  background: #fff;
  color: #000;
  padding: 0.7rem 0.8rem;
  border-radius: 0.8rem;
  font-size: 1rem;
  font-weight: 700;
  left: 50%;
  transform: translateX(-50%);
  bottom: -3.9rem;
  width: max-content;
  display: none;
}

.color-picker__item.active .color_name {
  display: block;
}

.color_name.active {
  display: block;
  opacity: 1;
}

.swiper-button-next,
.swiper-button-prev {
  color: #fff;
  border: 2px solid #fff;
  width: 4.4rem;
  height: 4.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  transition: 0.4s ease;
  background: #3B383880;
}

.swiper-button-next {
  right: 6rem;
}

.swiper-button-prev {
  left: 6rem;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 1.8rem;
  font-weight: bold;
}

.section__title.title_left {
  align-items: center;
  text-align: left;
  justify-content: flex-start;
}


.col_blocks {
  display: flex;
  gap: 2.5rem;
}

.tiles .col_blocks {
  gap: 1.1rem;
}

.col_block {
  padding: 2.5rem;
  padding-right: 7.5rem;
  background: #F4F5F3;
  display: flex;
  flex-direction: column;
  align-items: start;
  flex: 1;
}

.tiles .col_block {
  padding: 0;
  flex: 1;
}

.tiles .col_block img {
  width: 100%;
  height: auto;
  margin-bottom: 0;
}

.tiles .col_block .text-md {
  padding: 4.3rem 5.5rem;
  background: #F4F5F3;
}

.col_block img {
  margin-bottom: 4rem;
  object-fit: contain;
  width: 7rem;
  height: 7rem;
  object-position: center;
}

#power .col_block img {
  margin-bottom: 1rem;
}

#benefits .col_block img {
  margin-bottom: 3rem;
}

.grid_img {
  position: relative;
  margin-top: 5rem;
}

.w-100 {
  width: 100%;
}

.grid_img .text-md {
  position: absolute;
  bottom: 6rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  text-align: center;
  color: #fff;
  font-weight: 300;
}

.pt-1 {
  padding-top: 3.8rem;
}

.grid_img img {
  width: 100%;
  height: auto;
}

.col_block .title-xs {
  margin-bottom: 1.3rem;
}

.row {
  display: flex;
  justify-content: space-between;
  z-index: 1;
}

.row .text-sm {
  max-width: 63rem;
}

.exterior-row {
  display: flex;
  column-gap: 3.3rem;
  flex-flow: wrap;
  row-gap: 5.5rem;
}


.exterior-row__item {
  display: flex;
  width: 63rem;
  flex-grow: 1;
  flex-direction: column;
}

.exterior-row__item:first-child {
  width: 100%;
}

.exterior-row__item img {
  flex-basis: 100%;
  width: 100%;
  flex-shrink: 0;
  flex-grow: 0;
  margin-bottom: 2rem;
}

.exterior-row__item-title,
.comfort__item-title {
  font-weight: 700;
}

.exterior-row__item:first-child {
  flex-direction: row;
  flex-wrap: wrap;
}

.exterior-row__item:first-child .text-sm {
  max-width: 65.4rem;
  margin-left: auto;
  margin-top: 0;
}

.exterior-row__item .text-sm {
  margin-top: 1rem;
}

.interior .flex {
  justify-content: space-between;
  gap: 2.4rem;
  align-items: stretch;
}

.interior .flex img {
  max-height: 27rem;
  width: 43rem;
}


.interior .flex .col {
  flex: 1;
}

.interior h4 {
  margin: 2.5rem 0 1rem;
}

.comfort {
  position: relative;
  width: 100%;
  padding: 0 0 7rem;
}

.comfort.tab_container {
  padding: 0;
}

.comfort .bg-wrapper {
  z-index: -1;
}

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 6rem;
  top: auto;
}


.swiper-pagination-bullet {
  background: #fff;
  opacity: 0.45;
  width: 1rem;
  height: 1rem;
  position: relative;
}

.swiper-pagination-bullet-active {
  opacity: 1;
}

.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 0.75rem;
}

.swiper-pagination-bullet-active::after {
  content: "";
  display: block;
  width: 1.7rem;
  height: 1.7rem;
  background: transparent;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid #fff;
}

.fw-600 {
  font-weight: 600;
}

.fw-500 {
  font-weight: 500;
}

.fw-300 {
  font-weight: 300;
}

.fw-700 {
  font-weight: 700;
}

#power .specs {
  z-index: 3;
  margin-top: 4rem;
  column-gap: 2rem;
  align-items: flex-start;
}

#power .specs__item-title {
  margin-bottom: 0.5rem;
}

#power .specs__item-separator,
#benefits .specs__item-separator {
  background: #fff;
  height: 100%;
}

#safety {
  padding-bottom: 7rem;
}

.swiper-pagination.static {
  position: static;
  margin-top: 4rem;
}

.swiper-pagination.static .swiper-pagination-bullet {
  background: #838796;
  border: 1px solid #838796;
}

.swiper-pagination.static .swiper-pagination-bullet-active::after {
  border: 1px solid #838796;
}

.blocks_grid {
  margin-top: 5rem;
  display: grid;
  gap: 3.8rem 3.6rem;
}

.blocks_grid .col_block {
  padding: 1.9rem 3rem ;
  gap: 1rem;
}

.caution {
  padding: 2.6rem 0;
}

.caution img {
  flex: 1;
  margin-right: 0.8rem;
  flex-shrink: 0;
  min-width: 3.4rem;
  object-fit: contain;
}

.caution .flex {
  align-items: stretch;
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

#safety .safety__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 3.9rem;
  row-gap: 3rem;
  align-items: stretch;
}

#safety .safety__row video {
  aspect-ratio: 420 / 270;
  display: block;
  max-width: 100%;
  object-fit: cover;
}

.safety__poster {
  cursor: pointer;
  position: relative;
}

#safety .safety__row .safety__poster::after {
  content: "";
  display: block;
  width: 6.4rem;
  height: 6.4rem;
  background: #000;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url('/static/img/Play.svg') no-repeat center center;
  background-size: cover;
}

.safety__item-title {
  margin: 2.5rem 0 1.2rem;
}

.benefits {
  width: 100%;
  padding-bottom: 5rem;
}

.benefits__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 2.7rem;
  row-gap: 3rem;
  align-items: stretch;
}

.benefits__item:nth-child(2) {
  padding: 0 2.7rem;
  border-left: 1px solid #ffffff57;
  border-right: 1px solid #ffffff57;
}

.benefits__item-separator {
  width: 0.05rem;
  height: 100%;
  min-height: 20rem;
  background: #fff;
}

.design {
  color: #fff;
  width: 100%;
  height: 72rem;
}

.power {
  padding-bottom: 5rem;
  height: 90vh;
}

.power .container {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.power .specs {
  padding-bottom: 0;
}

.power .specs__item {
  flex: 1;
}



.text-center {
  text-align: center;
}


.design .container {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding-bottom: 5.5rem;
}

.design .section__title {
  margin-bottom: 2rem;
}

.design .container .row {
  margin-top: auto;
}

.specs-list {
  list-style-position: inside;
  margin-top: 1.5rem;
}

.specs-list-item {
  margin-bottom: 0.8rem;
  display: flex;
}

.specs-list-item::before {
  content: "•";
  display: block;
  width: 0.8rem;
  height: 0.8rem;
  margin-right: 0.5rem;
}

.specs-list-item:last-child {
  margin-bottom: 0;
}

.benefits__item-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.gallery_section {
  position: relative;
  width: 100%;
  max-height: 85vh;
  aspect-ratio: 1440 / 652;
  overflow: hidden;
}


.gallery_slider {
  height: 100%;
}

.back_link {
  color: #000;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.4rem;
  font-weight: 550;
  cursor: pointer;
  margin-bottom: 1.5rem;
}

.back_link::before {
  content: "";
  display: block;
  width: 0.7rem;
  height: 1.3rem;
  background: url('/static/img/arrow_left.svg') no-repeat center center;
  background-size: cover;
}

.form_title {
  margin-bottom: 3rem;
}

a.agreement_text_link {
  color: #0F47EA;
}



.agreement_text .text-sm {
  line-height: 1.3;
}

.gallery_section .section__title {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
}

.contacts {

  background: #F4F5F3;
}

.contacts__container {
  display: flex;

  height: 47.6rem;
}


.contacts__container .col {
  background: #F4F5F3;
  width: 50%;
}

.contacts__container .col h4 {
  margin-bottom: 2rem;
  line-height: 1.3;
}

.contacts__container .col .social_btn {
  margin-bottom: 1.5rem;
}

.contacts .section__title {
  text-align: start;
  justify-content: flex-start;
  margin-bottom: 3rem;
}


#map {
  width: 50%;
  height: 100%;
  flex-basis: 50%;
  flex: 1;
  flex-shrink: 0;
}

.footer__wrapper {
  background: #66727D;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.footer__wrapper .container a {
  filter: brightness(0) invert(1);
}

.footer__wrapper .header__item {
  gap: 1.1rem;
}

.copyright {
  font-size: 1.3rem;
  text-align: center;
  padding: 1.4rem 0 1.5rem;
}


modal.active {
  display: block;
  opacity: 1;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
}

.modal::after {
  content: "";
  background: #1F2126BF;
  opacity: 0.95;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}

.noscroll {
  overflow: hidden;
}

.modal__wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.modal_container {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1000;
  background: #fff;
  transform: translate(-50%, -50%);
  padding: 2.1rem 4.5rem 3.9rem;
}

.modal-close {
  position: absolute;
  right: 0;
  top: -6rem;
  width: 4rem;
  background: url('/static/img/x.svg') no-repeat;
  background-size: cover;
  height: 4rem;
  cursor: pointer;
}

.form__field {
  width: 100%;
  padding: 1.7rem 2.3rem;
  outline: none;
  border: 1px solid var(--color-primary);
  font-size: 2rem;
  border-radius: 0.5rem;
}

.form__group {
  margin-bottom: 2rem;
}

.wrapper {
  margin-top: 3.1rem;
}

.form__group:last-child {
  margin-bottom: 0;
}

.errorMessage {
  color: var(--color-secondary);
}

.modal .btn {
  width: 100%;
}

.form__select {
  width: 100%;
  padding: 1.7rem 2.3rem;
  outline: none;
  border: 1px solid var(--color-primary);
  background-color: #fff;
  color: var(--color-primary);
  font-size: 2rem;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url('/static/img/arrow-down.svg');
  background-repeat: no-repeat;
  background-position: right 2.3rem center;
  background-size: 1.2rem;
  cursor: pointer;
}

.form__select option {
  font-size: 1.6rem;
  padding: 1rem;
}

.form__select:focus {
  border-color: var(--color-secondary);
}

.form__select option[value=""] {
  color: #999;
}

@supports not (background-image: url('/static/img/arrow-down.svg')) {
  .form__select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23002169' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  }
}

@supports not (background-image: url('/static/img/arrow-down.svg')) {
  .form__select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23002169' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  }
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1rem 0 3.1rem;
}

.form__checkbox {
  width: 2rem;
  height: 2rem;
  cursor: pointer;
  accent-color: var(--color-primary);
}

.checkbox-label {
  font-size: 1.4rem;
  font-weight: 550;
  color: var(--color-primary);
  cursor: pointer;
}

.checkbox-group .errorMessage {
  margin-top: 0.5rem;
  font-size: 1.4rem;
}

.success-message {
  font-size: 2rem;
}

.modal.active {
  display: block;
  opacity: 1;
}

.mob {
  display: none;
}

[data-tab] {
  display: none;
}

[data-tab].active {
  display: block;
}

.tabsSlider {
  position: relative;
  overflow: hidden;
}

.tabsSlider .swiper-slide {
  aspect-ratio: 1260 / 637;
}

section.tab_container {
  background: #F4F5F3;
  padding-bottom: 7rem;
}

section.tab_container[bg="light-gray"] {
  background: #F2F2F2;
}

.tab_container .swiper-button-next,
.tab_container .swiper-button-prev {
  background: #3B383880;
}

.tab_container .swiper-button-next {
  right: 2.5rem;
}

.announce {
  margin-bottom: 4rem;
}

.tab_container .swiper-button-prev {
  left: 2.5rem;
}

.tab_container h4 {
  font-weight: 600;
}

.video_separator {
  width: 100%;
  display: block;
  height: auto;
}

.tab_pagination {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin: 0 auto;
  font-size: 2rem;
  border-bottom: 1px solid #000;
  font-weight: 600;
  margin-top: 4rem;
  padding-bottom: 2.8rem;
  margin-bottom: 4rem;
  gap: 3rem;
}

.tab_pagination__item {
  cursor: pointer;
  position: relative;
  text-align: center;
  opacity: 0.5;
}

.tab_pagination__item.active {
  opacity: 1;
}

.tab_pagination__item:after {
  content: '';
  width: 0;
  transition: width 0.3s ease-in-out;
}

.tab_pagination__item.active::after {
  display: block;
  width: 100%;
  height: 4px;
  background: #000;
  position: absolute;
  bottom: -2.8rem;
  left: 0;
}

.tab_text {
  font-size: 1.6rem;
  width: calc(100% - 54rem);
  text-align: center;
  margin: 0 auto;
}

.tab_text .text-lg {
  margin-bottom: 1rem;
}

.interior_colors {
  height: calc(100vh - 10rem);
  position: relative;
  color: #fff;
}

.fade_top::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent);
  z-index: 2;
}

.fade_bottom::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
  z-index: 2;
}

.mask_gray:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('/static/img/mask.png') no-repeat center center;
  background-size: cover;
  z-index: 0;
  mix-blend-mode: multiply;
  filter: blur(200px);
}

.fade_top .container,
.fade_bottom .container {
  z-index: 4;
}

.interior_colors .container {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  opacity: 0;
}

.comfort_slider {
  position: relative;
}


.comfort_slider .swiper-slide {
  height: 50rem;
  display: flex;
  flex-wrap: nowrap;
}


.comfort_slider .swiper-pagination {
  width: 54%;
  right: 0;
  left: auto;
}


.comfort_slider img {
  width: 51%;
  height: 100%;
}

section.comfort {
  background: #fff;
}

.comfort_slider .col {
  background: #F4F5F3;
  padding: 14.6rem 7.1rem 14.7rem 11.1rem;
  gap: 2rem;
}

.fluid_cards {
  display: flex;
  width: 100%;
  height: 44rem;
  margin-top: 4rem;
  gap: 0.8rem;
}

.fluid_card {
  position: relative;
  flex-basis: 20%;
  height: 100%;
  transition: flex-basis 0.5s ease-in-out;
}

.fluid_card .bg-wrapper {
  z-index: 0;
  overflow: hidden;
}

.fluid_card .bg-wrapper img {

  transition-delay: 0s;
  transition: transform 0.1s ease-in-out;
}

.fluid_card.hovered .bg-wrapper img {
  transform: scale(1.1);
  transition: transform 0.5s ease-in-out;
  transition-delay: 0.9s;

}

.fluid_card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0,0,0,.4);
  padding: 2rem;
  -webkit-backdrop-filter: blur(30px);
  backdrop-filter: blur(30px);
  display: flex;
  flex-direction: column;
  color: #fff;
  justify-content: flex-start;
  gap: 1rem;
  transition: all 0.2s ease-in-out;
  transition-delay: 0s;
  cursor: pointer;
  overflow: hidden;
  max-height: 10rem;
}

.fluid_card__text {
 opacity: 0;
 transition: opacity 0.2s ease-in-out;
 transition-delay: 0s;
}

.fluid_card.hovered .fluid_card__content{
  max-height: 100%;
  transition: all 1.5s ease;
  transition-delay: 0.5s;
}

.fluid_card.hovered .fluid_card__text {
  opacity: 1;
  transition: opacity 0.5s ease;
  transition-delay: 0.5s;
}

.fluid_card.hovered {
  flex-basis: 40%;
}



@media screen and (max-width: 1000px) {
  html {
    font-size: var(--font-base-mobile);
  }

  .container {
    max-width: 100%;
    padding: 0 1rem;
    width: 100%;
  }

  #showcase .container {
    justify-content: center;
  }

  .pc {
    display: none;
  }

  .header .container {
    padding: 1rem 1.4rem;
  }

  .header_panel {
    padding: 0;
    background: #F6F6F6;
    color: #000;
  }

  .header_panel__img {
    filter: none;
    float: left;
    margin-right: 0.4rem;
  }

  .main_header .logo_sm {
    position: static;
    transform: none;
  }

  .header .header__items {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: translateX(-100%);
    background: #fff;
    z-index: 9999;
    flex-direction: column;
    color: #000;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 2rem;
    transition: transform 0.3s ease-in-out;
    padding: 8rem 2rem;
  }

  .header .header__items.active {
    transform: translateX(0);
  }

  .header .header__item {
    flex-direction: column;
    gap: 2rem;
    align-items: flex-start;
  }

  .lang_select__item {
    opacity: 0.3;
  }
  .lang_select__item:after {
    background: #000;
  }

  .lang_select__item.active {
    color: #000;
    opacity: 1;
  }

  main {
    margin-top: -6.4rem;
  }

  .header_panel .container .flex {
    display: block;
    font-size: 1rem;
  }

  .header_panel .container .flex.header_right {
    display: none;
  }

  .header_panel .container {
    padding: 1.5rem 1rem;

  }

  .header {
    top: -6.4rem;
  }

  .main_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .burger_button {
    display: block;
    width: 2rem;
  }

  .header.active .burger_button {
    filter: invert(1);
  }

  .mob {
    display: block;
  }

  .burger_button span {
    display: block;
    width: 2rem;
    height: 2px;
    background: #fff;
    margin-bottom: 0.5rem;
  }

  .header.active .main_header {
    background: #fff;
  }

  .burger_button span:last-child {
    margin-bottom: 0;
  }

  .close_button:before {
    content: '';
    position: absolute;
    top: 4rem;
    right: 2rem;
    width: 2rem;
    height: 2rem;
    background: url('/static/img/cross.svg') no-repeat center center;
  }



  .model__panel {
    top: 0;
    box-shadow: none;
    padding: 0;
    padding-bottom: 0;
    box-shadow: 0px 1px 8.9px 0px #5C548940;
  }

  .company_logos {
    gap: 1rem;
  }

  .model__panel .nav {
    margin-left: 0;
    font-size: 1rem;
    column-gap: .95rem;
    overflow-x: scroll;
    margin-right: 0.45rem;
    padding: 1.5rem;
    width: 100%;
  }

  .model__panel .container {
    row-gap: 0;
    align-items: flex-start;
    flex-direction: column;
    padding: 0;
  }

  .color-picker__item {
    width: 2.2rem;
    height: 2.2rem;
  }

  .color-picker__item.active::after {
    width: 3rem;
    border-color: #c7c7c7;
    height: 3rem;
  }

  .model__panel .btn {
    text-wrap: nowrap;
    max-width: 13.5rem;
    font-size: 1rem;
    flex: 1;
  }

  .model__panel .btn__container {
    margin-left: 0;
    gap: 1rem;
    align-self: center;
    padding: 0.5rem 2rem;
  }

  .model__panel.active {
    max-height: 5rem;
  }

  .btn {
    font-size: 1.1rem;
    padding: 1.2rem 2.3rem;
  }

  .download__button {
    padding: 0.8rem 0.9rem;
  }

  .download__button:after {
    margin-left: 0;
    width: 1.3rem;
    height: 1.3rem;
  }

  .comfort .bg-wrapper {
    position: static;
    aspect-ratio: 320 / 209;
  }

  .model__panel .nav a {
    flex-shrink: 0;
  }

  .banner {
    min-height: 51.4rem;
    padding-top: 9.5rem;
    padding-bottom: 6rem;
  }

  .banner .text-lg {
    margin: 1.5rem 0 2.5rem;
  }


  .text-xxl {
    font-size: 1.7rem;
  }

  .title-sm {
    font-size: 3rem;
  }

  .banner .col {
    text-align: center;
    height: 100%;
    width: 100%;
  }

  .banner .btn__container .btn {
    flex: 1;
  }


  .section__title {
    font-size: 2rem;
    padding-top: 3rem;
    line-height: 1.2;
    z-index: 1;
    margin-bottom: 3rem;
  }




  .text-xl {
    font-size: 1.4rem;
  }

  .specs_banner {
    height: revert;
    margin-top: 3rem;
    padding-bottom: 0;
    background: #fff;
    color: #000;
  }

  .specs_banner .bg-wrapper {
    position: static;
    width: 100%;
    height: auto;
    margin-bottom: 0;
  }

  .specs {
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    gap: 2rem;
    margin-top: 1.5rem;
    padding-bottom: 2rem;
  }

  .specs__vertical {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 1.5rem;
    column-gap: 0;
    align-self: stretch;
  }

  .specs__image {
    margin-right: 0;
    width: 100%;
  }

  #specs {
    background: #F4F5F3;
    margin-top: 4rem;
  }

  #specs .flex {
    flex-direction: column;
  }

  #specs .col {
    width: 100%;
    padding: 0 1rem;
    padding-top: 2rem;
    gap: 2rem;
  }




  .specs_banner .section__title {
    display: none;
  }

  .specs__item-text {
    font-size: 1.2rem;
    margin-top: 0;
  }

  .specs__item-separator {
    display: none;
  }

  .specs__item-title {
    font-size: 1.3rem;
    flex: 1;
    text-align: start;
    display: flex;
    align-items: baseline;
    /* padding: 1rem 0; */
  }

  .specs__item-title:after {
    content: '';
    flex: 1;
    border-bottom: 1px dashed #57586133;
    margin: 0 1rem;
  }

  .specs__item {
    flex-direction: row;
    width: 100%;
    justify-content: space-between;
  }


  #color_picker {
    height: 52rem;
    flex-direction: column;
  }

  .color-slider {
    height: 15rem;
    inset: revert;
    top: 7rem;
    left: 0;
    width: 100%;

  }

  #interior_colors .color-slider {
    top: 10rem;
  }

  .title_border+.text-lg {
    margin-bottom: 1.5rem;
  }

  #color_picker .swiper-button-next,
  #color_picker .swiper-button-prev {
    display: none;
    z-index: 0;
  }

  .color-picker {
    column-gap: 2rem;
    row-gap: 2rem;
    margin-bottom: 4.9rem;
  }

  .color-picker__item:first-child .color_name {
    transform: translateX(-30%);
  }

  .color-picker__item:last-child .color_name {
    transform: translateX(-80%);
  }

  .color-picker__item:last-child:nth-child(2) .color_name {
    transform: translateX(-50%);
  }


  h4 {
    font-size: 1.4rem;
  }

  .design {
    height: 44.7rem;
    color: #000
  }

  .design::after,
  .design::before {
    content: none;
  }

  .design .bg-wrapper {
    height: 18.2rem;
    inset: revert;
    top: 10.4rem;
    left: 0;
  }

  .design .row {
    flex-direction: column;
    gap: 2rem;
  }

  .design .container {
    padding-bottom: 3rem;
  }

  .text-lg {
    font-size: 1.4rem;
  }

  #color_picker {
    color: #000;
    background: #F4F5F3;
  }

  .exterior-row,
  .interior .flex {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    row-gap: 3rem;
  }

  .exterior-row__item {
    width: 100%;
  }

  .exterior-row__item img {
    aspect-ratio: 300 / 224;
    flex-grow: revert;
    flex-shrink: revert;
    margin-bottom: 1.5rem;
  }

  .exterior-row__item-title {
    margin-bottom: 0.5rem;
  }

  .exterior,
  .interior {
    margin-bottom: 3rem;
  }

  .interior h4 {
    margin: 1.5rem 0 0.5rem;
  }

  .comfort {
    aspect-ratio: 320/496;
    color: #111111;
    padding-bottom: 8rem;
    padding-top: 0;
  }



  .comfort .swiper-button-next,
  .comfort .swiper-button-prev {
    display: none;
  }

  .swiper-horizontal>.swiper-pagination-bullets,
  .swiper-pagination-bullets.swiper-pagination-horizontal,
  .swiper-pagination-custom,
  .swiper-pagination-fraction {
    bottom: 3rem;
  }




  #safety .swiper-horizontal>.swiper-pagination-bullets,
  #safety .swiper-pagination-bullets.swiper-pagination-horizontal,
  #safety .swiper-pagination-custom,
  #safety .swiper-pagination-fraction {
    bottom: 3rem;
    filter: invert(0);
  }


  #safety {
    padding-bottom: 9.5rem;
  }

  #safety .text-sm {
    font-size: 1.2rem;
  }

  .benefits__row {
    grid-template-columns: repeat(1, 1fr);
  }

  .benefits__item {
    width: 100%;
  }

  .benefits__item-title {
    font-size: 1.5rem;
  }

  .benefits__item-text {
    font-size: 1.2rem;
  }

  .benefits__item:nth-child(2) {
    padding: 0;
    border: none;
  }

  #benefits .bg-wrapper {
    position: static;
    aspect-ratio: 320/255;
  }


  .benefits {
    height: revert;
    padding-bottom: revert;
  }

  .benefits .container {
    padding-bottom: 3rem;
  }

  .modal_container {
    width: calc(100% - 2rem);
    padding: 3.9rem 1rem;
    max-height: 90vh;
    overflow: scroll;
  }

  .wrapper {
    margin-top: 0;
  }

  .form__field {
    padding: 1.2rem 1.5rem;
    width: 100%;
    font-size: 1.2rem;
  }

  .modal-close {
    width: 2.4rem;
    height: 2.4rem;
    top: -3.4rem;
  }

  .checkbox-label {
    font-size: 1rem;
  }

  .contacts__container {
    height: revert;
    flex-direction: column;
  }

  .contacts__container .col {
    padding: 2rem 1.5rem;
    width: 100%;
  }

  #map {
    height: 35.3rem;
    width: 100%;
    flex: revert;
  }

  .contacts__container .col h4 {
    margin-bottom: 1rem;
  }

  .contacts__container .col .social_btn {
    margin-bottom: 0.5rem;
  }

  .contacts {
    padding-bottom: 2rem;
  }

  .contacts .text-lg {
    font-size: 1.2rem;
  }

  .phone__button:before {
    margin-right: 0;
    width: 1.4rem;
    height: 1.4rem;
  }

  .location_button:before {
    width: 1.4rem;
    height: 1.4rem;
  }

  .specs-list-item {
    margin-bottom: 0.6rem;
  }

  .specs-list {
    margin-top: 0.8rem;
  }

  .swiper-pagination-bullet-active::after {
    border-color: #66737D;
    width: 1.2rem;
    height: 1.2rem;
  }

  .swiper-pagination-bullet {
    background: #66737D;
    width: 0.8rem;
    height: 0.8rem;
  }

  .swiper-pagination-bullet-active {
    background: #66737D;
  }

  .swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
  .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 0.45rem;
  }


  .gallery_section .swiper-pagination-bullet
 {
    background: #fff;
  }

  .comfort .swiper-pagination {
    bottom: -3rem;
    left: 1rem;
    right: 1rem;
    width: auto;
    line-height: 0;
    border-bottom: 1px solid #000;
    text-align: start;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
  }

  .comfort .swiper-pagination-bullet-active::after {
    content: none;
  }

   .comfort .swiper-pagination-bullet {
    border-radius: 0;
    width: 5rem;
    max-height: 0;
    height: 0.4rem;
    background: #000;
    transition: all 0.4s ease-in-out;
   }

   .comfort .swiper-pagination-bullet:first-child {
    margin-left: 0;
   }

   .comfort .swiper-pagination-bullet:last-child {
    margin-right: 0;
   }

   .comfort .swiper-pagination-bullet-active {
    max-height: 0.4rem;
   }

  .gallery_section .swiper-pagination-bullet-active {
    background: #fff;
  }

  .gallery_section .swiper-pagination-bullet-active::after {
    border-color: #fff;
  }

  #about {
    margin-top: 3rem;
  }

  #about .section__title {
    margin-right: 0;
    margin-bottom: 2rem;
  }

  #about .flex {
    flex-wrap: wrap;
    flex-direction: column;
    gap: 4rem;
  }

  #about .text-xl {
    max-width: 100%;
  }

  .tab_pagination {
    width: 100%;
    overflow: scroll;
    font-size: 1.4rem;
    gap: 1rem;
    margin: 2rem 0;
    padding-bottom: 1rem;
    scrollbar-width: none;
  }

  .tab_pagination::-webkit-scrollbar {
    display: none;
  }

  .tab_pagination::-webkit-scrollbar-track {
    background: transparent;
  }

  .tab_pagination__item {
    flex-shrink: 0;
    max-width: 100%;
  }

  .tabsSlider .swiper-slide {
    width: 100%;
    aspect-ratio: 290/160;
  }

  .tiles .col_block .text-md {
    padding: 2rem;
  }

  .text-md {
    font-size: 1.2rem;
  }
  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }

  .tab_text {
    width: 100%;
    font-size: 1.2rem;
  }

  .tab_pagination__item.active::after {
    bottom: -1rem;
  }

  .blocks_grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 2.5rem;
  }

  .grid_img .text-md {
    bottom: 2rem;
  }

  .grid_img {
    margin-top: 3rem;
  }

  .text-48 {
    font-size: 1.8rem;
  }


  section.tab_container {
    margin-bottom: 0;
    padding: 3rem 0;
  }

  section.tab_container .section__title {
    padding-top: 0;
  }

  #exterior,
  #interior {
    background: #fff;
  }

  .interior_colors {
    height: 33.7rem;
    background: #F4F5F3;
    color: #000;
  }

  .interior_colors:before {
    content: none;
  }

  #color_picker .section__title {
    top: 3rem;
  }


  .comfort_slider .col {
    background: transparent;
    padding: 0;
    gap: 1rem;
  }

  .comfort_slider .swiper-slide {
    height: revert;
    flex-flow: column-reverse;
    justify-content: flex-end;
    gap: 1rem;
  }

  .comfort_slider img {
    width: 100%;
    height: 24.2rem;
  }

  .comfort.tab_container {
    margin-bottom: 3rem;
    padding: 3rem 0;
  }

  .blocks_grid .col_block {
    padding: 1.5rem;
    gap: 1rem;
  }

  #benefits .col_block img {
    margin-bottom: 0;
  }

  .col_blocks {
    flex-direction: column;
    gap: 1rem;
  }

  .section__title.title_border::after {
    bottom: -1.5rem;
  }

  .col_block {
    width: 100%;
    padding: 1.5rem;
    padding-right: 1.8rem;
    gap: 1rem;
  }

  .checkbox-group {
    align-items: flex-start;
  }

  .col_block img {
    width: 4rem;
    margin-bottom: 1.5rem;
    height: 4rem;
  }

  .title-xs {
    font-size: 1.7rem;
  }

  .text-sm {
    font-size: 1.2rem;
  }

  .gallery_section {
    aspect-ratio: 320 / 214;
  }

  .gallery_section .gallery_slider .swiper-pagination {
    bottom: 2.2rem;
  }

  .company_logos a:first-child img {
    min-height: revert;
  }

  .company_logos .separator {
    width: 0.27px;
    height: 1.6rem;
  }

  .power {
    color: #000;
    height: 50rem;
  }

  .power .bg-wrapper {
    height: 20rem;
    width: 100%;
    inset: revert;
    top: 35%;
    left: 0;
    transform: translateY(-50%);
  }

  .power .container {
    justify-content: space-between;
  }

  .design .section__title {
    margin-bottom: 1rem;
  }


  .power::after,
  .power::before {
    content: none;
  }

  .power .specs__item-title {
    font-size: 1.3rem;
    flex-shrink: 0;
    flex-basis: 30%;
  }

  .power .specs__item-text {
    font-size: 1rem;
  }

  .fluid_card {
    flex-basis: revert;
    height: revert;

  }

  .fluid_card.hovered{
    flex-basis: revert;
  }

  .fluid_card__content {
    position: static;
    max-height: revert;
    background: transparent;
    padding: 0;
    color: #000;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    padding: 2.4rem 0 0;
  }

  .fluid_cards {
    height: revert;
  }

  .fluid_card__text {
    opacity: 1;
  }
}