@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;
	position: relative;
	z-index: 2;
}

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

.about__content {
	width: 100%;
	max-width: 840px;
}

.about__wrapper {
	padding-left: 120px;
	position: relative;
}

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

.detail__text {
	margin-top: 40px;
}

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

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

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

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

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

	.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 {
		display: none;
	}

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

	.detail-about__mobile-title {
		display: block;
		/* margin-bottom: 20px; */
	}

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

@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;
		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__detail-nav__call,
	.header__panel-wa {
		/* height: 44px; */
		height: 37px !important;
	}
	.header__detail-nav__back {
		display: flex !important;
	}
	.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-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);
	}

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

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

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

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

.header__detail-nav {
	display: none;
	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, #BC6561);
	background: var(--gradient-C56C68-12141C, linear-gradient(0deg, #C56C68 0%, #12141C 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, #BC6561);
	border-right: 2px solid var(--rich-copper-BC6561, #BC6561);
	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, #BC6561);
}
.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;
}
.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: 500px;
	}
	.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;
}