:root {
	--blue: #1C6EBA;
	--dark-blue: #003057;
	--white: #fff;
	--black: #141414;
	--dark: #353535;
	--grey: #f2f2f2;
	--dark-grey: #dbdbdb;
	--red: #EB5757;
	--green: #115740;
	--container: 1344px;
	--green-dark-grey: #65665C;
}

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

html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	min-width: 320px;
	color: var(--dark);
	background: var(--white);
	font-family: "VolvoNovum", sans-serif;
	font-weight: 400;
	font-style: Normal;
	font-size: 16px;
	line-height: 1.4;
}

img {
	display: block;
	max-width: 100%;
}

a {
	color: inherit;
	text-decoration: none;
	transition: all .25s ease;
}

button,
input {
	font: inherit;
	transition: all .25s ease;
}

button {
	cursor: pointer;
	transition: all .25s ease;
	text-transform: uppercase;
	font-weight: 500;
}

input {
	border: 0;
	outline: none;
}

ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

p,
h2,
h3 {
	margin: 0;
	font-weight: 400;
}

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

.container {
	width: min(calc(100% - 48px), var(--container));
	display: flex;
	flex-direction: column;
	gap: 56px;
	align-items: center;
}

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

.header {
	position: sticky;
	inset: 0 0 auto;
	padding: 16px 0;
	transition: background 0.25s ease, box-shadow 0.25s ease, padding 0.25s ease;
	display: flex;
	justify-content: center;
	background: var(--white);
	backdrop-filter: blur(0px);
	z-index: 9999;
	border-bottom: 1px solid transparent;
}

.burger {
	display: none;
	width: 36px;
	height: 36px;
	padding: 0;
	background: transparent;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 5px;
	position: relative;
}

.burger span {
	width: 22px;
	height: 2px;
	background: var(--dark);
	border-radius: 3px;
	transition: transform 0.2s ease, opacity 0.2s ease;
}

section.hero {
	position: relative;
	max-height: 820px;
	display: flex;
	align-items: flex-end;
	overflow: hidden;
	background: #1b150f;
	margin-bottom: 80px;
	height: 100vh;
}

.btn {
	background: var(--blue);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 14px 24px;
	border-radius: 6px;
	font-size: 14px;
	line-height: 1;
	color: var(--white);
	border: none;
	outline: 0;
	font-family: inherit;
	gap: 10px;
	text-transform: uppercase;
	font-weight: 500;
}

header.header .container {
	flex-direction: column;
	align-items: center;
	gap: 20px;
}

section {
	display: flex;
	justify-content: center;
	margin-bottom: 100px;
}

.left {
	display: flex;
	align-items: center;
	gap: 32px;
	width: 420px;
}

.logo img {
    width: 32px;
    height: 32px;
}

.left nav.main {
    max-width: calc(100% - 64px);
}

nav.main {
	display: flex;
}

nav.main ul {
	display: flex;
	align-items: center;
	gap: 17px;
	list-style: none;
}

nav.main ul li {
	display: flex;
}

nav.main ul li a {
	color: var(--dark);
	display: flex;
	position: relative;
	padding: 5px;
	line-height: 1;
	font-size: 14px;
	border-radius: 3px;
	text-transform: uppercase;
}

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

nav.main ul li a:hover:before {
	width: 100%;
}

a.brand__logo {
	display: flex;
	align-items: flex-end;
	gap: 16px;
}

span.delta {
	height: 18px;
	width: 1px;
	background: var(--dark);
	display: flex;
}

.right {
	display: flex;
	align-items: center;
	gap: 40px;
	justify-content: flex-end;
}

.social {
	display: flex;
	align-items: center;
	gap: 12px;
}

a.social__link {
	display: flex;
}

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

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

.hero__slider.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide.hero__slide {
    display: flex;
    position: relative;
    align-items: center;
}

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

.fos__container {
    display: flex;
    align-items: center;
    width: 100%;
    background: var(--grey);
    border-radius: 32px;
    overflow: hidden;
    flex-direction: column;
    padding: 48px 0;
    gap: 32px;
}

section.fos .container {
    align-items: center;
}

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

p.fos__title {
    font-size: 35px;
    line-height: 100%;
}

p.fos__text {
    color: var(--light-grey);
}

.fos__container img {
    max-width: 43.64%;
    width: 100%;
    object-fit: cover;
}

form.fos__form {
    max-width: 720px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

form.fos__form .row {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

button.fos__btn {
    background: var(--blue);
    color: var(--white);
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    height: 50px;
    padding: 10px 30px;
    border-radius: 8px;
    border: none;
}

input.fos__input {
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    height: 50px;
    padding: 10px 20px;
    width: 100%;
    border-radius: 8px;
    color: var(--black);
}

input.fos__input::placeholder {
    color: #00000061;
}

button.fos__btn:hover {
    background: var(--dark-grey);
    color: var(--dark);
}

.fos__checkbox input {
    appearance: none;
    -webkit-appearance: none; /* для поддержки в Safari */
}

.fos__checkbox input {
    appearance: none;
    width: 11px;
    height: 11px;
    border: 1px solid #00000065;
    border-radius: 2px;
    background-color: transparent;
    cursor: pointer;
    margin: 0;
}

.fos__checkbox input:checked {
    background: url(../img/Check.svg) no-repeat center center;
}

/* Отключенный чекбокс */
.fos__checkbox input:disabled {
    filter: none;
    opacity: 0.5;
    cursor: not-allowed;
}

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

.fos__checkbox {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 10px;
    line-height: 1;
    color: #00000065;
}

.fos__checkbox label a {
    border-bottom: 1px solid;
}

.fos__checkbox label a:hover {
    border-color: transparent;
}

.fos__checkbox label {
    cursor: pointer;
}

.section__header {
    display: flex;
    justify-content: center;
    gap: 20px;
}

h2.section__title {
    font-size: 42px;
    line-height: 1.2;
    font-weight: 500;
}

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

p.param {
    color: #00000099;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0%;
}

p.value {
    font-size: 24px;
    line-height: 1;
}

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

.price__wrapp {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
}

.model__price, .model__price span {
    font-size: 32px;
    line-height: 1;
}

span.from {
    color: #00000033;
}

span.small__price {
    cursor: pointer;
    font-size: 14px;
    line-height: 1;
    opacity: .4;
    border-bottom: 1px solid;
}

span.small__price:hover {
    border-color: transparent;
}

header.header.fixed {
    backdrop-filter: blur(5px);
    border-color: var(--grey);
}

p.hover__cursor img {
    width: 40px;
    height: 40px;
}

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

p.instock__title {
    font-size: 40px;
    line-height: 1;
}

span.count {
    font-weight: 700;
}

.instock__list {
    display: flex;
    align-items: center;
    position: relative;
}

.instock .arrow {
    display: flex;
    position: absolute;
}

.instock__card__img {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.instock__card__img__nav {
    display: flex;
    gap: 12px;
}

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

p.instock__title {
    font-size: 40px;
    line-height: 1;
}

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

.instock__slider.swiper {
    padding: 12px 10px;
}

p.intock__count {
    font-size: 18px;
    line-height: 1;
    color: var(--dark);
    opacity: .5;
}

span.count {
    font-weight: 700;
}

.instock__list {
    display: flex;
    align-items: center;
    position: relative;
}

.instock__card.swiper-slide {
    display: flex;
    flex-direction: column;
    border-radius: 12px;
    padding: 16px 12px;
    gap: 24px;
    border: 1px solid var(--dark-grey);
}

.instock .arrow {
    display: flex;
    position: absolute;
    cursor: pointer;
}

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

.instock__card__img__nav {
    display: flex;
    gap: 12px;
}

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

.instock__card__header {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

p.instock__card__name {
    font-size: 20px;
    line-height: 1;
    font-weight: 500;
    text-transform: uppercase;
}

p.instock__card__desc {
    display: flex;
    flex-direction: column;
    gap: 4px;
    line-height: 1;
    opacity: .4;
    font-size: 14px;
}

span.small {
    font-size: 14px;
}

.instock__card__params {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.instock__card__param__row {
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 4px;
    line-height: 15px;
    opacity: .8;
}

p.instock__card__price {
    font-size: 24px;
    line-height: 1;
    text-transform: uppercase;
    font-weight: 500;
    opacity: .7;
}

.instock__card.swiper-slide button.btn.grey__btn {
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 0%;
    padding: 6px 20px;
    border-radius: 4px;
}

.btn.grey__btn {
    background: var(--grey);
    color: var(--dark);
}

.btn.grey__btn:hover {
    background: var(--dark);
    color: var(--white);
}

.instock__progressbar {
    width: 100%;
    height: 4px;
    background: rgba(0, 0, 0, 0.04);
    overflow: hidden;
    margin-top: 20px;
}

.instock__progressbar__inner {
    width: 10%;
    height: 100%;
    background: var(--dark);
    opacity: .08;
    border-radius: inherit;
    transition: width 0.25s ease;
}

.instock__card__img__nav {
    width: 100%;
}

.instock__card__img__nav .swiper-pagination-bullet {
    flex: 1;
    height: 2px;
    margin: 0 !important;
    border-radius: 999px;
    background: var(--black);
    opacity: 0.08;
}

.instock__card__img__nav .swiper-pagination-bullet-active {
    opacity: .2;
}

.swiper {
    width: 100%;
}

.instock .arrow.prev {
    left: -44px;
}

.instock .arrow:hover svg g {
    opacity: .5;
}

.instock .arrow.next {
    right: -44px;
}

.instock .arrow.swiper-button-disabled {
    cursor: default;
    opacity: .5;
}

.instock .arrow.swiper-button-disabled:hover svg g {
    opacity: .12;
}

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

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

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

.header__btn .btn {
    background: var(--blue);
    font-size: 14px;
    gap: 6px;
    padding: 10px 14px;
    font-weight: 400;
    text-transform: math-auto;
    border-radius: 3px;
}

.header__btn .btn svg {
    width: 14px;
    height: 14px;
}

a.brand__logo img {
    max-height: 34px;
    max-width: 150px;
}

.call__wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
}


.call__wrapper .phone span{
   color: var(--blue);
    text-decoration: underline;
}


.contact__list__item__content a{
   color: var(--blue);
    text-decoration: underline;
}


.address, a.phone {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: var(--dark);
    font-weight: 500;
}

.address svg, a.phone svg {
    width: 16px;
    height: 16px;
}

.address svg path, a.phone svg path {
    fill: var(--dark);
}

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

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

.header__btn .btn:hover {
    background: var(--grey);
    color: var(--dark);
}

nav.main ul li a:hover {
    background: var(--grey);
}

.header__btn .btn:hover svg path {
    fill: var(--dark);
}

a.brand__logo img:nth-child(1) {
    margin-bottom: 3px;
}

.hero__slide__info {
    display: flex;
    position: absolute;
    left: calc((100vw - var(--container))/2);
    flex-direction: column;
    align-items: flex-start;
    max-width: 600px;
    gap: 24px;
}

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

h2.hero__slider__title {
    font-size: 44px;
    font-weight: 500;
}

.hero__slider__text {
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 24px;
}

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

.benefits__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    width: 100%;
}

.benefits__item {
    display: flex;
    align-items: center;
    gap: 12px;
}

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

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

span.large {
    font-size: 20px;
    font-weight: 500;
}

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

.fos__info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.fos__info svg {
    width: 42px;
    height: 42px;
}

.fos__info p {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    max-width: calc(100% - 54px);
}

span.fos__title {
    font-size: 32px;
    font-weight: 600;
    width: 100%;
}

span.fos__text {
    font-size: 18px;
    line-height: 1;
    font-weight: 500;
}

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

h2.section__title span {
    color: var(--blue);
}

section.model h2.section__title {
    font-weight: 600;
    font-size: 54px;
}

section.model .container {
    gap: 24px;
}

.model__wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 32px;
    align-items: center;
}

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

p.adv__item {
    border: 1px solid var(--dark-grey);
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 24px;
    line-height: 1;
}

.model__slider {
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;
}

.model__slider .swiper-slide {
    display: flex;
    width: 100%;
    max-height: 720px;
    height: 100%;
    overflow: hidden;
    align-items: center;
    border-radius: 20px;
    cursor: grab;
}

.model__slider .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.model__slider__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 20px;
}

.model__info {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.model__info__item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1;
}

span.param {
    font-size: 12px;
}

span.value {
    font-size: 32px;
    font-weight: 600;
    color: #363636b3;
}

.model__wrapper .btn {
    padding: 14px 40px;
}

section.instock h2.section__title {
    font-size: 32px;
}

section.model {
    margin-bottom: 60px;
}

.instock__card__img .swiper img {
    border-radius: 8px;
    height: 190px;
    object-fit: cover;
    width: 100%;
}

section.instock .container {
    gap: 24px;
}

section.choose .section__header {
    flex-direction: column;
    align-items: center;
    text-align: center;
}

p.section__description {
    max-width: 720px;
    font-size: 20px;
}

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

.choose__item {
    display: flex;
    flex-direction: column;
}

p.name {
    font-size: 24px;
    font-weight: 500;
    margin: 12px 0 6px;
    line-height: 1;
}

p.status {
    font-size: 14px;
    line-height: 1;
    opacity: .7;
}

.choose__item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
}

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

.section__content {
    width: 100%;
}

.variants__item {
    display: flex;
    flex-direction: column;
    gap: 26px;
    padding: 40px;
    border-radius: 12px;
    color: var(--white);
    justify-content: space-between;
}

.variants__item:nth-child(1) {
    background: url(../img/variants1.jpg) no-repeat center;
    background-size: cover;
}

.variants__item:nth-child(2) {
    background: url(../img/variants2.jpg) no-repeat center;
    background-size: cover;
}

.variants__item:nth-child(3) {
    background: url(../img/variants3.jpg) no-repeat center left;
    background-size: cover;
}

.variants__info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

p.variants__title {
    font-size: 24px;
    font-weight: 600;
    text-transform: uppercase;
}

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

.variants__text ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    line-height: 1.2;
    font-size: 14px;
    list-style: circle;
    padding-left: 20px;
}

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

form.variants__form input.fos__input {
    height: 42px;
    padding: 8px 14px;
}

form.variants__form .fos__checkbox {
    color: var(--grey);
}

form.variants__form .fos__checkbox input {
    border-color: var(--grey);
}

form.variants__form .fos__checkbox {
    align-items: flex-start;
}

form.variants__form button.fos__btn {
    background: var(--grey);
    color: var(--dark);
}

form.variants__form button.fos__btn:hover {
    background: var(--dark);
    color: var(--white);
}

form.variants__form .fos__checkbox input:checked {
    background: url(../img/check-white.svg) no-repeat center center;
}

.special__wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    border: 1px solid var(--dark-grey);
    border-radius: 32px;
    padding: 40px;
    text-align: center;
}

.special__wrapper h2.section__title {
    font-size: 32px;
    text-transform: uppercase;
    font-weight: 600;
    max-width: 600px;
}

.special__items {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px 40px;
}

.special__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 320px;
    padding: 20px;
    background: var(--grey);
    border-radius: 10px;
    gap: 10px;
    border: 1px solid var(--dark-grey);
}

p.special__item__title {
    font-size: 20px;
    line-height: 1.2;
    font-weight: 500;
}

.special__item:nth-child(3) svg path,
.special__item:nth-child(4) svg path,
.special__item:nth-child(5) svg path {
    stroke: var(--dark);
    fill: transparent;
}

.special__item:nth-child(1) svg path,
.special__item:nth-child(2) svg path,
.special__item:nth-child(3) svg path {
    fill: var(--dark);
}

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

.special__wrapper .btn:hover {
    color: var(--dark);
    background: var(
    --dark-grey);
}
.location{
    display: none;
}
.location__wrapper {
    display: flex;
    gap: 20px;
    width: 100%;
}

.location__code {
    width: 300px;
    padding: 32px;
    background: var(--grey);
    border: 1px solid var(--dark-grey);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 455px;
}

img.location__media {
    max-width: calc(100% - 320px);
    height: 455px;
    width: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.location__code img {
    padding: 20px;
    background: var(--white);
    border-radius: 8px;
    transition: all .25s ease;
}

p.location__title {
    text-align: center;
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.2;
}

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

.timing p {
    font-size: 14px;
    text-transform: uppercase;
}

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

.location__code img:hover {
    transform: scale(1.05);
}

.team__wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.swiper-slide.team__item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    cursor: grab;
}

p.team__item__name {
    line-height: 1;
    font-size: 24px;
    font-weight: 500;
    margin: 10px 0 0;
}

p.team__item__status {
    font-size: 14px;
    line-height: 1;
    opacity: .75;
}

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

.team__photo {
    display: flex;
    align-items: flex-start;
    height: 280px;
    overflow: hidden;
    border-radius: 10px;
    width: 100%;
}

span.swiper-pagination-bullet {
    border-radius: 2px;
    width: 24px;
    height: 3px;
    background: var(--dark);
    margin: 0 !important;
}

.swiper-pagination-horizontal {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.avilon__grid {
    max-width: 780px;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.avilon__wrapper {
    display: flex;
    justify-content: center;
}

.avilon__item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    background: var(--grey);
    border-radius: 10px;
    font-size: 14px;
    border: 1px solid var(--dark-grey);
}

.personal__wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    max-width: 780px;
    width: 100%;
    border: 1px solid var(--dark-grey);
    border-radius: 20px;
    overflow: hidden;
}

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

form.personal__form {
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

p.avilon__form__title {
    font-size: 22px;
    line-height: 1.2;
    font-weight: 500;
    margin-bottom: 10px;
}

form.personal__form input.fos__input {
    border: 1px solid var(--dark-grey);
}

form.personal__form button.fos__btn {
    margin-top: 10px;
}

.modal {
    position: fixed;
    transform: translateY(-100%);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: all .5s ease;
    z-index: 99;
}

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

.map__wrapper {
    width: 100%;
    display: flex;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.map__info {
    position: absolute;
    max-width: 400px;
    width: 100%;
    padding: 20px;
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--dark-grey);
    display: flex;
    flex-direction: column;
    gap: 20px;
    top: 32px;
    left: calc((100% - var(--container))/2);
}

.map__info img {
    height: 200px;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
}

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

p.place__name {
    font-size: 24px;
    font-weight: 500;
}

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

.contact__list__item__content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
}

.contact__list__item__content .row {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
}

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

.contact__list__item__content .row:last-child:hover svg path {
    fill: var(--blue);
}

div#map {
    height: 600px;
    width: 100%;
}

section.contacts {
    margin: 0 0 40px 0;
}

footer {
    background: var(--dark-grey);
    border-radius: 20px 20px 0 0;
    display: flex;
    justify-content: center;
    padding: 80px 0 40px 0;
    position: relative;
    align-items: center;
}

footer .container {
    flex-direction: row;
    align-items: flex-start;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer__info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    font-size: 12px;
}

.footer__logos {
    display: flex;
    align-items: flex-end;
    gap: 10px;
}

.footer__logos img {
    max-width: 120px;
    max-height: 32px;
}

.footer__logos a:first-child img {
    margin-bottom: 3px;
}

nav.footer__nav ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 12px;
}

nav.footer__nav ul li a {
    line-height: 1;
}

nav.footer__nav ul li a:hover {
    color: var(--blue);
}

footer .social {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 30px;
    background: var(--white);
    border-radius: 0 0 10px 10px;
    gap: 32px;
}

footer .social a svg path {
    fill: var(--dark-grey);
}

.model__slider__nav {
    position: absolute;
    bottom: 24px !important;
    z-index: 9;
}

.model__slider__nav span.swiper-pagination-bullet {
    background: var(--white);
    width: 32px;
}

main {
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

.modal.active {
    transform: translateY(0);
}

.modal.modal__nav {
    background: var(--grey);
}

.modal__nav__wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 80px 20px 20px;
}

nav.modal__nav__menu ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

nav.modal__nav__menu ul li a {
    font-size: 16px;
    text-transform: uppercase;
}

.modal__nav__control {
    display: flex;
    flex-direction: column;
    gap: 32px;
    width: 100%;
    align-items: center;
}

.modal__nav__control .btn {
    width: 100%;
}

.modal__nav__control .social a svg path {
    fill: var(--dark);
}

.modal__nav__control .social {
    gap: 32px;
}

.burger.active span.line:nth-child(2) {
    opacity: 0;
}

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

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

.consent__content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
}

.consent__content a {
    border-bottom: 1px solid;
}

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

h1.section__title {
    font-size: 2.5em;
    font-weight: 400;
}

a.consent__link {
    font-size: 14px;
    line-height: 1;
    opacity: .8;
    border-bottom: 1px solid;
}

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

.consent__content ul, .consent__content ol {
    padding: 10px 0 10px 20px;
    list-style: initial;
}

hr {
    width: 100%;
    background: #ebebeb !important;
    color: #ebebeb !important;
}

.form-message.success {
    margin-top: 10px;
    color: green;
}

.form-message.error {
    color: red;
    margin-top: 10px;
    font-size: 14px;
}

form.variants__form .form-message {
    color: #fff;
}