:root {
  --font-family: "Manrope", sans-serif;
  --osnovnye-chernyy: #000;
  --osnovnye-fonovyy-chernyy: #030303;
  --osnovnye-teksty-chernyy: #111;
  --osnovnye-mokryy-asfalt: #1d1d1d;
  --osnovnye-grozovoe-nebo: #445161;
  --osnovnye-sero-goluboy: #dae0e7;
  --osnovnye-seryy-fonovyy: #f0f0f0;
  --osnovnye-belyy: #fff;
  --borishof-krasnyy: #f00521;
  --borishof-siniy: #08243c;
  --nio-goluboy-tehnologichnyy: #5795fd;
  --nio-elektricheskiy: #0fe6ff;
  --nio-myatnyy: #6adada;
  --nio-legkiy-myatnyy: #e6fafa;
  --nio-lesnoe-nebo: #004b64;
  --nio-sero-goluboy: #bbc7d6;
  --nio-svetlo-zelenyy-eko: #f2f3ed;
  --nio-svetlyy-seryy: #f0f1f2;
}

@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Manrope";
  font-style: normal;
  font-weight: 200;
  src: url("../fonts/Manrope-ExtraLight.ttf"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Manrope";
  font-style: normal;
  font-weight: 300;
  src: url("../fonts/Manrope-Light.ttf"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* regular - cyrillic */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/Manrope-Regular.ttf"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Manrope";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/Manrope-Medium.ttf"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Manrope";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/Manrope-SemiBold.ttf"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Manrope";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/Manrope-Bold.ttf"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Manrope";
  font-style: normal;
  font-weight: 800;
  src: url("../fonts/Manrope-ExtraBold.ttf"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* Reset and base styles  */
* {
  padding: 0px;
  margin: 0px;
  border: none;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Links */
a, a:link, a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/* Common */
aside, nav, footer, header, section, main {
  display: block;
}

h1, h2, h3, h4, h5, h6, p {
  font-size: inherit;
  font-weight: inherit;
}

ul, ul li {
  list-style: none;
}


html {
  scroll-behavior: smooth;
}


img {
  vertical-align: top;
}

img, svg {
  max-width: 100%;
  height: auto;
}

address {
  font-style: normal;
}

/* Form */
input, textarea, button, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

input::-ms-clear {
  display: none;
}

button, input[type=submit] {
  display: inline-block;
  box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}

input:focus, input:active,
button:focus, button:active {
  outline: none;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

label {
  cursor: pointer;
}

legend {
  display: block;
}

body {
  background: var(--osnovnye-teksty-chernyy);
  font-family: var(--font-family);
  color: var(--osnovnye-belyy);
}

.container {
  width: 1680px;
  max-width: 100%;
  margin: auto;
}
@media screen and (max-width: 1700px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (max-width: 768px) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.btn {
  padding: 17px 0px;
  background: var(--osno);
  border: 1px solid var(--osnovnye-belyy);
  border-radius: 15px;
  padding: 15px 20px;
  width: -moz-fit-content;
  width: fit-content;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border .3s linear ;
}
.btn span {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  color: var(--osnovnye-belyy);
  transition: color .3s linear;
}
.btn:hover {
    border: 1px solid #0FE6FF;
}
.btn:hover span {
    color: #0FE6FF;

}
.btn.black {
  background: var(--osnovnye-fonovyy-chernyy);
}
.btn.white {
  background: var(--osnovnye-belyy);
}
.btn.white span {
  color: var(--osnovnye-fonovyy-chernyy);
}
.btn.btn-model {
  border-radius: 15px;
  display: inline-flex;
  gap: 20px;
  align-items: center;
  width: 100%;
  border: 1px solid var(--osnovnye-belyy);
  transition: border .3s linear ;
}
.btn.btn-model:hover {
   border: 1px solid #0FE6FF; 
}
.btn.btn-model span {
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
  transition: color .3s ease;
}

.btn.btn-model svg {
    scale:0;
}

.btn.btn-model:hover span {
    color:#0FE6FF;
}
@media screen and (max-width: 1540px) {
  .btn.btn-model span {
    font-size: clamp(0.875rem, 0.7917rem + 0.3556vw, 1.125rem);
  }
}

.none {
  display: none !important;
}

.section__title {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 70px;
  line-height: 110%;
  text-align: center;
}
@media screen and (max-width: 1540px) {
  .section__title {
    font-size: clamp(1.875rem, 1.0417rem + 3.5556vw, 4.375rem);
  }
}

@media screen and (max-width: 480px) {
  .mobile-none {
    display: none;
  }
}

.open {
  display: flex !important;
}

.header {
  display: flex;
  justify-content: center;
  width: 100%;
  align-items: center;
  padding-top: 16px;
  width: 100%;
  max-width: 1680px;
  margin: auto;
}
.header-wrapper {
  width: 100%;
  border-top: 1px solid var(--osnovnye-mokryy-asfalt);
  margin-top: 20px;
}
@media screen and (max-width: 1350px) {
  .header-wrapper {
    margin-top: 0;
    border-top: none;
  }
}

.item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
}

.item span,
.item a {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: var(--osnovnye-belyy);
  transition: color .3s ease;
}

.item:hover span,
.item:hover a{
    color: #F00521;

}

.items {
  list-style-type: none;
  display: flex;
  gap: 120px;
}
@media screen and (max-width: 1350px) {
  .items {
    gap: 46px;
  }
}

.item a {
  text-decoration: none;
}

.logo {
  display: flex;
  gap: 15px;
  align-items: center;
}
.logo-line {
  width: 2px;
  display: flex;
  height: 30px;
  margin: auto;
  background: var(--svetlo-seryy);
}
.logo-company-name {
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: flex-start;
}
.logo-company-name .title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 18px;
  color: var(--chernyy);
}
.logo-company-name .subtitle {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  color: var(--seryy);
}

.burger {
  display: none;
  position: relative;
  z-index: 10;
  align-items: center;
  justify-content: flex-end;
  width: 12px;
  height: 11px;
}

.header-btn {
  padding: 13px 30px;
  width: 231px;
  height: 56px;
  background: var(--chernyy);
  display: inline-flex;
  gap: 10px;
  align-items: center;
}
.header-btn span {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  color: var(--belyy);
}

.burger span {
  height: 1px;
  width: 80%;
  margin: auto;
  transform: scale(1);
  background-color: #faf6f2;
}

.burger::before {
  content: "";
  position: absolute;
  height: 1px;
  width: 100%;
  background-color: #faf6f2;
  transition: all 0.3s ease 0s;
}

.burger::after {
  content: "";
  position: absolute;
  height: 1px;
  width: 40%;
  margin: auto;
  background-color: #faf6f2;
  transition: all 0.3s ease 0s;
  left: 50%;
  transform: translateX(-50%);
}

.burger::before {
  top: 0;
}

.burger::after {
  bottom: 0;
}

.burger .round {
  width: 26px;
  height: 26px;
  border: 1px solid #faf6f2;
  border-radius: 50%;
  z-index: -1;
  position: absolute;
  left: -7px;
}

.burger.active span {
  transform: scale(0);
}

.burger.active::before {
  top: 50%;
  transform: rotate(-45deg) translate(0, -50%);
}

.burger.active::after {
  bottom: 50%;
  transform: rotate(45deg) translate(0, 50%);
  width: 100%;
  left: 0;
}

@media screen and (max-width: 768px) {
  nav {
    height: calc(100% - 68px);
  }
}
@media screen and (min-width: 768px) and (max-width: 1350px) {
  nav {
    height: calc(100% - 81px);
  }
}
@media screen and (min-width: 1350px) {
  .nav__information {
    display: none;
  }
}
@media screen and (max-width: 1350px) {
  .burger {
    display: flex;
  }
  nav {
    display: none;
    flex-direction: column;
    position: fixed;
    width: 100%;
    bottom: 0;
    justify-content: space-between;
    left: 0;
    right: 0;
    z-index: 9;
    overflow-y: auto;
    padding: 50px 0px 0;
    background: var(--osnovnye-belyy);
    animation: burgerAnimation 0.4s;
  }
  nav .items {
    padding-left: 20px;
    padding-right: 20px;
  }
  
  nav .item a {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 15px;
    color: var(--osnovnye-chernyy);
  }
  nav .item {
      position: relative;
  }
  
  nav .item::after {
      position: absolute;
      content:'';
      right: 0;
      background-image: url("data:image/svg+xml,%0A%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 12L4 12M20 12L15.0001 17M20 12L15 7' stroke='black'/%3E%3C/svg%3E");
      width: 24px;
      height: 24px;
      background-repeat: no-repeat;
      -webkit-background-size: cover;
      background-size: cover;
      
  }
  nav .nav__information {
    background: var(--nio-svetlo-zelenyy-eko);
    padding: 30px 20px 50px 20px;
  }
  nav .nav__information .adress {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    color: var(--osnovnye-grozovoe-nebo);
  }
  nav .nav__information .adress + .adress {
    margin-top: 20px;
    margin-bottom: 50px;
  }
  nav .nav__information .phone-mobile {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  nav .nav__information .phone-mobile a {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 24px;
    text-transform: uppercase;
    color: var(--osnovnye-chernyy);
  }
  nav .nav__information .phone-mobile span {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    color: var(--osnovnye-grozovoe-nebo);
  }
  nav ul {
    flex-direction: column;
    row-gap: 30px;
  }
  @keyframes burgerAnimation {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
}
.phone-mobile-child {
  position: fixed;
  display: none;
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  left: 0;
  border: 1px solid var(--osnovnye-belyy);
  border-radius: 0 0 15px 15px;
  padding: 20px 24px 10px 24px;
  box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.3);
  background: var(--nio-svetlo-zelenyy-eko);
  flex-direction: column;
  align-items: center;
}
.phone-mobile-child.show-item {
  display: flex !important;
}
.phone-mobile-child a:not(.btn) {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  color: var(--osnovnye-chernyy);
}
.phone-mobile-child .btn {
  margin-top: 20px;
}
.phone-mobile-child span.time {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 11px;
  color: var(--osnovnye-grozovoe-nebo);
  margin-top: 5px;
}
.phone-mobile-child span.adress {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  color: var(--osnovnye-mokryy-asfalt);
}
@media screen and (max-width: 1350px) and (min-width: 768px) {
  .phone-mobile-child {
    top: 80px;
  }
}
@media screen and (max-width: 768px) {
  .phone-mobile-child {
    top: 60px;
  }
}
@media screen and (min-width: 1350px) {
  .phone-mobile-child {
    display: none;
  }
}

.header__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
}
@media screen and (max-width: 1350px) {
  .header__top {
    position: sticky;
    top: 0;
    background: var(--osnovnye-teksty-chernyy);
    border-bottom: 1px solid var(--osnovnye-mokryy-asfalt);
    padding-bottom: 20px;
    z-index: 999;
  }
}
.header__top-logo {
  max-height: 36px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-self: start;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .header__top-logo img:not(.nio) {
    max-height: 20px;
  }
}
@media screen and (max-width: 480px) {
  .header__top-logo img:not(.nio) {
    max-height: 11px;
  }
}
@media screen and (max-width: 768px) {
  .header__top-logo img.nio {
    max-height: 20px;
  }
}
@media screen and (max-width: 480px) {
  .header__top-logo img.nio {
    max-height: 11px;
  }
}
@media screen and (max-width: 768px) {
  .header__top-logo {
    gap: 20px;
  }
}
.header__top-logo span {
  position: relative;
  width: 3px;
  height: 36px;
}
@media screen and (max-width: 768px) {
  .header__top-logo span {
    display: none;
  }
}
.header__top-logo span::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--osnovnye-belyy);
}
.header__top-contact {
  display: flex;
  gap: 58px;
}
.header__top-contact .phone {
  display: flex;
  flex-direction: column;
  height: 100%;
  align-items: flex-end;
  justify-content: center;
}
.header__top-contact .phone a {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  text-align: right;
  color: var(--osnovnye-belyy);
}
.header__top-contact .phone span {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  color: var(--osnovnye-sero-goluboy);
}

@media screen and (min-width: 1350px) {
  .adaptive-item {
    display: none;
  }
  .adaptive__management {
    display: none;
  }
}
@media screen and (max-width: 1350px) {
  .adaptive-item {
    display: block;
  }
  .adaptive-item img {
    width: 22px;
  }
  .adaptive-item-hidden {
    display: none !important;
  }
  .adaptive__management {
    display: flex;
    gap: 25px;
    align-items: center;
  }
}
.hero {
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .hero {
    margin-top: 10px;
  }
}
.hero-top {
  display: flex;
  gap: 30px;
}
@media screen and (max-width: 1185px) {
  .hero-top {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .hero-top {
    gap: 5px;
  }
}
.hero-top-item {
  display: flex;
  flex-direction: column;
  gap: 44px;
  border-radius: 15px;
  overflow: hidden;
  background: var(--osnovnye-mokryy-asfalt);
  padding-bottom: 40px;
  max-width: 540px;
  width: 100%;
}
@media screen and (max-width: 1185px) {
  .hero-top-item {
    padding-bottom: 10px;
  }
  .hero-top-item:last-child {
    grid-column: 1/3;
    max-width: unset;
  }
  .hero-top-item:last-child p {
    font-size: clamp(1rem, 0.7581rem + 1.0323vw, 1.5rem);
  }
  .hero-top-item:not(:last-child) p {
    font-size: clamp(0.75rem, 0.3871rem + 1.5484vw, 1.5rem);
  }
}
.hero-top-item p {
  margin-left: 25px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 24px;
  line-height: 120%;
}
@media screen and (max-width: 768px) {
  .hero-top-item p {
    margin-left: 10px;
  }
}
.hero-center {
  margin-top: 30px;
  margin-bottom: 30px;
  border-radius: 15px;
  overflow: hidden;
  position: relative;

  width: 100%;
}
@media screen and (max-width: 768px) {
  .hero-center {
    height: auto;
  }
}
.hero-center-image {
  position: absolute;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .hero-center-image {
    position: relative;
    height: 450px;
  }
}
.hero-center-image img {
  -o-object-position: bottom right;
     object-position: bottom right;
  max-width: unset;
}
@media screen and (max-width: 768px) {
  .hero-center-image img {
    max-width: unset;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: 50% 50%;
       object-position: 50% 50%;
  }
}
.hero-center-content {
  position: relative;
  /* display: flex;
  flex-direction: column; */
  height: 100%;
  /* justify-content: space-between; */
  width: 100%;
  display: grid;
  
  column-gap: 30px;
}

@media screen and (min-width:1000px){
    .hero-center-content {
        grid-template-columns:2fr 1fr;
    }
}
@media screen and (max-width:1000px){
    .hero-center-content {
        grid-template-columns:1fr;
        gap:30px;
    }
}
.hero-center-content.visible-mobile {
  display: none;
}

.top-block {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

@media screen and (max-width: 480px){
    .top-block img {
    width: 70px;
    }
    
    .top-block-images {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    
    .top-block-images img {
        width: 50%;
        margin-top: 20px;
    }
    
    img.eye {
    width: 70px;
    margin: 0 !important;
    
    }
}

@media screen and (max-width:1350px) and (min-width:1000px){
    .top-block {
        flex-direction: column;
        
    }
    .top-block .h1{
        margin-top: 20px;
    }
}

.video-frame {
    position: relative;
    
    border: 0.5px solid #445161;
    border-radius:15px;
    overflow:hidden;
}

@media screen and (max-width:1700px){
   .video-frame {
       max-height: fit-content !important;
   } 
}
@media screen and (min-width:1000px){
    .video-frame {
        grid-row:1/3;
        grid-column:2/3;
    }
}
@media screen and (max-width:1000px){
    .video-frame {
        max-width: fit-content;
        margin: auto;
        grid-row: 1 / 2;
    }
}

.video-frame img {
    height: 100%;
    object-fit: cover;
}

.video-frame {
    max-height: 960px;
}

video#myVideo {
    max-width: 100%;
}

.hero-bottom{
    grid-column: 1 / 2;
}

.video-frame-btn {
    position: absolute;
    top:50%;
    left: 50%;
    transform:translate(-50%,-50%);
    cursor:pointer;
    display: flex;
    flex-direction: column;
    gap:10px;
    align-items: center;
}

.video-frame-btn .usual {
    scale:1;
    transition: .3s ease;
}
.video-frame-btn .hover {
    position: absolute;
    width: 120px;
    height: 120px;
    scale:0;
    transition: .3s ease;
}
.video-frame-btn:hover .usual {
    scale:0;
}
.video-frame-btn:hover .hover {
    scale:1;
}

img.eye {
    margin: 42px auto 0;
    display: flex;
}

@media screen and (max-width: 768px) {
  .hero-center-content.visible-mobile {
    display: flex;
  }
}
.hero-center-content-top {
  /* padding-top: 50px;
  padding-left: 50px;
  padding-right: 50px; */
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .hero-center-content-top {
    padding: 0;
  }
}
@media screen and (max-width: 768px) {
  .hero-center-content-top.hidden-mobile {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .hero-center-content-top-left {
    /* align-items: center; */
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    margin-bottom: 30px;
    /* padding-top: 0px; */
    padding: 30px !important;
  }
}
.hero-center-content-top .h1 {
  /* margin-top: 50px; */
  font-family: var(--font-family);
  font-weight: 200;
  font-size: 70px;
  line-height: 120%;
  color: var(--osnovnye-belyy);
  /* max-width: 1000px; */
  text-transform: uppercase;
}

@media screen and (max-width:1400px){
    .hero-center-content-top .h1
    {
        font-size: clamp(1.5rem, 0.4482rem + 4.4878vw, 4.375rem);
    }
}

.hero-center-content-top-left{
    /* background: radial-gradient(50% 50% at 50% 50%, rgba(87, 149, 253, 0.3) 0%, rgba(0, 237, 237, 0) 100%); */
        background: radial-gradient(90% 100% at 20% 35%, rgba(87, 149, 253, 0.3) 0%, rgba(0, 237, 237, 0) 100%);
        gap: 0px;
        border-radius: 15px;
        border: 1px solid #445161;
        padding: 100px 60px;
        width: 100%;

}

.hero-center-content-top .h1.allocation {
    color: #5795FD;
}

@media screen and (max-width: 1185px) {
  .hero-center-content-top h1 {
    font-size: clamp(1.5rem, 0.7137rem + 3.3548vw, 3.125rem);
  }
}
@media screen and (max-width: 768px) {
  .hero-center-content-top h1 {
    text-align: center;
  }
}
.hero-center-content-top .play_link {
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 18px;
  line-height: 120%;
  text-align: center;
  color: var(--osnovnye-belyy);
}
@media screen and (max-width: 768px) {
  .hero-center-content-top .play_link {
    position: absolute;
  }
}
.hero-center-content-bottom {
  align-self: flex-end;
  padding-bottom: 50px;
  padding-right: 50px;
}
@media screen and (max-width: 768px) {
  .hero-center-content-bottom {
    align-self: flex-end;
    padding-bottom: 50px;
    padding-right: 0px;
    margin: 30px auto 0;
  }
}
.hero-center-content-bottom a {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
  color: var(--osnovnye-belyy);
}
.hero-bottom {
  margin-top: 30px;
  border-radius: 15px;
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  background: linear-gradient(49deg, #142535 0%, #687677 49.5%, #d2f8a5 100%);
  padding: 30px;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 1500px) {
  .hero-bottom {
    flex-direction: column;
    gap: 15px;
  }
}
@media screen and (max-width: 768px) and (min-width: 480px) {
  .hero-bottom {
    padding: 30px 20px;
  }
}
@media screen and (max-width: 480px) {
  .hero-bottom {
    padding: 10px;
  }
}
.hero-bottom p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 30px;
  line-height: 100%;
  max-width: 580px;
}
@media screen and (max-width: 768px) {
  .hero-bottom p {
    text-align: center;
    font-size: 20px;
  }
}
.hero-bottom .btn {
  border: none;
  padding: 23px 60px;
}

.booking {
  margin: 60px auto;
}
.booking .reciprocal-slider-first {
  max-width: -moz-fit-content;
  max-width: fit-content;
}
.booking .reciprocal-slider-first .swiper-slide {
    /* max-width: 200px; */
    max-width: 155px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    cursor:pointer;
}

.booking .reciprocal-slider-first .swiper-slide.swiper-slide-thumb-active {
    padding-bottom: 20px;
    border-bottom: 3px solid #5795FD;
}

.product__controllers {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1260px) {
  .product__controllers {
    grid-row: 3/4;
  }
}

.product__controller {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  transition: opacity .3s ease, scale .3s ease .1s;
}
.product__controller:hover {
    opacity: 0.7;
    scale:1.1;
}
.product__controller.product__controller--active {
    -webkit-background-size: contain;
    background-size: contain;
    scale:1.1;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' fill='%23fff' height='32px' width='32px' version='1.1' id='Capa_1' viewBox='0 0 512 512' xml:space='preserve'%3E%3Cg%3E%3Cpath d='M474.045,173.813c-4.201,1.371-6.494,5.888-5.123,10.088c7.571,23.199,11.411,47.457,11.411,72.1 c0,62.014-24.149,120.315-68,164.166s-102.153,68-164.167,68s-120.316-24.149-164.167-68S16,318.014,16,256 S40.149,135.684,84,91.833s102.153-68,164.167-68c32.889,0,64.668,6.734,94.455,20.017c28.781,12.834,54.287,31.108,75.81,54.315 c3.004,3.239,8.066,3.431,11.306,0.425c3.24-3.004,3.43-8.065,0.426-11.306c-23-24.799-50.26-44.328-81.024-58.047 C317.287,15.035,283.316,7.833,248.167,7.833c-66.288,0-128.608,25.813-175.48,72.687C25.814,127.392,0,189.712,0,256 c0,66.287,25.814,128.607,72.687,175.479c46.872,46.873,109.192,72.687,175.48,72.687s128.608-25.813,175.48-72.687 c46.873-46.872,72.687-109.192,72.687-175.479c0-26.332-4.105-52.26-12.201-77.064 C482.762,174.736,478.245,172.445,474.045,173.813z'/%3E%3Cpath d='M504.969,83.262c-4.532-4.538-10.563-7.037-16.98-7.037s-12.448,2.499-16.978,7.034l-7.161,7.161 c-3.124,3.124-3.124,8.189,0,11.313c3.124,3.123,8.19,3.124,11.314-0.001l7.164-7.164c1.51-1.512,3.52-2.344,5.66-2.344 s4.15,0.832,5.664,2.348c1.514,1.514,2.348,3.524,2.348,5.663s-0.834,4.149-2.348,5.663L217.802,381.75 c-1.51,1.512-3.52,2.344-5.66,2.344s-4.15-0.832-5.664-2.348L98.747,274.015c-1.514-1.514-2.348-3.524-2.348-5.663 c0-2.138,0.834-4.149,2.351-5.667c1.51-1.512,3.52-2.344,5.66-2.344s4.15,0.832,5.664,2.348l96.411,96.411 c1.5,1.5,3.535,2.343,5.657,2.343s4.157-0.843,5.657-2.343l234.849-234.849c3.125-3.125,3.125-8.189,0-11.314 c-3.124-3.123-8.189-3.123-11.313,0L212.142,342.129l-90.75-90.751c-4.533-4.538-10.563-7.037-16.98-7.037 s-12.448,2.499-16.978,7.034c-4.536,4.536-7.034,10.565-7.034,16.977c0,6.412,2.498,12.441,7.034,16.978l107.728,107.728 c4.532,4.538,10.563,7.037,16.98,7.037c6.417,0,12.448-2.499,16.977-7.033l275.847-275.848c4.536-4.536,7.034-10.565,7.034-16.978 S509.502,87.794,504.969,83.262z'/%3E%3C/g%3E%3C/svg%3E");
}

.product__controller--red {
  background-color: #d7241f;
}
.product__controller--gray {
  background-color: #6d767b;
}
.product__controller--black {
  background-color: #000;
}
.product__controller--white {
  background-color: #fff;
}
.product__controller--orange {
  background-color: #FFA500;
}
.product__controller--light-blue {
  background-color: #ADD8E6;
}
.product__controller--light-gray {
  background-color: #D3D3D3;
}
.product__controller--light-green {
  background-color: #90EE90;
}
.product__controller--blue {
  background-color: #0000FF;
}
.product__controller--dark-blue {
  background-color: #00008B;
}
.product__controller--delicate-blue {
  background-color: #87CEFA;
}
.product__controller--creamy {
  background-color: #FFF5EE;
}
.product__controller--green {
  background-color: #008000;
}



.models .slider-models {
  display: flex;
  justify-content: center;
  position: relative;
}
@media screen and (max-width: 1260px) {
  .models .slider-models {
    max-width: 600px;
  }
}
.models .slider-models .swiper-button-next.swiper-models-button-next,
.models .slider-models .swiper-button-prev.swiper-models-button-prev {
  width: calc(var(--swiper-navigation-size) / 200px);
  position: absolute;
}
@media screen and (max-width: 768px) {
  .models .slider-models .swiper-button-next.swiper-models-button-next {
    right: var(--swiper-navigation-sides-offset, 0px);
  }
}
@media screen and (max-width: 1260px) {
  .models .slider-models .swiper-button-next.swiper-models-button-next {
    top: var(--swiper-navigation-top-offset, 40%);
  }
}
@media screen and (max-width: 480px) {
  .models .slider-models .swiper-button-next.swiper-models-button-next {
    top: var(--swiper-navigation-top-offset, 35%);
    width: calc(var(--swiper-navigation-size) / 25 * 60);
  }
}
@media screen and (max-width: 768px) {
  .models .slider-models .swiper-button-prev.swiper-models-button-prev {
    left: var(--swiper-navigation-sides-offset, 0px);
  }
}
@media screen and (max-width: 1260px) {
  .models .slider-models .swiper-button-prev.swiper-models-button-prev {
    top: var(--swiper-navigation-top-offset, 40%);
  }
}
@media screen and (max-width: 480px) {
  .models .slider-models .swiper-button-prev.swiper-models-button-prev {
    top: var(--swiper-navigation-top-offset, 35%);
    width: calc(var(--swiper-navigation-size) / 25 * 60);
  }
}
.models .slider-models .swiper-button-next.swiper-models-button-next::after,
.models .slider-models .swiper-button-prev.swiper-models-button-prev::after {
  content: none;
}
.models-item-slider {
  display: grid;
  grid-template-columns: 400px 1fr;
  -moz-column-gap: 50px;
       column-gap: 50px;
  max-width: calc(100% - 200px);
  margin: auto;
}
@media screen and (max-width: 1260px) {
  .models-item-slider {
    max-width: 600px;
    width: 100%;
    grid-template-columns: 1fr;
  }
}
.models-item-slider .options {
  display: flex;
  flex-direction: column;
  gap: 120px;
  align-items: start;
  justify-content: space-between;
  height: -moz-fit-content;
  height: fit-content;
}
@media screen and (max-width: 1540px) {
  .models-item-slider .options {
    gap: 20px;
  }
}
.models-item-slider .options__model {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: start;
}
@media screen and (max-width:1280px){
.models-item-slider .options__model {
    padding-left: 60px;
}    
}
.models-item-slider .options__model .label-car-slider{
    scale:3;
    margin-top: 20px;
}
.models-item-slider .options__price {
  display: flex;
  gap: 20px;
  margin-top: 40px;
}
@media screen and (max-width:480px){
    .models-item-slider .options__price {
        margin-top: 10px !important;
    }
}
.models-item-slider .options .model {
  font-family: var(--font-family);
  font-size: 60px;
  text-transform: uppercase;
}
.models-item-slider .options .aviability {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 14px;
  line-height: 120%;
  text-transform: uppercase;
  color: var(--borishof-krasnyy);
  padding: 10px;
  border-radius: 5px;
  border: 1px solid var(--borishof-krasnyy);
}
.models-item-slider .options .price {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 40px;
  line-height: 100%;
}
.models-item-slider .product__image-wrapper {
  grid-column: 2/3;
  grid-row: 1/3;
}
@media screen and (max-width: 480px) { 
  .models-item-slider .product__image-wrapper {
      margin: 40px 0;
  }  
}
@media screen and (max-width: 1260px) {
  .models-item-slider .product__image-wrapper {
    grid-column: unset;
    grid-row: unset;
  }
}
.models-characteristic {
  width: 100%;
  display: grid;
  grid-template-columns: 400px 1fr;
  align-items: center;
  justify-content: space-between;
  -moz-column-gap: 50px;
       column-gap: 50px;
  max-width: calc(100% - 200px);
  margin: auto;
}
@media screen and (max-width: 1260px) {
  .models-characteristic {
    margin-top: 50px;
    grid-template-columns: 1fr;
    row-gap: 30px;
    justify-content: center;
  }
}
.models-characteristic__items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -moz-column-gap: 40px;
       column-gap: 40px;
}
@media screen and (max-width: 1540px) {
  .models-characteristic__items {
    grid-template-columns: repeat(2, 1fr);
    -moz-column-gap: 20px;
         column-gap: 20px;
    row-gap: 20px;
  }
}
@media screen and (max-width: 768px) {
  .models-characteristic__items {
    grid-row: 1/2;
  }
}
.models-characteristic__items-item {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  gap: 15px;
}
.models-characteristic__items-item .indicator {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 50px;
  line-height: 90%;
  color: var(--osnovnye-belyy);
}
@media screen and (max-width: 768px) {
  .models-characteristic__items-item .indicator {
    font-size: 30px;
  }
}
.models-characteristic__items-item .indicator-name {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 120%;
  color: var(--osnovnye-belyy);
}
@media screen and (max-width: 768px) {
  .models-characteristic__items-item .indicator-name {
    font-size: 12px;
  }
}
.models-characteristic__items-item .description {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.models-characteristic__items-item .description .meter {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 120%;
  color: rgba(218, 224, 231, 0.5);
}
@media screen and (max-width: 768px) {
  .models-characteristic__items-item .description .meter {
    font-size: 12px;
  }
}
@media screen and (max-width: 1260px) {
  .models-characteristic__image {
    max-width: 300px;
  }
}
.models-characteristic__image .swiper-slide {
  max-width: 80px;
  width: auto;
  height: 70px;
}
@media screen and (max-width: 480px) {
 .models-characteristic__image .swiper-slide {
  max-width: 60px;
  height: 40px;
}   
}
.models-characteristic__image .swiper-slide a {
  width: 100%;
  height: 100%;
  display: flex;
}
.models-characteristic__image .swiper-slide a img {
  -o-object-fit: cover;
     object-fit: cover;
}
.models-btns {
  display: grid;
  grid-template-columns: 400px 1fr;
  -moz-column-gap: 50px;
       column-gap: 50px;
  width: 100%;
  margin-top: 30px;
  max-width: calc(100% - 200px);
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1260px) {
  .models-btns {
    margin-top: 50px;
    grid-template-columns: 1fr;
    row-gap: 30px;
  }
}
@media screen and (max-width: 768px) {
  .models-btns {
    max-width: unset;
  }
}

.hidden-tab-content {
  display: none !important;
}

.filters {
  margin-top: 60px;
}
.filters__content {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fill, 390px);
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 1280px) and (max-width: 1700px) {
  .filters__content {
    grid-template-columns: repeat(3, 390px);
  }
}
@media screen and (min-width: 854px) {
  .filters__content {
    gap: 35px;
  }
}
@media screen and (max-width: 854px) {
  .filters__content {
    gap: 90px;
    padding-bottom: 40px;
  }
}
@media screen and (max-width: 420px) {
  .filters__content {
    grid-template-columns: repeat(auto-fill, 300px);
  }
}
.filters__content-item {
  background-color: var(--osnovnye-belyy);
  width: 100%;
  border-radius: 15px;
}
.filters__content-item-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: start;
  justify-content: space-between;
  padding: 0 25px 25px;
  margin-top: 20px;
}
.filters__content-item-info .fid-model-name {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 24px;
  line-height: 100%;
  color: var(--osnovnye-fonovyy-chernyy);
}
.filters__content-item-info .fid-model-characteristic {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 120%;
  color: var(--osnovnye-grozovoe-nebo);
}
.filters__content-item-info .specify__price {
  position: relative;
  margin-top: 20px;
}
.filters__content-item-info .specify__price-block {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  cursor: pointer;
  width: -moz-fit-content;
  width: fit-content;
}
.filters__content-item-info .specify__price-block span {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 24px;
  line-height: 100%;
  color: var(--osnovnye-fonovyy-chernyy);
  z-index: 3;
  transition: color 0.3s linear;
}
.filters__content-item-info .specify__price-block img {
  z-index: 3;
}
.filters__content-item-info .specify__price .btn-buy-block {
  justify-content: center;
  padding: 0px;
  width: 162.5%;
  top: 28px;
  left: -25px;
  padding: 25px 25px;
  display: flex;
  background-color: var(--osnovnye-belyy);
  position: absolute;
  z-index: -1;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-200px);
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
}
@media screen and (max-width: 420px) {
  .filters__content-item-info .specify__price .btn-buy-block {
    width: 125%;
  }
}
@media screen and (max-width: 854px) {
  .filters__content-item-info .specify__price .btn-buy-block {
    z-index: 2;
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }
}
.filters__content-item-info .specify__price .btn-buy-block .btn {
  width: 100%;
  justify-content: center;
  display: inline-flex;
}
.filters__content-item-info .specify__price:hover .specify__price-block span {
  color: var(--borishof-krasnyy);
}
.filters__content-item-info .specify__price:hover .btn-buy-block {
  animation: toshow 0.4s linear forwards;
}
@media screen and (max-width: 854px) {
  .filters__content-item-info .specify__price:hover .btn-buy-block {
    animation: none;
  }
}
@keyframes toshow {
  0% {
    z-index: -1;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-50px);
  }
  40% {
    visibility: visible;
    opacity: 0.15;
  }
  100% {
    z-index: 2;
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }
}
.filters__content-item .swiperFidModel {
  width: 100%;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}
.filters__content-item .swiperFidModel .swiper-pagination.swiperFidModel-pagination {
  height: -moz-fit-content;
  height: fit-content;
}
.filters__content-item .swiperFidModel .swiper-pagination.swiperFidModel-pagination .swiper-pagination-bullet {
  background: rgb(0, 0, 0);
}
.filters__content-item .swiperFidModel .swiper-pagination.swiperFidModel-pagination .swiper-pagination-bullet:not(:first-child) {
  margin-left: 22px;
}
.filters__content-item .swiperFidModel .swiper-pagination.swiperFidModel-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: rgb(255, 255, 255);
  position: relative;
}
.filters__content-item .swiperFidModel .swiper-pagination.swiperFidModel-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
  position: absolute;
  content: "";
  width: 24px;
  height: 24px;
  border: 1px solid #fff;
  border-radius: 50%;
  top: -8px;
  left: -8px;
}

.benefits {
  display: flex;
  flex-direction: column;
  margin-top: 60px;
  gap: 60px;
  overflow: hidden;
}
.benefits__banner {
  width: 100%;
  height: 264px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.benefits__banner .background {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
  border-radius: 15px;
}
.benefits__banner .background img {
  max-width: unset;
}
.benefits__banner .offer {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.benefits__banner .offer img {
  max-width: 150px;
}
.benefits__banner .offer p {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 70px;
  line-height: 110%;
  text-align: center;
}
@media screen and (max-width: 1540px) {
  .benefits__banner .offer p {
    font-size: clamp(1.75rem, 0.875rem + 3.7333vw, 4.375rem);
  }
}

.swiper-container.mobileSwiper {
  width: 100%;
}

.swiper-container.mobileSwiper img.icon{
  width: 40px;
  height: 40px;
}
@media screen and (min-width: 900px) {
  .swiper-container.mobileSwiper .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
}
@media screen and (max-width: 900px) {
  .swiper-container.mobileSwiper .swiper-wrapper {
    display: flex;
    width: 100%;
    height: 100%;
  }
}
@media screen and (max-width: 900px) {
  .swiper-container.mobileSwiper .swiper-wrapper .swiper-slide {
    display: flex;
    width: 100%;
    height: 100%;
  }
}

@media screen and (max-width:480px){
  .charging-map {
    margin-bottom: 60px;
    }  
}

.swiper-container.mobileSwiper .swiper-wrapper .swiper-slide .item {
  display: flex;
  height: 100%;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  justify-content: start;
  align-items: center;
  gap: 0;
}
@media screen and (max-width: 480px) {
  .swiper-container.mobileSwiper .swiper-wrapper .swiper-slide .item {
    height: 130px;
  }
}

.charging-map.container {
    margin-bottom: 30px;
}
.charging-map.container .section__title {
    margin-bottom: 30px;
}

.swiper-container.mobileSwiper .swiper-wrapper .swiper-slide .item img:not(.icon) {
  border-radius: 0 16px 16px 0;
}
.swiper-container.mobileSwiper .swiper-wrapper .swiper-slide .item-left {
  display: flex;
  flex-direction: column;
  background: var(--nio-svetlo-zelenyy-eko);
  height: 100%;
  justify-content: space-between;
  width: 100%;
}
@media screen and (max-width: 900px) and (min-width: 480px) {
  .swiper-container.mobileSwiper .swiper-wrapper .swiper-slide .item-left {
    min-height: 260px;
  }
}
@media screen and (min-width: 480px) {
  .swiper-container.mobileSwiper .swiper-wrapper .swiper-slide .item-left {
    padding: 25px 10px;
  }
}
@media screen and (max-width: 480px) {
  .swiper-container.mobileSwiper .swiper-wrapper .swiper-slide .item-left {
    padding: 10px;
  }
}
.swiper-container.mobileSwiper .swiper-wrapper .swiper-slide .item-left p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 120%;
  color: var(--osnovnye-teksty-chernyy);
}
@media screen and (min-width: 480px) {
  .swiper-container.mobileSwiper .swiper-wrapper .swiper-slide .item-left p {
    font-size: 18px;
  }
}
@media screen and (max-width: 480px) {
  .swiper-container.mobileSwiper .swiper-wrapper .swiper-slide .item-left p {
    font-size: 14px;
  }
}
.swiper-container.mobileSwiper .swiper-pagination.mobileSwiper-pagination {
  position: relative;
  margin-top: 20px;
}
.swiper-container.mobileSwiper .swiper-pagination.mobileSwiper-pagination .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.4);
}
.swiper-container.mobileSwiper .swiper-pagination.mobileSwiper-pagination .swiper-pagination-bullet:not(:first-child) {
  margin-left: 22px;
}
.swiper-container.mobileSwiper .swiper-pagination.mobileSwiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: rgb(255, 255, 255);
  position: relative;
}
.swiper-container.mobileSwiper .swiper-pagination.mobileSwiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
  position: absolute;
  content: "";
  width: 24px;
  height: 24px;
  border: 1px solid #fff;
  border-radius: 50%;
  top: -8px;
  left: -8px;
}

.charging {
  display: flex;
  flex-direction: column;
  margin-top: 60px;
  margin-bottom: 80px;
  gap: 60px;
}
.charging__banner {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
  overflow: hidden;
}
@media screen and (min-width: 480px) {
  .charging__banner {
    height: 320px;
  }
}
@media screen and (max-width: 480px) {
  .charging__banner {
    height: 100%;
  }
}
.charging__banner .background {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.charging__banner .background img {
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}
@media screen and (max-width: 480px) {
  .charging__banner .background img {
    width: 100%;
  }
}
.charging__banner .offer {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  align-items: flex-start;
  justify-content: flex-end;
}
@media screen and (min-width: 480px) {
  .charging__banner .offer {
    padding: 25px 40px;
    gap: 30px;
  }
}
@media screen and (max-width: 480px) {
  .charging__banner .offer {
    padding: 10px 0px 10px 15px;
    gap: 10px;
  }
}
.charging__banner .offer p {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 30px;
  line-height: 120%;
  color: var(--osnovnye-teksty-chernyy);
  max-width: 680px;
}
@media screen and (max-width: 1540px) {
  .charging__banner .offer p {
    font-size: clamp(1.25rem, 1.0417rem + 0.8889vw, 1.875rem);
  }
}
@media screen and (max-width: 480px) {
  .charging__banner .offer p {
    max-width: 190px;
  }
}

.form {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 120px;
  display: flex;
  flex-direction: column;
  justify-content: end;
}
@media screen and (min-width: 480px) {
  .form {
    height: 800px;
  }
}
@media screen and (max-width: 480px) {
  .form {
    height: 600px;
  }
}
.form__banner {
  position: absolute;
  height: 100%;
  z-index: 0;
  border-radius: 15px;
  overflow: hidden;
}
@media screen and (min-width: 1700px) {
  .form__banner {
    width: 100%;
  }
}
@media screen and (max-width: 1700px) and (min-width: 768px) {
  .form__banner {
    width: calc(100% - 40px);
  }
}
@media screen and (max-width: 768px) {
  .form__banner {
    width: calc(100% - 30px);
  }
}
.form__banner img {
  max-width: unset;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 15px;
}
@media screen and (max-width: 1350px) and (min-width: 1070px) {
  .form__banner img {
    -o-object-position: -300px 0;
       object-position: -300px 0;
  }
}
@media screen and (max-width: 1070px) and (min-width: 600px) {
  .form__banner img {
    -o-object-position: -500px 0;
       object-position: -500px 0;
  }
}
@media screen and (max-width: 600px) {
  .form__banner img {
    width: 100%;
  }
}
.form__wrapper {
  position: relative;
  max-width: 850px;
  width: 100%;
  border-radius: 15px;
  z-index: 1;
  padding: 50px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  background: linear-gradient(180deg, rgba(68, 81, 97, 0.7) 0%, rgba(17, 17, 17, 0.7) 71.05%);
}
@media screen and (max-width: 480px) {
  .form__wrapper {
    padding: 30px 15px;
    /* background-image: url(../images/form/form-bg-mobile.png); */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
  }
}
.form__wrapper .form-title {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 30px;
  line-height: 100%;
  color: var(--osnovnye-belyy);
}
@media screen and (max-width: 1540px) {
  .form__wrapper .form-title {
    font-size: clamp(1.25rem, 1.0417rem + 0.8889vw, 1.875rem);
  }
}
@media screen and (max-width: 768px) {
  .form__wrapper .form-title {
    text-align: center;
  }
}
.form__wrapper .form-text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 120%;
  color: var(--osnovnye-belyy);
}
@media screen and (max-width: 1540px) {
  .form__wrapper .form-text {
    font-size: clamp(0.875rem, 0.7917rem + 0.3556vw, 1.125rem);
  }
}
@media screen and (max-width: 768px) {
  .form__wrapper .form-text {
    text-align: center;
  }
}
.form__wrapper .row-label {
  display: flex;
  width: 100%;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .form__wrapper .row-label {
    flex-direction: column;
    align-items: center;
  }
}
.form__wrapper .row-label input#form-phone {
  border: 1px solid var(--osnovnye-sero-goluboy);
  border-radius: 15px;
  padding: 20px;
  min-width: 320px;
  max-width: 382px;
  width: 100%;
  background: var(--osnovnye-belyy);
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 28px;
  color: var(--osnovnye-chernyy);
}
@media screen and (max-width: 1540px) {
  .form__wrapper .row-label input#form-phone {
    font-size: clamp(1.25rem, 1.0833rem + 0.7111vw, 1.75rem);
  }
}
@media screen and (max-width: 768px) {
  .form__wrapper .row-label input#form-phone {
    min-width: unset;
    max-width: unset;
  }
}
@media screen and (max-width: 480px) {
  .form__wrapper .row-label input#form-phone {
    padding: 10px;
  }
}
.form__wrapper .row-label button[type=submit] {
  border-radius: 15px;
  padding: 20px 40px;
  width: 100%;
  background: var(--osnovnye-fonovyy-chernyy);
}
.form__wrapper .row-label button[type=submit] span {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
  transition: .3s ease;
}
.form__wrapper .row-label button[type=submit]:hover span {
    color: #0FE6FF;

}
@media screen and (max-width: 1540px) {
  .form__wrapper .row-label button[type=submit] span {
    font-size: clamp(0.875rem, 0.7917rem + 0.3556vw, 1.125rem);
  }
}
.form__wrapper .row-label-checkbox {
  gap: 10px;
  justify-content: start;
  align-items: start;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  margin-top: 15px;
}
@media screen and (max-width: 768px) {
  .form__wrapper .row-label-checkbox {
    flex-direction: row;
    align-items: center;
    width: 100%;
    justify-content: center;
  }
}
@media screen and (max-width: 1540px) {
  .form__wrapper .row-label-checkbox {
    font-size: clamp(0.875rem, 0.7917rem + 0.3556vw, 1.125rem);
  }
}
.form__wrapper .row-label-checkbox a {
  color: var(--nio-goluboy-tehnologichnyy);
}
@media screen and (max-width: 1540px) {
  .form__wrapper .row-label-checkbox a {
    font-size: clamp(0.875rem, 0.7917rem + 0.3556vw, 1.125rem);
  }
}
.footer {
  background: var(--osnovnye-chernyy);
  width: 100%;
}
.footer__content {
  display: flex;
  flex-direction: column;
  padding-top: 40px;
  padding-bottom: 40px;
}
.footer__content a {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
  color: var(--osnovnye-belyy);
  transition: color .3s ease;
}
.footer__content a:hover {
    color: #F00521;
}
@media screen and (max-width: 1540px) {
  .footer__content a {
    font-size: clamp(0.875rem, 0.7917rem + 0.3556vw, 1.125rem);
  }
}
.footer__content-top {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 640px) {
  .footer__content-top {
    align-items: center;
    flex-direction: column-reverse;
    gap: 36px;
  }
}
.footer__content-top-right {
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 640px) {
  .footer__content-top-right {
    align-items: center;
    flex-direction: column;
  }
}
.footer__content-middle {
  margin-top: 20px;
  border-top: 1px solid #fff;
  padding-top: 40px;
  margin-bottom: 40px;
}
.footer__content-middle p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  text-align: left;
  color: var(--osnovnye-sero-goluboy);
}
@media screen and (max-width: 1540px) {
  .footer__content-middle p {
    font-size: clamp(0.8125rem, 0.75rem + 0.2667vw, 1rem);
  }
}
.footer__content .text-part-opacity {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 15px;
  line-height: 130%;
  color: var(--osnovnye-sero-goluboy);
  opacity: 0.5;
}
.footer__content .text-part-opacity + .text-part-opacity {
  margin-top: 40px;
}
@media screen and (max-width: 1540px) {
  .footer__content .text-part-opacity {
    font-size: clamp(0.8125rem, 0.75rem + 0.2667vw, 1rem);
  }
}
@media screen and (max-width: 768px) {
  .footer__content .text-part-opacity {
    text-align: center;
  }
}

/* Modal - popup */

.modalBackground {
  display: none;
  background: #212121;
  position: fixed;
  width: 100vw;
  height: 100vh;
  cursor: pointer;
  /* указываем z-индекс для корректного наслаивания */
  z-index: 1000;
  top:0;
}

.modalBackground.active {
  display: block;
}

.modalBackground-success {
    display: none;
  background: #212121;
  position: fixed;
  width: 100vw;
  height: 100vh;
  cursor: pointer;
  /* указываем z-индекс для корректного наслаивания */
  z-index: 1000;
  top:0;
}

.modalBackground-success.active {
  display: block;
}

.modalActive {
  position: absolute;
  width: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 24px;
  /* background-color: rgb(255, 255, 255); */
  cursor: default;
  display: flex;
  height: fit-content;
 gap: 20px;
}

.modalActive .modal-image {
    width: 360px;
    height: 504px;
    position: relative;
}

.modalClose {
  width: 40px;
  top:20px;
  right: 20px;
  position: absolute;
  cursor: pointer;
}

.modalWindow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: rgb(255, 255, 255);
  gap: 30px;
  margin: auto;
  color: #030303;
  border-radius: 15px;
  padding: 60px 50px;
  width: 460px;
  height: 504px;

}

.modalWindow .form-title {
    font-family: var(--font-family);
    font-size: 30px;
    font-weight: 400;
    line-height: 33px;
    text-align: left;

}

.modalWindow .form-subtitle {
  font-family: var(--font-family);
font-size: 16px;
font-weight: 400;
line-height: 19.2px;
text-align: left;

}

@media screen and (max-width: 860px) {
  .modalActive {
    width: fit-content;
    flex-direction: column-reverse;
    gap:5px;
  }
  .modalActive .modal-image { 
      width: 355px;
      height: 180px;
  }
  
  .modalWindow {
      width: 355px;
      height: auto;
      padding: 30px 25px;
  }
  
  .modalWindow .form-title {
      font-size: 24px;
  }
  .modalWindow .form-subtitle {
      font-size: 14px;
  }
}

.modalWindow form {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.modalWindow form input:not([type=submit]) {
  border: 1px solid #DAE0E7;
  border-radius: 15px;
  padding: 20px 22px;
  width: 100%;
}

.modalWindow .small {
  font-family: var(--font-family);
font-size: 12px;
font-weight: 400;
line-height: 14.4px;

}
.modalWindow .small a{
color: #5795FD;
}

.btn-form {
    padding: 20px 0;
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 10px;
  font-family: var(--font-family);
    font-size: 18px;
    font-weight: 400;
    line-height: 18px;
    border: 1px solid #030303;
    border-radius:15px;
    transition: color .3s ease border .3s ease;
    margin-top: 30px;

}

.agreement {
    display: flex;
    gap:10px;
}

.btn-form:hover {
        border: 1px solid #0FE6FF;
        color: #0FE6FF;
}
.btn-form:hover span {
        color: #0FE6FF;
}

input[type="text"] {
    outline-width:2px;
}

input[type="text"]:hover, 
input[type="text"]:active, 
input[type="text"]:focus{
    outline: 2px solid #0FE6FF;
}

.success-close {
    padding: 10px 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0px;
    font-size: 18px;
    font-weight: 400;
    line-height: 18px;
    border: 1px solid #030303;
    border-radius:15px;
}
















/*# sourceMappingURL=main.css.map */