@font-face {
  font-family: "Roboto";
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/Roboto-Regular.woff") format("woff"), url("../fonts/Roboto-Regular.woff2") format("woff2"), url("../fonts/Roboto-Regular.ttf") format("truetype"), url("../fonts/Roboto-Regular.eot") format("embedded-opentype");
}
@font-face {
  font-family: "Roboto";
  font-weight: 500;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/Roboto-Medium.woff") format("woff"), url("../fonts/Roboto-Medium.woff2") format("woff2"), url("../fonts/Roboto-Medium.ttf") format("truetype"), url("../fonts/Roboto-Medium.eot") format("embedded-opentype");
}
@font-face {
  font-family: "Roboto";
  font-weight: 600;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/Roboto-SemiBold.woff") format("woff"), url("../fonts/Roboto-SemiBold.woff2") format("woff2"), url("../fonts/Roboto-SemiBold.ttf") format("truetype"), url("../fonts/Roboto-SemiBold.eot") format("embedded-opentype");
}
@font-face {
  font-family: "Roboto";
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/Roboto-Bold.woff") format("woff"), url("../fonts/Roboto-Bold.woff2") format("woff2"), url("../fonts/Roboto-Bold.ttf") format("truetype"), url("../fonts/Roboto-Bold.eot") format("embedded-opentype");
}
@font-face {
  font-family: "Roboto";
  font-weight: 800;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/Roboto-ExtraBold.woff") format("woff"), url("../fonts/Roboto-ExtraBold.woff2") format("woff2"), url("../fonts/Roboto-ExtraBold.ttf") format("truetype"), url("../fonts/Roboto-ExtraBold.eot") format("embedded-opentype");
}
body {
  font-family: "Roboto", "Arial", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin: 0;
  padding: 0;
  width: 100%;
  height: auto;
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #393939;
  background-color: #ffffff;
}
@media (max-width: 650px) {
  body {
    font-size: 14px;
    line-height: 22px;
  }
}
img {
  max-width: 100%;
  height: auto;
}
a {
  text-decoration: none;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}
*,
*::after,
*::before {
  box-sizing: border-box;
}
ul,
ol {
  padding: 0;
  margin: 0;
}
ul li {
  list-style: none;
}
input,
textarea,
select {
  outline: none;
  font-family: "Roboto", "Arial", sans-serif;
}
fieldset {
  padding: 0;
  margin: 0;
  border: none;
}
h1,
h2,
h3,
h4,
h5 {
  margin: 0;
}
p {
  padding: 0;
  margin: 0;
}
.select {
  background: #ffffff;
  border: 1px solid #DDDFE7;
  border-radius: 6px;
  font-size: 16px;
  color: #393939;
  padding: 0;
  margin: 0;
  width: 100%;
  padding: 16px 18px;
}
.select.error {
  border: 1px solid #007DFD;
}
@media (max-width: 650px) {
  .select {
    padding: 17px 18px;
    font-size: 14px;
  }
}
.select__grey {
  background: #F2F3F7;
  padding: 20px 24px;
  border-radius: 12px;
}
input.error {
  border: 1px solid #007DFD;
}
.button {
  border: none;
  font-family: "Roboto", "Arial", sans-serif;
  font-size: 24px;
  line-height: normal;
  font-weight: 400;
  color: #ffffff;
  background-color: transparent;
  padding: 0;
  cursor: pointer;
  border-radius: 40px;
  padding: 14px 36px;
}
.button__blue {
  position: relative;
  z-index: 0;
}
.button__blue::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  opacity: 1;
  border-radius: 40px;
  background: linear-gradient(to right, #007DFD 0%, #004B97 100%);
  transition: opacity 0.3s ease;
}
.button__blue::after {
  content: "";
  position: absolute;
  opacity: 0;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  border-radius: 40px;
  background: linear-gradient(to right, #2D69A6 0%, #003264 100%);
  transition: opacity 0.3s ease;
}
.button__blue:hover::before {
  opacity: 0;
}
.button__blue:hover::after {
  opacity: 1;
}
.button__black {
  background-color: #393939;
  transition: background-color 0.3s ease;
}
.button__black:hover {
  background-color: #007DFD;
}
.button__white {
  background-color: #D0E4F9;
  color: #393939;
  transition: background-color 0.3s ease;
}
.button__white:hover {
  background-color: #fff;
}
@media (max-width: 650px) {
  .button__black {
    font-size: 20px;
  }
  .button__white {
    font-size: 20px;
  }
  .button {
    font-size: 14px;
    padding: 12px 26px;
  }
}
.wrapper {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 60px;
}
@media (max-width: 1000px) {
  .wrapper {
    padding: 0 20px;
  }
}
.title__h2 {
  font-size: 32px;
  line-height: normal;
  font-weight: 600;
}
.title__h3 {
  font-size: 26px;
  line-height: normal;
  font-weight: 600;
}
.title__h5 {
  font-size: 22px;
  line-height: normal;
  font-weight: 700;
}
@media (max-width: 650px) {
  .title__h2 {
    font-size: 24px;
  }
  .title__h3 {
    font-size: 20px;
    font-weight: 500;
  }
  .title__h5 {
    font-size: 22px;
    line-height: normal;
    font-weight: 700;
  }
}
main.product,
main.model {
  background-color: #F8F8F8;
}
.custom__checkbox {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}
.custom__checkbox-input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.custom__checkbox-input:checked + .custom__checkbox-label:after {
  opacity: 1;
}
.custom__checkbox-label {
  position: relative;
  padding-left: 32px;
  cursor: pointer;
  font-size: 16px;
  line-height: 24px;
  user-select: none;
  display: inline-block;
}
.custom__checkbox-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 18px;
  height: 18px;
  background-image: url('../image/icons/checkbox-dark.svg');
  background-repeat: no-repeat;
  background-size: contain;
  box-sizing: border-box;
}
.custom__checkbox-label:after {
  content: "";
  position: absolute;
  left: 5px;
  top: 8px;
  width: 18px;
  height: 18px;
  background-image: url('../image/icons/marker-dark.svg');
  background-repeat: no-repeat;
  box-sizing: border-box;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.custom__checkbox--red {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url('../image/icons/checkbox-dark.svg');
  background-repeat: no-repeat;
  background-size: contain;
  box-sizing: border-box;
  position: relative;
}
.custom__checkbox--red::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 6px;
  width: 18px;
  height: 18px;
  background-image: url('../image/icons/marker-blue.svg');
  background-repeat: no-repeat;
  box-sizing: border-box;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.custom__checkbox--white {
  display: inline-block;
  width: 18px;
  height: 18px;
  background-image: url('../image/icons/checkbox-white.svg');
  background-repeat: no-repeat;
  background-size: contain;
  box-sizing: border-box;
  position: relative;
  margin-right: 10px;
}
.custom__checkbox--white::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  background-image: url('../image/icons/checkbox-white-checked.svg');
  background-repeat: no-repeat;
  box-sizing: border-box;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.custom__checkbox--dark {
  display: inline-block;
  width: 18px;
  height: 18px;
  background-image: url('../image/icons/checkbox-dark.svg');
  background-repeat: no-repeat;
  background-size: contain;
  box-sizing: border-box;
  position: relative;
  margin-right: 10px;
}
.custom__checkbox--dark::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  background-image: url('../image/icons/checkbox-full-dark.svg');
  background-repeat: no-repeat;
  box-sizing: border-box;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.custom__select {
  position: relative;
}
.custom__select-header {
  background-color: #F2F3F7;
  border-radius: 12px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  text-transform: uppercase;
}
.custom__select-header svg {
  margin-left: auto;
  transform: rotate(0);
  transition: transform 0.3s ease;
}
.custom__select-header.active {
  border-radius: 12px 12px 0 0;
}
.custom__select-header.active svg {
  transform: rotate(180deg);
}
.custom__select-body {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #DDDFE7;
  opacity: 0;
  pointer-events: none;
  z-index: 10;
  transition: opacity 0.3s ease, border 0.3s ease, border-radius 0.3s ease;
  position: absolute;
  top: 100%;
  width: 100%;
}
.custom__select-body.active {
  opacity: 1;
  pointer-events: all;
  border-radius: 0 0 12px 12px;
  border-top: none;
}
.custom__select-list {
  overflow-y: auto;
  max-height: 290px;
  background-color: #ffffff;
}
.custom__select-list::-webkit-scrollbar {
  width: 0;
  background: transparent;
}
.custom__select-list::-webkit-scrollbar-thumb {
  background: transparent;
  border-radius: 0;
}
.custom__select-list::-webkit-scrollbar-track {
  background: transparent;
}
.custom__select-item .catalog-nav__button {
  text-transform: uppercase;
  padding: 16px 0;
  width: 100%;
  border-radius: 0;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: background-color 0.3s ease;
}
.custom__select-item .catalog-nav__button:hover {
  background-color: #DDDFE7;
  border: none;
  color: #393939;
}
.custom__select-item .catalog-nav__button.active {
  background-color: #DDDFE7;
  color: #393939;
  border: none;
}
.custom__select-item:not(:last-child) .catalog-nav__button {
  border-bottom: 1px solid #DDDFE7;
}
.header {
  position: relative;
  z-index: 100;
}
.header__main {
  padding: 23px 0 31px;
  background-color: transparent;
  box-shadow: 0 0 0 transparent;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: background-color 0.3s ease-out, box-shadow 0.3s ease;
}
.header__main.scroll {
  background-color: #ffffff;
  box-shadow: 0 1px 2px rgba(113, 146, 180, 0.88);
}
.header__main-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 1500px) {
  .header__main {
    padding: 23px 0 26px;
  }
  .header__main-content {
    flex-wrap: wrap;
    gap: 26px;
  }
}
@media (max-width: 750px) {
  .header__top {
    display: none;
  }
  .header__main {
    top: 0;
    padding: 12px 0;
  }
  .header__main-content {
    gap: 14px;
    position: relative;
  }
}
@media (max-width: 870px) {
  .header__top-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: flex-start;
    padding: 0 24px 14px;
    background-color: #ffffff;
  }
  .header__top-item a {
    font-size: 12px;
    color: #393939;
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .header__top-item a svg path {
    width: 14px;
  }
}
.language {
  padding: 2px;
  border-radius: 40px;
  background-color: #fff;
  display: flex;
}
.language__button {
  text-transform: uppercase;
  font-size: 16px;
  padding: 8px 16px;
  border-radius: 40px;
  color: #007DFD;
  background-color: transparent;
  transition: color 0.3s ease, background-color 0.3s ease;
}
.language__button:first-child {
  margin-right: 4px;
}
.language__button.active {
  background-color: #007DFD;
  color: #fff;
}
.language__button.active:hover {
  background-color: #007DFD;
}
.language__button:hover {
  background-color: #393939;
  color: #ffffff;
}
@media (max-width: 870px) {
  .language {
    display: none;
  }
}
@media (max-width: 650px) {
  .language {
    padding: 2px;
    background-color: #ffffff;
  }
  .language__button {
    text-transform: uppercase;
    font-size: 14px;
    line-height: 22px;
    padding: 9px 18px;
  }
}
.logo {
  display: flex;
}
.logo__header img {
  width: 148px;
}
@media (max-width: 1000px) {
  .logo__header img {
    width: 132px;
  }
}
@media (max-width: 870px) {
  .logo__header img {
    width: 180px;
  }
}
.main-nav__list {
  display: flex;
  align-items: center;
  gap: 50px;
}
.main-nav__item {
  position: relative;
}
.main-nav__item.active .main-nav__link {
  font-weight: 600;
}
.main-nav__item.active .main-nav__link img {
  transform: rotate(180deg);
}
.main-nav__link {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 16px;
  font-weight: 400;
  color: #393939;
  cursor: pointer;
  transition: font-weight 0.3s ease;
}
.main-nav__link:hover {
  font-weight: 600;
}
.main-nav__link img {
  transform: rotate(0);
  transition: transform 0.3s ease;
}
.main-nav__sublist {
  position: absolute;
  top: calc(100% + 30px);
  left: 0;
  padding: 16px;
  background-color: #ffffff;
  border: 1px solid #F2F3F7;
  border-radius: 6px;
  width: 190px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.main-nav__sublist::before {
  content: '';
  position: absolute;
  top: -30px;
  left: 0;
  right: 0;
  height: 30px;
  background: transparent;
}
.main-nav__sublist.active {
  pointer-events: auto;
  opacity: 1;
}
.main-nav__sublist--models {
  width: 680px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.main-nav__sublist--models .main-nav__subitem {
  width: calc(25% - 12px);
  text-align: center;
  margin-bottom: 0;
  border-radius: 6px;
  background-color: #ffffff;
  transition: background-color 0.3s ease;
  padding: 6px 0;
}
.main-nav__sublist--models .main-nav__subitem:not(:last-child) {
  margin-bottom: 0;
}
.main-nav__sublist--models .main-nav__subitem:hover {
  background-color: #D0E4F9;
}
.main-nav__sublist--models a:hover {
  color: #393939;
}
.main-nav__subitem:not(:last-child) {
  margin-bottom: 16px;
}
.main-nav__subitem a {
  display: block;
  font-weight: 400;
  transition: font-weight 0.3s ease;
  font-weight: 400;
  color: #393939;
}
.main-nav__subitem a:hover {
  font-weight: 600;
}
@media (max-width: 1435px) {
  .main-nav {
    order: 1;
    margin: 0 auto;
  }
}
@media (max-width: 1000px) {
  .main-nav__sublist {
    top: calc(100% + 41px);
  }
  .main-nav__sublist--models {
    width: 680px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
  }
  .main-nav__sublist--models .main-nav__subitem {
    width: calc(25% - 12px);
    text-align: center;
    margin-bottom: 0;
    border-radius: 4px;
    background-color: #ffffff;
    transition: background-color 0.3s ease;
    padding: 6px 0;
    border: none;
  }
  .main-nav__sublist--models .main-nav__subitem:not(:last-child) {
    margin-bottom: 0;
  }
  .main-nav__sublist--models .main-nav__subitem:hover {
    background-color: #F2F3F7;
  }
  .main-nav__sublist--models a:hover {
    color: #393939;
  }
}
@media (max-width: 750px) {
  .main-nav {
    margin-top: 16px;
  }
  .main-nav__list {
    gap: 20px;
  }
}
@media (max-width: 870px) {
  .main-nav {
    display: none;
  }
  .main-nav__list {
    gap: 0;
    flex-direction: column;
    padding: 0 22px;
  }
  .main-nav__item {
    width: 100%;
    padding: 18px 0;
    border-bottom: 1px solid #F2F3F7;
  }
  .main-nav__item:last-child {
    border-bottom: none;
  }
  .main-nav__item.active {
    padding: 18px 0 0;
  }
  .main-nav__link {
    gap: 10px;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    justify-content: center;
  }
  .main-nav__sublist {
    padding: 0;
    position: relative;
    top: unset;
    left: unset;
    border: none;
    border-radius: 0;
    max-height: 0;
    transition: max-height 0.5s ease, opacity 0.5s ease;
  }
  .main-nav__sublist.active {
    max-height: 710px;
    z-index: 1000;
    margin-top: 18px;
    width: 100%;
  }
  .main-nav__sublist--models {
    width: 100%;
    gap: 4px;
    padding: 0;
    border: none;
  }
  .main-nav__sublist--models .main-nav__subitem {
    width: calc(50% - 10px);
  }
  .main-nav__sublist--models .main-nav__subitem:nth-child(odd) {
    margin-right: 16px;
  }
  .main-nav__subitem {
    border-top: 1px solid #F2F3F7;
    padding: 18px 0;
    margin-bottom: 0;
    text-align: center;
  }
  .main-nav__subitem:not(:last-child) {
    margin-bottom: 0;
  }
  .main-nav__subitem a {
    font-weight: 400;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.user-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
.user-nav__phone {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 16px;
  padding: 8px 14px;
  border-radius: 40px;
  color: #FFFFFF;
  background-color: #393939;
  transition: background-color 0.3s ease;
}
@media (max-width: 870px) {
  .user-nav__phone {
    font-size: 14px;
    gap: 10px;
    padding: 10px;
  }
}
.user-nav__phone:hover {
  background-color: #007DFD;
}
.user-nav__phone-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
}
@media (max-width: 750px) {
  .user-nav__phone-icon {
    width: 24px;
    height: 24px;
  }
}
@media (max-width: 870px) {
  .user-nav {
    width: auto;
    margin-left: auto;
  }
  .user-nav__phone {
    gap: 8px;
  }
  .user-nav__phone-icon {
    width: 22px;
    height: 22px;
  }
  .user-nav__phone-icon img {
    width: 11px;
  }
}
@media (max-width: 500px) {
  .user-nav {
    width: 100%;
    order: 1;
  }
}
.mob-menu {
  display: none;
}
.mob-menu__toggle {
  display: none;
}
@media (max-width: 870px) {
  .mob-menu {
    display: block;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    height: 100vh;
    opacity: 0;
    z-index: 10;
    background-color: rgba(0, 0, 0, 0.4);
    pointer-events: none;
    transition: opacity 0.3s ease, top 0.3s ease;
  }
  .mob-menu.active {
    opacity: 1;
    pointer-events: all;
  }
  .mob-menu__wrapper {
    background-color: #D0E4F9;
    border: 1px solid #D0E4F9;
    border-radius: 16px;
    max-height: 68vh;
    height: 100%;
    overflow-y: auto;
    position: absolute;
    top: 20%;
    margin: 0 20px;
  }
  .mob-menu__wrapper::-webkit-scrollbar {
    width: 0;
    background: transparent;
  }
  .mob-menu__wrapper::-webkit-scrollbar-thumb {
    background: transparent;
    border-radius: 0;
  }
  .mob-menu__wrapper::-webkit-scrollbar-track {
    background: transparent;
  }
  .mob-menu__toggle {
    display: flex;
    padding: 0;
  }
  .mob-menu__toggle.active .mob-menu__burger {
    opacity: 0;
    width: 0;
    height: 0;
  }
  .mob-menu__toggle.active .mob-menu__close {
    opacity: 1;
    width: auto;
    height: auto;
  }
  .mob-menu .main-nav {
    display: block;
    margin-top: 0;
    padding: 16px 0 22px;
    background-color: #ffffff;
  }
  .mob-menu .language {
    display: flex;
  }
  .mob-menu__language {
    padding: 14px 20px;
    display: flex;
    justify-content: center;
  }
  .mob-menu__close {
    opacity: 0;
    width: 0;
    height: 0;
    transition: opacity 0.3s ease, width 0.3s ease, height 0.3s ease;
  }
  .mob-menu__burger {
    opacity: 1;
    width: auto;
    height: auto;
    transition: opacity 0.3s ease, width 0.3s ease, height 0.3s ease;
  }
}
.home__products {
  text-align: center;
  margin-bottom: 45px;
}
.home__products-title {
  text-align: center;
}
.home__products-button {
  padding: 6px 32px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  line-height: 32px;
  font-weight: 400;
}
.home__products-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.home__products-name {
  color: #393939;
  font-weight: 700;
  display: block;
}
.home__products-slider {
  position: relative;
  overflow: hidden;
  padding: 35px 0;
}
.home__products-navigation {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translate(0, -50%);
  z-index: 1;
}
.home__products-navigation .home__products-button--prev {
  position: absolute;
  top: 0;
  left: 0;
}
.home__products-navigation .home__products-button--next {
  position: absolute;
  top: 0;
  right: 0;
}
.home__products-button-slide svg path {
  transition: fill 0.3s ease;
  fill: #ACACAC;
}
.home__products-button-slide:hover svg path {
  fill: #007DFD;
}
.home__products-link {
  display: block;
  position: relative;
}
.home__products-link::before {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  width: 40%;
  height: 40%;
  transform: translate(-50%, -50%);
  background: rgba(0, 125, 253, 0.6);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 50%;
  filter: blur(60px);
  z-index: -1;
}
.home__products-link:hover::before {
  opacity: 1;
}
.home__info-block {
  margin-bottom: 80px;
}
.home__info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 80px;
}
.home__info-form {
  width: 570px;
}
.home__info-title {
  margin-bottom: 42px;
}
.home__info p {
  margin-bottom: 18px;
}
.home__text {
  width: calc(100% - 654px);
}
.home__testdrive {
  padding: 26px;
  background-color: #F2F3F7;
  border-radius: 6px;
  text-align: center;
}
.home__testdrive-title {
  margin-bottom: 16px;
}
.home__testdrive-subtitle {
  margin-bottom: 17px;
  font-size: 24px;
  font-weight: 500;
  color: #007DFD;
}
.home__testdrive-tip {
  margin-bottom: 24px;
}
.home__testdrive-tip span {
  color: #007DFD;
}
@media (max-width: 1000px) {
  .home__products {
    margin-bottom: 40px;
  }
  .home__info-block {
    margin-bottom: 40px;
  }
  .home__info {
    flex-direction: column;
    margin-bottom: 40px;
    gap: 30px;
  }
  .home__info-form {
    width: 100%;
  }
  .home__info-block img {
    height: 840px;
    width: 100%;
    object-fit: cover;
  }
  .home__info-title {
    margin-bottom: 30px;
  }
  .home__text {
    width: 100%;
  }
}
@media (max-width: 650px) {
  .home__products-button {
    padding: 12px;
    font-size: 14px;
  }
  .home__info-block img {
    height: 520px;
  }
  .home__info {
    gap: 40px;
  }
  .home__info-title {
    margin-bottom: 14px;
  }
  .home__testdrive {
    padding: 35px 26px;
  }
  .home__testdrive-subtitle {
    margin-bottom: 14px;
    font-size: 22px;
  }
}
.home-testdrive__group {
  margin-bottom: 16px;
  position: relative;
}
.home-testdrive__input {
  width: 100%;
  padding: 20px 32px;
  border: 1px solid #DDDFE7;
  border-radius: 6px;
  font-size: 16px;
  color: #393939;
}
.home-testdrive__input--phone:focus-within {
  padding: 20px 80px;
}
.home-testdrive__code {
  position: absolute;
  top: 18px;
  left: 32px;
  font-size: 16px;
  color: #393939;
  opacity: 0;
  width: 0;
  transition: opacity 0.3s ease, width 0.3s ease;
}
.home-testdrive__group--phone:focus-within .home-testdrive__code {
  opacity: 1;
  width: auto;
}
.home-testdrive__submit {
  margin-top: 8px;
  padding: 15px;
  display: block;
  width: 100%;
}
.home-testdrive__label {
  text-align: left;
}
.home-testdrive__label a {
  color: #007DFD;
}
@media (max-width: 650px) {
  .home-testdrive__submit {
    margin-top: 24px;
    padding: 10px 0;
    font-size: 20px;
  }
}
.brands-slider {
  max-width: 1920px;
  margin: 0 auto;
  margin-bottom: 80px;
}
.brands-slider__slider {
  position: relative;
}
.brands-slider .swiper-wrapper {
  overflow: hidden;
}
.brands-slider__header {
  background-color: #D0E4F9;
  width: 100%;
  height: 70px;
}
.brands-slider__slide {
  display: flex;
  flex-wrap: wrap;
  height: auto;
}
.brands-slider__title {
  padding: 16px 60px;
  width: fit-content;
}
.brands-slider__info {
  width: 40%;
  height: calc(100% - 70px);
  padding: 46px 60px 0 46px;
  background-color: #F1F1F1;
}
.brands-slider__info-desc {
  margin-bottom: 24px;
}
.brands-slider__chars {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 38px;
}
.brands-slider__chars-item {
  padding: 10px;
  border-radius: 40px;
  border: 1px solid #D3D3D3;
  display: flex;
  align-items: center;
  gap: 6px;
}
.brands-slider__image {
  width: 60%;
  height: calc(100% - 70px);
}
.brands-slider__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left;
}
.brands-slider__navigation {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  display: flex;
  align-items: center;
}
.brands-slider__button {
  width: 68px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.brands-slider__button svg path {
  fill: #007DFD;
}
.brands-slider__button:hover {
  background-color: #007DFD;
}
.brands-slider__button:hover svg path {
  fill: #fff;
}
.brands-slider__counter {
  margin-right: 44px;
  font-size: 24px;
  color: #838383;
}
.brands-slider__current {
  font-size: 32px;
  color: #393939;
}
.brands-slider__link {
  display: inline-block;
  margin-bottom: 40px;
}
@media (max-width: 1000px) {
  .brands-slider {
    margin-bottom: 40px;
  }
  .brands-slider__header {
    height: auto;
  }
  .brands-slider__title {
    padding: 9px 20px;
  }
  .brands-slider__info {
    width: 100%;
    height: auto;
    padding: 30px 20px;
  }
  .brands-slider__image {
    width: 100%;
    height: auto;
  }
  .brands-slider__button {
    width: 68px;
    height: 56px;
  }
  .brands-slider__link {
    margin-bottom: 20px;
  }
}
@media (max-width: 870px) {
  .brands-slider {
    margin-bottom: 32px;
  }
  .brands-slider__title {
    padding: 14px 20px 0;
  }
  .brands-slider__counter {
    margin-right: 10px;
    font-size: 14px;
  }
  .brands-slider__chars {
    gap: 20px;
  }
  .brands-slider__current {
      font-size: 22px;
  }
}
.info-block {
  position: relative;
  text-align: center;
  overflow: hidden;
}
.info-block .news-slider__date {
  right: 60px;
  left: unset;
  bottom: 0;
}
.info-block__text {
  position: absolute;
  bottom: 56px;
  left: 50%;
  transform: translate(-50%, 0);
  text-align: center;
  color: #fff;
  z-index: 1;
  width: 100%;
  max-width: 100%;
  padding: 0 20px;
}
.info-block__title {
  font-size: 60px;
  line-height: normal;
  font-weight: 800;
  max-width: 1300px;
  margin: 0 auto;
}
.info-block__text p {
  font-size: 32px;
  line-height: normal;
  font-weight: 600;
  padding: 0 30px;
}
@media (max-width: 1300px) {
  .info-block__title {
    font-size: 24px;
  }
  .info-block__text p {
    font-size: 20px;
  }
}
@media (max-width: 650px) {
  .info-block__title {
    font-size: 22px;
    line-height: normal;
  }
  .info-block__text p {
      font-size: 14px;
      line-height: 26px;
  }
}
.main-slider {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
.main-slider picture,
.main-slider picture img {
  display: block;
  width: 100%;
  height: 100%;
  vertical-align: top;
}
.main-slider__slide {
  position: relative;
}
.main-slider__slide picture {
  display: block;
  width: 100%;
  height: 100%;
}
.main-slider__slide picture img {
  object-fit: cover;
}
.swiper-slide__content {
  margin: 142px 0 250px;
  padding: 100px 0 115px;
  position: absolute;
  top: 0;
  width: 100%;
}
.swiper-slide__content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 700px;
  height: 100%;
  background: rgba(0, 125, 253, 0.32);
  border-radius: 50%;
  filter: blur(200px);
  z-index: 0;
}
.main-slider__bottom {
  background-color: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(20px);
  position: absolute;
  top: 100%;
  transform: translateY(-100%);
  left: 0;
  z-index: 1;
  width: 100%;
}
.main-slider__bottom .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.main-slider__bottom-text {
  font-size: 14px;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  gap: 8px;
}
.main-slider__bottom-info {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: 50%;
}
.main-slider__navigation {
  display: flex;
  align-items: center;
}
.main-slider__button {
  width: 68px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.main-slider__button:hover {
  background-color: rgba(0, 0, 0, 0.6);
}
.main-slider .swiper-horizontal > .swiper-pagination-bullets,
.main-slider .swiper-pagination-bullets.swiper-pagination-horizontal,
.main-slider .swiper-pagination-custom,
.main-slider .swiper-pagination-fraction {
  position: relative;
  width: auto;
  bottom: 0;
  top: 0;
}
.main-slider .swiper-pagination-bullet {
  width: 66px;
  height: 4px;
  background-color: #D3D3D3;
  border-radius: 40px;
  opacity: 1;
}
.main-slider .swiper-pagination-bullet-active {
  background-color: #ffffff;
}
.main-slider__link img {
  border-radius: 20px;
}
.page-nav {
  margin: 40px 0;
}
.page-nav__list {
  display: flex;
  gap: 30px;
  justify-content: space-between;
}
.page-nav__item {
  width: calc(33.33% - 20px);
}
.page-nav__button {
  width: 100%;
  padding: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  background-color: #F1F1F1;
  border: 1px solid #ACACAC;
  border-radius: 20px;
  font-size: 20px;
  line-height: 34px;
  color: #393939;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}
.page-nav__button img {
  width: 34px;
}
.page-nav__button:hover {
  background-color: #D0E4F9;
  border: 1px solid #007DFD;
}
.page-nav__button.active {
  background-color: #D0E4F9;
  border: 1px solid #007DFD;
}
@media (max-width: 1500px) {
  .page-nav__list {
    gap: 9px;
  }
  .page-nav__button {
    padding: 12px 20px;
    border-radius: 8px;
  }
  .page-nav__icon {
    width: 46px;
  }
}
@media (max-width: 1000px) {
  .page-nav {
    margin: 14px 0 40px;
  }
  .page-nav__list {
    gap: 9px;
  }
  .page-nav__item {
    width: calc(33.33% - 5px);
  }
  .page-nav__button {
    padding: 12px 10px;
    gap: 12px;
    font-size: 14px;
    border-radius: 8px;
  }
  .page-nav__icon {
    width: 30px;
  }
}
@media (max-width: 650px) {
  .page-nav {
    margin: 16px 0 40px;
  }
  .page-nav__list {
    flex-wrap: wrap;
    gap: 14px;
  }
  .page-nav__item {
    width: calc(50% - 10px);
  }
  .page-nav__item:nth-child(odd) {
    margin-right: 6px;
  }
  .page-nav__button {
    padding: 12px 8px;
  }
}
.home__content {
  margin: 80px 0;
  position: relative;
  text-align: center;
}
.home__content::before {
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 125, 253, 0.16);
  position: absolute;
  border-radius: 50%;
  filter: blur(200px);
  z-index: -1;
}
.home__content-title {
  margin-bottom: 48px;
  font-size: 32px;
  line-height: normal;
  font-weight: 600;
}
.home__content-text {
  line-height: 32px;
}
.home__features {
  margin-bottom: 80px;
}
.home__features-header {
  color: #393939;
  margin-bottom: 48px;
  font-size: 32px;
  font-weight: 600;
  text-align: center;
}
.home__features-list {
  display: flex;
  gap: 30px;
  justify-content: space-between;
}
.home__features-item {
  width: calc(33.33% - 20px);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  display: block;
}
.home__features-item picture,
.home__features-item picture img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home__features-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
}
.home__features-item picture::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #007DFD;
  mix-blend-mode: soft-light;
  pointer-events: none;
  z-index: 1;
}
.home__features-content img {
  padding: 25px 0;
  margin: 0 auto;
}
.home__features-title {
  color: #ffffff;
  margin-top: auto;
  padding: 16px;
  font-size: 32px;
  font-weight: 600;
  width: 100%;
  text-align: center;
  background: rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(26px);
}
@media (max-width: 1300px) {
  .home__features-content img {
    width: 100px;
  }
}
@media (max-width: 1000px) {
  .home__features {
    margin-bottom: 40px;
  }
  .home__features-header {
    margin-bottom: 40px;
  }
  .home__features-list {
    gap: 20px;
    flex-direction: column;
  }
  .home__features-item {
    width: 100%;
  }
  .home__features-content img {
    width: 147px;
    margin: auto auto;
  }
}
@media (max-width: 870px) {
  .home__features-header {
    margin-bottom: 26px;
    line-height: normal;
  }
  .home__features-content img {
    width: 56px;
    margin: auto auto;
  }
  .home__features-title {
    font-size: 14px;
    padding: 11px;
  }
}
.news-slider {
  margin-bottom: 80px;
}
.news-slider__wrapper {
  display: flex;
  gap: 30px;
}
.news-slider__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 48px;
}
.news-slider__header {
  margin-right: 88px;
}
.news-slider__link {
  padding: 6px 31px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  line-height: 32px;
}
.news-slider__link--mobile {
  display: none;
}
.news-slider__navigation {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 20px;
}
.news-slider__button {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background-color: #ffffff;
  box-shadow: 0 0 8px rgba(122, 122, 122, 0.25);
  cursor: pointer;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
.news-slider__button svg path {
  fill: #393939;
  transition: fill 0.3s ease;
}
.news-slider__button--prev svg {
  transform: rotate(180deg);
}
.news-slider__button:hover {
  background-color: #007DFD;
  box-shadow: 0 0 8px transparent;
}
.news-slider__button:hover svg path {
  fill: #ffffff;
}
.news-slider__button:active {
  background-color: #393939;
  box-shadow: 0 0 8px transparent;
}
.news-slider__button:active svg path {
  fill: #ffffff;
}
.news-slider__button.swiper-button-disabled {
  cursor: not-allowed;
}
.news-slider__button.swiper-button-disabled svg path {
  fill: #737373;
}
.news-slider__button.swiper-button-disabled:hover {
  background-color: #ffffff;
  box-shadow: 0 0 8px rgba(122, 122, 122, 0.25);
}
.news-slider__button.swiper-button-disabled:hover svg path {
  fill: #737373;
}
.news-slider__slide {
  padding: 8px;
  background-color: #F2F3F7;
  border-radius: 6px;
  color: #393939;
  text-align: center;
  display: block;
}
.news-slider__img {
  position: relative;
  margin-bottom: 16px;
}
.news-slider__img-image {
  width: 100%;
  height: 326px;
  object-fit: cover;
  border-radius: 6px;
}
.news-slider__title {
  height: 92px;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  text-align: left;
}
.news-slider__date {
  position: absolute;
  left: 8px;
  bottom: 16px;
  padding: 6px;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 6px;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 14px;
}

@media (max-width: 1500px) {
  .news-slider__title {
  height: 65px;
}
}
@media (max-width: 1000px) {
  .news-slider {
    margin-bottom: 40px;
  }
  .news-slider__slide {
    padding: 8px;
    border-radius: 12px;
  }
  .news-slider__img {
    margin-bottom: 10px;
  }
  .news-slider__img-image {
    border-radius: 12px;
    height: 280px;
  }
  .news-slider__title {
    font-size: 14px;
  }
  .news-slider__wrapper {
    flex-wrap: wrap;
  }
  .news-slider__slide {
    width: 100%;
  }
}
@media (max-width: 650px) {
  .news-slider__slide {
    border-radius: 8px;
  }
  .news-slider__img {
    margin-bottom: 14px;
  }
  .news-slider__img-image {
    border-radius: 8px;
    height: 180px;
  }
  .news-slider__title {
    height: 32px;
    line-height: normal;
    font-size: 12px;
  }
  .news-slider__link {
    padding: 10px 0;
    font-size: 20px;
    display: none;
    text-align: center;
    margin-top: 30px;
  }
  .news-slider__link--mobile {
    display: block;
  }
  .news-slider__top {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
  }
  .news-slider__header {
    margin-right: 0;
  }
  .news-slider__navigation {
    margin-left: 0;
    gap: 13px;
  }
  .news-slider__button {
    width: 30px;
    height: 30px;
    border-radius: 4px;
  }
  .news-slider__button svg {
    width: 8px;
  }
  .news-slider__date {
    padding: 6px;
    border-radius: 8px;
    gap: 6px;
    font-size: 9px;
    line-height: 14px;
  }
  .news-slider__date img {
    width: 12px;
  }
}
.product-card {
  padding: 30px 26px;
  box-shadow: 0 0 8px transparent;
  border: 1px solid #D3D3D3;
  border-radius: 12px;
  background-color: #ffffff;
  transition: box-shadow 0.3s ease;
}
.product-card:hover {
  box-shadow: 0 8px 12px rgba(174, 174, 174, 0.25);
}
.product-card:hover .product-card__img {
  transform: scale(1.2);
}
.product-card:hover .product-card__title {
  color: #007DFD;
}
.product-card__top {
  position: relative;
  margin-bottom: 30px;
  text-align: center;
  z-index: 1;
}
.product-card__top a {
  display: block;
  overflow: hidden;
}
.product-card__img {
  height: 200px;
  object-fit: contain;
  transform: scale(1);
  transition: transform 0.5s ease;
}
.product-card__sticker {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: max-content;
  transform: translate(-50%, 0);
  background-color: #D0E4F9;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
}
.product-card__labels {
  position: absolute;
  top: -14px;
  left: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.product-card__label {
  font-size: 14px;
  line-height: 26px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 14px;
  border-radius: 40px;
  color: #fff;
}
.product-card__label--hybrid {
  background: linear-gradient(to right, #32AE87 0%, #217D60 100%);
}
.product-card__label--electro {
  background: linear-gradient(to right, #BA4EDB 0%, #6E32AE 100%);
}
.product-card__label--on-hold {
  background: linear-gradient(to right, #DB4E7D 0%, #992080 100%);
}
.product-card__label--reserved {
  background: linear-gradient(to right, #DB4E7D 0%, #992080 100%);
}
.product-card__label--on-sold {
  background: linear-gradient(to right, #DB4E51 0%, #AE3234 100%);
}
.product-card__label--in-transit {
  background: linear-gradient(to right, #48B732 0%, #347F1B 100%);
}
.product-card__title {
  margin-bottom: 16px;
  text-align: left;
  color: #393939;
  transition: color 0.3s ease;
}
.product-card__price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 20px;
  height: 42px;
}
.product-card__price--old {
  color: #ACACAC;
  text-decoration: line-through;
  font-size: 24px;
  line-height: normal;
  font-weight: 700;
}
.product-card__no-stock {
  font-size: 14px;
  line-height: 26px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 40px;
  color: #fff;
  background: linear-gradient(to right, #DBB34E 0%, #AE6632 100%);
}
@media (max-width: 1650px) {
  .product-card__price--old {
    font-size: 20px;
  }
}
.product-card__price--current {
  font-size: 24px;
  line-height: normal;
  font-weight: 700;
}
@media (max-width: 1650px) {
  .product-card__price--current {
    font-size: 22px;
  }
}
.product-card__button {
  padding: 14px 0;
  display: block;
  margin-top: 24px;
  text-align: center;
}
.product-card__chars {
  display: flex;
  justify-content: space-between;
}
.product-card__chars-item {
  padding: 6px;
  border: 1px solid #D0E4F9;
  border-radius: 40px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
}
.product-card__chars-item:first-child {
  border: 1px solid #D0E4F9;
  background-color: #D0E4F9;
}
.product-card__chars-value {
  line-height: normal;
}
.product-card__chars-item:first-child .product-card__chars-value{
  color: #393939;
}
@media (max-width: 1800px) {
  .product-card__chars-value span {
    font-size: 0;
  }
}
@media (max-width: 1000px) {
  .product-card {
    padding: 12px 16px;
  }
  .product-card__img {
    height: 290px;
  }
  .product-card__chars-item {
    font-size: 10px;
  }
}
@media (max-width: 650px) {
  .product-card {
    padding: 12px 14px;
  }
  .product-card__img {
    height: 180px;
    width: 100%;
    object-fit: cover;
  }
  .product-card__chars-item {
    padding: 8px;
  }
  .product-card__top {
    margin-bottom: 20px;
  }
  .product-card__price {
    margin-bottom: 16px;
  }
  .product-card__price--old {
    font-size: 16px;
  }
  .product-card__price--current {
    font-size: 18px;
  }
  .product-card__button {
    padding: 8px;
    font-size: 14px;
  }
}
@media (max-width: 400px) {
  .product-card__chars-item {
    padding: 6px;
  }
}
.request-form {
  position: relative;
  max-width: 1600px;
  width: calc(100% - 120px);
  background-color: #ffffff;
  border-radius: 20px;
  padding: 60px 54px;
  margin: 0 60px;
  overflow-y: auto;
  height: 80vh;
}
.request-form::-webkit-scrollbar {
  width: 0;
  background: transparent;
}
.request-form::-webkit-scrollbar-thumb {
  background: transparent;
  border-radius: 0;
}
.request-form::-webkit-scrollbar-track {
  background: transparent;
}
.request-form__title {
  text-align: center;
  color: #007DFD;
  margin-bottom: 60px;
}
.request-form__form {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.request-form__block {
  width: calc(33.33% - 22px);
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.request-form__block--submit {
  width: 100%;
  margin-top: 28px;
  align-items: center;
  gap: 30px;
}
.request-form__field {
  display: flex;
  flex-direction: column;
}
.request-form__field a {
  color: #393939;
  text-decoration: underline;
}
.request-form__field-title {
  font-weight: 500;
  font-size: 24px;
  text-transform: uppercase;
  margin-bottom: 26px;
}
.request-form__field--checkbox {
  flex-direction: row;
  gap: 16px;
}
.request-form__field:last-child .request-form__input {
  margin-bottom: 0;
}
.request-form__label {
  margin-bottom: 20px;
}
.request-form__label span {
  color: #FF5353;
}
.request-form__label a {
  color: #007DFD;
  font-weight: 500;
  text-decoration: none;
}
.request-form__input {
  width: 100%;
  background-color: #F2F3F7;
  border: 1px solid #DDDFE7;
  padding: 20px 26px;
  font-weight: 500;
  border-radius: 12px;
  margin-bottom: 18px;
}
.request-form__input::placeholder {
  color: #A4A6AF;
  font-size: 16px;
  font-weight: 500;
}
.request-form__input::-webkit-input-placeholder {
  color: #A4A6AF;
  font-size: 16px;
  font-weight: 500;
}
.request-form__input::-moz-placeholder {
  color: #A4A6AF;
  font-size: 16px;
  font-weight: 500;
}
.request-form__input:-ms-input-placeholder {
  color: #A4A6AF;
  font-size: 16px;
  font-weight: 500;
}
.request-form__input::-ms-input-placeholder {
  color: #A4A6AF;
  font-size: 16px;
  font-weight: 500;
}
.request-form__submit {
  padding: 12px 72px;
}
@media (max-width: 1300px) {
  .request-form {
    padding: 40px 58px;
    margin: 0 20px;
    width: calc(100% - 40px);
  }
  .request-form__form {
    gap: 30px;
  }
  .request-form__block {
    width: 100%;
  }
  .request-form__block--submit {
    margin-top: 0;
    gap: 10px;
  }
  .request-form__field--checkbox {
    margin: 10px 0;
  }
  .request-form__label {
    margin-bottom: 12px;
  }
  .request-form__select {
    margin-bottom: 18px;
  }
  .request-form p b {
    display: block;
    margin: 48px 0 24px;
  }
}
@media (max-width: 650px) {
  .request-form {
    padding: 22px 17px;
  }
  .request-form__form {
    gap: 18px;
  }
  .request-form__label {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .request-form__title {
    margin-bottom: 22px;
  }
  .request-form p {
    font-size: 14px;
  }
  .request-form p b {
    margin: 0;
  }
  .request-form__field-title {
    font-weight: 600;
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 18px;
  }
}
.home-services {
  margin-bottom: 80px;
}
.home-services__title {
  text-align: center;
  margin-bottom: 48px;
}
.home-services__list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.home-services__item {
  width: calc(50% - 15px);
  padding: 34px 30px;
  background-color: #D0E4F9;
  border-radius: 6px;
}
.home-services__item-link {
  display: flex;
  align-items: center;
  gap: 40px;
  color: #393939;
}
.home-services__item-title {
  font-size: 24px;
  line-height: normal;
  font-weight: 700;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.home-services__item-text {
  line-height: 32px;
}
.home-services__item-content {
  width: calc(100% - 104px);
}
@media (max-width: 1000px) {
  .home-services {
    margin-bottom: 40px;
  }
  .home-services__title {
    margin-bottom: 32px;
  }
  .home-services__list {
    gap: 16px;
  }
  .home-services__item {
    width: 100%;
    padding: 18px 30px;
  }
}
@media (max-width: 500px) {
  .home-services__item-link {
    flex-direction: column;
    gap: 10px;
  }
  .home-services__item-link img {
    width: 38px;
  }
  .home-services__item-title {
    font-size: 22px;
    margin-bottom: 10px;
    text-align: center;
  }
  .home-services__item-content {
    width: 100%;
    text-align: center;
  }
}
.footer {
  position: relative;
}
.logo__footer {
  margin-bottom: 30px;
}
.footer__main {
  background-color: #F1F1F1;
  padding: 42px 0 47px;
  color: #393939;
}
.footer__main-list {
  display: flex;
  justify-content: space-between;
}
.footer__main-item {
  max-width: 460px;
  width: 100%;
}
.footer__main-item--socials {
  display: none;
}
.footer__main-item--contacts .footer__socials {
  display: flex;
}
.footer__copyright {
  background-color: #ACACAC;
  padding: 16px;
  text-align: center;
}
.footer__copyright p {
  color: #fff;
  font-size: 14px;
  line-height: 26px;
  text-transform: uppercase;
}
.footer__title {
  font-size: 24px;
  font-weight: 700;
  line-height: normal;
  color: #393939;
  text-transform: uppercase;
  margin-bottom: 26px;
}
.footer__models-item {
  margin-bottom: 12px;
}
.footer__link {
  color: #393939;
  transition: color 0.3s ease;
}
.footer__link:hover {
  color: #007DFD;
}
.footer__nav-item {
  margin-bottom: 12px;
}
.footer__contacts-item {
  margin-bottom: 12px;
}
.footer__contacts-link {
  display: flex;
  gap: 10px;
  color: #393939;
  transition: color 0.3s ease;
}
span.footer__contacts-link:hover {
  color: #393939;
}
.footer__contacts-link:hover {
  color: #007DFD;
}
.footer__contacts-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer__socials {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 52px;
}
.footer__socials-link svg path {
  fill: #DADADA;
  transition: fill 0.3s ease;
}
.footer__socials-link:hover svg path {
  fill: #007DFD;
}
@media (max-width: 1500px) {
  .footer__main-item {
    max-width: 350px;
  }
}
@media (max-width: 1000px) {
  .footer__main {
    padding: 46px 0 18px;
  }
  .footer__main-list {
    flex-wrap: wrap;
    margin-bottom: 0;
  }
  .footer__main-item {
    width: 25%;
  }
  .footer__main-item--socials {
    display: block;
    width: 100%;
    max-width: 100%;
  }
  .footer__main-item--contacts .footer__socials {
    display: none;
  }
  .footer__socials {
    justify-content: center;
    margin-top: 14px;
  }
  .footer__copyright {
    padding: 20px;
  }
}
@media (max-width: 650px) {
  .logo__footer {
    justify-content: center;
  }
  .footer__main {
    padding: 26px 0;
  }
  .footer__main-list {
    flex-direction: column;
    align-items: center;
  }
  .footer__main-item {
    width: 100%;
    text-align: center;
  }
  .footer__title {
    margin: 0 auto;
  }
  .footer__nav {
    margin: 18px 0 26px;
    text-align: center;
  }
  .footer__nav-item {
    margin-bottom: 8px;
  }
  .footer__models {
    padding-left: 0;
    margin: 18px 0 26px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer__models-item {
    margin-bottom: 8px;
  }
  .footer__contacts {
    margin: 18px 0 26px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer__contacts-item {
    margin-bottom: 18px;
  }
  .footer__contacts-link {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .footer__socials {
    margin-top: 0;
  }
  .footer__copyright {
    padding: 6px;
  }
  .footer__copyright p {
    font-size: 12px;
  }
}
.map {
  width: 100%;
  position: relative;
}
.map iframe {
  width: 100%;
  height: 520px;
  border: none;
  border-radius: 20px;
}
.map__list {
  position: absolute;
  top: 106px;
  right: 20%;
  background-color: #ffffff;
  border-radius: 20px;
  padding: 26px;
  box-shadow: 0 0 8px rgba(122, 122, 122, 0.25);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.map__link {
  display: flex;
  gap: 12px;
  color: #393939;
}
.map__link-icon {
  width: 23px;
  height: 23px;
  background-color: #007DFD;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.map__button {
  padding: 10px;
  width: 100%;
  display: block;
  margin-top: 6px;
  text-align: center;
  font-size: 16px;
  text-transform: uppercase;
}
@media (max-width: 1000px) {
  .map iframe {
    height: 570px;
  }
  .map__list {
    top: 150px;
    right: 20%;
  }
}
@media (max-width: 650px) {
  .map iframe {
    height: 634px;
  }
  .map__list {
    width: 250px;
    top: 200px;
    right: 50%;
    transform: translateX(50%);
  }
}
/* .main {
  margin-top: 94px;
}
@media (max-width: 1500px) {
  .main {
    margin-top: 136px;
  }
}
@media (max-width: 750px) {
  .main {
    margin-top: 142px;
  }
}
@media (max-width: 650px) {
  .main {
    margin-top: 111px;
  }
} */
.products__list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 52px;
}
.products__item {
  width: calc(25% - 22.5px);
}
@media (max-width: 1500px) {
  .products__list {
    gap: 20px;
  }
  .products__item {
    width: calc(33.33% - 14px);
  }
}
@media (max-width: 1150px) {
  .products__item {
    width: calc(50% - 10px);
  }
}
@media (max-width: 1000px) {
  .products__list {
    margin-bottom: 32px;
  }
}
@media (max-width: 650px) {
  .products__list {
    margin-bottom: 30px;
  }
  .products__item {
    width: 100%;
  }
}
.modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(21, 21, 21, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.modal.active {
  opacity: 1;
  pointer-events: auto;
}
.modal__success-wrapper {
  text-align: center;
  max-width: 762px;
  width: 100%;
  background: #ffffff;
  padding: 105px;
  border-radius: 20px;
  position: relative;
}
.modal__success-icon {
  margin-bottom: 30px;
}
.modal__success-title {
  margin-bottom: 34px;
  font-size: 60px;
  font-weight: 800;
  line-height: normal;
}
.modal__success-text {
  font-weight: 500;
  font-size: 24px;
  line-height: normal;
}
.modal__success-text:not(:last-child) {
  margin-bottom: 16px;
}
.modal__close {
  position: absolute;
  top: 26px;
  right: 26px;
  display: flex;
}
.modal__close svg path {
  fill: #A4A6AF;
  transition: fill 0.3s ease;
}
.modal__close:hover svg path {
  fill: #007DFD;
}
@media (max-width: 1000px) {
  .modal__success-wrapper {
    max-width: 600px;
    padding: 105px 75px;
  }
  .modal__success-title {
    font-size: 40px;
  }
  .modal__success-text {
    font-size: 20px;
  }
}
@media (max-width: 650px) {
  .modal__success-wrapper {
    max-width: calc(100% - 40px);
    padding: 80px 26px;
    margin: 0 20px;
  }
  .modal__success-icon {
    width: 40px;
    margin-bottom: 20px;
  }
  .modal__success-title {
    font-size: 36px;
    margin-bottom: 18px;
  }
  .modal__success-text {
    font-size: 14px;
    line-height: 22px;
  }
  .modal__close {
    top: 20px;
    right: 20px;
  }
}
.catalog__info-block {
  position: relative;
}
.catalog__info-block img,
.model__info-block img,
.inner-page__info-block picture img {
  width: 100%;
}
.catalog__info-block .info-block__logo,
.model__info-block .info-block__logo {
  margin-bottom: 36px;
  width: auto;
}
.catalog__info-block .info-block__title,
.model__info-block .info-block__title,
.inner-page__info-block .info-block__title{
  color: #393939;
}
.inner-page__info-block .info-block__text {
  top: 53%;
  bottom: unset;
  transform: translate(-50%, -50%);
  position: absolute;
  padding: 70px 20px;
}
.catalog__info-block .info-block__text {
  top: 40%;
  bottom: unset;
  transform: translate(-50%, -50%);
  position: absolute;
  padding: 70px 20px;
}
.catalog__info-block .info-block__text::before,
.model__info-block .info-block__text::before,
.inner-page__info-block .info-block__text::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1350px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  filter: blur(100px);
  z-index: -1;
}
.catalog__products {
  margin-bottom: 80px;
  text-align: center;
}
.catalog__products-button {
  padding: 12px 72px;
}
@media (max-width: 1300px) {
  .catalog__info-block .info-block__title {
    font-size: 40px;
  }
}
@media (max-width: 650px) {
  .catalog__info-block .info-block__title {
    font-size: 36px;
    line-height: normal;
  }
  .catalog__products {
    margin-bottom: 40px;
  }
  .catalog__products-button {
    display: block;
  }
}
.catalog-nav {
  margin: 40px 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}
.catalog-nav__list {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  max-width: 70%;
}
.catalog-nav__filters {
  display: flex;
  align-items: center;
  gap: 40px;
}
.catalog-nav__filters-field {
  padding: 10px 22px;
  background-color: #D0E4F9;
  border-radius: 6px;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 16px;
}
.catalog-nav__filters-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  user-select: none;
  font-size: 16px;
  gap: 10px;
}
.catalog-nav__filters-input {
  display: none;
}
.catalog-nav__filters-input:checked + .custom__checkbox--red::after {
  opacity: 1;
}
.catalog-nav__button {
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: 6px;
  background-color: transparent;
  border: 1px solid #ACACAC;
  color: #393939;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  transition: color 0.3s ease, background-color 0.3s ease, border 0.3s ease;
}
.catalog-nav__button:hover {
  background-color: #393939;
  color: #ffffff;
  border: 1px solid #393939;
}
.catalog-nav__button.active {
  background-color: #393939;
  color: #ffffff;
  border: 1px solid #393939;
}
.catalog-nav__select {
  display: none;
}
@media (max-width: 1000px) {
  .catalog-nav {
    margin: 30px 0;
    flex-direction: column;
    gap: 30px;
  }
  .catalog-nav__list {
    gap: 8px;
    max-width: 100%;
  }
  .catalog-nav__item {
    margin-right: 8px;
  }
  .catalog-nav__button {
    font-size: 14px;
    padding: 6px 16px;
  }
}
@media (max-width: 650px) {
  .catalog-nav {
    margin: 16px 0 30px;
    gap: 14px;
  }
  .catalog-nav__select {
    display: block;
    width: 100%;
  }
  .catalog-nav__filters {
    gap: 20px;
    width: 100%;
  }
  .catalog-nav__filters-field {
    padding: 12px 17px;
    width: calc(50% - 10px);
    justify-content: center;
  }
}
.product__info-block {
  position: relative;
}
.product__info-block .info-block__title {
  color: white;
}
.product__info-block .info-block__text {
  top: 50%;
  transform: translate(-50%, -50%);
}
.product__info {
  margin: 40px 0 80px;
  position: relative;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}
.product__title {
  margin-bottom: 32px;
}
.product__gallery {
  width: calc(50% - 15px);
}
.product__chars {
  width: calc(50% - 15px);
}
.product__back {
  position: absolute;
  top: 0;
  left: 0;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #ffffff;
  border-radius: 6px;
  color: #A4A6AF;
  transition: color 0.3s ease, background-color 0.3s ease;
  font-weight: 400;
  font-size: 14px;
}
.product__back svg path {
  fill: #A4A6AF;
  transition: fill 0.3s ease;
}
.product__back:hover {
  background-color: #393939;
  color: #ffffff;
}
.product__back:hover svg path {
  fill: #ffffff;
}
.product__slider {
  position: relative;
}
.product__slider .product-button {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.product__slider .product-button svg path {
  fill: #ACACAC;
  transition: fill 0.3s ease;
}
.product__slider .product-button:hover svg path {
  fill: #007DFD;
}
.product__slider .product-button.swiper-button-disabled {
  cursor: not-allowed;
}
.product__slider-navigation {
  position: absolute;
  width: 98%;
  top: 50%;
  left: 1%;
  transform: translate(0, -50%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
}
.product__slider-thumb {
  padding: 4px 0;
}
.product__slider-thumb-image {
  height: 134px;
  cursor: pointer;
}
.product__slider-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border: 0 solid transparent;
  box-shadow: 0 0 8px transparent;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}
.product__slider-thumb img:hover {
  box-shadow: 0 2px 4px #D3D3D3;
}
.product__slider-thumb .swiper-slide-thumb-active img {
  border: 4px solid #007DFD;
}
.product__slider .swiper-slide {
  margin: auto 0;
}
.product__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.product__price {
  display: flex;
  gap: 100px;
  text-align: left;
}
.product__price-title {
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 24px;
}
.product__price-current {
  font-weight: 600;
  font-size: 26px;
  line-height: normal;
  color: #FF5353;
  margin-right: 18px;
}
.product__price-old {
  font-weight: 500;
  font-size: 24px;
  line-height: normal;
  color: #787878;
  text-decoration: line-through;
}
.product__price-price {
  font-weight: 500;
  font-size: 24px;
  line-height: normal;
  color: #393939;
}
.product__price-credit {
  font-weight: 600;
  font-size: 26px;
  line-height: normal;
  color: #393939;
}
.product__buttons {
  text-align: left;
  margin-top: 56px;
}
.product__buttons--disabled {
  margin-top: 0;
}
.product__reserve {
  padding: 12px 38px;
  margin-right: 32px;
}
.product__credit {
  padding: 12px 38px;
}
.product__form {
  background-image: url('../image/bg/contacts-form.webp');
  background-repeat: no-repeat;
  background-size: cover;
  padding: 100px 0;
}
@media (max-width: 1000px) {
  .product__info-block .info-block__title {
    font-size: 60px;
    font-weight: 800;
    line-height: normal;
  }
  .product__info {
    margin: 40px 0 60px;
    gap: 60px;
  }
  .product__title {
    margin-bottom: 0;
  }
  .product__gallery {
    width: 100%;
  }
  .product__chars {
    width: 100%;
  }
  .product__price {
    margin-bottom: 40px;
  }
  .product__form {
    padding: 50px 0;
    margin-bottom: 40px;
  }
}
@media (max-width: 650px) {
  .product__info-block .info-block__title {
    font-size: 36px;
    padding: 0 20px;
  }
  .product__info {
    margin: 30px 0;
    gap: 30px;
  }
  .product__title {
    margin-bottom: 22px;
    font-size: 16px;
  }
  .product__price {
    margin-bottom: 30px;
    gap: 20px;
    flex-direction: column;
  }
  .product__price-title {
    margin-bottom: 20px;
  }
  .product__price-current {
    font-size: 24px;
  }
  .product__price-old {
    font-size: 22px;
  }
  .product__price-credit {
    font-size: 24px;
  }
  .product__form {
    padding: 40px 0;
  }
  .product__buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .product__reserve {
    margin-right: 0;
  }
  .product__back {
    display: none;
  }
  .product__slider {
    padding-top: 40px !important;
  }
  .product__slider .product-button {
    width: 30px;
    height: 30px;
    border-radius: 4px;
  }
  .product__slider .product-button svg {
    width: 8px;
  }
  .product__slider-navigation {
    position: absolute;
    width: 100%;
    top: 4px;
    left: 0;
    transform: translate(0, 0);
    justify-content: center;
    gap: 14px;
  }
  .product__slider-thumb-image {
    height: 62px;
  }
}
.colors {
  text-align: center;
  position: relative;
  margin-bottom: 80px;
}
.colors__image {
  width: 1160px;
  height: 525px;
  margin: 0 auto;
}
.colors__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.colors__item {
  display: flex;
  align-items: center;
}
.colors__item-button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  padding: 0;
  transition: width 0.3s, height 0.3s;
}
.colors__item-button--White {
  background-color: #ffffff;
  border: 1px solid #C0C0C0;
}
.colors__item-button--Red {
  background-color: #E0373A;
}
.colors__item-button--Yellow {
  background-color: #F7EA5D ;
}
.colors__item-button--AmberYellow {
  background-color: #FFBF00;
}
.colors__item-button--Blue {
  background-color: #2D5FBA;
}
.colors__item-button--Grey {
  background-color: #CACACA;
}
.colors__item-button--Black {
  background-color: #303030;
}
.colors__item-button--Brown {
  background-color: #4E1919;
}
.colors__item-button--BlackWhite,
.colors__item-button--WhiteBlack {
  background: linear-gradient(to right, #2B2B2B 0%, #2B2B2B 50%, #E9E9E9 50%, #E9E9E9 100%);
}
.colors__item-button--BlackRed,
.colors__item-button--RedBlack {
  background: linear-gradient(to right, #2B2B2B 0%, #2B2B2B 50%, #DE2939 50%, #DE2939 100%);
}
.colors__item-button--BlackLightGrey,
.colors__item-button--LightGreyBlack {
  background: linear-gradient(to right, #2B2B2B 0%, #2B2B2B 50%, #CECECE 50%, #CECECE 100%);
}
.colors__item-button--BlackYellow,
.colors__item-button--YellowBlack {
  background: linear-gradient(to right, #2B2B2B 0%, #2B2B2B 50%, #F7EA5D 50%, #F7EA5D 100%);
}
.colors__item-button--Lightgrey {
  background-color: #CECECE;
}
.colors__item-button--Silver {
  background-color: #C0C0C0;
}
.colors__item-button.active {
  width: 50px;
  height: 50px;
}
.colors__content {
  position: absolute;
  bottom: -95px;
  left: 50%;
  transform: translateX(-50%);
}
.colors__name {
  font-size: 24px;
  padding: 10px 46px;
  border-radius: 40px;
  background-color: #D0E4F9;
  margin-bottom: 40px;
  display: inline-block;
}
.colors__list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-bottom: 45px;
  height: 50px;
}
.colors__button {
  padding: 12px 38px;
}
@media (max-width: 1300px) {
  .colors__image {
    width: 100%;
  }
}
@media (max-width: 1000px) {
  .colors {
    margin-bottom: 146px;
  }
}
@media (max-width: 650px) {
  .colors {
    margin-bottom: 46px;
  }
  .colors__content {
    width: calc(100% - 40px);
    left: 20px;
    transform: translate(0);
  }
  .colors__name {
    font-size: 16px;
    padding: 4px 20px;
    margin-bottom: 16px;
  }
  .colors__list {
    gap: 20px;
    margin-bottom: 20px;
    height: 82px;
    flex-wrap: wrap;
  }
  .colors__item-button {
    width: 28px;
    height: 28px;
  }
  .colors__item-button.active {
    width: 34px;
    height: 34px;
  }
  .colors__button {
    padding: 12px 38px;
    display: block;
    text-align: center;
  }
}
.products-slider {
  margin-bottom: 80px;
}
.products-slider__wrapper {
  overflow: hidden;
  padding: 10px;
}
.products-slider__top {
  display: flex;
  align-items: center;
  margin-bottom: 42px;
}
.products-slider__header {
  margin-right: 88px;
}
.products-slider__link {
  padding: 10px 54px;
  display: inline-block;
  font-size: 16px;
  text-transform: uppercase;
}
.products-slider__link--mobile {
  display: none;
}
.products-slider__navigation {
  margin-left: auto;
  display: flex;
  align-items: center;
}
.products-slider__button {
  width: 68px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.products-slider__button svg path {
  fill: #007DFD;
  transition: fill 0.3s ease;
}
.products-slider__button:hover {
  background-color: #007DFD;
  box-shadow: 0 0 8px transparent;
}
.products-slider__button:hover svg path {
  fill: #ffffff;
}
.products-slider__button:active {
  background-color: #007DFD;
}
.products-slider__button:active svg path {
  fill: #ffffff;
}
.products-slider__button.swiper-button-disabled {
  cursor: not-allowed;
}
.products-slider__button.swiper-button-disabled svg path {
  fill: #737373;
}
.products-slider__button.swiper-button-disabled:hover {
  background-color: transparent;
}
.products-slider__button.swiper-button-disabled:hover svg path {
  fill: #737373;
}
.products-slider__slide {
  padding: 14px 12px 16px;
  background-color: #F2F3F7;
  border-radius: 20px;
  color: #393939;
  text-align: center;
  display: block;
}
.products-slider__img {
  position: relative;
  margin-bottom: 16px;
}
.products-slider__img-image {
  width: 100%;
  border-radius: 20px;
}
.products-slider__date {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 10px;
  background-color: #393939;
  border-radius: 12px;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (max-width: 1850px) {
  .products-slider__title {
    height: 52px;
  }
}
@media (max-width: 1000px) {
  .products-slider {
    text-align: center;
  }
  .products-slider__wrapper {
    margin-bottom: 50px;
  }
  .products-slider__link {
    display: none;
  }
  .products-slider__link--mobile {
    display: inline-block;
  }
}
@media (max-width: 650px) {
  .products-slider__wrapper {
    margin-bottom: 20px;
  }
  .products-slider__top {
    margin-bottom: 20px;
    flex-direction: column;
  }
  .products-slider__header {
    margin-right: 0;
  }
  .products-slider__link--mobile {
    display: block;
    text-align: center;
  }
  .products-slider__navigation {
    margin-left: 0;
    margin-top: 20px;
  }
  .products-slider__button {
    width: 30px;
    height: 30px;
    border-radius: 4px;
  }
  .products-slider__button svg {
    width: 8px;
  }
}
.product-chars {
  background-color: #F1F1F1;
  border-radius: 6px;
  padding: 38px;
}
.product-chars__list {
  margin-bottom: 34px;
}
.product-chars__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  margin-bottom: 20px;
  width: 100%;
  border-bottom: 1px solid #D3D3D3;
  font-weight: 600;
}
@media (max-width: 650px) {
  .product-chars__list {
    margin-bottom: 20px;
  }
  .product-chars__item {
    padding-bottom: 18px;
    margin-bottom: 18px;
  }
}
.product-form {
  padding: 30px;
  background: #D0E4F9;
  border-radius: 16px;
  max-width: 926px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
.product-form__title {
  color: #393939;
  margin-bottom: 26px;
}
.product-form__field {
  margin-bottom: 16px;
}
.product-form__field--checkbox {
  text-align: left;
}
.product-form__field--message {
  margin-bottom: 26px;
}
.product-form__input {
  width: 100%;
  background-color: #ffffff;
  padding: 16px 18px;
  border: 1px solid #D3D3D3;
  border-radius: 6px;
  border: none;
}
.product-form__label {
  color: #393939;
}
.product-form__checkbox {
  display: none;
}
.product-form__checkbox:checked + .custom__checkbox--dark::after {
  opacity: 1;
}
.product-form__submit {
  padding: 14px 36px;
}
.product-form__textarea {
  width: 100%;
  background-color: #ffffff;
  padding: 16px 18px;
  border-radius: 6px;
  border: none;
  resize: none;
  height: 133px;
}
@media (max-width: 650px) {
  .product-form {
    padding: 40px 20px;
    max-width: 100%;
  }
  .product-form__title {
    color: #ffffff;
    margin-bottom: 26px;
  }
  .product-form__submit {
    padding: 10px 0;
    font-size: 20px;
    width: 100%;
    text-align: center;
  }
  .product-form__textarea {
    padding: 17px 18px;
    height: 124px;
  }
  .product-form__input {
    padding: 17px 18px;
  }
}
.description {
  margin-bottom: 80px;
}
.description__list {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}
.description__item {
  width: calc(50% - 15px);
  display: flex;
  flex-direction: column;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
}
.description__item:nth-child(5n+1) {
  width: 100%;
}
.description__title {
  margin-bottom: 20px;
  font-size: 16px;
  text-transform: uppercase;
  line-height: normal;
  font-weight: 400;
}
.description__text {
  margin-bottom: 40px;
  margin: auto 0;
}
.description img {
  margin-top: auto;
  object-fit: cover;
  width: 100%;
  border-radius: 20px;
  height: 500px;
}
@media (max-width: 1200px) {
  .description img {
    height: 380px;
  }
}
@media (max-width: 1000px) {
  .description {
    margin-bottom: 40px;
  }
  .description__list {
    gap: 40px;
  }
  .description__item {
    width: 100%;
  }
  .description__title {
    margin-bottom: 32px;
  }
  .description__text {
    margin-bottom: 32px;
  }
  .description img {
    margin-top: 0;
    height: auto;
  }
}
@media (max-width: 650px) {
  .description__title {
    margin-bottom: 20px;
    font-size: 18px !important;
  }
  .description__text {
    margin-bottom: 14px;
  }
}
.model__form {
  background-repeat: no-repeat;
  background-size: cover;
  padding: 40px 0;
  margin-bottom: 80px;
}
.model__form .product-form {
  margin: 0 0 0 auto;
  max-width: 578px;
}
.model__block {
  display: flex;
  align-items: center;
  gap: 66px;
}
.model__info-text {
  width: calc(50% - 33px);
}
.model__info-text p {
  margin-bottom: 64px;
}
.model__info-title {
  margin-bottom: 32px;
}
.model__button {
  padding: 12px 72px;
}
.model__slider {
  padding: 63px 0;
}
.model__slider .products-slider {
  margin-bottom: 0;
}
.model .page-nav {
  margin-bottom: 40px;
}
.model__table {
  margin-bottom: 40px;
  border-collapse: collapse;
  width: 100%;
  background-color: #ffffff;
}
.model__table th,
.model__table td {
  border: 1px solid #DDDFE7;
  text-align: center;
  padding: 20px;
}
.model__table th {
  text-align: left;
  font-weight: 500;
}
.model__table thead tr {
  background-color: #D0E4F9;
}
.model__table thead tr:hover {
  background-color: #D0E4F9;
}
.model__table thead th {
  text-align: center;
}
.model__table tr {
  background-color: #ffffff;
  transition: background-color 0.3s ease;
}
.model__table tr:hover {
  background-color: #F2F3F7;
}
.model__images-block {
  margin-bottom: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.model__images-block-title {
  margin-bottom: 30px;
}
.model__images-block img {
  width: calc(50% - 30px);
  border-radius: 4px;
}
.model__images-block img:nth-child(5n + 1) {
  width: 100%;
  border-radius: 4px;
}
@media (max-width: 1000px) {
  .model .title__h2 {
    font-size: 24px;
    font-weight: 500;
  }
  .model__form {
    padding: 50px 0;
    margin-bottom: 40px;
  }
  .model__form .product-form {
    margin: 0 auto;
    max-width: 100%;
  }
  .model__block {
    flex-direction: column;
    gap: 40px;
  }
  .model__info-text {
    width: 100%;
  }
  .model__info-text p {
    margin-bottom: 40px;
  }
  .model__colors {
    width: 100%;
    height: auto;
  }
  .model__colors .colors {
    margin-bottom: 40px;
  }
  .model__images-block {
    gap: 20px;
  }
  .model__images-block-title {
    margin-bottom: 20px;
  }
  .model__images-block img {
    width: calc(50% - 10px);
  }
}
@media (max-width: 650px) {
  .model .page-nav__item {
    width: 100%;
    margin: 0;
  }
  .model .title__h2 {
    font-size: 26px;
    font-weight: 600;
  }
  .model__form {
    padding: 40px 0;
  }
  .model__block {
    flex-direction: column;
    gap: 40px;
  }
  .model__button {
    padding: 12px 0;
    text-align: center;
    display: block;
  }
  .model__info-title {
    margin-bottom: 20px;
  }
  .model__info-text p {
    margin-bottom: 32px;
  }
  .model__table {
    margin-bottom: 20px;
  }
  .model__table-wrapper {
    width: 100%;
    margin-bottom: 20px;
    overflow-x: auto;
  }
  .model__table-wrapper::-webkit-scrollbar {
    height: 16px;
    background: #DDDFE7;
    border-radius: 8px;
  }
  .model__table-wrapper::-webkit-scrollbar-thumb {
    background: #A4A6AF;
    border-radius: 8px;
    border: 4px solid #DDDFE7;
  }
  .model__table-wrapper::-webkit-scrollbar-track {
    background: #DDDFE7;
    border-radius: 8px;
  }
  .model__images-block {
    gap: 10px;
  }
  .model__images-block-title {
    margin-bottom: 20px;
    font-size: 20px !important;
  }
  .model__images-block img {
    width: 100%;
  }
}
.specific__item {
  margin-bottom: 18px;
}
.specific__header {
  padding: 20px;
  border-radius: 4px;
  list-style: none;
  position: relative;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #F2F3F7;
}
.specific__header-title {
  font-size: 24px;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.specific__header img {
  transform: rotate(0);
  transition: transform 0.3s ease;
}
.specific__header img.open {
  transform: rotate(180deg);
}
.specific__body {
  display: none;
}
.specific__table {
  margin-bottom: 2px;
  border-collapse: collapse;
  width: 100%;
  background-color: #F2F3F7;
}
.specific__table th,
.specific__table td {
  border: 1px solid #DDDFE7;
  text-align: center;
  padding: 20px;
}
.specific__table th {
  text-align: left;
  font-weight: 500;
}
.specific__table thead tr {
  background-color: #DDDFE7;
}
.specific__table thead tr:hover {
  background-color: #DDDFE7;
}
.specific__table thead th {
  text-align: center;
}
.specific__table tr {
  background-color: #F2F3F7;
  transition: background-color 0.3s ease;
}
.specific__table tr:hover {
  background-color: #DDDFE7;
}
.specific__legend {
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.specific__legend-title {
  display: inline-block;
  margin-bottom: 20px;
}
.specific__legend p {
  margin-top: 20px;
}
.specific__legend img {
  margin-right: 10px;
}
@media (max-width: 650px) {
  .specific__item {
    margin-bottom: 12px;
  }
  .specific__header {
    padding: 15px 12px;
  }
  .specific__header-title {
    font-size: 14px;
    line-height: 22px;
  }
  .specific__table {
    margin-bottom: 20px;
  }
  .specific__table-wrapper {
    width: 100%;
    margin-bottom: 20px;
    overflow-x: auto;
  }
  .specific__table-wrapper::-webkit-scrollbar {
    height: 16px;
    background: #DDDFE7;
    border-radius: 8px;
  }
  .specific__table-wrapper::-webkit-scrollbar-thumb {
    background: #A4A6AF;
    border-radius: 8px;
    border: 4px solid #DDDFE7;
  }
  .specific__table-wrapper::-webkit-scrollbar-track {
    background: #DDDFE7;
    border-radius: 8px;
  }
}
.inner-page {
  background-color: #F8F8F8;
}
.inner-page__content {
  display: flex;
  gap: 58px;
  justify-content: space-between;
}
.inner-page__content .inner-page__info{
  margin: 40px 0;
}
.inner-page__content.inner-page__content--testdrive {
  margin-top: 0;
  display: block;
}
.inner-page__content.inner-page__content--services {
  display: block;
  margin: 0;
}
.inner-page__content--services .inner-page__info {
  width: 100%;
  margin-right: 0;
}
@media (max-width: 1200px) {
  .inner-page__content {
    flex-direction: column;
    gap: 30px;
  }
}
.inner-page__info-block {
  position: relative;
}
.inner-page__info-block picture {
  display: block;
  width: 100%;
  height: 100%;
}
.inner-page__info-block picture img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.inner-page__form {
  width: calc(55% - 29px);
  padding: 40px 0;
}
@media (max-width: 1200px) {
  .inner-page__form {
    width: 100%;
  }
}
.inner-page__form--services {
  width: 100%;
  background: url('../image/bg/service-form.webp') no-repeat;
  background-size: cover;
  padding: 52px 0;
}
.inner-page__form--services .product-form {
  max-width: 926px;
  width: 100%;
}
.inner-page__form--leasing .product-form {
  max-width: 100%;
}
.inner-page__form--testdrive {
  background-image: url('../image/bg/test-drive-form.webp');
  background-repeat: no-repeat;
  background-size: cover;
  padding: 130px 0;
  width: 100%;
}
.inner-page__form--testdrive .product-form {
  max-width: 885px;
}
.inner-page__form--contacts {
  background-image: url('../image/bg/contacts-form.webp');
  background-repeat: no-repeat;
  background-size: cover;
  padding: 34px 0 70px;
  margin: 0;
  width: 100%;
}
.inner-page__form--contacts .product-form {
  max-width: 885px;
}
.inner-page__info {
  width: calc(45% - 29px);
  margin-right: 58px;
}
@media (max-width: 1200px) {
  .inner-page__info {
    width: 100%;
  }
}
.inner-page__info p:not(:last-child) {
  margin-bottom: 22px;
}
.inner-page__info ul {
  margin-bottom: 30px;
}
.inner-page__info ul li {
  list-style: disc;
  margin-left: 20px;
}
.inner-page__info--garancy {
  width: 100%;
}
.inner-page__info--garancy h3 {
  margin-bottom: 32px;
  font-size: 32px;
  font-weight: 600;
}
.inner-page__title {
  margin-bottom: 22px;
}
.inner-page__connection {
  margin-top: 54px;
  display: flex;
  gap: 150px;
}
.inner-page__connection-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #393939;
  font-weight: 500;
  transition: color 0.3s ease;
}
.inner-page__connection-item:hover {
  color: #007DFD;
}
.inner-page__text--red {
  color: #007DFD;
  font-weight: 600;
}
.inner-page__contacts {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 50px;
}
@media (max-width: 1200px) {
  .inner-page__contacts {
    gap: 30px;
    flex-wrap: wrap;
  }
}
.inner-page__contacts-info {
  width: calc(35% - 33px);
}
@media (max-width: 1200px) {
  .inner-page__contacts-info {
    width: calc(50% - 15px);
  }
}
.inner-page__contacts-contacts {
  width: calc(35% - 33px);
  padding: 46px;
  border-radius: 6px;
  background-color: #F1F1F1;
}
.inner-page__contacts-map {
  width: calc(65% - 33px);
}
.inner-page__contacts-map iframe {
  width: 100%;
  height: 100%;
  border-radius: 6px;
}
.inner-page__contacts-title {
  margin-bottom: 30px;
  font-size: 24px;
  font-weight: 500;
}
.inner-page__contacts-worktime {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 16px;
}
.inner-page__contacts-worktime--red {
  color: #007DFD;
  margin: 40px 0 30px;
}
.inner-page__contacts-list {
  margin-top: 56px;
}
.inner-page__contacts-item {
  list-style: none;
  margin-bottom: 22px;
  margin-left: 0;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  text-align: left;
}
@media (max-width: 1000px) {
  .inner-page__content {
    margin: 40px 0;
    gap: 40px;
  }
  .inner-page__info-block .info-block__title {
    font-size: 40px;
    font-weight: 800;
  }
  .inner-page__form--services {
    padding: 17px 0;
  }
  .inner-page__form--services .product-form {
    margin: 0 20px;
    max-width: calc(100% - 40px);
  }
  .inner-page__form--leasing {
    padding: 17px 0;
  }
  .inner-page__form--leasing .product-form {
    margin: 0 20px;
    max-width: calc(100% - 40px);
  }
  .inner-page__form--testdrive {
    padding: 100px 0;
  }
  .inner-page__form--testdrive .product-form {
    margin: 0 20px;
    max-width: calc(100% - 40px);
  }
  .inner-page__form--contacts {
    padding: 90px 0;
  }
  .inner-page__form--contacts .product-form {
    margin: 0 20px 30px;
    max-width: calc(100% - 40px);
  }
  .inner-page__connection {
    gap: 86px;
  }
  .inner-page__contacts {
    gap: 40px;
  }
  .inner-page__contacts-info {
    width: 100%;
  }
  .inner-page__contacts-contacts {
    width: 100%;
  }
  .inner-page__contacts-map {
    width: 100%;
  }
  .inner-page__contacts-title {
    margin-bottom: 20px;
  }
  .inner-page__contacts-worktime {
    margin-bottom: 20px;
  }
  .inner-page__contacts-worktime--red {
    margin: 20px 0;
  }
  .inner-page__contacts-list {
    margin-top: 40px;
  }
  .inner-page__contacts-item {
    margin-bottom: 30px;
    gap: 20px;
  }
}
@media (max-width: 650px) {
  .inner-page__content {
    margin: 0;
    gap: 30px;
  }
  .inner-page__info-block .info-block__title {
    font-size: 36px;
    line-height: normal;
    padding: 0 20px;
  }
  .inner-page__info p:not(:last-child) {
    margin-bottom: 20px;
  }
  .inner-page__info ul {
    margin-bottom: 18px;
  }
  .inner-page__title {
    margin-bottom: 20px;
  }
  .inner-page__form--services {
    padding: 30px 0;
  }
  .inner-page__form--leasing {
    padding: 30px 0;
  }
  .inner-page__form--testdrive {
    padding: 85px 0;
  }
  .inner-page__form--contacts {
    padding: 30px 0;
  }
  .inner-page__connection {
    gap: 12px;
    flex-direction: column;
    margin-top: 20px;
  }
  .inner-page__contacts {
    gap: 30px;
  }
  .inner-page__contacts-map iframe {
    height: 320px;
  }
  .inner-page__contacts-title {
    margin-bottom: 16px;
    font-size: 20px;
  }
  .inner-page__contacts-worktime {
    margin-bottom: 6px !important;
    font-size: 14px;
    font-weight: 400;
  }
  .inner-page__contacts-worktime--red {
    margin: 16px 0;
    font-size: 20px;
    font-weight: 500;
  }
  .inner-page__contacts-list {
    margin-top: 30px;
    margin-bottom: 0 !important;
  }
  .inner-page__contacts-item {
    margin-bottom: 30px;
    gap: 20px;
  }
}
.partners {
  margin-top: 48px;
}
.partners__title {
  margin-bottom: 34px;
  text-align: center;
}
.partners__list {
  display: flex;
  justify-content: space-between;
}
.partners__item {
  width: calc(33.3333% - 20px);
  display: flex;
  list-style: none;
}
@media (max-width: 650px) {
  .partners {
    margin-top: 0px;
  }
  .partners__title {
    margin-bottom: 26px;
  }
  .partners__list {
    flex-wrap: wrap;
    gap: 20px;
  }
  .partners__item {
    width: 100%;
    margin: 0 !important;
    justify-content: center;
  }
  .partners__item img {
    height: 62px;
    object-fit: contain;
  }
}
.error-page {
  background: url('../image/bg/error-bg.svg'), #ffffff;
  background-size: 80% 70%;
  background-position: 50% 25%;
  background-repeat: no-repeat;
  margin-top: 0;
  position: relative;
  height: 100vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.error-page__content {
  text-align: center;
  margin-bottom: 200px;
}
.error-page__title {
  font-size: 60px;
  font-weight: 800;
  color: #393939;
  margin-bottom: 42px;
}
.error-page__text {
  margin-bottom: 60px;
}
.error-page__back {
  padding: 15px 90px;
}
@media (max-width: 1000px) {
  .error-page__text {
    font-size: 26px;
    font-weight: 600;
  }
}
@media (max-width: 650px) {
  .error-page__title {
    font-size: 36px;
    line-height: normal;
  }
  .error-page__text {
    font-size: 20px;
    line-height: normal;
    padding: 0 20px;
  }
  .error-page__back {
    font-size: 20px;
  }
}
.news {
  display: block;
  margin: 40px 0;
  text-align: center;
}
.news__list {
  margin-bottom: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.news__item {
  width: calc(33.3333% - 20px);
}
@media (max-width: 1500px) {
  .news__item {
    width: calc(50% - 15px);
  }
}
.news__more {
  padding: 14px 36px;
}
@media (max-width: 650px) {
  .news {
    margin: 30px 0;
  }
  .news__list {
    margin-bottom: 30px;
    gap: 20px;
  }
  .news__item {
    width: 100%;
  }
  .news__more {
    padding: 12px 0;
    width: 100%;
  }
}
.news-item {
  padding-bottom: 40px;
}
.news-item__content {
  display: block;
  margin: 40px 0;
}
.news-item__content img {
  margin-bottom: 40px;
}
.news-item__content p {
  margin-bottom: 16px;
}
.news-item__content p img {
  width: 100%;
}
.news-item__content p a {
  color: #007DFD;
}
.news-item__content ul {
  margin-bottom: 30px;
}
.news-item__content ul li {
  list-style: disc;
  margin-left: 20px;
}
.news-item__top {
  margin-top: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
  background-color: #F2F3F7;
  border-radius: 4px;
  padding: 25px 30px;
}
.news-item__top .news-slider__date {
  position: relative;
  right: unset;
  bottom: unset;
}
@media (max-width: 1000px) {
  .news-item {
    margin-bottom: 0;
  }
  .news-item__title {
    font-size: 24px;
    font-weight: 700;
  }
  .news-item__top {
    margin-top: 0;
    margin-bottom: 20px;
    padding: 20px 18px;
  }
}
@media (max-width: 650px) {
  .news-item .info-block img {
    height: auto;
  }
  .news-item__title {
    font-size: 20px;
    font-weight: 500;
    width: calc(100% - 84px);
  }
  .news-item__top {
    margin-top: 12px;
    margin-bottom: 10px;
    padding: 20px 10px;
    gap: 14px;
  }
  .news-item__top .news-slider__date {
    width: 70px;
  }
}

.model__image-text {
  max-width: 500px;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 80px;
  transform: translate(0, -50%);
}
.model__image-text--left {
  left: 80px;
}
.model__image-text--right {
  right: 80px;
  left: unset;
}
.model__image-title {
  color: #fff;
  font-size: 60px;
  font-weight: 800;
  line-height: normal;
  margin-bottom: 46px;
  position: relative;
}
.swiper-slide__buttons {
  display: flex;
  text-align: center;
  gap: 26px;
  position: relative;
}
.model__image-list {
  position: relative;
  max-width: 430px;
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 44px;
}
.model__image-item {
  width: calc(50% - 14px);
}
.model__image-item-title {
  color: #fff;
  font-size: 24px;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.model__image-item-value {
  color: #fff;
  font-size: 24px;
  font-weight: 400;
  line-height: normal;
}
#show-more-btn {
    transition: opacity 0.3s;
    opacity: 1;
    display: block;
    margin: 0 auto;
}
#show-more-btn.hide {
    opacity: 0;
    pointer-events: none;
}
.products__not-found {
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  color: #A4A6AF;
}
@media (max-width: 1000px) {
  .model__image-title {
    font-size: 60px !important;
  }
  .model__image-text {
    max-width: 100%;
    top: 52px;
    left: 52px;
    transform: translate(0, 0);
  }
  .model__image-text--left {
    left: 52px;
  }
  .model__image-text--right {
    right: unset;
    left: 52px;
  }
  .products__not-found {
    font-size: 24px;
  }
  .model__image-item-title {
    font-size: 24px;
    line-height: normal;
  }
  .model__image-item-value {
    font-size: 24px;
    line-height: normal;
  }
}
@media (max-width: 650px) {
  .model__image-text {
    left: 24px;
  }
  .model__image-text--left {
    left: 24px;
  }
  .model__image-text--right {
    left: 24px;
  }
  .model__image-title {
    font-size: 36px !important;
    margin-bottom: 26px;
  }
  .model__image-list {
    gap: 20px;
  }
  .model__image-item {
    width: calc(50% - 10px);
  }
  .model__image-item-title {
    font-size: 18px;
    line-height: 22px;
  }
  .model__image-item-value {
    font-size: 18px;
    line-height: 22px;
  }
}
.model-chars {
  margin-bottom: 80px;
}
.model-chars__list {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 86px;
  position: relative;
}
.model-chars__list::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #007DFD;
  opacity: 16%;
  border-radius: 50%;
  z-index: 0;
  filter: blur(100px);
}
.model-chars__item {
  width: calc(25% - 22.5px);
  text-align: center;
}
.model-chars__item-title {
  color: #007DFD;
  font-size: 24px;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.model-chars__item-value {
  font-size: 32px;
  font-weight: 600;
}
@media (max-width: 1000px) {
  .main-slider {
    padding-top: 0;
  }
  .swiper-slide__content {
    margin: 142px 0 250px;
    padding: 46px 0 35px;
    position: absolute;
    top: 0;
    width: 100%;
  }
  .swiper-slide__content::before {
    width: 300px;
    height: 100%;
  }
  .swiper-slide__content .model__image-title {
    font-size: 46px !important;
    margin-bottom: 32px;
    }
  .model__image-list {
    max-width: 200px;
    margin-bottom: 32px;
    gap: 8px;
  }
  .model__image-item {
    width: 100%;
  }
  .model__image-item-title,
  .model__image-item-value {
    font-size: 20px;
    line-height: 34px;
    margin: 0;
  }
  .main-slider .swiper-pagination-bullet {
    width: 36px;
  }
  .main-slider__bottom-info {
    flex-direction: column;
    gap: 0;
    width: auto;
  }
  .model-chars {
    margin-bottom: 0;
  }
  .model-chars__list {
    gap: 30px;
    padding: 43px 72px;
    flex-wrap: wrap;
  }
  .model-chars__item {
    width: calc(50% - 15px);
  }
  .model-chars__item-title {
    font-size: 20px;
    margin-bottom: 16px;
  }
  .model-chars__item-value {
    font-size: 24px;
  }
  .inner-page__content .inner-page__info {
    margin: 0;
  }
}
@media (max-width: 650px) {
  .main-slider {
    padding: 0;
  }
  .swiper-slide__content {
    margin: 90px 0 250px;
  }
  .swiper-slide__content .model__image-title {
    font-size: 32px !important;
    margin-bottom: 22px;
    }
  .model__image-list {
    max-width: 100%;
    margin-bottom: 22px;
    gap: 8px;
  }
  .model__image-item {
    width: calc(50% - 10px);
  }
  .model__image-item-title,
  .model__image-item-value {
    font-size: 18px;
    line-height: normal;
  }
  .model__image-item-title {
    margin-bottom: 8px;
  }
  .main-slider .swiper-pagination-bullet {
    width: 16px;
    height: 2px;
  }
  .main-slider__bottom .wrapper {
    position: relative;
  }
  .main-slider .swiper-horizontal > .swiper-pagination-bullets, .main-slider .swiper-pagination-bullets.swiper-pagination-horizontal, .main-slider .swiper-pagination-custom, .main-slider .swiper-pagination-fraction {
    top: 0;
    left: 20px;
    bottom: unset;
    position: absolute;
  }
  .model-chars {
    margin-bottom: 0;
  }
  .model-chars__list {
    gap: 30px;
    padding: 52px 28px;
    flex-wrap: wrap;
  }
  .model-chars__item {
    width: 100%;
  }
  .model-chars__item-title {
    font-size: 20px;
    margin-bottom: 16px;
  }
  .model__image-item-title {
    margin-bottom: 8px;
  }
  .model-chars__item-value {
    font-size: 24px;
  }
  .main-slider__bottom-info {
    gap: 4px;
    margin-top: 20px;
  }
  .main-slider__bottom-text {
    font-size: 10px;
    line-height: normal;
  }
  .main-slider__bottom-text svg {
    height: 12px;
  }
  .main-slider__button {
    width: 36px;
    height: 70px;
  }
  .swiper-slide__buttons {
    gap: 16px;
  }
  .home__content {
    margin: 32px 0;
  }
  .home__content-title {
    margin-bottom: 20px;
    font-size: 22px;
  }
  .home__content-text {
    line-height: 22px;
  }
  .colors__image {
    height: 200px;
  }
  .product-chars {
    padding: 24px 16px;
  }
  .model__slider {
    padding: 20px 0;
  }
  .inner-page__content .inner-page__info {
    margin: 20px 0;
  }
  .inner-page__info-block picture img {
    height: 500px;
    object-position: center;
  }
  .inner-page__info--garancy h3 {
    margin-bottom: 20px;
    font-size: 20px;
  }
}
@media (max-width: 1300px) {
  .inner-page__info-block picture img {
    height: 400px;
  }
}

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