:root {
	--white: #fff;
	--black: #000;
	--blue: #005FB4;
	--dark-blue: #003462;
	--dark-grey-blue: #3F5B74;
	--light-blue: #C5E1F9;
	--grey-blue: #EBF2F8;
	--border-grey-blue: #E4E7EE;
	--text-grey-blue: #a8b7c4;
	--green: #006246;
	--main-bg: #ECF5FD;
	--footer-bg: #081E31;
	--grey: #D9D9D9;
	--red: #e22828;
}

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

*::-webkit-scrollbar {
	width: 5px;
	height: auto;
	background: var(--light-blue);
}

*::-webkit-scrollbar-thumb {
	background: #7181C0;
	border-radius: 5px;
}

*::-webkit-scrollbar-track {
	border: none;
	background: #33353d;
}

body {
	background: #26282E;
	color: #000;
	font-family: "Noto Sans", sans-serif;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 1.5;
	overflow-x: hidden;
}

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

.hidden {
	display: none;
}

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

h1, h2, h3, h4, h5, h6 {
	font-weight: 500;
}

svg, svg path, 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: 999;
	flex-direction: column;
	transition: all .25s ease;
	background: #26282E;
	padding: 19px 0 4.5px 0;
	border-bottom: 1px solid transparent;
}

main {
	overflow-x: hidden;
	min-height: 80vh;
	background: #26282E;
}

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

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

bor {
	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;
	position: relative;
	width: 30px;
	height: 30px;
	flex-direction: column;
	gap: 8px;
	align-items: center;
	justify-content: center;
}

header.header.nav__active, header.header.fixed.nav__active {
    z-index: 9999;
    background: #26282E;
    border-color: #38393d;
}

.burger.active span.line {
    transform: rotate(45deg);
    position: absolute;
}

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

/* MAIN STYLES */

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

.faq__item {
    display: flex;
    flex-direction: column;
    padding: 24px 0;
    border-top: 1px solid #FEFEFE;
    font-size: 18px;
    line-height: 32px;
    font-weight: 600;
}

.faq__item__header {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    color: #FEFEFE;
    cursor: pointer;
    opacity: .6;
    transition: all .25s ease;
}

span.plus {
    width: 12px;
    height: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

span.plus__line {
    width: 12px;
    height: 2px;
    background: #FEFEFE;
    position: absolute;
    transition: all .25s ease;
}

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

.faq__item.active span.plus__line:nth-child(2) {
    transform: rotate(0deg);
    background: #81AAFF;
}

.faq__item.active .faq__item__header {
    color: #FEFEFE;
    opacity: 1;
}

.faq__item:last-child {
    border-bottom: 1px solid #FEFEFE;
}

.faq__item__body {
    overflow: hidden;
	transition: all .25s ease;
    color: #474747;
    height: 0px;
}

footer .container {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
}

footer {
    background: #14161B;
    color: #FEFEFE;
    padding: 54px 0;
    justify-content: center;
    display: flex;
}

.footer__info {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 275px;
    width: 100%;
    padding: 0;
    margin: 0;
    font-family: Noto Sans;
    font-weight: 400;
    font-size: 12px;
    line-height: 100%;
}

.description, .reqs {
    display: flex;
    flex-direction: column;
    gap: 4px;
    opacity: .8;
}

.description {
    margin-top: 16px;
}

.footer__logos {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer__soc {
    display: flex;
    align-items: center;
    gap: 52px;
}

.footer__soc a:hover svg g {
    opacity: 1;
}


.footer__soc a {
    display: flex;
}

nav.footer__nav {
    display: flex;
    max-width: 224px;
    width: 100%;
    justify-content: flex-end;
    margin-right: 80px;
}

nav.footer__nav ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
    list-style: none;
    padding: 0 !important;
    width: 100%;
}

nav.footer__nav ul li a {
    color: var(--white);
    opacity: .7;
    font-family: Noto Sans;
    font-weight: 500;
    font-style: Medium;
    font-size: 12px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: 0%;
}

nav.footer__nav ul li {
    display: flex;
    height: 17px;
    align-items: center;
}

nav.footer__nav ul li a:hover {
    opacity: 1;
}

nav.footer__nav ul li::before {
	content: none !important;
}

.faq__item__body__inner {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding-top: 24px;
    font-family: Noto Sans;
    font-weight: 500;
    font-style: Medium;
    font-size: 18px;
    leading-trim: NONE;
    line-height: 32px;
    letter-spacing: 0%;
    color: #FEFEFE;
    opacity: .72;
}

.faq__item__header:hover {
    color: #81AAFF;
}

.faq__item__header span {
    transition: all .25s ease;
}

header .container {
    gap: 10.5px;
}

header .container > .row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.header__contacts {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 265px;
}

.address {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 400;
    font-style: Regular;
    font-size: 12px;
    leading-trim: NONE;
    line-height: 100%;
    color: #FEFEFE;
}

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

a.phone {
    font-weight: 600;
    font-style: SemiBold;
    font-size: 12px;
    leading-trim: NONE;
    line-height: 100%;
    color: #FEFEFE;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn {
    padding: 10px 24px;
    border-radius: 8px;
    background: #365CAB;
    border: 1px solid transparent;
    color: #fff;
    cursor: pointer;
    transition: all .25s ease;
    font-family: Noto Sans;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.2;
    text-align: center;
}

a.phone:hover {
    color: #7181C0;
}

a.phone:hover svg path {
    fill: #7181C0;
}

.btn:hover {
    background: transparent;
    color: #365CAB;
    border-color: #365CAB;
}

a.avilon {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 265px;
}

a.logo {
    display: flex;
}

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

nav.main ul {
    gap: 24px;
}

nav.main ul li a {
    font-family: Noto Sans;
    font-weight: 700;
    font-size: 14px;
    line-height: 100%;
    color: #FEFEFE;
    text-transform: uppercase;
}

nav.main {
    width: 100%;
    display: flex;
    justify-content: center;
}

nav.main ul li a:hover {
    color: #7181C0;
}

section.hero .container {
    max-width: 100%;
}

.swiper {
    width: 100%;
}

section.hero {
    height: calc(40.42vw + 40px);
    margin: 0;
}

.swiper-slide.hero__slide img {
    width: 100%;
    object-fit: cover;
}

.hero__slide__info {
    position: absolute;
    z-index: 9;
    max-width: 1264px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    height: 100%;
    justify-content: space-between;
    padding: 160px 0;
}

.swiper-slide.hero__slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__slide__info__header {
    max-width: 600px;
    width: 100%;
    background: #ffffff54;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    backdrop-filter: blur(3px);
    color: #26282E;
}

h2.hero__slider__title {
    font-size: 40px;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 1.2;
}

.hero__slider__text {
    font-size: 20px;
    line-height: 1.25;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    font-weight: 500;
    text-transform: uppercase;
}

.btn.hero__slider__btn {
    font-family: Noto Sans;
    font-weight: 700;
    font-style: Bold;
    font-size: 14px;
    leading-trim: NONE;
    line-height: 100%;
    padding: 10px 26px;
}

.btn.hero__slider__btn {
    background: #333;
}

.btn.hero__slider__btn:hover {
    background: #fff;
    color: #333;
    border-color: #fff;
}

section.model {
    padding: 80px 0;
    border-radius: 0;
    position: relative;
    top: -40px;
    margin: 0;
    background: #E0E6F2;
}

section.model.light {
    background: #26282E;
}

img.model__logo {
    position: absolute;
    top: 246px;
    left: 50%;
    transform: translateX(-50%);
    max-width: calc(100% - 40px);
}

.model__info {
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.model__info__col.left, .model__info__col.right {
    max-width: 305px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 30px;
    z-index: 999;
    justify-content: space-between;
}

.model__info__col.left {
    justify-content: space-between;
    gap: 64px;
}

.model__price span.value {
    position: relative;
    font-family: Noto Sans;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 30px;
    leading-trim: NONE;
    line-height: 1.375;
    letter-spacing: 0%;
    text-align: center;
    padding: 8px 12px;
    background: linear-gradient(180deg, #417FFF 0%, #002470 100%);
    border-radius: 4px;
    color: #fff;
}

span.status {
    position: absolute;
    font-family: Noto Sans;
    font-weight: 700;
    font-style: Bold;
    font-size: 20px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #FF525D;
    border-radius: 50%;
    transform: rotate(15deg);
    top: -38px;
    left: -38px;
    z-index: 9;
}

.model__benefits {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-top: 4px;
    width: 100%;
}

.model__benefits__item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-family: Noto Sans;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.375;
    color: #414B4F;
    width: 100%;
}

.model__benefits__item p {
    max-width: calc(100% - 32px);
}

.model__info__col {
    z-index: 9;
}

.model__benefits__item p span.bold {
    color: #365CAB;
    font-weight: 800;
}

.model__btns {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

header .btn {
    font-family: Noto Sans;
    font-weight: 500;
    font-style: Medium;
    font-size: 12px;
    leading-trim: NONE;
    line-height: 100%;
    padding: 4px 8px;
    border-radius: 4px;
    background: #7181C0;
}

.model__btns .btn {
    width: 224px;
}

.btn.secondary__btn {
    background: #81AAFFCC;
}

header .btn:hover {
    color: #7181C0;
    border-color: #7181C0;
}

.btn.secondary__btn:hover {
    border-color: #81AAFFCC;
    color: #81AAFFCC;
    background: transparent;
}

.model__tech {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.model__tech__item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

span.param {
    font-family: Noto Sans;
    font-weight: 600;
    font-style: Display SemiBold;
    font-size: 32px;
    leading-trim: NONE;
    line-height: 40px;
    letter-spacing: 0%;
    font-variant-numeric-figure: lining-nums;
    font-variant-numeric-spacing: proportional-nums;
    color: #365CAB;
}

span.tech {
    font-family: Noto Sans;
    font-weight: 700;
    font-style: Bold;
    font-size: 16px;
    leading-trim: NONE;
    line-height: 1.38;
    letter-spacing: 0%;
    font-variant-numeric-figure: lining-nums;
    color: #8C909B;
}

.model__info__col.colors {
    display: flex;
    flex-direction: column;
    position: relative;
    justify-content: space-between;
    width: max-content;
    position: absolute;
    align-items: center;
    left: 50%;
    transform: translateX(-50%);
    height: max-content;
}

.model__photo__list {
    display: flex;
    width: 100%;
    /* position: absolute; */
    left: 0;
    top: 0;
    top: 109px;
    max-width: 625px;
    max-height: 330px;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

img.model__photo__item {
    display: none;
    max-width: 800px;
    height: 100%;
    object-fit: cover;
}

img.model__photo__item.active {
    display: flex;
}

h2.model__name {
    font-family: Noto Sans;
    font-weight: 600;
    font-size: 80px;
    text-align: center;
    text-transform: uppercase;
    line-height: 1.375;
    color: #365CAB;
}

.model__colors__list {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    padding-top: 35px;
}

.model__info__col.right {
    gap: 20px;
    max-width: 224px;
}

.model__colors__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

span.color__name {
    padding: 4px 7.5px;
    font-family: Noto Sans;
    font-weight: 500;
    font-style: Medium;
    font-size: 12px;
    leading-trim: NONE;
    line-height: 1.3;
    letter-spacing: 0%;
    text-align: center;
    text-transform: capitalize;
    color: #8E9195;
    background: #FFFFFF99;
    border-radius: 4px;
    transition: all .25s ease;
    opacity: 0;
    position: absolute;
    top: -35px;
    width: max-content;
    display: none;
}

.color {
    width: 64px;
    height: 27px;
    border-radius: 4px;
    border: 2px solid transparent;
    transition: all .25s ease;
    cursor: pointer;
}

.model__colors__item.active {}

.model__colors__item.active span.color__name {
    opacity: 1;
    display: flex;
}

.model__colors__item.active .color {
    border-color: #fff;
}

.color:hover {
    border-color: #ffffff73;
}

.btn.white__btn {
    background: #fff;
    color: #365CAB;
}

.btn.white__btn:hover {
    background: #365CAB;
    color: #fff;
}

section.model .container {max-width: 1104px;position: initial;gap: 80px;}

.model__slider__wrapper {
    display: flex;
    flex-direction: column;
    padding: 0 80px;
    width: 100%;
    position: relative;
    justify-content: center;
}

.model__slider__tabs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-radius: 12px 12px 0 0;
    overflow: hidden;
    z-index: 9;
}

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

.model__slider__tab {
    display: flex;
    justify-content: center;
    font-family: Noto Sans;
    font-weight: 700;
    font-style: Bold;
    font-size: 20px;
    leading-trim: NONE;
    line-height: 1.375;
    letter-spacing: 0%;
    text-align: center;
    text-transform: uppercase;
    padding: 10.5px;
    color: #365CABCC;
    background: #FFFFFF80;
    transition: all .25s ease;
    cursor: pointer;
}

.model__slider__tab.active {
    background: #fff;
    color: #365CAB;
}

.model__info__col.right .btn {
    width: 100%;
}

.model__slider__body__item {
    display: none;
    width: 100%;
    align-items: center;
}

.model__slider__body__item.active {
    display: flex;
}

.model__slider__body__item .arrow {
    position: absolute;
    margin-bottom: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9;
    transition: all .25s ease;
    cursor: pointer;
}

.model__slider__body__item .arrow.prev {
    left: 0;
}

.model__slider__body__item .arrow.next {
    right: 0;
}

.model__slider {
    display: flex;
    width: 100%;
    border-radius: 0 0 12px 12px;
    overflow: hidden;
    position: relative;
    height: 486px;
}

.model__slider .swiper-slide {
    display: flex;
}

.model__slider .swiper-slide img {
    width: 100%;
}

.model__slider .swiper-slide {
    display: flex;
    position: relative;
}

.model__slider .swiper-slide img {
    width: 100%;
}

section.model::before {
    background: #26282E;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: '';
    border-radius: 40px 40px 0 0;
}

section.model.dark::before {
    background: #26282E;
}

section.model:nth-child(2) {
    border-radius: 40px 40px 0 0;
    overflow: hidden;
    background: transparent;
}

section.model.light::before {
    background: #E0E6F2;
}

section.model.dark:nth-child(5) {
    border-radius: 0 0 40px 40px;
    overflow: hidden;
    background: transparent;
    z-index: 99;
}

section.model.dark:nth-child(5)::before {
    border-radius: 0;
    overflow: hidden;
    height: 100px;
    background: #e0e6f2;
}

.model__price {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
    position: relative;
}

.model__price span.old {
    font-family: Noto Sans;
    font-weight: 600;
    font-style: SemiBold;
    font-size: 20px;
    leading-trim: NONE;
    line-height: 1.375;
    letter-spacing: 0%;
    text-decoration: line-through;
    color: #0C358A;
}

section.model.dark .model__price span.old {
    color: #D1D6ED;
}

section.model.dark .model__price span.value {
    color: #1D57D0;
    background: linear-gradient(180deg, #FFFFFF 0%, #B9C3FF 100%);
}

section.model.dark .model__benefits__item {
    color: #fff;
}

section.model.dark .model__benefits__item p span.bold {
    color: #BED3FF;
}

section.model.dark .model__benefits__item svg path {
    stroke: #BED3FF;
}

section.model.dark .model__benefits__item:nth-child(2) svg path {
    stroke: transparent;
    fill: #BED3FF;
}

section.model.dark span.color__name {
    background: #717593;
    color: #FEFEFECC;
}

section.model.dark .model__colors__item.active .color {
    border-color: #A3A9D6;
}

section.model.dark span.param {
    color: #BED3FF;
}

section.model.dark span.tech {
    color: #fff;
}

section.model.dark .model__slider__tab {
    background: #BED3FF66;
    color: #FFFFFFCC;
}

section.model.dark .model__slider__tab.active {
    color: #fff;
    background: #BED3FF99;
}

section.model.dark .arrow svg path {
    fill: #81AAFF;
}

section.model.dark h2.model__name {
    color: #BED3FF;
}

section.model.dark:nth-child(5)::after {
    background: #26282E;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    content: '';
    border-radius: 40px;
}

section.adv {
    background: url(../img/adv-bg.jpg) no-repeat center;
    background-size: cover;
    padding: 114px 0 114px 0;
    top: -74px;
    margin: 0;
}

.adv__grid {
    width: 100%;
    display: grid;
    gap: 15px;
    grid-template-columns: repeat(2, 1fr);
}

.adv__item {
    padding: 40px 64px;
    background: #365CAB66;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    justify-content: space-between;
}

.adv__item svg {
    margin: 16px 0 0;
}

.model__slider__body__item .arrow:hover {
    opacity: .6;
}

.model__slider__info {
    position: absolute;
    bottom: 67px;
    left: 28px;
    font-family: Noto Sans;
    font-weight: 700;
    font-style: Bold;
    font-size: 16px;
    leading-trim: NONE;
    line-height: 24px;
    letter-spacing: 0%;
    max-width: 285px;
    color: #FEFEFE;
}

.model__slider__nav.swiper-pagination-bullets.swiper-pagination-horizontal {
    position: absolute;
    z-index: 9;
    bottom: 40px;
    left: 28px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.model__slider__nav.swiper-pagination-bullets.swiper-pagination-horizontal span.swiper-pagination-bullet {
    width: 48px;
    height: 3px;
    background: #fff;
    border-radius: 0;
    transition: all .25s ease;
    margin: 0 !important;
}

h3.adv__title {
    font-family: Noto Sans;
    font-weight: 700;
    font-style: Bold;
    font-size: 24px;
    leading-trim: NONE;
    line-height: 1.375;
    letter-spacing: 0%;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
}

.adv__text {
    font-family: Noto Sans;
    font-weight: 500;
    font-style: Medium;
    font-size: 18px;
    leading-trim: NONE;
    line-height: 150%;
    letter-spacing: 0%;
    text-align: center;
    color: #fefefe;
    min-height: 81px;
}

.adv__item .btn {
    padding: 10px 32.5px;
}

.adv__item__top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

section.fos {
    top: -114px;
    background: #26282E;
    border-radius: 40px 40px 0 0;
    padding-top: 80px;
    margin: 0;
}

.fos__wrapper {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.fos__form {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    max-width: 480px;
}

p.title {
    font-family: Noto Sans;
    font-weight: 700;
    font-style: Bold;
    font-size: 20px;
    leading-trim: NONE;
    line-height: 32px;
    letter-spacing: 0%;
    color: #fff;
}

p.text {
    font-family: Noto Sans;
    font-weight: 500;
    font-style: Medium;
    font-size: 16px;
    leading-trim: NONE;
    line-height: 20px;
    letter-spacing: 0%;
    color: #fefefe;
    margin-bottom: 12px;
}

input.form__input {
    padding: 10px 8px;
    background: #FFFFFF66;
    border: 1px solid transparent;
    font-family: Noto Sans;
    font-weight: 500;
    font-style: Medium;
    font-size: 16px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: 0%;
    border-radius: 8px;
    transition: all .25s ease;
    opacity: .8;
    outline: 0;
    color: #fff;
}

input.form__input::placeholder {
    color: #fff;
}

input.form__input:focus {
    opacity: 1;
    border-color: #7181C0;
}

.form__row {
    display: flex;
    gap: 16px;
}

.form__row button {
    padding: 10px 71px;
    font-size: 16px;
}

.checkbox {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #fff;
    font-family: Noto Sans;
    font-weight: 300;
    font-style: Light;
    font-size: 8px;
    leading-trim: NONE;
    line-height: 1.375;
    letter-spacing: 0%;
    text-align: center;
    cursor: pointer;
}

.checkbox a {
    color: #fff;
}

form {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

input.form__checkbox {
    border: 0.5px solid #FEFEFE;
    background: transparent;
    appearance: none;
    -webkit-appearance: none;
    width: 8px;
    height: 8px;
    transition: all .25s ease;
}

label {
    cursor: pointer;
}

.checkbox:hover input {
    border-color: #81aaff;
}

input.form__checkbox:checked {
    background: url(../img/Check.svg) no-repeat center;
    background-size: 100%;
}

label a {
    text-decoration: underline;
}

p.error {
    display: none;
}

.sended {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

section.qr .container {
    flex-direction: row;
    align-items: flex-end;
    gap: 0;
    max-width: 1104px;
}

.qr__wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24px 48px;
    max-width: 304px;
    background: #ffffff69;
    border-radius: 12px;
}

.qr__wrapper p.title {
    font-family: Noto Sans;
    font-weight: 700;
    font-style: Bold;
    font-size: 18px;
    leading-trim: NONE;
    line-height: 24px;
    letter-spacing: 0%;
    text-align: center;
    text-transform: uppercase;
    margin: 16px 0 24px 0;
}

.qr__wrapper img {
    padding: 24px;
    background: #fff;
}

.qr__list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.qr__list p {
    font-family: Noto Sans;
    font-weight: 900;
    font-style: Black;
    font-size: 16px;
    leading-trim: NONE;
    line-height: 1.375;
    letter-spacing: 0%;
    text-transform: uppercase;
    color: #FEFEFECC;
}

.qr__list p span.blue {
    color: #013088;
}

img.qr__auto {
    position: relative;
    left: -86px;
}

section.fos .container {
    max-width: 1104px;
}

section.test {
    padding: 64px 0;
    height: 618px;
    background: url(../img/test-bg.jpg) no-repeat center;
    background-size: cover;
}

section.test .container {
    align-items: center;
    justify-content: space-between;
}

section.test .container .btn {
    padding: 10px 43.5px;
    font-size: 16px;
}

.test__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 600px;
    gap: 32px;
}

h2.section__title {
    font-family: Noto Sans;
    font-weight: 500;
    font-style: Bold;
    font-size: 32px;
    leading-trim: NONE;
    line-height: 1.375;
    letter-spacing: 0%;
    text-align: center;
    text-transform: uppercase;
    color: #fefefe;
}

.section__text {
    font-family: Noto Sans;
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
    text-align: center;
    color: #fefefe;
}

.partners__slider {
    width: 100%;
}

.partners__slider .swiper-slide {
    display: flex;
    width: 148px;
}

.section__header {display: flex;justify-content: center;width: 100%;}

.test__header h2.section__title {
    font-weight: 700;
}

.partners__slider .swiper-wrapper {
    justify-content: center;
    gap: 24px;
}

.partners__slider .swiper-slide img {
    width: 100%;
    height: auto;
}

.section__header {display: flex;justify-content: center;width: 100%;}

.test__header h2.section__title {
    font-weight: 700;
}

.partners__slider .swiper-wrapper {
    justify-content: center;
    gap: 24px;
}

.partners__slider .swiper-slide img {
    width: 100%;
    height: auto;
}

.reviews__wrapper {
    display: flex;
    align-items: flex-start;
    gap: 92px;
    width: 100%;
}

.reviews__info {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 24px 30px;
    background: #151616;
    border-radius: 8px;
    gap: 8px;
    box-shadow: 0px 0px 12px 0px #0000001A;
}

.reviews__info img {
    margin-bottom: 8px;
}

.reviews__info p {
    font-family: Noto Sans;
    font-weight: 600;
    font-style: Display SemiBold;
    font-size: 16px;
    leading-trim: NONE;
    line-height: 1.375;
    letter-spacing: 0%;
    color: #fefefe;
}

section.reviews .container {
    max-width: 100%;
    padding-left: calc((100% - 1264px)/2);
}

.reviews__slider__wrapper {
    width: 100%;
    overflow-x: scroll;
    padding-bottom: 16px;
}

.reviews__slider__list {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    width: max-content;
    padding-right: 10px;
}

.reviews__slider__item {
    max-width: 364px;
    box-shadow: 0px 0px 12px 0px #0000001A;
    background: #151616;
    padding: 24px 20px 12px 20px;
    height: 238px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.reviews__slider__item__header {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.reviews__slider__item__header p {
    font-family: Noto Sans;
    font-weight: 500;
    font-style: Medium;
    font-size: 12px;
    leading-trim: NONE;
    line-height: 18px;
    letter-spacing: 0%;
    color: var(--Main-White, #FEFEFE);
    opacity: .8;
}

.reviews__slider__item__bottom {
    display: flex;
    align-items: center;
    gap: 16px;
}

.reviews__slider__item__bottom img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

p.name {
    font-family: Noto Sans;
    font-weight: 600;
    font-style: Display SemiBold;
    font-size: 16px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: 0%;
    line-height: 1.375;
    color: #FEFEFE;
}

.reviews__slider__wrapper::-webkit-scrollbar-track,
.reviews__slider__wrapper::-webkit-scrollbar {
    height: 4px;
    background: transparent;
}

.reviews__slider__wrapper::-webkit-scrollbar-thumb {
    background: #E6E7E8;
}

.reviews__slider__wrapper {
    cursor: grab;
    user-select: none;
}
  
.reviews__slider__wrapper.is-dragging {
    cursor: grabbing;
}

section.contacts .container {
    max-width: 100%;
}

div#map {
    width: 100%;
    height: 670px;
    overflow: hidden;
}

.map__wrapper {
    display: flex;
    position: relative;
    width: 100%;
}

.map__info {
    position: absolute;
    display: flex;
    flex-direction: column;
    background: #26282E;
    border-radius: 12px;
    padding: 24px;
    left: calc((100% - 1264px)/2);
    top: 32px;
    gap: 24px;
}

.contacts__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
}

.contacts__list__item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.contacts__list__item a, .contacts__list__item span {
    font-family: Noto Sans;
    font-weight: 500;
    font-style: Medium;
    font-size: 14px;
    leading-trim: NONE;
    line-height: 1.35;
    letter-spacing: 0%;
    text-transform: uppercase;
    color: #fefefe;
}

.contacts__list__item a:hover {
    color: #81AAFF;
}

.soc {
    display: flex;
    align-items: center;
    gap: 16px;
}

a.soc__item {
    display: flex;
}

a.soc__item:hover svg path {
    fill: #81AAFF;
}

ymaps.ymaps-2-1-79-ground-pane {
    filter: grayscale(1);
}

section.contacts {
    margin-bottom: 120px;
}

section.faq h2.section__title {
    width: 100%;
}

.footer__logos a {
    display: flex;
}

.footer__logos a:nth-child(1) img {
    height: 22px;
}

.footer__logos a:nth-child(2) img {
    height: 16px;
}

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

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

.map__info img {
    border-radius: 8px;
}

/* SPACIAL */

.spec__list {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
}

.spec__tabs {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 20px;
}

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

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

.spec .swiper {
    width: 100%;
    height: auto;
}

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

.spec .swiper-button-next,
.spec .swiper-button-prev {
    color: #000;
}

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

.tab {
    display: flex;
    color: #7181C0;
    font-size: 16px;
    font-weight: 300;
    text-transform: uppercase;
    border: 1px solid;
    transition: all .5s ease;
    cursor: pointer;
    border-radius: 5px;
    border-color: #7181C0;
    padding: 10px 24px;
    border-radius: 5px;
    line-height: 1;
}

.tab.active, .tab:hover {
    background: #7181C0;
    color: #fff;
    border-color: #7181C0;
}

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

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

.spec__item {
    display: none;
    flex-direction: column;
    gap: 20px;
}

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

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

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

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

.spec__item__element__price {
    display: flex;
    gap: 10px;
    font-size: 30px;
    font-weight: 600;
    align-items: center;
    flex-direction: column;
}

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

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

.spec__item.active {
    display: flex;
}

.left .swiper {
    width: 100%;
    max-width: 400px;
    margin: 0 !important;
}

.slider__wrapper {
    width: max-content;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    max-width: 400px;
    width: 100%;
}

section#instock {
    margin: 0;
}

section#instock h2.section__title {
    color: #365CAB;
    text-align: center;
	width: 100%;
}

.left .swiper .swiper-slide img {
    border-radius: 10px;
}

.left__info a.link {
    font-size: 30px;
}

p.subtitle {
    font-size: 16px;
    opacity: .5;
}

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

button.show-more-btn {
    display: block;
    margin: 20px auto 0;
    border: 1px solid #ffffff;
    background: transparent;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'WixMadeforDisplay', sans-serif;
    padding: 12px 28px;
    border-radius: 5px;
    font-size: 1.8rem;
}

button.show-more-btn:hover {
    background: var(--white);
    border-color: var(--white);
    color: var(--blue-grey);
}

.spec__item__element.hidden {
	display: none;
}

.slider__wrapper .swiper-pagination {
    position: initial;
    display: flex;
    justify-content: center;
    gap: 5px;
}

.swiper.spec__items__slider .swiper-slide {
    display: flex;
    height: auto;
    width: 100%;
}

.car-card {
    display: flex;
    width: 100%;
    flex-direction: column;
    gap: 20px;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
}

.car-card__slider.swiper img {
    width: 100%;
    border-radius: 5px;
    height: 250px;
    object-fit: cover;
}

section#instock {
    padding: 100px 0;
    border-radius: 40px 40px 0 0;
    background: #E0E6F2;
}

.car-card__content {
    display: flex;
    flex-direction: column;
    height: max-content;
    justify-content: space-between;
}

h3.car-card__title {
    font-size: 24px;
    font-weight: 700;
    color: #365CAB;
}

.car-card__trim {
    font-size: 16px;
    margin: 10px 0;
    color: #0a1731;
    font-weight: 500;
}

ul.car-card__params {
    display: flex;
    flex-direction: column;
    gap: 5px;
    list-style: none;
    font-size: 14px;
    margin-bottom: 20px;
    color: #7f8ead;
}

.car-card__price {
    font-size: 24px;
    font-weight: 700;
    color: #365CAB;
    margin-bottom: 20px;
}

a.car-card__btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 12px 0;
    font-size: 14px;
    background: #365CAB;
    border-radius: 8px;
    text-transform: uppercase;
    color: #fff;
    transition: all .25s ease;
    border: 1px solid #365CAB;
}

a.car-card__btn:hover {
    color: #365CAB;
    border-color: #365CAB;
    background: transparent;
}

.car-card__slider {
    cursor: grab;
}

.car-card__slider .swiper-pagination {
    display: flex;
    justify-content: center;
    gap: 5px;
}

.car-card__slider .swiper-pagination span.swiper-pagination-bullet {
    width: 24px;
    height: 5px;
    margin: 0 !important;
    border-radius: 2px;
    background: #fff;
}

.cat__card__top {
    display: flex;
    flex-direction: column;
    min-height: 200px;
}

.swiper.spec__items__slider {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.instock__nav {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.instock__nav span.swiper-pagination-bullet {
    width: 30px;
    height: 5px;
    border-radius: 3px;
    margin: 0 !important;
    background: #365cab;
}

.swiper.spec__items__slider {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.instock__nav {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.instock__nav span.swiper-pagination-bullet {
    width: 30px;
    height: 5px;
    border-radius: 3px;
    margin: 0 !important;
    background: #365cab;
}