@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap");

:root {
	--black-1: #000000;
	--black-2: #12141c;
	--white: #ffffff;
	--copper: #a97d70;
	--rich-copper: #bc6561;
	--dark-copper: #9b6d5e;
	--bright-copper: #dbb2a5;
	--grey: #a5a5a5;
	--sliver: #707582;
	--gold: #d7b880;
	--green: #094337;
	--light-green: #93ff96;
	--blue: #45576d;
}

.section {
	padding: 100px 0;
}

.container {
	width: 100%;
	max-width: 1480px;
	margin: 0 auto;
	padding: 0 30px;
}

.body-wrapper {
	position: relative;
	overflow-x: clip;
}

body {
	font-family: "Palatino Linotype";
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: 120%;
	background-color: var(--black-2);
	color: var(--white);
}

.text-90 {
	font-size: 90px;
	line-height: 110%;
}

.text-60 {
	font-size: 60px;
	line-height: 110%;
}

.text-40 {
	font-size: 40px;
	line-height: 110%;
}

.text-35 {
	font-size: 35px;
	line-height: 110%;
}

.text-25 {
	font-size: 25px;
	line-height: 125%;
}

.text-18 {
	font-size: 18px;
	line-height: 120%;
}

.text-16 {
	font-size: 16px;
	line-height: 120%;
}

.grey-text {
	color: var(--grey);
}

.tt-uc {
	text-transform: uppercase;
}

.content p:not(:last-child) {
	margin-bottom: 1em;
}

.content ul {
	padding-left: 13px;
}

.content ul>li {
	list-style: "- ";
}

.content ul:not(:last-child) {
	margin-bottom: 1em;
}

.content h3 {
	font-size: 25px;
	line-height: 125%;
	margin-bottom: 1em;
}

.content>img {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	border-radius: 5px;
	overflow: hidden;
}

.content>img:not(:last-child) {
	margin-bottom: 20px;
}

.content>img:not(:first-child) {
	margin-top: 20px;
}

.btn {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	height: -webkit-fit-content;
	height: -moz-fit-content;
	height: fit-content;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	padding: 14px 38px;
	border-radius: 6px;
	border: 2px solid var(--rich-copper, #bc6561);
	background: rgba(0, 0, 0, 0.3);
	-webkit-backdrop-filter: blur(5px);
	backdrop-filter: blur(5px);
	cursor: pointer;
	white-space: nowrap;
	gap: 5px;
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
}

.btn_wide {
	width: 100%;
}

.btn_gradient {
	border-width: 1px;
	background: -webkit-gradient(linear, left bottom, left top, from(#c56c68), to(#12141c));
	background: linear-gradient(0deg, #c56c68 0%, #12141c 100%);
}

.btn_gradient:hover {
	background: transparent;
}

.checkbox {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 10px;
	font-family: "Nunito Sans";
}

.checkbox__checkmark {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	min-width: 20px;
	width: 20px;
	height: 20px;
	background-image: url(../img/icons/ckeck-empty.svg);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	cursor: pointer;
	-webkit-transform: translateY(2px);
	transform: translateY(2px);
}

.checkbox__input {
	display: none;
}

.checkbox__input:checked~.checkbox__checkmark {
	background-image: url(../img/icons/ckeck-fill.svg);
}

.checkbox__input:disabled~.checkbox__checkmark {
	opacity: 0.3;
	cursor: auto;
}

.checkbox__input:disabled~.checkbox__text {
	opacity: 0.3;
}

.select {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.select__btn {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 5px;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	padding: 5px;
	color: var(--grey);
	cursor: pointer;
	position: relative;
	z-index: 4;
}

.select__body {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 5px;
	border-radius: 10px;
	background: rgba(46, 39, 36, 0.8);
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	pointer-events: none;
	opacity: 0;
	padding: 5px;
	padding-top: 31px;
	z-index: 3;
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
}

.select__field {
	display: none;
}

.select__item {
	cursor: pointer;
}

.select__caret {
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
}

.select_open .select__body {
	pointer-events: all;
	opacity: 1;
}

.select_open .select__caret {
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
}

.read-more__text {
	overflow: hidden;
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
}

.read-more__btn {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	cursor: pointer;
	position: relative;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	font-family: "Nunito Sans";
	color: var(--bright-copper);
	margin-top: 10px;
}

.read-more__btn::after {
	display: block;
	content: "";
	width: 40px;
	height: 40px;
	background-image: url(../img/icons/read-more-caret.svg);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	margin-left: -5px;
}

.read-more_open .read-more__btn::after {
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
}

.header {
	padding: 30px 0;
	position: fixed;
	width: 100%;
	left: 0;
	top: 0;
	z-index: 11;
	background: -webkit-linear-gradient(180deg, rgb(0, 0, 0) 40%, transparent);
	background: -moz-linear-gradient(180deg, rgb(0, 0, 0) 40%, transparent);
	background: linear-gradient(180deg, rgb(0, 0, 0) 40%, transparent);
}

.header__wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	position: relative;
}

.header__panel {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	opacity: 0;
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
	background: rgba(18, 20, 28, 0.4);
	z-index: -1;
	pointer-events: none;
	padding-top: 106px;
}

/* .header__panel .header__btn {
	display: none;
} */
.header__panel-top {
	display: none;
}

.header__panel .header__contacts {
	display: none;
}

.header__panel-body {
	border-radius: 10px;
	border: 2px solid var(--rich-copper, #bc6561);
	background: rgba(0, 0, 0, 0.3);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	padding: 50px;
	width: 100%;
	max-width: 700px;
	margin-left: auto;
	-webkit-transform: translateY(-100px);
	transform: translateY(-100px);
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
	overflow-y: auto;
	height: 100%;
	max-height: calc(100vh - 120px);
}

.header__contacts {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 30px;
}

.header__contacts-link {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	position: relative;
	z-index: 1;
}

.header__contacts-link span {
	position: absolute;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	-webkit-filter: blur(1.5px);
	filter: blur(1.5px);
	z-index: -1;
}

.header__contacts-label {
	text-align: center;
}

.header__logo {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 217px;
	height: 56px;
}

.header__logo img {
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	object-fit: contain;
	-o-object-position: center;
	object-position: center;
}

.header__btn {
	color: var(--light-green);
	padding: 6px 58px 10px;
}

.header__body {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 10px;
}

.header__menu-btn {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding: 18px 10px;
	height: 60px;
	width: 64px;
	border-radius: 6px;
	border: 2px solid var(--rich-copper, #bc6561);
	cursor: pointer;
}

.header__menu-btn:hover .header__menu-icon::before {
	width: 100%;
}

.header__menu-icon {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	height: 100%;
	position: relative;
}

.header__menu-icon::before {
	display: block;
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 50%;
	height: 2px;
	background-color: var(--rich-copper);
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
}

.header__menu-icon span {
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 100%;
	height: 2px;
	background-color: var(--rich-copper);
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
}

.header__menu-icon::after {
	display: block;
	content: "";
	position: absolute;
	top: calc(100% - 2px);
	left: 0;
	width: 100%;
	height: 2px;
	background-color: var(--rich-copper);
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
}

.header_blur::after {
	display: block;
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: rgba(18, 20, 28, 0.3);
	-webkit-backdrop-filter: blur(17px);
	backdrop-filter: blur(17px);
	z-index: -1;
}

.header .nav__list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 30px;
}

.header-open {
	overflow: hidden;
	padding-right: 17px;
}

.header-open .header__panel {
	opacity: 1;
	pointer-events: all;
}

.header-open .header__panel-body {
	-webkit-transform: none;
	transform: none;
}

.header-open .header__menu-icon span {
	width: 0;
	opacity: 0;
}

.header-open .header__menu-icon::before {
	width: 80% !important;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%) rotate(-45deg);
	transform: translate(-50%, -50%) rotate(-45deg);
}

.header-open .header__menu-icon::after {
	width: 80%;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%) rotate(45deg);
	transform: translate(-50%, -50%) rotate(45deg);
}

.footer {
	padding-bottom: 130px;
}

.footer__wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 100%;
	max-width: 1020px;
	margin: 0 auto;
}

.footer__logo {
	height: 104px;
	width: 404px;
	max-width: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-bottom: 77px;
}

.footer__logo img {
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	object-fit: contain;
	-o-object-position: center;
	object-position: center;
}

.footer__contacts {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin-bottom: 77px;
}

.footer__contacts-item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 12px;
}

.footer__contacts-link {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
}

.footer__contacts-label {
	text-align: center;
	font-family: "Nunito Sans";
}

.footer__social {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	gap: 16px;
}

.footer__social-link {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 40px;
	height: 40px;
}

.footer__social-link svg {
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	object-fit: contain;
	-o-object-position: center;
	object-position: center;
}

.footer__bottom {
	width: 100%;
	max-width: 450px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 20px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	text-align: center;
	margin: 0 auto;
	margin-top: 56px;
}

.text-img {
	padding-top: 10px;
}

.text-img__wrapper {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 59fr 82fr;
	grid-template-columns: 59fr 82fr;
	gap: 10px;
	position: relative;
	z-index: 1;
}

.text-img__wrapper::after {
	display: block;
	content: "";
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background: var(--bg-color);
	-webkit-filter: blur(250px);
	filter: blur(250px);
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}

.text-img__item {
	margin-top: 70px;
}

.text-img__btn {
	margin-top: 20px;
}

.text-img__body {
	width: 100%;
}

.text-img__img {
	width: calc(100% + 160px);
	height: auto;
	margin-left: -160px;
}

.text-img__img img {
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	object-fit: contain;
	-o-object-position: center;
	object-position: center;
}

.text-img_reverse .text-img__wrapper {
	-ms-grid-columns: 82fr 59fr;
	grid-template-columns: 82fr 59fr;
}

.text-img_reverse .text-img__body {
	-webkit-box-ordinal-group: 0;
	-ms-flex-order: -1;
	order: -1;
}

.text-img_reverse .text-img__img {
	margin: 0;
	margin-right: -160px;
}

.agency__heading {
	margin-bottom: 30px;
	width: 100%;
	max-width: 930px;
}

.agency__label {
	margin-bottom: 10px;
	font-family: "Nunito Sans";
}

.agency__wrapper {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 1fr 1fr;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.agency__item {
	border-radius: 5px;
	border: 1px solid var(--dark-copper);
	padding: 30px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	position: relative;
	overflow: hidden;
	z-index: 1;
	height: 300px;
}

.agency__item::after {
	display: block;
	content: "";
	width: auto;
	height: 100%;
	aspect-ratio: 1/1;
	border-radius: 50%;
	position: absolute;
	top: -50px;
	left: 50px;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	background: var(--dark-copper);
	-webkit-filter: blur(75px);
	filter: blur(75px);
}

.agency__item-title {
	width: 100%;
	max-width: 465px;
}

.agency__item-desc {
	width: 100%;
	max-width: 465px;
	margin-top: 10px;
	font-family: "Nunito Sans";
}

.agency__item-img {
	position: absolute;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
}

.agency__item-img img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: right top;
	object-position: right top;
}

.objects__heading {
	margin-bottom: 30px;
	gap: 40px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.objects__title {
	width: 100%;
	max-width: 900px;
}

.objects__wrapper {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: (1fr)[4];
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.objects__name {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	text-align: center;
}

.objects__name_bottom {
	margin-top: auto;
}

.objects__item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	position: relative;
	width: 100%;
	height: auto;
	aspect-ratio: 0.65;
	z-index: 1;
	overflow: hidden;
	padding: 70px 45px 40px;
	border-radius: 6px;
}

.objects__item::after {
	display: block;
	content: "";
	width: calc(100% - 30px);
	height: calc(100% - 40px);
	position: absolute;
	top: 20px;
	left: 15px;
	border-radius: 6px;
	border: 1px solid var(--white);
	pointer-events: none;
}

.objects__img {
	position: absolute;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
}

.objects__img img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: center;
	object-position: center;
}

.home {
	padding: 150px 0 175px;
	position: relative;
	z-index: 1;
}

.home__objects {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 50px;
	margin-bottom: 15px;
}

.home__object {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 14px;
	width: 140px;
}

.home__object-img {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	height: 80px;
}

.home__object-img img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: center;
	object-position: center;
}

.home__bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -2;
}

.home__bg img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: center;
	object-position: center;
}

.home__body {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 120px;
}

.home__title {
	margin-top: 100px;
	width: 100%;
}

.home__btn {
	margin-top: 50px;
	margin-left: 50px;
}

.home__text {
	width: 100%;
}

.home__content {
	text-indent: 50px;
}

.home__img {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 485px;
	height: 730px;
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: -1;
}

.home__img img {
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	object-fit: contain;
	-o-object-position: center;
	object-position: center;
}

.about {
	margin: 40px 0 30px;
	/* padding: 230px 0 100px; */
	padding: 90px 0 300px;
	position: relative;
	z-index: 2;
}

.about__title {
	margin-bottom: 20px;
	width: 100%;
	max-width: 690px;
	text-align: center;
}

.about__content {
	width: 100%;
	max-width: 840px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.about__wrapper {
	/* padding-left: 120px; */
	padding-left: 0;
	position: relative;

	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

.about__bg {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
	width: auto;
}

.about__bg img {
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	object-fit: contain;
	-o-object-position: center;
	object-position: center;
}

.about__img {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	position: absolute;
	top: 15px;
	left: -215px;
	width: 330px;
	height: 415px;
}

.about__img::after {
	display: block;
	content: "";
	width: 600px;
	height: 600px;
	border-radius: 50%;
	background: radial-gradient(49.76% 49.76% at 50.12% 44.89%, #6982a2 0%, rgba(18, 20, 28, 0) 100%);
	position: absolute;
	top: 70%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	z-index: -1;
	-webkit-filter: blur(100px);
	filter: blur(100px);
}

.about__img img {
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	object-fit: contain;
	-o-object-position: center;
	object-position: center;
}

.slider-navigation {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 16px;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-top: 46px;
	margin-bottom: 25px;
	pointer-events: none;
}

.slider-navigation_square {
	gap: 5px;
}

.slider-navigation_square .slider-prev::before,
.slider-navigation_square .slider-next::before {
	display: block;
	content: "";
	width: 40px;
	height: 40px;
	background-image: url(../img/icons/arrow-square.svg);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
}

.slider-navigation_square .slider-prev::after,
.slider-navigation_square .slider-next::after {
	display: none;
}

.slider-prev,
.slider-next {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	cursor: pointer;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	pointer-events: all;
}

.slider-prev::before,
.slider-next::before {
	display: block;
	content: "";
	width: 82px;
	height: 8px;
	background-image: url(../img/icons/arrow.svg);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center right;
}

.slider-prev::after,
.slider-next::after {
	display: block;
	content: "";
	width: 72px;
	height: 72px;
	border-radius: 50%;
	border: 1px solid var(--rich-copper);
	margin-left: -36px;
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
	-webkit-transform: scale(0);
	transform: scale(0);
}

.slider-prev:hover::after,
.slider-next:hover::after {
	-webkit-transform: none;
	transform: none;
}

.slider-prev {
	-webkit-transform: scaleX(-1);
	transform: scaleX(-1);
}

.towers {
	position: relative;
	z-index: 1;
	padding-top: 0;
}

.towers::after {
	display: block;
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: -webkit-gradient(linear, left top, right top, from(var(--black-2)), color-stop(38%, rgba(255, 255, 255, 0)), color-stop(62%, rgba(255, 255, 255, 0)), to(var(--black-2)));
	background: linear-gradient(90deg, var(--black-2) 0%, rgba(255, 255, 255, 0) 38%, rgba(255, 255, 255, 0) 62%, var(--black-2) 100%);
	z-index: 2;
	pointer-events: none;
}

.towers__slider {
	overflow: visible;
}

.towers__slide {
	width: 100%;
	max-width: 380px;
	height: 520px;
	border-radius: 5px;
	background: var(--black-2);
	overflow: hidden;
	position: relative;
	z-index: 1;
	border: 1px solid var(--rich-copper);
	padding: 30px;
	text-align: center;
}

.towers__slide::before {
	display: block;
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: radial-gradient(319.87% 85.45% at 21.35% 5.94%, rgba(34, 35, 38, 0) 0%, rgba(175, 134, 120, 0.5) 100%);
	z-index: -1;
}

.towers__slide::after {
	display: block;
	content: "";
	width: 120%;
	height: auto;
	aspect-ratio: 1/1;
	border-radius: 50%;
	position: absolute;
	top: 100%;
	left: 50%;
	-webkit-transform: translate(-50%, -20%);
	transform: translate(-50%, -20%);
	background: var(--bright-copper);
	-webkit-filter: blur(50px);
	filter: blur(50px);
	z-index: 2;
}

.towers__img {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}

.towers__img img {
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	object-fit: contain;
	-o-object-position: center;
	object-position: center;
}

.popup {
	display: none;
	width: 100%;
	max-width: 920px;
	background: rgba(0, 0, 0, 0.3);
	-webkit-backdrop-filter: blur(12.5px);
	backdrop-filter: blur(12.5px);
	padding: 0;
}

.fancybox__backdrop {
	background: rgba(18, 20, 28, 0.9);
}

.fancybox__content>.f-button.is-close-btn {
	--f-button-color: var(--rich-copper) !important;
	--f-button-width: 56px;
	--f-button-height: 56px;
	--f-button-svg-width: 32px;
	--f-button-svg-height: 32px;
	--f-button-svg-stroke-width: 1.5px;
	left: calc(100% + 10px);
	top: 0;
	right: unset;
	border: 1px solid var(--rich-copper);
	border-radius: 6px !important;
	background: none !important;
	opacity: 1;
}

.form {
	border-radius: 5px;
	border: 1px solid var(--rich-copper);
	color: var(--white);
	width: 100%;
	padding: 50px 40px;
	background: radial-gradient(90% 180% at 100% 100%, #af8678 0%, rgba(34, 35, 38, 0) 80%);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 50px;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.form__body {
	width: 100%;
	max-width: 460px;
	position: relative;
	z-index: 1;
}

.form__img {
	width: 100%;
	height: calc(100% + 100px);
	max-width: 365px;
	position: absolute;
	bottom: -50px;
	left: calc(100% + 170px);
	z-index: -1;
}

.form__img img {
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	object-fit: contain;
	-o-object-position: center bottom;
	object-position: center bottom;
}

.form__title {
	margin-bottom: 30px;
}

.form__inputs {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 10px;
	margin-bottom: 30px;
}

.form__input {
	width: 100%;
	background: none;
	border-bottom: 1px solid rgba(255, 255, 255, 0.3);
	font-family: "Nunito Sans";
	padding: 7px 0;
}

.form__label {
	margin-bottom: 10px;
}

.form__acception {
	margin-top: 10px;
}

.form__submit {
	margin-top: 30px;
}

.form__check-list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 20px;
}

.form__info {
	width: 100%;
	max-width: 320px;
	padding: 30px;
	border-radius: 6px;
	background: rgba(0, 0, 0, 0.3);
	position: relative;
	z-index: 2;
}

.form__info-title {
	margin-bottom: 20px;
}

.form__info-item {
	margin-top: 10px;
}

.form__info-subtitle {
	margin-bottom: 5px;
	font-family: "Nunito Sans";
	font-weight: 700;
}

.form__info-link {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	white-space: nowrap;
}

.tile {
	position: relative;
	z-index: 3;
}

.tile__heading-wrapper {
	width: 100%;
	max-width: 580px;
}

.tile__btn {
	margin-top: 20px;
}

.tile__wrapper {
	position: relative;
}

.tile__heading {
	position: absolute;
	top: 70px;
	left: 0;
	width: 100%;
}

.tile__item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	position: relative;
	z-index: 1;
	padding: 30px 20px;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	border-radius: 6px;
	overflow: hidden;
	width: 100%;
	height: auto;
	aspect-ratio: 0.8;
}

.tile__item_right {
	grid-row: span 2;
	margin-top: auto;
}

.tile__item_top {
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

.tile__name {
	margin-top: auto;
	margin-left: auto;
	text-align: right;
	width: 100%;
}

.tile__img {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
}

.tile__img img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: center;
	object-position: center;
}

.tile__img::after {
	display: block;
	content: "";
	width: calc(100% - 20px);
	height: calc(100% - 20px);
	border-radius: 6px;
	border: 1px solid var(--white);
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	pointer-events: none;
	z-index: 3;
}

.tile__img::before {
	display: block;
	content: "";
	width: 100%;
	height: 100%;
	background: -webkit-gradient(linear, left top, left bottom, color-stop(32.5%, rgba(0, 0, 0, 0)), color-stop(77%, rgba(0, 0, 0, 0.7)));
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 32.5%, rgba(0, 0, 0, 0.7) 77%);
	position: absolute;
	top: 0;
	left: 0;
	pointer-events: none;
	z-index: 2;
}

.tile__body {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: (1fr)[7];
	grid-template-columns: repeat(7, 1fr);
	-ms-grid-rows: 0.7fr 1fr 1fr;
	grid-template-rows: 0.7fr 1fr 1fr;
	gap: 10px;
}

.tile__preview {
	grid-column: span 6;
	grid-row: span 2;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 50%;
	margin-left: auto;
	margin-right: -5px;
	margin-bottom: -30px;
	z-index: 2;
}

.tile__preview .tile__item {
	padding: 110px 30px;
	border: 10px solid var(--black-2);
	border-radius: 14px;
	margin: 0 -5px;
	height: 100%;
	width: calc(100% + 4px);
	aspect-ratio: unset;
}

.tile__preview .tile__img::after {
	display: none;
}

.tile__preview .tile__img::before {
	display: none;
}

.tile__preview .tile__name {
	text-align: center;
	margin: 0;
	color: var(--black-2);
	font-size: 35px;
	line-height: 110%;
}

.tile__slider {
	width: 100%;
	height: auto;
	aspect-ratio: 1.18;
	border: 10px solid var(--black-2);
	border-radius: 14px;
}

.tile__slide {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	border-radius: 6px;
	overflow: hidden;
}

.tile__slide img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: center;
	object-position: center;
}

.tile_5col .tile__body {
	-ms-grid-columns: (1fr)[5];
	grid-template-columns: repeat(5, 1fr);
	-ms-grid-rows: 1fr 1fr;
	grid-template-rows: 1fr 1fr;
}

.tile_5col .tile__preview {
	grid-column: span 4;
	grid-row: auto;
	margin-left: auto;
	margin-bottom: -120px;
	margin-top: -10px;
}

.tile_5col .tile__preview .tile__item {
	height: 100%;
	width: auto;
	aspect-ratio: 0.93;
	margin-left: auto;
}

.tile_5col .tile__preview .tile__name {
	color: var(--white);
}

.tile_slider .tile__preview {
	grid-column: span 5;
	width: 37%;
	margin-right: 10%;
}

.tile_slider .tile__body {
	-ms-grid-rows: auto;
	grid-template-rows: auto;
}

.tile_slider .tile__item {
	padding: 40px 30px;
}

.tab__item {
	display: none;
}

.tab__item_active {
	display: block;
}

.detail__wrapper {
	padding-top: 100px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	align-items: start;
	gap: 30px;
}

.detail__bg {
	position: relative;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 50%;
	height: auto;
	margin-right: -30px;
	margin-top: -100px;
}

.detail__bg img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: center;
	object-position: center;
}

.detail__bg-slide::after {
	display: block;
	content: "";
	width: 100%;
	height: 100%;
	background-image: url(../img/detail/gradient.svg);
	background-repeat: no-repeat;
	background-position: bottom left;
	background-size: cover;
	z-index: 2;
	position: absolute;
	top: 0;
	left: 0;
	pointer-events: none;
}

.detail__location {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 5px;
	margin-bottom: 20px;
}

.detail__body {
	width: 50%;
	position: relative;
	z-index: 1;
}

.detail__body::after {
	display: block;
	content: "";
	width: 1500px;
	height: 950px;
	border-radius: 50%;
	background: radial-gradient(50% 50% at 50% 50%, rgba(221, 164, 144, 0.9) 0%, rgba(18, 20, 28, 0) 60%);
	position: absolute;
	top: 0;
	left: 0;
	-webkit-filter: blur(100px);
	filter: blur(100px);
	pointer-events: none;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	z-index: -1;
}

.detail__name {
	margin-bottom: 20px;
}

@media (max-width: 767px) {
	.detail__name {
		font-size: 56px !important;
	}
}

.detail__text {
	margin-top: 20px;
}

.detail__btn {
	margin-top: 30px;
}

.detail__info {
	width: 100%;
	max-width: 524px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: 30px;
	row-gap: 10px;
	height: -webkit-fit-content;
	height: -moz-fit-content;
	height: fit-content;
}

.detail__info-title {
	opacity: 0.4;
}


.detail__slider {
	/* overflow: visible; */
	margin-top: 30px;
}

.detail__slider .detail-about__slide {
	height: auto;
	max-width: 347px;
}

.team__title {
	text-align: center;
	width: 100%;
	max-width: 650px;
	margin: 0 auto;
	margin-bottom: 30px;
}

.team__body {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	gap: 20px;
}

.team__item {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 100%;
	max-width: 340px;
	text-align: center;
}

.team__img {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	height: auto;
	aspect-ratio: 0.82;
	border-radius: 5px;
	overflow: hidden;
	margin-bottom: 20px;
}

.team__img img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: center;
	object-position: center;
}

.team__desc {
	margin-top: 10px;
	font-family: "Nunito Sans";
}

.team__btn {
	margin-top: 10px;
}

.plan__wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 40px;
}

.plan__body {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	padding: 90px 0;
	width: 100%;
	max-width: 345px;
}

.plan__desc {
	margin-top: 20px;
}

.plan__sldier {
	width: 100%;
}

.plan__slider-container {
	width: calc(100% - 385px);
	height: auto;
	aspect-ratio: 1.51;
	position: relative;
}

.plan__slide {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	border-radius: 5px;
	overflow: hidden;
}

.plan__slide img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: center;
	object-position: center;
}

.plan__navigation {
	position: absolute;
	bottom: 90px;
	right: calc(100% + 300px);
}

.plan_reverse .plan__wrapper {
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
}

.plan_reverse .plan__navigation {
	right: unset;
	left: calc(100% + 40px);
}

.article__heading {
	margin-bottom: 20px;
}

.article__wrapper {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 455px calc(100% - 555px);
	grid-template-columns: 455px calc(100% - 555px);
	gap: 100px;
	position: relative;
}

.article__nav {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 20px;
	position: -webkit-sticky;
	position: sticky;
	top: 40px;
	left: 0;
	height: -webkit-fit-content;
	height: -moz-fit-content;
	height: fit-content;
	min-height: 700px;
}

.article__nav::after {
	display: block;
	content: "";
	width: 1500px;
	height: 950px;
	border-radius: 50%;
	background: radial-gradient(50% 50% at 50% 50%, rgba(221, 164, 144, 0.9) 0%, rgba(18, 20, 28, 0) 60%);
	position: absolute;
	top: 0;
	left: 0;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	-webkit-filter: blur(100px);
	filter: blur(100px);
	z-index: -1;
	pointer-events: none;
}

.article__anchor {
	opacity: 0.5;
	-webkit-transition: all ease 0.5s;
	transition: all ease 0.5s;
}

.article__anchor_active {
	opacity: 1;
}

.article__body {
	padding-left: 40px;
	position: relative;
}

.article__body::after {
	display: block;
	content: "";
	width: 1px;
	height: 700px;
	position: absolute;
	top: 0;
	left: 0;
	background-color: var(--white);
}

.article-block {
	padding-bottom: 30px;
	border-bottom: 1px solid var(--white);
}

.article-block:not(:first-child) {
	padding-top: 30px;
}

.article-block__title {
	margin-bottom: 30px;
	display: none;
}

.article-gallery {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 20px;
	width: 100%;
}

.article-gallery__slider {
	width: 100%;
	height: auto;
	aspect-ratio: 1.68;
	z-index: 1;
}

.article-gallery__slider::after {
	display: block;
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: -webkit-gradient(linear, left top, right top, from(rgba(18, 20, 28, 0.85)), color-stop(45%, rgba(18, 20, 28, 0)), color-stop(55%, rgba(18, 20, 28, 0)), to(rgba(18, 20, 28, 0.85)));
	background: linear-gradient(90deg, rgba(18, 20, 28, 0.85) 0%, rgba(18, 20, 28, 0) 45%, rgba(18, 20, 28, 0) 55%, rgba(18, 20, 28, 0.85) 100%);
	z-index: 2;
	pointer-events: none;
}

.article-gallery__slide {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.article-gallery__slide img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: center;
	object-position: center;
}

.article-gallery__navigation {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	z-index: 3;
	width: 100%;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin: 0 !important;
}

.article-gallery .slider-prev::before,
.article-gallery .slider-next::before {
	width: 50px;
	height: 50px;
	background-image: url(../img/icons/arrow-square-without-bg.svg);
}

.article-objects {
	margin-right: -30px;
}

.article-objects__navigation {
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}

.article-objects__body {
	margin-top: 40px;
}

.article-objects__title {
	margin-bottom: 10px;
}

.article-objects__gallery {
	width: 100%;
	height: auto;
	aspect-ratio: 1.43;
}

.article-objects__gallery-slide {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	border-radius: 5px;
	overflow: hidden;
}

.article-objects__gallery-slide img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: center;
	object-position: center;
}

.article-objects__thumb {
	height: 60px;
	margin-top: 10px;
}

.article-objects__thumb-slide {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 90px;
	cursor: pointer;
	opacity: 0.5;
	-webkit-transition: opacity ease 0.5s;
	transition: opacity ease 0.5s;
}

.article-objects__thumb-slide img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: center;
	object-position: center;
}

.article-objects__thumb-slide.swiper-slide-thumb-active {
	opacity: 1;
}

.article-objects__slide {
	-webkit-transition: opacity ease 0.5s;
	transition: opacity ease 0.5s;
}

.article-objects__slide:not(.swiper-slide-active) {
	pointer-events: none;
	opacity: 0.5;
}

.catalog {
	padding-top: 156px;
}

.catalog__item {
	width: 100%;
	min-width: 0;
	position: relative;
}

.catalog__list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 20px;
	height: -webkit-fit-content;
	height: -moz-fit-content;
	height: fit-content;
}

.catalog__body {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 250px auto;
	grid-template-columns: 250px auto;
	gap: 100px;
}

.catalog__title {
	margin-bottom: 30px;
	width: 100%;
	max-width: 1140px;
}

.catalog__filter-heading {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	/* margin-bottom: 10px; */
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.catalog__filter-checkbox {
	margin-top: 7px;
}

.catalog__filter-checkbox_disable {
	opacity: 0.3;
	pointer-events: none;
}

.catalog__filter-open {
	display: none;
}

.catalog__filter-btns {
	margin-bottom: 10px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 10px;
}

.catalog__filter-item {
	border-radius: 6px;
	/* background: rgba(0, 0, 0, 0.3); */
	/* -webkit-backdrop-filter: blur(5px); */
	/* backdrop-filter: blur(5px); */
	padding: 20px;
	width: 100%;
	position: relative;

	border: 1px solid var(--rich-copper-BC6561, #BC6561);
	backdrop-filter: blur(5px);
	overflow: hidden;
}

.catalog__filter-item::after {
	content: '';
	width: 307px;
	height: 307px;
	display: block;
	position: absolute;
	top: 30px;
	left: 39px;
	background: radial-gradient(50% 50% at 50% 50%, #9B6D5E 0%, #12141C 100%);
	border-radius: 307px;
	z-index: -1;
}

.catalog__filter-wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 20px;
}

.catalog__filter-container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 10px;
}

.catalog__filter-col {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 10px;
}

.catalog__filter-btn {
	padding: 14px 20px;
	width: 100%;
}

.catalog__input {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
	gap: 5px;
	padding: 10px;
	border-radius: 20px;
	border: 1px solid var(--grey);
	margin-top: 5px;
	font-family: "Nunito Sans";
	background-color: transparent;
}

.catalog__input-field {
	background: none;
	width: 100%;
}

.catalog__filter-bottom {
	/* display: none; */
}

.catalog__filter-submit:not(:last-child) {
	margin-bottom: 20px;
}

.catalog__filter-bottom .catalog__filter-btn {
	margin-bottom: 20px;
}

.catalog__load-more {
	grid-column: span 2;
}

.catalog_tile .catalog__list {
	width: 100%;
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: 1fr 1fr;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	min-width: 0;
}

.catalog_tile .catalog__wrapper {
	border-radius: 10px;
	border: 1px solid #bc6561;
	background: rgba(0, 0, 0, 0.3);
	padding: 30px;
}

.catalog_tile .catalog__body {
	gap: 30px;
}

.big-card {
	border-radius: 5px;
	border: 2px solid var(--rich-copper);
	position: relative;
	z-index: 1;
	--bg-Color: #af8678;
}

.big-card::before {
	display: block;
	content: "";
	width: 100%;
	height: 100%;
	background: radial-gradient(80.63% 113.29% at 4.81% 92.58%, var(--bg-Color) 0%, rgba(34, 35, 38, 0) 100%);
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}

.big-card__wrapper {
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: auto 470px;
	grid-template-columns: auto 470px;
}

.big-card__body {
	padding: 40px 30px 30px;
}

.big-card__location {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 5px;
	opacity: 0.4;
	margin-bottom: 20px;
}

.big-card__location-icon {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	min-width: 24px;
	width: 24px;
	height: 24px;
}

.big-card__location-icon svg {
	width: 100%;
	height: 100%;
}

.big-card__info {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	gap: 10px;
	-webkit-column-gap: 60px;
	column-gap: 60px;
	margin-top: 37px;
}

.big-card__info-label {
	opacity: 0.4;
}

.big-card__btn {
	margin-top: 37px;
}

.big-card__img {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding-top: 40px;
	width: 100%;
	max-width: 380px;
	height: 100%;
	margin: 0 auto;
}

.big-card__img img {
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	object-fit: contain;
	-o-object-position: center bottom;
	object-position: center bottom;
}

.catalog-card {
	width: 100%;
	border-radius: 5px;
	border: 1px solid #a5a5a5;
	background: rgba(0, 0, 0, 0.3);
	padding: 30px;
}

.catalog-card__tags {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 10px;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-bottom: 10px;
}

.catalog-card__tag {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding: 5px 15px;
	border-radius: 5px;
	border: 1px solid #a5a5a5;
	color: #a5a5a5;
}

.catalog-card__slider {
	border-radius: 5px;
	width: 100%;
	height: 270px;
	margin-bottom: 20px;
	position: relative;
	z-index: 1;
}

.catalog-card__slide {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	border-radius: 5px;
	overflow: hidden;
}

.catalog-card__slide img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: center;
	object-position: center;
}

.catalog-card__name {
	color: var(--rich-copper);
	margin-bottom: 6px;
	font-size: 25px;
}

.catalog-card__body {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.catalog-card__cost-label {
	opacity: 0.5;
	margin-bottom: 5px;
}

.catalog-card__controls {
	position: absolute;
	border-radius: 5px;
	border: 1px solid rgba(255, 255, 255, 0.3);
	background: rgba(0, 0, 0, 0.3);
	-webkit-backdrop-filter: blur(5px);
	backdrop-filter: blur(5px);
	gap: 5px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	bottom: 10px;
	right: 10px;
	z-index: 2;
}

.catalog-card__prev {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	cursor: pointer;
}

.catalog-card__next {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	cursor: pointer;
}

.detail-about__label {
	margin-bottom: 20px;
}

.detail-about__mobile-title {
	display: none;
}

.detail-about__wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 100px;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	position: relative;
	z-index: 1;
}

.detail-about__wrapper::after {
	display: block;
	content: "";
	width: 1500px;
	height: 950px;
	border-radius: 50%;
	background: radial-gradient(50% 50% at 50% 50%, rgba(221, 164, 144, 0.9) 0%, rgba(18, 20, 28, 0) 60%);
	position: absolute;
	top: 0;
	right: 0;
	-webkit-filter: blur(100px);
	filter: blur(100px);
	pointer-events: none;
	-webkit-transform: translate(50%, -30%);
	transform: translate(50%, -30%);
	z-index: -1;
}

.detail-about__tab-desc {
	display: none;
}

.detail-about__tab-desc ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	gap: 10px;
	margin-top: 10px;
}

.detail-about__tab-header {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	/* flex-direction: column; */
	gap: 20px;
	width: 100%;
	/* max-width: 455px; */
}

.detail-about__tab-body {
	width: 100%;
	max-width: 840px;
	padding-left: 40px;
	border-left: 1px solid #fff;
	min-width: 0;
}

.detail-about__slider {
	margin-top: 20px;
}

.detail-about__slider-wrapper {
	/* height: 570px; */
	height: 350px;
}

.detail-about__slide {
	border-radius: 3px;
	overflow: hidden;
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 400px;
	height: auto;
}



.detail-about__slide_video .detail-about__slide-img::before {
	display: block;
}

.detail-about__slide-img {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 1;
	cursor: pointer;
}

.detail-about__slide-img img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: center;
	object-position: center;
}

.detail-about__slide-img::before {
	display: block;
	content: "";
	width: 70px;
	height: 70px;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);

	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	z-index: 3;
	pointer-events: none;
	display: none;
}

.detail-about__slide-img::after {
	display: block;
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.7)));
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
	z-index: 2;
	pointer-events: none;
}



.detail-about__slide-icon {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	position: absolute;
	top: 10px;
	right: 10px;
	z-index: 3;
	cursor: pointer;
}

.detail-about__slide-text {
	position: absolute;
	bottom: 20px;
	left: 20px;
	z-index: 3;
}

.detail-about__navigation {
	margin-top: 30px;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}

.detail-about .tab__link {
	opacity: 0.5;
	cursor: pointer;
	position: relative;
	z-index: 1;
}

.detail-about .tab__link_active {
	cursor: default;
	opacity: 1;
}

.detail-about .tab__link_active .detail-about__tab-desc {
	display: block;
}



.detail-about .tab__link {
	width: calc(100% - 20px);
	max-width: 500px;
	position: relative;
	opacity: 1;
}

.detail-about .tab__link:not(:first-child) {
	/* margin-top: -70px; */
}

.detail-about .tab__link:nth-child(2) {
	transform: translateX(-100px);
	margin-top: -70px;
}

.detail-about .tab__link:nth-child(3) {
	transform: translateX(-100px);
}

.detail-about__tab-img {
	display: flex;
	width: 100%;
	height: 300px;
	overflow: hidden;
	position: relative;
	z-index: 1;
}

.detail-about__tab-img::after {
	display: block;
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.7)));
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
	z-index: 2;
	pointer-events: none;
}

.detail-about__tab-text {
	position: absolute;
	top: 0;
	left: 0;
	padding: 20px;
	z-index: 2;
}

.detail-about__tab-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.detail-about__tab-header {
	gap: 0;
}

.accordion__btn {
	cursor: pointer;
}

.accordion__body {
	overflow: hidden;
	transition: all ease 0.5s;

	display: flex;
	flex-direction: column-reverse;
}

.catalog .accordion__btn::after {
	display: flex;
	content: '';
	min-width: 20px;
	width: 20px;
	height: 20px;
	background-image: url(../img/icons/accordion-caret.svg);
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	margin-left: 10px;
	transition: all ease 0.5s;
}

.catalog .accordion__body {
	overflow-y: auto;
}

.catalog .accordion__body::-webkit-scrollbar {
	width: 3px;
	border-radius: 5px;
	background-color: var(--black-2);
}

.catalog .accordion__body::-webkit-scrollbar-thumb {
	border-radius: 5px;
	background-color: var(--sliver);
}

.catalog .accordion__item_open .accordion__body {
	margin-top: 10px;
	padding-bottom: 1px;
}

.catalog .accordion__item_open .accordion__btn::after {
	transform: rotate(180deg);
}




.tile__body {
	max-height: none !important;
}

@media screen and (min-width: 1480px) {
	.article-objects {
		margin-right: calc((100vw - 1420px) / -2);
	}

	.detail__bg {
		width: calc(50% + (100vw - 1420px) / 2);
		margin-right: calc((100vw - 1420px) / -2);
	}

	.detail-about__slider {
		margin-right: calc((100vw - 1420px) / -2);
	}
}

@media screen and (max-width: 1800px) {
	.home__body {
		gap: 85px;
	}

	.home__title {
		max-width: 570px;
	}

	.home__text {
		padding-right: 200px;
	}
}

@media screen and (max-width: 1700px) {
	.about__wrapper {
		margin-left: 160px;
	}
}

@media screen and (max-width: 1600px) {
	.text-img__img {
		width: 100%;
		margin: 0 !important;
	}

	.text-img__wrapper {
		-ms-grid-columns: 1fr 1fr;
		grid-template-columns: 1fr 1fr;
	}

	.text-img__content {
		font-size: 15px;
		line-height: 130%;
	}

	.text-img__subtitle {
		font-size: 18px;
		line-height: 125%;
	}

	.text-img__item {
		margin-top: 50px;
	}

	.text-img__btn {
		margin-top: 10px;
	}
}

@media screen and (max-width: 1500px) {
	.tile__heading {
		top: 40px;
	}

	.tile__heading-wrapper {
		max-width: 450px;
	}

	.tile__title {
		font-size: 30px;
		line-height: 110%;
	}

	.tile__name {
		font-size: 15px;
		line-height: 130%;
	}

	.tile__preview .tile__item {
		padding: 70px 15px;
	}

	.tile__preview .tile__name {
		font-size: 25px;
		line-height: 110%;
	}
}

@media screen and (max-width: 1400px) {
	.detail__slider {
		overflow: visible;
	}

	.home__content {
		font-size: 18px;
		line-height: 130%;
		text-indent: 40px;
	}

	.home__btn {
		margin-left: 40px;
		margin-top: 30px;
	}

	.home__title {
		font-size: 40px;
		line-height: 110%;
		max-width: 445px;
	}

	.home__img {
		/* width: 335px;
		height: 500px; */
		width: 263px;
		height: 393px;
	}

	.home__text {
		padding-right: 100px;
	}
}

@media screen and (max-width: 1200px) {
	.objects__name {
		font-size: 18px;
		line-height: 120%;
	}

	.objects__item {
		padding: 32px 30px 22px;
		aspect-ratio: 0.88;
	}

	.objects__item::after {
		height: calc(100% - 24px);
		width: calc(100% - 20px);
		top: 12px;
		left: 10px;
	}

	.about {
		margin: 0;
		padding: 150px 0 130px;
	}

	.about__bg {
		right: -100px;
	}

	.about__img {
		width: 230px;
		height: 290px;
	}

	.about__img::after {
		width: 400px;
		height: 400px;
	}

	.about__wrapper {
		padding-left: 20px;
	}

	.about__title {
		font-size: 25px;
		line-height: 120%;
		max-width: 490px;
	}

	.about__content {
		max-width: 600px;
		font-size: 16px;
		line-height: 130%;
	}

	.slider-navigation {
		gap: 10px;
		margin-top: 30px;
		margin-bottom: 30px;
	}


	.slider-prev::before,
	.slider-next::before {
		width: 52px;
		height: 8px;
	}

	.slider-prev::after,
	.slider-next::after {
		width: 46px;
		height: 46px;
		margin-left: -23px;
	}

	.towers__slide {
		padding: 20px;
		max-width: 240px;
		height: 325px;
	}

	.towers__name {
		font-size: 15px;
		line-height: 130%;
	}

	.form__img {
		left: calc(100% + 15px);
	}

	.plan__body {
		padding: 0;
	}

	.plan__navigation {
		bottom: 0;
	}

	.article__wrapper {
		-ms-grid-columns: 455px calc(100% - 475px);
		grid-template-columns: 455px calc(100% - 475px);
		gap: 20px;
	}

	.article__body {
		padding-left: 20px;
	}

	.catalog__body {
		gap: 36px;
	}

	.big-card__img img {
		-o-object-position: center;
		object-position: center;
	}

	.detail-about__tab-header {
		flex-direction: column;
		gap: 10px;
	}
	.detail-about .tab__link {
		margin-top: 0 !important;
  		transform: none !important;
	}

	.detail-about__tab-body {
		padding: 0;
		border: none;
		max-width: none;
	}

	.detail-about__mobile-title {
		/* display: block; */
		/* margin-bottom: 20px; */
	}
	.tab__item {
		width: 100%;
	}
	.accordion__body {
		max-height: initial !important;
	}

	/* .detail-about .accordion__body::before {
		display: block;
		content: '';
		width: 100%;
		height: 20px;
	}

	.detail-about .accordion__body::after {
		display: block;
		content: '';
		width: 100%;
		height: 90px;
	}

	.detail-about__slider {
		overflow: visible;
	}

	.detail-about__wrapper::after {
		display: none;
	}

	.detail-about .tab__item {
		display: block;
	} */

	.detail-about .tab__item:not(:last-child) {
		/* margin-bottom: 40px; */
	}

	.detail-about .accordion__item:not(:first-child) {
		margin-top: -50px;
	}

	.detail-about .accordion__item:nth-child(even) .tab__link {
		transform: translateX(35px);
	}
}

.header__panel-cart {
	border-radius: 6px;
	border: 2px solid var(--white-ffffff, #FFF);
	background: linear-gradient(180deg, #12141C 0%, #BC6561 100%);
	padding: 0 9px;
	height: 43px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	top: -3px;
}

@media screen and (max-width: 1150px) {
	.tile__slider {
		border: none;
		border-radius: 6px;
	}

	.tile_5col .tile__heading {
		position: static;
		margin-bottom: 30px;
	}

	.tile_5col .tile__heading-wrapper {
		max-width: none;
	}

	.tile_5col .tile__title {
		font-size: 40px;
		line-height: 110%;
	}

	.tile_5col .tile__body {
		-ms-grid-columns: (1fr)[3];
		grid-template-columns: repeat(3, 1fr);
		-ms-grid-rows: 1fr 1fr 1fr;
		grid-template-rows: 1fr 1fr 1fr;
		padding: 0 30px;
	}

	.tile_5col .tile__preview {
		grid-row: auto;
		grid-column: span 2;
		width: 100%;
		margin: 0;
		gap: 10px;
	}

	.tile_5col .tile__preview .tile__item {
		margin: 0;
		border: none;
		height: 100%;
		width: 100%;
		aspect-ratio: unset;
		border-radius: 6px;
	}

	.tile_5col .tile__item:nth-child(2) {
		-webkit-box-ordinal-group: 0;
		-ms-flex-order: -1;
		order: -1;
	}

	.tile_5col .tile__item:nth-child(6) {
		grid-column: span 2;
		margin-left: auto;
		width: calc(50% - 5px);
	}

	.tile_slider .tile__preview {
		grid-row: span 2;
	}

	.tile_slider .tile__item:nth-child(6) {
		grid-column: auto;
		width: 100%;
	}

	.catalog_tile .catalog__list {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
}

@media screen and (max-width: 1024px) {
	.header-open {
		padding-right: 0;
	}

	.header__contacts {
		display: none;
	}

	.header__panel .header__contacts {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		margin-top: 30px;
	}

	.footer__contacts {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 50px;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}

	.text-img__wrapper {
		position: relative;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}

	.text-img__img {
		position: absolute;
		top: 130px;
		right: -30px;
		width: 55%;
		height: auto;
	}

	.text-img__item {
		margin-top: 25px;
		width: 100%;
		max-width: 400px;
	}


	.text-img__body {
		padding-right: 200px;
	}

	.text-img__subtitle {
		font-size: 25px;
		line-height: 125%;
	}

	.agency__wrapper {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}

	.objects__heading {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 20px;
	}

	.objects__wrapper {
		-ms-grid-columns: 1fr 1fr;
		grid-template-columns: 1fr 1fr;
	}

	.objects__item {
		aspect-ratio: 1.07;
	}

	.objects__name {
		font-size: 25px;
		line-height: 125%;
	}

	.home {
		padding: 170px 0 115px;
	}

	.home__body {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 40px;
	}

	.home__btn {
		margin-left: 0;
	}

	.home__objects {
		/* display: none; */
		gap: 10px;
	}

	.home__object-name {
		font-size: 12px;
		line-height: 1.1;
	}

	.home__object-img {
		height: 60px;
	}

	.home__title {
		margin: 0;
	}

	.home__text {
		padding-right: 230px;
	}

	.form {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 0;
		padding: 0;
		background: none;
		border: none;
	}

	.form__body {
		background: radial-gradient(90% 180% at 100% 100%, #af8678 0%, rgba(34, 35, 38, 0) 100%);
		padding: 40px;
		border: 1px solid var(--rich-copper);
		-webkit-backdrop-filter: blur(12.5px);
		backdrop-filter: blur(12.5px);
		position: relative;
		z-index: 1;
		border-radius: 5px;
		max-width: none;
	}

	.form__body::after {
		display: block;
		content: "";
		width: 100%;
		height: 100%;
		background: rgba(0, 0, 0, 0.3);
		position: absolute;
		top: 0;
		left: 0;
		z-index: -1;
		pointer-events: none;
	}

	.form__info {
		max-width: none;
		width: auto;
		border: 1px solid var(--rich-copper);
		-webkit-backdrop-filter: blur(5px);
		backdrop-filter: blur(5px);
		margin: 0 36px;
		margin-top: -20px;
		z-index: 3;
	}

	.form__img {
		left: unset;
		right: 0;
		bottom: 0;
		width: 200px;
		height: 100%;
	}

	.form__img img {
		-o-object-fit: cover;
		object-fit: cover;
		-o-object-position: bottom left;
		object-position: bottom left;
	}

	.popup {
		max-width: 540px;
		background: none;
	}

	.tile__heading {
		position: static;
		margin-bottom: 30px;
	}

	.tile__heading-wrapper {
		max-width: none;
	}

	.tile__title {
		font-size: 40px;
		line-height: 110%;
	}

	.tile__body {
		-ms-grid-columns: (1fr)[4];
		grid-template-columns: repeat(4, 1fr);
		-ms-grid-rows: 1.8fr 1fr 1fr;
		grid-template-rows: 1.8fr 1fr 1fr;
		padding: 0 30px;
	}

	.tile__body_left {
		-ms-grid-rows: 1fr 1fr 1fr;
		grid-template-rows: 1fr 1fr 1fr;
	}

	.tile__body_left .tile__preview {
		grid-column: span 2;
		grid-row: span 2;
	}

	.tile__preview {
		grid-row: auto;
		grid-column: span 4;
		width: 100%;
		margin: 0;
		gap: 10px;
	}

	.tile__preview .tile__item {
		margin: 0;
		border: none;
		height: 100%;
		aspect-ratio: unset;
		border-radius: 6px;
	}

	.tile__item_right {
		height: auto;
		margin: 0;
		grid-row: auto;
	}

	.tile__item_top {
		-webkit-transform: none;
		transform: none;
	}

	.detail {
		padding-top: 0;
	}

	.detail__body {
		width: 100%;
	}

	.detail__body::after {
		top: 0;
		right: -970px;
		-webkit-transform: translateY(-50%);
		transform: translateY(-50%);
	}

	.detail__bg {
		width: auto;
		margin: 0 -30px;
		position: relative;
		z-index: 2;
	}

	.detail__wrapper {
		padding: 0;
		-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
		-ms-flex-direction: column-reverse;
		flex-direction: column-reverse;
	}

	.form-block .form__body {
		padding-right: 215px;
	}

	.plan__wrapper {
		-webkit-box-orient: vertical !important;
		-webkit-box-direction: normal !important;
		-ms-flex-direction: column !important;
		flex-direction: column !important;
		padding-right: 125px;
	}

	.plan__navigation {
		right: unset;
		left: calc(100% + 35px);
	}

	.plan__body {
		max-width: 590px;
	}

	.plan__slider-container {
		width: 100%;
		max-width: 590px;
	}

	.article__nav {
		display: none;
	}

	.article__wrapper {
		display: block;
	}

	.article__body {
		padding: 0;
	}

	.article__body::after {
		display: none;
	}

	.article__label {
		display: none;
	}

	.article-block__title {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}

	.catalog__filter-wrapper {
		position: fixed;
		width: 100%;
		height: 100vh;
		top: 0;
		left: 0;
		z-index: 10;
		background: var(--black-2);
		padding: 132px 30px 30px;
		-webkit-transform: translateX(-100%);
		transform: translateX(-100%);
		-webkit-transition: all ease 0.5s;
		transition: all ease 0.5s;
	}

	.catalog__filter-container {
		overflow-y: auto;
		display: -ms-grid;
		display: grid;
		-ms-grid-columns: 1fr 1fr;
		grid-template-columns: 1fr 1fr;
	}

	.catalog__filter-bottom {
		display: -ms-grid;
		display: grid;
		-ms-grid-columns: 1fr 1fr;
		grid-template-columns: 1fr 1fr;
		gap: 10px;
		margin-top: auto;
	}

	.catalog__filter-bottom .catalog__filter-btn {
		width: 100%;
	}

	.catalog__body {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 30px;
	}

	.catalog__title {
		margin-bottom: 20px;
	}

	.catalog__filter-open {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}

	.catalog__filter-btn {
		width: -webkit-fit-content;
		width: -moz-fit-content;
		width: fit-content;
		padding: 14px 35px;
	}

	.filter-open {
		overflow: hidden;
	}

	.filter-open .catalog__filter-wrapper {
		-webkit-transform: none;
		transform: none;
	}

	.big-card__wrapper {
		-ms-grid-columns: auto 400px;
		grid-template-columns: auto 400px;
	}

	.big-card__body {
		padding-left: 20px;
		padding-right: 20px;
	}
}

@media screen and (max-width: 768px) {
	.text-35 {
		font-size: 25px;
		line-height: 130%;
	}

	.text-60 {
		font-size: 40px;
		line-height: 110%;
	}

	.section {
		padding: 70px 0;
	}

	.header__logo {
		width: 165px;
		height: 40px;
	}

	.header__menu-btn {
		width: 44px;
		height: 44px;
		padding: 11px 6px;
	}

	.header__btn {
		padding: 3px 50px 5px;
	}

	.about {
		padding-bottom: 60px;
	}

	.about__bg {
		right: -300px;
	}

	.text-img {
		padding-top: 0;
	}

	.tile_slider .tile__item {
		padding: 25px 18px;
	}

	.objects__name {
		font-size: 20px;
		width: 100%;
		max-width: 250px;
		margin: 0 auto;
		/* margin-bottom: 0; */
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}

	.catalog {
		padding-top: 136px;
	}

	.detail-about__slider-wrapper {
		height: auto;
	}

	.detail-about__slide-img {
		height: 280px;
	}
}

@media screen and (max-width: 700px) {

	.tile__item_collapse {
		margin-top: -140px;
		transition: all ease 0.5s;
	}

	.read-more_open .tile__item_collapse {
		margin-top: 0;
	}

	.fancybox__content>.f-button.is-close-btn {
		right: 10px !important;
		top: 10px !important;
		left: unset;
		--f-button-width: 42px !important;
		--f-button-height: 42px !important;
		--f-button-svg-width: 25px !important;
		--f-button-svg-height: 25px !important;
	}

	.tile__body {
		-ms-grid-columns: (1fr)[2];
		grid-template-columns: repeat(2, 1fr);
		-ms-grid-rows: auto;
		grid-template-rows: auto;
	}

	.tile__preview {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		grid-column: span 2;
	}

	.tile__preview .tile__item {
		width: 100%;
		height: auto;
		aspect-ratio: 1.775;
		padding: 20px;
	}

	.tile_5col .tile__body {
		-ms-grid-columns: (1fr)[2];
		grid-template-columns: repeat(2, 1fr);
		-ms-grid-rows: auto;
		grid-template-rows: auto;
	}

	.tile_5col .tile__preview .tile__item {
		height: auto;
		width: 100%;
		aspect-ratio: 1.775;
	}

	.tile_5col .tile__item:nth-child(2) {
		-webkit-box-ordinal-group: unset;
		-ms-flex-order: unset;
		order: unset;
	}

	.tile_5col .tile__item:nth-child(6) {
		grid-column: auto;
		margin-left: auto;
		width: 100%;
	}

	/* .catalog__filter-btns {
		position: fixed;
		bottom: 0;
		left: 0;
		width: 100%;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 5px;
		z-index: 3;
		background: -webkit-gradient(linear, left top, left bottom, from(rgba(18, 20, 28, 0)), color-stop(72.25%, #12141c));
		background: linear-gradient(180deg, rgba(18, 20, 28, 0) 0%, #12141c 72.25%);
		padding: 34px 10px 13px;
		margin: 0;
		-webkit-transition: all ease 0.5s;
		transition: all ease 0.5s;
	} */

	.catalog__filter-open {
		width: 100%;
	}

	.catalog__filter-btn {
		width: 100%;
	}

	.catalog__filter-bottom {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
		-ms-flex-direction: column-reverse;
		flex-direction: column-reverse;
	}

	.catalog__filter-wrapper {
		-webkit-transform: translateY(100%);
		transform: translateY(100%);
	}

	.catalog__filter-container {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}

	.catalog__body {
		gap: 0;
	}

	/* .catalog_btns-hide .catalog__filter-btns {
		-webkit-transform: translateY(100%);
		transform: translateY(100%);
	} */

	.big-card__wrapper {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}

	.big-card__img {
		position: absolute;
		bottom: 77px;
		left: 5px;
		height: 210px;
		width: calc(50% - 10px);
		padding: 0;
	}

	.big-card__info {
		margin-top: 20px;
		margin-left: 50%;
		min-height: 180px;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}

	.big-card__body {
		padding: 20px;
	}

	.big-card__btn {
		margin-top: 20px;
		width: 100%;
	}
}

@media screen and (max-width: 640px) {
	.text-img__img {
		/* display: none; */
		position: static;
		width: 100%;
	}

	.text-img__wrapper {
		flex-direction: column-reverse;
		gap: 20px;
	}

	.text-img_reverse .text-img__body {
		order: unset;
	}

	.text-img__body {
		padding: 0;
	}

	.text-img__item {
		max-width: none;
	}

	.home {
		/* padding: 140px 0 60px; */
		padding: 90px 0 60px;
	}

	.home__img {
		opacity: 0.6;
		bottom: 38px;
	}

	.home__bg {
		/* height: calc(100% - 500px); */
	}

	.home__text {
		padding: 0;
	}

	.about {
		padding-top: 40px;
	}

	.about__img {
		/* display: none; */
		/* left: 0; */
		left: -55px;
		z-index: -1;
	}

	.about__bg {
		right: 0 !important;
	}

	.about__wrapper {
		margin: 0;
		padding: 0;
	}
}

@media screen and (max-width: 570px) {
	.section {
		padding: 30px 0;
	}

	.text-90 {
		font-size: 65px;
		line-height: 110%;
	}

	.text-60 {
		font-size: 30px;
		line-height: 110%;
	}

	.text-40 {
		font-size: 26px;
		line-height: 130%;
	}

	.text-18 {
		font-size: 16px;
		line-height: 120%;
	}

	.container {
		padding: 0 10px;
	}

	.header {
		padding: 20px 0;
	}

	.header__btn {
		padding: 3px 15px 5px;
		min-height: 44px;
		font-size: 20px;
		/* display: none; */
	}

	.header__panel .header__btn {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		width: 100%;
		margin-right: 10px;
	}

	.header__panel-top {
		display: flex;
		justify-content: start;
		align-items: center;
		margin-bottom: 20px;
	}



	.header__panel-cart,
	.header__detail-nav__call,
	.header__panel-wa {
		/* height: 44px; */
		height: 37px !important;
	}

	.header__panel-cart {
		width: 37px;
		padding: 0;
		position: static;
	}

	.header__panel-cart svg {
		width: 21px !important;
		height: 21px !important;
	}

	.header__detail-nav__back {
		display: flex !important;
	}

	.header:has(.header__detail-nav__back) .header__logo {
		display: none;
	}

	.header:has(.header__detail-nav__back) .header__detail-nav__back {
		margin-right: auto;
	}

	.header:has(.header__detail-nav__back) .header__body {
		width: 100%;
	}

	.header__panel-cart svg,
	.header__menu-btn,
	.header__detail-nav__call svg,
	.header__detail-nav__back svg,
	.header__panel-wa svg {
		height: 37px !important;
		width: 37px !important;
	}

	.header__panel-cart:not(:last-child),
	.header__panel-wa:not(:last-child) {
		/* margin-right: 10px; */
		margin-right: 0;
	}

	.header__panel-body {
		padding: 30px;

		padding-bottom: 80px;
	}

	.header__nav {
		font-size: 20px;
	}

	.header__contacts {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
		gap: 20px;
	}

	.header__contacts-label {
		text-align: left;
	}

	.header .nav__list {
		gap: 20px;
	}

	.footer__logo {
		max-width: 265px;
	}

	.footer__contact-item {
		gap: 10px;
	}

	.text-img {
		padding-top: 0;
	}

	.text-img__subtitle {
		font-size: 20px;
		line-height: 125%;
	}

	.text-img__wrapper::after {
		top: 55px;
		width: 600px;
		height: 400px;
		-webkit-filter: blur(140px);
		filter: blur(140px);
		opacity: .4;
	}

	.agency__item {
		height: 350px;
		padding: 20px;
	}

	#about-popup .agency__item {
		padding: 10px;
	}

	.objects__wrapper {
		/* display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column; */
	}

	.home__title {
		font-size: 25px;
		line-height: 110%;
	}

	.home__content {
		font-size: 16px;
		line-height: 130%;
	}

	.home__body {
		gap: 30px;
	}

	.home__btn {
		/* width: 100%; */
		width: 47%;
		border-width: 1px;
	}

	.about__title {
		font-size: 23px;
		line-height: 110%;
		margin-bottom: 290px;
	}

	.about {
		padding-bottom: 30px;
	}

	.about__img {
		top: 70px;
		left: -45px;
	}

	.about__bg {
		right: -350px;
	}

	.form__check-list {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}

	.form__info-title {
		font-size: 20px;
		line-height: 120%;
	}

	.form__info {
		padding: 20px;
	}

	.form__body {
		padding: 30px 20px 40px;
	}

	.form__img {
		height: 280px;
		width: 155px;
	}

	.form-block .form__body {
		padding-right: 20px;
	}

	.tile__title {
		font-size: 26px !important;
		line-height: 120%;
	}

	.tile__body {
		padding: 0 10px !important;
	}

	.tile__img::after {
		width: calc(100% - 12px);
		height: calc(100% - 12px);
	}

	.tile__preview .tile__name {
		font-size: 23px;
		line-height: 120%;
	}

	.tile_slider .tile__item {
		padding: 18px 14px;
	}

	.detail {
		padding-top: 0;
	}

	.detail__body::after {
		top: 170px;
	}

	.detail__btn {
		width: 100%;
	}

	.plan__navigation {
		position: static;
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: flex-start;
		margin-top: 35px;
	}

	.plan__desc {
		margin-top: 20px;
	}

	.plan__wrapper {
		padding: 0;
		gap: 20px;
	}

	.catalog:not(.catalog_tile) {
		padding-top: 100px;
	}

	.catalog__filter-wrapper {
		padding: 90px 10px 10px;
	}

	.catalog_tile .catalog__wrapper {
		/* padding: 30px 20px; */

		padding: 0;
		border: none;
	}

	.catalog-card {
		padding: 15px 10px;
	}

	.catalog-card__name {
		font-size: 23px;
		line-height: 130%;
	}

	.catalog-card__info {
		font-size: 16px;
		line-height: 120%;
	}

	.catalog-card__cost-num {
		font-size: 20px;
		line-height: 125%;
	}

	.detail-about__slide-img {
		height: 200px;
	}

	.detail-about__tab-img {
		height: 215px;
	}

	.detail-about__navigation {
		/* display: none; */
	}

	.detail-about__slider-wrapper {
		display: flex;
		/* flex-direction: column; */
		/* gap: 10px; */
	}

	.detail-about__slide-img {
		height: 236px;
	}

	.text-img__img_mob-hide {
		display: none;
	}

	.--hidden-xs {
		display: none !important;
	}

	.dual-popup__top {
		flex-direction: column-reverse;
		padding-top: 50px;
		position: relative;
	}

	.dual-popup__top-slider {
		width: 100%;
		margin-top: 20px;
	}

	.dual-popup__top .dual-popup__col-header {
		position: absolute;
		top: 0;
	}
}

@media screen and (min-width: 570px) {

	/* .detail__content .read-more__text {
		max-height: none !important;
	} */

	/* .detail__content .read-more__btn {
		display: none;
	}

	.home__content .read-more__text {
		max-height: none !important;
	}

	.home__content .read-more__btn {
		display: none;
	}

	.tile .read-more__text {
		max-height: none !important;
	}

	.tile .read-more__btn {
		display: none;
	} */
}

.catalog__filter-close {
	color: #fff;
	cursor: pointer;
	z-index: 1000;
	display: none;
}

@media screen and (max-width: 768px) {
	.catalog__filter-close {
		display: flex;
	}
}

.--data {
	z-index: 10000000;
}

.--data.accordion__item_open .accordion__body {
	overflow: initial !important;
}

.filter__line {
	display: flex;
	justify-content: start;
	align-items: center;
	font-size: 16px;
}

.filter__line>span {
	margin: 0 2px;
}

.catalog__filter-search {
	margin-bottom: 10px;
	display: block;
}

.catalog__filter-search__field {
	outline: none;
	border: none;
	background: transparent;
	padding: 7px 10px 7px 0px;
	gap: 24px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.30);

	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 130%;
	/* 20.8px */
}

.new-reviews {}

.new-reviews__wrapper {}

.new-reviews__headline {
	display: flex;
	justify-content: space-between;
	align-items: start;
	margin-bottom: 20px;
}

.new-reviews__header {
	margin: 0;
}

.new-reviews__nav {
	display: flex;
	justify-content: start;
	align-items: center;
}

.new-reviews__nav-item {}

.new-reviews__nav-item:not(:last-child) {
	margin-right: 5px;
}

.new-reviews__slider {}

.new-reviews__slide {
	min-height: 330px;
	padding: 20px;
	border-radius: 10px;
	border: 1px solid var(--rich-copper-BC6561, #BC6561);
	position: relative;
	display: flex;
	flex-direction: column;
	overflow: hidden;
}

.new-reviews__slide::after {
	content: '';
	width: 461px;
	height: 461px;
	border-radius: 461px;
	background: radial-gradient(50% 50% at 50% 50%, #9B6D5E 0%, #12141C 100%);
	position: absolute;
	top: 30%;
	left: 30%;
	z-index: -1;
}

.new-reviews__text {}

.new-reviews__author {
	text-align: right;
	margin-top: auto;
}

.new-reviews__btn {
	margin-top: 20px;
	padding: 18px;
	display: block;

	border-radius: 5px;
	border: 1px solid var(--rich-copper-BC6561, #BC6561);
	background: var(--black-btn-bg-30000000, rgba(0, 0, 0, 0.30));
	backdrop-filter: blur(10px);
	text-align: center;
}

.new-review {}

.new-review__headline {
	display: flex;
	justify-content: space-between;
	align-items: start;
	margin-bottom: 20px;
}

.new-review__header {
	margin: 0;
}

.new-review__all {
	background: var(--gradient-C56C68-12141C, linear-gradient(0deg, #C56C68 0%, #12141C 100%));
	backdrop-filter: blur(5px);
}

.new-review__items {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 20px;
}

.new-review__item {
	padding: 20px;
	border-radius: 10px;
	border: 1px solid var(--Grey-A5A5A5, #A5A5A5);
	position: relative;
	overflow: hidden;
}

.new-review__item::after {
	content: '';
	width: 461px;
	height: 461px;
	border-radius: 461px;
	background: radial-gradient(50% 50% at 50% 50%, #9B6D5E 0%, #12141C 100%);
	position: absolute;
	top: 30%;
	left: 30%;
	z-index: -1;
}

.new-review__tag {
	padding: 5px 15px;
	color: var(--Grey-A5A5A5, #A5A5A5);
	font-size: 18px;
	font-weight: 400;
	line-height: 130%;
	/* 23.4px */
	margin-bottom: 10px;
	border-radius: 5px;
	border: 1px solid var(--Grey-A5A5A5, #A5A5A5);
}

.new-review__img {
	overflow: hidden;
	height: 220px;
	margin-bottom: 20px;
}

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

.new-review__date {
	margin-bottom: 5px;
}

.new-review__name {
	margin-bottom: 20px;
}

.new-review__link {}

.new-faq {}

.new-faq__wrapper {}

.new-faq__header {
	margin-bottom: 20px;
}

.new-faq__items {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.new-faq__item {
	padding: 10px;
	border-radius: 10px;
	border: 1px solid var(--rich-copper-BC6561, #BC6561);
}

.new-faq__item:not(:last-child) {
	margin-bottom: 20px;
}

.new-faq__trigger {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.new-faq__text {}

.new-faq__btn {
	flex-shrink: 0;
	cursor: pointer;
	display: flex;
	justify-content: center;
	align-items: center;
}

.new-faq__btn .active {
	display: none;
}

.new-faq__content {
	display: none;
}

.new-faq__inner {
	padding-top: 10px;
}

.new-reviews__detail {
	position: relative;
}

.new-reviews__detail::before {
	display: block;
	content: "";
	width: 1500px;
	height: 950px;
	border-radius: 50%;
	background: radial-gradient(50% 50% at 50% 50%, rgba(221, 164, 144, 0.9) 0%, rgba(18, 20, 28, 0) 60%);
	position: absolute;
	top: 0;
	left: 0;
	-webkit-filter: blur(100px);
	filter: blur(100px);
	pointer-events: none;
	-webkit-transform: translate(-35%, -45%);
	transform: translate(-35%, -45%);
	z-index: -1;
}

.new-reviews__detail::after {
	display: block;
	content: "";
	width: 1500px;
	height: 950px;
	border-radius: 50%;
	background: radial-gradient(50% 50% at 50% 50%, rgba(221, 164, 144, 0.9) 0%, rgba(18, 20, 28, 0) 60%);
	position: absolute;
	top: 0;
	left: 0;
	-webkit-filter: blur(100px);
	filter: blur(100px);
	pointer-events: none;
	-webkit-transform: translate(60%, 50%);
	transform: translate(60%, 50%);
	z-index: -1;
}

.new-reviews__detail-wrapper {}

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

.new-reviews__detail-left {}

.new-reviews__detail-headline {
	margin-bottom: 61px;
	display: flex;
	justify-content: start;
	align-items: center;
}

.new-reviews__detail-date {
	margin-right: 10px;
}

.new-review__tag {}

.new-reviews__detail-content {}

.new-reviews__detail-content hr {
	height: 1px;
	background: #fff;
}

.new-reviews__detail-content h1 {
	margin-bottom: 20px;
}

.new-reviews__detail-content p {
	margin: 20px 0;
}

.new-reviews__detail-content img {
	width: 100%;
}

.new-reviews__detail-right {}

.new-reviews__detail-right img {
	width: 100%;
}

@media screen and (max-width: 1024px) {

	.new-reviews__detail::after,
	.new-reviews__detail::before {
		display: none;
	}

	.new-review__items {
		grid-template-columns: 1fr 1fr;
	}

	.new-faq__items {
		grid-template-columns: 1fr;
	}

	.new-reviews__detail-grid {
		display: flex;
		flex-direction: column-reverse;
	}

	.new-reviews__detail-headline {
		display: flex;
		flex-direction: column;
		align-items: start;
	}

	.new-reviews__detail-date {
		margin-right: 0;
		margin-bottom: 15px;
	}
}

@media screen and (max-width: 768px) {
	.new-review__items {
		grid-template-columns: 1fr;
	}

	.new-review__headline {
		flex-direction: column;
		align-items: start;
	}

	.new-review__all {
		margin-top: 15px;
		margin-left: auto;
	}

	.--single .arenda__item {
		width: 100%;
		margin-left: 0;
	}
}

.additional {}

.additional__wrapper {}

.additional__headline {
	display: flex;
	justify-content: space-between;
	align-items: start;
	margin-bottom: 30px;
}

.additional__nav {
	margin-top: 0;
}

.additional__title {
	margin: 0;
}

.additional__items {
	/* display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	gap: 10px; */
	padding: 30px 0;
	overflow: visible;
}

.additional__item-wrap {
	width: 337px;
	position: relative;
}

.additional__item-wrap:nth-child(even) {
	bottom: -30px;
}

.additional__item {
	display: flex;
	position: relative;
	border-radius: 5px;
	overflow: hidden;
	border: 1px solid var(--rich-copper-BC6561, #BC6561);
	z-index: 10;
}

.additional__item img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: -2;
}

.additional__item span {
	margin-top: auto;
	color: #fff;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 20px 30px;
}

.additional__item::before {
	content: '';
	width: 238px;
	height: 238px;
	border-radius: 238px;
	background: radial-gradient(50% 50% at 50% 50%, #9B6D5E 0%, transparent 100%);
	position: absolute;
	bottom: -130px;
	right: -75px;
}

.additional__item::after {
	content: '';
	display: block;
	width: 100%;
	padding-top: 100%;
	background: linear-gradient(197deg, rgba(5, 5, 6, 0.10) 38.43%, #050506 80.07%);
}

.arenda {}

.arenda__wrapper {}

.arenda__title {
	margin-bottom: 30px;
}

.arenda__items {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}

.arenda__item {
	display: flex;
	justify-content: start;
	border: 1px solid #BC6561;
	border-radius: 5px;
	overflow: hidden;
	cursor: pointer;
}

.arenda__img {
	position: relative;
	width: 300px;
	display: flex;
	justify-content: start;
	flex-shrink: 0;
}

.arenda__img::before {
	content: '';
	width: 100%;
	padding-top: 100%;
	display: block;
}

.arenda__img img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.arenda__body {
	padding: 20px;
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: end;
	width: 100%;
}

.arenda__body span {}

.arenda__body::after {
	content: '';
	width: 310px;
	height: 310px;
	position: absolute;
	bottom: -146px;
	right: -131px;
	display: block;
	border-radius: 238px;
	background: radial-gradient(50% 50% at 50% 50%, #9B6D5E 0%, transparent 100%);
	z-index: -10;
}

.dual-popup {
	max-width: 921px !important;
	width: 100%;
	padding: 0 !important;
	border-radius: 5px;
	border: 1px solid var(--rich-copper-BC6561, #BC6561);
	display: none;
	background: #000 !important;
	color: #fff;
}

.dual-popup__inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	/* align-items: end; */
	gap: 20px;
	padding: 50px 40px 5px;
	position: relative;
	overflow: hidden;
}

.dual-popup__col {}

.dual-popup__col-header {
	margin-bottom: 20px;
	grid-column: 1/3;
	font-size: 35px;
}

.dual-popup__top-text p {
	margin: 15px 0;
}

.dual-popup__inner ul {
	padding-left: 15px;
	list-style-type: disc;
	margin: 15px 0;
}

.dual-popup__inner ul li {
	list-style-type: disc;
}

.dual-popup__content {
	padding: 30px;
	border-radius: 6px;
	background: rgba(0, 0, 0, 0.30);
	backdrop-filter: blur(5px);
	height: 100%;
}

.dual-popup__content ul {
	list-style-type: disc;
	padding-left: 16px;
}

.dual-popup__content ul li {
	margin-bottom: 10px;
	list-style: initial;
}

.dual-popup__content p {
	margin: 20px 0;
}

.dual-popup__content h3 {
	margin-bottom: 5px;
}

.dual-popup__content a {
	display: block;
}

.dual-popup__inner::after {
	content: '';
	width: 910px;
	height: 910px;
	position: absolute;
	bottom: -146px;
	right: -131px;
	display: block;
	border-radius: 238px;
	background: radial-gradient(50% 50% at 50% 50%, #9B6D5E 0%, transparent 100%);
	z-index: -10;
}

@media screen and (max-width: 1150px) {
	.additional__items {
		grid-template-columns: 1fr 1fr 1fr;
	}
}

@media screen and (max-width: 920px) {
	.additional__items {
		grid-template-columns: 1fr 1fr;
	}

	.dual-popup__col-header {
		grid-column: 1/2;
	}

	.dual-popup__inner {
		grid-template-columns: 1fr;
	}

	.arenda__items {
		grid-template-columns: 1fr;
	}
}

@media screen and (max-width: 600px) {
	.dual-popup__content {
		padding: 10px 20px;
	}

	.dual-popup__inner::after {
		width: 810px;
		height: 810px;
		bottom: -146px;
		right: -333px;
	}

	.dual-popup__inner {
		padding: 50px 20px 30px;
	}

	.additional__items {
		grid-template-columns: 1fr;
	}

	.arenda__items {
		display: flex;
		justify-content: start;
		align-items: start;
		flex-direction: column;
	}

	.arenda__body {
		padding: 7px;
	}

	.arenda__item:not(:last-child) {
		margin-bottom: -62px;
	}

	.arenda__item:nth-child(odd) {
		margin-left: auto;
	}

	.arenda__img {
		width: 42%;
	}

	.additional__nav {
		display: none;
	}

	.arenda__item {
		width: 60%;
	}

	.arenda__body span {
		font-size: 12px;
		line-height: 120%;
	}
}


.home__btns {
	display: flex;
	justify-content: start;
	align-items: center;
	flex-wrap: wrap;
}

.detail__btns {
	display: flex;
	justify-content: start;
	align-items: center;
	flex-wrap: wrap;
}

.detail__btn:not(:last-child) {
	margin-right: 10px;
}

@media screen and (max-width: 768px) {
	.detail__btn:not(:last-child) {
		margin-right: 0px;
	}
}


.new-review__body {
	display: grid;
	grid-template-columns: 1fr 4fr;
	gap: 20px;
	padding-top: 0;
}

.catalog__filter-checkbox.is-active {
	color: rgba(219, 178, 165, 1);
	text-decoration: underline !important;
}

@media screen and (max-width: 1200px) {
	.new-review__body {
		grid-template-columns: 1fr;
	}
}

.detail-buttons {
	display: flex;
	justify-content: start;
	align-items: center;
	position: fixed;
	bottom: 23px;
	left: 23px;
	z-index: 100;
}

.detail-buttons__back {
	padding: 20px 40px;
	border-radius: 10px;
	border: 1px solid var(--white-ffffff, #FFF);
	background: var(--black-btn-bg-30000000, rgba(0, 0, 0, 0.30));
	backdrop-filter: blur(5px);
	margin-right: 10px;

	color: var(--White, #FFF);
	font-size: 14px;
	font-weight: 400;
	line-height: 110%;
	/* 15.4px */
	display: flex;
	justify-content: start;
	align-items: center;

}

.detail-buttons__back svg {
	margin-right: 5px;
}

.detail-buttons__call {
	display: none;
}

.detail-buttons__call svg {
	background: linear-gradient(0deg, #C56C68 0%, #12141C 100%);
	overflow: hidden;
	border-radius: 10px;
}


.section.detail::after {
	content: '';
	width: 100%;
	height: 131px;
	background: linear-gradient(180deg, rgba(18, 20, 28, 0.00) 0%, #12141C 100%);
	position: fixed;
	bottom: 0;
	left: 0;
	z-index: 90;
	pointer-events: none;
}

.header__detail-nav {
	display: block;
	justify-content: start;
	align-items: center;
}

.header__detail-nav__back {
	display: flex;
	justify-content: center;
	align-items: center;
	/* margin-right: 10px; */
	border-radius: 6px;
	border: 1px solid var(--white-ffffff, #FFF);
	background: var(--black-btn-bg-30000000, rgba(0, 0, 0, 0.30));
	backdrop-filter: blur(5px);
}

.header__detail-nav__call {
	height: 45px;
}

.detail__bg-slider {
	position: relative;
}

.detail__bg__navigation {
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 1000;
	padding: 20px;
}


@media screen and (max-width: 1390px) {
	.detail-buttons {
		right: 100px;
	}
}

@media screen and (max-width: 700px) {
	.detail-buttons {
		display: none;
	}

	.header-arenda-btn.--targeted {
		display: none;
	}

	.header__detail-nav.--targeted {
		display: flex;
	}
}

.dual-popup__inner.--block {
	display: block;
	gap: 0;
	padding-bottom: 30px;
}

.dual-popup__top {
	display: flex;
	justify-content: start;
	align-items: start;
}

.dual-popup__top-text {
	max-width: 351px;
	width: 100%;
	margin-right: 19px;
}

.dual-popup__top-slider {
	position: relative;
}

.dual-popup__top-slide {
	height: 318px;
}

.dual__navigation {
	margin-top: 0;
	position: absolute;
	bottom: 0;
	right: 0;
	padding: 20px;
	z-index: 10;
	display: flex;
	justify-content: start;
	align-items: center;
}

.dual-popup__bot {
	margin-top: 20px;
}

.plan-restyle {}

.plan-restyle__wrapper {}

.plan-restyle__title {
	margin-bottom: 40px;
}

.plan-restyle__body {}

.plan-restyle__tabs {
	display: flex;
	justify-content: start;
	align-items: start;
	margin-bottom: 13px;
}

.plan-restyle__tab {
	padding: 15px 12px;
	width: 100%;
	border-radius: 6px;
	border: 2px solid var(--rich-copper-BC6561, #9B6D5E);

	background: var(--gradient-C56C68-12141C, linear-gradient(0deg, #9B6D5E 0%, #12141C 100%));

	/* background: radial-gradient(50% 50% at 50% 50%, #9B6D5E 0%, transparent 100%); */

	backdrop-filter: blur(5px);
	position: relative;

	color: var(--white-ffffff, #FFF);
	font-size: 35px;
	line-height: 110%;
	/* 38.5px */
	text-transform: uppercase;
	text-align: center;
	box-sizing: content-box;
	transition: .3s;
	cursor: pointer;
}

.plan-restyle__tab.is-active {
	background: transparent;
}

.plan-restyle__tab.is-active::after {
	content: '';
	width: 100%;
	height: 25px;
	border-left: 2px solid var(--rich-copper-BC6561, #9B6D5E);
	border-right: 2px solid var(--rich-copper-BC6561, #9B6D5E);
	display: block;
	position: absolute;
	bottom: -17px;
	left: -2px;
	z-index: 10;
	background: var(--black-2);
	box-sizing: content-box;
}

.plan-restyle__tab:not(:last-child) {
	margin-right: 20px;
}

.plan-restyle__content {
	padding: 30px 40px;
	border-radius: 3px;
	border: 2px solid var(--rich-copper-BC6561, #9B6D5E);
}

.plan-restyle__content-inner {}

.plan-restyle__content-content {
	display: flex;
	justify-content: start;
	align-items: start;
}

.plan-restyle__content-tabs {
	max-width: 360px;
	width: 100%;
	margin-right: 60px;
	flex-shrink: 0;
}

.plan-restyle__content-tab {
	color: var(--white-ffffff, #FFF);
	font-size: 25px;
	font-weight: 400;
	line-height: 125%;
	padding-bottom: 10px;
	position: relative;
}

.plan-restyle__content-tab::after {
	content: '';
	width: 100%;
	height: 1px;
	background: #fff;
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
}

.plan-restyle__content-tab:not(:last-child) {
	margin-bottom: 20px;
}

.plan-restyle__content-tab.is-active::after {
	background: #BC6561;
	width: 120%;
}

.plan-restyle__content-content {}

.plan-restyle__content-content__inner {}

.plan-restyle__content__slider {
	position: relative;
}

.plan__slide {}

.plan-restyle__navigation {
	position: absolute;
	bottom: 0;
	right: 0;
	padding: 20px 20px;
	z-index: 10;
}

.plan-restyle__prev {}

.plan-restyle__next {}

.plan-restyle * {
	min-width: 0px;
	min-height: 0px;
}

[data-sub-tab-content]:not(.is-active),
[data-tab-content]:not(.is-active) {
	display: none;
}

.detail-about__text {
	height: 400px;
	overflow-y: auto;
	flex-shrink: 0;

	scrollbar-width: thin;
	scrollbar-color: #BC6561 black;
}

.detail-about__text::-webkit-scrollbar-thumb {
	background-color: #BC6561;
	/* Цвет бегунка */
	border-radius: 10px;
	/* Округление бегунка */
}

.detail-about__text::-webkit-scrollbar-track {
	background: transparent;
	/* Цвет дорожки */
}

.detail-about__text::-webkit-scrollbar {
	width: 15px;
	/* Ширина всего элемента навигации */
}

.dual-popup__top-slide img {
	max-height: 500px;
	height: 100%;
	width: 100%;
	object-fit: cover;
}

@media screen and (max-width: 1200px) {
	.accordion__body {
		display: flex;
		flex-direction: column-reverse;
		/* padding-bottom: 70px; */
	}

	.detail-about__slider {
		margin-top: 0;
		margin-bottom: 20px;
	}

	.detail-about__text {
		max-height: 250px;
		height: 100%;
	}

	.detail-about {
		padding-bottom: 0;
	}
}

@media screen and (max-width: 1135px) {
	.plan-restyle__content-content {
		flex-direction: column;
		align-items: center;
		width: 100%;
	}

	.plan-restyle__content-tab {
		font-size: 18px;
		text-align: center;
	}

	.plan-restyle__content-tab:not(:last-child) {
		margin-bottom: 0;
	}

	.plan-restyle__content-tab.is-active::after {
		width: 100%;
	}

	.plan-restyle__content-tabs {
		max-width: 100%;
		margin-right: 0;
		margin-bottom: 30px;
		display: grid;
		grid-template-columns: 1fr 1fr 1fr 1fr;
		gap: 10px 20px;
	}

	.plan-restyle__content-content__inner {
		width: 100%;
	}

	.plan-restyle__tab {
		font-size: 25px;
	}

	.plan-restyle__content {
		padding: 30px 24px;
	}
}

@media screen and (max-width: 768px) {
	.plan-restyle__content-tabs {
		grid-template-columns: 1fr 1fr;
	}

	.plan-restyle__navigation {
		position: static;
		justify-content: end;
		padding: 0;
	}
}

.section.detail+.catalog_tile {
	padding-top: 0px;
}


.fancy-gallery {}

.fancy-gallery * {
	min-width: 0;
}

.fancy-gallery__wrapper {}

.fancy-gallery__header {
	margin-bottom: 20px;
}

.fancy-gallery__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
}

.fancy-gallery__item {}

.fancy-gallery__name {
	margin-bottom: 15px;
	font-weight: 400;
	font-size: 25px;
	line-height: 125%;
	letter-spacing: 0%;
}

.fancy-gallery__slider {}

.fancy-gallery__slide {}

.fancy-gallery__slide img {
	width: 100%;
}

.fancy-gallery__navigation {
	position: absolute;
	bottom: 20px;
	right: 20px;
	z-index: 130;
}

@media screen and (max-width: 980px) {
	.fancy-gallery__grid {
		grid-template-columns: 1fr;
	}
}


@media screen and (max-width: 600px) {
	.objects__item {
		height: 250px;
	}

	.objects__img img {
		object-position: bottom;
	}

	.home__btns {
		position: relative;
		top: 65px;
	}

	.home__btn {
		background: rgba(0, 0, 0, 0.1);
		-webkit-backdrop-filter: blur(5px);
		backdrop-filter: blur(2px);
		margin-top: 15px;
	}

	.plan-restyle__tab {
		font-size: 12px;
		padding: 10px 0;
	}
}

.additional__title {
	z-index: 1;
}

sup {
	font-size: 12px;
}

.--apart .detail__bg-slide::after {
	display: none;
}

.apart {}

.apart__wrapper {}

.apart__title {}

.apart__title-slider {}

.apart__title-slide {
	height: 70vh;

	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: end;
}

/* .apart__title-slide::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	border-radius: 10px;
	background: linear-gradient(0deg, rgba(20, 20, 20, 0.00) 58.25%, rgba(20, 20, 20, 0.40) 111.45%);
	display: block;
}

.apart__title-slide::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: -1;
	background: linear-gradient(32deg, rgba(20, 20, 20, 0.80) 10.44%, rgba(20, 20, 20, 0.00) 68.94%);
	display: block;
} */

.apart__title-img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: -2;
}

.apart__title__text {
	/* padding-bottom: 80px; */
	margin-top: 20px;
}

.apart__title-address {
	color: var(--white-ffffff, #FFF);

	font-family: "Palatino Linotype";
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: 130%;
	margin-bottom: 20px;
}

.apart__title-name {
	color: var(--white-ffffff, #FFF);

	font-family: "Palatino Linotype";
	font-size: 90px;
	font-style: normal;
	font-weight: 400;
	line-height: 110%;
}

.apart__title__navigation {
	justify-content: start;
}


.apart__info {
	padding-top: 70px;
	position: relative;
}

.apart__info-decor {
	position: absolute;
	z-index: -1;
	bottom: -385px;
	right: -335px;
}

.apart__info-wrapper {}

.apart__info-grid {
	display: flex;
	justify-content: space-between;
	align-items: start;
}

.apart__info-left {
	max-width: 705px;
	width: 100%;
}

.apart__info-right {
	max-width: 347px;
	width: 100%;
}

.apart__info-right__top {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 33px 10px;
	flex-shrink: 0;
}

.apart__info-item {
	color: #fff;
}

.apart__info-name {
	opacity: .4;
}

.apart__info-val {}

@media screen and (max-width: 1024px) {

	.apart__info {
		padding-top: 10px;
	}

	.apart__info-right__top {
		gap: 10px;
	}

	.apart__info-grid {
		flex-direction: column-reverse;
	}

	.apart__info-right {
		margin-bottom: 20px;
	}

	.apart__title-name {
		font-size: 65px;
		line-height: 110%;
	}
}

@media screen and (max-width: 1024px) {
	.apart__title-name {
		font-size: 40px;
		line-height: 110%;
	}
}

.apart__info-right__bot {
	display: flex;
	flex-wrap: wrap;
	margin-top: 60px;
}

.apart__info-right__btn {
	padding: 17px 18px;
	border-radius: 6px;
	border: 2px solid var(--rich-copper-BC6561, #BC6561);
	background: var(--black-btn-bg-30000000, rgba(0, 0, 0, 0.30));
	backdrop-filter: blur(5px);

	color: var(--white-ffffff, #FFF);
	text-align: center;

	font-family: "Palatino Linotype";
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 100%;
	/* 16px */
	white-space: nowrap;

	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}

.apart__info-right__btn._isFavorite {
	background: linear-gradient(180deg, #12141C 0%, #BC6561 100%) !important;
}

.apart__info-right__btn:first-child {
	width: 100%;
}

.apart__info-right__bot-row {
	margin-top: 5px;
	display: flex;
	gap: 5px;
}

.apart__info-head {
	color: var(--white-ffffff, #FFF);

	/* 1920/t 25 Palatino regular */
	font-size: 25px;
	font-style: normal;
	font-weight: 400;
	line-height: 125%;
	/* 31.25px */
	margin-bottom: 10px;
}

.section.objects {
	position: relative;
	z-index: 10;
}

.footer__copy {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-top: 40px;
	font-size: 14px;
	width: 100%;

	color: var(--grey);
}

.footer__copy a:not(:last-child) {
	margin-bottom: 15px;
}

@media screen and (max-width: 768px) {
	.apart__title-slide {
		height: 40vh;
	}

	/* .apart__title {
		display: none;
	} */
	.apart__title-mobile {
		display: block;
	}
}

.checkbox__text a {
	text-decoration: underline;
}

.catalog-card__add {
	position: absolute;
	/* top: 50px;
	right: 40px; */
	top: 49px;
	right: 39px;
	z-index: 9;
	padding: 9px;
	border-radius: 6px;
	border: 1px solid var(--white-ffffff, #FFF);
	background: var(--black-btn-bg-30000000, rgba(0, 0, 0, 0.30));
	backdrop-filter: blur(5px);

	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}

.catalog-card__add._isFavorite {
	background: linear-gradient(180deg, #12141C 0%, #BC6561 100%);
}

@media screen and (max-width: 768px) {
	.detail__bg {
		height: 40vh;
	}

	.catalog-card__add {
		top: 36px;
		right: 20px;
	}

}


.section.detail {
	padding-top: 75px;
}

.header {
	background: #000 !important;
}

.apart {
	padding-top: 40px;
}

@media screen and (max-width: 768px) {
	.detail__btn {
		border-width: 1px;
	}

	.detail__btns {
		justify-content: space-between;
	}

	.detail__btns .detail__btn:nth-child(2),
	.detail__btns .detail__btn:nth-child(3) {
		width: 47%;
	}
}






.new-section-1 {
	position: relative;
}

.new-section-1::before {
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	width: 1024px;
	height: 1968px;
	background: url('/local/templates/mosinvest_arenda/img/new-section-1-decor.png') no-repeat center center;
	background-size: cover;
	z-index: -1;
}

.new-section-1::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 999px;
	height: 1779px;
	background: url('/local/templates/mosinvest_arenda/img/new-section-1-decor-2.png') no-repeat center center;
	background-size: cover;
	z-index: -1;
}

.new-section-1__list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 26px;
}

.new-section-1__item {
	background: rgba(0, 0, 0, 0.15);
	border-radius: 10px;
	padding: 46px 6px;
}

/* .new-section-1__item:last-child {
	grid-column: span 3;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
} */

.new-section-1__item-title {
	font-family: "Palatino Linotype";
	font-weight: 400;
	font-size: 30px;
	line-height: 110%;
	text-transform: uppercase;
	text-align: center;
	color: #FFF;
	margin: 0 auto;
	margin-bottom: 30px;
	max-width: 95%;
	min-height: 99px;
}

.new-section-1__item img {
	max-width: 100%;
}

.new-section-1__item:last-child {
	display: none;
}

.new-section-1__item-bottom {
	margin-top: 65px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 24px;
}

@media screen and (max-width: 1279px) {
	.new-section-1::before {
		width: 512px;
		height: 984px;
	}

	.new-section-1::after {
		width: 499px;
		height: 889px;
	}

	.new-section-1__list {
		grid-template-columns: 1fr 1fr;
		gap: 20px;
	}

	.new-section-1__item:last-child {
		grid-column: span 1;
	}

	.new-section-1__item-title {
		font-size: 22px;
		margin-bottom: 3px;
	}

	.new-section-1__item-bottom {
		margin-top: 30px;
	}
}

@media screen and (max-width: 767px) {
	.new-section-1__list {
		grid-template-columns: 1fr 1fr;
		gap: 12px;
	}

	.new-section-1__item {
		display: flex;
		flex-direction: column;
		padding: 20px 10px;
	}

	.new-section-1__item-title {
		font-size: 16px;
	}

	.new-section-1__item img {
		margin-bottom: 30px;
		margin-inline: -9px;
		max-width: calc(100% + 18px);
	}

	.new-section-1__item-bottom {
		margin-top: auto;
	}

	.new-review__all {
		font-size: 15px;
		padding: 10px 20px;
		margin: 0 auto;
	}

	.new-section-1 .towers__next {
		display: none;
	}
}


.additional-services {
	position: relative;
	padding: 100px 0 150px;
	overflow: hidden;
	min-height: 900px;
}

.additional-services__wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
	min-height: 700px;
}

.additional-services__header {
	flex-shrink: 0;
	max-width: 570px;
	z-index: 10;
}

.additional-services__title {
	font-family: "Palatino Linotype";
	font-weight: 400;
	font-size: 40px;
	line-height: 110%;
	color: #FFF;
	margin: 0 0 60px 0;
	text-transform: uppercase;
	text-align: left;
}

.additional-services__navigation {
	display: flex;
	align-items: center;
	gap: 20px;
	justify-content: flex-start;
	z-index: 100;
}

.additional-services__cards {
	position: relative;
	height: 940px;
	width: 570px;
	flex-shrink: 0;
}

.additional-services__card {
	position: absolute;
	width: 570px;
	height: 740px;
	border-radius: 10px;
	overflow: hidden;
	pointer-events: none;
	transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
	transform-origin: center center;
}

.additional-services__card-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: absolute;
	top: 0;
	left: 0;
	transition: transform 0.4s ease;
}

.additional-services__card-overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	transition: opacity 0.3s ease;
}

.additional-services__card--5 {
	left: 0;
	top: 200px;
	transform: rotate(-28deg);
	z-index: 1;
}

.additional-services__card--5 .additional-services__card-overlay {
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(18, 20, 28, 0.9) 100%);
}

.additional-services__card--4 {
	left: 0;
	top: 150px;
	transform: rotate(-21deg);
	z-index: 2;
}

.additional-services__card--4 .additional-services__card-overlay {
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(18, 20, 28, 0.7) 100%);
}

.additional-services__card--3 {
	left: 0;
	top: 100px;
	transform: rotate(-14deg);
	z-index: 3;
}

.additional-services__card--3 .additional-services__card-overlay {
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(18, 20, 28, 0.5) 100%);
}

.additional-services__card--2 {
	left: 0;
	top: 50px;
	transform: rotate(-7deg);
	z-index: 4;
}

.additional-services__card--2 .additional-services__card-overlay {
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(18, 20, 28, 0.4) 100%);
}

.additional-services__card--1 {
	left: 0;
	top: 0;
	transform: rotate(7deg);
	z-index: 5;
	border: 1px solid #bc6561;
}

.additional-services__card--1 .additional-services__card-overlay {
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 50%, rgba(32, 49, 70, 0.6) 100%);
	opacity: 1;
}

.additional-services__card--1 .additional-services__card-content {
	pointer-events: auto;
}

.additional-services__card-content {
	position: absolute;
	inset: 0;
	z-index: 2;
	pointer-events: none;
}

.additional-services__card-title {
	position: absolute;
	bottom: 40px;
	left: 50%;
	transform: translateX(-50%);
	font-family: "Palatino Linotype";
	font-weight: 400;
	font-size: 42px;
	line-height: 110%;
	text-align: center;
	color: #97a7ba;
	margin: 0;
	text-transform: uppercase;
	pointer-events: auto;
	width: 100%;
	padding: 0 40px;
}

.additional-services__card-btn {
	position: absolute;
	top: 40px;
	left: 40px;
	backdrop-filter: blur(5px);
	background: linear-gradient(180deg, rgba(18, 20, 28, 0.3) 11.03%, rgba(169, 125, 112, 0.3) 100%);
	border: 1px solid #bc6561;
	border-radius: 6px;
	padding: 15px 38px 12px;
	color: #e8f1fd;
	font-size: 18px;
	text-decoration: none;
	transition: all 0.3s ease;
	font-family: "Palatino Linotype";
	display: inline-block;
	cursor: pointer;
	pointer-events: auto;
}

.additional-services__card-btn:hover {
	background: linear-gradient(180deg, rgba(188, 101, 97, 0.4) 0%, rgba(169, 125, 112, 0.4) 100%);
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(188, 101, 97, 0.3);
}

@keyframes cardAppear {
	from {
		opacity: 0;
		transform: translateY(50px) rotate(0deg);
	}

	to {
		opacity: 1;
	}
}

.additional-services__card--1 {
	animation: cardAppear 0.8s ease-out 0.5s backwards;
}

.additional-services__card--2 {
	animation: cardAppear 0.8s ease-out 0.4s backwards;
}

.additional-services__card--3 {
	animation: cardAppear 0.8s ease-out 0.3s backwards;
}

.additional-services__card--4 {
	animation: cardAppear 0.8s ease-out 0.2s backwards;
}

.additional-services__card--5 {
	animation: cardAppear 0.8s ease-out 0.1s backwards;
}

@media screen and (max-width: 1400px) {
	.additional-services__cards {
		transform: scale(0.8);
		transform-origin: left top;
		height: 752px;
	}
}

@media screen and (max-width: 1279px) {
	.additional-services {
		padding: 60px 0 100px;
		min-height: 700px;
	}

	.additional-services__wrapper {
		flex-direction: column;
		gap: 0;
		align-items: center;
	}

	.additional-services__header {
		max-width: 100%;
		width: 100%;
		display: contents;
	}

	.additional-services__title {
		font-size: 26px;
		line-height: 130%;
		margin-bottom: 30px;
		text-align: left;
		order: 1;
	}

	.additional-services__cards {
		width: 293px;
		height: 590px;
		transform: none;
		order: 2;
		margin-bottom: 40px;
	}

	.additional-services__navigation {
		justify-content: center;
		order: 3;
		margin-top: -75px;
	}

	.additional-services__card {
		width: 293px;
		height: 381px;
	}

	.additional-services__card--5 {
		top: 103px;
	}

	.additional-services__card--4 {
		top: 77px;
	}

	.additional-services__card--3 {
		top: 51px;
	}

	.additional-services__card--2 {
		top: 26px;
	}

	.additional-services__card-title {
		font-size: 26px;
		bottom: 20px;
	}

	.additional-services__card-btn {
		top: 20px;
		left: 20px;
		padding: 12px 30px 10px;
		font-size: 16px;
	}
}

@media screen and (max-width: 768px) {
	.additional-services__title {
		font-size: 22px;
	}

	.additional-services__card-title {
		font-size: 22px;
	}

	.additional-services__card-btn {
		font-size: 14px;
		padding: 10px 24px 8px;
	}
}



.presale-prep {
	position: relative;
	padding: 100px 0;
}

.presale-prep__title {
	font-family: "Palatino Linotype";
	font-weight: 400;
	font-size: 40px;
	line-height: 110%;
	color: rgba(255, 255, 255, 0.85);
	text-align: center;
	margin: 0 0 40px 0;
}

.presale-prep__cards {
	display: flex;
	gap: 22px;
	align-items: center;
	justify-content: center;
}

.presale-prep__card {
	background: rgba(0, 0, 0, 0.15);
	border-radius: 10px;
	padding: 80px 85px;
}

.presale-prep__card-inner {
	position: relative;
	width: 530px;
}

.presale-prep__card-img-wrap {
	position: relative;
	width: 100%;
	height: 530px;
	border-radius: 10px;
	overflow: hidden;
	border: 1px solid #bc6561;
	margin-bottom: 30px;
}

.presale-prep__card-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.presale-prep__card:hover .presale-prep__card-img {
	transform: scale(1.1);
}

.presale-prep__card-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 43.32%, rgba(32, 49, 70, 0.8) 100%);
	opacity: 0.5;
	z-index: 1;
	pointer-events: none;
}

.presale-prep__card-btn-wrap {
	position: absolute;
	top: -17px;
	left: 50%;
	transform: translateX(-50%) rotate(-6.683deg);
	z-index: 10;
}

.presale-prep__card-btn {
	backdrop-filter: blur(5px);
	background: linear-gradient(180deg, rgba(18, 20, 28, 0.3) 11.03%, rgba(169, 125, 112, 0.3) 100%);
	border: 1px solid #bc6561;
	border-radius: 6px;
	padding: 15px 38px 12px;
	color: #e8f1fd;
	font-size: 18px;
	text-decoration: none;
	transition: all 0.3s ease;
	font-family: "Palatino Linotype";
	display: inline-block;
	cursor: pointer;
	white-space: nowrap;
}

.presale-prep__card-btn:hover {
	background: linear-gradient(180deg, rgba(188, 101, 97, 0.4) 0%, rgba(169, 125, 112, 0.4) 100%);
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(188, 101, 97, 0.3);
}

.presale-prep__card-title {
	font-family: "Palatino Linotype";
	font-weight: 400;
	font-size: 32px;
	line-height: 110%;
	color: #97a7ba;
	text-align: center;
	margin: 0;
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.presale-prep__card {
	animation: fadeInUp 0.8s ease-out backwards;
}

.presale-prep__card:nth-child(1) {
	animation-delay: 0.1s;
}

.presale-prep__card:nth-child(2) {
	animation-delay: 0.2s;
}

@media screen and (max-width: 1279px) {
	.presale-prep {
		padding: 60px 0;
	}

	.presale-prep__title {
		font-size: 30px;
		margin-bottom: 40px;
	}

	.presale-prep__cards {
		/* flex-direction: column; */
		gap: 22px;
		/* max-width: 375px; */
		margin: 0 auto;
	}

	.presale-prep__card {
		padding: 35px;
		width: 100%;
	}

	.presale-prep__card-inner {
		width: 100%;
	}

	.presale-prep__card-img-wrap {
		height: auto;
		aspect-ratio: 1 / 1;
		margin-bottom: 30px;
	}

	.presale-prep__card-title {
		font-size: 23px;
	}
}

.reviews {
	position: relative;
	padding: 100px 0 150px;
	overflow: hidden;
	min-height: 900px;
}

.reviews__wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-direction: column;
	gap: 40px;
	min-height: 700px;
}

.reviews__header {
	flex-shrink: 0;
	max-width: 522px;
	z-index: 10;
}

.reviews__title {
	font-family: "Palatino Linotype";
	font-weight: 400;
	font-size: 40px;
	line-height: 110%;
	color: #FFF;
	margin: 0 0 60px 0;
	text-align: left;
}

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

.reviews__cards {
	position: relative;

	/* height: 925px;
	width: 565px; */

	width: 365px;
	height: 559px;

	flex-shrink: 0;
}

.reviews__card {
	position: absolute;
	/* width: 565px;
	height: 725px; */

	width: 365px;
	height: 525px;

	border-radius: 10px;
	overflow: hidden;
	pointer-events: none;
	transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
	transform-origin: center center;
	background: linear-gradient(180deg, #101219 0%, #323f4f 100%);
	border: 1px solid rgba(188, 101, 97, 0.49);
}

.reviews__card-inner {
	position: relative;
	padding: 77px 58px 50px;
	height: 100%;
	display: flex;
	flex-direction: column;
}

.reviews__card-name {
	font-family: "Palatino Linotype";
	font-weight: 400;
	font-size: 30px;
	line-height: 110%;
	color: rgba(255, 255, 255, 0.58);
	margin: 0 0 14px 0;
}

.reviews__card-rating {
	display: flex;
	gap: 6px;
	align-items: center;
	border: 1px solid rgba(69, 87, 129, 0.79);
	border-radius: 500px;
	padding: 7px 18px;
	width: fit-content;
	margin-bottom: 30px;
}

.reviews__card-text {
	font-family: "Nunito Sans";
	font-size: 18px;
	line-height: 130%;
	color: #e0eaf9;
	margin: 0 0 auto 0;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 10;
	-webkit-box-orient: vertical;
}

.reviews__card-date {
	font-family: "Nunito Sans";
	font-size: 18px;
	line-height: 130%;
	color: rgba(255, 255, 255, 0.6);
	margin: 20px 0 0 0;
}

.reviews__card--5 {
	left: 0;
	top: 200px;
	transform: rotate(-28deg);
	z-index: 1;
	opacity: 0.4;
}

.reviews__card--5 .reviews__card-name {
	color: rgba(255, 255, 255, 0.3);
}

.reviews__card--5 .reviews__card-rating {
	border-color: rgba(69, 87, 129, 0.31);
}

.reviews__card--5 .reviews__card-text {
	color: rgba(224, 234, 249, 0.6);
}

.reviews__card--4 {
	left: 0;
	top: 150px;
	transform: rotate(-21deg);
	z-index: 2;
}

.reviews__card--3 {
	left: 0;
	top: 100px;
	transform: rotate(-14deg);
	z-index: 3;
}

.reviews__card--2 {
	left: 0;
	top: 50px;
	transform: rotate(-7deg);
	z-index: 4;
}

.reviews__card--1 {
	left: 0;
	top: 0;
	transform: rotate(7deg);
	z-index: 5;
	border-color: #bc6561;
	pointer-events: auto;
}

@keyframes reviewAppear {
	from {
		opacity: 0;
		transform: translateY(50px) rotate(0deg);
	}

	to {
		opacity: 1;
	}
}

.reviews__card--5 {
	animation: reviewAppear 0.8s ease-out 0.1s backwards;
}

.reviews__card--4 {
	animation: reviewAppear 0.8s ease-out 0.2s backwards;
}

.reviews__card--3 {
	animation: reviewAppear 0.8s ease-out 0.3s backwards;
}

.reviews__card--2 {
	animation: reviewAppear 0.8s ease-out 0.4s backwards;
}

.reviews__card--1 {
	animation: reviewAppear 0.8s ease-out 0.5s backwards;
}

.reviews__counter {
	position: absolute;
	top: 100%;
	margin-top: 40px;
	left: calc(50% + 175px);
	transform: translateX(-50%) rotate(-20deg);
	font-family: "Palatino Linotype";
	font-size: 24px;
	line-height: 110%;
	color: rgba(255, 255, 255, 0.72);
	text-align: center;
	text-transform: uppercase;
	z-index: 6;
}

@media screen and (max-width: 1279px) {
	.reviews {
		padding: 60px 0 100px;
		min-height: auto;
		zoom: 1.18
	}

	.reviews__wrapper {
		flex-direction: column;
		gap: 0;
		align-items: center;
	}

	.reviews__header {
		max-width: 100%;
		width: 100%;
		display: contents;
	}

	.reviews__title {
		font-size: 26px;
		line-height: 130%;
		margin-bottom: 30px;
		text-align: left;
		order: 1;
	}

	.reviews__cards {
		width: 312px;
		height: 605px;
		transform: none;
		order: 2;
		margin-bottom: 40px;
		margin-left: 0;
	}

	.reviews__navigation {
		justify-content: center;
		order: 3;
	}

	.reviews__card {
		width: 312px;
		height: 401px;
	}

	.reviews__card--5 {
		top: 103px;
	}

	.reviews__card--4 {
		top: 77px;
	}

	.reviews__card--3 {
		top: 51px;
	}

	.reviews__card--2 {
		top: 26px;
	}

	.reviews__card-inner {
		padding: 43px 32px 32px;
	}

	.reviews__card-name {
		font-size: 17px;
		margin-bottom: 10px;
	}

	.reviews__card-rating {
		gap: 3px;
		padding: 4px 10px;
		margin-bottom: 18px;
	}

	.reviews__card-rating svg {
		width: 11px;
		height: 11px;
	}

	.reviews__card-text {
		font-size: 10px;
		-webkit-line-clamp: 12;
	}

	.reviews__card-date {
		font-size: 10px;
		margin-top: 12px;
	}

	.reviews__counter {
		left: 50%;
		margin-top: 30px;
		font-size: 18px;
		transform: translateX(-50%) rotate(0deg);
	}
}

.news {
	position: relative;
	padding: 100px 0 150px;
	overflow: hidden;
	min-height: 900px;
}

.news__wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
	min-height: 700px;
}

.news__header {
	flex-shrink: 0;
	max-width: 522px;
	z-index: 10;
}

.news__title {
	font-family: "Palatino Linotype";
	font-weight: 400;
	font-size: 40px;
	line-height: 110%;
	color: #FFF;
	margin: 0 0 60px 0;
	text-transform: uppercase;
	text-align: left;
}

.news__navigation {
	display: flex;
	align-items: center;
	gap: 20px;
	justify-content: flex-start;
}

.news__cards {
	position: relative;
	height: 950px;
	width: 890px;
	flex-shrink: 0;
	order: -1;
}

.news__card {
	position: absolute;
	/* width: 890px;
	height: 952px; */

	width: 490px;
	height: 552px;

	border-radius: 13px;
	overflow: visible;
	pointer-events: none;
	transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
	transform-origin: center center;
	/* padding: 102px 108px; */
	padding: 50px 56px;
	background: radial-gradient(73.69% 74.08% at 76.74% -12.95%, #12141C 0%, rgba(0, 0, 0, 0.00) 88.54%), radial-gradient(49.23% 63.58% at -9.63% 86.6%, #12141C 0%, rgba(0, 0, 0, 0.00) 100%), linear-gradient(153deg, #13141A 6.52%, #403533 41.79%, #312829 63.15%);
}

.news__card-inner {
	position: relative;
	/* width: 674px; */
	width: 383px;
	margin: 0 auto;
}

.news__card-background {
	display: none;
	position: absolute;
	width: 890px;
	height: 1014px;
	border-radius: 13px;
	left: 50%;
	transform: translateX(-50%);
	opacity: 0.4;
	background:
		radial-gradient(ellipse 561px 495px at 683px -131px, rgba(18, 20, 28, 1) 0%, rgba(9, 10, 14, 0.5) 44.27%, rgba(0, 0, 0, 0) 88.541%),
		radial-gradient(ellipse 464px 749px at -86px 879px, rgba(18, 20, 28, 1) 0%, rgba(9, 10, 14, 0.5) 50%, rgba(0, 0, 0, 0) 100%);
}

.news__card-background--1 {
	top: -347px;
	transform: translateX(-50%) rotate(-10.132deg);
}

.news__card-background--2 {
	top: -229px;
	transform: translateX(-50%) rotate(-5.959deg);
}

.news__card-image-wrapper {
	position: relative;
	/* width: 674px;
	height: 674px; */

	width: 382px;
	height: 382px;

	border-radius: 13px;
	overflow: hidden;
	border: 1.271px solid #bc6561;
}


.news__card-img {
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.news__card-overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	transition: opacity 0.3s ease;
	border-radius: 13px;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 43.32%, #203146 100%);
}

.news__card-overlay::after {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(ellipse 474px 602px at -150px 299px, rgba(23, 35, 50, 1) 0%, rgba(18, 20, 28, 0) 100%);
	opacity: 0.5;
}

.news__card-content {
	z-index: 10;
	display: flex;
	flex-direction: column;
	align-items: center;
	opacity: 1;
	pointer-events: none;
	transition: opacity 0.3s ease;
}

.news__card-background {
	transition: opacity 0.3s ease;
}

.news__card-title {
	font-family: "Palatino Linotype";
	font-weight: 400;
	font-size: 30px;
	line-height: 122%;
	color: #ced7e3;
	text-align: center;
	margin: 38px 0 0 0;
}

.news__card-btn {
	backdrop-filter: blur(6.356px);
	background: rgba(18, 20, 28, 0.55);
	border: 1.271px solid #bc6561;
	border-radius: 7.627px;
	padding: 19px 48px 15px;
	font-family: "Palatino Linotype";
	font-size: 23px;
	line-height: 1;
	color: #e8f1fd;
	text-align: center;
	text-decoration: none;
	pointer-events: auto;
	transition: all 0.3s ease;
	position: absolute;
	top: -23px;
	left: 50%;
	transform: translateX(-50%) rotate(-6.683deg);
}

.news__card-btn:hover {
	background: rgba(18, 20, 28, 0.75);
	border-color: #e8f1fd;
}

.news__card-btn:hover {
	background: rgba(18, 20, 28, 0.75);
	border-color: #e8f1fd;
}

.news__card--3 {
	left: 0;
	bottom: 200px;
	transform: rotate(-10.132deg);
	z-index: 1;
}

.news__card--2 {
	left: 0;
	bottom: 100px;
	transform: rotate(-5.959deg);
	z-index: 2;
}

.news__card--1 {
	left: 0;
	bottom: 0;
	transform: rotate(0deg);
	z-index: 3;
}

.news__card--1 .news__card-content {
	pointer-events: auto;
}

@keyframes newsCardAppear {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

.news__card--3 {
	animation: newsCardAppear 0.8s ease-out 0.1s backwards;
}

.news__card--2 {
	animation: newsCardAppear 0.8s ease-out 0.2s backwards;
}

.news__card--1 {
	animation: newsCardAppear 0.8s ease-out 0.3s backwards;
}

@media screen and (max-width: 1279px) {
	.news {
		padding: 60px 0 100px;
		min-height: auto;
	}

	.news__wrapper {
		flex-direction: column;
		gap: 0;
		align-items: center;
	}

	.news__header {
		max-width: 100%;
		width: 100%;
		display: contents;
	}

	.news__title {
		font-size: 26px;
		line-height: 130%;
		margin-bottom: 30px;
		text-align: left;
		order: 1;
	}

	.news__cards {
		width: 375px;
		height: 600px;
		transform: none;
		order: 2;
		margin-bottom: 40px;
	}

	.news__navigation {
		justify-content: center;
		order: 3;
	}

	.news__card {
		width: 375px;
		height: 442px;
		padding: 31px;
	}

	.news__card-inner {
		width: 314px;
	}

	.news__card-background {
		width: 415px;
		height: 472px;
	}

	.news__card-background--1 {
		top: -161px;
	}

	.news__card-background--2 {
		top: -107px;
	}

	.news__card-image-wrapper {
		width: 314px;
		height: 314px;
	}

	.news__card--3 {
		bottom: 103px;
	}

	.news__card--2 {
		bottom: 51px;
	}

	.news__card--1 {
		bottom: 0;
	}

	.news__card-title {
		font-size: 23px;
		margin-top: 18px;
	}

	.news__card-btn {
		font-size: 18px;
		padding: 15px 38px 12px;
		top: -20px;
	}
}

.digest {
	position: relative;
	padding: 100px 0;
}

.digest__title {
	font-family: "Palatino Linotype";
	font-weight: 400;
	font-size: 35px;
	line-height: 110%;
	color: #FFF;
	margin: 0 0 40px 0;
	text-align: center;
}

.digest__slider {
	position: relative;
	overflow: visible;
}

.digest__wrapper {
	display: flex;
}

.digest__slide {
	width: 460px;
	flex-shrink: 0;
}

.digest__card {
	background: rgba(0, 0, 0, 0.15);
	border-radius: 10px;
	padding: 28px 24px;
	height: 100%;
}

.digest__card-category {
	border: 1px solid #bc6561;
	border-radius: 450px;
	padding: 8px 19px;
	font-family: "Nunito Sans";
	font-weight: 300;
	font-size: 14px;
	line-height: 120%;
	letter-spacing: 1.12px;
	color: #FFF;
	text-align: center;
	display: inline-block;
	margin-bottom: 24px;
}

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

.digest__card-image-wrap {
	position: relative;
	width: 100%;
	height: 361px;
	border-radius: 13px;
	overflow: hidden;
	border: 1.27px solid #bc6561;
}

.digest__card-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.digest__card:hover .digest__card-image {
	transform: scale(1.1);
}

.digest__card-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 43.32%, rgba(32, 49, 70, 0.8) 100%);
	opacity: 0.5;
	z-index: 1;
	pointer-events: none;
}

.digest__card-heading {
	font-family: "Palatino Linotype";
	font-weight: 400;
	font-size: 20px;
	line-height: 130%;
	color: #FFF;
	margin: 0;
}

.digest__card-btn {
	backdrop-filter: blur(5px);
	background: linear-gradient(180deg, rgba(18, 20, 28, 0.3) 11.03%, rgba(169, 125, 112, 0.3) 100%);
	border: 1px solid #bc6561;
	border-radius: 6px;
	padding: 15px 38px 12px;
	color: #FFF;
	font-size: 18px;
	text-decoration: none;
	transition: all 0.3s ease;
	font-family: "Palatino Linotype";
	display: inline-block;
	cursor: pointer;
	text-align: center;
	white-space: nowrap;
}

.digest__card-btn:hover {
	background: linear-gradient(180deg, rgba(188, 101, 97, 0.4) 0%, rgba(169, 125, 112, 0.4) 100%);
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(188, 101, 97, 0.3);
}

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

@media screen and (max-width: 1279px) {
	.digest {
		padding: 60px 0;
	}

	.digest__title {
		font-size: 23px;
		text-align: left;
		margin-bottom: 20px;
	}

	.digest__slide {
		width: 335px;
	}

	.digest__card {
		padding: 28px 24px;
	}

	.digest__card-image-wrap {
		height: auto;
		aspect-ratio: 412 / 361;
	}

	.digest__card-heading {
		font-size: 16px;
	}

	.digest__navigation {
		margin-top: 20px;
	}
}

.faq {
	position: relative;
	padding: 100px 0;
}

.faq__title {
	font-family: "Palatino Linotype";
	font-weight: 400;
	font-size: 35px;
	line-height: 110%;
	color: #FFF;
	margin: 0 0 40px 0;
}

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

.faq__column {
	display: flex;
	flex-direction: column;
	gap: 20px;
	flex: 1;
	min-width: 700px;
}

.faq__item {
	background: rgba(0, 0, 0, 0.15);
	border-radius: 10px;
	overflow: hidden;
	transition: all 0.3s ease;
}

.faq__question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	padding: 28px 20px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.faq__question:hover {
	background: rgba(188, 101, 97, 0.1);
}

.faq__question-text {
	font-family: "Palatino Linotype";
	font-weight: 400;
	font-size: 20px;
	line-height: 130%;
	color: #FFF;
	margin: 0;
	flex: 1;
}

.faq__toggle {
	width: 36px;
	height: 36px;
	border: 1px solid #bc6561;
	border-radius: 10px;
	background: transparent;
	cursor: pointer;
	position: relative;
	flex-shrink: 0;
	transition: all 0.3s ease;
}

.faq__toggle:hover {
	background: rgba(188, 101, 97, 0.2);
	transform: rotate(90deg);
}

.faq__toggle-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 16px;
	height: 16px;
}

.faq__toggle-icon::before,
.faq__toggle-icon::after {
	content: '';
	position: absolute;
	background: #bc6561;
	transition: all 0.3s ease;
}

.faq__toggle-icon::before {
	top: 50%;
	left: 0;
	width: 16px;
	height: 2px;
	transform: translateY(-50%);
}

.faq__toggle-icon::after {
	top: 0;
	left: 50%;
	width: 2px;
	height: 16px;
	transform: translateX(-50%);
}

.faq__item.active .faq__toggle {
	transform: rotate(45deg);
}

.faq__item.active .faq__toggle-icon::after {
	opacity: 0;
}

.faq__answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s ease, padding 0.4s ease;
	padding: 0 20px;
}

.faq__item.active .faq__answer {
	max-height: 500px;
	padding: 0 20px 28px;
}

.faq__answer p {
	font-family: "Nunito Sans";
	font-weight: 300;
	font-size: 16px;
	line-height: 150%;
	color: rgba(255, 255, 255, 0.8);
	margin: 0;
}

@media screen and (max-width: 1279px) {
	.faq {
		padding: 60px 0;
	}

	.faq__title {
		font-size: 23px;
		margin-bottom: 20px;
	}

	.faq__grid {
		gap: 10px;
	}

	.faq__column {
		min-width: 100%;
		gap: 10px;
	}

	.faq__question {
		padding: 28px 20px;
		gap: 10px;
	}

	.faq__question-text {
		font-size: 20px;
	}

	.faq__answer p {
		font-size: 14px;
	}
}

.rental-types {
	position: relative;
	padding: 100px 0;
}

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

.rental-types__card {
	background: rgba(0, 0, 0, 0.15);
	border-radius: 10px;
	padding: 46px 0;
	width: 700px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 40px;
}

.rental-types__card {
	display: none;
}

.rental-types__title {
	font-family: "Palatino Linotype";
	font-weight: 400;
	font-size: 30px;
	line-height: 110%;
	color: #FFF;
	text-align: center;
	margin: 0;
}

.rental-types__images-stack {
	position: relative;
	width: 456px;
	height: 528px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.rental-types__image-wrapper {
	position: absolute;
	width: 306px;
	height: 398px;
	border-radius: 10px;
	overflow: hidden;
	transition: all 0.4s ease;
}

.rental-types__image-wrapper--main {
	border: 1px solid #bc6561;
}

.rental-types__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.rental-types__overlay {
	position: absolute;
	inset: 0;
	pointer-events: none;
}

.rental-types__overlay--gradient {
	background: radial-gradient(ellipse 46px 22px at -68px 176px,
			rgba(23, 35, 50, 1) 0%,
			rgba(18, 20, 28, 0) 100%);
	opacity: 0.5;
}

.rental-types__image-label {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	font-family: "Palatino Linotype";
	font-weight: 400;
	font-size: 21px;
	line-height: 125%;
	color: #FFF;
	text-align: center;
	margin: 0;
	z-index: 10;
	width: 100%;
	padding: 0 20px;
}

.rental-types__actions {
	display: flex;
	align-items: center;
	gap: 24px;
}

.rental-types__btn {
	backdrop-filter: blur(5px);
	background: linear-gradient(180deg, rgba(18, 20, 28, 0.3) 11.03%, rgba(169, 125, 112, 0.3) 100%);
	border: 1px solid #bc6561;
	border-radius: 6px;
	padding: 15px 38px 12px;
	color: #FFF;
	font-size: 18px;
	text-decoration: none;
	transition: all 0.3s ease;
	font-family: "Palatino Linotype";
	display: inline-block;
	cursor: pointer;
	text-align: center;
	white-space: nowrap;
}

.rental-types__btn:hover {
	background: linear-gradient(180deg, rgba(188, 101, 97, 0.4) 0%, rgba(169, 125, 112, 0.4) 100%);
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(188, 101, 97, 0.3);
}

.rental-types__next {}

.rental-types__card:hover .rental-types__image-wrapper:nth-child(1) {
	transform: rotate(335deg) !important;
}

.rental-types__card:hover .rental-types__image-wrapper:nth-child(2) {
	transform: rotate(340deg) !important;
}

.rental-types__card:hover .rental-types__image-wrapper:nth-child(3) {
	transform: rotate(345deg) !important;
}

.rental-types__card:hover .rental-types__image-wrapper:nth-child(4) {
	transform: rotate(350deg) !important;
}

@media screen and (max-width: 1279px) {
	.rental-types {
		padding: 60px 0;
	}

	.rental-types__grid {
		flex-direction: column;
		align-items: center;
		gap: 20px;
	}

	.rental-types__card {
		width: 100%;
		max-width: 375px;
		padding: 35px 0;
	}

	.rental-types__images-stack {
		width: 300px;
		height: 375px;
	}

	.rental-types__image-wrapper {
		width: 217px;
		height: 282px;
	}

	.rental-types__image-label {
		font-size: 18px;
		bottom: 15px;
	}

	.rental-types__actions {
		flex-direction: row;
		justify-content: center;
	}
}

section.additional-services section.presale-prep {
	zoom: 0.8;
}

.sections-wrapper__container {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 40px;
}

.news__wrapper {
	flex-direction: column-reverse;
}

.news__cards {
	width: 25dvw;
	height: 740px;
}

@media screen and (max-width: 1279px) {
	.news__wrapper {
		flex-direction: column;
	}
}

@media screen and (max-width: 767px) {
	.sections-wrapper {
		zoom: 0.7;
	}

	.sections-wrapper__container {
		gap: 0;
		grid-template-columns: 1fr;
	}

	.news__cards {
		width: 375px;
		height: 560px;
	}

	.presale-prep__card {
		width: 75dvw;
		flex-shrink: 0;
	}

	.presale-prep__cards {
		flex-direction: row;
		width: 100dvw;
		overflow-x: auto;
		justify-content: flex-start;
		max-width: 100%;
	}

	.about__content .home__btn.btn.text-18 {
		display: none;
	}

	.about:first-child {
		padding-top: 100px;
	}
}


.catalog-card__info-item {
	font-size: 16px;
}




.header__detail-nav__call {
	position: relative;
}

.popup-socials {
	position: absolute;
	top: 140%;
	left: -56px;
	display: none;
}

.popup-socials.is-active {
	display: block;
}

.popup-socials__overlay {}

.popup-socials__body {}

.popup-socials__inner {
	display: flex;
	justify-content: start;
	align-items: start;
	gap: 10px;
}

.popup-socials__items {
	padding: 20px;
	background: rgba(0, 0, 0, 0.302);
	border: 2px solid #FFFFFF;
	border-radius: 6px;

	display: flex;
	justify-content: start;
	align-items: center;
	gap: 10px;
}

.popup-socials__item {}

.popup-socials__close {
	cursor: pointer;
}

@media screen and (max-width: 1200px) {
	.section.towers .about__title {
		margin-bottom: 20px;
	}

	.about .about__wrapper {
		margin-left: 0 !important;
		padding-left: 0 !important;
		padding-bottom: 0px;
	}

	.about {
		/* padding-bottom: 100px; */
		padding-bottom: 10px;
	}
	.home__btns {
		gap: 10px;
	}

}

@media screen and (max-width: 700px) {
	.popup-socials {
		left: unset;
		right: 0;
		padding: 10px;
	}

	.popup-socials__items {
		padding: 10px;
	}

	.popup-socials__item img {
		width: 45px;
		height: 45px;
	}

	#about-popup .agency__item {
		max-width: 280px !important;
	}
	.home__btns {
		margin-top: 200px;
	}
}