:root {
	--white: #fff;
	--black: #000;
	--dark: #333;
	--grey: #ccc;
	--blue: #66A6FE;
    --dark-blue: #1653A7;
    --dark-purple: #270F3D;
    --purple: #8313CA;
}

* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

*::-webkit-scrollbar {
	width: 8px;
	height: auto;
	background: var(--grey);
}

*::-webkit-scrollbar-thumb {
	background: var(--blue);
	border-radius: 5px;
}

*::-webkit-scrollbar-track {
	background-color: transparent;
	border: none;
}

body {
	background: url(../img/bg.jpg) no-repeat center;
	background-color: var(--black);
	background-attachment: fixed;
	color: var(--white);
	font-family: "Source Sans Pro", sans-serif;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 1.8;
	overflow-x: hidden;
}

body::before {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	content: '';
	background: var(--black);
	opacity: .8;
}

body.hidden {
	overflow-y: hidden;
	display: block;
}

.hidden {
	display: none;
}

a {
	position: relative;
	transition: all .25s ease;
	text-decoration: none;
}

h1 {
	font-size: 69px;
	line-height: 95%;
}

h2 {
	font-size: 40px;
	line-height: 1;
	font-weight: 600;
}

h3 {
	font-size: 25px;
	line-height: 1.05;
}

svg, svg path, svg circle, svg rect, svg stroke, svg g {
	transition: all .25s ease;
}

header {
	position: sticky;
	width: 100%;
	top: 0;
	left: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 99;
	flex-direction: column;
	transition: all .5s ease;
	background: #282d3c;
	border-bottom: 1px solid transparent;
}

main {
	overflow-x: hidden;
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
}

.container {
	display: flex;
	width: 100%;
	padding: 0 20px;
	align-items: center;
	flex-direction: column;
	height: 100%;
	gap: 40px;
	transition: all .5s ease;
	max-width: 100%;
}

section {
	display: flex;
	justify-content: center;
	align-items: center;
	max-width: 1920px;
	width: 100%;
	margin-bottom: 120px;
	position: relative;
	flex-direction: column;
	z-index: 9;
	overflow: hidden;
}

section.hero {
    margin-bottom: 40px;
}

input {
	transition: all .5s ease;
	outline: 0;
}

.modal {
	display: flex;
	transform: translateY(-100%);
	position: fixed;
	transition: all .5s ease;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: 99;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}

.burger {
	display: none;
}

/* MAIN STYLES */

a.logo {
    display: flex;
    gap: 30px;
}

header .container {
    max-width: 100%;
    padding: 0 28px;
    gap: 0;
}

header .row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 16px 0;
}

a.wh, a.tg {
    display: flex;
}

.call {
    display: flex;
    position: relative;
}

section.hero .container {
    max-width: 100%;
    padding: 0;
    flex-direction: row;
    align-items: center;
    position: relative;
}

.hero__wrapper {
    display: flex;
    width: 100%;
}

.hero__slider.swiper {
    width: 100%;
}

.avilon {
    display: flex;
    align-items: center;
    gap: 16px;
    color: #fff;
    font-size: 14px;
}

.avilon img {
    height: 16px;
}

header a {
    color: var(--white);
}

.header__control {
    display: flex;
    gap: 20px;
    align-items: center;
}

.btn {
    font-family: inherit;
    font-size: 14px;
    text-transform: uppercase;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background: var(--blue);
    color: var(--white);
    transition: all .5s ease;
    font-weight: 600;
    cursor: pointer;
}

.btn:hover {
    background: var(--dark-blue);
}

header a:hover {
    color: var(--blue);
}

.header__control a {
    font-size: 20px;
    line-height: 1;
    font-weight: 600;
}

header .row:nth-child(1) {
    border-bottom: 1px solid #ffffff14;
}

header .row:nth-child(2) {
    justify-content: flex-start;
    gap: 50px;
}

a.logo img {
    height: 30px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 50px;
}

.arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    z-index: 9;
    cursor: pointer;
    transition: all .5s ease;
}

.arrow.prev {
    left: 20px;
}

.arrow.next {
    right: 20px;
}

.hero__slider.swiper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

h2.section__title {
    color: var(--white);
    text-transform: uppercase;
    font-weight: 400;
}

.cars__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

a.cars__item {
    display: flex;
    position: relative;
    background: #d7d7d7;
    width: 360px;
    height: 300px;
    border-radius: 20px;
    align-items: center;
    justify-content: center;
}

a.cars__item img {
    width: 100%;
    height: auto;
}

a.cars__item p {
    position: absolute;
    bottom: 20px;
    color: var(--blue);
    font-weight: 600;
    font-size: 20px;
    text-transform: uppercase;
}

a.cars__item:hover {
    background: var(--white);
}

.benefits__list {
    width: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.benefits__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    width: 400px;
    font-size: 20px;
    line-height: 1.25;
    padding: 20px;
    border-radius: 10px;
    background: var(--white);
    text-align: center;
    color: var(--dark);
}

.benefits__item svg {
    width: 64px;
    height: 64px;
}

span.icon {
    display: flex;
}

.benefits__item p {
    max-width: 80%;
    /* font-weight: 600; */
}

.models__list {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.models__item {
    display: flex;
    align-items: center;
}

.models__item__img {
    width: 54%;
    display: flex;
    clip-path: polygon(0% 0%, 100% 0%, 85% 100%, 0% 100%);
    position: relative;
    justify-content: center;
    height: auto;
}

.models__item__content {
    width: 46%;
    color: var(--white);
    padding: 0 100px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.models__item__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.models__item__content ul li svg {
    width: 18px;
    height: 18px;
}

.models__item__img img.disactive {
    display: none;
}

section.models .container {
    padding: 0;
}

h3.models__item__name {
    font-size: 40px;
    font-weight: 400;
    color: var(--blue);
    text-transform: uppercase;
}

.price {display: flex;align-items: center;gap: 15px;font-size: 28px;}

span.old {
    text-decoration: line-through;
    color: var(--grey);
}

span.new {
    font-weight: 600;
}

.models__item__content ul {
    display: flex;
    flex-direction: column;
    gap: 0;
    list-style: none;
    max-width: 500px;
}

.models__item__content ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 0;
    border-bottom: 1px dotted;
}

.models__item__content ul li svg path {
    fill: var(--blue);
}

.models__item__content ul li:last-child {
    border-bottom: none;
}

.models__item__info {
    display: flex;
    gap: 10px;
}

.models__item__info p {
    display: flex;
    position: relative;
    gap: 10px;
}

.models__item__info p::after {
    content: '|';
}

.models__item__info p:last-child::after {
    content: none;
}

.models__item__btns {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.models__item:nth-child(2n) {
    flex-direction: row-reverse;
}

.models__item:nth-child(2n) .models__item__img {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 15% 100%);
}

.arrow:hover {
    opacity: .6;
}

span.icon svg path {
    fill: var(--blue);
}

.spec__tabs {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.tab {
    display: flex;
    color: var(--blue);
    font-size: 20px;
    font-weight: 300;
    text-transform: uppercase;
    padding: 15px 25px;
    border: 1px solid;
    transition: all .5s ease;
    cursor: pointer;
}

.tab.active, .tab:hover {
    background: var(--blue);
    color: var(--white);
    border-color: var(--blue);
}

.spec__list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 80%;
    width: 100%;
}

.spec__items {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.spec__item {
    display: none;
    flex-direction: column;
    border: 1px solid var(--blue);
    padding: 20px;
    gap: 20px;
}

.spec__item__element {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--white);
    border-bottom: 2px solid var(--blue);
    padding-bottom: 20px;
}

.left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.left img {
    width: 300px;
    height: auto;
}

.left__info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 20px;
}

.left__info a {
    color: #fff;
    font-size: 24px;
    transition: all .25s ease;
}

.left__info a:hover {
    color: #395cc5;
}

.spec__item__element__price {
    display: flex;
    gap: 30px;
    font-size: 24px;
    align-items: center;
    padding-right: 10%;
}

p.old {
    font-size: 20px;
    text-decoration: line-through;
}

.spec__item__element:last-child {
    border-bottom: none;
}

.spec__item.active {
    display: flex;
}

section.banner .container {
    padding: 50px 50px;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
}

section.banner {
    /* background: url(../img/banner.png) no-repeat 700px center; */
    background-color: var(--white);
    height: 700px;
    /* background-size: 1800px; */
    color: var(--dark);
}

img.auto {
    max-height: 150%;
    position: absolute;
    right: -50%;
}

h2.banner__title {
    max-width: 700px;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-weight: 700;
}

h2.banner__title span {
    font-weight: 400;
    font-size: 32px;
}

section.banner .container p {
    line-height: 1.25;
}

.video__wrapper {
    display: flex;
    max-width: 80%;
    width: 100%;
    height: 100%;
}

.video__wrapper iframe {
    width: 100%;
    height: 800px;
}

section.video .container {
    padding: 0;
}

.faq__list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 1140px;
    width: 100%;
}

.faq__item {
    display: flex;
    flex-direction: column;
    background: #ffffff45;
    border-radius: 40px;
}

.faq__body {
    height: 0px;
    overflow: hidden;
    transition: all .5s ease;
}

.faq__body__inner {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0 30px 20px 30px;
}

.faq__header {
    display: flex;
    justify-content: space-between;
    font-size: 24px;
    line-height: 1;
    align-items: center;
    cursor: pointer;
    padding: 20px 30px;
}

.faq__icon {
    display: flex;
    justify-content: center;
    align-items: center;
}

.faq__icon {
    width: 24px;
    height: 24px;
}

.faq span.line {
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 5px;
    position: absolute;
    transition: all .5s ease;
}

.faq span.line:nth-child(2) {
    transform: rotate(90deg);
}

.faq__item.active span.line:nth-child(2) {
    transform: rotate(0deg);
}

div#map {
    display: flex;
    width: 100%;
    height: 500px;
}

.map__info {
    position: absolute;
    background: var(--white);
    max-width: 600px;
    width: 100%;
    color: var(--black);
    left: 50px;
    padding: 40px;
    gap: 20px;
    display: flex;
    flex-direction: column;
}

section.contacts .container {
    padding: 0;
    position: relative;
    align-items: flex-start;
    justify-content: center;
}

.map__info svg {
    width: 20px;
    height: 20px;
}

.map__info a {
    color: var(--dark);
}

.map__info svg path {
    fill: var(--blue);
}

h2.map__info__title {
    font-size: 32px;
}

.map__info p {
    font-weight: 600;
}

.map__info__list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.map__info__list p {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 400;
}

.map__info a:hover {
    color: var(--blue);
}

ymaps {
    filter: grayscale(1);
    -ms-filter: grayscale(1);
    -webkit-filter: grayscale(1);
    -moz-filter: grayscale(1);
    -o-filter: grayscale(1);
}

section.contacts {
    margin: 0;
}

footer {
    background: var(--black);
    color: var(--white);
    padding: 40px 0;
    display: flex;
    justify-content: center;
    position: relative;
}

footer .container {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1560px;
    position: relative;
}

.footer__info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    max-width: 80%;
}

a.footer__phone {
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
}

a.footer__phone:hover {
    color: var(--blue);
}

.footer__text {
    font-size: 13px;
    line-height: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq__body__inner ul {
    padding-left: 20px;
}

.timer {
    display: flex;
    align-items: center;
    gap: 20px;
}

.timer__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    line-height: 1;
}

span.value {
    font-size: 32px;
}

.timer > span {
    font-size: 32px;
}

.modelt__item__colors {
    display: flex;
    align-items: center;
    position: absolute;
    bottom: 20px;
    gap: 10px;
}

span.color {
    width: 40px;
    height: 40px;
    transition: all .25s ease;
    border: 1px solid transparent;
    cursor: pointer;
}

span.color.active {
    border-color: var(--blue);
}

span.color[data-color="white"] {
    background: #fff;
}

span.color[data-color="grey"] {
    background: #8e8f7c;
}

span.color[data-color="green"] {
    background: #336b77;
}

span.color[data-color="black"] {
    background: #000;
}

span.color[data-color="purple"] {
    background: #412253;
}

a.logo.logo__mobile {
    display: none;
}

a.nav__link {
    text-transform: uppercase;
}

/* ÃÂ¤ÃÅ¾ÃÂ ÃÅ“ÃÂ */

/* .callback {
  font-family: Arial, sans-serif;
  font-size: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.callback__options {
  display: flex;
  gap: 10px;
}

.callback__option {
  padding: 6px 12px;
  border: 1px solid #ccc;
  background: #fff;
  cursor: pointer;
  border-radius: 4px;
  transition: 0.2s;
}

.callback__option.active {
  border-color: #000;
  font-weight: bold;
}

.callback__timepicker {
  display: flex;
  align-items: center;
  gap: 4px;
}

.callback__timepicker--hidden {
  display: none;
}

.callback__hours,
.callback__minutes {
  padding: 4px 6px;
  border: 1px solid #ccc;
  border-radius: 4px;
} */
.spec__item__element.hidden {
	display: none;
}

.show-more-btn {
	font-family: "Source Sans Pro", sans-serif;
	display: block;
	margin: 20px auto 0;
	padding: 10px 25px;
	border: 1px solid #ffffff;
	background: transparent;
	color: #fff;
	font-size: 14px;
	cursor: pointer;
	border-radius: 6px;
	transition: all 0.3s ease;
}

.show-more-btn:hover {
	background: #fff;
	color: #333;
}

.hero__slider .swiper-slide.desk {
    display: flex;
}

.hero__slider .swiper-slide.mob {
    display: none;
}
section.consent {
    background: #fff;
    height: auto;
    height: 100%;
    min-height: 65vh;
    margin: 0;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 40px 0;
}

section.consent h1, section.consent .consent__content {
    width: 100%;
    color: #333;
}

section.consent h1 {
    font-weight: 500;
}

.consent__content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.consent__content a {
    color: #333;
    border-bottom: 1px solid;
    transition: all .25s ease;
}

.consent__content a:hover {
    color: var(--blue);
}

a.consent__link {
    color: #fff;
    font-size: 14px;
    border-bottom: 1px solid;
}

a.consent__link:hover {
    color: var(--blue);
}

@media(max-width: 767px){
    #timer682076c4474ae1779dbed0af72c3874e{
        transform: scale(.6)!important;
    }
}