:root {
	--white: #fff;
	--black: #000;
	--blue: #0071E3;
	--dark-blue: #051c2c;
	--dark-green-blue: #14314E;
	--border-grey: #F0F0F5;
	--light-blue-border: #3A5C7D;
	--blue-grey: #6E81A2;
	--form-bg: #14314E;
}

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

*::-webkit-scrollbar {
	height: 8px;
    width: 8px;
}

*::-webkit-scrollbar-corner, *::-webkit-scrollbar-thumb:hover {
    background: hsla(0, 0%, 100%, .75);
}

*::-webkit-scrollbar-thumb {
	background: hsla(0, 0%, 100%, .5);
    border-radius: 4px;
    -webkit-transition: background .3s ease;
    transition: background .3s ease;
}

*::-webkit-scrollbar-track {
    background: #1e3443;
    border-radius: 0px;
}

html {
    font-size: 62.5%; /* 62.5% ÃÂ¾Ã‘â€š 16px = 10px */
}

body {
	background: var(--white);
	color: var(--dark-blue);
	font-family: "WixMadeforDisplay", sans-serif;
	font-size: 1.5rem;
	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 .5s ease;
	text-decoration: none;
}

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

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

header {
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 99;
	flex-direction: column;
	transition: all .5s ease;
	height: auto;
	padding: 15px 0;
}

main {
	overflow: hidden;
}

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

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

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

.modal {
	display: flex;
	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;
    pointer-events: none;
}

.burger {
	display: none;
}

/* MAIN STYLES */

section.hero {
    height: 100vh;
}

picture.hero__bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

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

a.logo {
    display: flex;
    gap: 10px;
    color: #fff;
    align-items: center;
}

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

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

a.logo img {
    max-width: 180px;
    max-height: 24px;
}

a.logo img:last-child {
    max-height: 20px;
}

nav.menu {
    display: flex;
}

nav.menu ul {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 2.4rem;
}

nav.menu ul li a {
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 3px;
    font-size: 1.5rem;
}

nav.menu ul li a svg {
    width: 12px;
    height: 12px;
}

nav.menu ul li a span {
    line-height: 1;
    padding-bottom: 4px;
    position: relative;
}

nav.menu ul li a span::after {
    content: '';
    width: 0%;
    height: 1px;
    background: var(--white);
    position: absolute;
    left: 0;
    bottom: 0;
    transition: width .5s ease;
}

nav.menu ul li a:hover span::after {
    width: 100%;
}

.header__controls {
    display: flex;
    align-items: center;
    gap: 2.4rem;
}

a.link {
    display: flex;
    align-items: center;
    color: var(--white);
    gap: 7px;
}

a.link svg {
    width: 20px;
    height: 20px;
}

.hero__content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 50%;
    gap: 44px;
}

section.hero .container {
    justify-content: flex-start;
    align-items: center;
}

h1.title {
    z-index: 1;
    font-size: 5rem;
    line-height: 6rem;
    color: var(--white);
    font-weight: 400;
    max-width: 890px;
}

.btn {
    z-index: 2;
    height: 4.4rem;
    padding: 0 3.6rem;
    border-radius: 5px;
    font-size: 1.8rem;
    align-items: center;
    appearance: none !important;
    border: 0 solid #aaa;
    box-shadow: none;
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    justify-content: center;
    line-height: 1;
    outline: none;
    text-align: center;
    text-decoration: none;
    touch-action: manipulation;
    -webkit-user-select: none;
    user-select: none;
    font-family: inherit;
    font-weight: 500;
    transition: all .5s ease;
}

.btn.opacity__btn {
    background-color: hsla(0, 0%, 100%, .1);
    border-color: hsla(0, 0%, 100%, .1);
    color: #fff;
}

.btn.opacity__btn:hover {
    background-color: hsla(0, 0%, 100%, .5);
    border-color: hsla(0, 0%, 100%, .5);
    color: #fff;
}

section.model {
    height: 100vh;
}

.model__wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    justify-content: space-between;
    padding: 80px 0;
}

.model__bg {
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    justify-content: center;
    width: 100%;
    height: 100%;
}

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

.model__header {
    display: flex;
    z-index: 1;
}

header.header.fixed {
    background: #000c13a8;
    backdrop-filter: blur(5px);
}

.model__info {
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.model__info__slug {
    max-width: 429px;
    color: var(--white);
    font-size: 4rem;
    line-height: 4.8rem;
}

.model__info__content {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.btns {
    display: flex;
    gap: 1.6rem;
    margin-top: 14px;
}

p.price {
    font-size: 4rem;
    line-height: 4.8rem;
    color: var(--white);
}

p.credit {
    color: var(--white);
    font-size: 2.4rem;
    line-height: 2.9rem;
}

.btn.white__btn:hover {
    background: #97a1a8;
    color: var(--white);
}

.btn.white__btn {
    background-color: #fff;
    border-color: #fff;
    color: #051c2c;
}

h2.section__title {
    font-size: 4rem;
    line-height: 4.8rem;
    font-weight: 500;
}

section.full {
    padding: 8rem 0;
    background: var(--dark-blue);
    color: var(--white);
}

section.full .section__header {
    display: flex;
    padding: 0 10rem;
    flex-direction: column;
    gap: 50px;
    max-width: 170rem;
    width: 100%;
}

section.full .container {
    padding: 0;
    gap: 25px;
    max-width: 100%;
}

section.full .section__footer {
    padding: 0 10rem;
    justify-content: center;
    display: flex;
    width: 100%;
}

.tabs {
    display: flex;
    justify-content: center;
    position: relative;
    width: -webkit-max-content;
    width: max-content;
}

p.tab {
    background: none;
    border: none;
    color: hsla(0, 0%, 100%, .5);
    cursor: pointer;
    font-family: WixMadeforDisplay, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol;
    font-size: 18px;
    padding: 8px 30px 12px 0;
    position: relative;
    transition: color .3s ease;
}

.tabs::before {
    background: hsla(0, 0%, 100%, .5);
    bottom: 0;
    content: "";
    height: 1px;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    width: 100%;
}

p.tab::after {
    background: transparent;
    bottom: -1px;
    content: "";
    height: 3px;
    left: 0;
    position: absolute;
    transition: all .3s ease, left .3s ease;
    width: 100%;
}

p.tab:hover::after, p.tab.active::after {
    background: var(--white);
}

p.tab:hover, p.tab.active {
    color: var(--white);
}

.section__content {
    width: 100%;
}

.slider .swiper-slide {
    display: flex;
    position: relative;
    max-width: 86%;
    height: 55.5rem;
    transition: all .5s ease;
    opacity: .5;
    justify-content: center;
    padding: 0 12px;
}

.slide__info {
    position: absolute;
    width: calc(100% - 20rem);
    max-width: 150rem;
    bottom: 4rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    z-index: 2;
}

h3.slide__title {
    font-size: 3rem;
    line-height: 3.6rem;
}

.slide__info__content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    max-width: 540px;
    width: 100%;
}

.swiper-slide p.description {
    max-width: 260px;
    opacity: 1;
    margin: 0;
}

.slider .swiper-slide img.slide__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.slider .swiper-slide.swiper-slide-active {
    opacity: 1;
}

.slider__controls {
    display: flex;
    align-items: center;
    gap: 30px;
    width: 100%;
    justify-content: center;
}

.arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    background: var(--white);
    border-radius: 5px;
    cursor: pointer;
    transition: all .5s ease;
}

.arrow svg {
    width: 18px;
    height: 18px;
}

.slider__nav {
    display: flex;
    align-items: center;
    width: auto !important;
    gap: 10px;
}

.arrow svg g {
    fill: var(--dark);
}

span.swiper-pagination-bullet {
    width: 30px;
    height: 3px;
    border-radius: 5px;
    background: var(--white);
    opacity: .5;
    transition: all .5s ease;
    margin: 0 !important;
}

span.swiper-pagination-bullet.swiper-pagination-bullet-active {
    opacity: 1;
    width: 60px;
}

section.special {
    height: 100vh;
}

section.special .swiper-slide {
    display: flex;
    width: 100%;
    height: 100%;
    color: var(--white);
    justify-content: center;
}

section.special .swiper-slide picture, section.special .swiper-slide picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

section.special .section__content {
    width: 100%;
    height: 100%;
}

section.special .container {
    padding: 0;
    max-width: 100%;
}

section.special .section__content .swiper {
    height: 100%;
}

section.special .swiper-slide .slide__info {
    bottom: auto;
    top: 8rem;
}

section.special .swiper-slide .slide__info h3.slide__title {
    font-size: 4rem;
    line-height: 4.8rem;
}

section.special .swiper-slide .slide__info  .slide__info__content {
    max-width: max-content;
    gap: 80px;
}

section.special .swiper-slide .slide__info p.description {
    max-width: 610px;
    width: 100%;
}

section.special .slider__controls {
    position: absolute;
    bottom: 40px;
    z-index: 9;
}

section.news .section__header {
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
}

section.news .slide__info {
    flex-direction: column;
    gap: 20px;
    z-index: 2;
}

.slide__info h4 {
    font-size: 2.4rem;
    line-height: 2.9rem;
}

section.subscribe.full {
    padding-bottom: 4rem;
    padding-top: 4rem;
}

section.subscribe.full .container {
    padding: 0 10rem;
    max-width: 170rem;
}

.subscribe__wrapper {
    display: flex;
    align-items: flex-start;
    width: 100%;
    justify-content: center;
    position: relative;
}

.subscribe__controls {
    display: flex;
    flex-direction: column;
    gap: 2.4rem;
    align-items: flex-end;
}

.soc {
    display: flex;
    gap: 2.4rem;
}

a.soc__link {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: #1e3240;
    border-radius: 5px;
}

a.soc__link svg {
    width: 22px;
    height: 22px;
}

a.soc__link svg path {
    fill: var(--white);
}

a.soc__link:hover {
    background: #828d95;
}

/* MAP */

.contacts__wrapper {
    width: 100%;
    height: 660px;
    position: relative;
    display: flex;
    align-items: center;
}

div#map {
    width: 100%;
    height: 700px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contacts__info {
    position: absolute;
    left: 88px;
    max-width: 480px;
    padding: 24px 20px;
    background: var(--white);
    z-index: 9;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contacts__info__item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    line-height: 1;
}

.contacts__info__item h3 {
    font-size: 24px;
    font-weight: 400;
}

.contacts__info__item h3 span {
    font-weight: 600;
    color: var(--natural-red);
}

p.metro {
    display: flex;
    align-items: center;
    font-size: 15px;
    font-weight: 600;
    color: #cbcbcb;
    gap: 5px;
}

.contacts__info__item__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
}

.contacts__info__item__list p {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
}

/* FOOTER */

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

footer {
    background: #000c13;
    color: var(--white);
    padding: 54px 0;
    justify-content: center;
    display: flex;
}

.footer__info {
    display: flex;
    flex-direction: column;
    gap: 16px;
    font-size: 12px;
    font-weight: 400;
    line-height: 1;
    max-width: 305px;
    width: 100%;
    align-items: flex-start;
}

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

.description {
    margin-top: 16px;
}

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

.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: 305px;
    width: 100%;
    justify-content: flex-end;
}

nav.footer__nav ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
    list-style: none;
}

nav.footer__nav ul li a {
    color: var(--white);
    opacity: .5;
    font-size: 12px;
    line-height: 1;
    font-weight: 400;
}

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

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

.footer__logos a img {
    max-width: 150px;
}

section.map .container {
    padding: 0;
    max-width: 100%;
    justify-content: center;
}

.map__info__wrapper {
    display: flex;
    max-width: 170rem;
    width: 100%;
    position: absolute;
    z-index: 1;
    padding: 0 10rem;
}

#map > ymaps {
    width: 100%;
}


.map__info {
    max-width: 400px;
    background: #051c2c;
    color: #fff;
    padding: 20px;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.map__info h3 {
    font-size: 24px;
    line-height: 1;
    font-weight: 400;
}

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

p.map__info__item {
    display: flex;
    align-items: center;
    gap: 10px;
}

p.map__info__item svg path {
    fill: var(--white);
}

p.map__info__item svg {
    opacity: .35;
}

[class*=ymaps][class*=-ground-pane] {
    filter: grayscale(1);
    -ms-filter: grayscale(1);
    -webkit-filter: grayscale(1);
    -moz-filter: grayscale(1);
    -o-filter: grayscale(1);
}

.slider .swiper-slide::after {
    content: '';
    width: calc(100% - 24px);
    height: 100%;
    position: absolute;
    left: 12px;
    top: 0;
    background: linear-gradient(0deg, #051c2cc4 0%, #051c2c38 10%, transparent);
    border-radius: 5px;
}

/* Overlay ÃÂ¼ÃÂ¾ÃÂ´ÃÂ°ÃÂ»ÃÂºÃÂ¸ */
.modal__overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #051c2c8f;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

/* Wrapper ÃÂ¼ÃÂ¾ÃÂ´ÃÂ°ÃÂ»ÃÂºÃÂ¸ */
.modal__wrapper {
    display: flex;
    position: relative;
    max-width: 1400px;
    width: 100%;
    background: var(--dark-blue);
    border-radius: 10px;
    padding: 20px;
    transform: translateY(50px);
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

/* ÃÂÃÂºÃ‘â€šÃÂ¸ÃÂ²ÃÂ½ÃÂ¾ÃÂµ Ã‘ÂÃÂ¾Ã‘ÂÃ‘â€šÃÂ¾Ã‘ÂÃÂ½ÃÂ¸ÃÂµ */
.modal.show .modal__overlay {
    opacity: 1;
    pointer-events: auto;
}

.modal.show .modal__wrapper {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

/* ÃÅ¡ÃÂ½ÃÂ¾ÃÂ¿ÃÂºÃÂ° ÃÂ·ÃÂ°ÃÂºÃ‘â‚¬Ã‘â€¹Ã‘â€šÃÂ¸Ã‘Â */
.modal__close {
    display: flex;
    position: absolute;
    right: 0;
    top: -42px;
    cursor: pointer;
}

.modal__close svg path {
    fill: var(--white);
}

.modal__close svg {
    width: 32px;
    height: 32px;
}

/* ÃÂ¡ÃÂµÃ‘â€šÃÂºÃÂ° ÃÂºÃÂ°Ã‘â‚¬Ã‘â€šÃÂ¾Ã‘â€¡ÃÂµÃÂº */
.cards-grid.cards-snap {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

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

.card-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    padding: 16px 24px;
    color: rgba(255, 255, 255, 1);
    min-height: 220px;
}

/* Ãâ€™ÃÂµÃ‘â‚¬Ã‘â€¦ÃÂ½Ã‘ÂÃ‘Â Ã‘â€¡ÃÂ°Ã‘ÂÃ‘â€šÃ‘Å’ ÃÂºÃÂ°Ã‘â‚¬Ã‘â€šÃÂ¾Ã‘â€¡ÃÂºÃÂ¸ */
.card-info-top {
    display: flex;
    justify-content: space-between;
}

.card-info-top-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 1);
    color: rgba(5, 28, 44, 1);
}

.card-info-numbers {
    display: flex;
    align-items: flex-end;
    gap: 15px;
}

.card-info-number.h1 {
    font-size: 60px;
    line-height: 1;
    font-weight: 400;
    color: rgba(255, 255, 255, 1);
    margin-bottom: 0 !important;
}

.modal__call .modal__wrapper {
    max-width: 600px;
    padding: 3.2rem;
}

.modal__call .modal__wrapper .modal__close {
    top: .8rem;
    right: .8rem;
    justify-content: flex-end;
}

.modal__contact__form {
    display: flex;
    flex-direction: column;
    color: var(--white);
    gap: 4.8rem;
}

.contact__form__header h2.section__title {
    text-align: center;
}

.contact__form__header {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact__form__wrapper {
    display: flex;
    flex-direction: column;
    gap: 2.4rem;
    align-items: center;
}

input.input {
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
    -webkit-appearance: none;
    appearance: none;
    background-color: #fff;
    border: 1px solid #ccc;
    box-shadow: none;
    color: #222;
    display: inline-block;
    height: 100%;
    outline: none;
    padding: 2.8rem 6.4rem 1rem 1.6rem;
    vertical-align: middle;
    width: 100%;
    border-radius: 5px;
    padding: 1.6rem;
    font-size: 1.5rem;
    line-height: 2.2rem;
    height: 45px;
}

.checkbox-item {
    width: 100%;
    display: flex;
    align-items: flex-start;
}

label.checkbox__label {
    color: #fff;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 22.5px;
    margin-left: 1.2rem;
    max-width: 90%;
}

label.checkbox__label a {
    color: var(--white);
    text-decoration: underline;
}

/* ÃÅ¾Ã‘â€šÃÂºÃÂ»Ã‘Å½Ã‘â€¡ÃÂ°ÃÂµÃÂ¼ Ã‘ÂÃ‘â€šÃÂ°ÃÂ½ÃÂ´ÃÂ°Ã‘â‚¬Ã‘â€šÃÂ½Ã‘â€¹ÃÂ¹ Ã‘ÂÃ‘â€šÃÂ¸ÃÂ»Ã‘Å’ Ã‘â€¡ÃÂµÃÂºÃÂ±ÃÂ¾ÃÂºÃ‘ÂÃÂ° */
.checkbox-item input {
    appearance: none;
    -webkit-appearance: none; /* ÃÂ´ÃÂ»Ã‘Â ÃÂ¿ÃÂ¾ÃÂ´ÃÂ´ÃÂµÃ‘â‚¬ÃÂ¶ÃÂºÃÂ¸ ÃÂ² Safari */
}

/* ÃÂ¡Ã‘â€šÃÂ¸ÃÂ»ÃÂ¸ÃÂ·ÃÂ°Ã‘â€ ÃÂ¸Ã‘Â Ã‘â€¡ÃÂµÃÂºÃÂ±ÃÂ¾ÃÂºÃ‘ÂÃÂ° */
.checkbox-item input {
    appearance: none;
    width: 20px;
    height: 20px;
    border: 1px solid #1a4869;
    border-radius: 0.25rem;
    background-color: transparent;
    cursor: pointer;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    margin: 0;
}

/* ÃÅ¾Ã‘â€žÃÂ¾Ã‘â‚¬ÃÂ¼ÃÂ»ÃÂµÃÂ½ÃÂ¸ÃÂµ Ã‘ÂÃÂ¾Ã‘ÂÃ‘â€šÃÂ¾Ã‘ÂÃÂ½ÃÂ¸Ã‘Â checked */
.checkbox-item input:checked {
    background-color: #1a4869;
    border-color: #1a4869;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
}

/* ÃÂ­Ã‘â€žÃ‘â€žÃÂµÃÂºÃ‘â€š ÃÂ½ÃÂ°ÃÂ¶ÃÂ°Ã‘â€šÃÂ¸Ã‘Â */
.checkbox-item input:active {
    filter: brightness(90%);
}

/* ÃÂ¡ÃÂ¼ÃÂµÃÂ½ÃÂ° Ã‘â€ ÃÂ²ÃÂµÃ‘â€šÃÂ° ÃÂ³Ã‘â‚¬ÃÂ°ÃÂ½ÃÂ¸Ã‘â€ Ã‘â€¹ ÃÂ¿Ã‘â‚¬ÃÂ¸ ÃÂ½ÃÂ°ÃÂ²ÃÂµÃÂ´ÃÂµÃÂ½ÃÂ¸ÃÂ¸ */
.checkbox-item input:hover:not(:disabled) {
    border-color: #1a4869;
}

/* ÃÂ¡Ã‘â€šÃÂ¸ÃÂ»ÃÂ¸ ÃÂ´ÃÂ»Ã‘Â Ã‘â€¡ÃÂµÃÂºÃÂ±ÃÂ¾ÃÂºÃ‘ÂÃÂ° ÃÂ¿Ã‘â‚¬ÃÂ¸ Ã‘â€žÃÂ¾ÃÂºÃ‘Æ’Ã‘ÂÃÂµ */
.checkbox-item input:focus {
    border-color: #1a4869;
    outline: none;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

/* ÃÅ¾Ã‘â€šÃÂºÃÂ»Ã‘Å½Ã‘â€¡ÃÂµÃÂ½ÃÂ½Ã‘â€¹ÃÂ¹ Ã‘â€¡ÃÂµÃÂºÃÂ±ÃÂ¾ÃÂºÃ‘Â */
.checkbox-item input:disabled {
    filter: none;
    opacity: 0.5;
    cursor: not-allowed;
}

.checkbox-item input:disabled ~ .checkbox-label {
    opacity: 0.5;
    cursor: not-allowed;
}


body.hidden {
    overflow: hidden;
}

.modal.modal__nav {
    display: none;
}

.header__info {
    display: flex;
    flex-direction: column;
    gap: 3px;
    align-items: flex-start;
}

.header__info a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    position: relative;
    padding-bottom: 2px;
}

.header__info a svg {
    width: 16px;
    height: 16px;
}

.header__info a::before {
    position: absolute;
    content: '';
    width: 0%;
    height: 1px;
    background: var(--white);
    bottom: 0;
    transition: all .5s ease;
}

.header__info a:hover::before {
    width: 100%;
}

.dongfeng {
    position: absolute;
    z-index: 9;
    display: flex;
    flex-direction: column;
    background: var(--white);
    padding: 20px;
    max-width: 440px;
    left: calc((100% - 170rem)/2 + 10rem);
    width: 100%;
    gap: 30px;
}

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

.dongfeng__image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.dongfeng__header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

ul.dongfeng__info-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

ul.dongfeng__info-list svg path {
    fill: var(--blue);
}

li.dongfeng__info-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 500;
}

li.dongfeng__info-item a {
    color: var(--dark-blue);
}

li.dongfeng__info-item a:hover {
    color: var(--blue);
}

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

.dongfeng__model-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.dongfeng__model {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    font-weight: 500;
}

.dongfeng__model img {
    height: 30px;
    width: auto;
}

.dongfeng__contacts a {
    display: flex;
}

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

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

.dongfeng__contacts a svg {
    width: 24px;
    height: 24px;
}

.dongfeng__contacts a:hover svg path {
    fill: var(--dark-blue);
}

.qr {
    display: flex;
    align-items: center;
    gap: 30px;
    background: var(--white);
    padding: 20px;
    color: var(--dark-blue);
}

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

p.qr__title {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2;
}

.qr__items {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

p.qr__item {
    font-size: 20px;
    font-weight: 500;
}

p.qr__item span {
    color: var(--blue);
}

a#qrcode {
    display: flex;
    width: 150px;
    height: 150px;
    justify-content: center;
    align-items: center;
    transition: all .5s ease;
}

a#qrcode img {
    width: 100%;
    height: 100%;
    transition: all .5s ease;
}

a#qrcode:hover img {
    transform: scale(1.1);
}

.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: 260px;
}

.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: var(--white);
    font-size: 20px;
    font-weight: 300;
    text-transform: uppercase;
    padding: 15px 25px;
    border: 1px solid;
    transition: all .5s ease;
    cursor: pointer;
    border-radius: 5px;
    border-color: #f0f0f53b;
}

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

.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;
    border: 1px solid #6E81A2;
    padding: 20px;
    gap: 20px;
    border-radius: 10px;
}

.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#spec {
    background: var(--dark-blue);
    padding: 100px 0;
}

section#spec h2.section__title {
    color: var(--white);
    text-align: center;
}

.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;
}

section.consent {
    background: var(--dark-blue);
    color: #fff;
    padding-top: 120px;
    padding-bottom: 100px;
    min-height: 80vh;
    justify-content: flex-start;
}

section.consent ul, section.consent ol {
    padding: 20px 0 20px 40px;
}

.consent__content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    text-align: justify;
}

.consent__content a {
    color: var(--blue);
    border-bottom: 1px solid;
}

a.consent__link {
    color: var(--white);
    opacity: .5;
    border-bottom: 1px solid;
}

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