@charset "UTF-8";

* {
	padding: 0px;
	margin: 0px;
	border: none;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

/* Ссылки */
a,
a:link,
a:visited {
	text-decoration: none;
}

a:hover {
	text-decoration: none;
}

/* Общий */
aside,
nav,
footer,
header,
section,
main {
	display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
	font-size: inherit;
	font-weight: inherit;
}

ul,
ul li {
	list-style: none;
}

img {
	vertical-align: top;
}

img,
svg {
	max-width: 100%;
	height: auto;
}

address {
	font-style: normal;
}

/* Форма */
input,
textarea,
button,
select {
	font-family: inherit;
	font-size: inherit;
	color: inherit;
	background-color: transparent;
}

input::-ms-clear {
	display: none;
}

button,
input[type=submit] {
	display: inline-block;
	box-shadow: none;
	background-color: transparent;
	background: none;
	cursor: pointer;
}

input:focus,
input:active,
button:focus,
button:active {
	outline: none;
}

button::-moz-focus-inner {
	padding: 0;
	border: 0;
}

label {
	cursor: pointer;
}

legend {
	display: block;
}

body {
	background-color: #F0F4F5;
	font-family: "Manrope", sans-serif;
}

html {
	scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
	html {
		scroll-behavior: auto;
	}
}

.no-scroll {
	overflow: hidden;
	position: fixed;
	width: 100%;
	height: 100%;
}

/* Для iOS */
@supports (-webkit-touch-callout: none) {
	body.no-scroll {
		position: fixed;
		width: 100%;
	}
}

.container {
	max-width: 1474px;
	padding: 0 15px;
	margin: 0 auto;
}

@media (max-width: 1024px) {
	.container {
		max-width: 1054px;
	}
}

@media (max-width: 768px) {
	.container {
		max-width: 100%;
	}
}

.container__mobile-menu {
	width: 100%;
	padding: 0 17px;
	text-align: right;
}

.icon,
.icon-menu {
	padding: 8.5px;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background-color: #FDDE8F;
	transition: all 0.2s ease;
	cursor: pointer;
}

.icon:hover,
.icon-menu:hover {
	background-color: #fbc63e;
}

.icon:active,
.icon-menu:active {
	background-color: #fcd675;
}

.icon-menu {
	padding: 13.5px;
}

.icon-gallery {
	padding: 14px 20px;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background-color: #FDDE8F;
	transition: all 0.2s ease;
}

.icon-gallery:hover {
	background-color: #fbc63e;
}

.icon-gallery:active {
	background-color: #fcd675;
}

.header {
	background-image: image-set(url("../image/header/header-img.jpg") 1x, url("./../image/header/header-img@2x.jpg") 2x);
	background-size: cover;
	background-repeat: no-repeat;
}

@media (max-width: 1024px) {
	.header {
		background-position: -460px;
	}
}

@media (max-width: 768px) {
	.header {
		background-position: 0px;
		background-image: url("../image/header/header-img-mob.jpg");
	}
}

.header__nav {
	padding-top: 42px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

@media (max-width: 768px) {
	.nav__logo {
		width: 203px;
	}
}

.nav__navlist {
	display: flex;
	gap: 55px;
	font-weight: 500;
	font-size: 18px;
	line-height: 1.3;
}

.nav__navlist a {
	color: #FFFFFF;
	position: relative;
	display: inline-block;
}

.nav__navlist li {
	position: relative;
}

.nav__navlist li a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -5px;
	width: 0;
	height: 1px;
	border-radius: 5px;
	background-color: #FFFFFF;
	transition: width 0.2s ease;
}

.nav__navlist li a:hover::after {
	width: 100%;
}

@media (max-width: 1024px) {
	.nav__navlist {
		gap: 30px;
	}
}

@media (max-width: 768px) {
	.nav__navlist {
		display: none;
	}
}

.nav__btn-menu {
	display: none;
}

@media (max-width: 768px) {
	.nav__btn-menu {
		display: block;
	}
}

.header__contacts,
.footer__contacts {
	margin-top: 38px;
	display: flex;
	gap: 62px;
}

@media (max-width: 768px) {
	.header__contacts {
		display: none;
	}
}

.contacts__item {
	display: flex;
	align-items: center;
	gap: 18px;
	line-height: 1.3;
}

.contacts__item h4 {
	font-weight: 400;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.8);
}

.contacts__item p {
	font-weight: 500;
	font-size: 20px;
	color: #FFFFFF;
}

@media (max-width: 1024px) {
	.contacts__item p {
		font-size: 16px;
	}
}

.header__content {
	margin-top: 240px;
	padding-bottom: 147px;
	display: flex;
	justify-content: space-between;
}

@media (max-width: 768px) {
	.header__content {
		margin-top: 170px;
		padding-bottom: 73px;
	}
}

.content__text {
	color: #FFFFFF;
	line-height: 1.3;
}

.content__text h2 {
	font-weight: 600;
	font-size: 25px;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.content__text h1,
.content__text h3 {
	margin-top: 12px;
	font-family: "Unbounded", sans-serif;
	font-weight: 700;
	font-size: 70px;
	text-transform: uppercase;
}

.content__text h3 {
	font-weight: 400;
}

.content__text h4 {
	margin-top: 22px;
	font-weight: 500;
	font-size: 22px;
}

@media (max-width: 768px) {
	.content__text h2 {
		font-size: 14px;
	}

	.content__text h1,
	.content__text h3 {
		margin-top: 10px;
		font-size: 47px;
	}

	.content__text h4 {
		margin-top: 20px;
		font-size: 13px;
	}
}

.content__btn {
	display: block;
	width: fit-content;
	margin-top: 38px;
	border-radius: 14px;
	padding: 22px 26px;
	background: #FDDE8F;
	font-weight: 500;
	font-size: 22px;
	line-height: 1.2;
	color: #383838;
	transition: all 0.2s ease-in;
}

.content__btn:hover {
	background: #fbc63e;
}

.content__btn:active {
	background-color: #fcd675;
}

@media (max-width: 768px) {
	.content__btn {
		padding: 16px 26px;
		border-radius: 10px;
		margin-top: 67px;
		width: 100%;
		font-size: 15px;
		font-weight: 600;
	}
}

.content__socials,
.footer__socials {
	display: flex;
	gap: 15px;
	align-items: flex-end;
	transition: all 0.2s ease-in;
}

@media (max-width: 768px) {
	.content__socials {
		display: none;
	}
}

.about {
	scroll-margin-top: 60px;
	margin-top: 186px;
}

@media (max-width: 1024px) {
	.about {
		scroll-margin-top: 40px;
	}
}

@media (max-width: 768px) {
	.about {
		scroll-margin-top: 30px;
	}
}

@media (max-width: 768px) {
	.about {
		margin-top: 80px;
	}
}

.about__top-row {
	display: flex;
	gap: 44px;
}

@media (max-width: 1024px) {
	.about__top-row {
		flex-direction: column-reverse;
	}
}

@media (max-width: 768px) {
	.about__top-row {
		gap: 22px;
	}
}

.about__images {
	display: flex;
	gap: 15px;
	align-items: flex-end;
}

.about__images img {
	border-radius: 16px;
}

@media (max-width: 768px) {
	.about__images img {
		border-radius: 10px;
	}
}

@media (max-width: 768px) {
	.about__images {
		gap: 7px;
	}
}

.about__images--top {
	flex: 0 1 48%;
	flex-wrap: wrap;
}

.about__image-small {
	object-fit: cover;
	width: 328px;
	height: 328px;
}

@media (max-width: 768px) {
	.about__image-small {
		width: 166px;
		height: 166px;
	}
}

.about__content {
	display: flex;
	flex-direction: column;
	gap: 22px;
	flex: 47%;
}

.about__title {
	font-family: "Unbounded", sans-serif;
	font-weight: 700;
	font-size: 55px;
	line-height: 1.2;
	color: #191D1F;
}

@media (max-width: 768px) {
	.about__title {
		font-size: 24px;
	}
}

.about__slogan {
	padding: 12px 25px;
	font-size: 18px;
	line-height: 1.3;
	color: rgba(0, 0, 0, 0.6);
	border-left: 3px solid #FDDE8F;
}

@media (max-width: 768px) {
	.about__slogan {
		padding: 5px 12px;
		font-size: 13px;
	}
}

.about__text {
	font-size: 22px;
	line-height: 1.3;
	color: #000;
	opacity: 0.8;
}

.about__text p+p {
	margin-top: 10px;
}

@media (max-width: 768px) {
	.about__text {
		font-size: 13px;
		line-height: 1.4;
	}
}

.about__bottom-row {
	margin-top: 46px;
	display: flex;
	gap: 44px;
	align-items: center;
}

@media (max-width: 1024px) {
	.about__bottom-row {
		flex-direction: column;
	}
}

@media (max-width: 768px) {
	.about__bottom-row {
		margin-top: 40px;
		gap: 22px;
	}
}

.about__image-bottom {
	object-fit: cover;
	width: 700px;
}

.included {
	scroll-margin-top: 60px;
	margin-top: 186px;
}

@media (max-width: 1024px) {
	.included {
		scroll-margin-top: 40px;
	}
}

@media (max-width: 768px) {
	.included {
		scroll-margin-top: 30px;
	}
}

@media (max-width: 768px) {
	.included {
		margin-top: 80px;
	}
}

.included__title {
	font-family: "Unbounded", sans-serif;
	font-weight: 700;
	font-size: 55px;
	line-height: 1.2;
	color: #191D1F;
	text-align: center;
}

@media (max-width: 768px) {
	.included__title {
		font-size: 24px;
		line-height: 1.24062;
		text-align: left;
	}
}

.included__wrap {
	margin-top: 79px;
	display: flex;
	gap: 44px;
	align-items: stretch;
}

@media (max-width: 768px) {
	.included__wrap {
		flex-direction: column;
		margin-top: 40px;
		gap: 22px;
	}
}

.included__col {
	display: flex;
	flex-direction: column;
	gap: 52px;
	flex: 1;
}

@media (max-width: 768px) {
	.included__col {
		gap: 22px;
	}
}

@media (max-width: 1024px) {
	.included__col--img {
		display: none;
	}
}

.included__col-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 16px;
}

.included__item {
	padding: 25px 35px 40px;
	border-radius: 16px;
	box-shadow: 0 7px 5px 0 rgba(136, 148, 154, 0.06), 0 12px 10px 0 rgba(136, 148, 154, 0.05), 0 1px 4px 0 rgba(116, 124, 127, 0.35);
	background: #FFFFFF;
	text-align: center;
}

@media (max-width: 1024px) {
	.included__item {
		padding: 25px 25px;
		height: 280px;
	}
}

@media (max-width: 768px) {
	.included__item {
		padding: 22px 30px;
		height: auto;
		border-radius: 10px;
	}
}

.included__item-desc h3 {
	margin-top: 28px;
	font-weight: 500;
	font-size: 22px;
	line-height: 1.3;
	color: #191D1F;
}

.included__item-desc p {
	margin-top: 10px;
	font-size: 18px;
	line-height: 1.3;
	color: rgba(0, 0, 0, 0.6);
}

@media (max-width: 768px) {
	.included__item-desc {
		line-height: 1.4;
	}

	.included__item-desc h3 {
		margin-top: 16px;
		font-size: 17px;
	}

	.included__item-desc p {
		font-size: 13px;
	}
}

.price {
	scroll-margin-top: 60px;
	margin-top: 186px;
}

@media (max-width: 1024px) {
	.price {
		scroll-margin-top: 40px;
	}
}

@media (max-width: 768px) {
	.price {
		scroll-margin-top: 30px;
	}
}

@media (max-width: 768px) {
	.price {
		margin-top: 80px;
	}
}

.price__wrap {
	display: flex;
	gap: 44px;
}

@media (max-width: 768px) {
	.price__wrap {
		flex-direction: column;
		gap: 40px;
	}
}

.price__list {
	padding: 46px 46px 46px 80px;
	display: flex;
	flex-direction: column;
	gap: 32px;
	flex: 64%;
	justify-content: space-between;
}

@media (max-width: 1024px) {
	.price__list {
		padding: 40px;
	}
}

@media (max-width: 768px) {
	.price__list {
		padding: 24px 12px 24px 16px;
	}
}

.price__list,
.price__promotions {
	border-radius: 16px;
	box-shadow: 0 7px 5px 0 rgba(136, 148, 154, 0.06), 0 12px 10px 0 rgba(136, 148, 154, 0.05), 0 1px 4px 0 rgba(116, 124, 127, 0.35);
	background: #FFFFFF;
}

@media (max-width: 768px) {

	.price__list,
	.price__promotions {
		border-radius: 10px;
	}
}

.price__title {
	margin-bottom: 22px;
	font-family: "Unbounded", sans-serif;
	font-weight: 700;
	font-size: 55px;
	line-height: 1.2;
	color: #191D1F;
}

@media (max-width: 768px) {
	.price__title {
		margin-bottom: 10px;
		font-size: 24px;
		line-height: 1.24062;
	}
}

.list-content__row-wrap {
	margin-bottom: 16px;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

@media (max-width: 768px) {
	.list-content__row-wrap {
		gap: 6px;
		margin-bottom: 12px;
	}
}

.list-content__row {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 10px;
}

.list-content__price {
	font-weight: 700;
	font-size: 22px;
	line-height: 1.36668;
	color: #000000;
}

.list-content__price span {
	font-weight: 400;
	line-height: 1.3;
}

@media (max-width: 768px) {
	.list-content__price {
		font-size: 13px;
		line-height: 1.4;
	}
}

.list-content__stripe {
	height: 1px;
	flex: 1;
	border: 1px solid rgba(84, 84, 84, 0.15);
}

.list-content__people {
	display: flex;
	align-items: center;
	gap: 11px;
	font-size: 22px;
	line-height: 1.3;
	color: #000000;
}

@media (max-width: 768px) {
	.list-content__people img {
		height: 18px;
	}
}

@media (max-width: 768px) {
	.list-content__people {
		font-size: 13px;
		line-height: 1.4;
	}
}

.price__label {
	font-size: 22px;
	line-height: 1.3;
	color: rgba(0, 0, 0, 0.6);
}

@media (max-width: 768px) {
	.price__label {
		font-size: 13px;
		line-height: 1.4;
	}
}

.price__text {
	font-size: 22px;
	line-height: 1.3;
	color: #000000;
}

.price__text p+p {
	margin-top: 22px;
}

@media (max-width: 768px) {
	.price__text p+p {
		margin-top: 10px;
	}
}

@media (max-width: 768px) {
	.price__text {
		font-size: 13px;
		line-height: 1.4;
	}
}

.price__promotions {
	padding: 40px 22px 40px 40px;
	flex: 45%;
}

@media (max-width: 768px) {
	.price__promotions {
		padding: 24px 22px 24px 16px;
	}
}

.promotions-content__wrap {
	display: flex;
	flex-direction: column;
	gap: 89px;
}

.services {
	margin-top: 186px;
}

@media (max-width: 768px) {
	.services {
		margin-top: 80px;
	}
}

.services__wrap {
	padding: 82px 0px;
	border-radius: 16px;
	box-shadow: 0 7px 5px 0 rgba(136, 148, 154, 0.06), 0 12px 10px 0 rgba(136, 148, 154, 0.05), 0 1px 4px 0 rgba(116, 124, 127, 0.35);
	background: #FFFFFF;
}

@media (max-width: 768px) {
	.services__wrap {
		padding: 38.5px 21px;
		border-radius: 10px;
	}
}

.services__title {
	font-family: "Unbounded", sans-serif;
	font-weight: 700;
	font-size: 55px;
	line-height: 1.2;
	text-align: center;
	color: #191D1F;
}

@media (max-width: 768px) {
	.services__title {
		font-size: 24px;
	}
}

.services__table {
	margin-top: 78px;
	display: flex;
	flex-direction: column;
	gap: 22px;
	font-size: 22px;
	line-height: 1.3;
	color: rgba(0, 0, 0, 0.6);
}

@media (max-width: 768px) {
	.services__table {
		margin-top: 34px;
		font-size: 13px;
	}
}

.table__row {
	padding: 0px 350px 22px 350px;
	display: flex;
	justify-content: space-between;
	border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.table__row:last-child {
	border-bottom: none;
}

@media (max-width: 1024px) {
	.table__row {
		padding: 0px 160px 22px 160px;
	}
}

@media (max-width: 768px) {
	.table__row {
		padding: 0px 0px 18px 0px;
	}
}

.table__row--head {
	font-weight: 500;
	color: #000000;
}

@media (max-width: 768px) {
	.table__row--head {
		padding: 0px 0px 22px 0px;
		line-height: 1.3;
	}
}

.gallery {
	scroll-margin-top: 60px;
	margin-top: 186px;
	width: 100%;
	overflow: hidden;
}

@media (max-width: 1024px) {
	.gallery {
		scroll-margin-top: 40px;
	}
}

@media (max-width: 768px) {
	.gallery {
		scroll-margin-top: 30px;
	}
}

@media (max-width: 768px) {
	.gallery {
		margin-top: 80px;
	}
}

.gallery__title {
	font-family: "Unbounded", sans-serif;
	font-weight: 700;
	font-size: 55px;
	line-height: 1.2;
	color: #191D1F;
	text-align: center;
}

@media (max-width: 768px) {
	.gallery__title {
		font-size: 24px;
	}
}

.slider__container {
	width: 100%;
	transition: transform 0.5s ease-in-out;
}

.slider__track {
	margin-top: 80px;
	display: flex;
	align-items: center;
	gap: 20px;
	transform: translateX(calc(-33.333% - 10px));
}

@media (max-width: 768px) {
	.slider__track {
		margin-left: 15px;
		margin-top: 40px;
		gap: 10px;
		transform: translateX(-15px);
	}
}

.slider__item {
	flex: 0 0 566px;
	height: 589px;
	/* Добавьте это */
	box-sizing: border-box;
	transition: transform 0.3s ease, opacity 0.3s ease;
	/* Добавьте height в transition */
	opacity: 0.7;
}

@media (max-width: 768px) {
	.slider__item {
		flex: 0 0 calc(100% - 30px);
		height: 302px;
		/* Для мобильной версии оставьте как было */
	}
}

.slider__item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 16px;
}

@media (max-width: 768px) {
	.slider__item img {
		border-radius: 10px;
	}
}

.slider__item.active {
	height: 680px;
	/* Активный слайд будет выше */
	flex: 0 0 700px;
	opacity: 1;
	z-index: 1;
}

@media (max-width: 768px) {
	.slider__item.active {
		flex: 0 0 calc(100% - 20px);
		height: 302px;
	}
}

.slider__buttons {
	margin-top: 26px;
	display: flex;
	justify-content: center;
	gap: 18px;
}

.contacts {
	margin-top: 186px;
	scroll-margin-top: 60px;
	margin-top: 186px;
	width: 100%;
	overflow: hidden;
}

@media (max-width: 1024px) {
	.contacts {
		scroll-margin-top: 40px;
	}
}

@media (max-width: 768px) {
	.contacts {
		scroll-margin-top: 30px;
	}
}

@media (max-width: 768px) {
	.contacts {
		margin-top: 80px;
	}
}

.contacts__wrap {
	display: flex;
	gap: 44px;
	overflow: hidden;
	padding: 50px;
	margin: -50px -50px 0px;
}

@media (max-width: 768px) {
	.contacts__wrap {
		flex-direction: column;
		gap: 14px;
	}
}

.contacts__content {
	flex: 50%;
	padding: 50px 0px 50px 30px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 60px;
	border-radius: 16px;
	box-shadow: 0 7px 5px 0 rgba(136, 148, 154, 0.06), 0 12px 10px 0 rgba(136, 148, 154, 0.05), 0 1px 4px 0 rgba(116, 124, 127, 0.35);
	background: #FFFFFF;
}

@media (max-width: 1024px) {
	.contacts__content {
		padding: 50px 0px 50px 15px;
		gap: 11px;
	}
}

@media (max-width: 768px) {
	.contacts__content {
		padding: 24px 16px 24px 16px;
		gap: 17px;
		border-radius: 10px;
	}
}

.contacts__content-text {
	display: flex;
	flex-direction: column;
	gap: 22px;
}

.contacts__content-text h2 {
	font-family: "Unbounded", sans-serif;
	font-weight: 700;
	font-size: 55px;
	line-height: 1.2;
	color: #191D1F;
}

.contacts__content-text p {
	font-size: 22px;
	line-height: 1.3;
	color: #000000;
}

@media (max-width: 1024px) {
	.contacts__content-text {
		gap: 11px;
	}
}

@media (max-width: 768px) {
	.contacts__content-text {
		gap: 10px;
		padding-right: 35px;
	}

	.contacts__content-text h2 {
		font-size: 24px;
		line-height: 1.24062;
	}

	.contacts__content-text p {
		font-size: 13px;
		line-height: 1.4;
	}
}

.contacts__content-btns {
	display: flex;
	gap: 25px;
}

@media (max-width: 768px) {
	.contacts__content-btns {
		flex-direction: row-reverse;
		justify-content: flex-end;
		gap: 7px;
	}

	.contacts__content-btns a img {
		border-radius: 10px;
		width: 44px;
		height: 44px;
	}
}

.content-btns__icons {
	display: flex;
	gap: 12px;
}

@media (max-width: 768px) {
	.content-btns__icons {
		gap: 7px;
	}
}

.contacts-btn {
	padding: 13px 35px;
	display: flex;
	gap: 10px;
	align-items: center;
	font-weight: 500;
	font-size: 20px;
	line-height: 1.3;
	color: #383838;
	border-radius: 14px;
	background: #FDDE8F;
	transition: all 0.2s ease-in;
}

.contacts-btn:hover {
	background: #fbc63e;
}

.contacts-btn:active {
	background-color: #fcd675;
}

@media (max-width: 1024px) {
	.contacts-btn {
		padding: 12px;
	}
}

@media (max-width: 768px) {
	.contacts-btn {
		font-size: 13px;
		padding: 13.5px 14px;
		gap: 7px;
		border-radius: 10px;
	}

	.contacts-btn img {
		display: none;
	}
}

.contacts__map {
	flex: 50%;
	border-radius: 16px;
	box-shadow: 0 7px 5px 0 rgba(136, 148, 154, 0.06), 0 12px 10px 0 rgba(136, 148, 154, 0.05), 0 1px 4px 0 rgba(116, 124, 127, 0.35);
}

.contacts__map iframe {
	border-radius: 16px;
}

@media (max-width: 768px) {
	.contacts__map {
		min-height: 193px;
		border-radius: 10px;
	}

	.contacts__map iframe {
		min-height: 193px;
		border-radius: 10px;
	}
}

.footer {
	margin-top: 136px;
	background: #383838;
}

@media (max-width: 768px) {
	.footer {
		margin-top: 30px;
	}
}

.footer__top {
	padding: 44px 0 50px;
	display: flex;
	justify-content: space-between;
}

@media (max-width: 1024px) {
	.footer__top {
		padding: 34px 0 34px;
		gap: 20px;
		flex-direction: column;
	}
}

@media (max-width: 768px) {
	.footer__top {
		padding: 32px 0 34px;
		gap: 30px;
	}
}

.footer__contacts {
	margin-top: 0;
}

@media (max-width: 768px) {
	.footer__contacts {
		flex-direction: column;
		gap: 22px;
	}
}

@media (max-width: 768px) {
	.contacts__item {
		font-size: 13px;
	}

	.contacts__item img {
		display: none;
	}

	.contacts__item h4 {
		font-weight: 400;
		line-height: 1.4;
		color: rgba(255, 255, 255, 0.8);
	}

	.contacts__item p {
		font-weight: 500;
		line-height: 1.3;
	}
}

.footer__line {
	height: 1px;
	background: #FFFFFF;
	opacity: 0.6;
}

.footer__bottom {
	padding: 48px 0 53px;
	display: flex;
	justify-content: space-between;
	font-size: 14px;
	line-height: 1.3;
	color: rgba(255, 255, 255, 0.6);
}

.footer__bottom a {
	color: rgba(255, 255, 255, 0.6);
	transition: all 0.2s ease-in;
}

.footer__bottom a:hover {
	color: #fbc63e;
}

.footer__bottom a:active {
	color: #fcd675;
}

@media (max-width: 1024px) {
	.footer__bottom {
		padding: 20px 0 20px;
		font-size: 12px;
	}
}

@media (max-width: 768px) {
	.footer__bottom {
		padding: 34px 0 62px;
		font-size: 12px;
		flex-direction: column;
		gap: 14px;
		font-size: 10px;
	}
}

.mobile-menu {
	display: none;
	position: fixed;
	top: 0;
	left: 24%;
	width: 76%;
	height: 100vh;
	z-index: 1000;
	background-color: #383838;
	overflow-y: auto;
	padding: env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.mobile-menu__btn {
	padding-top: 45px;
}

.mobile-menu__nav {
	margin-top: 42px;
}

.mobile-menu__navlist {
	display: flex;
	flex-direction: column;
	gap: 26px;
	font-weight: 500;
	font-size: 27px;
	line-height: 1.11111;
}

.mobile-menu__navlist a {
	color: #FFFFFF;
}

.mobile-menu__navlist a:hover,
.mobile-menu__navlist a:active {
	color: #d6ab3d;
}

.mobile-menu__line {
	margin: 42px 0;
	width: 100%;
	height: 1px;
	background-color: #FFFFFF;
	opacity: 0.2;
}

.mobile-menu__contacts {
	display: flex;
	flex-direction: column;
	gap: 22px;
}

.mobile-menu__contacts-item {
	display: flex;
	flex-direction: column;
	gap: 3px;
	font-weight: 400;
	font-size: 13px;
	line-height: 1.36668;
}

.mobile-menu__contacts-item h4 {
	color: rgba(255, 255, 255, 0.8);
}

.mobile-menu__contacts-item p,
.mobile-menu__contacts-item a {
	font-weight: 500;
	color: #FFFFFF;
}

.mobile-menu__socials {
	margin-top: 32px;
	display: flex;
	gap: 15px;
	justify-content: right;
}

.mobile-menu-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.4);
	opacity: 0;
	visibility: hidden;
	z-index: 999;
}

.mobile-menu-overlay.active {
	opacity: 1;
	visibility: visible;
}