@font-face{
  font-family: "Lynk-Bold";
  src: url("../fonts/LynkcoType-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

@font-face{
  font-family: "Lynk-Regular";
  src: url("../fonts/LynkcoType-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}


@font-face{
  font-family: "Lynk-Medium";
  src: url("../fonts/LynkcoType-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}



body, html{
  background-color: #fff;
  margin: 0%;
  padding: 0%;
  font-size: calc(10/1920*100vw);
  overflow-anchor: none;
  overflow-x: clip;
  scroll-behavior: smooth;
}


body{
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-size: 1.6rem;
}

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

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

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



h2, .h1, b, h3, span{
  font-family: "Lynk-Bold", sans-serif;
}

button{
  font-family: "Lynk-Medium", sans-serif;
}

p, label, input, li{
  font-family: "Lynk-Regular", sans-serif;
}


.h1{
  font-size: 6.4rem;
  line-height: 1;
}

h2{
  font-size: 5rem;
  line-height: 1;
}

h3{
  font-size: 2.2rem;
  line-height: 1.1;
}


button{
  cursor: pointer;
}

.btn{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  padding: 2rem 0;
  border: none;
  min-width: 20rem;
  max-width: 60rem;
}

.cyan-white{
  background-color: rgba(42, 189, 165, 1);
  color: #fff;
  border-radius: 0 0 0 1rem;
}

.cyan-transparent{
  background-color: transparent;
  color: rgba(42, 189, 165, 1);
  border: 1px solid rgba(42, 189, 165, 1);
  border-radius: 0 1rem 0 0;
}


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

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

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

.desktop-btn{
  display: block;
}

.mobile-menu{
  display: none;
}

.mobile-btn{
  display: none;
}

.static-header{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 6100;
  background-color: rgba(245, 241, 230, 0);
  border-bottom: 1px solid rgba(217, 217, 217, 0);
  transition: background-color 0.4s ease, border-bottom-color 0.4s ease;
}

.static-header.scrolled{
  background-color: rgba(255, 255, 255, 1);
  border-bottom: 1px solid #f5f5f5;
}

.sticky-header{
  overflow: visible !important;
  position: sticky;
  top: 0;
  z-index: 6000;
  background-color: rgba(255, 255, 255, 1);
  border-bottom: 1px solid #f5f5f5;
}


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


.logo-nav{
  display: inherit;
  flex-direction: inherit;
  gap: 20.9rem;
}

.logo-icon{
  width: 100%;
  max-width: 20rem;
  height: auto;
  cursor: pointer;
}

.alt-logo{
  filter: brightness(0);
}

.contact-group{
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5rem;
}

.one-line-element{
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.5rem;
  text-decoration: none;
  text-align: center;
}

.one-line-element img{
  height: 2rem;
  width: auto;
}

.one-line-element p{
  font-size: 1.6rem;
}


.static-header .one-line-element p{
  color: #fff;
  transition: color 0.4s ease;
}

.static-header.scrolled .one-line-element p{
  color: rgba(0, 0, 0, 1);
}

.static-header.scrolled .one-line-element img{
  filter: brightness(0);
}

.static-header .models-nav span{
  color: #fff;
  transition: color 0.4s ease;
}


.static-header .logo-icon{
  transition: filter 0.4s ease;
}

.static-header.scrolled .logo-icon{
  filter: brightness(0);
}

.subcontainer{
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4.6rem;
}

.header-btn{
  padding: 1.3rem 4.6rem;
  font-size: 1.6rem;
}

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

.lang a{
  text-decoration: none;
  text-transform: uppercase;
}

.lang p{
  font-size: 1.6rem; 
}


.lang .lng-d{
  width: 0;
  height: 1.6rem; 
}

.static-header .lang p{
  color: #fff;
}

.static-header.scrolled .lang p{
  color: rgba(34, 34, 34, 1);
}

.static-header .lng-d{
  border-left: 1px solid rgba(255, 255, 255, 1);
  transition: border-left-color 0.4s ease;
}

.static-header.scrolled .lng-d{
  border-left: 1px solid rgba(34, 34, 34, 0.3);
}


footer{
  width: 100%;
  background-color: rgba(34, 34, 34, 1);
  position: relative;
  z-index: 2;
}


.footer-main{
  position: relative;
  margin: 0 auto;
  padding: 3rem 0;    
  display: flex;
  justify-content: center;
  align-items: center;
}


.footer-main span{
  font-size: 1.6rem;
  color: rgba(255, 255, 255, 1);
}


/* Mp section */
.desktop-btn{
  display: block;
}

.mobile-btn{
  display: none;
}


.banner-swiper-section{
  position: relative;
  z-index: 6000;
}

.banner-swiper-container{
  flex: 1;
  min-width: 0;
  overflow: hidden;
  max-height: 97rem;
}

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

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

.banner-slide{
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}

.banner-content-wrapper{
  display: flex;
  flex-direction: column;
  color: #fff;
  gap: 3rem;
  margin-top: auto;
}

.banner-content{
  display: inherit;
  flex-direction: column;
  gap: 2rem;
}

.bg-wrapper-slide{
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.bg-desktop{
  visibility: visible;
}

.bg-mobile{
  visibility: hidden;
  display: none;
}

.bg-wrapper-slide img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rel-section{
  position: relative;
  z-index: 2;
}

.banner-content{
  position: absolute;
  height: 100%;
  top: 28.4rem;
  left: 15rem;
  display: flex;
  flex-direction: column;
  gap: 2.1rem;
  color: #fff;
  max-width: 80rem;
  max-height: 40rem;
}

.banner-content p{
  font-size: 2rem;
}

.banner-head-content{
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: start;
}

.btn-group{
  display: flex;
  flex-direction: row;
  align-items: center;
}

.banner-btns{
  gap: 1rem;
  margin-top: 3rem;
}

.medium-btn{
  max-width: 27.3rem;
}

.banner-arrow{
  position: absolute;
  top: 50%;
  z-index: 6001;
  background-color: rgba(42, 189, 165, 1);
  width: 6.5rem;
  height: 6.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.prev-btn{
  left: 0;
  border-radius: 0 0 1rem 0;
}

.next-btn{
  right: 0;
  border-radius: 0 0 0 1rem;
}

.prev-btn::after, .next-btn::after{
  display: flex;
  content: "";
  width: 1.3rem;
  height: 1.3rem;
  border-left: 4px solid rgba(255, 255, 255, 1);
  border-bottom: 4px solid rgba(255, 255, 255, 1);
}

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

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

.banner-pagination{
  position: absolute;
  bottom: 6rem !important;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
}

.banner-pagination .swiper-pagination-bullet{
  width: 11.4rem;
  height: 0.4rem;
  margin: 0;
  background: rgba(255, 255, 255, 1);
  opacity: 1;
  border-radius: 0;
  transition: background-color 0.3s ease;
}

.banner-pagination .swiper-pagination-bullet-active{
  background: rgba(42, 189, 165, 1);
}

/* Model block */
.models-block{
  background-color: rgba(0, 0, 0, 1);
}

.model-section{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10.5rem;
  padding: 9.3rem 0 15.6rem;
}

.model-section h2{
  color: #fff;
}

.model-cards{
  display: flex;
  flex-direction: column;
  gap: 20rem;
  align-items: center;
  width: 100%;
}

.model-card{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 9rem;
  width: 100%;
}

.model-card:nth-child(even){
  flex-direction: row-reverse;
}

.model-card:nth-child(even) .model-card-content{
  margin-right: auto;
  margin-left: 0;
}

.image-wrapper-model-card{
  width: 100%;
  height: 100%;
  position: relative;
  max-width: 73.5rem;
  max-height: 33rem;
}

.image-wrapper-model-card img{
  position: absolute;
  top: -22.058rem;
  width: 100%;
  height: auto;
  max-width: 73.7rem;
}

.model-card-content{
  display: flex;
  flex-direction: row;
  gap: 4rem;
  align-items: stretch;
  height: 100%;
  justify-content: space-between;
  max-width: 79rem;
}

.model-desc, .model-action{
  flex: 1;
}

.model-desc{
  display: flex;
  flex-direction: column;
  gap: 2.9rem;
  color: #fff;
}

.model-price{
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.model-price h3{
  font-size: 6rem;
}

.model-price span{
  color: rgba(42, 189, 165, 1);
  font-size: 2rem;
}

.price{
  font-size: 4rem !important;
}

.model-d, .model-d-m{
  border-left: 2px solid rgba(255, 255, 255, 0.1);
}

.model-d-m{
  display: none;
}

.model-action{
  display: flex;
  flex-direction: column;
  gap: 4rem;
  width: 100%;
}

.characteristics{
  display: flex;
  flex-direction: column;
  gap: 4rem;
  width: 100%;
}

.char{
  display: grid;
  grid-template-columns: 8rem 1fr;
  gap: 0 3.9rem;
  color: #fff;
}

.char img{
  height: 6rem;
  width: auto;
}

.char-desc{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.char-desc p{
  font-size: 1.6rem;
}

.char-desc h3{
  font-size: 4rem;
}

.btns-group-alt{
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.model-btn{
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.7rem;
}

.model-btn img{
  width: 1.2rem;
  height: auto;
}

.promo-block{
  background-color: rgba(0, 0, 0, 1);
}

.promo-section{
  padding: 0 0 10.6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10.5rem;
}

.promo-section h2{
  color: #fff;
}

.promo-cards{
  display: flex;
  flex-direction: column;
  gap: 11rem;
  width: 100%;
}

.promo-card{
  height: 42.5rem;
}

.twisted-card{
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}

.twisted-card .image-wrapper-promo{
  position: absolute;
  bottom: 3.5rem;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: 82.9rem;
  height: 43rem;
}

.twisted-card .image-wrapper-forms{
  position: absolute;
  bottom: 3.5rem;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: 82.9rem;
  max-height: 61.8rem;
}

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

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

.twisted-card-content{
  background-color: rgba(34, 34, 34, 1);
  width: 100%;
  max-width: 106.4rem;
}

.promo-card-content{
  padding: 7.1rem 13.5rem 9rem 38.1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 3.5rem;
}

.promo-card-text-content{
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.promo-card-text-content h3, .promo-card-text-content p{
  color: #fff;
}

.promo-card-text-content h3{
  font-size: 3rem;
}

.promo-card-text-content span{
  color: rgba(42, 189, 165, 1);
}

.promo-btns{
  gap: 1rem;
  width: 100%;
}

.advantages-block{
  background-color: #000;
}

.advantages-section{
  padding: 0 0 14.3rem;
}

.big-card{
  background-color: rgba(42, 189, 165, 1);
  padding: 6.3rem 12rem 10rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7rem;
  color: #fff;
}

.row-points{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
}

.advantage-point{
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: center;
  width: 100%;
  max-width: 39rem;
  flex: 1;
}

.adv-point-content{
  display: flex;
  flex-direction: column;
  gap: 3rem;
  text-align: center;
  height: 100%;
}

.advantage-point img{
  height: 10.4rem;
  width: auto;
}

.advantage-point h3{
  font-size: 3rem;
}

.advantage-point p{
  margin-top: auto;
}

.adv-d{
  border-left: 1px solid rgba(255, 255, 255, 0.25);
}

/* Forms block */
.form-section{
  padding: 0 0 15.3rem;
}

.right-side{
  padding: 6.7rem 11.386rem 7.658rem 38.1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 3.5rem;
}

.right-side form{
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 3.3rem ;
}

.forms-container-head{
  text-align: center;
}

.form-head{
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  width: 100%;
  color: #fff;
}

.form-head p{
  font-size: 2rem;
}

.right-side .form-input:focus{
  border-bottom: 1px solid #fff;
}

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

.form-input::placeholder {
  color: rgba(255, 255, 255, 1);
}


.error-message {
  display: none;
  color: #ff4d4f;
  font-size: 1.2rem;
  margin-top: 0.6rem;
}

.form-input.has-error {
  border-bottom: 1px solid #ff4d4f;
}

.form-input.has-error + .error-message {
  display: block;
}

.forms-inputs{
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
  width: 100%;
}

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

.so option{
  color: rgba(27, 34, 54, 1);
  background-color: #fff;
}

.so:focus-visible{
  outline: none;
}

.select-wrapper-forms, .select-wrapper-modal-forms{
  position: relative;
  display: inline-block;
}

.select-wrapper-forms::after{
  content: '';
  position: absolute;
  right: 0rem;
  top: 1rem;
  width: 0.8rem;
  height: 0.8rem;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  transform: translateY(-75%) rotate(45deg);
  transition: transform 0.25s ease;
  pointer-events: none;
}

.select-wrapper-forms:focus-within::after{
  transform: translateY(-20%) rotate(225deg);
}

.consent-submit{
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

.consent-wrapper {
  display: flex;
  align-items: center;
  gap: 1.7rem;
  font-size: 1.6rem;
  color: #fff;
}

.consent-wrapper a{
  color: #fff;
}

.form-checkbox {
  appearance: none;
  -webkit-appearance: none;
  width: 1.8rem;
  height: 1.8rem;
  margin: 0;
  flex-shrink: 0;
  position: relative;
  border: none;
  background-color: rgba(42, 189, 165, 1);
  cursor: pointer;
}

.form-checkbox:checked::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 42%;
  width: 0.35rem;
  height: 0.8rem;
  border: solid #fff;
  border-width: 0 0.2rem 0.2rem 0;
  transform: translate(-50%, -50%) rotate(45deg);
}

.form-modal{
  padding: 8rem 6rem;
}

.form-modal-container{
  display: flex;
  flex-direction: column;
  gap: 7rem;
}

.form-modal form{
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

.form-modal-container .so, .form-modal-container .form-input, .form-modal-container .form-input::placeholder{
  color: rgba(34, 34, 34, 1); 
  border-color: rgba(34, 34, 34, 0.25);
}

.form-modal-container .select-wrapper-forms::after{
  border-color: rgba(34, 34, 34, 1);
}

.form-modal .consent-wrapper label, .form-modal .consent-wrapper a{
  color: rgba(34, 34, 34, 1);
}

.form-modal .form-checkbox{
  width: 2.3rem;
  height: 2.3rem;
}

.form-success{
  display: flex;
  flex-direction: column;
  gap: 3rem;
}


/* Map block */

.map-container{
  position: relative;
  display: flex;
  width: 100%;
  height: 78rem;
  z-index: 2;
}


#map{
  flex: 1;
  height: 100%;
  overflow: hidden;
}

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

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

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

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

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

.map-balloon-title{
  padding-right: 1.05rem;
  font-size: 3rem;
}

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

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

.map-balloon-field{
  font-size: 1.6rem;
  line-height: 2.4rem;
  color: rgba(0, 0, 0, 1);
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  text-align: left;
  align-items: start;
}

.work-field{
  flex-direction: column;
}

.map-balloon-field p{
    display: inline;
    text-transform: initial;
}

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

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

.map-city-marker{
    position: relative;
    width: 8.1rem;
    height: 7.973rem;
    cursor: pointer;
}

.map-city-marker-icon{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.map-city-marker-badge{
    position: absolute;
    top: 0.3rem;
    right: -1rem;
    min-width: 2rem;
    height: 2rem;
    padding: 0 0.4rem;
    border-radius: 50%;
    background-color: rgba(42, 189, 165, 1);
    color: #fff;
    font-size: 1.1rem;
    line-height: 2rem;
    text-align: center;
    box-shadow: 0 0.2rem 0.6rem rgba(0, 0, 0, 0.25);
}

.link-map-baloon{
    color: #fff;
    text-decoration: none;
}

.sticky-track {
  background-color: #000;
  position: relative;
  width: 100%;
}

.return-wrapper {
  position: absolute;
  right: 3rem;
  top: 35rem;
  bottom: 2rem;
  width: 7.1rem;
  pointer-events: none;
  z-index: 10000;
}

.return {
  position: -webkit-sticky;
  position: sticky;
  top: 85vh;
  width: 7.4rem;
  height: 7.4rem;
  background-color: #000;
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: auto;
  padding: 0;
  border: 1px solid rgba(42, 189, 165, 1);
}

.return img{
  width: 2.7rem;
  height: auto;
}



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

    body{
      font-size: 1.4rem;
    }

    section{
      max-width: 44rem;
    }

    h2, .h1{
      font-size: 3rem;
    }
    

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

    .btn{
      font-size: 1.4rem;
    }

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

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

    .static-header .burger-menu img{
      filter: invert(1);
      transition: filter 0.4s ease;
    }

    .static-header.scrolled .burger-menu img{
      filter: none;
    }

    .desktop-btn{
      display: none;
    }

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

    .mobile-header{
      display: flex !important;
    }


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

    .contact-group{
      display: none;
    }

   .lang a{
      text-decoration: none;
    }

    .lang .lng-d{
      width: 0;
      height: 1.6rem; 
    }

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

    .footer-trademark{
      max-width: 44rem;
      margin-bottom: 3.305rem;
    }

    .header-main nav, .header-main .subcontainer    {
      display: none;
    }

    .return-wrapper{
      display: none;
    }

    .btn{
      max-width: 100%;
      width: 100% ;
      min-width: 10rem;
    }



    /* Mp section */
    .desktop-btn{
      display: none;
    }

    .mobile-btn{
      display: block;
    }

    .banner-swiper-container{
      flex: 1;
      min-width: 0;
      overflow: hidden;
      max-height: 82rem;
    }

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

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

    .banner-slide{
      display: flex;
      flex-direction: column;
      height: 100%;
      background-size: cover;
      background-repeat: no-repeat;
      background-position: center;
      position: relative;
    }

    .banner-content-wrapper{
      display: flex;
      flex-direction: column;
      color: #fff;
      gap: 3rem;
      margin-top: auto;
    }

    .banner-content{
      display: inherit;
      flex-direction: column;
      gap: 2rem;
    }

    .bg-wrapper-slide{
      position: relative;
      width: 100%;
      height: 100%;
      z-index: 1;
    }

    .bg-wrapper-slide img{
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .bg-desktop{
      visibility: hidden;
      display: none;
    }

    .bg-mobile{
      visibility: visible;
      display: block;
    }


    .rel-section{
      position: relative;
      z-index: 2;
    }

    .banner-content{
      position: absolute;
      height: 100%;
      top: 13.3rem;
      left: 2rem;
      display: flex;
      flex-direction: column;
      gap: 2.1rem;
      color: #fff;
      max-width: 44rem;
    }

    .banner-content p{
      font-size: 1.4rem;
    }

    .banner-head-content{
      display: flex;
      flex-direction: column;
      gap: 1rem;
      align-items: start;
    }

    .btn-group{
      display: flex;
      flex-direction: row;
      align-items: center;
    }

    .banner-btns{
      gap: 1rem;
      margin-top: 2rem;
    }

    .medium-btn{
      max-width: 27.3rem;
    }

    .banner-arrow{
      display: none;
    }


    .banner-pagination{
      bottom: 4rem !important;
      gap: 0.7rem;
    }

    .banner-pagination .swiper-pagination-bullet{
      width: 6.2rem;
    }


    /* Model block */

    .model-section{
      gap: 5.3rem;
      padding: 4.1rem 0 7.5rem;
    }


    .model-cards{
      gap: 8.7rem;
    }

    .model-card{
      flex-direction: column;
      justify-content: space-between;
      gap: 9rem;
      width: 100%;
    }

    .model-card:nth-child(even){
      flex-direction: column;
    }

    .model-card:nth-child(even) .model-card-content{
      margin: 0;
    }

    .image-wrapper-model-card{
      width: 100%;
      height: 100%;
      position: relative;
      max-width: 44rem;
      max-height: 33rem;
    }

    .image-wrapper-model-card img{
      position: absolute;
      top: -10rem;
      width: 100%;
      height: auto;
      max-width: 44rem;
    }

    .model-card-content{
      display: flex;
      flex-direction: column;
      gap: 4rem;
      align-items: stretch;
      height: 100%;
      justify-content: space-between;
      max-width: 44rem;
      padding-top: 16rem;
    }

    .model-desc, .model-action{
      flex: 1;
    }

    .model-desc{
      gap: 0.8rem;
    }

    .model-price{
      gap: 0.8rem;
    }

    .model-price h3{
      font-size: 4rem;
    }

    .model-price span{
      color: rgba(42, 189, 165, 1);
      font-size: 1.4rem;
    }

    .price{
      font-size: 3rem !important;
    }

    .model-d{
      display: none;
    }

    .model-d-m{
      display: block;
    }

    .model-action{
      gap: 4rem;
    }

    .characteristics{
      flex-direction: row;
      gap: 2rem;
    }

    .char{
      grid-template-columns: 5rem 1fr;
      align-items: center;
      gap: 0 2rem;
      max-width: 20rem;
      width: 100% ;
    }

    .char img{
      height: 4rem;
    }

    .char-desc{
      display: flex;
      flex-direction: column;
      justify-content: start;
    }

    .char-desc p{
      font-size: 1.4rem;
    }

    .char-desc h3{
      font-size: 3rem;
    }

    .promo-section{
      padding: 0 0 3.1rem;
      gap: 4.4rem;
    }


    .promo-cards{
      gap: 3rem;
    }

    .promo-card{
      height: auto;
    }

    .twisted-card{
      position: relative;
      width: 100%;
      display: flex;
      flex-direction: column;
    }

    .twisted-card .image-wrapper-promo{
      position: relative;
      bottom: auto;
      left: auto;
      width: 100%;
      height: 100%;
      max-width: 44rem;
      height: 22.8rem;
    }

    .twisted-card .image-wrapper-forms{
      position: relative;
      bottom: auto;
      left: auto;
      width: 100%;
      height: 100%;
      max-width: 44rem;
      max-height: 32.8rem;
    }

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

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

    .twisted-card-content{
      background-color: rgba(34, 34, 34, 1);
      width: 100%;
      max-width: 44rem;
    }

    .promo-card-content{
      padding: 3.7rem 4rem 5.4rem;
      gap: 2.7rem;
    }

    .promo-card-text-content{
      gap: 0.8rem;
    }


    .promo-card-text-content h3{
      font-size: 2.2rem;
    }

    .promo-card-text-content span{
      color: rgba(42, 189, 165, 1);
    }

    .promo-card-text-content p{
      margin-top: 1rem;
    }

    .advantages-section{
      padding: 0 0 6rem;
    }

    .big-card{
      padding: 5.4rem 4.1rem 8.2rem;
      gap: 4rem;  
    }

    .row-points{
      display: flex;
      flex-direction: column;
      gap: 3.1rem;
    }

    .advantage-point{
      flex-direction: row;
      gap: 2.3rem;
      align-items: flex-start;
      max-width: 100%;
      flex: 1;  
    }

    .adv-point-content{
      gap: 0.8rem;
      text-align: left;
    }

    .advantage-point img{
      height: 5.9rem;
      width: auto;
    }

    .advantage-point h3{
      font-size: 2.2rem;
    }

    .advantage-point p{
      margin-top: auto;
    }

    .adv-d{
      width: 100%;
      height: 0;
      border-left: none;
      border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    }

    /* Forms block */
    .form-section{
      padding: 0 0 15.3rem;
    }
    .right-side{
      padding: 5.2rem 4rem 6.5rem;
      gap: 3.5rem;
    }

    .right-side form{
      gap: 3.5rem ;
    }

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

    .form-head p{
      display: none;
    }

    .form-input {
      font-size: 1.4rem;
    } 

    .so{
      font-size: 1.4rem;
    }

    .so option{
      color: rgba(0, 0, 0, 1);
    }


    .consent-wrapper {
      font-size: 1.4rem;
    }

    .map-container{
      height: 68rem;
    }


    .map-balloon{
      width: 36.1rem;
      max-width: 90vw;
    }

    .map-balloon-title{
      padding-right: 7rem;
      font-size: 2.4rem;
    }

    .map-balloon-d{
      margin: 1.4rem 0;
    }

    .map-balloon-body{
      gap: 1.4rem;
    }

    .map-balloon-field{
      font-size: 1.4rem;
      line-height: 1;
      gap: 0.5rem;
    }


    /* Mobile Menu styles */

    .mobile-menu{
      position: fixed;
      flex-direction: column;
      top: 0;
      left: 0;
      width: 100%;
      height: auto;
      max-height: 100dvh;
      max-width: none !important;
      z-index: 7000;
      background-color: #fff;
      overflow-y: auto;
      -webkit-overflow-scrolling: touch;
    }

    .mobile-menu.open{
      display: flex;
    }

    .head-of-mobile-menu{
      background-color: rgba(34, 34, 34, 1);
      width: 100%;
      display: flex;
      flex-direction: row;
      justify-content: space-between;
      align-items: center;
      padding: 3rem 2rem;
      position: sticky;
      top: 0;
      z-index: 7000;
      flex-shrink: 0;
    }


    .lang-nav{
      display: flex;
      flex-direction: row;
      gap: 1.7rem;
      align-items: center;
      text-decoration: none;
    }

    .lang-nav a{
      text-decoration: none;
      color: rgba(255, 255, 255, 1);
      font-size: 1.6rem;
    }

    .lng-d-m{
      height: 1.7rem;
      width: 0;
      border-left: 1px solid rgba(255, 255, 255, 1);
    }

    .container-m{
      background-color: rgba(34, 34, 34, 1);
      position: relative;
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .head-of-mobile-menu .phone-number-header{
      display: flex;
      flex-direction: row;
      align-items: center;
      gap: 1.5rem;
    }

    .head-of-mobile-menu .phone-number-header a{
      text-decoration: none;
      color: #000;
      font-size: 1.8rem;
    }

    .nav-links-m{
      display: flex;
      flex-direction: column;
      padding: 0;
      margin: 0;
    }

    .navigation-m{
      font-size: 2rem;
      background-color: transparent;
      display: flex;
      flex-direction: column;
      z-index: 6000;
    }

    .navigation-m ul{
      list-style: none;
      padding: 0;
    }

    .nav-links-m > li:first-child > .dropdown-point-m {
      border-top: none;
    }


    .dropdown-point-m{
      position: relative;
      z-index: 6500;
      display: flex;
      align-items: center;
      justify-content: space-between;
      text-decoration: none;
      padding: 2.5rem 0 2rem;
      border-top: 1px solid rgba(255, 255, 255, 0.15);
    }

    .close-mobile-menu{
      width: auto;
      height: 2.254rem;
      background: none;
      border: none;
      cursor: pointer;
    }
    .close-mobile-menu img{
      width: auto;
      height: 2.254rem;
      filter: invert(1);
    }

    .nav-name-m{
        position: relative;
        width: 100%;
        max-width: 44rem;
        margin: 0 auto;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
    }

    .nav-name-m span{
      color: #fff;
    }

    .footer-mobile-menu{
      width: 100%;
      max-width: 44rem;
      margin: 0 auto;
      padding: 3.3rem 0 6.4rem;
    }

    .contact-group-m{
      display: flex;
      flex-direction: row;
      gap: 3.3rem;
    }

    .contact-group-m a{
      color: #fff;
      text-decoration: none;
    }


    /* Form section */

    .forms-section{
        padding: 5.8rem 0 6.1rem;
    }

    .forms{
        padding: 5.5rem 0 7.8rem;
    }

    .forms-container{
        flex-direction: column;
    }

    .form-container-content{
        flex-direction: column;
        gap: 0  ;
    }

    .form-container-content .right-side a{
        color: #fff;
    }

    .left-side{
        gap: 3.2rem;
    }

    .right-side .forms-inputs{
        gap: 3.2rem;
        max-width: 44rem;
    }


    .form-input {
        font-size: 1.4rem;
        line-height: 2.4rem;
    }

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

    .form-checkbox {
        width: 2.3rem;
        height: 2.3rem;
    }

    .form-checkbox:checked::after {
        left: 50%;
        top: 42%;
        width: 0.55rem;
        height: 1rem;
        border-width: 0 0.2rem 0.2rem 0;
        transform: translate(-50%, -50%) rotate(45deg);
    }

    .consent-submit{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 3.5rem;
    }

    .form-btn{
        width: 100%;
        max-width: 100%rem;
        padding: 2.5rem 5rem;
    }

    .forms-head{
        gap: 1.3rem;
    }

    .forms-subtitle{
        font-size: 1.4rem;
    }

    .form{
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 6.3rem;
        width: 100%;
    }

    .form .form-container-content{
        align-items: flex-start;
    }

    .form .consent-submit{
        flex-direction: column;
        align-items: flex-start;
        justify-content: space-between;
    }

    .forms-note{
        margin-top: 3rem;
        text-align: center;
        font-size: 1.4rem;
        color: #fff;
    }

    .fancybox-slide--html {
        padding: 0;
    }

    .fancybox-content {
        width: 100%;
        max-width: 44rem !important;
        min-height: 50rem;
        margin: 0;
        padding: 0;
        border-radius: 0;
    }

    .form-modal{
      padding: 6.6rem 4rem;
    }

    .form-modal-container{
      gap: 5.1rem;
    }

    .form-modal form{
      display: flex;
      flex-direction: column;
      gap: 3.5rem;
    }

    .form-modal .form-checkbox{
      width: 1.8rem;
      height: 1.8rem;
    }

    .consent-wrapper label{
      font-size: 1.4rem;
    }


    .so{
        font-size: 1.4rem;
    }

}

