/***Fonts***/

.wow {
	visibility: hidden;
}

/* @font-face {
  font-family: "Kia Signature";
  src: local("Kia Signature"),
    url("../fonts/KiaSignatureRegular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
} */
@font-face {
	font-family: 'Gotham Pro';
	src: local('Gotham Pro'), url('../fonts/gothampro_bold.ttf') format('truetype');
	font-weight: 700;
	font-display: swap;
}

@font-face {
	font-family: 'KIAB';
	src: local('KIAB'), url(../fonts/KIAB.ttf) format('truetype'), url(../fonts/KIAB.woff2) format('woff2'), url(../fonts/KIAB.woff) format('woff');
	font-weight: 400;
	font-display: swap;
}

/* @font-face {
    font-family: "KIAM";
    src: local("KIAM"),
        url(../fonts/KIAM.ttf) format("truetype"),
        url(../fonts/KIAM.woff2) format("woff2"),
        url(../fonts/KIAM.woff) format("woff");
    font-weight: 400;
    font-display: swap;
} */

@font-face {
	font-family: 'Gotham Pro';
	src: local('Gotham Pro'), url('../fonts/gothampro_medium.ttf') format('truetype');
	font-weight: 500;
	font-display: swap;
}

@font-face {
	font-family: 'Gotham Pro';
	src: local('Gotham Pro'), url('../fonts/gothampro_light.ttf') format('truetype');
	font-weight: 400;
	font-display: swap;
}

/***Colors***/
:root {
	--white: #ffffff;
	--black: #000000;
	--light-gray: #e0e0e0;
	--gray: #747474;
	--dark-blue: #05141f;
}

/***Global***/
html {
	scroll-behavior: smooth;
}

.page {
	height: 100%;
	position: relative;
	overflow-x: hidden;
}

*,
::before,
::after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

body {
	position: relative;
	min-height: 100%;
	margin: 0;
	padding: 0;
	color: var(--black);
	font-family: 'Gotham Pro', Arial, Helvetica, sans-serif;
	font-size: 16px;
	line-height: 20px;
	font-weight: 400;
	letter-spacing: normal;
	background-color: var(--white);
	overflow-x: hidden;
	display: -ms-grid;
	display: grid;
	-ms-grid-rows: -webkit-min-content 1fr -webkit-min-content;
	-ms-grid-rows: min-content 1fr min-content;
	grid-template-rows: -webkit-min-content 1fr -webkit-min-content;
	grid-template-rows: min-content 1fr min-content;
	-ms-flex-line-pack: start;
	align-content: start;
}

.container {
	width: 100%;
	/* max-width: 1350px; */
	max-width: 1180px;
	margin: 0 auto;
}

a {
	/* text-decoration: none; */
	cursor: pointer;
	color: inherit;
}

ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

p {
	margin: 0;
}

picture {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

img {
	max-width: 100%;
	height: auto;
}

button {
	padding: 0;
	outline: none;
	border: none;
	cursor: pointer;
}

.visually-hidden:not(:focus):not(:active),
input[type='checkbox'].visually-hidden,
input[type='radio'].visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	border: 0;
	padding: 0;
	white-space: nowrap;
	-webkit-clip-path: inset(100%);
	clip-path: inset(100%);
	clip: rect(0 0 0 0);
	overflow: hidden;
	/* left: -17px; */
	left: 5px;
}

/* .bnr-form .visually-hidden:not(:focus):not(:active),
.bnr-form input[type="checkbox"].visually-hidden,
.bnr-form input[type="radio"].visually-hidden {
    left: 39px;
} */

.banner.map__inner .visually-hidden:not(:focus):not(:active),
.banner.map__inner input[type='checkbox'].visually-hidden,
.banner.map__inner input[type='radio'].visually-hidden {
	left: -18px;
}
#map {
	height: 600px;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
}
.map {
	position: relative;
}

.feedback.mobile-active .visually-hidden:not(:focus):not(:active),
.feedback.mobile-active input[type='checkbox'].visually-hidden,
.feedback.mobile-active input[type='radio'].visually-hidden {
	left: -18px;
}

.--red {
	color: red;
}

.custom-checkbox {
	width: 8px;
	height: 8px;
	min-width: 8px;
	min-height: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #fff;
	border-radius: 50%;
}

.custom-checkbox div {
	display: none;
	background-color: #fff;
	width: 2px;
	height: 2px;
	border-radius: 50%;
}

input[type='checkbox']:checked + span div {
	display: block;
}

.desc-hide {
	display: none !important;
}

/***Elements***/
.second-heading {
	margin: 0 0 50px 0;
	font-size: 45px;
	line-height: 50px;
	font-weight: 700;
	text-align: center;
	display: block;
}

.btn {
	/* width: 310px; */
	width: 179px;
	/* height: 60px; */
	height: 38px;
	padding: 0 15px;
	background-color: var(--dark-blue);
	font-weight: bold;
	/* font-size: 15px; */
	font-size: 12px;
	line-height: 17px;
	letter-spacing: 0.65px;
	color: var(--white);
	border: 2px solid var(--dark-blue);
	border-radius: 10px;
	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;
}

.btn span:nth-last-child(1) {
	position: relative;
}

.btn span:nth-last-child(1)::after {
	content: '';
	position: absolute;
	bottom: -3px;
	left: 0;
	width: 0;
	height: 1px;
	background-color: var(--white);
	-webkit-transition: all 0.25s ease-out;
	-o-transition: all 0.25s ease-out;
	transition: all 0.25s ease-out;
}

.btn-bordered span:nth-last-child(1)::after {
	background-color: var(--dark-blue);
}

.btn:hover span:nth-last-child(1)::after {
	width: 100%;
}

.btn:active {
	opacity: 0.75;
}

.btn-bordered {
	color: var(--dark-blue);
	background-color: var(--white);
	border: 2px solid var(--dark-blue);
}

.vertical-line {
	width: 2px;
	height: 65px;
	background-color: var(--dark-blue);
	border-radius: 2px;
}

.logo {
	width: 200px;
	height: 45px;
}

.column {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.header-text {
	/* font-size: 18px; */
	font-size: 14px;
	line-height: 14px;
}

.telephone {
	color: var(--black);
	font-size: 12px;
	line-height: 14px;
	font-weight: bold;
	text-align: center;
	-webkit-transition: opacity 0.25s ease;
	-o-transition: opacity 0.25s ease;
	transition: opacity 0.25s ease;
	text-decoration: none;
}

.telephone:hover {
	opacity: 0.5;
}

.list-nav-header {
	display: flex;
	gap: 30px;
	font-size: 12px;
	color: var(--black);
}

.list-nav-header li a {
	text-decoration: none;
	/* font-weight: 500; */
	/* transition: all ease .3s; */
}

.list-nav-header li a:hover {
	font-weight: 700;
}

.callback-img {
	width: 38px;
	height: 34px;
	background-image: url(../img/icons/callback.svg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
/* .shadow-bottom::after {
    content: "";
    position: absolute;
    z-index: 100;
    bottom: -20px;
    width: 100%;
    height: 20px;
    background: -o-linear-gradient(top, rgba(0, 0, 0, 0.3029586834733894) 0%, rgba(0, 0, 0, 0.20211834733893552) 33%, rgba(0, 0, 0, 0.10127801120448177) 66%, rgba(0, 0, 0, 0) 100%);
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.3029586834733894)), color-stop(33%, rgba(0, 0, 0, 0.20211834733893552)), color-stop(66%, rgba(0, 0, 0, 0.10127801120448177)), to(rgba(0, 0, 0, 0)));
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3029586834733894) 0%, rgba(0, 0, 0, 0.20211834733893552) 33%, rgba(0, 0, 0, 0.10127801120448177) 66%, rgba(0, 0, 0, 0) 100%);
    opacity: 0;
    -webkit-transition: opacity .25s;
    -o-transition: opacity .25s;
    transition: opacity .25s;
} */

.shadow-bottom.active::after {
	opacity: 1;
}

.baner-mob {
	display: none;
}

.page-header__right {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 12px;
}

.feedback {
	padding: 50px 50px 30px 50px;
	background-color: var(--white);
	-webkit-box-shadow: 0px 0px 15px 0px rgb(0 0 0 / 25%);
	box-shadow: 0px 0px 15px 0px rgb(0 0 0 / 25%);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	position: relative;
}

.feedback__logo {
	width: 142px;
	margin-bottom: 40px;
}

.standart-form {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.standart-form .btn[type='submit'] {
	margin-top: 18px;
	width: 100%;
	height: 50px;
}

.standart-input {
	width: 310px;
	height: 60px;
	padding: 0;
	background-color: var(--light-gray);
	border: none;
	border-radius: 10px;
	text-align: center;
}

.standart-input:focus {
	outline: none;
}

.standart-input::-moz-placeholder {
	font-family: 'KIAM', Arial, Helvetica, sans-serif;
	font-weight: 400;
	color: var(--black);
}

.standart-input::-webkit-input-placeholder {
	font-family: 'KIAM', Arial, Helvetica, sans-serif;
	font-weight: 400;
	color: var(--black);
}

.standart-input:-ms-input-placeholder {
	font-family: 'KIAM', Arial, Helvetica, sans-serif;
	font-weight: 400;
	color: var(--black);
}

.standart-input::-ms-input-placeholder {
	font-family: 'KIAM', Arial, Helvetica, sans-serif;
	font-weight: 400;
	color: var(--black);
}

.standart-input::placeholder {
	font-family: 'KIAM', Arial, Helvetica, sans-serif;
	font-weight: 400;
	color: var(--black);
}

.agreement {
	margin-top: 20px;
	padding-left: 15px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 14px;
}

.standart-form .standart-input + .standart-input {
	margin-top: 18px;
}

.horizontal-form {
	width: 85%;
	padding: 25px 55px 20px 55px;
	background-color: rgba(255, 255, 255, 0.5);
	border-radius: 10px;
}

.horizontal-form .agreement__label,
.horizontal-form .personal-data-ckeck__link {
	color: var(--white);
}

.horizontal-form__top {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.personal-data-ckeck__link {
	color: var(--black);
	/* text-decoration: underline; */
}

.agreement__label {
	position: relative;
	left: 15px;
	cursor: pointer;
}

.checkmark {
	position: absolute;
	left: -30px;
	top: -3px;
	height: 20px;
	width: 20px;
	background-color: var(--light-gray);
	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;
}

.checkmark::before {
	content: '';
	width: 85%;
	height: 85%;
	background-image: url(../img/icons/done.svg);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	opacity: 0;
	-webkit-transition: opacity 0.2s ease;
	-o-transition: opacity 0.2s ease;
	transition: opacity 0.2s ease;
}

.agreement__label input:checked ~ .checkmark::before {
	opacity: 1;
	-webkit-transition: opacity 0.2s ease;
	-o-transition: opacity 0.2s ease;
	transition: opacity 0.2s ease;
}

.mobile-active {
	display: none;
}

.select-lists {
	margin-bottom: 20px;
	font-family: 'KIAM', Arial, Helvetica, sans-serif;
	font-weight: 400;
	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;
}

.dropbtn {
	width: 310px;
	height: 45px;
	position: relative;
	padding: 0 50px;
	color: var(--gray);
	background-color: var(--light-gray);
	color: var(--black);
	border: 1px solid transparent;
	border-radius: 10px;
	-webkit-transition: opacity 0.25s ease;
	-o-transition: opacity 0.25s ease;
	transition: opacity 0.25s ease;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.dropbtn:hover,
.dropbtn:focus {
	border: 1px solid var(--black);
	opacity: 0.5;
}

.dropbtn:active {
	/* border: 1px solid var(--black); */
}

.dropdown::after {
	content: '';
	position: absolute;
	top: 20px;
	right: 50px;
	width: 13px;
	height: 6px;
	background-image: url(../img/icons/down.svg);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
}

.dropdown + .dropdown {
	margin-left: 15px;
}

.dropdown {
	position: relative;
	display: inline-block;
}

.dropdown-content {
	display: none;
	width: 100%;
	position: absolute;
	top: 54px;
	border-radius: 10px;
	border: 1px solid var(--black);
	color: var(--black);
	overflow: auto;
	z-index: 5;
}

.dropdown-item {
	padding: 10px 50px;
	text-decoration: none;
	font-weight: 400;
	background-color: var(--light-gray);
	-webkit-transition: all 0.25s ease;
	-o-transition: all 0.25s ease;
	transition: all 0.25s ease;
	display: block;
}

.dropdown-item + .dropdown-item {
	border-top: 1px solid var(--black);
}

.dropdown-item:hover,
.dropdown-item:focus {
	background-color: var(--dark-blue);
	color: var(--white);
}

.show-list {
	display: block;
}

.answer {
	overflow: hidden;
	height: 0;
	-webkit-transition: height 0.8s ease;
	-o-transition: height 0.8s ease;
	transition: height 0.8s ease;
}

/***Header***/

.page-header {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
	width: 100%;
	background-color: var(--white);
	box-shadow: 0px 15px 15px 0px rgba(34, 60, 80, 0.3);
}

.page-header .btn {
	width: auto;
}

.mobile-header {
	display: none;
}

.for__nav_wrapper {
	position: relative;
}

.for__nav_wrapper nav {
	/* box-shadow: 0px 6px 14px 6px #0000005c; */
	opacity: 0;
	background: #fff;
	z-index: 99;
	text-align: center;
	position: absolute;
	top: -1000%;
	width: 100%;
	left: 0;
	transition: opacity 0.3s;
	padding: 30px 0 20px;
}

.for__nav_wrapper.active nav {
	opacity: 1;
	top: 100%;
	transition: opacity 0.5s;
}

.for__nav_wrapper nav li {
	/* padding: 5px 0; */
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 5px 20px;
}

.for__nav_wrapper nav a {
	color: black;
	text-decoration: none;
	font-size: 12px;
}

.for__nav_wrapper nav .page-header__right {
	flex-direction: column;
	font-size: 16px;
	padding-top: 15px;
	gap: 20px;
}

/* .page-header.mobile-header.shadow-bottom.active .nav_hamburger {
    right: 10px;
    transition: all 0.3s;
    top: 5px;
} */

.mobile-header .vertical-line {
	height: 53px;
}

.page-header.mobile-header.shadow-bottom .for__nav_wrapper.active .nav_hamburger {
	right: 10px;
}

.wrapper-mob-address-n-phone {
	display: flex;
	flex-direction: column;
}

.wrapper-mob-address-n-phone .address-header {
	font-size: 12px;
}

.wrapper-mob-address-n-phone .telephone {
	font-size: 12px;
}

.wrapper-timer {
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 66px;
	padding: 32px 70px 24px 34px;
	/* position: absolute;
    bottom: -150px;
    left: 50%;
    transform: translateX(-50%); */
	z-index: 11;
	width: 1180px;
	/* height: 188px; */
	border-radius: 6px;
	box-shadow: 0px 4px 13.6px 0px rgba(0, 0, 0, 0.25);
	background: rgb(255, 255, 255);
	margin-top: -40px;
	position: relative;
}

.wrapper-text-timer h3 {
	font-size: 27px;
	margin: 0;
}

.wrapper-text-timer p {
	font-size: 22px;
	color: black;
	padding: 15px 0 20px;
}

.wrapper-text-timer .banner-btn {
	padding: 0;
	background: #000;
	color: #fff;
	font-size: 15px;
	width: 240px;
	height: 50px;
}

.wrapper-text-timer span {
	font-size: 20px;
	padding-left: 36px;
}

.nav_hamburger {
	z-index: 102;
	/* box-shadow: 0px 6px 4px 2px #0000005c; */
	/* top: 5px; */
	top: 15px;
	position: absolute;
	/* right: -100%; */
	right: 10px;
	width: 50px;
	height: 50px;
	background: #fff;
	transition: all 0.3s;
}

.nav_hamburger span {
	pointer-events: none;
	display: block;
	position: relative;
	width: 80%;
	margin: auto;
	height: 100%;
}

.nav_hamburger span p {
	display: block;
	position: absolute;
	width: 100%;
	height: 2px;
	top: 50%;
	background: #000;
}

.nav_hamburger span::before,
.nav_hamburger span::after {
	content: '';
	width: 100%;
	height: 2px;
	left: 0;
	/* top: 50%; */
	position: absolute;
	background: #000;
}

.nav_hamburger span::before {
	top: 20%;
}

.nav_hamburger span::after {
	bottom: 20%;
}

.for__nav_wrapper.active .nav_hamburger {
	box-shadow: unset;
}

.for__nav_wrapper.active .nav_hamburger span p {
	height: 0;
	transition: all 0.3s;
}

.for__nav_wrapper.active .nav_hamburger span::before {
	top: 50%;
	transform: rotate(45deg);
	transition: all 0.3s;
}

.for__nav_wrapper.active .nav_hamburger span::after {
	top: 50%;
	transform: rotate(-45deg);
	transition: all 0.3s;
}

.mobile-header .container {
	padding: 8px 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: flex-start;
	/* gap: 15px; */
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	/* height: 60px; */
	height: 79px;
}

.mobile-header .btn {
	height: 46px;
}

.mobile-header__row {
	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;
}

.mobile-header__row + .mobile-header__row {
	margin-top: 10px;
}

.mobile-header .logo {
	max-width: 30%;
	max-height: 25px;
}

.desktop-header .container {
	height: 100px;
	padding: 15px 0;
	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;
}

.page-header__left {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.page-header__left .vertical-line {
	margin-left: 20px;
	margin-right: 15px;
}

.page-header__left .header-text {
	margin-bottom: 5px;
	display: inline-block;
}

.btn .callback-img {
	margin-right: 10px;
}

/***Main***/
.main-content {
	margin-top: 100px;
}

.banner {
	width: 100%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.fam-auto-banner {
	background-image: url(../img/banners/fam-auto-banner.jpg);
}

.installment-banner {
	background-image: url(../img/banners/installment-banner.jpg);
}

.banner__heading {
	font-weight: bold;
	font-size: 56px;
	line-height: 72px;
	color: var(--white);
	display: block;
}

.banner__subheading {
	font-size: 36px;
	line-height: 40px;
	font-weight: bold;
	color: var(--white);
	display: block;
}

/* .main-banner {
  position: relative;
  height: 900px;
  padding: 22px 0 50px 0;
  background-image: url(../img/banners/main-banner.jpg);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.main-banner__title {
  padding: 27px 0;
  background-color: rgba(0, 0, 0, 0.5);
}

.main-banner__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.main-banner__title .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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: flex-start;
}

.main-banner .banner__heading {
  margin-bottom: 15px;
}

.main-banner .banner__subheading {
  margin-bottom: 35px;
} */

.timer-wrap {
	width: 40%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.countdown {
	padding: 25px 0 15px 0;
	background-color: var(--dark-blue);
	color: var(--white);
	border-radius: 10px;
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.countdown .colon {
	position: relative;
	bottom: 15%;
}

.countdown ul {
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	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;
}

.countdown ul li {
	width: 20%;
	font-size: 12px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.days,
.hours,
.minutes,
.seconds,
.countdown .colon {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 64px;
	line-height: 70px;
}

.callback-block {
	width: 50%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.span_img{
    background-image: url(../img/banners/Frame.webp);
}

.callback-block__content {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.callback-block .vertical-line {
	margin-right: 10px;
}

.callback-text {
	font-size: 24px;
	line-height: 30px;
}

.callback-tel {
	color: var(--white);
	font-weight: bold;
	-webkit-transition: opacity 0.25s ease;
	-o-transition: opacity 0.25s ease;
	transition: opacity 0.25s ease;
	text-decoration: none;
}

.callback-tel:hover {
	opacity: 0.5;
}

.condition {
	padding-top: 100px;
	padding-bottom: 70px;
	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;
}

/* #models {
    padding-top: 190px;
} */

.condition .vertical-line {
	width: 2px;
	height: 77px;
	margin-right: 30px;
}

.condition__content {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.condition__text {
	font-family: 'Gotham Pro', sans-serif;
	font-weight: 700;
	font-size: 32px;
	line-height: 31px;
}

.condition__text--small {
	font-size: 23px;
	font-weight: 400;
	line-height: 23px;
	max-width: 580px;
	margin-top: 10px;
}

.condition__text:nth-child(2) {
	color: var(--gray);
}

.cars-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
}

.cars-item {
	margin-bottom: 30px;
	display: flex;
	flex-direction: row;
	background: #535353;
	width: 45%;
	max-width: 650px;
}

.car-logo {
	width: 100%;
	padding: 20px 30px 0 30px;
}

.car-logo img {
	height: 37px;
	display: block;
}

.car-logo__line {
	width: 100%;
	height: 2px;
	margin-top: 13px;
	background-color: #fff;
	-webkit-transition: width 0.4s ease-out;
	-o-transition: width 0.4s ease-out;
	transition: width 0.4s ease-out;
}

.high-cost {
	font-size: 16px;
}

.car-slider {
	position: relative;
	margin-bottom: -30px;
}

.cars-slider .swiper-container {
	width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}

.cars-slider .swiper-slide {
	text-align: center;
	font-size: 18px;
	background-color: #fff;
	background-size: cover;
	background-position: center;
	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;
}

.cars-img {
	height: 200px;
}

.cars-img .swiper-slide {
	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;
}

.colors .swiper-wrapper {
	margin: 0px auto;
	padding: 15px 0;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.colors .swiper-slide {
	width: 18px;
	height: 18px;
	background-color: transparent;
	-webkit-transition: -webkit-transform 0.2s;
	transition: -webkit-transform 0.2s;
	-o-transition: transform 0.2s;
	transition: transform 0.2s;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.thumb {
	width: 18px;
	height: 18px;
	border-radius: 50%;
	cursor: pointer;
}

.swiper-slide-thumb-active {
	-webkit-transform: scale(1.25);
	-ms-transform: scale(1.25);
	transform: scale(1.25);
}

.cars-item__center {
	padding: 30px 28px 20px 28px;
	display: flex;
	flex-direction: column;
}

.car-cost-old {
	font-family: 'Gotham Pro', sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 15px;
	margin-bottom: 5px;
	color: #ffffff;
}

.car-cost {
	font-family: 'Gotham Pro', sans-serif;
	width: 100%;
	margin-bottom: 20px;
	font-size: 32px;
	line-height: 31px;
	color: #fff;
}

.car-cost span {
	font-weight: 700;
}

.car-cost + ul {
	color: #fff;
	font-family: 'Gotham Pro', sans-serif;
	margin-bottom: 3px;
}

.car-conditions__item {
	position: relative;
	padding-left: 33px;
	font-family: 'KIAB', Arial, Helvetica, sans-serif;
	font-weight: bold;
	font-size: 14px;
	letter-spacing: 0.9px;
	color: var(--white);
}

.car-credit-cost {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-family: 'Gotham Pro', sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 15px;
	width: 100%;
	color: #ffffff;
	margin-bottom: 30px;
}

.car-credit-cost span {
	font-weight: 500;
}

.cars-item__buttons {
	width: 100%;
	margin-top: -10px;
}

.cars-item__button {
	width: 100%;
	padding: 15px;
	font-family: 'Gotham Pro', sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 15px;
	margin-bottom: 10px;
	color: #ffffff;
	border: 1px solid #05141f;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: inherit;
}

.cars-item__button.showOffer {
	background: #05141f;
}

.box-for-id-car {
	/* margin-bottom: 53px; */
	padding: 55px 0;
}

.card-car {
	display: flex;
	justify-content: space-between;
	height: 519px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	position: relative;
	overflow: hidden;
	border-radius: 23px 0 23px 23px;
	/* margin-bottom: 53px; */
}

.card-car picture {
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: -1;
}

/* .bg-car {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: contain;
    z-index: -1;
    left: -200px;
} */

.models-ancor {
	display: -ms-grid;
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	grid-gap: 15px;
	/* display: flex;
	gap: 17px;
	flex-wrap: wrap; */
	/* padding-bottom: 50px; */
}

.models-ancor a {
	text-transform: uppercase;
	text-decoration: none;
	/* width: 150px;
    height: 25px; */
	font-weight: 700;
	border-radius: 2px;
	line-height: 25px;
	text-align: center;
	/* padding: 5px 35px; */
	/* border-radius: 2px; */
	font-size: 15px;
	color: #000;
	box-shadow: 0px 4px 9.9px 0px rgba(0, 0, 0, 0.25);
	background: rgb(255, 255, 255);
	transition: 0.3s ease-in-out all;
}

.bg-gradient {
	position: absolute;
	/* width: 100%;
    height: 100%;
    object-fit: contain; */
	right: 0;
}

.wrapper-action-car {
	position: absolute;
	top: 0;
	right: 0;
	display: flex;
	gap: 25px;
	align-items: center;
	background-color: #fff;
}

.wrapper-action-car p {
	cursor: pointer;
}

.wrapper-action-car p:nth-of-type(1),
.wrapper-action-car p:nth-of-type(3) {
	background-color: #000;
	color: #fff;
	width: 195px;
	height: 50px;
	border-radius: 7px;
	line-height: 50px;
	text-align: center;
}

.wrapper-action-car p:nth-of-type(3) {
	width: 225px;
}

.wrapper-action-car p:nth-child(2) {
	background-color: #fff;
	color: #000;
	width: 179px;
	height: 50px;
	border: 1px solid #000;
	border-radius: 7px;
	line-height: 50px;
	text-align: center;
}

.left-card {
	padding: 24px 24px 22px 25px;
	width: 750px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.title-car {
	font-size: 50px;
	margin: 0;
	line-height: 1;
	text-transform: uppercase;
}

.price-car {
	/* font-size: 41px; */
	font-size: 39px;
	line-height: 1;
	font-weight: 500;
}

.wrapper-img-car {
	display: flex;
	gap: 10px;
	background: rgba(0, 0, 0, 0.57);
	border-radius: 19px;
	padding: 10px 40px;
	justify-content: center;
	max-width: 629px;
	align-self: center;
}

.wrapper-img-car a img {
	border-radius: 10px;
	max-height: 87px;
}

.right-car {
	padding-top: 110px;
	padding-right: 23px;
}

.text-right-car {
	font-size: 22px;
	text-align: center;
	padding-bottom: 42px;
}

.text-right-car b {
	font-size: 33px;
	line-height: 50px;
	font-weight: 500;
}

.list-right-car li {
	display: flex;
	align-items: center;
	gap: 15px;
	padding-bottom: 15px;
}

/* .wrapper-btn-car {
    padding-top: 40px;
} */

.right-car .banner-btn {
	width: 360px;
	height: 50px;
	background-color: #000;
	color: #fff;
	font-size: 20px;
	padding: 0;
}

.banners-swiper {
	max-width: 100%;
}

.banners-swiper .swiper-button-next,
.banners-swiper .swiper-button-prev {
	width: 50px;
	height: 50px;
	background-color: rgba(255, 255, 255, 0.5);
	border-radius: 50%;
}

.banners-swiper .swiper-button-prev {
	-webkit-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	transform: rotate(180deg);
}

.banners-swiper .swiper-button-next:after,
.banners-swiper .swiper-button-prev:after {
	content: '';
	width: 22px;
	height: 22px;
	position: absolute;
	top: 50%;
	left: 52.5%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	background-image: url(../img/icons/next-arrow.svg);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

.banners-swiper.swiper-container {
	width: 100%;
	height: 100%;
}

.banners-swiper .swiper-slide {
	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;
}

.cars-item__buttons .btn + .btn {
	margin-top: 13px;
}

.feedback-banners .banner {
	height: 600px;
	padding: 23px 0 12px 0;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.feedback-banners .banner__heading {
	margin-bottom: 17px;
}

.feedback-banners .banner__subheading {
	margin-bottom: 31px;
}

.banner-conditions {
	padding: 23px 0;
	background-image: url(../img/rectangle-translucent.png);
	background-size: 40% 100%;
	background-repeat: no-repeat;
}

.complictations {
	padding-top: 70px;
}

.complictations__item {
	align-items: center;
}

.complictations__item + .complictations__item {
	margin-top: 15px;
}

.complictations__item.hidden {
	display: none;
}

.complictation__visible {
	padding: 30px;
	background: -o-linear-gradient(right, #c4c4c4 0%, #ffffff 29.01%, #c4c4c4 46.87%, #eeeeee 100%);
	background: -webkit-gradient(linear, right top, left top, from(#c4c4c4), color-stop(29.01%, #ffffff), color-stop(46.87%, #c4c4c4), to(#eeeeee));
	background: linear-gradient(270deg, #c4c4c4 0%, #ffffff 29.01%, #c4c4c4 46.87%, #eeeeee 100%);
	border: 1px solid var(--light-gray);
	border-radius: 10px;
	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;
	font-family: 'kia-signature', sans-serif;
	width: 100%;
}

.complictation__visible img {
	max-width: 300px;
}

.complictation__visible.active {
	border-radius: 10px 10px 0 0;
}

.complictation__desc {
	width: 21%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-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: flex-start;
}

.complictation__name {
	margin-top: 6px;
	margin-bottom: 9px;
	font-size: 24px;
	line-height: 30px;
	font-weight: bold;
	display: inline-block;
}

.complictation__engine {
	margin-bottom: 26px;
	font-size: 16px;
	line-height: 22px;
	display: inline-block;
}

.complictation__stock {
	font-size: 18px;
	line-height: 22px;
	font-weight: bold;
	cursor: pointer;
	-webkit-transition: opacity 0.25s ease;
	-o-transition: opacity 0.25s ease;
	transition: opacity 0.25s ease;
}

.complictation__stock:hover {
	opacity: 0.5;
}

.colors-stock {
	position: absolute;
	bottom: -40px;
	left: 0;
	/* width: 150px; */
	margin-top: 8px;
	padding: 6px 13px;
	background-color: var(--white);
	border: 1px solid var(--black);
	border-radius: 10px;
	display: none;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.colors-stock.active {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.colors-btn {
	padding-right: 25px;
	font-weight: bold;
	font-size: 18px;
	line-height: 22px;
	background-color: transparent;
	text-decoration: underline;
	-webkit-transition: opacity 0.25s ease;
	-o-transition: opacity 0.25s ease;
	transition: opacity 0.25s ease;
}

.colors-btn::after {
	content: '';
	position: absolute;
	right: 0;
	top: 4px;
	width: 13px;
	height: 13px;
	background-image: url(../img/icons/down.svg);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
}

.colors-btn.active::after {
	-webkit-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	transform: rotate(180deg);
}

.colors-btn:hover {
	opacity: 0.5;
}

.colors-stock__color {
	width: 22px;
	height: 22px;
	border-radius: 50%;
}

.colors-stock__color + .colors-stock__color {
	margin-left: 6px;
}

.complictation__cost {
	/* font-size: 36px; */
	font-size: 34px;
	line-height: 40px;
	font-weight: bold;
}

.complictation__credit {
	margin-bottom: 25px;
	font-size: 24px;
	line-height: 30px;
	font-weight: bold;
	display: inline-block;
}

.complictation__colors {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.complictation__buttons {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.complictation__buttons .btn + .btn {
	margin-top: 13px;
}

.complictation-btn {
	margin-top: 10px;
	font-weight: bold;
	font-size: 18px;
	line-height: 22px;
	background-color: transparent;
	text-decoration: underline;
	-webkit-transition: opacity 0.25s ease;
	-o-transition: opacity 0.25s ease;
	transition: opacity 0.25s ease;
}

.complictation-btn:hover {
	opacity: 0.5;
}

.complictations__hidden--mobile {
	display: none;
}

.complictations__hidden {
	display: none;
}

.complictations__hidden.active {
	display: block;
}

.complictations__hidden--top {
	margin-bottom: 16px;
	padding: 25px 16px;
	border: 1px solid var(--light-gray);
	border-radius: 0 0 10px 10px;
}

.complictations .showMore {
	margin: 25px auto 40px auto;
}

.small-list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.small-list li {
	position: relative;
	padding-left: 35px;
	font-weight: bold;
}

.small-list li + li {
	margin-left: 10px;
}

.small-list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 20px;
	height: 20px;
	background-image: url(../img/icons/small-list__mark.svg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.complictations__hidden--bottom {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 1fr 30px 1fr 30px 1fr;
	grid-template-columns: repeat(3, 1fr);
	row-gap: 35px;
	-webkit-column-gap: 30px;
	-moz-column-gap: 30px;
	column-gap: 30px;
}

.large-list__list li {
	position: relative;
	padding-left: 35px;
}

.large-list__list li + li {
	margin-top: 10px;
}

.large-list__list li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 20px;
	height: 20px;
	background-image: url(../img/icons/large-list__mark.svg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.large-list .large-list__heading {
	margin-bottom: 18px;
	font-weight: bold;
	display: inline-block;
}

/***Footer***/
.map__inner {
	height: 600px;
	/* background-image: url(../img/kia-map.webp); */
}

.map__inner .container {
	padding-top: 90px;
	padding-bottom: 90px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}

/***Modals***/

.modal {
	width: 100%;
	height: 100%;
	position: fixed;
	z-index: -1;
	left: 0;
	top: 0;
	background-color: rgba(0, 0, 0, 0.5);
	opacity: 0;
	-webkit-transition: opacity 0.8s ease;
	-o-transition: opacity 0.8s ease;
	transition: opacity 0.8s ease;
	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;
	/* background-image: url(../img/modal-bg.jpg); */
}

.modal.active {
	opacity: 1;
}

.modal-feedback .modal__inner {
	background-image: url(../img/popup/popup-callback-desc.webp);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	padding-left: 255px;
}

.modal-credit .modal__inner {
	background-image: url(../img/popup/popup-credit-desc.webp);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.modal__inner {
	position: relative;
	/* width: 880px; */
	width: 600px;
	/* height: 491px; */
	height: 350px;
	padding: 30px;
	/* background-image: url(../img/modal-bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat; */
	border-radius: 10px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-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: flex-start;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.modal-already .modal__inner {
	background: url(../img/modal-bg.jpg) no-repeat;
	background-position: center;
}

.modal-heading {
	margin-bottom: 15px;
	/* font-size: 36px; */
	font-size: 30px;
	line-height: 1;
	/* font-weight: bold; */
	color: var(--white);
	display: block;
}

.modal-heading b {
	font-size: 17px;
	font-weight: 400;
}

.modal__inner .standart-input {
	width: 280px;
	height: 43px;
	border: 1px solid #ffffff8f;
	background-color: transparent;
	padding-left: 20px;
	color: #fff;
	text-align: left;
}

.modal__inner .standart-form .btn[type='submit'] {
	width: 280px;
	height: 47px;
	background-color: #fff;
	color: #000;
	font-size: 15px;
	font-weight: 400;
}

.modal__inner .standart-input::placeholder {
	color: #fff;
}

.modal-credit .modal__inner .standart-input {
	width: 235px;
}

.modal-credit .modal__inner .standart-form .btn[type='submit'] {
	width: 235px;
	border: none;
}

.modal-credit .modal-heading b {
	font-size: 16px;
}

.modal .agreement__label,
.modal .personal-data-ckeck__link {
	color: var(--white);
}

.js-err-text {
	color: #fff;
}

.close-modal {
	position: absolute;
	/* top: 0; */
	top: 10px;
	/* right: -60px; */
	right: 10px;
	width: 45px;
	height: 45px;
	border-radius: 50%;
	background-image: url(../img/icons/close.svg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	-webkit-transition: opacity 0.25s ease;
	-o-transition: opacity 0.25s ease;
	transition: opacity 0.25s ease;
}

.close-modal:hover {
	opacity: 0.7;
}

@media (max-width: 800px) {
	.modal-feedback .modal__inner {
		background-image: url(../img/popup/popup-callback-mob.webp);
		padding-left: 20px;
		justify-content: flex-end;
	}

	.modal-credit .modal__inner {
		background-image: url(../img/popup/popup-credit-mob.webp);
		padding: 0 30px 10px;
		justify-content: flex-end;
	}
}

.disclaimer {
	padding-top: 40px;
	padding-bottom: 40px;
	background-color: #f1f1f1;
}

.disclaimer p.hidden {
	display: none;
}

button.toggleDisclaimer {
	width: unset;
	margin: 0 auto 25px auto;
}

/***Adaptive***/
@media screen and (max-width: 1700px) {
	.horizontal-form {
		width: 90%;
	}
}

@media screen and (max-width: 1500px) {
	.cars-item {
		width: 32%;
	}

	/* .container {
        max-width: 1100px;
    } */

	/* .bnr-title {
    font-size: 70px;
    line-height: 70px;
  } */

	/* .btn {
        width: 280px;
    } */

	/* .standart-input {
        width: 280px;
    } */

	.banner__heading {
		font-size: 48px;
		line-height: 56px;
	}

	.main-banner {
		height: 750px;
	}

	.main-banner .banner__heading {
		margin-bottom: 10px;
	}

	.banner-conditions {
		background-size: 45% 100%;
	}

	.horizontal-form {
		width: 100%;
	}

	.main-banner__text {
		margin-bottom: 25px;
		font-size: 28px;
		line-height: 34px;
	}

	/* .cars-item:nth-child(3n) {
    margin-right: 0;
  } */

	.complictation__visible img {
		max-width: 275px;
	}

	.complictation__visible {
		padding: 20px;
	}

	.complictation__desc {
		margin-left: 10px;
	}

	.complictation__name {
		margin-bottom: 5px;
		font-size: 22px;
		line-height: 26px;
	}

	.complictation__engine {
		font-size: 14px;
		line-height: 16px;
	}

	.complictation__cost {
		/* font-size: 28px; */
		font-size: 26px;
		line-height: 34px;
	}

	.complictation__credit {
		margin-bottom: 20px;
		font-size: 22px;
		line-height: 26px;
	}
}

@media screen and (max-width: 1200px) {
	.cars-item {
		width: 45%;
	}

	.page-body {
		font-size: 15px;
		line-height: 17px;
	}

	.container {
		max-width: 1000px;
	}

	.btn {
		height: 50px;
		font-size: 14px;
		line-height: 16px;
	}

	.second-heading {
		font-size: 40px;
		line-height: 45px;
	}

	.banner__heading {
		font-size: 50px;
		line-height: 58px;
	}

	.banner__subheading {
		font-size: 30px;
		line-height: 34px;
	}

	.main-banner .banner__subheading {
		margin-bottom: 20px;
	}
	/* new mobile timer */

	.wrapper-timer {
		display: flex;
		justify-content: space-between;
		flex-direction: column;
		align-items: center;
		/* gap: 66px; */
		padding: 20px;
		position: relative;
		/* bottom: -50%; */
		/* left: 50%; */
		/* transform: translateX(-50%); */
		z-index: 11;
		width: 90%;
		/* height: 188px; */
		border-radius: 6px;
		box-shadow: 0px 4px 13.6px 0px rgba(0, 0, 0, 0.25);
		background: rgb(255, 255, 255);
	}

	.wrapper-text-timer h3 {
		font-size: 19px;
		line-height: 25px;
		margin: 0;
		text-wrap: balance;
	}
	.wrapper-text-timer p {
		font-size: 16px;
		color: black;
		padding: 5px 0 15px 0;
		text-wrap: balance;
	}
	.timer-btn-wrapper {
		display: flex;
		flex-direction: column-reverse;
		gap: 84px;
	}

	.timer-btn-wrapper span {
		padding-left: 0;
		font-size: 14px;
	}

	.timer {
		position: absolute;
		bottom: 33%;
		gap: 14px;
		width: 88%;
		/* max-width: 280px; */
	}

	.timer-btn {
		align-self: center;
		width: 100%;
	}

	.wrapper-text-timer .banner-btn {
		width: 100%;
		margin-top: 20px;
	}

	.time-count__item {
		width: 30px;
	}
	.count-round {
		bottom: -12px;
	}
	/* #models {
        padding-top: 370px !important;
    } */
	.time-count__text {
		font-size: 11px;
	}

	.wrapper-text-timer {
		width: 100%;
	}
	/* new mobile timer end*/
	.condition {
		padding-top: 45px;
		padding-bottom: 30px;
	}

	.car-cost span {
		font-size: 30px;
		line-height: 34px;
	}

	.car-conditions__item {
		padding-left: 25px;
		font-size: 13px;
		line-height: 15px;
	}

	.car-conditions__item::before {
		width: 16px;
		height: 16px;
	}

	.high-cost {
		font-size: 14px;
	}

	/* .modal__inner {
        width: 70%;
        padding: 25px;
    } */

	.timer-wrap {
		width: 45%;
	}

	.callback-text {
		font-size: 20px;
		line-height: 24px;
	}
}

@media screen and (max-width: 1000px) {
	.container {
		max-width: 750px;
	}

	.cars-item {
		width: 45%;
	}
}

@media screen and (max-width: 800px) {
	.cars-item {
		width: 100%;
		max-width: 400px;
	}

	.baner-desk {
		display: none;
	}

	.baner-mob {
		display: block;
	}

	.card-car {
		flex-direction: column;
		height: 695px;
		overflow: visible;
	}

	.card-car:not(:last-of-type)::after {
		content: '';
		position: absolute;
		/* bottom: -25px; */
		bottom: -40px;
		width: 100%;
		height: 2px;
		background-color: #000;
	}

	.models-ancor {
		/* flex-wrap: wrap; */
		/* justify-content: center; */
	}

	.models-ancor a {
		font-size: 12px;
		padding: 0px 15px;
	}

	.box-for-id-car {
		padding: 40px 0;
	}

	.bg-car {
		width: 100%;
		height: 100%;
	}

	.left-card {
		padding: 20px 0 0 15px;
		height: 100%;
	}

	.title-car {
		font-size: 15px;
	}

	.price-car {
		font-size: 15px;
	}

	.wrapper-img-car {
		border-radius: 7px;
		padding: 9px 26px 4px;
		gap: 7px;
		max-width: calc(100% - 20px);
	}

	.wrapper-img-car a img {
		border-radius: 3px;
	}

	.right-car {
		padding: 0;
	}

	.text-right-car {
		padding-bottom: 0px;
		padding-top: 10px;
	}

	.text-right-car b {
		line-height: 35px;
		font-size: 25px;
	}

	.list-right-car {
		padding-left: 20px;
	}

	.list-right-car li {
		padding-bottom: 12px;
		font-size: 12px;
	}

	.wrapper-btn-car {
		padding-top: 10px;
		/* max-width: calc(100% - 40px); */
		margin: 0 auto;
		padding-bottom: 9px;
	}

	.right-car .banner-btn {
		width: 100%;
		margin-bottom: 9px;
		font-size: 15px;
	}

	.wrapper-action-car p:nth-of-type(1) {
		width: 135px;
		font-size: 12px;
		line-height: 32px;
		height: 32px;
	}

	.wrapper-action-car p:nth-of-type(2),
	.wrapper-action-car p:nth-of-type(3) {
		display: none;
	}

	.container {
		/* max-width: 90%; */
		max-width: calc(100% - 40px);
	}

	.desc-hide {
		display: block !important;
	}

	.btn.desc-hide {
		display: flex !important;
	}

	.desktop-active {
		display: none;
	}

	.mobile-active {
		display: block;
	}

	.standart-input {
		width: 100%;
	}

	.horizontal-form {
		padding: 20px;
		background-color: rgba(255, 255, 255, 0.75);
	}

	.horizontal-form .standart-input {
		margin-bottom: 10px;
	}

	.horizontal-form .btn {
		width: 100%;
	}

	.standart-form {
		width: 100%;
	}

	.standart-form .btn {
		width: 100%;
	}

	.btn {
		width: 310px;
		height: 60px;
		padding: 0 8px;
		font-size: 18px;
		line-height: 20px;
		letter-spacing: normal;
	}

	.header-text {
		font-size: 15px;
		line-height: 17px;
		font-weight: bold;
	}

	.btn .callback-img {
		width: 26px;
		height: 24px;
		margin-right: 0;
	}

	.desktop-header {
		display: none;
	}

	.mobile-header {
		display: block;
	}

	.mobile-header .btn {
		/* width: unset; */
		width: 197px;
		height: 40px;
		font-size: 12px;
	}

	/* .telephone {
        font-size: 17px;
        line-height: 19px;
    } */

	.fam-auto-banner {
		background-image: url(../img/banners/fam-auto-banner__mobile.jpg);
	}

	.installment-banner {
		background-image: url(../img/banners/installment-banner__mobile.jpg);
	}

	.banner__heading {
		font-size: 28px;
		line-height: 34px;
		text-align: center;
	}

	.main-banner .banner__heading {
		margin-bottom: 7px;
	}

	.feedback-banners .banner__heading {
		margin-bottom: 5px;
	}

	.banner__subheading {
		font-size: 20px;
		line-height: 24px;
		text-align: center;
	}

	.feedback-banners .banner__subheading {
		margin-bottom: 15px;
	}

	.feedback .container {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}

	.feedback-banners .banner {
		height: 664px;
	}

	.main-content {
		/* margin-top: 62px; */
		margin-top: 79px;
	}

	.main-banner {
		height: 590px;
		padding: 0 0 20px 0;
		background-image: url(../img/banners/main-banner__mobile.jpg);
	}

	.main-banner__title .container {
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}

	.main-banner__title {
		padding: 14px 0;
	}

	.main-banner__bottom {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}

	.timer-wrap {
		width: 100%;
	}

	.countdown {
		padding: 15px 0;
		background-color: var(--dark-blue);
	}

	.days,
	.hours,
	.minutes,
	.seconds,
	.countdown .colon {
		font-size: 40px;
		line-height: 46px;
	}

	.callback-block {
		width: 100%;
		margin-top: 6px;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}

	.callback-text {
		font-size: 16px;
		line-height: 20px;
		font-weight: bold;
	}

	.condition {
		padding: 70px 0 20px 0;
		font-size: 28px;
		line-height: 34px;
	}

	.wrapper-timer {
		margin-top: 30px;
	}

	/* #models {
        padding-top: 30px;
    } */

	.condition .vertical-line {
		width: 2px;
		height: 45px;
		margin-right: 15px;
	}

	.condition__text {
		font-size: 30px;
		line-height: 34px;
	}

	.cars-item {
		margin-bottom: 40px;
	}

	.cars-item__buttons .btn + .btn {
		margin-top: 7px;
	}

	.car-logo {
		margin-bottom: 30px;
		background-size: 50%;
	}

	.high-cost {
		font-size: 12px;
	}

	.first-auto-banner {
		height: 400px;
	}

	.first-auto-banner .banner__heading,
	.first-auto-banner .banner__subheading {
		text-align: start;
	}

	.banner-conditions {
		background-size: cover;
	}

	.cars-img {
		height: 175px;
	}

	.car-slider {
		margin-bottom: -20px;
	}

	.car-slider .swiper-container {
		width: 300px;
		max-height: 300px;
	}

	.colors .swiper-wrapper {
		padding: 5px 0;
	}

	.horizontal-form__top {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}

	.complictation__visible {
		/* margin-top: 110px; */
		margin-top: 20px;
		padding: 15px;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}

	/* .complictation__img {
        margin-top: -80px;
    } */

	.complictation__desc {
		width: 100%;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}

	.complictation__desc.order-mob {
		order: -1;
	}

	.complictation__name {
		margin-top: 20px;
		margin-bottom: 4px;
	}

	.complictation__engine {
		margin-bottom: 16px;
	}

	.complictation__credit {
		margin-bottom: 18px;
	}

	.complictation__colors {
		margin-bottom: 25px;
	}

	.colors-stock {
		position: static;
	}

	.colors-btn {
		padding-right: 18px;
	}

	.colors-btn::after {
		top: 6px;
	}

	.complictations__hidden {
		display: none;
	}

	.complictations__hidden--mobile {
		position: fixed;
		top: 0;
		left: 0;
		z-index: 100;
		width: 100%;
		height: 100%;
		background-color: rgba(0, 0, 0, 0.75);
		opacity: 0;
		z-index: -1;
		-webkit-transition: opacity 0.8s ease;
		-o-transition: opacity 0.8s ease;
		transition: opacity 0.8s ease;
		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;
	}

	.complictations__hidden--mobile.active {
		opacity: 1;
	}

	.mobile-desc {
		max-height: 80%;
		padding: 15px;
		background-color: #fff;
		overflow-y: scroll;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}

	.mobile-desc__item + .mobile-desc__item {
		margin-top: 10px;
	}

	.mobile-list__heading {
		width: 100%;
		height: 40px;
		padding: 0 10px;
		font-weight: bold;
		background: -o-linear-gradient(right, #c4c4c4 0%, #ffffff 29.01%, #c4c4c4 46.87%, #eeeeee 100%);
		background: -webkit-gradient(linear, right top, left top, from(#c4c4c4), color-stop(29.01%, #ffffff), color-stop(46.87%, #c4c4c4), to(#eeeeee));
		background: linear-gradient(270deg, #c4c4c4 0%, #ffffff 29.01%, #c4c4c4 46.87%, #eeeeee 100%);
		border-radius: 10px;
		cursor: pointer;
		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;
	}

	.mobile-list__heading--char {
		background: var(--dark-blue);
		color: var(--white);
	}

	.answer__inner {
		padding: 10px 0;
	}

	.large-list__list li {
		padding-left: 30px;
	}

	.large-list__list li::before {
		width: 18px;
		height: 18px;
	}

	.large-list__list li + li {
		margin-top: 8px;
	}

	.complictations__hidden--bottom {
		-ms-grid-columns: 1fr;
		grid-template-columns: 1fr;
	}

	.small-list {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}

	.small-list li + li {
		margin-top: 10px;
		margin-left: 0;
	}

	.select-lists {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}

	.dropdown {
		width: 100%;
	}

	.dropdown + .dropdown {
		margin-left: 0;
		margin-top: 12px;
	}

	.dropbtn {
		width: 100%;
	}

	.map__inner {
		height: 350px;
		background-size: 380%;
		background-position-x: 70%;
	}

	.feedback.mobile-active {
		padding: 15px 0;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}

	.banner .car-conditions__item {
		font-size: 14px;
	}

	.modal__inner {
		/* width: 85%; */
		width: 360px;
		/* height: 460px; */
		height: 320px;
		padding: 10px 13px 23px 13px;
		/* background-image: url(../img/modal-bg__mobile.jpg); */
		-webkit-box-align: stretch;
		-ms-flex-align: stretch;
		align-items: stretch;
	}

	.modal-heading {
		/* font-size: 30px;
        line-height: 34px; */
		display: block;
		font-size: 12px;
		text-transform: uppercase;
		line-height: 14px;
		margin-bottom: 5px;
	}

	.modal-credit .modal-heading b,
	.modal-feedback .modal-heading b {
		font-size: 12px;
		text-transform: none;
	}

	.modal-credit .modal__inner .standart-input,
	.modal-feedback .modal__inner .standart-input {
		height: 32px;
		width: 100%;
		font-size: 12px;
	}

	.standart-form .standart-input + .standart-input {
		margin-top: 4px;
	}

	.modal-credit .modal__inner .standart-form .btn[type='submit'],
	.modal-feedback .modal__inner .standart-form .btn[type='submit'] {
		width: 100%;
		height: 32px;
		font-size: 12px;
		margin-top: 7px;
	}

	/* .close-modal {
        right: 0;
        top: -60px;
    } */

	.disclaimer {
		padding-top: 25px;
		padding-bottom: 25px;
	}
}

@media screen and (max-width: 450px) {
	/* .modal__inner {
        background-size: auto;
    } */

	.second-heading {
		margin-bottom: 25px;
		font-size: 30px;
		line-height: 34px;
	}

	.cars-item {
		width: 100%;
		max-width: 400px;
		margin-right: 0;
	}
}

@media (min-width: 389px) and (max-width: 800px) {
	.card-car {
		height: 695px;
	}
}

@media screen and (max-width: 350px) {
	.second-heading {
		font-size: 26px;
		line-height: 30px;
	}
}

.banners-swiper .swiper-button-next,
.banners-swiper .swiper-button-prev {
	background-color: rgb(255 255 255 / 82%);
}

.banners-swiper .swiper-button-next.swiper-button-disabled,
.banners-swiper .swiper-button-prev.swiper-button-disabled {
	opacity: 1;
	background-color: rgb(255 255 255 / 66%);
}

/*=========New block style=========*/

.complictation__old-cost {
	font-size: 24px;
	line-height: 28px;
	text-decoration: line-through;
	color: #666666;
}

.complictation__img-block {
	flex-basis: 32%;
}

.complictation__visible img {
	max-width: 100%;
}

.filtered-show,
.showmore-show {
	display: flex;
	opacity: 1;
	transition: 0.3s;
}

.filtered-hide,
.showmore-hide {
	display: none;
	opacity: 0;
}

.js--show-more.hidden {
	display: none;
}

.banner-main {
	position: relative;
	/* height: 635px; */
	/* height: auto; */
}

.banner-main__bg {
	height: 100%;
	width: 100%;
}

.banner-main__bg img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

/* .banner-main__content {
     aspect-ratio: 1; 
    position: absolute;
     top: 0; 
    left: 0;
    right: 0;
     bottom: 0; 
    bottom: 18%;
    display: flex;
    align-items: end;
     padding-left: 16px;
} */

.banner-btn {
	/* background-color: #05141F; */
	background-color: #fff;
	border-radius: 10px;
	font-family: 'Gotham Pro', sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 16px;
	line-height: 15px;

	/* color: #FFFFFF; */
	color: #000;
	/* padding: 11px 53px; */
	/* margin-top: 45px; */
	transition: 0.2s;
}

.list-credit {
	display: none;
}

@media screen and (min-width: 980px) {
	/* .banner-main__content {
        aspect-ratio: 7/2;
        padding-left: 14%;
    } */

	.banner-btn {
		font-size: 24px;
		line-height: 23px;
		/* padding: 19px 87px; */
		width: 341px;
		height: 61px;
		text-align: center;
	}
}

@media screen and (max-width: 1500px) {
	.cars-item {
		flex-direction: column;
	}
}

@media screen and (min-width: 1500px) {
	.cars-item {
		min-width: 600px;
		width: 49%;
		max-width: 650px;
		justify-content: space-between;
		margin-bottom: 40px;
	}

	.cars-list {
		justify-content: space-between;
	}

	.car-slider {
		width: 302px;
		margin-bottom: 0;
	}

	.cars-item__center {
		width: 292px;
		padding: 20px 20px 10px 0;
	}

	.colors .swiper-wrapper {
		padding: 3px;
	}

	.cars-img {
		height: 175px;
		margin-bottom: -8px;
		margin-top: 10px;
	}

	.car-cost-old {
		margin-bottom: 11px;
	}

	.car-cost {
		font-size: 34px;
		line-height: 33px;
		margin-bottom: 15px;
	}

	.car-credit-cost {
		margin-bottom: 40px;
	}

	.cars-item__buttons {
		margin-top: -20px;
	}

	.cars-item__button {
		padding: 12px;
	}

	.condition__text {
		font-family: 'Gotham Pro', sans-serif;
		font-weight: 700;
		font-size: 46px;
		line-height: 44px;
	}

	.colors.swiper-container-pointer-events {
		max-width: 200px;
	}

	.cars-img .swiper-slide {
		padding-left: 10px;
	}
}

.bnr {
	position: relative;
}

.bnr__content {
	display: flex;
	flex-direction: column;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	top: 0;
	padding: 30px 15px 10px 15px;
}

.bnr-title {
	font-family: 'Gotham Pro', sans-serif;
	display: block;
	margin: 0;
	color: #fff;
	text-transform: uppercase;
	margin-bottom: 10px;

	font-size: 77px;
	font-weight: 700;
	line-height: 92px;
	text-align: left;
}

.bnr-subtitle {
	font-family: 'Gotham Pro', sans-serif;
	display: block;
	font-weight: 400;
	font-size: 16px;
	line-height: 15px;
	margin-bottom: 15px;
	color: #fff;
}

.bnr-form {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	height: 100%;
}

.bnr-form__inputs {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.bnr-form__input {
	font-family: 'Gotham Pro', sans-serif;
	font-weight: 400;
	font-size: 20px;
	line-height: 19px;
	border-radius: 14px;
	border: 1px solid #ffffff;
	color: #ffffff;
	background: inherit;
	padding: 11px 6px 9px 11px;
	margin-bottom: 6px;
	outline: none;
	max-width: 200px;
}

.bnr-form__input::placeholder {
	font-family: 'Gotham Pro', sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 15px;
	color: #ffffff;
}

.bnr-form__btn {
	font-family: 'Gotham Pro', sans-serif;
	background: #05141f;
	border-radius: 10px;
	max-width: 177px;
	font-weight: 400;
	font-size: 16px;
	line-height: 15px;
	padding: 11px;
	color: #fff;
	margin-bottom: 5px;
}

.bnr-agreement {
	display: flex;
	flex-direction: column;
}

.bnr-agreement__label {
	font-family: 'Gotham Pro', sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 10px;
	line-height: 10px;
	color: #ffffff;
	display: flex;
	position: relative;
	margin-top: 5px;
}

.bnr-agreement__label span {
	display: flex;
	align-items: center;
	gap: 5px;
}

.bnr-agreement__label span p {
	max-width: 100%;
}

.bnr-agreement__label a {
	font-family: 'Gotham Pro', sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 10px;
	line-height: 10px;
	color: #ffffff;
}

/* .bnr-agreement__label::before {
    content: "";
    width: 8px;
    height: 8px;
    display: block;
    background-image: url(../img/checked.svg);
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 5px;
} */
@media screen and (min-width: 800px) {
	.bnr__content {
		padding: 31px 20px 46px 34px;
	}

	/* .bnr-title {
        font-size: 96px;
        line-height: 92px;
        mix-blend-mode: 3px;
    } */
	.bnr-subtitle {
		font-size: 26px;
		line-height: 25px;
	}

	.bnr-credit .bnr-form {
		justify-content: normal;
		gap: 20px;
		padding-top: 30px;
	}

	.bnr-tradein .bnr-form__btn {
		background-color: #000;
		color: #fff;
	}

	.bnr-form__input {
		max-width: 293px;
		font-size: 14px;
		line-height: 13px;
		padding: 14px 19px;
	}

	.bnr-form__input::placeholder {
	}

	.bnr-form__btn {
		background-color: #fff;
		color: #000;
		max-width: 293px;
		font-size: 24px;
		line-height: 23px;
		padding: 19px;
	}

	.bnr-agreement {
	}

	.bnr-agreement__label {
		font-size: 10px;
		line-height: 10px;
	}

	.bnr-agreement__label a {
	}
}

.d-d-none {
	display: none;
}

@media screen and (min-width: 800px) {
	.d-d-none {
		display: flex;
	}
}

@media screen and (min-width: 1550px) {
	.bnr-title {
		font-size: 77px;
		line-height: 92px;
		/* mix-blend-mode: 3px; */
	}

	.bnr-credit .bnr-form {
		gap: 10px;
		padding-top: 15px;
	}
}

@media screen and (max-width: 800px) {
	.banner-main {
		/* height: auto; */
		/* aspect-ratio: 360/460; */
		/* aspect-ratio: 360/553; */
	}

	.banner-main__content {
		/* aspect-ratio: 360/280; */
		/* bottom: 35px; */
	}

	.banner-btn {
		width: 100%;
		height: 55px;
	}
}

@media screen and (max-width: 800px) {
	.bnr__content {
		/* padding: 10px 20px 46px 34px; */
		padding: 70% 20px 10px;
	}

	.bnr-title {
		font-size: 57px;
		line-height: 1;
	}

	.bnr-subtitle {
		font-size: 17px;
		line-height: 17px;
	}

	.bnr-form {
		height: auto;
		gap: 10px;
	}

	.bnr-form__input {
		max-width: 100%;
	}

	.list-credit {
		display: block;
		color: #fff;
		font-size: 20px;
		padding: 20px 0;
	}

	.list-credit li {
		display: flex;
		align-items: center;
		gap: 10px;
		padding-bottom: 15px;
	}

	.bnr-form__btn {
		font-size: 20px;
		line-height: 16px;
		/* padding: 13px; */
		background: #fff;
		color: #000;
		width: 100%;
		max-width: 100%;
		padding: 0;
		height: 50px;
	}
}

/* REDESIGN REDESIGN REDESIGN REDESIGN REDESIGN REDESIGN REDESIGN  */

.page-header__left svg:hover {
	opacity: 0.6;
	transition: 0.3s ease-in-out all;
	cursor: pointer;
}

.showFeedback:hover {
	background-color: white;
	color: black;
	outline: 1px solid black;
	transition: 0.3s ease-in-out all;
	border: none;
}

.banner-btn:hover {
	background-color: rgb(0, 0, 0);
	color: rgb(255, 255, 255);
	outline: none;
	transition: 0.3s ease-in-out all;
	border: none;
}

.wrapper-text-timer .banner-btn:hover {
	background-color: white;
	color: black;
	outline: 1px solid black;
	transition: 0.3s ease-in-out all;
	border: none;
}

.models-ancor a:hover {
	transform: scale(1.1);
	transition: 0.3s ease-in-out all;
	background-color: rgb(0, 0, 0);
	color: rgb(255, 255, 255);
	outline: none;
}

.showCredit:hover {
	background-color: white;
	color: black;
	outline: 3px solid black;
	transition: 0.3s ease-in-out all;
	border: none;
}

.wrapper-text-timer div .showFeedback:hover {
	background-color: white;
	color: black;
	outline: 1px solid black;
	transition: 0.3s ease-in-out all;
	border: none;
}

.banner-btn.showFeedback:hover {
	background-color: rgb(0, 0, 0);
	color: rgb(255, 255, 255);
	outline: none;
	transition: 0.3s ease-in-out all;
	border: none;
}

.list-right-car li p {
	font-size: 16px;
	font-weight: 500;
	line-height: 14px;
	position: relative;
}

.list-right-car li p::before {
	position: absolute;
	content: '';
	width: 5px;
	height: 5px;
	background-color: black;
	left: -13px;
	top: 5px;
	border-radius: 50%;
}

.text-left-car {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	gap: 15px;
}

.list-right-car,
.wrapper-btn-car {
	display: flex;
	flex-direction: column;
	align-self: center;
	gap: 8px;
	padding-bottom: 42px;
}

.right-car {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding-top: 44px;
}

.card-car {
	border: 3px solid black;
	border-radius: 15px;
}

.model-card-image {
	max-height: 321px;
	max-width: fit-content;
	/* transform: scale(-1, 1); */
	position: relative;
	left: 23%;
}

.title-car {
	color: white;
}

.price-car.old-price {
	font-size: 18px;
	font-weight: 400;
	line-height: 17.23px;
	text-align: right;
	color: white;
	text-decoration: line-through;
}

.price-car {
	font-size: 25px;
	font-weight: 400;
	line-height: 44px;
	text-align: right;
	color: white;
}

.price-car span {
	font-weight: 700;
}

.right-car .banner-btn.showFeedback {
	background-color: rgb(250, 250, 250);
	color: black;
	/* outline: 3px solid black; */
	font-weight: 500;
}

.right-car .banner-btn.showFeedback:hover {
	background-color: rgb(0, 0, 0);
	color: rgb(255, 255, 255);
	outline: none;
	transition: 0.3s ease-in-out all;
	border: none;
}

.modal-thanks .modal__inner {
	background-image: url(../img/thx-pop.webp);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	padding-left: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding-top: 80px;
	justify-content: flex-start;
}

.modal-p {
	font-size: 17px;
	font-weight: 400;
	line-height: 30px;
	text-align: center;
	color: white;
}

@media (max-width: 1200px) {
	.models-ancor {
		grid-template-columns: repeat(7, 1fr);
		margin-bottom: 15px;
		/* display: flex;
		gap: 17px;
		flex-wrap: wrap; */
		/* padding-bottom: 50px; */
	}

	.models-ancor a {
		font-size: 13px;
	}
}

@media (max-width: 1000px) {
	.models-ancor {
		grid-template-columns: repeat(5, 1fr);
		grid-gap: 15px;
	}

	.models-ancor a {
		font-size: 11px;
	}
}

@media (max-width: 768px) {
	.models-ancor {
		display: flex;
		flex-wrap: wrap;
	}

	.models-ancor a {
		font-size: 12px;
	}

	.models-ancor a span {
		display: none;
	}
}

@media (max-width: 400px) {
	.models-ancor {
		grid-template-columns: repeat(3, 1fr);
	}

	.models-ancor a {
		font-size: 11px;
	}
}

.bg-car-mob {
	display: none;
	width: 348px;
}

@media (max-width: 768px) {
	.bg-car {
		display: none;
	}

	.model-card-image {
		max-width: 300px;
	}

	.text-right-car {
		font-size: 18px;
		font-weight: 400;
		line-height: 17.23px;
		text-align: center;
	}

	.text-right-car b {
		font-size: 28px;
		font-weight: 700;
		line-height: 26.8px;
		text-align: center;
	}

	.list-right-car li p {
		font-family: Gotham Pro;
		font-size: 12px;
		font-weight: 500;
		line-height: 14px;
		text-align: left;
	}

	.list-right-car li {
		padding-bottom: 5px;
		font-size: 12px;
	}

	.bg-car-mob {
		display: block;
	}

	.left-card {
		padding: 21px 0 0 0px;
		width: 100% !important;
		padding-top: 0;
		padding-bottom: 17px;
		min-width: 320px;
		max-height: 308px;
	}
	.model-card-image {
		max-height: 169px;
	}

	.wrapper-img-car a img {
		max-width: 57px;
		max-height: 33px;
	}

	.card-car picture {
		max-width: fit-content;
		max-height: 308px;
	}

	.card-car {
		width: 100%;
		max-width: fit-content;
	}

	.cars {
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.text-right-car b {
		font-size: 28px;
		font-weight: 700;
		line-height: 39.23px;
		text-align: center;
		margin-top: 5px;
	}

	.right-car {
		padding-top: 0px;
	}

	.list-right-car,
	.wrapper-btn-car {
		padding-bottom: 0;
	}

	.list-right-car,
	.wrapper-btn-car {
		padding-top: 22px;
	}
	.title-car {
		padding-left: 15px;
		padding-top: 21px;
	}
	.price-car {
		font-size: 16px;
		font-weight: 400;
		line-height: 11.48px;
		text-align: left;
	}

	.price-car span {
		font-weight: 700;
	}

	.model-card-image {
		left: 4%;
		top: 8%;
	}

	.prices {
		padding-top: 12px;
		display: flex;
		flex-direction: column;
		padding-right: 11px;
		justify-content: center;
	}

	.price-car.old-price {
		font-size: 12px;
		font-weight: 400;
		line-height: 9.57px;
		margin-bottom: 5px;
	}
	.text-right-car {
		padding-top: 0;
	}
	.right-car {
		border-top: 3px solid black;
		padding-top: 5px;
		margin-top: 6px;
	}

	.right-car .banner-btn {
		width: 290px;
		border: 3px solid black;
		border-radius: 5px;
		margin-bottom: 18px;
		font-size: 15px;
	}

	.right-car .banner-btn.showCredit {
		margin-bottom: 9px;
	}
}

.list-right-car li p span {
	font-weight: 700;
}

.banner-main {
	/* background-image: url(../img/banners/banner-new-desc.webp); */
	/* background-image: url(../img/ban-d.webp); */
	background-image: url(../img/banner-2025.webp);

	background-size: cover;
	background-position: 75% center;
	height: 732px;
	/* height: 554px; */
	width: 100vw;
}

.banner-main__content {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	position: relative;
	padding-bottom: 50px;
}

.baner-p {
	font-size: 27px;
	font-weight: 400;
	line-height: 27px;
	text-align: left;
	color: white;
	margin-bottom: 40px;
	margin-top: 35px;
	position: relative;
}

.baner-p span {
	position: relative;
	font-weight: 700;
	/* max-width: 333px; */
	/* line-height: 1; */
	margin-bottom: 10px;
	display: inline-block;
}

.baner-p:nth-child(2) {
	margin-bottom: 53px;
}

.baner-p::before {
	content: '';
	position: absolute;
	right: 108%;
	top: 28%;

	background-color: white;
	width: 348px;
	height: 3px;
}

.banner-title {
	font-size: 49px;
	font-weight: 400;
	line-height: 44px;
	text-align: left;
	color: white;
	margin-top: 68px;

    display: flex;
    flex-direction: column;
}

.banner-subtitle {
    background-color: #1D1D1D99;
    padding: 5px 15px;
    font-size: 27px;
    line-height: 27px;
    width: fit-content;
}

.banner-title span br {
	display: none;
}

.banner-title span {
	font-size: 54px;
	font-weight: 700;
	line-height: 77px;
	text-align: left;
	color: white;
}

@media (max-width: 980px) {
	.banner-btn {
		font-size: 24px;
		line-height: 23px;
		/* padding: 19px 87px; */
		width: 341px;
		height: 61px;
		text-align: center;
	}
}

@media (max-width: 800px) {
	.banner-main {
		/* background-image: url(../img/banners/banner-new-mob.webp); */
		background-image: url(../img/banner-m-2025.webp);
		height: 554px;
		max-width: 100%;
		background-size: cover;
		background-repeat: no-repeat;
	}

	.banner-main__content {
		flex-direction: column;
		height: 100%;
		align-items: flex-start;
		padding-top: 19px;
		padding-bottom: 25px;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
	}

	.banner-title {
		font-size: 20px;
		font-weight: 400;
		line-height: 36px;
		margin-top: 0;
		/* max-width: 300px; */
	}
    .banner-subtitle {
        padding: 3px 7px;
        font-size: 12px;
        line-height: 14px;
    }

	.banner-title span br {
		display: block;
	}

	.banner-title span {
		font-size: 25px;
		font-weight: 700;
		line-height: 31px;
	}

	.baner-p {
		font-size: 15px;
		font-weight: 400;
		line-height: 14.36px;
		text-align: left;
		padding-left: 20%;
		margin-bottom: 21px;
		margin-top: 17px;
	}
	.baner-p:nth-child(1) {
		margin-bottom: 0;
	}

	.baner-p span {
		font-size: 20px;
		font-weight: 700;
		line-height: 20px;
		text-align: left;
		display: inline-block;
		margin-bottom: 6px;
	}

	.wrapper-for-mob {
		display: flex;
		flex-direction: column;
	}

	.baner-p::before {
		content: '';
		position: absolute;
		right: 90%;
		top: 34%;
		background-color: white;
		width: 34px;
		height: 3px;
	}

	.baner-p:nth-child(2)::before {
		top: 10%;
	}

	.baner-p:nth-child(2) {
		margin-bottom: 11px;
	}

	.banner-btn {
		/* padding: 19px 87px; */
		width: 90vw;
		height: 61px;
		font-family: Gotham Pro;
		font-size: 20px;
		font-weight: 400;
		line-height: 23px;
		text-align: center;
	}
}

h2 {
	margin-block-start: 0;
	margin-block-end: 0;
	margin-inline-start: 0;
	margin-inline-end: 0;
}

@media (max-width: 374px) {
	.bnr-title {
		font-size: 50px;
	}
	.list-credit {
		padding: 10px 0;
	}
}

@media (max-width: 380px) {
	.price-car {
		font-size: clamp(0.75rem, -0.4167rem + 5.8333vw, 0.96875rem);
	}
}

@media (max-width: 430px) {
	.mobile-header .vertical-line {
		margin: 0 7.5px;
	}

	.models-ancor {
		gap: 10px;
	}

	.list-right-car {
		padding-top: 15px;

		gap: 0;
	}
	.list-right-car li p {
		margin-top: 8px;
	}
	.right-car {
		border-top: none;
		padding-top: 0px;
	}
	.left-card {
		border-bottom: 1px solid black;
		border-top-left-radius: 5px;
		border-top-right-radius: 5px;
	}
	.card-car {
		overflow: hidden;
	}
}

.right-car .banner-btn.showFeedback {
	border: 3px solid black;
}

/* calculator start */

.calculator .condition {
	padding-bottom: 60px;
}

.calculator .condition .vertical-line {
	height: 102px;
}

.calculator .condition__text {
	font-size: 38px;
}

.calculator__form--wrapper {
	display: grid;
	grid-template-columns: 380px auto;
	grid-template-rows: repeat(2, auto);
	grid-column-gap: 20px;
	grid-row-gap: 40px;
}

.calculator__form--choice {
	grid-area: 1 / 1 / 2 / 2;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.calculator__form--info {
	grid-area: 1 / 2 / 2 / 3;
	height: 100%;
	box-shadow: 0px 4px 10px 2px rgba(0, 0, 0, 0.15);
	border-radius: 10px;
	display: flex;
	flex-direction: column;
}
.calculator__form--contacts {
	grid-area: 2 / 1 / 3 / 3;
}

.calculator__form--title {
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 20px;
}

/* ######### select start ######### */

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
	background-color: #838890;
	color: white;
}

.calculator .select2-container {
	max-width: 380px;
	/* margin-bottom: 90px; */
}
.equipments__selects {
	display: flex;
	-moz-column-gap: 20px;
	column-gap: 20px;
	margin-bottom: 90px;
}

.equipments__selects span:nth-child(4) {
	display: none !important;
}

.calculator .select2-container--default .select2-selection--single {
	background-color: transparent;
	border-radius: 0px;
	height: 64px;
	display: flex;
	align-items: center;
	padding-left: 20px;
	font-size: 20px;
	border: 1px solid black;
	border-radius: 10px;
}

.select2-search--dropdown {
	display: none;
}

.calculator .select2-container--default .select2-selection--single .select2-selection__arrow {
	height: 26px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 20px;
	width: 20px;
}

.calculator .select2-container--default .select2-selection--single .select2-selection__arrow b {
	width: 8px;
	height: 8px;
	border-width: 0px;
	border-color: transparent;
	border-right: 2px solid rgb(0, 0, 0);
	border-bottom: 2px solid rgb(0, 0, 0);
	transform: translateY(-50%) rotate(45deg);
	transition: transform 0.1s;
}

.calculator .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
	width: 8px;
	height: 8px;
	border-width: 0px;
	border-color: transparent;
	border-right: 2px solid rgb(0, 0, 0);
	border-bottom: 2px solid rgb(0, 0, 0);
	transform: translateY(-12%) rotate(225deg);
}

.calculator__form--selects {
	display: flex;
	flex-direction: column;
	row-gap: 15px;
}

/* ######### select end ######### */

/* range slider start */

.main-finance-page__grid.main-finance-page__grid_credit .main-finance-page-price {
	padding: 35px 0;
	margin-top: 50px;
}

.main-finance-page-form {
	border-bottom: 1px solid #000;
	padding-bottom: 20px;
}

.main-finance-terms__grid {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	gap: 50px 70px;
}

.main-finance-terms__item__text {
	text-align: center;
	font-size: 18px;
	line-height: 24px;
	text-transform: uppercase;
}

.main-finance-terms__item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 10px;
}

.main-finance-terms__item__icon {
	width: 64px;
	height: 64px;
	background-color: #f4f4f4;
	border-radius: 50%;
	background-image: url(../img/icons/finance-terms-check-accent.svg);
	background-position: center;
	background-repeat: no-repeat;
}

.main-banks__grid {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: (1fr) [5];
	grid-template-columns: repeat(5, 1fr);
}

.main-banks-item {
	border: 1px solid #d0d0d0;
	margin-left: -1px;
	margin-bottom: -1px;
	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: 100px;
}

img.main-banks-item__img {
	max-width: 150px;
}

.main-finance-calculate-item:not(:last-child) {
	margin-bottom: 0px;
}

.main-finance-calculate-item__heading {
	font-size: 18px;
	margin-bottom: 10px;
}

.irs.main-finance-slider {
	height: 50px;
}

.irs.main-finance-slider .irs-grid-pol.small {
	display: none;
}

.irs.main-finance-slider .irs-grid-text {
	font-size: 13px;
	font-weight: bold;
	color: #000;
}

.irs.main-finance-slider.main-finance-slider_payment .irs-grid-text {
	display: none;
}

.irs.main-finance-slider.main-finance-slider_term .irs-grid-pol {
	display: none;
}

.irs.main-finance-slider.main-finance-slider_term .irs-min,
.irs.main-finance-slider.main-finance-slider_term .irs-max {
	display: none;
}

.irs.main-finance-slider .irs-single {
	display: none;
}

.irs.main-finance-slider.main-finance-slider_payment .irs-min,
.irs.main-finance-slider.main-finance-slider_payment .irs-max {
	background: #fff;
	font-size: 13px;
	font-weight: bold;
	color: #000;
	top: 25px;
	z-index: 2;
	visibility: visible !important;
}

.irs.main-finance-slider.main-finance-slider_payment .irs-grid-pol {
	width: 4px;
	height: 4px;
	background: #c4c4c4;
	border-radius: 50%;
	top: 9px;
}

.irs.main-finance-slider .irs-bar {
	/* background: -webkit-gradient(linear, left top, right top, from(#d1003f), color-stop(100.76%, #a700d1));
	background: -o-linear-gradient(left, #d1003f 0%, #a700d1 100.76%);
	background: linear-gradient(90deg, #d1003f 0%, #a700d1 100.76%); */
	background-color: #0c0c0c;
	height: 2px;
	top: 10px;
}

.irs.main-finance-slider .irs-line {
	height: 2px;
	background-color: #d8dadd;
	top: 11px;
}

.irs.main-finance-slider .irs-handle {
	width: 24px;
	height: 24px;
	/* background: -webkit-gradient(linear, left top, right top, from(#d1003f), color-stop(100.76%, #a700d1));
	background: -o-linear-gradient(left, #d1003f 0%, #a700d1 100.76%);
	background: linear-gradient(90deg, #d1003f 0%, #a700d1 100.76%); */
	background-color: #0c0c0c;
	border-radius: 50%;
	cursor: pointer;
	top: 0;
}

.irs.main-finance-slider .irs-handle > i:first-child {
	width: 18px;
	height: 18px;
	background: none;
	/* border: 1px solid #fff; */
	border-radius: 50%;
	left: 4px;
	top: 3px;
}

.irs.main-finance-slider .irs-handle:hover > i:first-child {
	background-color: transparent;
}

.irs.main-finance-slider .irs-grid {
	bottom: unset;
	top: 24px;
	display: none;
}
.irs-min,
.irs-max,
.irs-handle.single i {
	display: none;
}
.irs.main-finance-slider.main-finance-slider_payment .irs-handle > i:last-child {
	width: 7px;
	height: 7px;
	background: #000;
	border-radius: 50%;
	position: absolute;
	bottom: -14px;
	left: 2px;
	right: 0;
	margin: auto;
}

.main-finance-page__grid.main-finance-page__grid_tradein {
	margin-top: 25px;
	margin-bottom: 35px;
}

.main-finance-page__grid__inner {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 1fr 25px 1fr 25px 1fr 25px 1fr 25px 1fr;
	grid-template-columns: repeat(4, 1fr);
	grid-gap: 25px;
}

.main-heading__text {
	text-align: center;
	margin-bottom: 65px;
	font-size: 30px;
	font-weight: 700;
}

.main-section .select2-selection {
	background-color: #f9eaea !important;
	border: 1px solid lightgray !important;
}
.credit__calc-selects {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

/* range slider end */

.calculator__form--info-cols {
	display: flex;
	justify-content: space-between;
	padding: 30px 30px 15px 15px;
}

.not-selected-car__wrapper {
	max-width: 365px;
}

.calculator__form--info-col--1 {
	display: flex;
	margin: auto 0;
}

.calculator__form--info-col--2 {
	display: flex;
	flex-direction: column;
	row-gap: 30px;
}

.calculator__form-conditions--title,
.calculator__form-requirements--title {
	font-size: 20px;
	font-weight: 500;
	text-transform: uppercase;
	margin-bottom: 15px;
}

.calculator__form-conditions,
.calculator__form-requirements {
	display: flex;
	flex-direction: column;
	row-gap: 10px;
}

.calculator__form-conditions li,
.calculator__form-requirements li {
	position: relative;
	padding-left: 30px;
	font-size: 16px;
	font-weight: 500;
}

.calculator__form-conditions li::before,
.calculator__form-requirements li::before {
	content: '';
	position: absolute;
	left: 0;
	/* top: 50%; */
	transform: translateY(-9%);
	width: 24px;
	height: 24px;
	background-image: url('../img/calc-check.svg');
	background-size: cover;
}

.calculator__form--info-row {
	position: relative;
	height: 100px;
	width: 100%;
	background-color: #f1f1f1;
	margin-top: auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-left: 60px;
	padding-right: 86px;
	border-radius: 0px 0px 10px 10px;
}

.calculator__form--info-row:before {
	content: '';
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	background: #b6b6b6;
	width: 2px;
	height: 70%;
	top: 50%;
	transform: translateX(-50%) translateY(-50%);
}

.calculator__form--info__special-text,
.calculator__form--info__payment-text {
	font-size: 20px;
	margin-bottom: 10px;
}

.calculator__form--info__special-value,
.calculator__form--info__payment-value {
	font-size: 32px;
	font-weight: 700;
	font-variant-numeric: tabular-nums;
	font-family: Arial, Helvetica, sans-serif;
}

.calculator__form--info__special-value span,
.calculator__form--info__payment-text span {
	font-variant-numeric: tabular-nums;
	font-family: Arial, Helvetica, sans-serif;
}

.wrapper-test {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: repeat(2, 1fr);
	grid-column-gap: 20px;
	grid-row-gap: 0px;
}

.calculator__form__input-name,
.calculator__form__input-tel {
	height: 60px;
	border-radius: 10px;
	padding: 0 20px;
	border: 1px solid black;
	font-size: 20px;
}

.calculator__form__input:focus {
	border: 2px solid black;
}

.calculator__form__input-name {
	grid-area: 1 / 1 / 2 / 2;
}
.calculator__form__input-tel {
	grid-area: 1 / 2 / 2 / 3;
}

.calculator__form__button {
	grid-area: 1 / 3 / 2 / 4;
	height: 60px;
	border-radius: 10px;
	border: 1px solid #000;
	background-color: #000;
	color: #fff;
	transition: all 0.5s;
	font-size: 20px;
}

.calculator__form-checkbox {
	grid-area: 2 / 3 / 3 / 4;
}

@media (hover: hover) {
	.calculator__form__button:hover {
		background-color: #fff;
		color: #000;
	}
}

/* Custom checkbox  */

.calculator__form-checkbox .checkmark::before {
	width: 77%;
}

.calculator__form-checkbox .checkmark {
	top: 3px;
}

.calculator__form-checkbox .checkmark {
	background-color: #fff;

	border: 1px solid black;
	border-radius: 2px;
}

.calculator__form-checkbox .agreement {
	margin-top: 15px;
	padding-left: 15px;
	font-size: 16px;
	line-height: 16px;
}

@media screen and (max-width: 1200px) {
	.calculator__form--wrapper {
		grid-template-columns: 340px auto;
	}

	.calculator__form--info-cols {
		display: flex;
		flex-direction: column;
		/* justify-content: space-between; */
		padding: 10px 30px 15px 15px;
	}
	.not-selected-car__wrapper {
		margin: 0 auto;
	}
	.calculator__form--info-col--2 {
		display: flex;
		flex-direction: row;
		column-gap: 20px;
		justify-content: space-between;
	}
	.calculator__form-conditions li,
	.calculator__form-requirements li {
		position: relative;
		padding-left: 30px;
		font-size: 13px;
		font-weight: 500;
	}
}

@media screen and (max-width: 1000px) {
	.calculator .condition {
		justify-content: flex-start;
	}

	.calculator .condition .vertical-line {
		height: 75px;
	}

	.calculator .condition__text {
		font-size: 22px;
		line-height: 22px;
	}

	.calculator .condition__text--small {
		font-size: 16px;

		line-height: 16px;
		max-width: 303px;
		margin-top: 5px;
	}

	.calculator__form--title {
		font-size: 16px;
		margin-bottom: 15px;
	}

	.calculator__form--selects {
		row-gap: 10px;
	}

	.calculator__form--wrapper {
		grid-template-columns: 1fr;
		grid-template-rows: repeat(3, auto);
		grid-column-gap: 0px;
		grid-row-gap: 0px;
	}

	.calculator__form--choice {
		grid-area: 1 / 1 / 2 / 2;
	}
	.calculator__form--info {
		grid-area: 2 / 1 / 3 / 2;
		height: 100%;
		box-shadow: none;
	}
	.calculator__form--contacts {
		grid-area: 3 / 1 / 4 / 2;
		margin-top: 40px;
	}

	.calculator .select2-container {
		max-width: 100%;
	}

	.calculator .select2-container--default .select2-selection--single {
		height: 54px;

		padding-left: 15px;
		font-size: 16px;
	}

	.calculator__form--info-cols {
		flex-direction: column;
		margin-bottom: 15px;
		padding: 0;
		padding-top: 15px;
		padding-bottom: 0;
	}

	.calculator__form--info-col--1 {
		margin-bottom: 20px;
	}

	.calculator__form--info-col--2 {
		flex-direction: column;
	}

	.not-selected-car__wrapper {
		max-width: 100%;
		height: 350px;
		margin: 0 auto;
		margin-bottom: 15px;
	}

	.calculator__form--choice {
		row-gap: 30px;
	}

	.main-finance-calculate-item__heading {
		font-size: 16px;
		margin-bottom: 5px;
	}
	.calculator__form-conditions--title,
	.calculator__form-requirements--title {
		font-size: 16px;
		margin-bottom: 10px;
	}
	.calculator__form-conditions li,
	.calculator__form-requirements li {
		padding-left: 27px;
		font-size: 14px;
	}
	.calculator__form-conditions li::before,
	.calculator__form-requirements li::before {
		transform: translateY(-50%);
		width: 22px;
		height: 22px;
		top: 50%;
	}
	.calculator__form--info-row {
		height: 69px;

		padding: 0 15px;
		border-radius: 10px;
	}
	.calculator__form--info-row:before {
		height: 80%;
	}

	.calculator__form--info__special-text,
	.calculator__form--info__payment-text {
		font-size: 14px;
		margin-bottom: 5px;
	}
	.calculator__form--info__special-value,
	.calculator__form--info__payment-value {
		font-size: 20px;
	}

	.wrapper-test {
		display: grid;
		grid-template-columns: 1fr;
		grid-template-rows: repeat(4, auto);
		grid-column-gap: 0px;
		grid-row-gap: 10px;
	}

	.calculator__form__input-name {
		grid-area: 1 / 1 / 2 / 2;
	}

	.calculator__form__input-tel {
		grid-area: 2 / 1 / 3 / 2;
	}

	.calculator__form__button {
		grid-area: 3 / 1 / 4 / 2;
		font-size: 16px;
		height: 46px;
	}

	.calculator__form__input-name,
	.calculator__form__input-tel {
		height: 46px;
		padding: 0 15px;
		font-size: 16px;
	}

	.calculator__form-checkbox {
		grid-area: 4 / 1 / 5 / 2;
	}

	.calculator__form-checkbox .agreement {
		margin-top: 0px;
		padding-left: 15px;
		font-size: 14px;
		line-height: 14px;
	}
}

@media screen and (max-width: 560px) {
	.not-selected-car__wrapper {
		height: 230px;
	}

	.calculator .condition {
		padding: 80px 0 40px 0;
	}
	.calculator__form-conditions,
	.calculator__form-requirements {
		display: flex;
		flex-direction: column;
		row-gap: 5px;
	}
}

@media screen and (max-width: 460px) {
	.not-selected-car__wrapper {
		height: 190px;
	}
}
.reverse-img {
	transform: scaleX(-1);
}

.widget {
	position: fixed;
	bottom: 10%;
	left: 5%;
	background: transparent;
	z-index: 100;
}

.widget:hover {
	outline: none;
	background: transparent;
}

.widget-img {
	max-width: 230px;
	max-height: 230px;
}
@media (max-width: 1400px) {
	.widget-img {
		max-width: 160px;
		max-height: 160px;
	}
}

@media (max-width: 768px) {
	.widget-img {
		max-width: 100px;
		max-height: 100px;
	}
}

.running-text {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
}

.ticker__item {
	padding: 19px 10px;
	flex-shrink: 0;
	width: auto;
	white-space: nowrap;
}

.ticker__item span {
	padding: 0 12px;
}

.ticker {
	overflow: hidden;
	display: flex;
	width: 100%;
}
.ticker__list > span {
	flex-shrink: 0;
	width: auto;
	white-space: nowrap;
}
.ticker__list {
	display: flex;
	align-items: center;
	animation: ticker 30s infinite linear;
    background-color: #000000;
    color: #ffffff;
    font-weight: 500;
	font-size: 24px;
	text-align: center;
}

@keyframes ticker {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%);
	}
}

@media (max-width: 768px) {
	.ticker__item {
		padding: 10px;
	}
    .ticker__list {
        font-size: 12px;
		font-weight: 400;
		line-height: 100%;
    }
}
