@font-face {
  font-family: TT ORA Expanded;
  src: url("../fonts/TT ORA Expanded Light.ttf");
  font-weight: 300;
}
@font-face {
  font-family: TT ORA Expanded;
  src: url("../fonts/TT ORA Expanded Medium.ttf");
  font-weight: 500;
}
@font-face {
  font-family: TT ORA Expanded;
  src: url("../fonts/TT ORA Expanded Bold.ttf");
  font-weight: 700;
}
*, ul, ol, p {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: TT ORA Expanded, serif;
}

.container {
  max-width: 1530px;
  padding: 0 15px;
}

.main_btn {
  display: block;
  border: none;
  padding: 17px 30px;
  background-color: #FFED00;
  border-radius: 8px;
  text-decoration: none;
  color: #252C2C;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  transition: 0.3s ease all;
  cursor: pointer;
}
.main_btn:hover {
  background-color: #FFF466;
}
.main_btn.btn_white {
  background-color: transparent;
  border: 1px solid #000;
}
.main_btn.btn_white:hover {
  background-color: #FFF466;
  border-color: #FFF466;
}
.main_btn.btn_white:active {
  background-color: #FFED00;
  border-color: #FFED00;
}
.main_btn.bg_dark {
  background-color: #000;
  color: #fff;
}
.main_btn.bg_dark:hover {
  background-color: #FFF466;
  color: #000;
}

.wrapper {
  position: relative;
}
.wrapper .modal_open {
  display: flex;
  padding: 0 15px;
  opacity: 0;
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #000;
  z-index: 15;
  justify-content: center;
  align-items: center;
  transition: 0.3s ease all;
}
.wrapper .modal_open.show {
  opacity: 1;
  visibility: visible;
}
.wrapper .modal_open .block {
  max-width: 500px;
  background-color: #fff;
  padding: 60px;
  position: relative;
}
@media (max-width: 768px) {
  .wrapper .modal_open .block {
    padding: 20px;
  }
}
.wrapper .modal_open .block .title {
  color: #000;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%; /* 35.2px */
  text-transform: uppercase;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .wrapper .modal_open .block .title {
    font-size: 24px;
  }
}
.wrapper .modal_open .block .description {
  color: #000;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 110%; /* 19.8px */
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .wrapper .modal_open .block .description {
    font-size: 16px;
  }
}
.wrapper .modal_open .block .phone_number {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 24px;
  gap: 10px 0;
}
.wrapper .modal_open .block .phone_number input {
  width: 100%;
  border-radius: 10px;
  border: 1px solid #999;
  font-size: 16px;
  font-weight: 300;
  line-height: 105%; /* 16.8px */
  padding: 0 20px;
  height: 54px;
}
@media (max-width : 578px) {
  .wrapper .modal_open .block .phone_number input {
    width: 100%;
    height: 54px;
  }
}
.wrapper .modal_open .block .phone_number input:focus {
  outline: none;
  border-color: #000;
}
.wrapper .modal_open .block .phone_number input::placeholder {
  color: #666;
}
.wrapper .modal_open .block .phone_number input.error {
  border-color: #E81B23;
}
.wrapper .modal_open .block .phone_number input.error::placeholder {
  color: #E81B23;
}
.wrapper .modal_open .block .phone_number input.error:focus {
  border-color: #999;
}
.wrapper .modal_open .block .phone_number button {
  width: 100%;
}
.wrapper .modal_open .block .item {
  display: flex;
  gap: 0 13px;
  cursor: pointer;
  margin-bottom: 6px;
}
.wrapper .modal_open .block .item .icon {
  width: 20px;
  height: 20px;
  border: 1px solid #999;
  border-radius: 4px;
  display: flex;
  flex: 0 0 auto;
  position: relative;
}
.wrapper .modal_open .block .item .icon::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -4px;
  bottom: 0;
  margin: auto;
  width: 10px;
  height: 5px;
  border-left: 1px solid #000;
  border-bottom: 1px solid #000;
  transform: rotate(-45deg);
  display: none;
}
.wrapper .modal_open .block .item .text {
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}
.wrapper .modal_open .block .item .text .sub_text {
  color: #333;
}
.wrapper .modal_open .block .item .text a {
  color: #666;
  text-decoration: none;
  border-bottom: 1px solid #666;
}
.wrapper .modal_open .block .item input {
  display: none;
}
.wrapper .modal_open .block .item input:checked ~ .icon {
  background-color: #FFED00;
  border-color: #FFED00;
}
.wrapper .modal_open .block .item input:checked ~ .icon::after {
  display: block;
}
@media (max-width: 768px) {
  .wrapper .modal_open .block .item:nth-child(6) {
    padding-bottom: 40px;
    border-bottom: 1px solid #ccc;
    margin-bottom: 24px;
  }
}
.wrapper .modal_open .block .close {
  position: absolute;
  right: 10px;
  top: 10px;
  cursor: pointer;
}
@media (max-width: 768px) {
  .wrapper .modal_open .block .close {
    display: none;
  }
}
.wrapper .modal_open .block .close_mobile {
  display: none;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
@media (max-width: 768px) {
  .wrapper .modal_open .block .close_mobile {
    display: flex;
    gap: 0 10px;
    color: #999;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
  }
}

header {
  position: sticky;
  top: 0;
  background-color: #fff;
  z-index: 10;
}
header .block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}
@media (max-width: 768px) {
  header .block {
    padding: 10px 14px;
  }
}
@media (max-width: 768px) {
  header .block .logo img {
    width: 100px;
  }
}
header .block .nav {
  display: flex;
  gap: 0 50px;
}
@media (max-width: 1200px) {
  header .block .nav {
    gap: 0 30px;
  }
}
@media (max-width: 992px) {
  header .block .nav {
    gap: 0 10px;
  }
}
@media (max-width: 768px) {
  header .block .nav {
    display: none;
  }
}
header .block .nav a {
  text-decoration: none;
  color: #000;
  font-size: 12px;
  font-weight: 500;
  line-height: 110%; /* 13.2px */
  text-transform: uppercase;
}
header .block .hero_contact {
  text-align: right;
  text-decoration: none;
}
@media (max-width: 768px) {
  header .block .hero_contact {
    display: none;
  }
}
header .block .hero_contact .phone {
  font-size: 20px;
  font-weight: 500;
  text-transform: uppercase;
  text-decoration: none;
  color: #000;
}
@media (max-width: 992px) {
  header .block .hero_contact .phone {
    font-size: 16px;
  }
}
header .block .hero_contact .text {
  color: #252C2C;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
}
header .block .hero_contact .text:hover {
    text-decoration: underline;
}
@media (max-width: 992px) {
  header .block .hero_contact .text {
    font-size: 12px;
  }
}
header .block .hamburger_icon {
  display: none;
  width: 32px;
  height: 12px;
  position: relative;
  transition: 0.3s ease all;
}
@media (max-width: 768px) {
  header .block .hamburger_icon {
    display: block;
  }
}
header .block .hamburger_icon span {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 100%;
  height: 2px;
  background-color: #000;
}
header .block .hamburger_icon span:last-child {
  bottom: 0;
  top: auto;
  width: 24px;
}
header .block .hamburger_icon.active {
  height: 32px;
}
header .block .hamburger_icon.active span {
  top: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
}
header .block .hamburger_icon.active span:first-child {
  transform: rotate(45deg);
}
header .block .hamburger_icon.active span:last-child {
  transform: rotate(-45deg);
}
header .mobile_menu {
  padding: 40px 15px;
  position: absolute;
  width: 100%;
  height: calc(100vh - 70px);
  left: -100%;
  top: 100%;
  background-color: #F8F8F8;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: 0.3s ease all;
}
@media (max-width: 768px) {
  header .mobile_menu.show {
    left: 0;
  }
}
header .mobile_menu .nav_mobile {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 40px 0;
}
header .mobile_menu .nav_mobile a {
  text-decoration: none;
  color: #000;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 110%; /* 26.4px */
  text-transform: uppercase;
}
header .mobile_menu .info {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 40px 0;
}
header .mobile_menu .info .name {
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 10px;
}
header .mobile_menu .info .value {
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
}
header .mobile_menu .info a {
  display: flex;
  flex-direction: column;
  text-decoration: none;
}
header .mobile_menu .info a .phone {
  color: #000;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 4px;
}
header .mobile_menu .info a .text {
  color: #252C2C;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.hero .parent_block {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media (max-width: 768px) {
  .hero .parent_block {
    height: 360px;
    background-size: cover;
    background-position: bottom;
  }
}
.hero .parent_block .block {
  padding: 80px 0 427px 0;
}
@media (max-width: 768px) {
  .hero .parent_block .block {
    display: none;
  }
}
.hero .parent_block .block .title {
  color: var(--ffffff, #FFF);
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 12px;
}
@media (max-width: 992px) {
  .hero .parent_block .block .title {
    font-size: 50px;
  }
}
.hero .parent_block .block .sub_title {
  color: #FFF;
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 32px;
}
@media (max-width: 992px) {
  .hero .parent_block .block .sub_title {
    font-size: 25px;
  }
}
.hero .parent_block .block .main_btn {
  width: 380px;
}
@media (max-width: 992px) {
  .hero .parent_block .block .main_btn {
    width: 320px;
  }
}
.hero .hero_mobile {
  padding: 20px 0 40px 0;
  display: none;
}
@media (max-width : 578px) {
  .hero .hero_mobile {
    display: block;
  }
}
.hero .hero_mobile .title {
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%; /* 35.2px */
  margin-bottom: 10px;
}
.hero .hero_mobile .sub_title {
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 20px;
}
.hero.first_model .parent_block {
  background-image: url("/images/firstModel.jpg");
}
.hero.second_model .parent_block {
  background-image: url("/images/secondModel.jpg");
}

.discount {
  background-color: #F8F8F8;
}
.discount .block {
  padding: 60px 0 20px 0;
}
.discount .block .top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
  gap: 20px 0;
}
.discount .block .top .title {
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%; /* 35.2px */
  text-transform: uppercase;
  max-width: 340px;
}
@media (max-width : 578px) {
  .discount .block .top .title {
    font-size: 24px;
  }
}
.discount .block .top .line {
  width: 20%;
  height: 1px;
  background-color: #ccc;
}
@media (max-width: 1440px) {
  .discount .block .top .line {
    width: 7%;
  }
}
@media (max-width: 1200px) {
  .discount .block .top .line {
    display: none;
  }
}
.discount .block .top .timeFinish {
  display: flex;
  list-style: none;
  gap: 0 100px;
}
@media (max-width: 768px) {
  .discount .block .top .timeFinish {
    gap: 0 60px;
  }
}
@media (max-width : 578px) {
  .discount .block .top .timeFinish {
    width: 100%;
    gap: 0;
  }
}
.discount .block .top .timeFinish li {
  position: relative;
  min-width: 110px;
}
@media (max-width: 768px) {
  .discount .block .top .timeFinish li {
    min-width: 80px;
  }
}
@media (max-width : 578px) {
  .discount .block .top .timeFinish li {
    min-width: 25%;
  }
}
.discount .block .top .timeFinish li::after {
  content: "";
  position: absolute;
  right: -50px;
  top: 0;
  bottom: 0;
  margin: auto;
  display: block;
  background-color: #ccc;
  width: 1px;
  height: 60px;
}
@media (max-width: 768px) {
  .discount .block .top .timeFinish li::after {
    right: -30px;
  }
}
@media (max-width : 578px) {
  .discount .block .top .timeFinish li::after {
    right: 0;
    height: 32px;
  }
}
.discount .block .top .timeFinish li:last-child::after {
  display: none;
}
.discount .block .top .timeFinish li .value {
  text-align: center;
  font-size: 80px;
  font-weight: 500;
  line-height: normal;
}
@media (max-width: 768px) {
  .discount .block .top .timeFinish li .value {
    font-size: 50px;
  }
}
@media (max-width : 578px) {
  .discount .block .top .timeFinish li .value {
    font-size: 32px;
  }
}
.discount .block .top .timeFinish li .text {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -15px;
  margin: auto;
  text-align: center;
  font-size: 14px;
  font-weight: 300;
  line-height: normal;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .discount .block .top .timeFinish li .text {
    font-size: 12px;
  }
}
@media (max-width : 578px) {
  .discount .block .top .timeFinish li .text {
    font-size: 10px;
  }
}
.discount .block .bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px 0;
}
.discount .block .bottom .title {
  width: 340px;
  font-size: 20px;
  font-weight: 300;
  line-height: 110%; /* 22px */
  text-transform: uppercase;
}
@media (max-width : 578px) {
  .discount .block .bottom .title {
    font-size: 18px;
  }
}
.discount .block .bottom .right {
  max-width: 1045px;
}
.discount .block .bottom .right .phone_number {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 24px;
  position: relative;
}
.msg {
  position: absolute;
  font-size: 12px;
  bottom: -20px;
  left: 0;
  color: #2c731d;
}
@media (max-width : 578px) {
  .discount .block .bottom .right .phone_number {
    gap: 10px 0;
  }
}
.discount .block .bottom .right .phone_number input {
  width: calc(50% - 5px);
  border-radius: 10px;
  border: 1px solid #999;
  font-size: 16px;
  font-weight: 300;
  line-height: 105%; /* 16.8px */
  padding: 0 20px;
}
@media (max-width : 578px) {
  .discount .block .bottom .right .phone_number input {
    width: 100%;
    height: 54px;
  }
}
.discount .block .bottom .right .phone_number input:focus {
  outline: none;
  border-color: #000;
}
.discount .block .bottom .right .phone_number input::placeholder {
  color: #666;
}
.discount .block .bottom .right .phone_number input.error {
  border-color: #E81B23;
}
.discount .block .bottom .right .phone_number input.error::placeholder {
  color: #E81B23;
}
.discount .block .bottom .right .phone_number input.error:focus {
  border-color: #999;
}
.discount .block .bottom .right .phone_number button {
  width: calc(50% - 5px);
}
@media (max-width : 578px) {
  .discount .block .bottom .right .phone_number button {
    width: 100%;
  }
}
.discount .block .bottom .right .item {
  display: flex;
  gap: 0 13px;
  cursor: pointer;
  margin-bottom: 6px;
}
.discount .block .bottom .right .item .icon {
  width: 20px;
  height: 20px;
  border: 1px solid #999;
  border-radius: 4px;
  display: flex;
  flex: 0 0 auto;
  position: relative;
}
.discount .block .bottom .right .item .icon::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -4px;
  bottom: 0;
  margin: auto;
  width: 10px;
  height: 5px;
  border-left: 1px solid #000;
  border-bottom: 1px solid #000;
  transform: rotate(-45deg);
  display: none;
}
.discount .block .bottom .right .item .text {
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}
.discount .block .bottom .right .item .text .sub_text {
  color: #333;
}
.discount .block .bottom .right .item .text a {
  color: #666;
  text-decoration: none;
  border-bottom: 1px solid #666;
}
.discount .block .bottom .right .item input {
  display: none;
}
.discount .block .bottom .right .item input:checked ~ .icon {
  background-color: #FFED00;
  border-color: #FFED00;
}
.discount .block .bottom .right .item input:checked ~ .icon::after {
  display: block;
}

.advantages {
  padding: 50px 0;
  background-color: #222;
  margin-bottom: 120px;
}
@media (max-width : 578px) {
  .advantages {
    margin-bottom: 60px;
  }
}
.advantages .block {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px 0;
}
.advantages .block .block_item {
  display: flex;
  gap: 0 30px;
  align-items: center;
}
.advantages .block .block_item .right .title {
  color: #FFF;
  font-size: 80px;
  font-weight: 500;
  line-height: normal;
}
@media (max-width: 992px) {
  .advantages .block .block_item .right .title {
    font-size: 70px;
  }
}
@media (max-width: 768px) {
  .advantages .block .block_item .right .title {
    font-size: 60px;
  }
}
@media (max-width : 578px) {
  .advantages .block .block_item .right .title {
    font-size: 50px;
  }
}
.advantages .block .block_item .right .description {
  color: #999;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 110%; /* 15.4px */
  text-transform: uppercase;
}

.models .section_title {
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%; /* 35.2px */
  text-transform: uppercase;
  margin-bottom: 40px;
}
.models .block {
  display: flex;
  flex-direction: column;
}
.models .block .block_item {
  margin-bottom: 120px;
}
@media (max-width: 1200px) {
  .models .block .block_item {
    margin-bottom: 40px;
  }
}
.models .block .block_item .top {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  position: relative;
}
.models .block .block_item .top .left {
  width: 58%;
  background-image: url("/images/model1.png");
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
}
.models .block .block_item .top .left .title {
  color: #CCC;
  font-size: 120px;
  font-style: normal;
  font-weight: 500;
  line-height: 110%; /* 132px */
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .models .block .block_item .top .left .title {
    font-size: 90px;
  }
}
@media (max-width: 768px) {
  .models .block .block_item .top .left .title {
    font-size: 80px;
  }
}
@media (max-width : 578px) {
  .models .block .block_item .top .left .title {
    font-size: 60px;
  }
}
@media (max-width: 1200px) {
  .models .block .block_item .top .left {
    width: 100%;
    height: 560px;
  }
}
@media (max-width: 768px) {
  .models .block .block_item .top .left {
    height: 360px;
  }
}
@media (max-width : 578px) {
  .models .block .block_item .top .left {
    height: 295px;
    background-size: 100%;
    background-position: center;
  }
}
.models .block .block_item .top .right {
  width: 42%;
}
@media (max-width: 1200px) {
  .models .block .block_item .top .right {
    width: 100%;
    position: absolute;
    bottom: -580px;
  }
}
@media (max-width: 992px) {
  .models .block .block_item .top .right {
    bottom: -590px;
  }
}
@media (max-width: 768px) {
  .models .block .block_item .top .right {
    bottom: -645px;
  }
}
@media (max-width : 578px) {
  .models .block .block_item .top .right {
    bottom: -900px;
  }
}
@media (max-width : 520px) {
  .models .block .block_item .top .right {
    bottom: -860px;
  }
}
@media (max-width : 400px) {
  .models .block .block_item .top .right {
    bottom: -840px;
  }
}
.models .block .block_item .top .right .top {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 0;
  margin-bottom: 58px;
}
@media (max-width : 578px) {
  .models .block .block_item .top .right .top {
    top: 24px;
  }
}
.models .block .block_item .top .right .top .title {
  width: 50%;
  padding-right: 80px;
}
@media (max-width: 768px) {
  .models .block .block_item .top .right .top .title {
    padding-right: 20px;
  }
}
@media (max-width : 578px) {
  .models .block .block_item .top .right .top .title {
    width: 100%;
  }
}
.models .block .block_item .top .right .top .warranty {
  width: 50%;
  display: flex;
  gap: 0 25px;
  background-color: #FFFBCC;
  padding: 12px;
  border-radius: 8px;
}
@media (max-width : 578px) {
  .models .block .block_item .top .right .top .warranty {
    width: 100%;
  }
}
.models .block .block_item .top .right .top .warranty .text .year {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%; /* 26.4px */
  text-transform: uppercase;
  margin-bottom: 4px;
}
.models .block .block_item .top .right .top .warranty .text .description {
  font-size: 9px;
  font-style: normal;
  font-weight: 300;
  line-height: 110%; /* 9.9px */
  text-transform: uppercase;
}
.models .block .block_item .top .right .prices {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 0;
  margin-bottom: 64px;
}
@media (max-width : 578px) {
  .models .block .block_item .top .right .prices {
    margin-bottom: 40px;
  }
}
.models .block .block_item .top .right .prices .price_item {
  width: 50%;
}
@media (max-width : 578px) {
  .models .block .block_item .top .right .prices .price_item {
    width: 100%;
  }
}
.models .block .block_item .top .right .prices .price_item .title {
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 110%; /* 15.4px */
  text-transform: uppercase;
}
.models .block .block_item .top .right .prices .price_item .value {
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%; /* 35.2px */
  text-transform: uppercase;
}
.models .block .block_item .top .right .actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}
.models .block .block_item .top .right .actions .action_item {
  width: calc(50% - 5px);
}
@media (max-width : 578px) {
  .models .block .block_item .top .right .actions .action_item {
    width: 100%;
  }
}
.models .block .block_item .top .right .actions .view_price {
  width: 100%;
}
.models .block .block_item .bottom {
  width: 100%;
}
@media (max-width: 1200px) {
  .models .block .block_item .bottom {
    margin-top: -90px;
    margin-bottom: 500px;
  }
}
@media (max-width: 768px) {
  .models .block .block_item .bottom {
    margin-top: -60px;
  }
}
@media (max-width : 578px) {
  .models .block .block_item .bottom {
    margin-top: -40px;
    margin-bottom: 685px;
  }
}
@media (max-width : 520px) {
  .models .block .block_item .bottom {
    margin-top: -40px;
    margin-bottom: 650px;
  }
}
@media (max-width : 400px) {
  .models .block .block_item .bottom {
    margin-top: -40px;
    margin-bottom: 600px;
  }
}
.models .block .block_item .bottom .swiper .swiper-slide a img {
  width: 100%;
  object-fit: cover;
}
.models .block .block_item .bottom .swiper .buttons {
  display: flex;
  gap: 0 6px;
  margin-top: 20px;
}
.models .block .block_item .bottom .swiper .buttons .prev_button, .models .block .block_item .bottom .swiper .buttons .next_button {
  width: 54px;
  height: 54px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 1px solid #ccc;
}
@media (max-width: 1200px) {
  .models .block .block_item .bottom .swiper .buttons .prev_button, .models .block .block_item .bottom .swiper .buttons .next_button {
    display: none;
  }
}
.models .block .block_item .bottom .swiper .buttons .prev_button:hover, .models .block .block_item .bottom .swiper .buttons .next_button:hover {
  background-color: #FFF466;
  border-color: #FFF466;
}
.models .block .block_item .bottom .swiper .buttons .prev_button:active, .models .block .block_item .bottom .swiper .buttons .next_button:active {
  background-color: #FFED00;
  border-color: #FFED00;
}
.models .block .block_item.model2 .top .left {
  background-image: url("/images/model2.png");
}

.swapCar {
  margin-bottom: 120px;
}
@media (max-width : 578px) {
  .swapCar {
    margin-bottom: 60px;
  }
}
.swapCar .parent_block {
  background-image: url("/images/swapAvto.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  padding: 60px 0 200px 0;
}
@media (max-width: 1440px) {
  .swapCar .parent_block {
    background-position: center;
  }
}
@media (max-width: 992px) {
  .swapCar .parent_block {
    padding-bottom: 150px;
  }
}
@media (max-width : 578px) {
  .swapCar .parent_block {
    height: 200px;
    background-position: right;
    margin-bottom: 20px;
  }
}
@media (max-width : 578px) {
  .swapCar .parent_block .block {
    display: none;
  }
}
.swapCar .parent_block .block .title {
  color: #FFF;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%; /* 35.2px */
  text-transform: uppercase;
  margin-bottom: 20px;
}
.swapCar .parent_block .block .description {
  color: #FFF;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 110%; /* 19.8px */
  margin-bottom: 30px;
}
.swapCar .parent_block .block .phone_number {
  max-width: 50%;
  display: flex;
  justify-content: space-between;
  margin-bottom: 24px;
  position: relative;
}
@media (max-width: 992px) {
  .swapCar .parent_block .block .phone_number {
    min-width: 75%;
  }
}
.swapCar .parent_block .block .phone_number input {
  width: calc(50% - 5px);
  border-radius: 10px;
  border: 1px solid #999;
  font-size: 16px;
  font-weight: 300;
  line-height: 105%; /* 16.8px */
  padding: 0 20px;
}
.swapCar .parent_block .block .phone_number input:focus {
  outline: none;
  border-color: #000;
}
.swapCar .parent_block .block .phone_number input::placeholder {
  color: #666;
}
.swapCar .parent_block .block .phone_number input.error {
  border-color: #E81B23;
}
.swapCar .parent_block .block .phone_number input.error::placeholder {
  color: #E81B23;
}
.swapCar .parent_block .block .phone_number input.error:focus {
  border-color: #999;
}
.swapCar .parent_block .block .phone_number button {
  width: calc(50% - 5px);
}
.swapCar .parent_block .block .item {
  display: flex;
  gap: 0 13px;
  cursor: pointer;
  margin-bottom: 6px;
  max-width: 50%;
}
@media (max-width: 992px) {
  .swapCar .parent_block .block .item {
    min-width: 75%;
  }
}
.swapCar .parent_block .block .item .icon {
  width: 20px;
  height: 20px;
  border: 1px solid #999;
  border-radius: 4px;
  display: flex;
  flex: 0 0 auto;
  position: relative;
  background-color: white;
}
.swapCar .parent_block .block .item .icon::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -4px;
  bottom: 0;
  margin: auto;
  width: 10px;
  height: 5px;
  border-left: 1px solid #000;
  border-bottom: 1px solid #000;
  transform: rotate(-45deg);
  display: none;
}
.swapCar .parent_block .block .item .text {
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  color: #fff;
}
.swapCar .parent_block .block .item .text a {
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid #fff;
}
.swapCar .parent_block .block .item input {
  display: none;
}
.swapCar .parent_block .block .item input:checked ~ .icon {
  background-color: #FFED00;
  border-color: #FFED00;
}
.swapCar .parent_block .block .item input:checked ~ .icon::after {
  display: block;
}
.swapCar .mobile_block {
  display: none;
}
@media (max-width : 578px) {
  .swapCar .mobile_block {
    display: block;
  }
}
.swapCar .mobile_block .title {
  color: #000;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%; /* 26.4px */
  text-transform: uppercase;
  margin-bottom: 20px;
}
.swapCar .mobile_block .description {
  color: #000;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 110%; /* 17.6px */
  margin-bottom: 20px;
}
.swapCar .mobile_block .phone_number {
  max-width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 20px;
}
.swapCar .mobile_block .phone_number input {
  width: 100%;
  border-radius: 10px;
  border: 1px solid #999;
  font-size: 16px;
  font-weight: 300;
  line-height: 105%; /* 16.8px */
  padding: 0 20px;
  height: 54px;
  margin-bottom: 20px;
}
.swapCar .mobile_block .phone_number input:focus {
  outline: none;
  border-color: #000;
}
.swapCar .mobile_block .phone_number input::placeholder {
  color: #666;
}
.swapCar .mobile_block .phone_number button {
  width: 100%;
}
.swapCar .mobile_block .item {
  display: flex;
  gap: 0 13px;
  cursor: pointer;
  margin-bottom: 6px;
}
@media (max-width: 992px) {
  .swapCar .mobile_block .item {
    min-width: 75%;
  }
}
.swapCar .mobile_block .item .icon {
  width: 20px;
  height: 20px;
  border: 1px solid #999;
  border-radius: 4px;
  display: flex;
  flex: 0 0 auto;
  position: relative;
  background-color: white;
}
.swapCar .mobile_block .item .icon::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -4px;
  bottom: 0;
  margin: auto;
  width: 10px;
  height: 5px;
  border-left: 1px solid #000;
  border-bottom: 1px solid #000;
  transform: rotate(-45deg);
  display: none;
}
.swapCar .mobile_block .item .text {
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  color: #333;
}
.swapCar .mobile_block .item .text a {
  color: #666;
  text-decoration: none;
  border-bottom: 1px solid #666;
}
.swapCar .mobile_block .item input {
  display: none;
}
.swapCar .mobile_block .item input:checked ~ .icon {
  background-color: #FFED00;
  border-color: #FFED00;
}
.swapCar .mobile_block .item input:checked ~ .icon::after {
  display: block;
}

.configuration {
  margin-bottom: 120px;
}
@media (max-width: 992px) {
  .configuration {
    margin-bottom: 80px;
  }
}
@media (max-width : 578px) {
  .configuration {
    margin-bottom: 60px;
  }
}
.configuration .block .section_title {
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%; /* 35.2px */
  text-transform: uppercase;
  margin-bottom: 40px;
}
@media (max-width : 578px) {
  .configuration .block .section_title {
    font-size: 24px;
  }
}
.configuration .block .tab_nav {
  list-style: none;
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}
@media (max-width : 578px) {
  .configuration .block .tab_nav {
    margin-bottom: 20px;
  }
}
.configuration .block .tab_nav li {
  width: calc(50% - 5px);
}
.configuration .block .tab_nav li a {
  display: block;
  text-align: center;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  border-radius: 8px;
  background: #F8F8F8;
  padding: 18px 0;
  color: #000;
}
.configuration .block .tab_nav li a:hover {
  background-color: #ccc;
}
.configuration .block .tab_nav li a.active {
  background-color: #000;
  color: #fff;
}
.configuration .block .tab_content .tab {
  display: none;
}
.configuration .block .tab_content .tab.show {
  display: block;
}
.configuration .block .tab_content .tab .cars {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.configuration .block .tab_content .tab .cars .car_item {
  width: 33.3333%;
  border: 1px solid #D9D9D9;
}
@media (max-width: 1200px) {
  .configuration .block .tab_content .tab .cars .car_item {
    width: 50%;
  }
}
@media (max-width: 768px) {
  .configuration .block .tab_content .tab .cars .car_item {
    width: 100%;
  }
}
.configuration .block .tab_content .tab .cars .car_item .car_header img {
  object-fit: cover;
  width: 100%;
}
.configuration .block .tab_content .tab .cars .car_item .car_body {
  padding: 30px;
}
@media (max-width : 578px) {
  .configuration .block .tab_content .tab .cars .car_item .car_body {
    padding: 15px;
  }
}
.configuration .block .tab_content .tab .cars .car_item .car_body .title {
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%; /* 35.2px */
  text-transform: uppercase;
  margin-bottom: 20px;
}
.configuration .block .tab_content .tab .cars .car_item .car_body .info {
  list-style: none;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px 0;
}
.configuration .block .tab_content .tab .cars .car_item .car_body .info li {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 110%; /* 15.4px */
  text-transform: uppercase;
}
.configuration .block .tab_content .tab .cars .car_item .car_body .info li .name {
  color: #666;
}
.configuration .block .tab_content .tab .all_cars {
  display: flex;
  justify-content: center;
}
.configuration .block .tab_content .tab .all_cars .main_btn {
  width: 442px;
}
@media (max-width: 768px) {
  .configuration .block .tab_content .tab .all_cars .main_btn {
    width: 100%;
  }
}

.contact {
  margin-bottom: 120px;
}
@media (max-width : 578px) {
  .contact {
    margin-bottom: 80px;
  }
}
.contact .block {
  display: flex;
  flex-wrap: wrap;
  border-radius: 10px;
  overflow: hidden;
}
.contact .block .left {
  width: 66.66666%;
}
@media (max-width: 1200px) {
  .contact .block .left {
    width: 50%;
  }
}
@media (max-width: 992px) {
  .contact .block .left {
    width: 100%;
  }
}
.contact .block .left #map {
  height: 100%;
  filter: grayscale(100%);
}
@media (max-width: 992px) {
  .contact .block .left #map {
    height: 325px;
  }
}
.contact .block .right {
  width: 33.3333%;
  padding: 40px;
  background-color: #000;
  border-radius: 8px;
}
@media (max-width: 1200px) {
  .contact .block .right {
    width: 50%;
  }
}
@media (max-width: 992px) {
  .contact .block .right {
    width: 100%;
  }
}
@media (max-width : 578px) {
  .contact .block .right {
    padding: 20px;
  }
}
.contact .block .right .title {
  color: #FFF;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%; /* 35.2px */
  text-transform: uppercase;
  margin-bottom: 240px;
}
@media (max-width: 992px) {
  .contact .block .right .title {
    font-size: 24px;
    margin-bottom: 40px;
  }
}
.contact .block .right .text {
  margin-bottom: 24px;
  text-decoration: none;
}
.contact .block .right .text .name {
  color: #666;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 7px;
}
.contact .block .right .text .value {
  color: #FFF;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  text-decoration: none;
}
.contact .block .right .text:last-child {
  margin-bottom: 0;
}

.first_model_page .advantages {
  margin-bottom: 32px;
}
.first_model_page .page_sub_nav .nav {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  margin-bottom: 50px;
  gap: 0 10px;
  padding-bottom: 10px;
}
@media (max-width: 1440px) {
  .first_model_page .page_sub_nav .nav {
    overflow: scroll;
  }
}
@media (max-width: 992px) {
  .first_model_page .page_sub_nav .nav {
    margin-bottom: 30px;
  }
}
@media (max-width : 578px) {
  .first_model_page .page_sub_nav .nav {
    margin-bottom: 20px;
  }
}
.first_model_page .page_sub_nav .nav li {
  padding: 18px 30px;
  border-radius: 8px;
  background-color: #F8F8F8;
  min-width: 175px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 54px;
  transition: 0.3s ease all;
  cursor: pointer;
}
.first_model_page .page_sub_nav .nav li:hover {
  background-color: #ccc;
}
.first_model_page .page_sub_nav .nav li a {
  text-align: center;
  color: #000;
  text-decoration: none;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}
.first_model_page .page_sub_nav .nav li.active {
  background-color: #000;
}
.first_model_page .page_sub_nav .nav li.active a {
  color: #fff;
}
.first_model_page .view_model {
  margin-bottom: 120px;
}
@media (max-width: 992px) {
  .first_model_page .view_model {
    margin-bottom: 60px;
  }
}
@media (max-width : 578px) {
  .first_model_page .view_model {
    margin-bottom: 40px;
  }
}
.first_model_page .view_model .model_info_top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 80px;
  flex-wrap: wrap;
}
@media (max-width: 1200px) {
  .first_model_page .view_model .model_info_top {
    margin-bottom: 60px;
  }
}
@media (max-width: 992px) {
  .first_model_page .view_model .model_info_top {
    flex-direction: column-reverse;
    margin-bottom: 45px;
  }
}
@media (max-width : 578px) {
  .first_model_page .view_model .model_info_top {
    margin-bottom: 35px;
  }
}
.first_model_page .view_model .model_info_top .left {
  width: calc(50% - 23px);
  padding: 75px 0 45px 0;
}
@media (max-width: 1440px) {
  .first_model_page .view_model .model_info_top .left {
    padding: 30px 0;
  }
}
@media (max-width: 992px) {
  .first_model_page .view_model .model_info_top .left {
    width: 100%;
  }
}
@media (max-width : 578px) {
  .first_model_page .view_model .model_info_top .left {
    padding: 0;
    margin-top: 25px;
  }
}
.first_model_page .view_model .model_info_top .left .title {
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%; /* 35.2px */
  text-transform: uppercase;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .first_model_page .view_model .model_info_top .left .title {
    font-size: 28px;
    margin-bottom: 30px;
  }
}
@media (max-width : 578px) {
  .first_model_page .view_model .model_info_top .left .title {
    font-size: 24px;
    margin-bottom: 20px;
  }
}
.first_model_page .view_model .model_info_top .left .text {
  color: #000;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 140%; /* 25.2px */
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .first_model_page .view_model .model_info_top .left .text {
    font-size: 16px;
  }
}
.first_model_page .view_model .model_info_top .left .text:last-child {
  margin-bottom: 0;
}
.first_model_page .view_model .model_info_top .right {
  width: calc(50% - 23px);
  display: flex;
  align-items: center;
}
@media (max-width: 992px) {
  .first_model_page .view_model .model_info_top .right {
    width: 100%;
  }
}
.first_model_page .view_model .model_info_top .right img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.first_model_page .view_model .model_color {
  margin-bottom: 60px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px 0;
}
.first_model_page .view_model .model_color .left {
  width: 50%;
}
@media (max-width: 992px) {
  .first_model_page .view_model .model_color .left {
    width: 100%;
    margin-bottom: 40px;
  }
}
.first_model_page .view_model .model_color .left .swiperColor, .first_model_page .view_model .model_color .left .swiperColor2 {
  position: relative;
}
@media (max-width : 578px) {
  .first_model_page .view_model .model_color .left .swiperColor, .first_model_page .view_model .model_color .left .swiperColor2 {
    padding-bottom: 76px;
  }
}
.first_model_page .view_model .model_color .left .swiperColor .swiper-slide img, .first_model_page .view_model .model_color .left .swiperColor2 .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.first_model_page .view_model .model_color .left .swiperColor .button_next, .first_model_page .view_model .model_color .left .swiperColor .button_prev, .first_model_page .view_model .model_color .left .swiperColor2 .button_next, .first_model_page .view_model .model_color .left .swiperColor2 .button_prev {
  position: absolute;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid #ccc;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  bottom: 0;
  margin: auto;
  cursor: pointer !important;
  z-index: 5;
  background-color: #fff;
}
@media (max-width : 578px) {
  .first_model_page .view_model .model_color .left .swiperColor .button_next, .first_model_page .view_model .model_color .left .swiperColor .button_prev, .first_model_page .view_model .model_color .left .swiperColor2 .button_next, .first_model_page .view_model .model_color .left .swiperColor2 .button_prev {
    left: 0;
    right: 0;
    bottom: 40px;
    top: auto;
  }
}
.first_model_page .view_model .model_color .left .swiperColor .button_next, .first_model_page .view_model .model_color .left .swiperColor2 .button_next {
  right: 0;
}
@media (max-width : 578px) {
  .first_model_page .view_model .model_color .left .swiperColor .button_next, .first_model_page .view_model .model_color .left .swiperColor2 .button_next {
    right: -65px;
  }
}
@media (max-width : 578px) {
  .first_model_page .view_model .model_color .left .swiperColor .button_prev, .first_model_page .view_model .model_color .left .swiperColor2 .button_prev {
    left: -65px;
  }
}
.first_model_page .view_model .model_color .left .colors {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  gap: 20px 0;
}
.first_model_page .view_model .model_color .left .colors .swiperColorThumbnail, .first_model_page .view_model .model_color .left .colors .swiperColorThumbnail2 {
  max-width: 380px;
  padding: 0 15px;
}
@media (max-width : 578px) {
  .first_model_page .view_model .model_color .left .colors .swiperColorThumbnail, .first_model_page .view_model .model_color .left .colors .swiperColorThumbnail2 {
    width: 100%;
  }
}
.first_model_page .view_model .model_color .left .colors .swiperColorThumbnail .swiper-slide .border_slide, .first_model_page .view_model .model_color .left .colors .swiperColorThumbnail2 .swiper-slide .border_slide {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  cursor: pointer;
}
.first_model_page .view_model .model_color .left .colors .swiperColorThumbnail .swiper-slide .border_slide svg, .first_model_page .view_model .model_color .left .colors .swiperColorThumbnail2 .swiper-slide .border_slide svg {
  width: 30px;
  height: 30px;
  fill: #FFF;
  filter: drop-shadow(0px 0px 6px rgba(0, 0, 0, 0.15));
}
.first_model_page .view_model .model_color .left .colors .swiperColorThumbnail .swiper-slide.swiper-slide-thumb-active .border_slide, .first_model_page .view_model .model_color .left .colors .swiperColorThumbnail2 .swiper-slide.swiper-slide-thumb-active .border_slide {
  border: 4px solid #AAA;
}
.first_model_page .view_model .model_color .left .colors .swiperColorThumbnail2 {
  max-width: 300px;
}
.first_model_page .view_model .model_color .left .colors .color_value {
  text-align: center;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 110%; /* 13.2px */
}
.first_model_page .view_model .model_color .right {
  width: 50%;
  padding-left: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px 0;
}
@media (max-width: 1200px) {
  .first_model_page .view_model .model_color .right {
    padding-left: 40px;
  }
}
@media (max-width: 992px) {
  .first_model_page .view_model .model_color .right {
    padding-left: 0;
    width: 100%;
    gap: 20px 0;
  }
}
.first_model_page .view_model .model_color .right .title {
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%; /* 35.2px */
  text-transform: uppercase;
}
.first_model_page .view_model .model_color .right .description {
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 140%; /* 25.2px */
}
.first_model_page .view_model .model_mixed_color {
  margin-bottom: 120px;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 992px) {
  .first_model_page .view_model .model_mixed_color {
    flex-direction: column-reverse;
    gap: 60px 0;
    margin-bottom: 60px;
  }
}
.first_model_page .view_model .model_mixed_color .left {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px 0;
  padding-right: 80px;
}
@media (max-width: 992px) {
  .first_model_page .view_model .model_mixed_color .left {
    width: 100%;
    gap: 20px 0;
    padding-right: 0;
  }
}
.first_model_page .view_model .model_mixed_color .left .title {
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%; /* 35.2px */
  text-transform: uppercase;
}
@media (max-width: 992px) {
  .first_model_page .view_model .model_mixed_color .left .title {
    font-size: 28px;
  }
}
@media (max-width : 578px) {
  .first_model_page .view_model .model_mixed_color .left .title {
    font-size: 24px;
  }
}
.first_model_page .view_model .model_mixed_color .left .description {
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 140%; /* 25.2px */
}
@media (max-width : 578px) {
  .first_model_page .view_model .model_mixed_color .left .description {
    font-size: 16px;
  }
}
.first_model_page .view_model .model_mixed_color .right {
  width: 50%;
}
@media (max-width: 992px) {
  .first_model_page .view_model .model_mixed_color .right {
    width: 100%;
  }
}
.first_model_page .view_model .model_mixed_color .right .swiperMixedColor {
  position: relative;
}
@media (max-width : 578px) {
  .first_model_page .view_model .model_mixed_color .right .swiperMixedColor {
    padding-bottom: 76px;
  }
}
.first_model_page .view_model .model_mixed_color .right .swiperMixedColor .button_next, .first_model_page .view_model .model_mixed_color .right .swiperMixedColor .button_prev {
  position: absolute;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid #ccc;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  bottom: 0;
  margin: auto;
  cursor: pointer !important;
  z-index: 5;
}
@media (max-width : 578px) {
  .first_model_page .view_model .model_mixed_color .right .swiperMixedColor .button_next, .first_model_page .view_model .model_mixed_color .right .swiperMixedColor .button_prev {
    left: 0;
    right: 0;
    bottom: 25px;
    top: auto;
  }
}
.first_model_page .view_model .model_mixed_color .right .swiperMixedColor .button_next {
  right: 0;
}
@media (max-width : 578px) {
  .first_model_page .view_model .model_mixed_color .right .swiperMixedColor .button_next {
    right: -65px;
  }
}
.first_model_page .view_model .model_mixed_color .right .swiperMixedColor .button_prev {
  left: 0;
}
@media (max-width : 578px) {
  .first_model_page .view_model .model_mixed_color .right .swiperMixedColor .button_prev {
    left: -65px;
  }
}
.first_model_page .view_model .model_mixed_color .right .swiperMixedColor .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.first_model_page .view_model .model_mixed_color .right .colors {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  gap: 20px 0;
}
.first_model_page .view_model .model_mixed_color .right .colors .swiperMixedColorThumbnail {
  max-width: 530px;
  padding: 0 15px;
  flex-wrap: wrap;
}
@media (max-width: 1200px) {
  .first_model_page .view_model .model_mixed_color .right .colors .swiperMixedColorThumbnail {
    width: 100%;
  }
}
.first_model_page .view_model .model_mixed_color .right .colors .swiperMixedColorThumbnail .swiper-slide .border_slide {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  cursor: pointer;
}
.first_model_page .view_model .model_mixed_color .right .colors .swiperMixedColorThumbnail .swiper-slide .border_slide svg {
  width: 30px;
  height: 30px;
  fill: #FFF;
  filter: drop-shadow(0px 0px 6px rgba(0, 0, 0, 0.15));
}
.first_model_page .view_model .model_mixed_color .right .colors .swiperMixedColorThumbnail .swiper-slide.swiper-slide-thumb-active .border_slide {
  border: 4px solid #AAA;
}
.first_model_page .view_model .model_mixed_color .right .colors .color_value {
  text-align: center;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 110%; /* 13.2px */
}
.first_model_page .view_model .gallery .title {
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%; /* 35.2px */
  text-transform: uppercase;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .first_model_page .view_model .gallery .title {
    font-size: 28px;
    margin-bottom: 30px;
  }
}
@media (max-width : 578px) {
  .first_model_page .view_model .gallery .title {
    font-size: 24px;
    margin-bottom: 20px;
  }
}
.first_model_page .view_model .gallery .swiper .swiper-slide a img {
  width: 100%;
  object-fit: cover;
}
.first_model_page .view_model .gallery .swiper .buttons {
  display: flex;
  gap: 0 6px;
  margin-top: 20px;
}
.first_model_page .view_model .gallery .swiper .buttons .prev_button, .first_model_page .view_model .gallery .swiper .buttons .next_button {
  width: 54px;
  height: 54px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 1px solid #ccc;
}
@media (max-width: 1200px) {
  .first_model_page .view_model .gallery .swiper .buttons .prev_button, .first_model_page .view_model .gallery .swiper .buttons .next_button {
    display: none;
  }
}
.first_model_page .view_model .gallery .swiper .buttons .prev_button:hover, .first_model_page .view_model .gallery .swiper .buttons .next_button:hover {
  background-color: #FFF466;
  border-color: #FFF466;
}
.first_model_page .view_model .gallery .swiper .buttons .prev_button:active, .first_model_page .view_model .gallery .swiper .buttons .next_button:active {
  background-color: #FFED00;
  border-color: #FFED00;
}
.first_model_page .exterior, .first_model_page .interior, .first_model_page .driving {
  margin-bottom: 140px;
}
@media (max-width: 992px) {
  .first_model_page .exterior, .first_model_page .interior, .first_model_page .driving {
    margin-bottom: 80px;
  }
}
@media (max-width : 578px) {
  .first_model_page .exterior, .first_model_page .interior, .first_model_page .driving {
    margin-bottom: 60px;
  }
}
.first_model_page .exterior .section_title, .first_model_page .interior .section_title, .first_model_page .driving .section_title {
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%; /* 35.2px */
  text-transform: uppercase;
  margin-bottom: 34px;
}
@media (max-width: 992px) {
  .first_model_page .exterior .section_title, .first_model_page .interior .section_title, .first_model_page .driving .section_title {
    font-size: 28px;
  }
}
@media (max-width : 578px) {
  .first_model_page .exterior .section_title, .first_model_page .interior .section_title, .first_model_page .driving .section_title {
    font-size: 24px;
  }
}
.first_model_page .exterior .block, .first_model_page .interior .block, .first_model_page .driving .block {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 34px 0;
}
.first_model_page .exterior .block .block_item, .first_model_page .interior .block .block_item, .first_model_page .driving .block .block_item {
  width: calc(33.3333% - 21px);
}
@media (max-width: 992px) {
  .first_model_page .exterior .block .block_item, .first_model_page .interior .block .block_item, .first_model_page .driving .block .block_item {
    width: calc(50% - 10px);
  }
}
@media (max-width: 768px) {
  .first_model_page .exterior .block .block_item, .first_model_page .interior .block .block_item, .first_model_page .driving .block .block_item {
    width: 100%;
  }
}
.first_model_page .exterior .block .block_item:nth-child(n+4), .first_model_page .interior .block .block_item:nth-child(n+4), .first_model_page .driving .block .block_item:nth-child(n+4) {
  width: calc(50% - 16px);
}
@media (max-width: 768px) {
  .first_model_page .exterior .block .block_item:nth-child(n+4), .first_model_page .interior .block .block_item:nth-child(n+4), .first_model_page .driving .block .block_item:nth-child(n+4) {
    width: 100%;
  }
}
.first_model_page .exterior .block .block_item .img, .first_model_page .interior .block .block_item .img, .first_model_page .driving .block .block_item .img {
  margin-bottom: 13px;
}
.first_model_page .exterior .block .block_item .img img, .first_model_page .interior .block .block_item .img img, .first_model_page .driving .block .block_item .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.first_model_page .exterior .block .block_item .title, .first_model_page .interior .block .block_item .title, .first_model_page .driving .block .block_item .title {
  font-size: 24px;
  font-style: normal;
  font-weight: 300;
  line-height: 130%; /* 31.2px */
  text-transform: uppercase;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .first_model_page .exterior .block .block_item .title, .first_model_page .interior .block .block_item .title, .first_model_page .driving .block .block_item .title {
    font-size: 20px;
    margin-bottom: 12px;
  }
}
.first_model_page .exterior .block .block_item .description, .first_model_page .interior .block .block_item .description, .first_model_page .driving .block .block_item .description {
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 140%; /* 25.2px */
}
@media (max-width: 768px) {
  .first_model_page .exterior .block .block_item .description, .first_model_page .interior .block .block_item .description, .first_model_page .driving .block .block_item .description {
    font-size: 16px;
  }
}
.first_model_page .driving .block .block_item:nth-child(1) {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .first_model_page .driving .block .block_item:nth-child(1) {
    margin-bottom: 34px;
  }
}
.first_model_page .interior_colors {
  margin-bottom: 140px;
}
@media (max-width: 992px) {
  .first_model_page .interior_colors {
    margin-bottom: 80px;
  }
}
@media (max-width : 578px) {
  .first_model_page .interior_colors {
    margin-bottom: 60px;
  }
}
.first_model_page .interior_colors .section_title {
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%; /* 35.2px */
  text-transform: uppercase;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .first_model_page .interior_colors .section_title {
    font-size: 28px;
    margin-bottom: 30px;
  }
}
@media (max-width : 578px) {
  .first_model_page .interior_colors .section_title {
    font-size: 24px;
    margin-bottom: 20px;
  }
}
.first_model_page .interior_colors .tab_nav {
  display: flex;
  justify-content: space-between;
  list-style: none;
  margin-bottom: 30px;
  padding-bottom: 10px;
  gap: 0 10px;
}
@media (max-width: 1200px) {
  .first_model_page .interior_colors .tab_nav {
    overflow: scroll;
  }
}
.first_model_page .interior_colors .tab_nav li {
  width: calc(33.333% - 7px);
}
@media (max-width: 992px) {
  .first_model_page .interior_colors .tab_nav li {
    width: auto;
  }
}
.first_model_page .interior_colors .tab_nav li a {
  display: block;
  text-align: center;
  color: #000;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  text-decoration: none;
  padding: 18px 60px;
  border-radius: 8px;
  background-color: #F8F8F8;
  transition: 0.3s ease all;
}
@media (max-width: 992px) {
  .first_model_page .interior_colors .tab_nav li a {
    min-width: 260px;
  }
}
.first_model_page .interior_colors .tab_nav li a:hover {
  background-color: #ccc;
  color: #000;
}
.first_model_page .interior_colors .tab_nav li a.active {
  background-color: #000;
  color: #fff;
}
@media (max-width: 992px) {
  .first_model_page .interior_colors .tab_nav li:last-child a {
    width: 320px;
  }
}
.first_model_page .interior_colors .tab_content .tab {
  display: none;
  justify-content: space-between;
}
.first_model_page .interior_colors .tab_content .tab.show {
  display: flex;
}
.first_model_page .interior_colors .tab_content .tab .left {
  width: calc(50% - 16px);
}
@media (max-width: 768px) {
  .first_model_page .interior_colors .tab_content .tab .left {
    display: none;
  }
}
.first_model_page .interior_colors .tab_content .tab .left img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.first_model_page .interior_colors .tab_content .tab .right {
  width: calc(50% - 16px);
}
@media (max-width: 768px) {
  .first_model_page .interior_colors .tab_content .tab .right {
    display: none;
  }
}
.first_model_page .interior_colors .tab_content .tab .right img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.first_model_page .interior_colors .tab_content .tab .model1_interior_colors {
  display: none;
}
.first_model_page .interior_colors .tab_content .tab .model1_interior_colors .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media (max-width: 768px) {
  .first_model_page .interior_colors .tab_content .tab .model1_interior_colors {
    display: block;
  }
}
.first_model_page .prices {
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  .first_model_page .prices {
    margin-bottom: 60px;
  }
}
.first_model_page .prices .section_title {
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%; /* 35.2px */
  text-transform: uppercase;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .first_model_page .prices .section_title {
    font-size: 28px;
    margin-bottom: 30px;
  }
}
@media (max-width : 578px) {
  .first_model_page .prices .section_title {
    font-size: 24px;
    margin-bottom: 20px;
  }
}
.first_model_page .prices .main_btn {
  margin-bottom: 40px;
}
.first_model_page .prices .block {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.first_model_page .prices .block .left {
  max-width: 40%;
}
@media (max-width: 1200px) {
  .first_model_page .prices .block .left {
    max-width: 50%;
  }
}
@media (max-width: 992px) {
  .first_model_page .prices .block .left {
    max-width: 100%;
    width: 100%;
  }
}
.first_model_page .prices .block .left .img img {
  width: 100%;
  object-fit: contain;
}
.first_model_page .prices .block .left .text {
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: 110%; /* 15.4px */
  text-transform: uppercase;
  margin-bottom: 4px;
}
.first_model_page .prices .block .left .price_value {
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%; /* 35.2px */
  text-transform: uppercase;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .first_model_page .prices .block .left .price_value {
    margin-bottom: 30px;
  }
}
@media (max-width : 578px) {
  .first_model_page .prices .block .left .price_value {
    margin-bottom: 20px;
  }
}
.first_model_page .prices .block .right {
  width: calc(50% - 16px);
}
@media (max-width: 992px) {
  .first_model_page .prices .block .right {
    width: 100%;
  }
}
.first_model_page .prices .block .right .accordion_block {
  list-style: none;
}
.first_model_page .prices .block .right .accordion_block .accordion_item {
  border-bottom: 1px solid #ccc;
}
.first_model_page .prices .block .right .accordion_block .accordion_item:first-child {
  border-top: 1px solid #ccc;
}
.first_model_page .prices .block .right .accordion_block .accordion_item .title {
  padding: 20px 0;
  font-size: 24px;
  font-style: normal;
  font-weight: 300;
  line-height: 110%; /* 26.4px */
  text-transform: uppercase;
  position: relative;
  transition: 0.3s ease all;
  cursor: pointer;
}
@media (max-width: 768px) {
  .first_model_page .prices .block .right .accordion_block .accordion_item .title {
    font-size: 20px;
  }
}
.first_model_page .prices .block .right .accordion_block .accordion_item .title::after {
  content: "";
  position: absolute;
  display: block;
  width: 24px;
  height: 24px;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background-image: url("/images/accordion_arrow.svg");
  background-repeat: no-repeat;
  background-position: center;
}
.first_model_page .prices .block .right .accordion_block .accordion_item .accordion_content {
  list-style: inside;
  margin-bottom: 20px;
  display: none;
}
.first_model_page .prices .block .right .accordion_block .accordion_item .accordion_content li {
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 110%; /* 17.6px */
  margin-bottom: 12px;
}
.first_model_page .prices .block .right .accordion_block .accordion_item .accordion_content li:last-child {
  margin-bottom: 0;
}
.first_model_page .prices .block .right .accordion_block .accordion_item.active .title::after {
  -webkit-transform: scaleY(-1);
  -moz-transform: scaleY(-1);
  -ms-transform: scaleY(-1);
  -o-transform: scaleY(-1);
  transform: scaleY(-1);
}
.first_model_page .prices .block .right .accordion_block .accordion_item.active .accordion_content {
  display: block;
}
.first_model_page .testDrive,
.serviceForm {
  background-color: #222;
  margin-bottom: 60px;
}
.serviceForm {
    scroll-margin-top: 100px;
}
@media (max-width: 992px) {
  .first_model_page .testDrive,
  .serviceForm {
    margin-bottom: 40px;
  }
  .serviceForm {
    scroll-margin-top: 50px;
}
}
.first_model_page .testDrive .block,
.serviceForm .block{
  padding: 40px 0;
}
@media (max-width: 992px) {
  .first_model_page .testDrive .block,
  .serviceForm .block {
    padding: 30px 0;
  }
}
.first_model_page .testDrive .block .title,
.serviceForm .block .title {
  color: #FFF;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%; /* 35.2px */
  text-transform: uppercase;
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .first_model_page .testDrive .block .title,
  .serviceForm .block .title {
    font-size: 28px;
  }
}
@media (max-width : 578px) {
  .first_model_page .testDrive .block .title,
  .serviceForm .block .title {
    font-size: 24px;
  }
}
.first_model_page .testDrive .block .description,
.serviceForm .block .description {
  color: #FFF;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 110%; /* 19.8px */
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .first_model_page .testDrive .block .description,
    .serviceForm .block .description {
    font-size: 16px;
    margin-bottom: 20px;
  }
}
.first_model_page .testDrive .block .phone_number,
.serviceForm .block .phone_number {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 24px;
  position: relative;
}
@media (max-width : 578px) {
  .first_model_page .testDrive .block .phone_number,
  .serviceForm .block .phone_number {
    gap: 10px 0;
    margin-bottom: 20px;
  }
}

.serviceForm .block .phone_number input {
  width: calc(50% - 5px);
  border-radius: 10px;
  border: 1px solid #999;
  font-size: 16px;
  font-weight: 300;
  line-height: 105%; /* 16.8px */
  padding: 0 20px;
}
.first_model_page .testDrive .block .phone_number input {
  width: calc(33% - 5px);
  border-radius: 10px;
  border: 1px solid #999;
  font-size: 16px;
  font-weight: 300;
  line-height: 105%; /* 16.8px */
  padding: 0 20px;
}
.first_model_page .testDrive .block .phone_number input[type="date"]{
    cursor: pointer;
}
@media (max-width : 578px) {
  .first_model_page .testDrive .block .phone_number input,
  .serviceForm .block .phone_number input {
    width: 100%;
    height: 54px;
  }
}
.first_model_page .testDrive .block .phone_number input:focus,
.serviceForm .block .phone_number input:focus {
  outline: none;
  border-color: #000;
}
.first_model_page .testDrive .block .phone_number input::placeholder,
.serviceForm .block .phone_number input::placeholder {
  color: #666;
}
.first_model_page .testDrive .block .phone_number input.bg_dark,
.serviceForm .block .phone_number input.bg_dark {
  background-color: #222;
  color: #999;
}
.first_model_page .testDrive .block .phone_number input.bg_dark::placeholder,
.serviceForm .block .phone_number input.bg_dark::placeholder {
  color: #999;
}
.first_model_page .testDrive .block .phone_number input.bg_dark:focus,
.serviceForm .block .phone_number input.bg_dark:focus {
  color: #ccc;
  border-color: #ccc;
}
.first_model_page .testDrive .block .phone_number input.error,
.serviceForm .block .phone_number input.error {
  border-color: #E81B23;
}
.first_model_page .testDrive .block .phone_number input.error::placeholder,
.serviceForm .block .phone_number input.error::placeholder {
  color: #E81B23;
}
.first_model_page .testDrive .block .phone_number input.error:focus,
.serviceForm .block .phone_number input.error:focus {
  border-color: #999;
}
.first_model_page .testDrive .block .phone_number button {
  width: calc(33% - 5px);
}
.serviceForm .block .phone_number button {
  width: calc(50% - 5px);
}
@media (max-width : 578px) {
  .first_model_page .testDrive .block .phone_number button,
  .serviceForm .block .phone_number button {
    width: 100%;
  }
}

.first_model_page .testDrive .block .item,
.serviceForm .block .item {
  display: flex;
  gap: 0 13px;
  cursor: pointer;
  margin-bottom: 6px;
  max-width: 50%;
}
@media (max-width: 1200px) {
  .first_model_page .testDrive .block .item,
  .serviceForm .block .item {
    max-width: 100%;
  }
}
.first_model_page .testDrive .block .item .icon,
.serviceForm .block .item .icon {
  width: 20px;
  height: 20px;
  border: 1px solid #999;
  border-radius: 4px;
  display: flex;
  flex: 0 0 auto;
  position: relative;
}
.first_model_page .testDrive .block .item .icon::after,
.serviceForm .block .item .icon::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -4px;
  bottom: 0;
  margin: auto;
  width: 10px;
  height: 5px;
  border-left: 1px solid #000;
  border-bottom: 1px solid #000;
  transform: rotate(-45deg);
  display: none;
}
.first_model_page .testDrive .block .item .text,
.serviceForm .block .item .text {
  font-size: 14px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  color: #999;
}
.first_model_page .testDrive .block .item .text a,
.serviceForm .block .item .text a {
  color: #999;
  text-decoration: none;
  border-bottom: 1px solid #666;
}
.first_model_page .testDrive .block .item input,
.serviceForm .block .item input {
  display: none;
}
.first_model_page .testDrive .block .item input:checked ~ .icon,
.serviceForm .block .item input:checked ~ .icon {
  background-color: #FFED00;
  border-color: #FFED00;
}
.first_model_page .testDrive .block .item input:checked ~ .icon::after,
.serviceForm .block .item input:checked ~ .icon::after {
  display: block;
}
.first_model_page .remoteControl {
  background-color: #F8F8F8;
  margin-bottom: 60px;
}
.first_model_page .remoteControl .block {
  display: flex;
  flex-wrap: wrap;
  padding: 40px 0;
  gap: 40px 0;
}
@media (max-width: 992px) {
  .first_model_page .remoteControl .block {
    padding: 30px 0;
  }
}
.first_model_page .remoteControl .block .left {
  width: 50%;
  padding-right: 45px;
}
@media (max-width: 992px) {
  .first_model_page .remoteControl .block .left {
    width: 100%;
    padding-right: 0;
  }
}
.first_model_page .remoteControl .block .left .title {
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%; /* 35.2px */
  text-transform: uppercase;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .first_model_page .remoteControl .block .left .title {
    font-size: 28px;
    margin-bottom: 30px;
  }
}
@media (max-width : 578px) {
  .first_model_page .remoteControl .block .left .title {
    font-size: 24px;
    margin-bottom: 20px;
  }
}
.first_model_page .remoteControl .block .left .description {
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 110%; /* 19.8px */
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .first_model_page .remoteControl .block .left .description {
    font-size: 16px;
    margin-bottom: 30px;
  }
}
@media (max-width : 578px) {
  .first_model_page .remoteControl .block .left .description {
    margin-bottom: 20px;
  }
}
.first_model_page .remoteControl .block .left .main_btn {
  max-width: 600px;
}
.first_model_page .remoteControl .block .right {
  width: 50%;
  text-align: right;
  padding-left: 20px;
}
@media (max-width: 992px) {
  .first_model_page .remoteControl .block .right {
    width: 100%;
  }
  .first_model_page .remoteControl .block .right img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}
.first_model_page .downloader {
  margin-bottom: 120px;
}
@media (max-width: 992px) {
  .first_model_page .downloader {
    margin-bottom: 100px;
  }
}
@media (max-width : 578px) {
  .first_model_page .downloader {
    margin-bottom: 80px;
  }
}
.first_model_page .downloader .block {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 6px 0;
}
.first_model_page .downloader .block .block_item {
  width: calc(33.3333% - 7px);
}
@media (max-width : 578px) {
  .first_model_page .downloader .block .block_item {
    width: 100%;
  }
}
.first_model_page .downloader .block .block_item a {
  background-color: #f8f8f8;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 25px;
  flex-direction: column;
  gap: 24px 0;
  text-decoration: none;
}
@media (max-width : 578px) {
  .first_model_page .downloader .block .block_item a {
    flex-direction: row;
    justify-content: start;
    gap: 0 24px;
  }
}
.first_model_page .downloader .block .block_item a .text {
  color: #000;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 110%; /* 19.8px */
  text-transform: uppercase;
}

.second_model_page .exterior .block .block_item {
  width: calc(50% - 13px);
}
@media (max-width: 992px) {
  .second_model_page .exterior .block .block_item {
    width: 100%;
  }
}
.second_model_page .interior .block {
  margin-bottom: 130px;
}
@media (max-width: 992px) {
  .second_model_page .interior .block {
    margin-bottom: 80px;
  }
}
@media (max-width : 578px) {
  .second_model_page .interior .block {
    margin-bottom: 60px;
  }
}
.second_model_page .interior .block .block_item {
  width: calc(50% - 16px);
}
@media (max-width: 768px) {
  .second_model_page .interior .block .block_item {
    width: 100%;
  }
}
.second_model_page .interior .block_bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 30px 0;
}
.second_model_page .interior .block_bottom .left {
  width: calc(50% - 16px);
}
@media (max-width: 992px) {
  .second_model_page .interior .block_bottom .left {
    width: 100%;
  }
}
.second_model_page .interior .block_bottom .left img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.second_model_page .interior .block_bottom .right {
  width: calc(50% - 50px);
  display: flex;
  flex-direction: column;
  gap: 40px 0;
}
@media (max-width: 992px) {
  .second_model_page .interior .block_bottom .right {
    width: 100%;
  }
}
.second_model_page .interior .block_bottom .right .title {
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%; /* 35.2px */
  text-transform: uppercase;
}
.second_model_page .interior .block_bottom .right .description {
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: 140%; /* 25.2px */
}

footer {
  padding: 40px 20px;
  background-color: #010101;
}
footer .block .top {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 0;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 60px;
}
footer .block .top .logo {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 40px;
  align-items: center;
}
@media (max-width: 768px) {
  footer .block .top .logo {
    width: 100%;
  }
}
footer .block .top .logo .text {
  color: #FFF;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}
@media (max-width: 768px) {
  footer .block .top .logo .text {
    width: 100%;
    font-size: 16px;
  }
}
footer .block .top .phone {
  color: #FFF;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  text-decoration: none;
}
footer .block .middle {
  color: rgba(255, 255, 255, 0.6);
  font-feature-settings: "sups" on;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%; /* 16px */
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
footer .block .middle a {
  color: rgba(255, 255, 255, 0.6);
  font-feature-settings: "sups" off;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
}
footer .block .bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px 0;
}
footer .block .bottom .left {
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%; /* 12px */
}
@media (max-width : 578px) {
  footer .block .bottom .left {
    width: 100%;
  }
}
footer .block .bottom .right {
  color: #FFF;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%; /* 12px */
  text-decoration: none;
  border-bottom: 1px solid #fff;
}

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



.dealer-info .block {
  padding: 60px 0 20px 0;
}

.dealer-info__text {
    font-size: 20px;
    margin-bottom: 10px;
}
.dealer-info__item {
    font-size: 20px;
}
.dealer-info__list {
    padding-left: 40px;
    margin-bottom: 20px;
}

.about-page .block,
.contacts-page .block {
  padding: 0 0 20px 0;
}
.about-page__text {
    font-size: 20px;
    margin-bottom: 10px;  
}
.about-page__item {
    font-size: 20px;
}
.about-page__list {
    padding-left: 40px;
    margin-bottom: 20px;
}
.about-page__btn-inner {
    margin-top: 40px;
}
.about-page__btn-inner .main_btn{
    width: 380px;
}

.about-page .block .title,
.contacts-page .block .title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 12px;
}
@media (max-width: 992px) {
  .about-page .block .title,
  .contacts-page .block .title {
    font-size: 50px;
  }
}

.breadcrumbs {
    margin: 20px 0;
}

.breadcrumbs__item:not(.breadcrumbs__item--current) {
    color: #000;
}
.breadcrumbs__item--current {
}
@media(max-width: 767px){
    .breadcrumbs {
        margin: 10px 0;
    }
}


