@font-face {
	font-family: 'TT Norms Pro';
	src: url('/wp-content/themes/zapoved/assets/fonts/TT-Norms-Pro-Regular/ttf/TT-Norms-Pro-Regular.ttf')
		format('truetype');
	font-weight: 400;
	font-style: normal;
}

@font-face {
	font-family: 'TT Norms Pro';
	src: url('/wp-content/themes/zapoved/assets/fonts/TTNormsPro/ttf/TT-Norms-Pro-Bold.ttf')
		format('truetype');
	font-weight: 700;
	font-style: normal;
}
html {
	scroll-behavior: smooth;
}
* {
	box-sizing: border-box;
}

body {
	margin: 0;
	padding: 0;
	background: var(--white-color);
}

div,
section,
header,
footer,
nav {
	margin: 0;
	padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'TT Norms Pro';
	font-weight: 700;
	margin: 0;
}
p,
a,
ul,
li,
ol,
nav {
	font-family: 'TT Norms Pro';
	font-weight: 400;
	font-size: 20px;
	margin: 0;
}
div {
	font-family: 'TT Norms Pro', sans-serif;
	font-weight: 400;
	font-size: 20px;
}

.btn {
	background: var(--brown-main-color);
	font-weight: 700;
	font-size: 20px;
	color: var(--text-color-white);
	width: 314px;
	height: 74px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 10px 20px;
	text-decoration: none;
	transition: 0.4s;
}

.btn:hover {
	background: #816851;
}

.btn.btn-secound {
	background: transparent;
	border: 3px solid var(--brown-main-color);
	color: var(--white-color);
}

.container {
	width: 1540px;
	margin: 0 auto;
}

/* Header style (start) */
.header {
	background: var(--akcent-green-color);
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 99999;
}

.header-top-section {
	background: var(--akcent-green-color-dark);
	padding: 8px 0;
}

.header-bottom-section {
	padding: 15px 0;
	background: var(--akcent-green-color);
}

.header-top-section .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.header-top-section__contact__messengers a {
	width: 40px;
	height: 40px;
	display: flex;
}

.header-top-section__contact__messengers {
	display: flex;
	gap: 20px;
}

.header-top-section__contact {
	display: flex;
	gap: 40px;
	align-items: center;
}

.header-top-section__contact__messengers .tellegramm::before {
	content: '';
	background: url('../img/icon/TG head.png') no-repeat center center;
	width: 40px;
	height: 40px;
}

.header-top-section__contact__messengers .vkontakte::before {
	content: '';
	background: url('../img/icon/VKhead.png') no-repeat center center;
	width: 40px;
	height: 40px;
}

.header-top-section__contact__num-mail {
	display: flex;
	gap: 40px;
}

.header-top-section a {
	text-decoration: none;
	transition: 0.4s;
}

.header-top-section__contact__num-mail a {
	font-size: 16px;
	color: var(--text-color-white);
}

.header-top-section a:hover {
	opacity: 0.6;
}

.header-top-section a.please-contact {
	color: var(--text-color-white);
	font-size: 16px;
}

.menu-wrapper ul li {
	font-size: 18px;
	color: var(--text-color-white);
	text-decoration: none;
	list-style: none;
}

.menu-wrapper ul li a {
	font-size: 18px;
	color: var(--text-color-white);
	text-decoration: none;
	list-style: none;
	padding-left: 16px;
	display: inline-block;
	position: relative;
}

.menu-wrapper ul li a::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 0;
	height: 0;
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
	border-top: 6px solid var(--text-color-white);
}

.menu-wrapper ul {
	display: flex;
	gap: 40px;
	align-items: center;
}

.header-bottom-section .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.header-bottom-section .menu-wrapper ul li {
	position: relative;
}
.header-bottom-section .menu-wrapper ul li ul {
	position: absolute;
	background: var(--akcent-green-color);
	width: 350px;
	display: none;
	flex-direction: column;
	align-items: end;
	gap: 0;
	top: 20px;
	right: 0;
	padding-left: 0;
	padding-top: 28px;
}
.header-bottom-section .menu-wrapper ul li ul li {
	text-align: end;
	width: 100%;
	background: var(--akcent-green-color-dark);
}
.header-bottom-section .menu-wrapper ul li ul li a {
	padding: 15px 26px;
	text-align: end;
	width: 100%;
}
.header-bottom-section .menu-wrapper ul li ul li a::before {
	display: none;
}
.header-bottom-section .menu-wrapper ul li ul li ul {
	left: -100%;
	padding-top: 0;
	top: 0;
	display: none;
	background: var(--akcent-green-color-dark) !important;
	overflow: hidden;
	max-height: 600px;
	overflow-y: auto;
}
.header-bottom-section .menu-wrapper ul li ul li ul li a {
	background: var(--akcent-green-color-dark) !important;
}
.header-bottom-section .menu-wrapper ul li ul li ul li a:hover {
	background: #002922 !important;
}
.header-bottom-section .menu-wrapper ul li ul li:hover a {
	background: #002922;
}
.header-bottom-section .menu-wrapper ul li:hover ul {
	display: block;
	display: flex;
}
.header-bottom-section .menu-wrapper ul li:hover ul ul {
	display: none;
}
.header-bottom-section .menu-wrapper ul li:hover ul li:hover ul {
	display: block;
	display: flex;
}
.header-bottom-section .menu-wrapper ul li:hover ul li:hover ul li:hover {
	background: var(--akcent-green-color-dark) !important;
}

/* Header style (end) */
.main-block {
	height: 623px;
	background: var(--akcent-green-color);
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}
.main-block__image {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	top: 0;
	width: 100%;
	height: 100%;
}
.main-block__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.main-block .container {
	position: relative;
	z-index: 2;
	gap: var(--size-40px);
	display: flex;
	flex-direction: column;
}
.main-block h1 {
	font-size: var(--fz-h1);
	color: var(--brown-main-color);
	text-transform: uppercase;
	font-weight: 700;
}
.main-block .main-block__text {
	display: flex;
	flex-direction: column;
	gap: var(--size-20px);
	max-width: 800px;
}
.main-block .main-block__text p {
	font-size: var(--fz-26);
	color: var(--text-color-white);
}
.main-block .main-block__btnw-rapper {
	display: flex;
	gap: 15px;
}

.price-block {
	position: absolute;
	top: 50%;
	right: 100px;
	transform: translateY(-50%);
	padding: 10px 0;
	background: #ffffff75;
	max-width: 500px;
}
.price-block__wrapp {
	background: #ffffff86;
	padding: 30px;
	display: flex;
	width: 100%;
	flex-direction: column;
	gap: 20px;
}
.price-block__wrapp div,
.price-block__wrapp a {
	color: var(--text-color-black);
	font-size: 20px;
}

.advantages-section__title {
	font-weight: 700;
	font-size: var(--fz-30);
}

.advantages-section__item-block {
	background: var(--white-color);
	border-top: 3px solid var(--brown-white-color);
	border-bottom: 3px solid var(--brown-white-color);
	height: 140px;
	width: 100%;
	margin: 40px 0;
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
}

.advantages-section__item-block__card {
	display: flex;
	justify-content: center;
	width: 100%;
	height: 100%;
	border-right: 4px solid var(--brown-bg-color);
	padding: 50px 20px 20px 20px;
	transition: 0.4s;
}
.advantages-section__item-block__card div {
	font-size: 16px;
}
.advantages-section__item-block__card__text-wrap {
	display: flex;
	gap: 10px;
	margin: 0 auto;
	width: 90%;
}
.advantages-section__item-block__card:hover {
	background: var(--brown-white-color);
}

.advantages-section__item-block__card:last-child {
	border-right: none;
}

.advantages-section__desc {
	font-size: var(--fz-20);
}

.property-wrapp {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	margin-top: 40px;
}
.property-wrapp__card {
	position: relative;
	overflow: hidden;
	width: calc((100% - 40px) / 3);
	height: 320px;
	cursor: pointer;
}
.property-wrapp__card__bg-image {
	position: absolute;
	inset: 0;
}
.property-wrapp__card__bg-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.property-wrapp__card::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 130%;
	top: 0;
	background: linear-gradient(0deg, white 0%, rgba(255, 255, 255, 0) 100%);
	transition: transform 0.4s ease;
	transform: translateY(0);
}
.property-wrapp__card__icon {
	position: absolute;
	top: 28px;
	left: 28px;
	width: 110px;
	transition: transform 0.4s ease, opacity 0.4s ease;
}
.property-wrapp__card__icon img {
	width: 100%;
	height: auto;
	display: block;
}
.property-wrapp__card a h3 {
	position: absolute;
	bottom: 28px;
	z-index: 2;
	font-weight: 700;
	color: var(--text-color-black);
	left: 28px;
	margin: 0;
	transition: transform 0.4s ease;
	transform: translateY(0%);
}
.property-wrapp__card a::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
}
.property-wrapp__card:hover::after {
	transform: translateY(-20%);
	background: linear-gradient(0deg, white 0%, rgba(255, 255, 255, 0.736) 100%);
}
.property-wrapp__card:hover h3 {
	transform: translateY(-100%);
}
.property-wrapp__card:hover .property-wrapp__card__icon {
	transform: translateY(-120%);
	opacity: 0;
}
@media (max-width: 900px) {
	.property-wrapp__card {
		width: calc((100% - 20px) / 2);
	}
}
@media (max-width: 600px) {
	.property-wrapp__card {
		width: 100%;
	}
}

.list-cards-wrapper {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
}
.list-cards-wrapper__item {
	width: 100%;
	padding: 20px;
	background: var(--white-color);
	display: flex;
	gap: 40px;
}
.list-cards-wrapper__item__num {
	font-size: 30px;
	color: var(--brown-main-color);
	font-weight: 700;
}
.list-cards-wrapper__item__text h4 {
	font-weight: 700;
	margin-bottom: 10px;
}

.about-us-section h2 {
	margin-bottom: 40px;
}
.about-us-section .btn {
	margin: 30px auto 0 auto;
}

.statistics__ward {
	display: flex;
	gap: 20px;
}
.statistics__ward__item {
	width: 370px;
	display: flex;
	flex-direction: column;
	gap: 30px;
}
.statistics__ward__item__number {
	color: var(--brown-main-color);
	font-size: 48px;
	font-weight: 700;
}
.statistics__ward__item__text {
	font-weight: 700;
}

.statistics-section .advantages-section__title {
	margin-bottom: 80px;
}

.statistics-text-section {
	background: #f1f2f2;
}
.statistics-text-section h2 {
	margin-bottom: 60px;
}

.statistics-text__card-wrapp {
	display: grid;
	gap: 20px;
	grid-template-columns: 1fr 1fr 1fr;
}
.statistics-text__card-wrapp__item {
	background: var(--white-color);
	padding: 20px;
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.statistics-text__card-wrapp__item img {
	max-width: 60px;
}
.statistics-text__card-wrapp__item__title {
	font-weight: 700;
}

.list-cards-wrapper__item {
	position: relative;
}

.list-cards-wrapper__item__text h4 a {
	font-size: var(--fz-20);
	font-weight: 700;
	color: var(--text-color-black);
	text-decoration: none;
}
.list-cards-wrapper__item__text h4 a::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
}

/* Контейнер FAQ */
.faq {
	max-width: 820px;
	margin: 0 auto;
}

/* Один FAQ‑элемент */
.faq-item {
	margin-bottom: 1rem;
	background: var(--brown-bg-color);
	overflow: hidden;
	/* чтобы ответ не «выпирал» за границы */
}

/* Кнопка‑вопрос */
.faq-question {
	width: 100%;
	background: var(--brown-bg-color);
	padding: 20px;
	font-weight: 400;
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
	border: none;
	font-size: 18px;
	text-align: left;
}

/* Иконка плюсика через CSS‑стили */
.faq-question::after {
	content: '';
	flex: 0 0 24px;
	height: 24px;
	background: url('../img/icon/icon-question.svg') center/contain no-repeat;
	transition: transform 0.3s ease;
}

/* Поворачиваем плюс, когда блок открыт (получается крестик) */
.faq-item.open .faq-question::after {
	transform: rotate(45deg);
}

/* «Карточка» с ответом (изначально свёрнута) */
.faq-answer {
	max-height: 0;
	overflow: hidden;
	padding: 0 1.25rem;
	background: var(--brown-bg-color);
	transition: max-height 0.35s ease, padding 0.35s ease;
}

/* Когда блок открыт — разворачиваем карточку */
.faq-item.open .faq-answer {
	padding: 1rem 1.25rem;
	max-height: 500px;
	/* достаточно большое значение, чтобы показать любой текст */
}

.faq-answer p {
	font-size: 18px;
}

.question-section h2 {
	margin-bottom: 40px;
}

.reviews-wrapp {
	display: flex;
	gap: 80px;
	align-items: center;
	justify-content: center;
}

.reviews-wrapp__card {
	background: var(--akcent-green-color);
	padding: 30px;
	display: flex;
	gap: 20px;
	width: 680px;
	height: 320px;
	position: relative;
}
.reviews-wrapp__card__image {
	height: 190px;
	min-width: 150px;
	border-radius: 15px;
	overflow: hidden;
}
.reviews-wrapp__card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.reviews-wrapp__card__text {
	display: flex;
	flex-direction: column;
	gap: 20px;
	justify-content: space-between;
}
.reviews-wrapp__card__text__reviews {
	font-size: 18px;
	color: var(--brown-bg-color-opacity);
}
.reviews-wrapp__card__text__name {
	font-weight: 700;
	color: var(--white-color);
}
.reviews-wrapp__card::before {
	content: '';
	background: url('../img/icon/icon-reviews.svg') center/contain no-repeat;
	width: 130px;
	height: 130px;
	left: -70px;
	position: absolute;
}

.reviews-section h2 {
	margin-bottom: 60px;
}

.copyright-section {
	width: 100%;
	height: 640px;
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.copyright-section img {
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
}
.copyright-section .container {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	gap: 30px;
}
.copyright-section h2 {
	color: var(--white-color);
	font-size: 55px;
}
.copyright-section p {
	font-size: 30px;
	color: var(--brown-bg-color-opacity);
	width: 50%;
}

.footer {
	background: var(--akcent-green-color);
	padding: 50px 0 0 0;
}
.footer div,
.footer a {
	color: var(--white-color);
	font-size: 18px;
	text-decoration: none;
}
.footer ul {
	display: flex;
	flex-direction: column;
	gap: 15px;
	padding-left: 0;
}
.footer li {
	list-style: none;
	font-size: 18px;
}
.footer .messengers {
	display: flex;
	gap: 30px;
	margin-top: 15px;
}
.footer .messengers .tellegramm {
	width: 40px;
	height: 40px;
}
.footer .messengers .vkontakte {
	width: 40px;
	height: 40px;
}
.footer .messengers .rutube {
	width: 40px;
	height: 40px;
}
.footer .container {
	display: flex;
	justify-content: space-between;
}
.footer .footer-copyrigth {
	margin-top: 50px;
	padding: 26px 0;
	background: var(--akcent-green-color-dark);
	text-align: center;
}

.footer-logo-wrapp {
	margin-bottom: 50px;
}
.footer-logo-wrapp a img {
	width: 220px;
}

.footer__block__title {
	font-weight: 700;
	color: var(--brown-main-color);
	margin-bottom: 80px;
	color: var(--brown-main-color) !important;
}

.brown-main {
	background: var(--brown-main-color);
	padding: 50px 0;
}
.brown-main h1 {
	text-transform: uppercase;
	font-size: 40px;
	color: var(--white-color);
}

input {
	background: var(--white-color);
	padding: 30px;
	color: var(--akcent-green-color-dark);
	font-size: var(--fz-20);
	width: 100%;
	border: 1px solid var(--white-color);
}

textarea {
	background: var(--white-color);
	padding: 30px;
	color: var(--akcent-green-color-dark);
	font-size: var(--fz-20);
	width: 100%;
	border: 1px solid var(--white-color);
	resize: none;
	height: 100%;
}

textarea:focus {
	outline: none;
	border: 1px solid var(--akcent-green-color);
}

input:focus {
	outline: none;
	border: 1px solid var(--akcent-green-color);
}

form .input-wrapper {
	display: grid;
	gap: 20px;
	grid-template-columns: 1fr 1fr;
}
form .input-wrapper div {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
form .input-wrapper .btn {
	width: 100%;
	border: none;
	height: 86px;
	padding: 30px;
}

form label {
	margin-top: 20px;
	display: flex;
	width: 50%;
	gap: 20px;
}
form label input {
	width: 25px;
	height: 25px;
}
form label div {
	width: fit-content;
	font-size: 16px;
}

select {
	background: var(--white-color);
	padding: 30px;
	color: var(--akcent-green-color-dark);
	font-size: var(--fz-20);
	width: 100%;
	border: 1px solid var(--white-color);
}

select:focus {
	outline: none;
	border: 1px solid var(--akcent-green-color);
}

.contact-page {
	padding-bottom: var(--size-60px);
}
.contact-page h1 {
	font-size: 40px;
	color: var(--brown-main-color);
	margin-bottom: 40px;
	padding-top: 60px;
}
.contact-page .footer__block a {
	color: var(--akcent-green-color-dark);
	text-decoration: none;
}
.contact-page .footer__block ul {
	padding-left: 0;
}
.contact-page .footer__block li {
	list-style: none;
}
.contact-page .contact-wrapp__text__message_address {
	display: flex;
	justify-content: space-between;
	margin-bottom: 50px;
}
.contact-page .footer__block__title {
	margin-bottom: 0;
}
.contact-page .footer__block {
	display: flex;
	flex-direction: column;
	gap: 30px;
}
.contact-page .footer__block ul {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.contact-page .contact-wrapp__text .btn {
	width: 100%;
}
.contact-page .contact-wrapp {
	display: grid;
	gap: 20px;
	grid-template-columns: 1fr 1fr;
}
.contact-page .contact-wrapp__map {
	width: 100%;
}

article {
	display: flex;
	flex-direction: column;
	gap: 20px;
	color: var(--text-color-blackk);
	font-size: var(--size-20px);
	font-weight: 400;
	line-height: 160%;
	letter-spacing: -0.01em;
}
article h1 {
	font-size: var(--fz-30);
	margin-bottom: 10px;
}

.mission {
	padding: 50px 30px;
	align-items: center;
}
.mission p {
	color: #3a3129;
	font-size: var(--fz-30);
}
.mission p b {
	color: var(--brown-main-color);
}
.mission .container {
	display: grid;
	grid-template-columns: auto auto;
	gap: 50px;
}
.mission .container::before {
	content: '';
	background: url(../img/icon/mission-icon.svg) no-repeat center center;
	width: 125px;
	height: 125px;
}

.mission-secound img {
	width: 100%;
	height: 250px;
	object-fit: cover;
}

.mission-secound__text-wrapp {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
	margin-top: 50px;
}
.mission-secound__text-wrapp__block {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.mission-secound__text-wrapp__block__title {
	font-weight: 700;
}

.advantages-section-about-page {
	padding-bottom: 0;
}
.advantages-section-about-page h2 {
	margin-bottom: 30px;
}

.messangers-baners-section__wrap {
	display: flex;
	gap: 20px;
	margin-top: 140px;
	position: relative;
}
.messangers-baners-section__wrap__card {
	padding: 30px;
	background: var(--brown-bg-color);
	display: flex;
	flex-direction: column;
	align-items: end;
	position: relative;
	gap: 20px;
}
.messangers-baners-section__wrap__card__title {
	font-weight: 700;
	width: 100%;
	font-size: var(--fz-26);
}
.messangers-baners-section__wrap__card__title span {
	color: var(--brown-main-color);
}
.messangers-baners-section__wrap .telegramm::before {
	content: '';
	background: url('../img/icon/about-tellegem.svg') no-repeat center center;
	width: 200px;
	height: 200px;
	position: absolute;
	left: 30px;
	top: -100px;
}
.messangers-baners-section__wrap .vkontakte::before {
	content: '';
	background: url('../img/icon/about-vk.svg') no-repeat center center;
	width: 200px;
	height: 200px;
	position: absolute;
	left: 30px;
	top: -100px;
}

.copyright-section form {
	display: flex;
	width: 40%;
}
.copyright-section form a {
	height: 100%;
}

.photo-services-wrapper {
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
	margin-top: 30px;
}
.photo-services-wrapper__card {
	background: var(--white-color);
	padding: 20px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 20px;
	width: 240px;
}
.photo-services-wrapper__card__num {
	color: var(--brown-main-color);
	font-weight: 700;
}
.photo-services-wrapper__card__title {
	font-weight: 700;
}
.photo-services-wrapper__card a {
	color: var(--brown-main-color);
}

.burger-btn {
	display: none;
}

.mobile-menu {
	display: none;
}
.custom-form-wrapper p {
	display: flex;
	width: 100% !important;
}
.custom-form-wrapper p .wpcf7-spinner {
	display: none;
}
.custom-form-wrapper p {
	display: flex;
	width: 100%;
}
.custom-form-wrapper p .btn {
	border: none;
	height: 86px;
}
.custom-form-wrapper p .wpcf7-spinner {
	display: none;
}

@media (max-width: 1199px) {
	.container {
		width: 100%;
		padding: 0 15px;
	}

	.price-block {
		position: relative;
		top: 0;
		right: inherit;
		transform: inherit;
	}

	.main-block .main-block__text {
		max-width: 100%;
	}

	.advantages-section__item-block {
		grid-template-columns: 1fr 1fr 1fr;
		background: inherit;
		border-top: 0;
		border-bottom: 0;
		height: inherit;
		row-gap: 30px;
	}

	.advantages-section__item-block__card {
		background: var(--white-color);
		border-top: 3px solid var(--brown-white-color);
		border-bottom: 3px solid var(--brown-white-color);
		height: 140px;
		width: 100%;
		margin: 40px 0;
		margin: 0;
	}

	.property-wrapp__card {
		height: 307px;
	}

	.reviews-wrapp {
		flex-direction: column;
	}

	.messangers-baners-section__wrap .vkontakte::before {
		display: none;
	}

	.messangers-baners-section__wrap .telegramm::before {
		display: none;
	}
}
@media (max-width: 991px) {
	.header-top-section {
		display: none;
	}

	.main-block {
		padding: 60px 0;
		height: auto;
	}

	.menu-wrapper {
		display: none;
	}

	.burger-btn {
		display: block;
		width: 30px;
		height: 16px;
		position: relative;
		cursor: pointer;
	}
	.burger-btn div {
		width: 100%;
		height: 2px;
		background: var(--white-color);
		position: absolute;
		top: 0;
		transition: 0.3s;
	}
	.burger-btn div:last-child {
		bottom: 0;
		top: auto;
		transition: 0.3s;
	}
	.burger-btn::before {
		content: '';
		width: 100%;
		height: 2px;
		background: var(--white-color);
		position: absolute;
		top: 8px;
		transform: translateY(-50%);
		transition: 0.3s;
	}
	.burger-btn.active::before {
		width: 0;
	}
	.burger-btn.active div:first-child {
		transform: rotate(-45deg);
		top: 3px;
	}
	.burger-btn.active div:last-child {
		transform: rotate(45deg);
		top: 3px;
	}

	.mobile-menu {
		display: block;
		position: fixed;
		top: 0;
		padding: 90px 0px 0 0px;
		background: var(--akcent-green-color-dark);
		width: 100%;
		height: 100%;
		z-index: 999;
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		align-items: end;
	}
	.mobile-menu div {
		color: var(--white-color);
		text-align: end;
		padding-right: 15px;
	}
	.mobile-menu ul {
		display: flex;
		flex-direction: column;
		padding-left: 0;
	}
	.mobile-menu ul li {
		list-style: none;
	}
	.mobile-menu ul li ul {
		margin: 10px 0px 10px 0;
		padding-right: 0px;
		padding: 0 35px 0 15px;
		gap: 15px;
		background: #002b24;
		border-top: 1px solid #ffffff11;
		border-bottom: 1px solid #ffffff11;
	}
	.mobile-menu ul li ul li {
		color: var(--white-color);
		text-align: end;
	}
	.mobile-menu ul li ul li a {
		color: var(--white-color);
		text-align: end;
		text-decoration: none;
	}

	.mobile-menu {
		top: -100%;
		transition: top 0.4s ease;
		overflow-y: auto;
	}

	.mobile-menu.open {
		top: 0;
	}

	.mobile-menu li ul {
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.3s ease;
	}

	.movile-menu__contacts {
		width: 100%;
		display: flex;
		flex-direction: column;
		gap: 20px;
		align-items: center;
		padding-right: 0 !important;
	}

	.movile-menu__contacts a {
		color: var(--white-color);
		text-decoration: none;
	}

	.movile-menu__contacts__messengers .tellegramm::before {
		content: '';
		background: url(../img/telegramm.svg) no-repeat center center;
		width: 40px;
		height: 40px;
	}

	.movile-menu__contacts__messengers .vkontakte::before {
		content: '';
		background: url(../img/vk-icon.svg) no-repeat center center;
		width: 40px;
		height: 40px;
	}

	.property-wrapp__card {
		width: 100%;
		height: 239px;
	}

	.property-wrapp {
		display: grid;
		grid-template-columns: 1fr 1fr 1fr;
		gap: 10px;
	}

	.property-wrapp__card__icon {
		width: 60px;
	}

	.property-wrapp__card a h3 {
		font-size: 16px;
	}

	.statistics__ward {
		flex-wrap: wrap;
	}

	.statistics-text__card-wrapp {
		grid-template-columns: 1fr;
	}

	.copyright-section h2 {
		font-size: 40px;
	}

	.copyright-section p {
		font-size: 20px;
		width: 100%;
	}

	.footer .container {
		flex-wrap: wrap;
		gap: 30px;
	}
	.footer .container .footer__block {
		width: 300px;
	}

	.contact-page .contact-wrapp {
		grid-template-columns: 1fr;
	}

	form .input-wrapper {
		grid-template-columns: 1fr;
	}

	select {
		padding: 10px;
	}

	textarea {
		padding: 10px;
		height: 100px;
	}

	form .input-wrapper .btn {
		height: 44px;
		padding: 10px;
	}

	form label {
		width: 100%;
		gap: 10px;
	}
	form label div {
		font-size: 12px;
	}
}
@media (max-width: 768px) {
	.property-wrapp__card {
		height: 175px;
	}

	.list-cards-wrapper {
		grid-template-columns: 1fr;
	}

	.reviews-section h2 {
		font-size: 40px;
	}

	.reviews-wrapp__card {
		width: 80%;
		padding: 20px;
		flex-direction: column;
	}

	.reviews-wrapp {
		gap: 30px;
	}

	.reviews-wrapp__card__image {
		width: 150px;
	}

	.reviews-wrapp__card {
		height: auto;
	}

	.reviews-wrapp__card__text {
		flex-direction: column-reverse;
	}

	.main-block .main-block__btnw-rapper {
		flex-direction: column;
	}

	.copyright-section form {
		width: 100%;
	}

	input {
		height: 44px;
		padding: 10px;
	}

	.mission {
		padding: 30px 10px;
	}

	.mission .container {
		gap: 30px;
	}

	.mission-secound__text-wrapp {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.contact-page .contact-wrapp__text__message_address {
		flex-direction: column;
		gap: 20px;
	}

	.brown-main {
		padding: 10px 0;
	}
	.brown-main h1 {
		font-size: 28px;
	}

	.messangers-baners-section__wrap {
		margin-top: 30px;
		flex-direction: column;
	}

	.messangers-baners-section__wrap__card {
		padding: 15px;
	}
	.custom-form-wrapper p .btn {
		border: none;
		height: 44px;
	}
}
@media (max-width: 576px) {
	.custom-form-wrapper p {
		flex-direction: column;
	}
	.copyright-section form {
		flex-direction: column;
		gap: 10px;
	}
	.copyright-section form .btn {
		width: 100%;
	}

	.header-bottom-section {
		padding: 10px 0;
	}

	.logo-wrapper a img {
		width: 118px;
		height: auto;
	}

	.btn {
		height: 44px;
		font-size: 16px;
	}

	.advantages-section__item-block {
		grid-template-columns: 1fr 1fr;
		row-gap: 10px;
	}

	.advantages-section__item-block__card div {
		font-size: 10px;
	}

	.advantages-section__item-block__card {
		padding: 30px 10px 10px 10px;
		height: 80px;
	}

	.property-wrapp__card {
		height: 93px;
	}

	.property-wrapp {
		gap: 5px;
		margin-top: 20px;
	}

	.property-wrapp__card a h3 {
		font-size: 8px;
		left: 10px;
		bottom: 10px;
	}

	.property-wrapp__card__icon {
		display: none;
	}

	.about-us-section h2 {
		font-size: 28px;
	}

	.list-cards-wrapper__item {
		flex-direction: column;
		gap: 20px;
		padding: 10px;
	}

	.list-cards-wrapper__item__text p {
		font-size: 16px;
	}

	.list-cards-wrapper__item__text h4 {
		font-size: 18px;
	}

	.statistics-section .advantages-section__title {
		margin-bottom: 30px;
		font-size: 28px;
	}

	.statistics-text-section h2 {
		margin-bottom: 30px;
	}

	.statistics-text__card-wrapp__item {
		padding: 10px;
	}

	.statistics-text__card-wrapp__item__title {
		font-size: 18px;
	}

	.statistics-text__card-wrapp__item {
		font-size: 16px;
	}

	.question-section h2 {
		font-size: 28px;
	}

	.faq-question {
		padding: 10px;
		font-size: 14px;
	}

	.faq-answer p {
		font-size: 14px;
	}

	.faq-item.open .faq-answer {
		padding: 10px;
	}

	.reviews-section h2 {
		font-size: 28px;
		margin-bottom: 30px;
	}

	.reviews-wrapp__card {
		width: 100%;
		padding: 10px;
	}

	.reviews-wrapp__card::before {
		display: none;
	}

	.reviews-wrapp__card__image {
		min-width: 50px;
		width: 50px;
		height: 50px;
	}

	.reviews-wrapp__card__text__reviews {
		font-size: 14px;
	}

	.reviews-wrapp__card__text {
		gap: 10px;
	}

	.reviews-wrapp {
		gap: 10px;
	}

	.copyright-section h2 {
		font-size: 28px;
	}

	.copyright-section p {
		font-size: 18px;
	}

	.copyright-section .container {
		gap: 20px;
	}

	.copyright-section {
		height: 400px;
	}

	.price-block__wrapp {
		padding: 10px;
	}

	.price-block__wrapp div,
	.price-block__wrapp a {
		font-size: 17px;
	}

	.mobile-menu div {
		font-size: 16px;
	}

	.mobile-menu ul li ul li a {
		font-size: 16px;
	}

	.movile-menu__contacts .header-top-section__contact__num-mail {
		flex-direction: column;
		gap: 10px;
	}
	.movile-menu__contacts .header-top-section__contact__num-mail a {
		text-align: center;
		font-size: 12px;
	}

	.movile-menu__contacts .please-contact {
		font-size: 16px;
		text-align: center;
	}

	.statistics__ward__item__text {
		font-size: 18px;
	}

	.statistics__ward__item {
		width: 100%;
		gap: 15px;
	}

	.footer .container .footer__block {
		width: 100%;
	}

	.footer__block__title {
		margin-bottom: 20px;
	}

	.footer .container {
		gap: 40px;
	}

	.footer li {
		font-size: 14px;
	}

	.footer div,
	.footer a {
		font-size: 14px;
	}

	.footer-logo-wrapp a img {
		width: 118px;
	}

	.footer-logo-wrapp {
		margin-bottom: 30px;
	}

	.footer .footer-copyrigth {
		font-size: 12px;
		padding: 10px 0;
	}

	.photo-services-wrapper__card {
		width: 100%;
	}

	.about-us-section h2 {
		font-size: 20px;
	}

	.mission .container {
		grid-template-columns: 1fr;
	}

	.mission-secound img {
		height: 100px;
	}

	.contact-page h1 {
		font-size: 35px;
		margin-bottom: 15px;
		padding-top: 30px;
	}

	.mission {
		padding: 30px 0;
	}

	.mission .container::before {
		display: none;
	}
}
@media (max-width: 350px) {
	.btn {
		width: 100%;
	}
}
