/***Fonts***/
/* @font-face {
  font-family: "SKODA Next";
  font-display: swap;
  src: local('SKODANext'),
    url('../fonts/Skoda Next/SKODANext-Regular.woff') format('woff'),
    url('../fonts/Skoda Next/SKODANext-Regular.eot') format('embedded-opentype'),
    url('../fonts/Skoda Next/SKODANext-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
} */

/* @font-face {
  font-family: "SKODA Next";
  font-display: swap;
  src: local('SKODANext Bold'),
    url('../fonts/Skoda Next/SKODANext-Bold.woff') format('woff'),
    url('../fonts/Skoda Next/SKODANext-Bold.eot') format('embedded-opentype'),
    url('../fonts/Skoda Next/SKODANext-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
} */

/* @font-face {
  font-family: "SKODA Next";
  font-display: swap;
  src: local('SKODANext Black'),
    url('../fonts/Skoda Next/SKODANext-Black.woff') format('woff'),
    url('../fonts/Skoda Next/SKODANext-Black.eot') format('embedded-opentype'),
    url('../fonts/Skoda Next/SKODANext-Black.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
} */

@font-face {
	font-family: 'Gotham Pro';
	src: url('../fonts/GothamPro.eot');
	src: url('../fonts/GothamPro.eot?#iefix') format('embedded-opentype'), url('../fonts/GothamPro.woff2') format('woff2'), url('../fonts/GothamPro.woff') format('woff'), url('../fonts/GothamPro.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Gotham Pro';
	src: url('../fonts/GothamPro-Bold.eot');
	src: url('../fonts/GothamPro-Bold.eot?#iefix') format('embedded-opentype'), url('../fonts/GothamPro-Bold.woff2') format('woff2'), url('../fonts/GothamPro-Bold.woff') format('woff'), url('../fonts/GothamPro-Bold.ttf') format('truetype');
	font-weight: bold;
	font-style: normal;
	font-display: swap;
}

/***Colors***/
:root {
	--black: #000;
	--white: #fff;
	--green: #4ba82e;
	--gray: #e6e6e6;
	--dark-gray: #494949;
}

/***Global***/
.page {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	height: 100%;
	overflow-x: hidden;
}

*,
::before,
::after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.page-body {
	position: relative;
	min-height: 100%;
	margin: 0;
	padding: 0;
	color: var(--black);
	/* font-family: "SKODA Next", Arial, Helvetica, sans-serif; */
	/* font-family: 'Gotham Pro', sans-serif; */
	font-size: 14px;
	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;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: 'Gotham Pro', sans-serif;
}

a {
	text-decoration: none;
	cursor: pointer;
}

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;
}

/* Components */
.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;
}

.main-heading {
	margin: 0 0 20px 0;
	font-size: 42px;
	line-height: 50px;
	/* text-align: center; */
	font-weight: 700;
	text-transform: uppercase;
	/* color: #000; */
	color: var(--white);
	width: 950px;
}

.second-heading {
	margin: 10px 0 50px 0;
	font-size: 32px;
	line-height: 50px;
	font-weight: bold;
	text-align: center;
	text-transform: uppercase;
}

.mobile-active {
	display: none !important;
}

.desktop-active {
	display: block !important;
}

.btn {
	/* width: 220px;
  height: 50px; */
	padding: 0 15px;
	/* background-color: var(--green);
  box-shadow: 0px 2px 5px rgba(75, 168, 46, 0.5);
  border-radius: 30px; */

	width: 233px;
	height: 60px;
	border-radius: 5px;
	box-shadow: none;
	background: #0d392e;

	color: var(--white);
	font-weight: 500;
	text-transform: uppercase;
	opacity: 1;
	border: none;
	/* transition: all .25s ease; */
	display: flex;
	justify-content: center;
	align-items: center;
}

.btn--outlined {
	background-color: var(--white);
	border: 2px solid var(--green);
	font-size: 16px;
	text-transform: none;
	color: var(--black);
	filter: drop-shadow(2px 2px 5px rgba(75, 168, 46, 0.5));
	box-shadow: none;
}

.btn--gray {
	background-color: var(--dark-gray);
	box-shadow: 0px 2px 5px rgba(73, 73, 73, 0.5);
}

.btn--transparent {
	/* color: var(--green); */
	color: #0d392e;
	background-color: transparent;
	box-shadow: none;
	/* border: 2px solid var(--green); */
	border: 1px solid #0d392e;
	filter: drop-shadow(0px 2px 5px rgba(75, 168, 46, 0.5));
}

.btn:hover {
	text-decoration: none;
	color: var(--white);
	/* opacity: 0.7; */
	font-weight: 700;
}

.btn--outlined:hover {
	color: var(--green);
}

.btn--transparent:hover {
	/* color: var(--black); */
	color: var(--white);
	/* border-color: var(--black); */
	background-color: #0d392e;
	opacity: 1;
	filter: none;
	font-weight: 700;
}

.btn:active {
	outline: none;
	transform: translateY(5px);
}

.btn:focus {
	box-shadow: 0px 2px 5px rgba(75, 168, 46, 0.5);
}

.btn--gray:focus {
	box-shadow: 0px 2px 5px rgba(73, 73, 73, 0.5);
}

.btn--transparent:focus {
	box-shadow: none;
}

.scroll-compensate {
	padding-right: 17px;
}

.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 0.25s;
	-o-transition: opacity 0.25s;
	transition: opacity 0.25s;
}

.shadow-bottom.scrolled::after {
	opacity: 1;
}

.logo {
	/* width: 220px; */
	width: 233px;
	/* height: 46px; */
	height: 33px;
	/* background-image: url(../img/logo.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center; */
}

.scroll-target {
	scroll-margin-top: 100px;
}
.scroll-target-model {
	scroll-margin-top: 120px;
}

.logo-mob {
	display: none;
}

.list-header {
	display: flex;
	gap: 40px;
}

.list-header li a {
	color: var(--black);
	text-transform: uppercase;
}

.wrapper-tel-n-callback {
	display: flex;
	align-items: center;
	gap: 20px;
}

.wrapper-tel-n-callback div {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
}

.phone {
	font-size: 17px;
	color: var(--green);
	font-weight: 700;
	transition: color 0.25s ease;
}

.phone:hover {
	color: #000;
}

.banner {
	width: 100%;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.container {
	/* max-width: 1350px; */
	/* max-width: calc(100% - 420px); */
	max-width: calc(100% - 250px);
	margin: 0 auto;
}

/* / Components */

/* Header */
.main-header {
	position: fixed;
	left: 0;
	top: 0;
	z-index: 1000;
	/* width: 100%; */
	width: 100vw;
	background-color: var(--white);
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.main-header__inner {
	width: 100%;
	height: 100px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

/* / Header */

.icon-phone-mob {
	display: none;
}

.icon-burger-open {
	display: none;
}

.icon-burger-close {
	display: none;
}

.side-menu {
	display: none;
	flex-direction: column;
	transition: all ease 0.3s;

	width: 0vw;
	background-color: #fff;

	position: fixed;
	top: 60px;
	right: 0;
	z-index: 55;
	height: 100%;
}

.side-menu-list {
	display: none;
	flex-direction: column;
}

.side-menu.active .side-menu-list {
	display: flex;
	padding: 0 20px;
	margin: 20px 0;
}

.side-menu.active .side-menu-list li {
	display: flex;
	justify-content: center;
	padding: 20px 0;

	font-size: 15px;
	text-transform: uppercase;
}

.side-menu.active .side-menu-list li a {
	color: var(--black);
}

.side-menu.active .side-menu-list li:not(:last-of-type) {
	border-bottom: 1px solid rgb(13, 57, 46);
}

.side-menu .btn {
	display: none;
}

.side-menu.active .btn {
	display: inline-flex;
	margin: 0 20px;
	width: auto;
}

/* Main */
.main-content {
	margin-top: 100px;
	/* background-image: url(../img/main-bg.jpg); */
	background-size: 100% 100%;
}

.main-banner {
	/* height: 700px; */
	height: 800px;
	padding: 40px 0;
	/* background-image: url(../img/banners/main-banner__desktop.jpg); */
	background-image: url(../img/banners/banner-desc.webp);
}

.main-banner .btn {
	width: 250px;
}

.banner-benefits {
	padding: 20px 0 50px;
	display: flex;
	color: var(--white);
	/* width: 850px; */
	/* justify-content: space-between; */
	justify-content: flex-start;
	column-gap: 50px;
}

.item-banner-benefits {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 10px;
}

.item-banner-benefits:hover span {
	background-color: #0d392e;
	border-color: #0d392e;
	cursor: pointer;
}

.item-banner-benefits span {
	border: 2px solid white;
	width: 100px;
	height: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	transition: all ease 0.3s;
}

.item-banner-benefits p {
	text-align: center;
	font-size: 24px;
}

.callback_btn__desktop {
	display: none;
}

.form-banner {
	display: inline-block;
	width: 340px;
	margin-right: 55px;
}

.form-banner input[type='tel'] {
	width: 100%;
	padding: 20px;
	border: none;
	outline: none;
	border-radius: 0;
	margin-bottom: 4px;
}

.form-banner .btn {
	width: 100%;
	position: relative;
	top: 27px;
}
.form-banner .checkbox {
	color: #fff;
	flex-grow: 1;
	display: flex;
	gap: 5px;
	margin-top: 2rem;
	font-size: 12px;
}
.benefits {
	display: none;
	padding: 45px 0;
}

.benefit {
	color: var(--black);
	transition: all 0.25s ease;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.benefit:hover {
	color: var(--black);
	transform: translateY(-10px);
}

.benefit + .benefit {
	margin-left: 95px;
}

.benefit__text {
	font-weight: 700;
}

.cars {
	/* display: none; */
	/* padding: 40px 0; */
	padding: 80px 0;
}

.cars .second-heading {
	font-size: 32px;
	margin: 10px 0;
}

.models__links {
	/* display: grid;
  grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
  grid-gap: var(--space-unit);
  margin-bottom: var(--space-xl);

  padding-left: 50px;
  padding-right: 40px; */
	display: flex;
	gap: 40px;
}

.models-link-item {
	display: flex;
	flex-direction: column;
	align-items: center;

	/* margin: 0 20px; */
	color: var(--black);
	transition: all ease 0.3s;
}

.models-link-item:hover {
	background-color: #0d392e;
	color: var(--white);
}

.cars-list {
	margin-top: 60px;
}

.car {
	margin-bottom: 70px;
	min-height: 300px;
	background-image: url(../img/car-bg.webp);
	background-repeat: no-repeat;
	background-size: auto 85%;
	background-position-x: right;
	background-position-y: bottom;
	display: flex;
}

.model {
	position: relative;
	/* display: grid;
  grid-template-columns: 1.5fr 1fr;
  grid-template-areas: "title prices gifts" "img prices benefits";
  padding: var(--space-unit) var(--space-lg);
  grid-gap: var(--space-unit); */
	/* height: 347px; */
	max-height: 400px;
	display: flex;
	padding: 20px;
	max-width: 1500px;
	margin: 0 auto;
	gap: 15px;
	background-image: url(../img/card-background.webp);
	background-size: cover;
	background-position: left;
	background-repeat: no-repeat;
	border-radius: 5px;
	border: 1px solid rgba(13, 57, 46, 1);
	justify-content: space-between;
}

.model:not(:first-of-type) {
	margin-top: 60px;
}

.model__substrate {
	/* margin: calc(var(--space-unit) * -1) calc(var(--space-lg) * -1);
  grid-column: 1/-1;
  grid-row: 1/3; */
	left: 0;
	right: 0;
	top: 0;
	/* border-radius: var(--space-md); */
	/* z-index: 1; */

	position: absolute;
	height: 70%;
	/* background-color: #dee4e0; */
}

.left-item-model {
	/* min-width: 540px;
    max-width: 540px; */
	display: flex;
	flex-direction: column;
	position: relative;
	z-index: 2;
	justify-content: space-between;
	width: 35%;
}

.left-item-model .model__prices.mobile {
	display: none;
}

.model__img {
	/* grid-area: img; */
	/* align-self: center;
  margin: calc(var(--space-unit) * -1) calc(var(--space-lg) * -1);
  margin-right: 0; */
}

/* .model__img img {
    width: 569px;
    position: relative;
    left: 25px;
} */

.model__title {
	/* color: #001E50; */
	color: var(--black);
	/* grid-area: title; */
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	font-size: 1.125rem;
}

.model__title h3 {
	font-weight: 700;
	font-size: 48px;
	line-height: 57.6px;
	letter-spacing: 0%;
	margin: 0;
}

.right-item-model {
	/* display: flex;
    flex-direction: column; */
	position: relative;
	z-index: 222;
	/* flex-grow: 1; */
	/* gap: 60px; */
	/* padding: 20px 0; */
	/* height: 100%; */
}

.wrapper-price-n-btn {
	display: flex;
	justify-content: space-between;
	/* gap: 50px; */
	flex-direction: column;
	height: 100%;
}

.model__prices {
	/* grid-area: prices; */
	align-self: center;
	display: flex;
	flex-direction: column;
	/* gap: var(--space-unit); */
	/* color: #001E50; */
	color: #222222;
	margin-top: 25px;
}

.model__price-old {
	/* font-size: 32px; */
	font-size: 24px;
}

.right-items-model {
	display: flex;
	width: 900px;
	justify-content: space-between;
	gap: 15px;
}

.model__price-current {
	/* font-size: 2.25rem; */
	/* font-weight: 700; */
	font-size: 28px;
	padding: 10px 0;
}

.model__price-credit {
	font-size: 20px;
}

.model__price-credit b {
	color: #0d392e;
}

.model__benefits {
	/* grid-area: benefits; */
	/* align-self: center;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs); */
	width: 100%;
}

.benefits__inner {
	/* max-width: 60rem; */
	display: flex;
	/* gap: inherit; */
	gap: 10px;
	justify-content: flex-end;
	flex-direction: column;
}

.model__benefits > * {
	/* font-weight: 700; */
	/* color: rgb(0, 30, 80);/ */
	cursor: auto;
	/* font-size: 15px; */
	height: auto;
	font-weight: 700;
	font-size: 17px;
	/* line-height: 13.8px; */
	letter-spacing: 0%;
}

.benefits-item {
	/* width: 110px;
  height: 110px;
  background: #fff;
  border: 1px solid rgb(225, 225, 225);
  box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, 0.25);
  border-radius: 6px; */
	display: flex;
	/* flex-direction: column; */
	/* padding: 10px; */
	align-items: center;
	gap: 12px;
}

/* .benefits-item__img {
  flex-grow: 1;
  display: flex;
  justify-content: center;
  align-items: center;
} */

.benefits-item:hover .benefits-item__img {
	border-radius: 50%;
}

.benefits-item__img {
	width: 50px;
	/* background: #0d392e; */
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all ease 0.3s;
	border-radius: 50%;
}

/* .benefits-item__img:hover {
    border-radius: 50%;
} */

.benefits-item__img img {
	-o-object-fit: contain;
	object-fit: contain;
	-o-object-position: center;
	object-position: center;
}

.benefits-item__text {
	display: flex;
	align-items: center;
	/* justify-content: center; */
	/* text-align: center; */
	height: 40px;
	/* color: #001e50; */
	color: #222222;
	font-weight: 700;
}

/* .model__gifts {
  margin-top: var(--space-lg);
  grid-area: gifts;
  align-self: center;
  display: flex;
  justify-content: space-between;
  gap: var(--space-md);
} */

.wrapper-btn-models a {
	width: 100%;
	height: 50px;
	text-transform: none;
}

.wrapper-btn-models a:first-of-type {
	margin-bottom: 15px;
}

.center-item-model {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	/* margin-right: 100px; */
}

/* COLORS */

.model__photo-img {
	position: absolute;
	opacity: 0;
	top: 0;
	left: 0;
	z-index: -1;
	height: 239px;
}
.model__photo-img.js-active {
	position: inherit;
	opacity: 1;
}

.models-item-car__colors {
	display: flex;
	/* 
    -moz-column-gap: 15px;
    column-gap: 15px; */
}

.models-item-car__colors li {
	width: 40px;
	height: 40px;
	border: 1px solid rgba(0, 0, 0, 0.2);
	border-radius: 5px;
	position: relative;
	transition: var(--transition);
}

.models-item-car__colors li.color-active::before {
	position: absolute;
	content: '';
	width: 13px;
	height: 10px;
	background-image: url('../../img/icons/color-active.svg');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

/* SWIPER */

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
	content: '';
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
	content: '';
}

.swiper-buttons {
	position: relative;
	height: 100%;
	bottom: 40px;
	width: 360px;
}

.color-swiper {
	position: relative;
	width: 100%;
	max-width: 260px;
	margin: auto;
}

.models-item-car__colors {
	display: flex;
	padding: 0;
	margin: 0;
	list-style: none;
}

.models-item-car__colors .swiper-slide {
	width: 40px !important;
}

.js_color {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	cursor: pointer;
}

.cars .mob-hide {
	display: block;
}

.cars .desc-hide {
	display: none;
}

@media (max-width: 1580px) {
	.left-item-model {
		width: 45%;
	}
}

@media (max-width: 1100px) {
	.cars .mob-hide {
		display: none;
	}

	.cars .desc-hide {
		display: block;
	}

	.left-item-model {
		width: 100%;
	}

	.right-items-model {
		display: flex;
		flex-direction: column;
		width: 100%;
		z-index: 2;
		/* width: 900px;
        justify-content: space-between;
        gap: 15px; */
	}

	.color-swiper {
		position: relative;
		width: 100%;
		max-width: 190px;
		margin: auto;
	}

	.swiper-buttons {
		position: relative;
		height: 100%;
		bottom: 15px;
		width: 270px;
		/* height: 20px; */
	}

	.mini img {
		height: 20px;
		width: 7px;
	}
}

@media (max-width: 1599px) {
	.right-item-model {
		gap: 15px;
	}

	.model__price-current {
		font-size: 21px;
	}

	.model__price-credit {
		font-size: 17px;
	}
}

@media (max-width: 1100px) {
	/* .benefits-item {
    width: 70px;
    height: 70px;
    border: none;
    border-radius: 4px;
    padding: 5px;
    gap: 10px;
  } */

	/* .benefits__inner a:first-of-type {
        order: 4;
    }

    .benefits__inner a:last-of-type {
        order: -1;
    } */

	.benefits__inner a:nth-of-type(2) {
		position: relative;
	}

	.center-item-model {
		gap: 5px;
	}

	/* .benefits__inner a:nth-of-type(2) .benefits-item__text {
        position: absolute;
        left: 50px;
        width: 100px;
    } */

	.benefits-item__text {
		font-size: 9px;
		line-height: 11px;
		/* font-size: 10px; */
		/* height: auto; */
	}

	.benefits-item__img {
		flex-grow: 0;
		min-width: 40px;
		height: 40px;
		width: 40px;
	}

	.benefits-item__img img {
		width: 34px;
		height: 34px;
	}

	.model__price-old {
		/* font-size: 20px; */
		font-size: 14px;
	}

	.model__price-current {
		font-size: 16px;
		padding: 5px 0;
	}

	.model__price-credit {
		/* font-size: 16px; */
		font-size: 14px;
	}
}

.car + .car {
	margin-top: 40px;
}

.car .container {
}

.car__inner {
	position: relative;
	height: 100%;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}

.car__left {
	display: flex;
	align-items: flex-end;
}

.buttons {
	padding: 25px 40px;
	background-color: var(--white);
	box-shadow: 0px 2px 31px rgba(73, 73, 73, 0.3);
	border-radius: 10px;
}

.buttons .btn + .btn {
	margin-top: 12px;
}

.car .btn {
	width: 250px;
	padding: 0 8px;
}

.car__img {
	max-width: 550px;
}

.car__right .buttons {
	border-radius: 10px 10px 0 0;
}

.car__name {
	margin-left: -570px;
	left: 30%;
	top: 0;
	margin-bottom: 8px;
	font-size: 36px;
	font-weight: 700;
	line-height: 1;
	text-transform: uppercase;
	color: var(--dark-gray);
	display: block;
}

.car__cost {
	margin-bottom: 30px;
	font-size: 36px;
	font-weight: 700;
	line-height: 1;
	text-transform: uppercase;
	color: var(--green);
	display: block;
}
.car__cost_old {
	font-weight: 300;
	font-size: 30px;
	line-height: 50px;
	text-decoration-line: line-through;
	text-transform: uppercase;
	color: #494949;
}

.credit-banner {
	height: 500px;
	padding: 30px 0;
	background-image: url(../img/banners/credit-banner.jpg);
}
.smart_banner_body {
	column-gap: 100px;
	display: flex;
	margin-top: -42px;
}
.smart-banner-img {
	width: 660px;
	height: 390px;
	margin-top: 150px;
}
.smart-banner-img img {
	width: 100%;
}
.smart-banner-selector {
	margin-bottom: 36px;
	display: flex;
	align-items: center;
	height: 50px;
	background: #494949;
	box-shadow: 0px 2px 31px rgba(73, 73, 73, 0.3);
}
.smart-banner-selector_items {
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: space-evenly;
}
.smart-banner-selector_item {
	transition: all 0.5s;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 220px;
	cursor: pointer;
	font-weight: 500;
	font-size: 14px;
	line-height: 24px;
	text-align: center;
	text-transform: uppercase;
	color: #ffffff;
	text-shadow: 0px 2px 31px rgba(73, 73, 73, 0.3);
	height: 100%;
}
.smart-banner-selector_item:hover {
	background: #4ba82e5d;
	transition: all 0.5s;
	height: 100%;
	border-radius: 30px;
}
.smart-banner-selector_item.active {
	transition: all 0.5s;
	height: 100%;
	background: #4ba82e;
	box-shadow: 0px 2px 31px rgba(73, 73, 73, 0.3);
	border-radius: 30px;
}
.credit-banner .container {
	display: flex;
	justify-content: flex-start;
}

.credit-banner__heading {
	width: max-content;
	margin: 0 0 30px 0;
	font-size: 36px;
	font-weight: bold;
	text-transform: uppercase;
	line-height: 45px;
	color: var(--dark-gray);
}

.credit-banner__benefits {
	margin-bottom: 30px;
}

.credit-banner__benefits-item {
	position: relative;
	padding-left: 25px;
	font-size: 16px;
	line-height: 1;
}

.credit-banner__benefits-item + .credit-banner__benefits-item {
	margin-top: 10px;
}

.credit-banner__benefits-item::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 18px;
	height: 13px;
	background-image: url(../img/svg/done--green.svg);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
}

.white-block {
	width: 370px;
	padding: 30px 40px;
	background-color: var(--white);
	box-shadow: 0px 2px 31px rgba(73, 73, 73, 0.3);
	border-radius: 10px;
}
.white-block form input,
.white-block form .btn[type='submit'] {
	width: 100%;
}

.complictations {
	/* padding: 40px 0; */
	padding: 60px 0 0 0;
}

.complictation {
	padding: 10px 90px 10px 10px;
	border: 2px solid var(--white);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.complictation + .complictation {
	margin-top: 30px;
}

.complictation__img {
	width: 30%;
}

.complictation__description {
	width: 30%;
}

.complictation__car {
	color: var(--dark-gray);
	font-size: 36px;
	line-height: 1;
	text-transform: uppercase;
}

.complictation__name {
	color: var(--dark-gray);
	font-size: 24px;
	line-height: 1;
}

.complictation__char {
	font-size: 18px;
	font-weight: 300;
	line-height: 1;
	color: var(--dark-gray);
}

.complictation__buttons .btn + .btn {
	margin-top: 10px;
}
.complictation__price_old {
	font-weight: 300;
	font-size: 24px;
	line-height: 50px;
	text-decoration-line: line-through;
	text-transform: uppercase;
	color: #494949;
}
.complictation__price {
	font-weight: 400;
	font-size: 40px;
	line-height: 24px;
	margin-bottom: 20px;
	color: #4ba82e;
}
/* / Main */

/* Footer */
.map {
	margin-top: 100px;
	padding: 100px 0 0 0;
	height: 600px;
	margin-bottom: 80px;
	/* background-image: url(../img/map.jpg); */
	/* background-image: url(../img/bg-map-desc.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat; */
}

.img-map-mob {
	display: none;
}

.map-form {
	/* max-width: 320px; */
	max-width: 613px;
	position: relative;
	/* padding: 20px 25px; */
	/* background-color: var(--white); */
	background-color: #0d392e;
	box-shadow: 0px 2px 31px rgba(73, 73, 73, 0.3);
	/* border-radius: 10px; */
	border-radius: 20px;
	display: flex;
	flex-direction: column;
	/* align-items: center; */
	color: var(--white);
	padding: 40px 0 50px 50px;
}

.title-map {
	font-size: 32px;
	text-transform: uppercase;
	margin: 0;
}

.list-map {
	font-size: 20px;
	padding: 40px 0 25px;
}

.list-map li {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 15px;
}

.list-map li br {
	display: none;
}

.map-form .btn {
	width: 275px;
	height: 50px;
	text-transform: none;
	border: 1px solid var(--white);
	transition: all ease 0.3s;
}

@media (max-width: 639px) {
	.map {
		/* height: 400px; */
		height: auto;
		margin-top: 50px;
		padding: 0;
		/* background-size: 500%;
    background-position-x: 72%;
    background-position-y: 100%; */

		background-image: none;
	}

	.map .container {
		max-width: 100%;
	}

	.img-map-mob {
		display: block;
		width: 100%;
	}

	.map .map-form {
		/* position: relative;
    top: -30px;
    margin: 0 auto; */

		/* position: absolute;
    width: 100%;
    left: 0; */
		border-radius: 0;
		padding: 30px 20px;
	}

	.map-form .btn {
		width: 100%;
	}

	.list-map {
		font-size: 16px;
	}

	.list-map li br {
		display: block;
	}
}

.footer {
	padding-bottom: 100px;
}

.footer .legal {
	display: flex;
	gap: 20px;
	justify-content: space-between;
}

.footer__links-item {
	margin-bottom: 10px;
}

.footer__links-item a {
	color: var(--black);
	text-decoration: underline;
	margin-bottom: 10px;
}

.footer .disclaimer {
	max-width: 540px;
}

.disclaimer.hidden {
	display: none;
}

.disclaimer-full {
	display: none;
	max-width: 540px;
}

.disclaimer-full.show {
	display: block;
}

/* .footer .text {
    max-width: 570px;
} */

@media (max-width: 639px) {
	.footer .legal {
		flex-direction: column;
		gap: 20px;
	}

	.footer__links-item {
		text-align: center;
	}
}

/* / Footer */

/* Dropdown */
.dropdown {
	margin-bottom: 40px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	gap: 30px;
}

.dropdown__item {
	position: relative;
}

.dropdown__item + .dropdown__item {
	margin-left: 40px;
}

.select2-container--default .select2-selection--single {
	font-size: 20px;
	position: relative;
	/* width: 250px; */
	width: 300px;
	height: 50px;
	padding: 0 20px;
	color: var(--black);
	background-color: transparent;
	/* text-transform: uppercase; */
	text-transform: none;
	border: 2px solid var(--white);
	/* border-radius: 30px; */
	border-bottom: 1px solid;
	cursor: pointer;
	-webkit-transition: all 0.25s ease;
	-o-transition: all 0.25s ease;
	transition: all 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;
}

.select2-container--default .select2-selection--single::after {
	content: '';
	position: absolute;
	width: 16px;
	height: 20px;
	right: 10px;
	top: 20px;
	background-image: url("data:image/svg+xml;\
    charset=UTF-8,%3csvg width='21.007690' height='9.246094' viewBox='0 0 21.0077 9.24609' fill='none' xmlns='http://www.w3.org/2000/svg'\
    xmlns:xlink='http://www.w3.org/1999/xlink'%3e%3cdefs/%3e%3cpath id='Vector 493' d='M1.00385 1.00391L10.5038 8.00391L20.0038 1.00391' stroke='%230D392E'\
    stroke-opacity='1.000000' stroke-width='2.000000' stroke-linecap='round'/%3e%3c/svg%3e ");
	background-size: contain;
	background-repeat: no-repeat;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
	display: none;
}

.select2-container--default .select2-search--dropdown .select2-search__field:hover,
.dropdown__btn:not(:disabled):focus {
	-webkit-transform: none;
	-ms-transform: none;
	transform: none;
	border-color: var(--green);
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
	width: 18px;
	height: 9px;
	background-image: url(../img/svg/down.svg);
	background-position: center;
	background-size: contain;
	border: none;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
	top: 7px;
	right: 19px;
}

.dropdown__btn:not(:disabled):hover::before {
	background-image: url(../img/svg/down--green.svg);
}

.dropdown__btn:not(:disabled):focus::before {
	transform: translateY(-50%) rotate(180deg);
	background-image: url(../img/svg/down--green.svg);
}

.dropdown__btn:disabled {
	cursor: default;
	opacity: 0.5;
}

.dropdown__btn::before {
	content: '';
	position: absolute;
	right: 20px;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 18px;
	height: 9px;
	background-image: url(../img/svg/down.svg);
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
}

.dropdown__content {
	position: absolute;
	left: 0;
	top: 55px;
	z-index: 10;
	width: 100%;
	max-height: 250px;
	overflow-y: auto;
	border: 2px solid var(--green);
	border-radius: 3px;
	display: none;
}

.dropdown__content.active {
	display: block;
}

.dropdown__list {
	list-style: none;
}

.dropdown__list-item {
	height: 35px;
	padding: 0 20px;
	color: var(--dark-gray);
	text-transform: uppercase;
	background-color: var(--gray);
	-webkit-transition: all 0.25s ease;
	-o-transition: all 0.25s ease;
	transition: all 0.25s ease;
	cursor: pointer;
	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;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
	color: var(--dark-gray);
	/* text-transform: uppercase; */
	background-color: var(--gray);
	-webkit-transition: all 0.25s ease;
	-o-transition: all 0.25s ease;
	transition: all 0.25s ease;
}

/* .select2-results__option {
     color: var(--dark-gray);
  text-transform: uppercase;
  border: 2px solid var(--green);
  background-color: var(--gray);
} */

/* .select2-container--default .select2-selection--single:hover {
    border-color: var(--green);
} */

.select2-container--default .select2-selection--single:hover .select2-container--default .select2-selection--single .select2-selection__arrow b {
	background-image: url(../img/svg/down--green.svg);
}

/* .select2-container--default.select2-container--open.select2-container--below .select2-selection--single, .select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
        border-radius: 30px;
} */

/* .select2-container--open .select2-selection {
    border: 2px solid var(--green);
} */

.dropdown__list-item + .dropdown__list-item {
	border-top: 1px solid var(--green);
}

.dropdown__list-item:hover {
	background-color: rgb(228, 228, 228);
}

.select2-search--dropdown {
	display: none;
}

/* .select2-results {
    border: 2px solid var(--green);
} */

/* Equipment */

.complictations .container {
	max-width: 100%;
}

.complictstions__list .container {
	max-width: 100%;
}

.equips {
	padding-top: 30px;
}

.equips__container {
	margin-top: 15px;

	display: flex;
	flex-direction: column;
	gap: 25px;
}

.equip__engine-container {
	display: flex;
	flex-direction: column;
	gap: 25px;
}

.equip-card__name.mob_hide {
	display: none;
}

.equip-card {
	padding: 16px 20px 13px;

	/* border-radius: 7px; */
	/* background: #FFF; */
	/* box-shadow: 0px 0px 11.6px 0px rgba(0, 0, 0, 0.12); */
}

.equip-card__head {
	font-size: 12px;
	line-height: 14px;
	font-weight: 500;
	color: var(--color-black);
	text-transform: uppercase;

	display: block;
}

.equip-card__head b {
	font-size: 15px;
	line-height: 17px;
	font-weight: 700;
	color: var(--color-blue);
}

.equip-card__list {
	display: flex;
	flex-direction: column;
	gap: 9px;

	margin-top: 11px;
}

.equip-card__list-item {
	/* font-size: 11px; */
	font-size: 16px;
	/* line-height: 13px; */
	line-height: 16px;
	font-weight: 400;
	/* color: #707070; */
	color: #222;
}

.equip-card__price-old {
	display: block;

	font-size: 12px;
	line-height: 14px;
	font-weight: 500;
	color: #707070;
	text-decoration: line-through;
	text-align: right;
}

.equip-card__price {
	display: block;

	font-size: 16px;
	line-height: 18px;
	font-weight: 600;
	color: var(--color-black);
	text-align: right;
}

.equip-card__price b {
	font-weight: 700;

	color: #062047;
}

.equip-card__price-month {
	display: block;

	font-size: 12px;
	line-height: 14px;
	font-weight: 600;
	color: var(--color-black);

	text-align: right;

	/* margin-top: 6px; */
}

.equip-card__price-month b {
	font-weight: 700;

	color: #062047;
}

.equip-card__btns {
	display: flex;
	flex-direction: column;
	gap: 10px;

	margin-top: 6px;
}

.equip-card__button {
	/* height: 39px; */

	font-size: 15px;
	line-height: 17px;
	font-weight: 500;
	width: 275px;
	height: 50px;
	text-transform: none;
}

.equip-card__prices {
	margin-top: -50px;
}

/* .equip__engine-head {
    display: none;
} */

.wrapper-title-n-btn {
	display: flex;
	align-items: center;
	gap: 10px;
	width: 200px;
}

.wrapper-title-n-btn .equip-card__name.mob_hide {
	flex-grow: 1;
}

.wrapper-title-btn-character {
	display: flex;
	gap: 40px;
}

/* .equip-card__arrow.mob_hide {
    display: none;
} */

.equip-card__flex {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.equip-card__arrow {
	padding: 0;

	background: none;
}

.equip-card__info {
	/* background: #F5F5F5; */

	padding: 28px 16px 37px;

	display: none;
}

.equip-card__info::before {
	content: '';
	width: 100%;
	height: 2px;
	background-color: #fff;
	position: absolute;
	top: 120px;
	left: 0;
}

.equip-card__info-list {
	list-style: disc;
	padding-left: 15px;
}

.equip-card__info-cont {
	display: flex;
	flex-direction: column;
	gap: 27px;
}

.equip-card__info-head {
	display: block;

	/* font-size: 20px; */
	font-size: 16px;
	font-weight: 600;
	line-height: 163.523%;
	color: #212121;
}

.equip-card__info-list li {
	font-size: 12px;
	font-weight: 400;
	line-height: 14.5px;
	color: var(--color-black);
}

.equip-card__arrow svg {
	transition: all 0.4s;
}

.equip__engine-cont.active .equip-card__arrow svg {
	transform: scale(-1);
}

.equip-card__arrow.mob_hide {
	background-color: #0d392e;
	padding: 10px;
	border-radius: 6px;
}

.desc_hide {
	display: none;
}

.equip__engine-head {
	display: block;

	font-size: 32px;
	line-height: 34px;
	font-weight: 700;
	/* color: var(--color-blue); */
	color: #0d392e;

	margin-bottom: 28px;
	max-width: calc(100% - 250px);
	padding-bottom: 30px;
	margin: 0 auto;
}

.equip__engine-head.active {
	display: block;
}

.equip__engine-head.hidden {
	display: none;
}

.equip-card__list {
	margin-top: 0;

	flex-direction: row;
	/* gap: initial;
    flex-basis: 22%;
    flex-basis: 12%; */
	flex-wrap: wrap;
	/* justify-content: space-between; */
	width: 172px;
	gap: 5px;
	justify-content: center;
}

.equip-card__prices {
	margin-top: 0;

	display: flex;
	align-items: center;
	/* justify-content: space-between; */
	/* flex-basis: 16%; */
	gap: 30px;
}

.equip-card__price .text_hide,
.equip-card__price-month .text_hide {
	display: none;
}

@media (min-width: 1025px) {
	.equips {
		padding-top: 148px;
	}

	.equips .section__title::after {
		width: calc(100% + 200px);
	}

	.equips__container {
		margin-top: 40px;

		gap: 33px;
	}

	/* .equip__engine-head {
    display: block;

    font-size: 32px;
    line-height: 34px;
    font-weight: 700;
    color: var(--color-blue);

    margin-bottom: 28px;
    max-width: calc(100% - 250px);
    margin: 0 auto;
}

.equip__engine-head.active {
    display: block;
} */

	/* .equip__engine-head.hidden {
    display: none;
} */

	.equip__engine-cont {
		background: #dee4e0;
		position: relative;
	}

	.equip-card {
		width: 100%;

		/* padding: 22px 79px 22px 50px; */
		max-width: calc(100% - 250px);
		margin: 0 auto;
		padding: 20px 0;
	}

	.equip-card__head {
		display: none;
	}

	.equip__engine {
		width: 100%;
	}

	.equip-card__bg {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}

	.equip-card__name.mob_hide {
		display: block;
	}

	.equip-card__name {
		font-size: 16px;
		line-height: 18px;
		font-weight: 600;
		/* color: var(--color-black); */
		color: #0d392e;
		/* text-transform: uppercase; */

		flex-basis: 13%;
	}

	/* .equip-card__list {
    margin-top: 0;

    flex-direction: row;
    gap: initial;
    flex-basis: 22%;
    flex-basis: 12%;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 172px;
    gap: 5px;
    justify-content: center;
} */

	/* .equip-card__prices {
    margin-top: 0;

    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-basis: 16%;
    gap: 30px;
} */

	.equip-card__price-month {
		/* display: none; */
		font-size: 16px;
	}

	/* .equip-card__price .text_hide {
    display: none;
} */

	.equip-card__btns {
		margin-top: 0;

		flex-direction: row-reverse;
		justify-content: space-between;
		/* flex-basis: 34%; */
		/* gap: 25px; */
		gap: 15px;
	}

	.equip-card__arrow.desk_hide {
		display: none;
	}

	.equip-card__price-old {
		/* font-size: 15px; */
		line-height: 17px;
		font-size: 16px;
	}

	.equip-card__price {
		/* font-size: 17px; */
		line-height: 19px;
		font-size: 16px;
	}

	.equip__engine-container {
		gap: 11px;
	}

	.equip-card__arrow.mob_hide {
		display: block;
	}

	.equip-card__info {
		padding: 42px 45px 50px;

		max-width: calc(100% - 250px);
		margin: 0px auto;
	}

	.equip-card__info-cont {
		flex-direction: row;
		justify-content: space-between;
		align-items: flex-start;
	}

	.equip-card__info-head {
		/* font-size: 25px; */
		line-height: 163.523%;
		text-align: center;

		margin-bottom: 12px;
	}

	.equip-card__info-item {
		flex-basis: 33%;
	}

	.equip-card__info-list li {
		font-size: 15px;
		line-height: 17px;
	}
}

@media (max-width: 1800px) {
	.equip-card__button {
		width: 230px;
	}
}

@media (max-width: 1750px) {
	.equip-card__price-old,
	.equip-card__price,
	equip-card__price-month {
		font-size: 14px;
	}
}

@media (max-width: 1700px) {
	.wrapper-title-btn-character {
		gap: 0;
	}

	.equip-card__list-item {
		font-size: 14px;
	}
}

@media (max-width: 1650px) {
	.equip-card__button {
		width: 200px;
		padding: 0;
	}
}

@media (max-width: 1600px) {
	.equip-card__button {
		width: 170px;
		font-size: 13px;
	}
}

@media (max-width: 1550px) {
	.equip-card__prices {
		gap: 0;
		flex-direction: column;
	}

	.wrapper-title-btn-character {
		gap: 15px;
	}

	.equip-card__button {
		width: 200px;
	}
}

@media (max-width: 639px) {
	.select2-container--default .select2-selection--single {
		/* border: none; */
		padding: 0;
		font-size: 16px;
	}

	.equip__engine-head {
		max-width: calc(100% - 40px);
	}

	.equip-card__flex {
		background-color: rgb(34, 34, 34);
		color: var(--white);
		padding: 8px 20px;
	}

	.equip-card__arrow.mob_hide {
		display: none;
	}

	.wrapper-title-n-btn {
		display: none;
	}

	.equip-card {
		padding-bottom: 0;
	}

	.equip-card__list {
		flex-direction: row;
		width: 100%;
		justify-content: space-between;
		padding: 0 20px;
		margin: 15px 0;
		text-transform: uppercase;
	}

	.equip-card__list li:nth-of-type(3) {
		display: none;
	}

	.equip-card__prices {
		flex-direction: row;
		justify-content: space-between;
		padding: 0 20px;
	}

	.equip-card__price-old {
		display: none;
	}

	.equip-card__price,
	.equip-card__price-month {
		font-size: 18px;
	}

	.equip-card__bg {
		background-color: #dee4e0;
	}

	.equip-card__btns {
		align-items: center;
		padding: 10px 0;
	}

	.equip-card__button {
		width: 275px;
	}

	.equip-card__info {
		padding: 0;
		max-width: calc(100% - 40px);
		margin: 0 auto;
		background-color: #dee4e0;
		padding-left: 10px;
	}
}

/* / Dropdown */

.disclaimer .accordion-item {
	border: none;
}

.disclaimer .accordion-collapse {
	border: 1px solid rgba(0, 0, 0, 0.125);
}

.disclaimer .accordion-header {
	width: 360px;
	margin: 0 auto 20px auto;
}

.disclaimer .accordion-button {
	color: var(--white);
	font-weight: 700;
	background-color: var(--black);
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.disclaimer .accordion-button::after {
	width: 10px;
	height: 6px;
	margin-left: 12px;
	background-image: url(../img/svg/red-arrow.svg);
	background-size: contain;
}

.disclaimer .accordion-button:not(.collapsed)::after {
	background-image: url(../img/svg/red-arrow.svg);
}

.disclaimer .accordion-button:focus {
	outline: none;
	border: none;
	-webkit-box-shadow: none;
	box-shadow: none;
}

.standart-form {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.standart-input {
	width: 250px;
	height: 50px;
	padding: 0 10px;
	text-align: center;
	border: 2px solid #494949;
	font-size: 14px;
	text-transform: uppercase;
	-webkit-box-shadow: 0px 0px 8px 0px rgba(204, 204, 204, 0.5);
	-moz-box-shadow: 0px 0px 8px 0px rgba(204, 204, 204, 0.5);
	box-shadow: 0px 0px 8px 0px rgba(204, 204, 204, 0.5);
	transition: all 0.25s ease;
	/* filter: drop-shadow(0px 2px 5px rgba(73, 73, 73, 0.6)); */
	border-radius: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.standart-form .standart-input + .standart-input {
	margin-top: 10px;
}

.standart-form .btn[type='submit'] {
	width: 250px;
}

.standart-input:focus {
	background-color: var(--gray);
}

.agreement {
	margin-top: 15px;
	padding-left: 15px;
	font-size: 12px;
	line-height: 20px;
	font-weight: 300;
	color: var(--black);
}

.personal-data-ckeck__link {
	color: var(--black);
	/* text-decoration: underline; */
}

.personal-data-ckeck__link:hover {
	color: var(--black);
}

.agreement__label {
	position: relative;
	left: 15px;
	cursor: pointer;
}

.checkmark {
	position: absolute;
	left: -30px;
	top: 0;
	height: 20px;
	width: 20px;
	background-color: var(--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: 84%;
	height: 84%;
	background-image: url(../img/svg/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;
}

/*  Credit */

.credit-form {
	color: #fff;
	padding-top: 100px;
}

.wrapper-credit {
	position: relative;
	background-color: #0d392e;

	display: flex;
}

.img-credit {
	/* position: absolute;
    left: 0;
    top: 0; */
	/* z-index: 3; */
	width: 50%;
	object-fit: cover;
}

.img-credit.mobile {
	display: none;
}

.wrapper-credit .container {
	/* padding: 0 20px; */
	display: flex;
	align-items: center;
	/* padding-left: 40px;
    padding-bottom: 20px;
    padding-top: 20px; */
	padding: 20px 40px;
}

/* .tradein-form__wrapper {
  display: flex;
  justify-content: flex-end;
} */

.credit-form__inner {
	flex-grow: 1;
	/* max-width: 605px; */

	background: #0d392e;
	/* position: relative; */
	z-index: 4;
	/* padding: 22px 0;
  padding-left: 15px; */
}

.credit-form__title {
	font-size: 32px;
	font-weight: 700;
	margin: 0;
}

.list-credit {
	list-style: disc;
	padding: 40px 0 40px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding-left: 20px;
}

/* .tradein-form__subtitle {
  font-size: 2rem;
  margin: var(--space-lg) 0;
} */

/* .tradein-form__price {
  font-size: 3rem;
  font-weight: 700;
} */

.credit-form__form {
	/* margin-top: var(--space-xl);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); */
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
}

.credit-form__form .btn {
	width: 275px;
	height: 50px;
	text-transform: none;
	border: 1px solid var(--white);
	transition: all ease 0.3s;
}

.credit-form__form input[type='text'],
.credit-form__form input[type='tel'] {
	width: 200px;
	height: 50px;
	border-radius: 6px;
	padding-left: 10px;
	border: none;
	outline: none;
}

.credit-form__form .checkbox {
	/* grid-column: 1/-1;
  margin-top: var(--space-xs);
  margin-bottom: var(--space-xs); */
	flex-grow: 1;
	display: flex;
	gap: 5px;
}

@media (min-width: 1440px) {
	.wrapper-credit .container {
		max-width: 800px;
		margin: 0;
	}
}

@media (min-width: 640px) {
	.tradein-form__form .checkbox .checkbox__label {
		color: #fff;
	}
}
@media (max-width: 639px) {
	.credit-form {
		background: rgb(241, 241, 241);
		padding: 0;
	}

	.wrapper-credit {
		flex-direction: column;
	}

	.img-credit {
		width: 100%;
		height: 235px;
		filter: brightness(0.8);
		display: none;
	}

	.img-credit.mobile {
		display: block;
	}

	.wrapper-credit .container {
		padding: 0;
		padding-bottom: 20px;
	}

	.credit-form__title {
		text-align: center;
		font-size: 20px;
		position: absolute;
		top: 200px;
		left: 0;
		width: 100%;
		z-index: 44;
	}
	/* .tradein-form__subtitle {
    font-size: 1.14rem;
    text-align: center;
    margin: var(--space-xs) 0;
  }
  .tradein-form__subtitle span {
    text-transform: uppercase;
  }
  .tradein-form__price {
    font-size: 1.7rem;
    text-align: center;
    color: rgb(11, 141, 205);
    text-transform: uppercase;
  } */
	/* .tradein-form__body {
    padding-top: var(--space-unit);
  } */
	.tradein-form__body::after {
		margin-top: var(--space-unit);
		/* content: ""; */
		display: block;
		height: 250px;
		background-image: url(../img/ref_tradeinform_bg.jpg);
		background-size: cover;
		background-position: 13%;
		margin-left: -20px;
		margin-right: -20px;
	}

	.list-credit {
		padding: 20px 0 30px;
		padding-left: 20px;
		gap: 15px;
	}

	.credit-form__form {
		margin: 0;
		padding: var(--space-md) 0 var(--space-lg);
	}

	.credit-form__form input[type='text'],
	.credit-form__form input[type='tel'] {
		width: 100%;
	}

	.credit-form__form .btn {
		width: 100%;
	}

	.credit-form__form .checkbox__label {
		color: #fff;
	}

	.credit-form__form .checkbox {
		font-size: 10px;
	}
}

/*  Tradein */

.tradein-form {
	color: #fff;
	padding-top: 100px;
}

.wrapper-tradein {
	position: relative;
	background-color: #0d392e;

	display: flex;
	flex-direction: row-reverse;
}

.img-tradein {
	/* position: absolute;
    left: 0;
    top: 0; */
	/* z-index: 3; */
	width: 50%;
}

.wrapper-tradein .container {
	/* padding: 0 20px; */
	display: flex;
	align-items: center;
	/* padding-left: 40px;
    padding-bottom: 20px;
    padding-top: 20px; */
	padding: 20px 40px;
}

/* .tradein-form__wrapper {
  display: flex;
  justify-content: flex-end;
} */

.tradein-form__inner {
	flex-grow: 1;
	/* max-width: 605px; */

	background: #0d392e;
	/* position: relative; */
	z-index: 4;
	/* padding: 22px 0;
  padding-left: 15px; */
}

.tradein-form__title {
	font-size: 32px;
	font-weight: 700;
	margin: 0;
}

.list-tradein {
	list-style: disc;
	padding: 40px 0 40px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding-left: 20px;
}

.list-tradein li br {
	display: none;
}

/* .tradein-form__subtitle {
  font-size: 2rem;
  margin: var(--space-lg) 0;
} */

/* .tradein-form__price {
  font-size: 3rem;
  font-weight: 700;
} */

.tradein-form__form {
	/* margin-top: var(--space-xl);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); */
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
}

.tradein-form__form .btn {
	width: 275px;
	height: 50px;
	text-transform: none;
	border: 1px solid var(--white);
	transition: all ease 0.3s;
}

.tradein-form__form input[type='text'],
.tradein-form__form input[type='tel'] {
	width: 200px;
	height: 50px;
	border-radius: 6px;
	padding-left: 10px;
	border: none;
	outline: none;
}

.tradein-form__form .checkbox {
	/* grid-column: 1/-1;
  margin-top: var(--space-xs);
  margin-bottom: var(--space-xs); */
	flex-grow: 1;
	display: flex;
	gap: 5px;
}

@media (min-width: 1440px) {
	.wrapper-tradein .container {
		max-width: 800px;
		margin: 0;
	}
}

@media (min-width: 640px) {
	.tradein-form__form .checkbox .checkbox__label {
		color: #fff;
	}
}
@media (max-width: 639px) {
	.tradein-form {
		background: rgb(241, 241, 241);
		padding: 0;
		padding-top: 60px;
	}

	.wrapper-tradein {
		flex-direction: column;
	}

	.img-tradein {
		/* display: none; */
		width: 100%;
		height: 235px;
		filter: brightness(0.8);
	}

	.wrapper-tradein .container {
		padding: 0;
		padding-bottom: 20px;
	}

	.tradein-form__title {
		/* text-align: center; */
		font-size: 20px;
		position: absolute;
		top: 185px;
		left: 22px;
		width: 60%;
		z-index: 44;
	}
	/* .tradein-form__subtitle {
    font-size: 1.14rem;
    text-align: center;
    margin: var(--space-xs) 0;
  }
  .tradein-form__subtitle span {
    text-transform: uppercase;
  }
  .tradein-form__price {
    font-size: 1.7rem;
    text-align: center;
    color: rgb(11, 141, 205);
    text-transform: uppercase;
  } */
	/* .tradein-form__body {
    padding-top: var(--space-unit);
  } */
	.tradein-form__body::after {
		margin-top: var(--space-unit);
		/* content: ""; */
		display: block;
		height: 250px;
		background-image: url(../img/ref_tradeinform_bg.jpg);
		background-size: cover;
		background-position: 13%;
		margin-left: -20px;
		margin-right: -20px;
	}

	.list-tradein {
		padding: 20px 0 30px;
		padding-left: 20px;
		gap: 15px;
	}

	.list-tradein li br {
		display: block;
	}

	.tradein-form__form {
		margin: 0;
		padding: var(--space-md) 0 var(--space-lg);
	}

	.tradein-form__form input[type='text'],
	.tradein-form__form input[type='tel'] {
		width: 100%;
	}

	.tradein-form__form .btn {
		width: 100%;
	}

	.tradein-form__form .checkbox__label {
		color: #fff;
	}

	.tradein-form__form .checkbox {
		font-size: 10px;
	}
}

/* Modals */

.modal {
	display: none;
}

.modal .modal-dialog {
	max-width: 880px;
}

.modal .modal-content {
	max-height: 100%;
	height: 490px;
	padding: 35px 35px 60px 35px;
	-webkit-box-shadow: 0px 0px 5px 5px rgba(0, 0, 0, 0.05);
	box-shadow: 0px 0px 5px 5px rgba(0, 0, 0, 0.05);
	border: none;
	border-radius: 10px;
	background-image: url(../img/modal-bg.png);
	background-repeat: no-repeat;
	background-size: cover;
	background-position-x: center;
	background-position-y: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	justify-content: space-between;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.modal {
	width: 600px;
	height: 400px;
	background-color: transparent;
	background-size: cover;
	background-repeat: no-repeat;
	color: var(--white);
	padding: 20px;
	border-radius: 10px;
}

/* .modal {
    background-size: cover;
    background-repeat: no-repeat;
    color: var(--white);
    padding: 20px;
} */

.modal#modal-credit {
	background-image: url(../img/bg-credit-desk.webp);
}

.modal#modal-callback {
	background-image: url(../img/bg-callback-desc.webp);
}

.modal#modal-success,
.modal#modal-already {
	background-image: url(../img/bg-success-desc.webp);
}

/* .modal#modal-already {
    background-image: url(../img/bg-callback-desc.webp);
} */

.wrapper-success-n-already {
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.wrapper-success-n-already h3 {
	text-transform: uppercase;
	margin: 0;
	font-size: 32px;
}

.wrapper-success-n-already p {
	font-size: 32px;
	font-weight: 700;
}

.modal .credit-form__title {
	width: 340px;
	text-transform: uppercase;
}

#modal-callback .credit-form__title {
	width: auto;
}

.modal .credit-form__form input[type='text'],
.modal .credit-form__form input[type='tel'] {
	/* width: 140px; */
	width: 160px;
}

.modal .btn {
	width: 180px;
	font-size: 15px;
}

.fancybox__content > .f-button.is-close-btn {
	top: 13px;
	right: 13px;
	--f-button-color: white;
	opacity: 1;
}

/* .modal .credit-form__form  */

.modal__heading {
	font-size: 36px;
	line-height: 1.15;
	font-weight: bold;
	text-transform: uppercase;
	color: var(--white);
}

.modal-form {
	padding: 20px 25px;
	background-color: var(--white);
	box-shadow: 0px 2px 31px rgb(73 73 73 / 30%);
	border-radius: 10px;
}

/* .modal-close {
  position: absolute;
  top: 0;
  right: -65px;
  width: 45px;
  height: 45px;
  background-color: transparent;
  background-image: url(../img/svg/close.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-transition: opacity .25s ease;
  -o-transition: opacity .25s ease;
  transition: opacity .25s ease;
} */

/* .modal-close:hover {
  opacity: 0.75;
} */
/* .main-header__inner .align-items-center a {
  display: none;
}
.main-header__inner .justify-content-center.align-items-center a {
  display: block;
} */

/* .fancybox__content {
    padding: 0;
} */

.logo-modal-mob {
	display: none;
}

@media screen and (max-width: 639px) {
	.modal {
		width: 360px;
		height: 320px;
		padding: 15px;
	}

	.modal#modal-credit {
		background-image: url(../img/bg-credit-mob.webp);
	}

	.modal#modal-callback {
		background-image: url(../img/bg-callback-mob.webp);
	}

	.modal#modal-success,
	.modal#modal-already {
		background-image: url(../img/bg-success-mob.webp);
	}

	.wrapper-success-n-already h3 {
		font-size: 20px;
	}

	.wrapper-success-n-already p {
		font-size: 20px;
	}

	.wrapper-success-n-already svg {
		display: none;
	}

	.wrapper-success-n-already .logo-modal-mob {
		display: block;
	}

	.modal .credit-form__title {
		position: static;
		width: 240px;
		text-align: left;
	}

	.modal .list-credit {
		gap: 0;
		font-size: 12px;
	}

	#modal-callback .list-credit {
		font-size: 11px;
	}

	.modal .credit-form__form input[type='text'],
	.modal .credit-form__form input[type='tel'] {
		width: 157px;
		height: 40px;
		font-size: 12px;
	}

	.modal .btn {
		width: 100%;
		height: 40px;
	}
}

/* / Modals */

/* Adaptive */

/* @media screen and (min-width: 1400px) {
  .container {
    max-width: 1350px;
  }
} */

@media screen and (max-width: 1400px) {
}

@media screen and (max-width: 1200px) {
}

@media screen and (max-width: 992px) {
}

@media screen and (max-width: 1100px) {
	/* .credit-smart-banner {
    display: none;
  } */

	.container {
		max-width: calc(100% - 40px);
	}

	.list-header {
		display: none;
	}

	.logo-desc {
		display: none;
	}

	.logo-mob {
		display: block;
	}

	.side-menu {
		display: flex;
	}

	.icon-phone-mob {
		display: block;
	}

	.icon-burger-open {
		display: block;
	}

	.wrapper-tel-n-callback div {
		flex-direction: column-reverse;
	}

	.callback-desc {
		display: none;
	}

	/* Banner */

	.banner-benefits {
		flex-direction: column;
		width: auto;
		align-items: flex-start;
		gap: 20px;
	}

	.item-banner-benefits {
		flex-direction: row;
	}

	.item-banner-benefits span {
		width: 40px;
		height: 40px;
		border-width: 1px;
	}

	.item-banner-benefits svg {
		/* width: 40px; */
		width: 24px;
		/* height: 40px; */
		height: 24px;
	}

	.item-banner-benefits p {
		text-align: left;
		font-size: 12px;
	}

	.form-banner {
		display: none;
	}

	.main-banner .callback_btn__desktop {
		display: flex;
		width: auto;
	}

	.cars {
		padding-top: 170px;
	}

	.cars .second-heading {
		font-size: 20px;
	}

	.model {
		box-shadow: 0px 4px 6px 0px rgba(0, 0, 0, 0.15);
		gap: 0;
		flex-direction: column;
	}

	.model__substrate {
		height: 45%;
	}

	.models__links {
		gap: 0;
		flex-wrap: wrap;
		justify-content: space-between;
	}

	.models-link-item {
		width: 47%;
	}

	.model__title h3 {
		font-size: 24px;
	}

	.model {
		position: relative;
		min-height: 585px;
		/* max-height: 585px; */
		display: flex;
		/* height: 100%; */
		padding: 0 20px;
		max-width: 1500px;
		margin: 0 auto;
		gap: 15px;
		background-image: url(../img/card-background.webp);
		background-size: cover;
		background-position: left;
		background-repeat: no-repeat;
		border-radius: 5px;
		border: none;
		justify-content: flex-start;
	}

	.model:not(:first-of-type) {
		margin-top: 30px;
	}

	.model::after {
		content: '';
		background-color: white;
		height: 300px;
		width: 100%;
		position: absolute;
		bottom: 0;
		left: 0;
	}

	.left-item-model .model__prices.mobile {
		display: flex;
		width: 100%;
		padding-top: 0;
		margin-top: 0;
	}

	.model__img img {
		/* width: 110%; */
		height: 156px;
		left: -30px;
		max-width: max-content;
	}

	.models-item-car__colors .swiper-slide {
		width: 30px !important;
		height: 30px !important;
	}

	.right-item-model {
		padding: 0;
		align-items: center;
		flex-direction: column-reverse;
	}

	.model__prices {
		display: none;
	}

	.benefits__inner {
		/* flex-wrap: wrap;
        justify-content: space-between; */
		display: grid;
		grid-template-columns: 1fr 1fr;
		grid-template-rows: auto auto;
		gap: 5px 10px;
		margin-bottom: 20px;
	}

	.benefits-item {
		gap: 5px;
	}

	/* 
    .benefits-item {
        width: 46%;
        padding: 0;
    } */

	.car__right .buttons {
		display: none;
	}
	.smart_banner_body {
		column-gap: unset;
		position: relative;
	}
	.smart-banner-img {
		position: absolute;
		left: -130%;
		width: 750px;
	}
	.smart-banner-selector_item.active {
		border-radius: 0px;
	}
	.smart-banner-selector_item {
		width: 65px;
	}
	.smart-banner-selector {
		margin-bottom: 8px;
	}
	.credit-banner {
		margin-top: 0px;
	}
	.main-header__inner {
		/* height: 120px; */
		height: 60px;
		padding: 10px 0;
		/* flex-direction: column;
    align-items: stretch; */
	}

	.main-header__inner .align-items-center span {
		/* display: none; */
		font-size: 10px;
	}

	/* .main-header__inner .align-items-center a {
    display: block;
  } */
	/* .main-header__inner .justify-content-center.align-items-center a {
    display: none;
  } */
	.logo {
		width: 132px;
		display: flex;
		align-items: center;
	}

	.main-content {
		/* margin-top: 150px; */
		margin-top: 60px;
		background-image: none;
		background-color: var(--white);
	}

	.main-heading {
		color: white;
		/* font-size: 30px; */
		font-size: 20px;
		/* line-height: 50px; */
		line-height: 1.3;
		width: 340px;
	}

	.second-heading {
		margin: 8px 0 30px 0;
		font-size: 30px;
		line-height: 40px;
	}

	.benefit + .benefit {
		margin-left: 0;
		margin-top: 35px;
	}

	.car {
		/* background-image: none; */
		background-size: 210%;
		/* background-size: 50%; */
		background-position-x: 100%;
		background-position-y: 40%;
	}
	.car__img {
		margin-left: -220px;
	}

	.car + .car {
		margin-top: 50px;
	}

	.car__inner {
		flex-direction: column-reverse;
		align-items: center;
	}

	.car__left {
		flex-direction: column-reverse;
		align-items: stretch;
	}

	.car__name {
		margin-left: unset;
		font-size: 30px;
	}

	.car__cost {
		margin-bottom: 10px;
		font-size: 30px;
	}

	.buttons {
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.car__right {
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.credit-banner {
		margin-top: 0px;
		height: 700px;
		/* background-image: url(../img/banners/credit-banner__mobile.jpg); */
	}

	.credit-banner .container {
		justify-content: center;
	}

	.credit-banner__heading {
		font-size: 26px;
		line-height: 32px;
	}

	.credit-banner .white-block {
		width: max-content;
		z-index: 2;
		position: relative;
		top: 82px;
		display: flex;
		flex-direction: column;
		align-items: center;
		padding: 36px 27px;
		background: rgba(255, 255, 255, 0.8);
	}

	.complictation {
		padding: 0;
		border: none;
		flex-direction: column;
	}

	.complictation + .complictation {
		margin-top: 50px;
	}

	.complictation__img {
		width: 100%;
	}

	.complictation__description {
		width: 220px;
	}

	.complictation__char {
		font-size: 16px;
	}

	.shadow-bottom::after {
		height: 15px;
		bottom: -15px;
	}

	.scroll-compensate {
		padding-right: 0;
	}

	.modal .modal-content {
		height: unset;
		padding: 15px 30px;
		background-image: url(../img/modal-bg__mobile.jpg);
		background-position-x: center;
		background-position-y: bottom;
		align-items: stretch;
	}

	.modal__heading {
		max-width: 70%;
	}

	.modal-form {
		width: 100%;
	}

	/* .modal-close {
    width: 35px;
    height: 35px;
    top: 5px;
    right: 5px;
  } */

	/* .map {
    height: 400px;
    margin-top: 50px;
    padding: 0;
    background-size: 500%;
    background-position-x: 72%;
    background-position-y: 100%;
  }

  .map .map-form {
    position: relative;
    top: -30px;
    margin: 0 auto;
  } */

	.disclaimer .accordion-header {
		width: 100%;
		margin: 0 auto 20px auto;
	}

	.main-banner {
		height: auto;
	}
}

@media (max-width: 768px) {
	.main-banner {
		height: 600px;
		/* height: auto; */
		/* background-image: url(../img/banners/Mobile.jpg); */
		background-image: url(../img/banners/banner-mob.webp);
		position: relative;
	}
    .cars {
		padding-top: 50px;
	}
}

@media screen and (max-width: 576px) {
	.dropdown {
		width: 100%;
		-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;
	}

	.dropdown__item {
		width: 80%;
	}

	.dropdown__item + .dropdown__item {
		margin-left: 0;
		margin-top: 12px;
	}

	/* .select2-container--default .select2-selection--single {
    width: 100%;
    border: 2px solid var(--dark-gray);
  } */

	/* .select2-container--default .select2-selection--single .select2-selection__arrow b {
          background-image: url(../img/svg/down--gray.svg);
  } */

	.dropdown__btn::before {
		background-image: url(../img/svg/down--gray.svg);
	}
}
@media screen and (max-width: 350px) {
	.main-heading {
		font-size: 26px;
		line-height: 37px;
	}
}

.filtered-show,
.showmore-show {
	/* display: flex; */
	opacity: 1;
	transition: 0.3s;
}

.filtered-hide,
.showmore-hide {
	display: none;
	opacity: 0;
}
/* / Adaptive */

/* .showmore-hide,
.filtered-hide {
    display: none !important;
} */

.js--show-more {
	margin: 20px auto;
	display: block;
	border: 0;
	border-bottom: 2px solid var(--dark-blue);
	background: none;
	color: var(--dark-blue);
	font-size: 20px;
	font-weight: 600;
}

label.checkbox a {
	color: #fff;
	text-decoration: underline;
}

#contacts {
	position: relative;
}
#map {
	width: 100%;
	height: 600px;
	position: absolute;
	top: 0;
	left: 0;
}
@media (max-width: 768px) {
	#map {
		position: unset;
		height: 400px;
	}
}

@media (max-width: 1520px) {
	.benefits-item__img {
		justify-content: flex-start;
	}

	.benefits-item__img img {
		width: 40px;
		min-width: 40px;
	}

	.img-credit {
		width: 64%;
	}
}

@media (max-width: 1360px) {
	.model__title h3 {
		font-weight: 700;
		font-size: 41px;
		line-height: 45.6px;
		letter-spacing: 0%;
		margin: 0;
	}
}

@media (max-width: 1100px) {
	.model__title h3 {
		line-height: 57.6px;
	}
}

@media (max-width: 768px) {
	.model__title h3 {
		line-height: 57.6px;
		font-size: 22px;
	}
	.img-credit {
		width: 100%;
	}
}

@media (max-width: 540px) {
	.banner-benefits {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		grid-template-rows: repeat(2, 1fr);
		grid-column-gap: 0px;
		grid-row-gap: 15px;
	}

	.item-banner-benefits {
		justify-content: normal;
	}

	.banner .container {
		display: flex;
		flex-direction: column;
		height: 100%;
	}

	.main-banner {
		padding: 30px 0;
	}

	.main-banner .callback_btn__desktop {
		margin-top: auto;
	}
}


.ticker__item {
	font-weight: 600;
	font-size: 32px;
	letter-spacing: calc(24px * -0.01);
	text-align: center;
	text-transform: uppercase;
	padding: 20px 0;
	color: black;
	position: relative;
	white-space: nowrap;

    display: flex;
    align-items: flex-end;
    gap: 16px;
    /* font-family: 'Rubik', sans-serif; */
}
/* .ticker__item::after {
    content: "/";
    padding-left: 16px;
} */
.ticker {
	overflow: hidden;
	display: flex;
	gap: 16px;
	width: 100vw;
}
.ticker__list {
	display: flex;
	gap: 25px;
	align-items: center;
	animation: ticker 40s infinite linear;
    background-color: #DEE4E0DB;
}


@keyframes ticker {
	100% {
		transform: translateX(-100vw); 
	}
}
@media (max-width: 768px) {
    .running-text {
        margin-top: 130px;
    }
	.ticker__item {
		padding: 17px 0;
        font-size: 16px;
        gap: 10px;
	}
    .ticker__item svg {
        height: 26px;
        width: 26px;
    }
    /* .ticker__item::after {
        padding-left: 9px;
    } */
	.ticker__list {
		gap: 10px;
	}
	.ticker {
		gap: 5px;
	}
}
