/*=====================================================================*/
/*========================[SECTION Fontface]===========================*/
/*=====================================================================*/
@import "_fonts.css"; /*=====================================================================*/
/*========================[SECTION Vars]===========================*/
/*=====================================================================*/
:root {
	--main-font-family: 'Gotham Pro';
	--main-font-size: 16px;
	--main-text-color: #05141F;
	--main-bg-color: #fff;
	--main-placeholder-color: #666;
}

/*=====================================================================*/
/*========================[SECTION UI CONTROL]=========================*/
/*=====================================================================*/
*::-webkit-input-placeholder {
	color: var(--main-placeholder-color);
	opacity: 1
}

*:-moz-placeholder {
	color: var(--main-placeholder-color);
	opacity: 1
}

*::-moz-placeholder {
	color: var(--main-placeholder-color);
	opacity: 1
}

*:-ms-input-placeholder {
	color: var(--main-placeholder-color);
	opacity: 1
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
	color: var(--main-placeholder-color)
}

/*=====================================================================*/
/*========================[SECTION LAZY CONTROL]=========================*/
/*=====================================================================*/
a,img {
	display: block;
}

img:not([src]) {
	visibility: hidden;
}

@-moz-document url-prefix() {
	img:-moz-loading {
		visibility: hidden;
	}
}

.lazy {
	opacity: 0;
	-webkit-transition: all 0.25s linear;
	-o-transition: all 0.25s linear;
	transition: all 0.25s linear;
}

.lazy.loaded {
	opacity: 1;
}

/*=====================================================================*/
/*========================[SECTION Main styles]========================*/
/*=====================================================================*/
body {
	font-family: var(--main-font-family), sans-serif;
	font-size: var(--main-font-size);
	color: var(--main-text-color);
	background: var(--main-bg-color);
	position: relative;
	-webkit-text-size-adjust: none;
	margin: 0;
	min-height: 100%;
}

input, button, textarea {
	font-family: var(--main-font-family), sans-serif;
}

.mobile-header, .mobile-menu {
	display: none;
	pointer-events: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none
}

.fixed-phone-btn-wrapper {
	bottom: 25px;
	right: 10px;
	position: fixed;
	z-index: 97;
	cursor: pointer;
}

.fixed-phone-btn-wrapper__phone {
	-webkit-box-sizing: content-box;
	box-sizing: content-box;
	border: 2px solid #DB3727;
	width: 150px;
	height: 150px;
	bottom: -25px;
	right: 10px;
	position: absolute;
	border-radius: 100%;
	opacity: .5;
	-webkit-animation: circle-anim 2.4s infinite ease-in-out !important;
	animation: circle-anim 2.4s infinite ease-in-out !important;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
	-webkit-transform-origin: center;
	-ms-transform-origin: center;
	transform-origin: center;
}

.fixed-phone-btn-wrapper__circle-fill {
	-webkit-box-sizing: content-box;
	box-sizing: content-box;
	background-color: #DB3727;
	width: 100px;
	height: 100px;
	bottom: 0;
	right: 35px;
	position: absolute;
	border-radius: 100%;
	border: 2px solid transparent;
	-webkit-animation: circle-fill-anim 2.3s infinite ease-in-out;
	animation: circle-fill-anim 2.3s infinite ease-in-out;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
	-webkit-transform-origin: center;
	-ms-transform-origin: center;
	transform-origin: center;
}

.fixed-phone-btn-wrapper__circle {
	-webkit-box-sizing: content-box;
	box-sizing: content-box;
	width: 72px;
	height: 72px;
	bottom: 14px;
	right: 49px;
	position: absolute;
	border-radius: 100%;
	background-color: #DB3727;
	border: 2px solid transparent;
	opacity: .7;
	-webkit-transform-origin: center;
	-ms-transform-origin: center;
	transform-origin: center;
}

.fixed-phone-btn-wrapper__circle__img {
	-webkit-box-sizing: content-box;
	box-sizing: content-box;
	width: 72px;
	height: 72px;
	background-image: url(../img/icons/white-phone.svg);
	background-position: center center;
	background-repeat: no-repeat;
	-webkit-transform-origin: center;
	-ms-transform-origin: center;
	transform-origin: center;
	-webkit-animation-name: tossing;
	animation-name: tossing;
	-webkit-animation-duration: 1.5s;
	animation-duration: 1.5s;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
}

.fixed-phone-btn-wrapper__circle:hover {
	opacity: 1;
}

.desktop-header {
	padding: 20px 0;
	background: #fff;
	-webkit-box-shadow: 0 0 8px rgb(0 0 0 / 25%);
	box-shadow: 0 0 8px rgb(0 0 0 / 25%);
	position: relative;
	z-index: 2;
}

.desktop-header-container {
	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;
	gap: 7.03125vw;
}

.logo-top-text {
	font-size: 18px;
	font-weight: 900;
	text-transform: uppercase;
	color: #DB3727;
}

.logo-bottom-text {
	font-size: 16px;
	font-weight: 500;
}

.logo {
	text-decoration: none;
}

.header-content {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
}

.header-content__top {
	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;
	margin-bottom: 20px;
}

.header-info__item {
	font-size: 12px;
}

.header-info {
	display: -ms-grid;
	display: grid;
	grid-gap: 10px;
}

.header-phone {
	color: #05141F;
	font-weight: bold;
	text-decoration: none;
	margin-left: auto;
	margin-right: 35px;
}

.btn {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	text-align: center;
	text-decoration: none;
	height: 35px;
	font-size: 14px;
	font-weight: 500;
	padding: 0 20px;
}

.btn.btn_accent {
	background: #36B555;
	color: #fff;
}

.btn.btn_accent:hover {
	background: #52D672;
	color: #fff;
}

.header-nav {
	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 a {
	font-size: 12px;
	font-weight: 500;
	text-transform: uppercase;
	text-decoration: none;
}

.main-slider {
	overflow: hidden;
	position: relative;
	height: 22.875vw;
	margin-bottom: 20px;
}

.main-slider-slide {
	background-position: center;
	background-size: cover;
}

.main-section {
	margin-bottom: 40px;
}

.main-marks-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	grid-gap: 20px 30px;
}

.main-marks-item {
	display: flex;
	align-items: center;
	text-decoration: none;
	border: 1px solid #C4C4C4;
	gap: 10px;
	height: 35px;
	padding: 6px 10px;
}

.main-marks-item__icon {
	width: 23px;
	height: 23px;
	-o-object-fit: scale-down;
	object-fit: scale-down;
}

.main-marks-item__title {
	font-size: 12px;
	font-weight: 500;
	text-align: left;
}

.main-marks-item__title span {
	color: #DB3727;
}

.js-marks-btn {
	-ms-grid-column-span: 8;
	grid-column: 8 span;
	margin: auto;
	width: 100%;
	max-width: 270px;
}

.btn.btn_arrow_down_white:after {
	content: "";
	width: 14px;
	height: 9px;
	background-image: url(../img/icons/btn-white-arrow-down.svg);
}

.btn.btn_arrow_down_white {
	gap: 10px;
}

.main-heading {
	font-size: 24px;
	font-weight: 500;
	text-align: center;
	text-transform: uppercase;
	margin-bottom: 20px;
}

.main-filter-form__inputs {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	max-width: 800px;
	grid-gap: 30px;
}

.main-filter-form .main-heading {
	margin-bottom: 30px;
}

.main-form-label {
	display: block;
	overflow: hidden;
}

.select2-container .select2-selection--single {
	height: 35px;
	border-radius: 0;
	border: 1px solid #2E2E2E;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
	line-height: 35px;
	font-size: 14px;
	padding-left: 10px;
	padding-right: 25px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
	height: 35px;
	top: 0;
	width: 14px;
	background-image: url(../img/icons/select2-down-arrow.svg);
	background-position: center;
	background-repeat: no-repeat;
	right: 10px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
	display: none;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow {
	-webkit-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	transform: rotate(180deg);
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
	background-color: #2777bd;
}

.select2-results__option {
	font-size: 14px;
}

.select2-dropdown {
	border-radius: 0;
	border: 1px solid #2e2e2e;
}

.main-form-input {
	width: 100%;
	height: 35px;
	border: 1px solid #2e2e2e;
	padding: 0 10px;
	font-size: 14px;
	color: #2E2E2E;
}

.main-filter-btn {
	padding: 0;
}

.main-catalog-tabs-nav {
	display: -ms-grid;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(235px, 1fr));
	grid-gap: 30px;
	margin-bottom: 30px;
}

.main-catalog-tabs-nav > span {
	border: 1px solid #2E2E2E;
	text-align: center;
	line-height: 35px;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
}

.main-catalog-tabs-nav > span.active {
	background: #2777BD;
	border-color: #2777BD;
	color: #fff;
}

.main-catalog-tabs-content__title {
	font-size: 22px;
	font-weight: 500;
	margin-bottom: 20px;
}

.main-catalog-grid {
	display: -ms-grid;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	grid-gap: 30px;
}

.main-catalog-item {
	display: block;
	overflow: hidden;
	background: #FFFFFF;
	border: 1px solid #2E2E2E;
	padding: 0 20px 10px;
	position: relative;
	max-width: 374px;
}

.main-catalog-item-slider {
	height: 220px;
	overflow: hidden;
	position: relative;
	margin: 0 -20px 10px;
}

.main-catalog-item-slider-slide {
	background-position: center;
	background-size: cover;
}

.swiper-pagination.main-catalog-item-slider-pagination {
	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;
	padding: 0 10px;
	bottom: 5px;
}

.swiper-pagination.main-catalog-item-slider-pagination .swiper-pagination-bullet {
	background: #36B555;
	opacity: 1;
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	border-radius: 0;
	height: 4px;
}

.swiper-pagination.main-catalog-item-slider-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
	background: #DB3727;
}

.main-catalog-item-info {
	background: #36B555;
	color: #fff;
	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;
	padding: 0 20px;
	line-height: 24px;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 2;
	width: 100%;
}

.main-catalog-item-info__item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 10px;
	font-size: 12px;
	font-weight: 500;
}

.main-catalog-item-title {
	font-size: 16px;
	font-weight: 500;
	height: 36px;
	margin-bottom: 10px;
	text-decoration: none;
}

.main-catalog-item-description {
	font-size: 12px;
	height: 27px;
	margin-bottom: 10px;
}

.main-catalog-item-price {
	font-size: 18px;
	font-weight: bold;
	color: #DB3727;
	margin-bottom: 15px;
}

.main-catalog-item-text {
	font-size: 14px;
	margin-bottom: 10px;
	text-align: left;
}

.main-catalog-item-buttons {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px;
}

.btn.btn_red {
	background: #DB3727;
	color: #fff;
}

.btn.btn_red:hover {
	background: #F85141;
	color: #fff;
}

.main-catalog-more {
	margin-top: 20px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.main-catalog-more-btn {
	width: 100%;
	max-width: 270px;
}

.main-buy-auto__grid {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 1fr 30px 1fr;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 30px;
}

.main-buy-auto-content__heading {
	font-size: 24px;
	font-weight: 500;
	margin-bottom: 20px;
	text-transform: uppercase;
}

.main-help-wrapper {
	background-image: url(../img/main-help-bg.png);
	background-position: right center;
	position: relative;
	z-index: 1;
	padding: 30px;
	background-repeat: no-repeat;
}

.main-help-title {
	font-size: 24px;
	font-weight: 500;
	line-height: 26px;
	text-transform: uppercase;
	margin-bottom: 16px;
}

.main-help-text {
	line-height: 24px;
	margin-bottom: 30px;
}

.main-help-form__grid {
	display: -ms-grid;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	grid-gap: 20px;
	margin-bottom: 10px;
}

.main-help-form {
	max-width: 650px;
}

.main-form-checkbox {
	display: block;
	position: relative;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.main-form-checkbox__input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
	visibility: hidden;
}

.main-form-checkbox__checkmark {
	position: absolute;
	top: 0;
	left: 0;
	height: 10px;
	width: 10px;
	background-color: #fff;
	border: 1px solid #2E2E2E;
}

.main-form-checkbox__checkmark:after {
	content: "";
	position: absolute;
	left: 2px;
	top: 0;
	right: 0;
	width: 4px;
	height: 8px;
	border: solid #2E2E2E;
	border-width: 0 1px 1px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	display: none;
}

.main-form-checkbox__input:checked ~ .main-form-checkbox__checkmark:after {
	display: block;
}

.main-form-checkbox__text {
	font-size: 11px;
	display: block;
	padding-left: 20px;
	color: #2E2E2E;
}

.main-form-checkbox__text a {
	display: inline;
}

.main-form-input.main-form-input_white {
	background-color: transparent;
	border: 1px solid #000;
	color: #000;
}

.main-form-input.main-form-input_white::-webkit-input-placeholder {
	color: #000;
}

.main-form-input.main-form-input_white::-moz-placeholder {
	color: #000;
}

.main-form-input.main-form-input_white:-ms-input-placeholder {
	color: #000;
}

.main-form-input.main-form-input_white::-ms-input-placeholder {
	color: #000;
}

.main-form-input.main-form-input_white::placeholder {
	color: #000;
}

.main-form-checkbox.main-form-checkbox_white .main-form-checkbox__checkmark {
	border: 1px solid #000;
	background-color: transparent;
}

.main-form-checkbox.main-form-checkbox_white .main-form-checkbox__checkmark:after {
	border-color: #000;
}

.main-form-checkbox.main-form-checkbox_white .main-form-checkbox__text {
	color: #000;
}

.footer-main {
	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;
	gap: 7.03125vw;
	margin-bottom: 40px;
}

.logo.logo_white .logo-top-text {
	color: #fff;
}

.logo.logo_white .logo-bottom-text {
	color: #fff;
}

.footer {
	background: #fff;
	padding: 40px 0;
}

.footer-content {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
}

.footer-content__top {
	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;
	margin-bottom: 20px;
}

.footer-info {
	display: -ms-grid;
	display: grid;
	grid-gap: 10px;
}

.footer-info__item {
	font-size: 12px;
}

.footer-phone {
	font-weight: bold;
	margin-left: auto;
	margin-right: 35px;
	text-decoration: none;
}

.footer-nav {
	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;
}

.footer-nav a {
	font-size: 12px;
	font-weight: 500;
	text-transform: uppercase;
	text-decoration: none;
}

.footer-copyright {
	font-size: 12px;
}

.popup-callback-form {
	margin: -44px;
	padding: 30px 20px;
	max-width: 375px;
	background-position: left bottom, right bottom;
	background-repeat: no-repeat;
}

.popup-callback-form__title {
	text-align: center;
	font-size: 22px;
	font-weight: bold;
	text-transform: uppercase;
	margin-bottom: 20px;
}

.popup-callback-form__desc {
	text-align: center;
	font-size: 18px;
	font-weight: 500;
	color: #DB3727;
	margin-bottom: 20px;
}

.popup-callback-form__inputs {
	max-width: 280px;
	margin: auto;
	display: -ms-grid;
	display: grid;
	grid-gap: 10px;
}

.main-page-breadcrumbs {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 5px;
	font-size: 12px;
	padding-top: 20px;
	padding-bottom: 40px;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.main-page-breadcrumbs__item {
	text-decoration: none;
}

.main-page-breadcrumbs__divider:after {
	content: "\002D";
}

.main-page-breadcrumbs__current {
	color: #05141f;
}

.main-pagination {
	margin-top: 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;
	gap: 10px;
}

.main-pagination__item {
	font-size: 18px;
	font-weight: bold;
	text-decoration: none;
	line-height: 14px;
}

.main-pagination__item.main-pagination__item_active {
	color: #2777BD;
	cursor: default;
	pointer-events: none;
}

.main-pagination__prev, .main-pagination__next {
	width: 8px;
	height: 14px;
	background-image: url(../img/icons/pagination-next-arrow.svg);
}

.main-pagination__prev {
	-webkit-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	transform: rotate(180deg);
}

.main-help {
	margin-top: 75px;
	background: #F5F5F5;
}

.main-model-grid {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 1fr 30px 270px 30px 270px;
	grid-template-columns: 1fr 270px 270px;
	grid-gap: 30px;
}

.main-model-grid__column {
	overflow: hidden;
}

.main-model-slider {
	position: relative;
	overflow: hidden;
	margin-bottom: 10px;
}

.main-model-slider__label {
	position: absolute;
	right: 10px;
	top: 10px;
	z-index: 2;
	background: #36b555;
	color: #fff;
	font-size: 12px;
	font-weight: 500;
	line-height: 24px;
	padding: 0 10px;
}

.main-model-slider-slide__photo__img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: center;
	object-position: center;
}

.main-model-slider-slide {
	height: 340px;
}

.main-model-slider-slide__photo {
	height: 100%;
	cursor: -webkit-zoom-in;
	cursor: zoom-in;
}

.swiper-pagination.main-model-slider-pagination {
	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: 10px;
	padding: 0 20px;
	bottom: 20px;
}

.swiper-pagination.main-model-slider-pagination .swiper-pagination-bullet {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	background: #36B555;
	opacity: 1;
	border-radius: 0;
	height: 6px;
}

.swiper-pagination.main-model-slider-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
	background: #DB3727;
}

.main-model-slider-thumbs {
	height: 61px;
}

.main-model-slider-thumbs-slide {
	background-position: center;
	background-size: cover;
}

.main-model-price__title {
	font-size: 18px;
	margin-bottom: 10px;
}

.main-model-price__value {
	font-size: 20px;
	font-weight: bold;
	color: #05141F;
}

.main-model-price__value.main-model-price__value_red {
	color: #DB3727;
}

.main-model-price {
	margin-bottom: 20px;
}

.main-model-btn {
	width: 100%;
	margin-bottom: 20px;
}

.main-model-specs-item {
	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;
}

.main-model-specs-item__name {
	font-size: 18px;
}

.main-model-specs-item__value {
	font-size: 18px;
	text-align: right;
}

.main-model-specs {
	display: -ms-grid;
	display: grid;
	grid-gap: 15px;
}

.main-model-terms {
	background-color: #fff;
	border: 1px solid #2E2E2E;
	background-image: url(../img/dot-bg.png);
	background-position: left bottom, right bottom -2px;
	background-repeat: no-repeat;
	padding: 20px 20px 73px;
	min-height: 280px;
}

.main-model-terms__heading {
	font-weight: 500;
	text-transform: uppercase;
	margin-bottom: 13px;
}

.main-model-terms__list {
	display: -ms-grid;
	display: grid;
	grid-gap: 10px;
}

.main-model-terms__list__item {
	background-image: url(../img/icons/list-check-icon-accent.svg);
	background-position: left top;
	background-repeat: no-repeat;
	padding-left: 25px;
	font-size: 14px;
	min-height: 21px;
}

.main-small-heading {
	font-size: 18px;
	font-weight: 500;
	text-transform: uppercase;
	margin-bottom: 10px;
}

.main-gifts-grid {
	display: -ms-grid;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(215px, 1fr));
	grid-gap: 30px;
}

.main-gifts-item__picture {
	height: 100%;
	background-repeat: no-repeat;
	background-position: bottom 10px right 10px;
	padding: 20px;
}

.main-gifts-item__text {
	font-size: 18px;
	font-weight: 500;
	text-transform: uppercase;
}

.main-gifts-item {
	text-decoration: none;
	background-color: #DEDEDE;
	background-image: url(../img/gifts/gifts-text-bg.png);
	height: 185px;
	background-position: left bottom;
	background-repeat: no-repeat;
}

.finance-steps {
	display: -ms-grid;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(225px, 1fr));
	grid-gap: 30px;
	margin-bottom: 40px;
}

.finance-steps-item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 1.0416666666666667vw;
}

.finance-steps-item__number {
	width: 97px;
	height: 92px;
	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: 40px;
	font-weight: bold;
	color: #db3727;
	border-radius: 50%;
	background-image: url(../img/finance-steps-bg.svg);
	background-position: center;
	background-repeat: no-repeat;
}

.finance-steps-item__content {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
}

.finance-steps-item__content__title {
	font-size: 18px;
	font-weight: bold;
	color: #05141F;
	margin-bottom: 10px;
}

.finance-steps-item__content__text {
	font-size: 12px;
}

.finance-banner {
	height: 270px;
	background-position: center;
	background-size: cover;
	color: #fff;
	margin-bottom: 40px;
}

.finance-banner__content {
	text-align: right;
}

.finance-banner__content__title {
	font-size: 24px;
	font-weight: bold;
	text-transform: uppercase;
}

.finance-banner__content__sub-title {
	font-size: 44px;
	font-weight: bold;
	margin-bottom: 15px;
}

.finance-banner__content__text {
	font-size: 24px;
	font-weight: 500;
}

.main-finance-grid {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 375px 30px 1fr;
	grid-template-columns: 375px 1fr;
	grid-gap: 30px;
}

.finance-form {
	background-color: #fff;
	border: 1px solid #2E2E2E;
	padding: 20px 30px;
}

.finance-form__heading {
	font-size: 18px;
	font-weight: 500;
	text-transform: uppercase;
	margin-bottom: 10px;
}

.finance-form__inputs {
	display: -ms-grid;
	display: grid;
	grid-gap: 10px;
	margin-bottom: 20px;
}

.finance-form-btn {
	width: 100%;
}

.main-finance-inner-grid {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 1fr 30px 1fr;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 30px;
}

.main-finance-inner-grid:not(:last-child) {
	margin-bottom: 30px;
}

.finance-car-preview {
	border: 2px solid #EEEEEE;
	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: 240px;
}

.finance-car-preview__img {
	width: 100%;
	max-width: 300px;
	max-height: 230px;
	-o-object-fit: scale-down;
	object-fit: scale-down;
}

.finance-price-item__heading {
	font-size: 18px;
	margin-bottom: 10px;
}

.finance-price-item__value {
	font-size: 20px;
	font-weight: bold;
	color: #05141F;
}

.finance-price-item__value.finance-price-item__value_red {
	color: #DB3727;
}

.finance-price {
	display: -ms-grid;
	display: grid;
	grid-gap: 20px;
}

.main-list__title {
	margin-bottom: 15px;
	font-size: 18px;
	font-weight: 500;
	text-transform: uppercase;
}

.main-list__list {
	display: -ms-grid;
	display: grid;
	grid-gap: 10px;
}

.main-list__list__item {
	background-image: url(../img/icons/list-check-icon-accent.svg);
	background-position: left top;
	background-repeat: no-repeat;
	padding-left: 25px;
	font-size: 14px;
	min-height: 21px;
}

.main-banks-grid {
	display: -ms-grid;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
	grid-gap: 10px 30px;
}

.main-banks-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;
	border: 1px solid #2E2E2E;
	padding: 10px;
	height: 85px;
}

.main-banks-item__img {
	-o-object-fit: scale-down;
	object-fit: scale-down;
}

.finance-form__inputs__grid {
	display: -ms-grid;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
	grid-gap: 20px;
}

.main-finance-grid.main-finance-grid_buyout {
	-ms-grid-columns: 1fr 30px 375px;
	grid-template-columns: 1fr 375px;
}

.finance-form__grid {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 1fr 30px 1fr;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 30px;
}

.finance-form.finance-form_buyout {background: none;}

.main-about__content__text {
	line-height: 110%;
}

.main-about__content__text:not(:last-child) {
	margin-bottom: 20px;
}

.main-about__content__list {
	margin-bottom: 20px;
}

.main-about__content__text + .main-about__content__list {
	margin-top: -10px;
}

.main-about__content__list {
	list-style: disc;
	padding-left: 20px;
}

.main-contacts-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 30px;
}

.main-contacts-map__iframe {
	width: 100%;
	height: 320px;
	border-radius: 16px;
}

.main-contacts-info-item__heading {
	font-size: 14px;
	margin-bottom: 10px;
	font-weight: bold;
	color: #DB3727;
}

.main-contacts-info-item__content {
	font-weight: 500;
}

.main-contacts-info-item {
	margin-bottom: 22px;
}

.main-contacts-info-phone {
	font-size: 18px;
	font-weight: bold;
	text-decoration: none;
	color: #05141F;
}

.main-contacts-btn {
	width: 100%;
	max-width: 270px;
}

.main-heading.main-heading_text_left {
	text-align: left;
}

.main-feedback-wrapper {
	background-color: #fff;
	border: 1px solid #2E2E2E;
	padding: 30px;
	background-image: url(../img/main-feedback-bg.png);
	background-position: left bottom -2px;
	background-repeat: no-repeat;
}

.main-feedback-grid {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 1fr 30px 540px;
	grid-template-columns: 1fr 540px;
	grid-gap: 30px;
}

.main-feedback-text {
	line-height: 18px;
}

.main-feedback-form {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 1fr 30px 1fr;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 30px;
}

.main-form-textarea {
	width: 100%;
	min-height: 157px;
	resize: none;
	border: 1px solid #2e2e2e;
	padding: 10px;
	font-size: 14px;
}

.main-feedback-form__column:last-child {
	display: -ms-grid;
	display: grid;
	grid-gap: 10px;
}

.main-slider-slide__mobile-img {
	display: none;
}

.main-slider-slide__desktop-img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.main-model__heading {
	font-size: 24px;
	font-weight: 500;
	text-align: center;
	text-transform: uppercase;
	margin-bottom: 20px;
}

.main-catalog-item-futures {
	display: grid;
	grid-gap: 15px;
}

.main-catalog-item-futures__item {
	display: flex;
	align-items: center;
	gap: 10px;
}

.main-catalog-item-futures__item__text {
	font-size: 12px;
}

.btn.btn_border {
	border: 1px solid #05141F;
	background: #fff;
}

.main-heading.main-heading_white {
	color: #fff;
}

.main-heading.main-heading_left {
	text-align: left;
}

.main-filter-form-btn {
	padding: 0;
}

.main-filter-form__inputs.main-filter-form__inputs_first {
	margin-bottom: 20px;
}

.main-filter-form {
	background-color: #DB3727;
	background-image: url(../img/main-filter-bg.png);
	background-position: center right;
	background-repeat: no-repeat;
	padding: 20px;
	position: relative;
	z-index: 1;
}

.main-marks + .main-filter {
	margin-top: 100px;
}

.main-catalog-tabs-nav__item {
	background: #36B555;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 15px;
	height: 42px;
}

.main-catalog-tabs-nav__item__text {
	text-align: center;
	font-size: 15px;
	font-weight: 500;
	text-transform: uppercase;
}

.main-catalog-tabs-nav__item.active {
	background: #52D672;
	color: #fff;
}

.main-catalog-tabs-nav__item.active path {
	fill: #fff;
}

.btn.btn_white_border {
	border: 1px solid #fff;
}

.main-banks-slider {
	position: relative;
	overflow: hidden;
	padding: 0 60px 35px;
}

.main-banks-slider:after, .main-banks-slider:before {
	content: "";
	position: absolute;
	top: 0;
	height: 100%;
	width: 60px;
	background: #fff;
	z-index: 2;
}

.main-banks-slider:before {
	left: 0;
}

.main-banks-slider:after {
	right: 0;
}

.main-banks-slider .swiper-button-next, .main-banks-slider .swiper-button-prev {
	color: #fff;
	top: 40%;
	background: #36B555;
	border-radius: 50%;
	width: 36px;
	height: 36px;
}

.main-banks-slider .swiper-button-next:after, .main-banks-slider .swiper-button-prev:after {
	font-size: 19px;
	font-weight: bold;
}

.main-banks-slider-item {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 85px;
}

.main-banks-slider .swiper-pagination-bullet {
	background: #36B555;
	opacity: 1;
	width: 10px;
	height: 10px;
	border-radius: 0;
}

.main-banks-slider .swiper-pagination-bullet.swiper-pagination-bullet-active {
	background: #DB3727;
}

.logo-center-text {
	font-size: 26px;
	font-weight: 900;
	text-transform: uppercase;
	color: #DB3727;
}

.main-filter {
	background: #DB3727;
}

.main-catalog-item__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	margin-bottom: 15px;
}

.main-catalog-item-futures__item__icon {
	width: 19px;
}

.finance-banner-container .main-page-breadcrumbs__current {
	color: #fff;
}

.main-contacts-gallery {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-gap: 10px;
}

.main-contacts-info.main-contacts-info_inline {
	display: flex;
	gap: 70px;
	margin-top: 20px;
}

.main-contacts-info-item__content__heading {
	font-weight: 600;
}

.main-contacts-info-item__content__text {
	font-weight: 400;
	margin-bottom: 20px;
}

@-webkit-keyframes pulse {
	0% {
		-webkit-transform: scale(0.9);
		transform: scale(0.9);
		opacity: 1;
	}

	50% {
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 1;
	}

	100% {
		-webkit-transform: scale(0.9);
		transform: scale(0.9);
		opacity: 1;
	}
}

@keyframes pulse {
	0% {
		-webkit-transform: scale(0.9);
		transform: scale(0.9);
		opacity: 1;
	}

	50% {
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 1;
	}

	100% {
		-webkit-transform: scale(0.9);
		transform: scale(0.9);
		opacity: 1;
	}
}

@-webkit-keyframes tossing {
	0% {
		-webkit-transform: rotate(-8deg);
		transform: rotate(-8deg);
	}

	50% {
		-webkit-transform: rotate(8deg);
		transform: rotate(8deg);
	}

	100% {
		-webkit-transform: rotate(-8deg);
		transform: rotate(-8deg);
	}
}

@keyframes tossing {
	0% {
		-webkit-transform: rotate(-8deg);
		transform: rotate(-8deg);
	}

	50% {
		-webkit-transform: rotate(8deg);
		transform: rotate(8deg);
	}

	100% {
		-webkit-transform: rotate(-8deg);
		transform: rotate(-8deg);
	}
}

@-webkit-keyframes circle-anim {
	0% {
		-webkit-transform: rotate(0deg) scale(0.5) skew(1deg);
		transform: rotate(0deg) scale(0.5) skew(1deg);
		opacity: .1;
	}

	30% {
		-webkit-transform: rotate(0deg) scale(0.7) skew(1deg);
		transform: rotate(0deg) scale(0.7) skew(1deg);
		opacity: .5;
	}

	100% {
		-webkit-transform: rotate(0deg) scale(1) skew(1deg);
		transform: rotate(0deg) scale(1) skew(1deg);
		opacity: .1;
	}
}

@keyframes circle-anim {
	0% {
		-webkit-transform: rotate(0deg) scale(0.5) skew(1deg);
		transform: rotate(0deg) scale(0.5) skew(1deg);
		opacity: .1;
	}

	30% {
		-webkit-transform: rotate(0deg) scale(0.7) skew(1deg);
		transform: rotate(0deg) scale(0.7) skew(1deg);
		opacity: .5;
	}

	100% {
		-webkit-transform: rotate(0deg) scale(1) skew(1deg);
		transform: rotate(0deg) scale(1) skew(1deg);
		opacity: .1;
	}
}

@-webkit-keyframes circle-fill-anim {
	0% {
		-webkit-transform: rotate(0deg) scale(0.7) skew(1deg);
		transform: rotate(0deg) scale(0.7) skew(1deg);
		opacity: .2;
	}

	50% {
		-webkit-transform: rotate(0deg) scale(1) skew(1deg);
		transform: rotate(0deg) scale(1) skew(1deg);
		opacity: .2;
	}

	100% {
		-webkit-transform: rotate(0deg) scale(0.7) skew(1deg);
		transform: rotate(0deg) scale(0.7) skew(1deg);
		opacity: .2;
	}
}

@keyframes circle-fill-anim {
	0% {
		-webkit-transform: rotate(0deg) scale(0.7) skew(1deg);
		transform: rotate(0deg) scale(0.7) skew(1deg);
		opacity: .2;
	}

	50% {
		-webkit-transform: rotate(0deg) scale(1) skew(1deg);
		transform: rotate(0deg) scale(1) skew(1deg);
		opacity: .2;
	}

	100% {
		-webkit-transform: rotate(0deg) scale(0.7) skew(1deg);
		transform: rotate(0deg) scale(0.7) skew(1deg);
		opacity: .2;
	}
}
