@import url(../fonts/Halvar-Breit/stylesheet.css);
* {
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	font-family: 'Halvar Breit Rg';
}

html {
	scroll-behavior: smooth;
}

body {
	background: #fff;
}

section {
	overflow: hidden;
}

header {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: start;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	position: relative;
	top: 0;
	z-index: 100;
	width: 100%;
	height: auto;
	
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	overflow: hidden;

}

main {
	overflow: hidden;
}

button {
	cursor: pointer;
	-webkit-transition: 0.7s;
	transition: 0.7s;
}
/* button:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
} */

header {
	overflow: visible;
}
.header-callback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px; /* расстояние между иконкой и текстом */
}

.header-callback .logo {
  display: inline-block;
  vertical-align: middle;
  /* Если иконка всё ещё смещена, можно подправить: */
  /* margin-top: -2px; */
}

.header-nav-models {
	display: none;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	position: absolute;
	max-width: 160px;
	width: 100%;
	height: auto;
	z-index: 101;
}

.header-nav-link span {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	gap: 5px;
}

.header-nav-link.active + .header-nav-models {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.header-nav-link.active svg {
	-webkit-transform: scale(-1);
	transform: scale(-1);
}

.header-nav-link svg path stroke {
	-webkit-transition: 0.3s;
	transition: 0.3s;
}
.header-nav-link svg path stroke:hover {
	fill: #3b9db2;
}

.header-nav-item {
	background: rgba(15, 23, 26, 0.7411764706);
	width: 100%;
	max-width: 160px;
	padding-bottom: 5px;
	padding-top: 5px;
	padding-left: 10px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 10px;
}
.header-nav-item a {
	font-size: 16px;
	line-height: 18px;
	font-weight: 400;
	text-transform: uppercase;
	color: var(--color-main);
	text-decoration: none;
}

.main-banner {
	position: absolute;
	top: 0;
	left: 0;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: center;
	object-position: center;
	width: 100%;
	height: 100%;
	z-index: -1;
}

.header-box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: start;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: start;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	max-width: 1180px;
	width: 100%;
	height: auto;
	padding-bottom: 20px;
	margin-top: 20px;
}

.header-logo {
	width: 200px;
}

.logo-a {
	display: flex;
}

.logo-peleton {
	width: 150px;
}

.header-logo-box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.header-logo-title {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.header-logo-title p {
	font-size: 22px;
	font-weight: 500;
	font-family: Halvar Breit Md;
}
.header-logo-title::before {
	content: '';
	display: block;
	height: 54px;
	width: 1px;
	background: rgba(0, 0, 0, 0.2117647059);
	margin-left: 40px;
	margin-right: 25px;
}

.header-links {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: start;
	gap: 56px;
	margin-top: 13px;
	margin-bottom: 26px;
	display: none;
}
.header-links a {
	font-size: 14px;
	font-weight: 400;
	color: rgba(0, 0, 0, 0.5882352941);
	text-decoration: none;
	cursor: pointer;
}
.header-links a:hover {
	font-weight: 700;
}

.header-contacts {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: start;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: end;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;

	gap: 12px;
}
.header-contacts p {
	font-size: 12px;
	font-weight: 400;
	color: #000;
	/* max-width: 190px; */
}

.header-tel {
	color: #000;
	text-decoration: none;
	font-size: 12px;
	font-weight: 400;
}

.header-address {
	color: #000;
	text-decoration: none;
	font-size: 12px;
	font-weight: 400;
}

.header-nav-wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	max-width: 710px;
	width: 100%;
}

.header-contacts-mob {
	display: none;
}

.header-nav-menu-mob {
	display: none;
}

.header-link {
	background: url(../img/ico/back.svg);
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	width: 200px;
	height: 13px;
	display: flex;
	margin-bottom: 36px;
	/* position: fixed; */
	/* bottom: 40px; */
	/* left: 2%; */
}

@media (max-width: 991px) {
	.header-link {
		width: 154px;
		/* bottom: 10%; */
	}
}

.header-nav-box {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
    
}

.header-nav {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	height: 58px;
	width: 100%;
	display: flex;
	position: relative;
	 background-color: rgba(0, 0, 0, 0.5) !important;


}
.header-nav > ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: start;
	width: 100%;
	margin-left: 2px;
	max-width: 1180px;
	gap: 70px;
	display: flex;
	position: relative;
	border-right: none;
    
}
.header-nav > ul li {
	list-style: none;
	-webkit-transition: all 0.2s;
	transition: all 0.2s;
}
.header-nav > ul li a {
	text-decoration: none;
	color: #ffffff;
	font-size: 16px;
}
.span-summer{
    color: rgba(84, 219, 221);
}
.discount-banner {
  position: absolute;
  top: 180px; /* как в Figma */
  left: 50%;
  transform: translateX(calc(-50% - 75px)); /* смещение как в Figma */
  width: 1035px;
  max-width: 90%;
  height: 66px;
  padding: 10px 90px 10px 25px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background: linear-gradient(
    90deg,
    rgba(84, 219, 221, 0.9) 47.28%,
    rgba(84, 219, 221, 0.76) 78.74%,
    rgba(84, 219, 221, 0.6) 90.1%,
    rgba(84, 219, 221, 0) 97.52%
  );
  z-index: 1;
}


/* Текст внутри плашки */
.discount-banner__text {
  width: 920px;
  max-width: 100%;
  font-family: 'Halvar Breit', sans-serif;
  font-weight: 700;
  font-size: 42px;
  line-height: 110%;

  color: #FFFFFF;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  margin: 0;
}
.header-nav > ul li:hover {
	scale: 1.05;
	font-weight: 700;
}

.btn-border {
	border: 1px solid #000;
	background: transparent;
	color: #000;
	background: -webkit-gradient(linear, right top, left top, color-stop(50%, transparent), color-stop(50%, #000)) right;
	background: linear-gradient(to left, transparent 50%, #000 50%) right;
	background-size: 200%;
	-webkit-transition: 0.5s ease-out;
	transition: 0.5s ease-out;
}
.btn-border:hover {
	background-position: left;
	color: #fff;
}

.btn-black {
	border: none;
	background: #000;
	color: #fff;
	background: -webkit-gradient(linear, right top, left top, color-stop(50%, #000), color-stop(50%, #54dbdd)) right;
	background: linear-gradient(to left, #000 50%, #54dbdd 50%) right;
	background-size: 200%;
	-webkit-transition: 0.5s ease-out;
	transition: 0.5s ease-out;
}
.btn-black:hover {
	background-position: left;
}

.btn-white {
	background: #fff;
	border: none;
	color: #000;
	background: -webkit-gradient(linear, right top, left top, color-stop(50%, #fff), color-stop(50%, #000)) right;
	background: linear-gradient(to left, #fff 50%, #000 50%) right;
	background-size: 200%;
	-webkit-transition: 0.5s ease-out;
	transition: 0.5s ease-out;
}
.btn-white:hover {
	background-position: left;
	color: #fff;
}

.header-callback {
	height: 48px;
	max-width: 223px;
	font-size: 15px;
	font-weight: 700;
	width: 100%;
}

.header-callback svg {
	width: 27px;
}

.header-callback-pin {
	display: none;
}

.home {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: start;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	top: 0;
	width: 100%;
	position: relative;
	height: 708px;
}

.home-box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: start;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: start;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	max-width: 1180px;
	width: 100%;
}

.home-title {
	font-size: 61px;
	font-weight: 700;
	color: #fff;
	padding-top: 53px;
}

.home-subtitle {
	font-size: 33px;
	font-weight: 400;
	width: 100%;
	max-width: 713px;
	color: #fff;
	padding-top: 30px;
}
.home-subtitle span {
	font-size: 38px;
	font-weight: 700;
	color: #fff;
	background: #3b9db2;
}

.home-get-btn {
	font-size: 15px;
	font-weight: 700;
	margin-top: 66px;
	height: 60px;
	max-width: 380px;
	width: 100%;
}

.home-get-btn-mob {
	display: none;
}

.home-offers {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: start;
	gap: 26px;
	margin-top: 94px;
}

.home-offers-item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: start;
	gap: 29px;
}
.home-offers-item p {
	font-size: 30px;
	font-weight: 500;
	color: #fff;
}
.home-offers-item p span {
	font-size: 20px;
}

.promotion {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 100%;
	height: 177px;
	-webkit-backdrop-filter: blur(3px);
	backdrop-filter: blur(3px);
	border-bottom: 1px solid rgba(0, 0, 0, 0.3607843137);
}

.promotion-box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	max-width: 1180px;
	width: 100%;
}

.timer-title {
	font-size: 27px;
	font-weight: 500;
	font-family: Halvar Breit Md;
}

.promotion-get-btn {
	height: 48px;
	max-width: 254px;
	width: 100%;
	color: #fff;
	font-size: 15px;
	font-weight: 700;
}

.benefits {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 100%;
}

.benefits-box {
	margin-top: 22px;
	max-width: 1180px;
	width: 100%;
	height: 147px;
	background: #f2f2f2;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	justify-content: space-evenly;
}

.benefits-item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 10px;
	text-align: center;
	cursor: pointer;
	transition: all 0.4s;
}
.benefits-item:hover {
	scale: 1.05;
}
.benefits-border {
	height: 110px;
	width: 1px;
	background: rgba(0, 0, 0, 0.2117647059);
}
.benefits-item p {
	font-size: 18px;
	font-weight: 500;
	font-family: Halvar Breit Md;
}
.benefits-item img {
	width: auto;
	height: auto;
}

.models {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	position: relative;
}

.models-title-wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: start;
	margin-top: 60px;
	max-width: 1180px;
	width: 100%;
}

.models-title {
	font-size: 48px;
	font-weight: 500;
	color: #0f171a;
	font-family: Halvar Breit Md;
}

.models-cards-box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: space-evenly;
	-ms-flex-pack: space-evenly;
	justify-content: space-evenly;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 50px;
	margin-top: 45px;
	width: 100%;
}

.models-card {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	max-width: 1180px;
	height: 383px;
	width: 100%;
	background-image: url(../img/model-card__back.webp);
	background-position: right;
	background-size: contain;
	background-repeat: no-repeat;
}

.card-car-box {
	max-width: 580px;
	width: 100%;
	height: 100%;
}
.card-car-box img {
	margin-left: -50px;
}

.card-car-title {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: start;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: start;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	max-width: 580px;
	width: 100%;
}
.card-car-title > p {
	font-size: 33px;
	font-weight: 500;
	font-family: Halvar Breit Md;
	text-transform: uppercase;
	max-width: 500px;
}
.card-car-title > p span {
	text-decoration: underline;
	font-weight: 500;
	font-family: Halvar Breit Md;
}

.card-inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: start;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: start;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	width: 100%;
	height: 100%;
	background: transparent;
	padding-right: 20px;
}

.card-top-info {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	width: 100%;
	    margin: 20px 0;
    margin-bottom: 0;
    padding-top: 0px;
    padding-left: 25%;
    Text-wrap: nowrap;
}

.card-top-info-mob {
	display: none;
}

.card-car-counter {
	font-size: 20px;
	font-weight: 500;
	font-family: Halvar Breit Md;
	color: #fff;
}

.card-credit-price {
	font-size: 15px;
	font-weight: 500;
	font-family: Halvar Breit Md;
}

.card-new-price {
	font-size: 40px;
	font-weight: 700;
	color: #0f171a;
	white-space: nowrap;
}

.card-old-price {
	font-size: 20px;
	font-weight: 400;
	text-decoration: line-through;
	color: rgba(15, 23, 26, 0.4509803922);
	-ms-flex-item-align: end;
	align-self: flex-end;
}

.card-benefits {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: start;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	margin-top: 25px;
	width: 100%;
	height: 50%;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	max-width: 580px;
	white-space: nowrap;
    justify-content: flex-end;
}
.card-benefits li {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: stretch;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	gap: 15px;
	list-style: none;
	-ms-flex-preferred-size: 35%;
	flex-basis: 35%;
}
.card-benefits li img {
	width: 33px;
	height: 33px;
}
.card-benefits li p {
	font-size: 18px;
	font-weight: 500;
	font-family: Halvar Breit Md;
}

.card-buttons {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	width: 100%;
	gap: 10px;
	margin-top: 38px;
}

.btn-models-credit {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: space-evenly;
	-ms-flex-pack: space-evenly;
	justify-content: space-evenly;
	width: 100%;
	max-width: 580px;
	height: 57px;
	cursor: pointer;
	-webkit-transition: 0.7s;
	transition: 0.7s;
	font-size: 15px;
	font-weight: 700;
}
/* .btn-models-credit:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
} */

.btn-models-get {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: space-evenly;
	-ms-flex-pack: space-evenly;
	justify-content: space-evenly;
	width: 100%;
	max-width: 280px;
	height: 57px;
	font-size: 15px;
	font-weight: 700;
	cursor: pointer;
	-webkit-transition: 0.7s;
	transition: 0.7s;
}
/* .btn-models-get:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
} */

.swiper-button-next:after,
.swiper-button-prev:after {
	font-size: 8px;
	color: #fff;
	background: #296478;
	width: 20px;
	height: 20px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.swiper-pagination-bullet {
	max-width: 99px;
	width: 100%;
	height: 5px;
	border-radius: 0;
	-webkit-transition: 0.5s;
	transition: 0.5s;
}

.swiper-pagination-bullet-active {
	max-width: 156px;
	-webkit-transition: 0.5s;
	transition: 0.5s;
	background: #3b9db2;
}

.models-swiper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	height: 100%;
	max-width: 642px;
	position: static;
}

.models-swiper > .swiper-wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	height: 100%;
	width: 100%;
}

.models-swiper > .swiper-wrapper > .swiper-slide {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	max-width: 100%;
	max-height: 365px;
	height: 100%;
	width: 100%;
	position: relative;
}

.models-swiper > .swiper-wrapper > .swiper-slide > a > img {
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: center;
	object-position: center;
}

.tradein {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	margin-top: 60px;
	width: 100%;
}

.tradein-wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	max-width: 1180px;
	height: 409px;
	width: 100%;
}

.tradein-title-wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: start;
	width: 100%;
	max-width: 1180px;
}

.tradein-title {
	font-size: 48px;
	font-weight: 500;
	font-family: Halvar Breit Md;
	margin-bottom: 28px;
}

.tradein-info {
	font-size: 25px;
	font-weight: 400;
	margin-bottom: 66px;
	max-width: 470px;
}

.tradein-info-box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: start;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: start;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	max-width: 600px;
	width: 100%;
	height: 100%;
	background: #f2f2f2;
	padding: 37px 36px 32px 64px;
}

.tradein-info-title {
	font-size: 30px;
	font-weight: 500;
	font-family: Halvar Breit Md;
	margin-bottom: 15px;
}

.tradein-img {
	width: 100%;
}

.tradein-form {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: start;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: start;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	width: 100%;
}
.form-tel {
	border-radius: 0;
}
.tradein-form .form-tel {
	max-width: 454px;
	height: 40px;
	width: 100%;
	background: transparent;
	color: rgba(0, 0, 0, 0.4901960784);
	font-size: 15px;
	font-weight: 400;
	border: none;
	border-bottom: 2px solid rgba(0, 0, 0, 0.3607843137);
}
.tradein-form .form-tel::-webkit-input-placeholder {
	color: rgba(0, 0, 0, 0.4901960784);
	font-size: 15px;
	font-weight: 400;
}
.tradein-form .form-tel::-moz-placeholder {
	color: rgba(0, 0, 0, 0.4901960784);
	font-size: 15px;
	font-weight: 400;
}
.tradein-form .form-tel:-ms-input-placeholder {
	color: rgba(0, 0, 0, 0.4901960784);
	font-size: 15px;
	font-weight: 400;
}
.tradein-form .form-tel::-ms-input-placeholder {
	color: rgba(0, 0, 0, 0.4901960784);
	font-size: 15px;
	font-weight: 400;
}
.tradein-form .form-tel::placeholder {
	color: rgba(0, 0, 0, 0.4901960784);
	font-size: 15px;
	font-weight: 400;
}
.tradein-form .form-btn {
	margin-top: 30px;
	max-width: 454px;
	width: 100%;
	height: 54px;
	font-size: 15px;
	font-weight: 700;
}
.tradein-form .custom-checkbox {
	border-color: #31363a;
}
.tradein-form .form-text {
	font-size: 12px;
	font-weight: 400;
	margin-top: 17px;
	color: #000;
	max-width: 428px;
}
.tradein-form .form-text span {
	color: #54dbdd;
}

textarea:focus,
input:focus {
	outline: none;
}

.form-checkbox-container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: start;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 10px;
	width: 100%;
	color: #fff;
	position: relative;
}

input[type='checkbox'] {
	position: absolute;
	opacity: 0;
	width: 1px;
	height: 1px;
	left: 5px;
}

.form-text {
	max-width: 428px;
	color: #0f171a;
	font-size: 10px;
	font-weight: 400;
}

.custom-checkbox {
	width: 11px;
	height: 11px;
	border: 1px solid #31363a;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	background-color: transparent;
}

.custom-checkbox img {
	width: 8px;
	height: 6px;
	opacity: 0;
	-webkit-filter: invert(22%) sepia(19%) saturate(205%) hue-rotate(164deg) brightness(93%) contrast(100%);
	filter: invert(22%) sepia(19%) saturate(205%) hue-rotate(164deg) brightness(93%) contrast(100%);
}

input[type='checkbox']:checked + span img {
	opacity: 1;
}

.equip {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	margin-top: 61px;
	width: 100%;
}

.equip-title-wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: start;
	width: 100%;
	max-width: 1180px;
	margin-bottom: 43px;
}

.equip-title {
	font-size: 53px;
	font-weight: 400;
	color: #0f171a;
}

.equip-filter {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: start;
	gap: 20px;
	width: 100%;
	max-width: 1180px;
}

.select2 {
	width: 100%;
	max-width: 380px;
	height: 57px;
	border: 1px solid #000;
	-ms-flex-line-pack: center;
	align-content: center;
	overflow: hidden;
	-ms-flex-item-align: start;
	align-self: flex-start;
	margin-bottom: 71px !important;
}

.select2-container--default .select2-selection--single {
	border: none;
	width: 100%;
	height: 100% !important;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background: transparent !important;
}

.select2-selection__rendered {
	color: rgba(15, 23, 26, 0.5411764706);
	font-size: 15px;
	font-weight: 500;
	font-family: Halvar Breit Md;
	margin-left: 10px;
	height: 100% !important;
	width: 100%;
	display: -webkit-box !important;
	display: -ms-flexbox !important;
	display: flex !important;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	background: transparent;
}

.select2-selection__arrow {
	background: url(../img/ico/filter-arrow.svg);
	top: unset !important;
	right: 10px !important;
	width: 24px !important;
}
.select2-selection__arrow b {
	border-style: none !important;
}

.select2-search--dropdown {
	display: none;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
	background-color: #54dbdd;
}

.select2-container--default .select2-results__option--selected {
	background-color: #f2f2f2;
}

.equip-cards-box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	max-width: 1180px;
	width: 100%;
	height: 100%;
	gap: 20px;
}

.equip-card {
	height: 100%;
	width: 100%;
	max-width: 1180px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: start;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: start;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	border-bottom: 1px solid rgba(0, 0, 0, 0.3607843137);
	padding-bottom: 21px;
}

.equip-card-inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	width: 100%;
}

.equip-card-car-title {
	font-size: 30px;
	font-weight: 500;
	font-family: Halvar Breit Md;
	margin-bottom: 9px;
	text-transform: uppercase;
}
.equip-card-car-title span {
	font-weight: 500;
	font-family: Halvar Breit Md;
	text-decoration: underline;
	text-transform: uppercase;
}

.equip-card-car-equip {
	font-size: 20px;
	font-weight: 400;
	margin-bottom: 5px;
}

.equip-card-car-img-wrapper {
	max-width: 414px;
	width: 100%;
	height: auto;
	margin-bottom: 5px;
}
.equip-card-car-img-wrapper img {
	width: 100%;
}

.equip-card-car-info {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: start;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: start;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 17px;
}

.equip-card-car-info-item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: start;
	gap: 15px;
}
.equip-card-car-info-item p {
	font-size: 18px;
	font-weight: 400;
}
.equip-card-car-info-item img {
	width: 29px;
	height: 29px;
}

.equip-card-car-btns {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: start;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: start;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 26px;
	width: 100%;
	max-width: 380px;
}

.equip-card-car-credit {
	max-width: 380px;
	width: 100%;
	height: 57px;
	font-size: 15px;
	font-weight: 700;
}

.equip-card-car-get {
	max-width: 380px;
	width: 100%;
	height: 57px;
	font-size: 15px;
	font-weight: 700;
}

.show-more-wrapper {
	max-width: 1180px;
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: end;
	margin-top: 39px;
}

.equip-show-more {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: end;
	gap: 19px;
	border: none;
	background: transparent;
}

.equip-show-more p {
	font-size: 19px;
	font-weight: 500;
	font-family: Halvar Breit Md;
}
.equip-show-more img {
	width: 24px;
	height: 24px;
}

.filtered-show,
.showmore-show {
	display: block;
	opacity: 1;
	transition: 0.3s;
}

.filtered-hide,
.showmore-hide {
	display: none !important;
	opacity: 0;
}

.credit {
	margin-top: 60px;
	width: 100%;
	height: 100%;
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.credit-back {
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: center;
	object-position: center;
	    height: 426px;
	max-width: 580px;
	top: 0;
	right: 0;
	z-index: 0;
}

.credit-wrapper {
	width: 100%;
	max-width: 1180px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: start;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: start;
}

.credit-inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: start;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: start;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	background: #f2f2f2;
	max-width: 600px;
	width: 100%;
	padding: 37px 65px 31px 64px;
}

.credit-title-wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: start;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: start;
	width: 100%;
	max-width: 1180px;
	margin-bottom: 30px;
}

.credit-title {
	font-size: 48px;
	font-weight: 500;
	font-family: Halvar Breit Md;
}

.credit-inner-title {
	font-size: 30px;
	font-weight: 500;
	font-family: Halvar Breit Md;
}

.credit-info {
	margin-top: 16px;
	font-size: 25px;
	font-weight: 400;
}

.credit-form {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	width: 100%;
	margin-top: 45px;
}
.credit-form .form-tel {
	max-width: 454px;
	height: 40px;
	width: 100%;
	background: transparent;
	color: rgba(0, 0, 0, 0.4901960784);
	font-size: 15px;
	font-weight: 400;
	border: none;
	border-bottom: 2px solid rgba(0, 0, 0, 0.3607843137);
	border-radius: 0;
}
.credit-form .form-tel::-webkit-input-placeholder {
	color: rgba(0, 0, 0, 0.4901960784);
	font-size: 15px;
	font-weight: 400;
}
.credit-form .form-tel::-moz-placeholder {
	color: rgba(0, 0, 0, 0.4901960784);
	font-size: 15px;
	font-weight: 400;
}
.credit-form .form-tel:-ms-input-placeholder {
	color: rgba(0, 0, 0, 0.4901960784);
	font-size: 15px;
	font-weight: 400;
}
.credit-form .form-tel::-ms-input-placeholder {
	color: rgba(0, 0, 0, 0.4901960784);
	font-size: 15px;
	font-weight: 400;
}
.credit-form .form-tel::placeholder {
	color: rgba(0, 0, 0, 0.4901960784);
	font-size: 15px;
	font-weight: 400;
}
.credit-form .form-btn {
	margin-top: 30px;
	max-width: 454px;
	width: 100%;
	height: 54px;
	font-size: 15px;
	font-weight: 700;
}
.credit-form .custom-checkbox {
	border-color: #31363a;
}
.credit-form .form-text {
	font-size: 12px;
	font-weight: 400;
	margin-top: 17px;
	color: #000;
	max-width: 428px;
}
.credit-form .form-text span {
	color: #54dbdd;
}

.personal-data {
	color: #000;
}

.profit {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 100%;
	margin-top: 60px;
}

.profit-wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: space-evenly;
	-ms-flex-pack: space-evenly;
	justify-content: space-evenly;
	max-width: 1180px;
	width: 100%;
	height: 257px;
	background: #000;
}

.profit-info {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: start;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.profit-title {
	font-size: 30px;
	font-weight: 500;
	font-family: Halvar Breit Md;
	color: #fff;
	max-width: 447px;
	margin-bottom: 25px;
}

.profit-subtitle {
	font-size: 25px;
	font-weight: 400;
	color: #fff;
}

.profit-form {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	width: 100%;
	margin-top: 45px;
	max-width: 380px;
}
.profit-form .form-tel {
	max-width: 374px;
	height: 40px;
	width: 100%;
	background: transparent;
	color: rgba(255, 255, 255, 0.4901960784);
	font-size: 15px;
	font-weight: 400;
	border: none;
	border-bottom: 2px solid rgba(255, 255, 255, 0.4901960784);
}
.profit-form .form-tel::-webkit-input-placeholder {
	color: rgba(255, 255, 255, 0.4901960784);
	font-size: 15px;
	font-weight: 400;
}
.profit-form .form-tel::-moz-placeholder {
	color: rgba(255, 255, 255, 0.4901960784);
	font-size: 15px;
	font-weight: 400;
}
.profit-form .form-tel:-ms-input-placeholder {
	color: rgba(255, 255, 255, 0.4901960784);
	font-size: 15px;
	font-weight: 400;
}
.profit-form .form-tel::-ms-input-placeholder {
	color: rgba(255, 255, 255, 0.4901960784);
	font-size: 15px;
	font-weight: 400;
}
.profit-form .form-tel::placeholder {
	color: rgba(255, 255, 255, 0.4901960784);
	font-size: 15px;
	font-weight: 400;
}
.profit-form .form-btn {
	margin-top: 18px;
	max-width: 374px;
	width: 100%;
	height: 54px;
	font-size: 15px;
	font-weight: 700;
	color: #fff;
	border: none;
	background: -webkit-gradient(linear, right top, left top, color-stop(50%, #54dbdd), color-stop(50%, #fff)) right;
	background: linear-gradient(to left, #54dbdd 50%, #fff 50%) right;
	background-size: 200%;
	-webkit-transition: 0.5s ease-out;
	transition: 0.5s ease-out;
}
.profit-form .form-btn:hover {
	background-position: left;
	color: #000;
}
.profit-form .form-checkbox-container {
	margin-top: 19px;
}
.profit-form .custom-checkbox {
	border-color: #fff;
	width: 25px;
	height: 14px;
}
.profit-form .custom-checkbox img {
	-webkit-filter: invert(100%) sepia(19%) saturate(205%) hue-rotate(164deg) brightness(93%) contrast(100%);
	filter: invert(100%) sepia(19%) saturate(205%) hue-rotate(164deg) brightness(93%) contrast(100%);
}
.profit-form .form-text {
	font-size: 10px;
	font-weight: 400;
	color: #fff;
	max-width: 428px;
}
.profit-form .form-text span {
	color: #54dbdd;
}

.contacts {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	width: 100%;
	margin-top: 60px;
}

.contacts-title-wrapper {
	max-width: 1180px;
	width: 100%;
	margin-bottom: 28px;
}

.contacts-title {
	font-size: 48px;
	font-weight: 500;
	font-family: Halvar Breit Md;
}

.contacts-title br {
	display: none;
}

.contacts-wrapper {
	height: 518px;
	width: 100%;
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: end;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	padding-bottom: 54px;
}

.contacts-back {
	position: absolute;
	top: 0;
	left: 0;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: center;
	object-position: center;
	width: 100%;
	height: 100%;
	z-index: 0;
}

[class*='copyrights-pane'] {
	display: none !important;
}

.contacts-inner {
	max-width: 1180px;
	width: 100%;
	height: 142px;
	position: relative;
	background: #000;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: start;
	z-index: 1;
}

.contacts-logo {
	margin-top: 49px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 90%;
	padding: 0 15px;
	padding-bottom: 34px;
}

.contacts-text-box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: space-evenly;
	-ms-flex-pack: space-evenly;
	justify-content: space-evenly;
	margin-bottom: 17px;
	width: 100%;
}

.contacts-tel {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: start;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: start;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 11px;
	color: #fff;
}
.contacts-tel h1 {
	font-size: 24px;
	font-weight: 700;
}
.contacts-tel a {
	color: #fff;
	font-size: 15px;
	font-weight: 400;
	text-decoration: none;
}

.contacts-address {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: start;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: start;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	/* gap: 11px; */
	color: #fff;
	max-width: 228px;
	position: relative;
	top: 3px;
}
.contacts-address h1 {
	font-size: 24px;
	font-weight: 700;
}
.contacts-address p {
	color: #fff;
	font-size: 15px;
	font-weight: 400;
	position: relative;
	top: 11px;
}

.contacts-time {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: start;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: start;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 11px;
	color: #fff;
}
.contacts-time h1 {
	font-size: 24px;
	font-weight: 700;
}
.contacts-time p {
	color: #fff;
	font-size: 15px;
	font-weight: 400;
}

.contacts-btn {
	max-width: 253px;
	width: 100%;
	height: 53px;
	font-size: 15px;
	font-weight: 700;
	background: -webkit-gradient(linear, right top, left top, color-stop(50%, #fff), color-stop(50%, #54dbdd)) right;
	background: linear-gradient(to left, #fff 50%, #54dbdd 50%) right;
	background-size: 200%;
	-webkit-transition: 0.5s ease-out;
	transition: 0.5s ease-out;
	border: none;
}
.contacts-btn:hover {
	background-position: left;
	color: #fff;
}

footer {
	height: auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: center;
	flex-direction: column;
	position: relative;
	background: #f0f0f0;
	overflow: hidden;
	padding-bottom: 27px;
}

.footer-banks {
	padding: 20px 0;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 20px;
}

.footer-back {
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 0;
	-o-object-position: bottom left;
	object-position: bottom left;
	-o-object-fit: contain;
	object-fit: contain;
}

.footer-inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 24px;
	max-width: 1180px;
}

.footer-wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.footer-reserved {
	font-size: 14px;
	font-weight: 400;
}

.footer-license {
	font-size: 12px;
	line-height: 14px;
	margin-top: 22px;
}

.footer-more {
	font-size: 12px;
	margin-top: 10px;
}

.footer-nav {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: start;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	width: 100%;
}
.footer-nav a {
	text-decoration: underline;
	color: #54dbdd;
	font-size: 16px;
	font-weight: 400;
	-webkit-transition: all 0.3s;
	transition: all 0.3s;
}
/* .footer-nav a:hover {
  scale: 1.02;
} */

.fancybox__content > .f-button.is-close-btn {
	top: 5px;
	right: 5px;
	--f-button-color: #000000c6;
	--f-button-hover-color: #000;
}

.modal-callback {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: start;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	position: absolute;
	z-index: 100;
	max-width: 735px;
	width: 100%;
	height: 400px;
}
.modal-callback .modal-box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: start;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: start;
	width: 100%;
}
.modal-callback .modal-img {
	width: 100%;
	height: 400px;
}
.modal-callback .modal-wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: start;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: start;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	width: 100%;
	max-width: 352px;
	padding: 37px 26px 18px 22px;
}
.modal-callback .modal-title {
	font-size: 22px;
	font-weight: 500;
	font-family: Halvar Breit Md;
}
.modal-callback .modal-form {
	-ms-flex-item-align: start;
	-ms-grid-row-align: start;
	align-self: start;
	width: 100%;
	margin: 0;
	gap: 10px;
	margin-top: 57px;
	max-width: none;
}
.modal-callback .modal-form > .form-tel {
	background: rgba(255, 255, 255, 0.6392156863);
	height: 44px;
	font-size: 12px;
	font-weight: 400;
	color: rgba(0, 0, 0, 0.4901960784);
	border-bottom: 1px solid rgba(0, 0, 0, 0.3607843137);
}
.modal-callback .modal-form > .form-tel::-webkit-input-placeholder {
	color: rgba(0, 0, 0, 0.4901960784);
	font-size: 12px;
	font-weight: 400;
}
.modal-callback .modal-form > .form-tel::-moz-placeholder {
	color: rgba(0, 0, 0, 0.4901960784);
	font-size: 12px;
	font-weight: 400;
}
.modal-callback .modal-form > .form-tel:-ms-input-placeholder {
	color: rgba(0, 0, 0, 0.4901960784);
	font-size: 12px;
	font-weight: 400;
}
.modal-callback .modal-form > .form-tel::-ms-input-placeholder {
	color: rgba(0, 0, 0, 0.4901960784);
	font-size: 12px;
	font-weight: 400;
}
.modal-callback .modal-form > .form-tel::placeholder {
	color: rgba(0, 0, 0, 0.4901960784);
	font-size: 12px;
	font-weight: 400;
}
.modal-callback .modal-form > .form-btn {
	height: 49px;
	margin-top: 38px;
}
.modal-callback .modal-form > .form-btn p {
	font-size: 12px;
	font-weight: 700;
}
.modal-callback .modal-form .custom-checkbox {
	width: 14px;
	height: 14px;
}
.modal-callback .modal-form .form-text {
	max-width: 260px;
	margin-top: 0;
	font-size: 9px;
	font-weight: 400;
}

.modal-credit {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: start;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	position: absolute;
	z-index: 100;
	max-width: 735px;
	width: 100%;
	height: 400px;
}
.modal-credit .modal-box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: start;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: start;
	width: 100%;
}
.modal-credit .modal-img {
	width: 100%;
	height: 400px;
}
.modal-credit .modal-wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: start;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: start;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	width: 100%;
	max-width: 352px;
	padding: 37px 26px 18px 22px;
}
.modal-credit .modal-title {
	    font-size: 17px;

	font-weight: 500;
	font-family: Halvar Breit Md;
}
.modal-credit .modal-subtitle {
	font-size: 15px;
	font-weight: 400;
	margin-top: 8px;
}
.modal-credit .modal-form {
	-ms-flex-item-align: start;
	-ms-grid-row-align: start;
	align-self: start;
	width: 100%;
	margin: 0;
	gap: 10px;
	margin-top: 32px;
	max-width: none;
}
.modal-credit .modal-form > .form-tel {
	background: rgba(255, 255, 255, 0.6392156863);
	height: 44px;
	font-size: 12px;
	font-weight: 400;
	color: rgba(0, 0, 0, 0.4901960784);
	border-bottom: 1px solid rgba(0, 0, 0, 0.3607843137);
}
.modal-credit .modal-form > .form-tel::-webkit-input-placeholder {
	color: rgba(0, 0, 0, 0.4901960784);
	font-size: 12px;
	font-weight: 400;
}
.modal-credit .modal-form > .form-tel::-moz-placeholder {
	color: rgba(0, 0, 0, 0.4901960784);
	font-size: 12px;
	font-weight: 400;
}
.modal-credit .modal-form > .form-tel:-ms-input-placeholder {
	color: rgba(0, 0, 0, 0.4901960784);
	font-size: 12px;
	font-weight: 400;
}
.modal-credit .modal-form > .form-tel::-ms-input-placeholder {
	color: rgba(0, 0, 0, 0.4901960784);
	font-size: 12px;
	font-weight: 400;
}
.modal-credit .modal-form > .form-tel::placeholder {
	color: rgba(0, 0, 0, 0.4901960784);
	font-size: 12px;
	font-weight: 400;
}
.modal-credit .modal-form > .form-btn {
	height: 49px;
	margin-top: 20px;
}
.modal-credit .modal-form > .form-btn p {
	font-size: 12px;
	font-weight: 700;
}
.modal-credit .modal-form .custom-checkbox {
	width: 14px;
	height: 14px;
}
.modal-credit .modal-form .form-text {
	max-width: 260px;
	margin-top: 0;
	font-size: 9px;
	font-weight: 400;
}

.modal-tradein {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: start;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	position: absolute;
	z-index: 100;
	max-width: 735px;
	width: 100%;
	height: 400px;
}
.modal-tradein .modal-box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: start;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: start;
	width: 100%;
}
.modal-tradein .modal-img {
	width: 100%;
	height: 400px;
}
.modal-tradein .modal-wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: start;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: start;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	width: 100%;
	max-width: 352px;
	padding: 37px 26px 18px 22px;
}
.modal-tradein .modal-title {
	font-size: 22px;
	font-weight: 500;
	font-family: Halvar Breit Md;
}
.modal-tradein .modal-subtitle {
	font-size: 15px;
	font-weight: 400;
	margin-top: 8px;
}
.modal-tradein .modal-form {
	-ms-flex-item-align: start;
	-ms-grid-row-align: start;
	align-self: start;
	width: 100%;
	margin: 0;
	gap: 10px;
	margin-top: 32px;
	max-width: none;
}
.modal-tradein .modal-form > .form-tel {
	background: rgba(255, 255, 255, 0.6392156863);
	height: 44px;
	font-size: 12px;
	font-weight: 400;
	color: rgba(0, 0, 0, 0.4901960784);
	border-bottom: 1px solid rgba(0, 0, 0, 0.3607843137);
}
.modal-tradein .modal-form > .form-tel::-webkit-input-placeholder {
	color: rgba(0, 0, 0, 0.4901960784);
	font-size: 12px;
	font-weight: 400;
}
.modal-tradein .modal-form > .form-tel::-moz-placeholder {
	color: rgba(0, 0, 0, 0.4901960784);
	font-size: 12px;
	font-weight: 400;
}
.modal-tradein .modal-form > .form-tel:-ms-input-placeholder {
	color: rgba(0, 0, 0, 0.4901960784);
	font-size: 12px;
	font-weight: 400;
}
.modal-tradein .modal-form > .form-tel::-ms-input-placeholder {
	color: rgba(0, 0, 0, 0.4901960784);
	font-size: 12px;
	font-weight: 400;
}
.modal-tradein .modal-form > .form-tel::placeholder {
	color: rgba(0, 0, 0, 0.4901960784);
	font-size: 12px;
	font-weight: 400;
}
.modal-tradein .modal-form > .form-btn {
	height: 49px;
	margin-top: 20px;
}
.modal-tradein .modal-form > .form-btn p {
	font-size: 12px;
	font-weight: 700;
}
.modal-tradein .modal-form .custom-checkbox {
	width: 14px;
	height: 14px;
}
.modal-tradein .modal-form .form-text {
	max-width: 260px;
	margin-top: 0;
	font-size: 9px;
	font-weight: 400;
}

.modal-thanks {
	position: absolute;
	z-index: 100;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	max-width: 525px;
	width: 100%;
	height: 322px;
	background: #fff;
}

.modal-thanks-box {
	height: 322px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: start;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 11px;
	padding: 86px 56px 103px 55px;
}

.modal-thanks-title {
	font-size: 35px;
	font-weight: 700;
	color: #54dbdd;
	line-height: 67px;
}

.modal-thanks-text {
	font-size: 25px;
	font-weight: 400;
	text-align: center;
	line-height: 35px;
}

#modal-error .modal-thanks-box {
	gap: 25px;
}
#modal-error .modal-thanks-title {
	font-size: 30px;
	text-align: center;
	line-height: 35px;
}

.hidden {
	display: none;
}

.padding {
	padding: 0;
}

.fancybox__slide {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

@media (min-width: 1440px) and (max-width: 1600px) {
	.header-info {
		margin-bottom: 6vw;
	}
}
@media (min-width: 1024px) and (max-width: 1440px) {
	.header-info {
		margin-bottom: 7vw;
		height: 370px;
		max-width: 590px;
	}
	.header-info-title {
		font-size: 40px;
		-ms-flex-item-align: start;
		align-self: flex-start;
	}
	.header-offers-row p {
		font-size: 26px;
	}
	.header-benefits-box {
		width: 230px;
		height: 105px;
	}
	.benefits-wrapper p {
		font-size: 17px;
	}
	.benefits-wrapper p strong {
		font-size: 19px;
	}
	.card-image {
		top: 120px;
		width: 580px;
	}
}
@media (min-width: 768px) and (max-width: 1024px) {
	.header-logo {
		width: 97px;
		height: 21px;
	}
	.header-nav {
		display: none;
	}
	.header-content-box {
		padding: 0 20px;
	}
	.header-contacts {
		display: none;
	}
	.header-box {
		margin-top: 28px;
		border-bottom: none;
		padding-bottom: 0;
	}
	.header-nav-box {
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		-ms-flex-pack: distribute;
		justify-content: space-around;
		padding-bottom: 28px;
		border-bottom: 1px solid #fff;
		position: relative;
		z-index: 100;
	}
	.header-contacts-mob {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		-webkit-box-pack: end;
		-ms-flex-pack: end;
		justify-content: end;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 5px;
	}
	.header-contacts-mob p {
		font-size: 12px;
		color: #fff;
	}
	.header-nav-menu-mob.active {
		visibility: visible;
		height: 546px;
		opacity: 1;
	}
	.header-nav-menu-mob {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		-webkit-box-pack: space-evenly;
		-ms-flex-pack: space-evenly;
		justify-content: space-evenly;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		width: 100%;
		height: 0px;
		position: fixed;
		top: 75px;
		left: 0;
		z-index: 1;
		opacity: 0;
		visibility: hidden;
		background-position: right;
		background-repeat: no-repeat;
		background-size: cover;
		-webkit-transition: 0.7s;
		transition: 0.7s;
	}
	.header-nav-menu-mob > ul {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: start;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 31px;
		margin: 78px auto 0 auto;
	}
	.header-nav-menu-mob > ul li {
		list-style: none;
		color: #fff;
		font-size: 20px;
	}
	.header-nav-menu-mob > ul a {
		text-decoration: none;
		color: #fff;
	}
	.menu-mob-btn {
		height: 44px;
		max-width: 318px;
		font-size: 15px;
		width: 100%;
		color: #14181e;
		background: linear-gradient(310deg, transparent 7%, #fff 7%);
		position: relative;
		border: none;
	}
	.header-ham-menu {
		height: 24px;
		width: 24px;
		position: relative;
	}
	.header-ham-menu span {
		height: 2px;
		width: 100%;
		background: #3e8ec1;
		position: absolute;
		top: 50%;
		left: 50%;
		-webkit-transform: translate(-50%, -50%);
		transform: translate(-50%, -50%);
		-webkit-transition: 0.7s ease;
		transition: 0.7s ease;
	}
	.header-ham-menu span:nth-child(1) {
		top: 25%;
	}
	.header-ham-menu span:nth-child(3) {
		top: 75%;
	}
	.header-ham-menu.active span:nth-child(1) {
		top: 50%;
		-webkit-transform: translate(-50%, -50%) rotate(45deg);
		transform: translate(-50%, -50%) rotate(45deg);
	}
	.header-ham-menu.active span:nth-child(2) {
		opacity: 0;
	}
	.header-ham-menu.active span:nth-child(3) {
		top: 40%;
		-webkit-transform: translate(-50%, 50%) rotate(-45deg);
		transform: translate(-50%, 50%) rotate(-45deg);
	}
	.models-card {
		max-width: 768px;
	}
	.card-image {
		top: 120px;
		width: 387px;
	}
}
@media (max-width: 768px) {
	html {
		scroll-padding-top: 77px;
	}
	header {
		height: auto;
		position: fixed;
		box-shadow: 0 -15px 22px #000;
	}
	main {
		margin-top: 77px;
	}
	.home {
		height: auto;
	}
	.home-box {
		margin-top: 0;
		padding: 0 20px;
	}
	.home-title {
		padding-top: 25px;
		font-size: 21px;
		font-weight: 700;
	}
	.home-title br {
		display: none;
	}
	.home-subtitle {
		font-size: 17px;
	}
	.home-subtitle span {
		font-size: 21px;
	}
	.home-get-btn {
		display: none;
	}
	.home-get-btn-mob {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		font-size: 15px;
		font-weight: 700;
		height: 48px;
		width: 100%;
	}
	.home-offers {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		margin-top: 0;
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: start;
		width: 100%;
		margin-top: 239px;
		gap: 0 26px;
		padding-bottom: 28px;
	}
	.home-offers-item {
		height: 66px;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		padding: 0;
		padding-bottom: 20px;
	}
	.home-offers-item img {
		width: 43px;
		height: 43px;
	}
	.home-offers-item p {
		font-size: 17px;
		line-height: 21px;
		font-weight: 500;
		max-width: 156px;
		text-align: center;
	}
	.home-offers-item p span {
		font-size: 17px;
		font-weight: 500;
	}
	.promotion {
		height: auto;
	}
	.promotion-box {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		margin: 0 20px;
		gap: 30px;
	}
	.timer-title {
		margin-top: 19px;
		font-weight: 400;
		font-size: 28px;
		font-family: 'Halvar Breit Rg';
	}
	.promotion-get-btn {
		max-width: none;
		height: 55px;
		margin-bottom: 23px;
	}
	.header-callback {
		display: none;
	}
	.header-callback-pin {
		display: block;
		font-size: 12px;
		position: relative;
		z-index: 100;
	}
	.header-logo {
		width: 123px;
		height: 15px;
	}
	.logo-peleton {
		width: 89px;
		height: 19px;
	}
	.header-logo-title p {
		font-size: 18px;
	}
	.header-logo-title::before {
		height: 36px;
		margin-left: 16px;
		margin-right: 16px;
	}
	.header-nav-wrapper {
		display: none;
	}
	.header-nav {
		display: none;
	}
	.header-links {
		display: none;
	}
	.header-content-box {
		padding: 0 20px;
	}
	.header-contacts {
		display: none;
	}
	.header-box {
		padding: 0 20px;
		margin-top: 21px;
		border-bottom: none;
		padding-bottom: 0;
		margin-bottom: 19px;
		height: auto;
	}
	.header-nav-box {
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		border-bottom: 1px solid #fff;
	}
	.header-row {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		gap: 5px;
	}
	.header-contacts-mob {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		-webkit-box-pack: end;
		-ms-flex-pack: end;
		justify-content: end;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 5px;
	}
	.header-contacts-mob p {
		font-size: 12px;
		color: #fff;
	}
	.header-top-info {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}
	.header-nav-menu-mob {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: start;
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: start;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		width: 100%;
		background: #f2f2f2;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 1;
		opacity: 0;
		visibility: hidden;
		background-position: right;
		background-repeat: no-repeat;
		background-size: cover;
		-webkit-transition: 0.7s;
		transition: 0.7s;
	}
	.header-nav-menu-mob > ul {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: start;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: start;
		gap: 16px;
		padding: 33px 20px 0 20px;
		border-top: 1px solid rgba(0, 0, 0, 0.2117647059);
		width: 100%;
	}
	.header-nav-menu-mob > ul li {
		list-style: none;
		color: #0f171a;
		font-size: 16px;
		font-weight: 400;
	}
	.header-nav-menu-mob > ul a {
		text-decoration: none;
		color: #0f171a;
	}
	.header-nav-menu-mob .header-col {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		margin: 36px 0px 0 0px;
		padding: 0 19px;
		gap: 15px;
		width: 100%;
	}
	.header-nav-menu-mob .header-row {
		gap: 18px;
		-ms-flex-item-align: center;
		-ms-grid-row-align: center;
		align-self: center;
	}
	.header-nav-menu-mob .header-row p {
		font-size: 14px;
		font-weight: 400;
	}
	.header-nav-menu-mob .header-logo-title {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
	.header-nav-menu-mob .header-logo-title p {
		font-size: 18px;
	}
	.header-nav-menu-mob .header-logo-title::before {
		content: '';
		display: block;
		height: 36px;
		width: 1px;
		background: rgba(0, 0, 0, 0.2117647059);
		margin-left: 16px;
		margin-right: 16px;
	}
	.header-nav-menu-mob .logo-mob {
		width: 123px;
		height: 15px;
		margin-top: 31px;
		margin-left: 5vw;
		margin-bottom: 32px;
	}
	.header-nav-menu-mob .menu-mob-btn {
		margin: 25px 20px 35px 20px;
		height: 48px;
		max-width: 320px;
		width: 100%;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		-ms-flex-pack: distribute;
		justify-content: space-around;
		align-self: center;
	}
	.header-nav-menu-mob .menu-mob-btn p {
		font-size: 12px;
		font-weight: 700;
	}
	.header-nav-menu-mob.active {
		visibility: visible;
		height: auto;
		opacity: 1;
	}
	.header-nav-models {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		position: relative;
		max-width: 160px;
		width: 100%;
		height: auto;
	}
	.header-nav-link span {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		gap: 5px;
	}
	.header-nav-item {
		background: none;
	}
	.overflow {
		overflow: hidden;
	}
	.header-ham-menu {
		height: 24px;
		width: 24px;
		position: relative;
		z-index: 100;
	}
	.header-ham-menu span {
		height: 2px;
		width: 100%;
		background: black;
		position: absolute;
		-webkit-transition: 0.7s ease;
		transition: 0.7s ease;
		border-radius: 2px;
	}
	.header-ham-menu span:nth-child(1) {
		top: 25%;
	}
	.header-ham-menu span:nth-child(2) {
		top: 50%;
	}
	.header-ham-menu span:nth-child(3) {
		top: 75%;
	}
	.header-ham-menu.active span:nth-child(1) {
		width: 50%;
	}
	.header-ham-menu.active span:nth-child(2) {
		width: 75%;
	}
	.benefits-box {
		height: auto;
		width: 100%;
		padding: 30px 0;
		margin: 0 20px;
		margin-top: 22px;
		justify-content: space-evenly;
	}
	.benefits-item img {
		width: 29px;
		height: 29px;
	}
	.benefits-item p {
		font-size: 10px;

                max-width: 100px;

	}
	.benefits-border {
		height: 69px;
	}
	.models-title {
		font-size: 26px;
		margin: 0 20px;
	}
	.models-title-wrapper {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: start;
		margin-top: 60px;
		max-width: 1180px;
		width: 100%;
	}
	.models-filter {
		margin-top: 20px;
	}
	.models-filter-item {
		font-size: 20px;
	}
	.models-cards-box {
		padding: 0 20px;
		margin-top: 37px;
	}
	.models-card {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		height: auto;
		background-image: url(../img/model-card-back__mob.png);
		background-position: bottom;
		background-size: 100% 397px;
		background-repeat: no-repeat;
	}
	.card-car-title > p {
		font-size: 18px;
		font-weight: 500;
		font-family: Halvar Breit Md;
		margin-bottom: 26px;
	}
	.card-car-box {
		max-width: none;
	}
	.card-car-box img {
		width: 100%;
		margin-left: 0;
	}
	.card-gallery {
		height: 201px;
	}
	.swiper-pagination-bullet-active {
		max-width: 76px;
		height: 3px;
	}
	.swiper-pagination-bullet {
		max-width: 48px;
		height: 3px;
	}
	.card-car-title {
		font-size: 25px;
	}
	.card-new-price {
		font-size: 25px;
	}
	.card-credit-price {
		font-size: 14px;
	}
	.card-old-price {
		font-size: 15px;
	}
	.card-top-info {
		display: none;
	}
	.card-top-info-mob {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: start;
		height: 26px;
		width: 100%;
		margin-bottom: 25px;
	}
	.card-credit-price {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		font-size: 11px;
		font-weight: 500;
		font-family: Halvar Breit Md;
		background: #f0f0f0;
		height: 26px;
		max-width: 85px;
		width: 100%;
	}
	.card-car-counter {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: start;
		background: linear-gradient(236deg, transparent 7%, #54dbdd 7%);
		font-size: 11px;
		font-weight: 500;
		font-family: Halvar Breit Md;
		height: 26px;
		width: 100%;
		padding-left: 6px;
		gap: 5px;
	}
	.card-benefits {
		padding-top: 0;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: start;
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: start;
		width: 100%;
		height: 50%;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		max-width: 580px;
		white-space: nowrap;
		gap: 10px 22px;
	}
	.card-benefits li {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: start;
		gap: 5px;
		list-style: none;
		-ms-flex-preferred-size: 45%;
		flex-basis: 45%;
	}
	.card-benefits li:nth-child(3) p {
		max-width: 66px;
	}
	.card-benefits li:nth-child(4) br {
		display: block;
	}
	.card-benefits li:nth-child(4) p {
		max-width: 125px;
	}
	.card-benefits li p {
		font-size: 10px;
	}
	.card-benefits li img {
		width: 23px;
		height: 23px;
	}
	.card-inner {
		height: unset;
		padding: 0 10px;
	}
	.card-buttons {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 8px;
		margin-top: 18px;
		margin-bottom: 24px;
	}
	.btn-models-credit {
		max-width: none;
	}
	.btn-models-get {
		max-width: none;
	}
	.tradein {
		padding: 0 20px;
		margin-top: 50px;
	}

	.tradein-title-wrapper {
		justify-content: center;
	}
	.tradein-title {
		font-size: 26px;
		margin-bottom: 20px;
	}
	.tradein-wrapper {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		height: auto;
		max-width: none;
	}
	.tradein-img {
		width: 100%;
		height: auto;
	}
	.tradein-info-title {
		font-size: 20px;
	}
	.tradein-info-title {
		margin-bottom: 20px;
	}
	.tradein-info {
		font-size: 15px;
		font-weight: 400;
		margin-bottom: 37px;
	}
	.tradein-info-box {
		padding: 25px 17px;
	}
	.select2 {
		margin-bottom: 10px !important;
		height: 48px;
	}
	.tradein-form {
		gap: 10px;
	}
	.select2-selection__rendered {
		font-size: 14px;
	}
	.select2-selection__arrow {
		margin-top: 5px;
		margin-right: 5px;
	}
	.tradein-form .form-text {
		font-size: 8px;
		margin-top: 0;
	}
	.form-tel {
		height: 48px;
	}
	.form-tel::-webkit-input-placeholder {
		font-size: 14px;
	}
	.form-tel::-moz-placeholder {
		font-size: 14px;
	}
	.form-tel:-ms-input-placeholder {
		font-size: 14px;
	}
	.form-tel::-ms-input-placeholder {
		font-size: 14px;
	}
	.form-tel::placeholder {
		font-size: 14px;
	}
	.form-btn {
		margin-top: 12px;
	}
	.form-btn p {
		font-size: 14px;
	}
	.custom-checkbox {
		width: 23px;
		height: 14px;
	}
	.equip {
		padding: 0 20px;
		margin-top: 50px;
	}
	.equip-title-wrapper {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		margin-bottom: 28px;
	}
	.equip-title {
		font-size: 24px;
		font-weight: 500;
		font-family: Halvar Breit Md;
	}
	.equip-cards-box {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
	.equip-filter {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 12px;
		margin-bottom: 38px;
	}
	.equip-filter > .select2 {
		margin-bottom: 0 !important;
		-ms-flex-item-align: center;
		-ms-grid-row-align: center;
		align-self: center;
	}
	.equip-card-inner {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
	.equip-card-car-title {
		font-size: 20px;
		white-space: nowrap;
		text-transform: uppercase;
	}
	.equip-card-car-equip {
		font-size: 15px;
	}
	.equip-show-more {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
	.equip-card-car-info {
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		gap: 13px 0;
		margin-top: 9px;
		margin-bottom: 25px;
	}
	.equip-card-car-info-item {
		-ms-flex-preferred-size: 50%;
		flex-basis: 50%;
		gap: 10px;
	}
	.equip-card-car-info-item p {
		font-size: 10px;
	}
	.equip-card-car-info-item img {
		width: 25px;
		height: 25px;
	}
	.equip-card-car-btns {
		gap: 11px;
	}
	.equip-card-car-credit svg {
		width: 29px;
		height: 15px;
	}
	.equip-card-car-get svg {
		width: 29px;
		height: 15px;
	}
	.show-more-wrapper {
		justify-content: center;
	}
	.header-back {
		position: absolute;
		top: 0;
		left: 0;
		-o-object-fit: cover;
		object-fit: cover;
		-o-object-position: center;
		object-position: center;
		width: 100%;
		z-index: -1;
	}
	.credit {
		padding: 0 20px;
		margin-top: 50px;
	}
	.credit-title-wrapper {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		margin-bottom: 40px;
	}
	.credit-title {
		font-size: 24px;
		font-weight: 500;
		font-family: Halvar Breit Md;
	}
	.credit-content-box {
		margin-top: 47px;
		position: relative;
		height: 660px;
		border-bottom: 1px solid #fff;
	}
	.credit-wrapper {
		height: 100%;
		padding: 0;
		margin: 0 20px;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
	.credit-inner {
		padding: 22px;
	}
	.credit-inner-title {
		font-size: 20px;
		font-weight: 500;
		font-family: Halvar Breit Md;
	}
	.credit-info {
		margin-top: 10px;
		font-size: 16px;
	}
	.credit-back {
		height: auto;
		width: 100%;
		-webkit-filter: none;
		filter: none;
		-o-object-position: top;
		object-position: top;
	}
	.credit-benefits {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		margin-top: 18px;
		gap: 8px;
	}
	.credit-benefits-item {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: start;
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: start;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 8px;
	}
	.credit-benefits-item li span {
		font-size: 13px;
		font-weight: 600;
	}
	.credit-benefits-item li svg {
		width: 16px;
	}
	.credit-form {
		gap: 20px;
	}
	.credit-form .form-text {
		margin-top: 0;
		font-size: 8px;
	}
	.credit-form .form-text a {
		color: #000;
	}
	.contacts {
		margin-top: 58px;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: end;
		-ms-flex-align: end;
		align-items: end;
	}
	.contacts-wrapper {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		height: auto;
		padding-bottom: 0;
	}
	.contacts-title-wrapper {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
	.contacts-title {
		font-size: 24px;
		font-weight: 500;
		font-family: Halvar Breit Md;
		text-align: center;
	}
	.contacts-title br {
		display: block;
	}
	.contacts-back {
		position: relative;
		height: 361px;
		width: 100%;
	}
	.ymaps-2-1-79-image {
		height: 50px !important;
		width: 50px !important;
		background-size: 50px 50px !important;
		left: -25px !important;
		top: -55px !important;
	}
	.contacts-inner {
		max-width: none;
		margin: 0;
		height: auto;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		margin-top: -4px;
	}
	.contacts-text-box {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: start;
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: start;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		padding: 20px;
	}
	.contacts-address {
		margin-bottom: 29px;
		gap: 11px;
		top: 0;
	}
	.contacts-address p {
		top: 0;
	}
	.contacts-tel {
		margin-bottom: 26px;
	}
	.contacts-time {
		margin-bottom: 26px;
	}
	.contacts-btn {
		max-width: none;
	}
	.profit {
		padding: 0 20px;
	}
	.profit-wrapper {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		height: auto;
		padding: 22px;
	}
	.profit-title {
		font-size: 25px;
		font-weight: 500;
		font-family: Halvar Breit Md;
	}
	.profit-subtitle {
		font-size: 15px;
	}
	.profit-form .form-text {
		font-size: 8px;
	}
	.profit-form .form-text a {
		color: #fff;
	}
	.personal-data {
		color: #fff;
	}
	footer {
		height: auto;
		padding: 0;
	}
	.footer-banks {
		padding: 20px;
		flex-wrap: wrap;
		gap: 15px 0;
		justify-content: start;
	}
	.footer-banks img {
		height: 40px;
		width: 106px;
	}
	.footer-wrapper {
		width: 100%;
	}
	.footer-back {
		right: 0;
		top: 0;
		left: unset;
		bottom: unset;
		-o-object-position: bottom right;
		object-position: bottom right;
	}
	.footer-inner {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		margin: 36px 20px;
		gap: 30px;
		margin-top: 0;
	}
	.footer-license {
		line-height: 14px;
		font-size: 12px;
	}
	.footer-nav {
		gap: 20px;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
	.footer-nav a {
		font-size: 14px;
	}
	.modal-callback {
		max-width: 360px;
		height: 416px;
	}
	.modal-callback > .modal-box {
		margin: 0;
		max-width: none;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 0;
		padding: 0;
	}
	.modal-callback > .modal-box .modal-wrapper {
		padding: 12px 23px 14px 23px;
	}
	.modal-callback > .modal-box .modal-img {
		height: auto;
	}
	.modal-callback > .modal-box > .modal-title {
		font-size: 18px;
		font-weight: 600;
	}
	.modal-callback > .modal-box > .modal-title br {
		display: block;
	}
	.modal-callback > .modal-box > .modal-title b {
		font-size: 18px;
	}
	.modal-callback > .modal-box .modal-form {
		max-width: none;
		gap: 16px 15px;
		margin-top: 5px;
	}
	.modal-callback > .modal-box .form-tel {
		max-width: none;
		/* height: 25px; */
        height: 37px;
	}
	.modal-callback > .modal-box .form-tel::-webkit-input-placeholder {
		font-size: 12px;
	}
	.modal-callback > .modal-box .form-tel::-moz-placeholder {
		font-size: 12px;
	}
	.modal-callback > .modal-box .form-tel:-ms-input-placeholder {
		font-size: 12px;
	}
	.modal-callback > .modal-box .form-tel::-ms-input-placeholder {
		font-size: 12px;
	}
	.modal-callback > .modal-box .form-tel::placeholder {
		font-size: 12px;
	}
	.modal-callback > .modal-box .form-btn {
		max-width: 325px;
		height: 49px;
		margin-top: 0px;
	}
	.modal-callback > .modal-box .form-text {
		color: #0f171a;
		max-width: 285px;
		font-size: 8px;
	}
	.modal-callback > .modal-box .custom-checkbox {
		border-color: #0f171a;
		width: 25px;
		height: 14px;
	}
	.modal-credit {
		max-width: 360px;
		height: 416px;
	}
	.modal-credit > .modal-box {
		margin: 0;
		max-width: none;
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: start;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 0;
		margin-bottom: 13px;
	}
	.modal-credit > .modal-box .modal-img {
		height: auto;
	}
	.modal-credit > .modal-box .modal-wrapper {
		padding: 8px 23px 14px 23px;
	}
	.modal-credit > .modal-box > .modal-title {
		font-size: 18px;
		font-weight: 700;
	}
	.modal-credit > .modal-box .modal-subtitle {
		font-size: 12px;
		font-weight: 400;
		margin-bottom: 5px;
	}
	.modal-credit > .modal-box .modal-form {
		max-width: none;
		gap: 10px 15px;
		margin-top: 5px;
	}
	.modal-credit > .modal-box .form-tel {
		max-width: none;
		/* height: 25px; */
        height: 37px;
	}
	.modal-credit > .modal-box .form-tel::-webkit-input-placeholder {
		font-size: 12px;
	}
	.modal-credit > .modal-box .form-tel::-moz-placeholder {
		font-size: 12px;
	}
	.modal-credit > .modal-box .form-tel:-ms-input-placeholder {
		font-size: 12px;
	}
	.modal-credit > .modal-box .form-tel::-ms-input-placeholder {
		font-size: 12px;
	}
	.modal-credit > .modal-box .form-tel::placeholder {
		font-size: 12px;
	}
	.modal-credit > .modal-box .form-btn {
		max-width: 325px;
		height: 49px;
		margin-top: 0;
	}
	.modal-credit > .modal-box .form-text {
		max-width: 285px;
		font-size: 8px;
	}
	.modal-credit > .modal-box .custom-checkbox {
		border-color: #0f171a;
		width: 25px;
		height: 14px;
	}
	.modal-tradein {
		max-width: 360px;
		height: 416px;
	}
	.modal-tradein > .modal-box {
		margin: 0;
		max-width: none;
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: start;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 0;
		margin-bottom: 13px;
	}
	.modal-tradein > .modal-box .modal-img {
		height: auto;
	}
	.modal-tradein > .modal-box .modal-wrapper {
		padding: 14px 23px 14px 23px;
	}
	.modal-tradein > .modal-box .modal-title {
		font-size: 18px;
		font-weight: 500;
		font-family: Halvar Breit Md;
	}
	.modal-tradein > .modal-box .modal-subtitle {
		font-size: 12px;
		font-weight: 400;
	}
	.modal-tradein > .modal-box .modal-form {
		max-width: none;
		gap: 13px 15px;
		margin-top: 10px;
	}
	.modal-tradein > .modal-box .form-tel {
		max-width: none;
		height: 25px;
	}
	.modal-tradein > .modal-box .form-tel::-webkit-input-placeholder {
		font-size: 12px;
	}
	.modal-tradein > .modal-box .form-tel::-moz-placeholder {
		font-size: 12px;
	}
	.modal-tradein > .modal-box .form-tel:-ms-input-placeholder {
		font-size: 12px;
	}
	.modal-tradein > .modal-box .form-tel::-ms-input-placeholder {
		font-size: 12px;
	}
	.modal-tradein > .modal-box .form-tel::placeholder {
		font-size: 12px;
	}
	.modal-tradein > .modal-box .form-btn {
		max-width: 325px;
		height: 49px;
		margin-top: 0;
	}
	.modal-tradein > .modal-box .form-text {
		max-width: 285px;
		font-size: 8px;
	}
	.modal-tradein > .modal-box .custom-checkbox {
		border-color: #0f171a;
		width: 25px;
		height: 14px;
	}
	.modal-thanks-box {
		max-width: 360px;
		height: 322px;
		padding: 89px 26px 137px 26px;
		gap: 0;
	}
	.modal-thanks-title {
		font-size: 26px;
		line-height: 60px;
	}
	.modal-thanks-text {
		font-size: 17px;
		line-height: 19px;
	}
}
p,
ul,
li,
a,
button {
	color: #000;
}

.blur {
	filter: blur(4px);
	transition: all 0.4s;
}


.benefits-item {
    min-width: 20%;
}

.card-credit-price {
    display: none;
}

.form-label {
    position: relative;

    width: 100%;
}

.form-label__error {
    color: red;
    font-size: 9px;
    line-height: 11px;
    font-weight: 400;

    position: absolute;
    left: 15px;
    top: 2px;
    display: block;
}

input[name="name"].error {
    border: 1px solid red;
}

input[name="name"].error:placeholder {
    color: red;
}
@media (max-width: 1180px) {
  .discount-banner {
    width: 90%;
    left: 48%;
    transform: translateX(-50%);
    top: 200px;
    padding: 10px 40px 10px 20px;
  }
  
  .discount-banner__text {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .discount-banner {
    top: 150px;
    left: 50%;
    transform: translateX(-50%); /* Убираем смещение -75px, центрируем */
    width: 100%;
    max-width: 100%;
    padding: 10px 20px;
    height: auto;
    /* Симметричный градиент: прозрачный → непрозрачный → прозрачный */
    background: linear-gradient(
      90deg,
      rgba(84, 219, 221, 0) 0%,
      rgba(84, 219, 221, 0.7) 15%,
      rgba(84, 219, 221, 0.9) 30%,
      rgba(84, 219, 221, 0.9) 70%,
      rgba(84, 219, 221, 0.7) 85%,
      rgba(84, 219, 221, 0) 100%
    );
    text-align: center;
  }

  .discount-banner__text {
    font-size: 22px;
    line-height: 120%;
  }

  .home-box{
    align-items: center;
  }
  
  .discount-banner__text {
    font-size: 22px;
    line-height: 120%;
  }
}

@media (max-width: 480px) {
  .discount-banner {
    top: 50px;
    width: 95%;
  }
  
  .discount-banner__text {
    font-size: 18px;
  }
}