/* ========== Main Styles ========== */

html,
body {
	height: 100%;
	color: #000000;
	font-family: 'TTFirsNeue-Regular', Helvetica, Arial, sans-serif;
}

.body > * {
	box-sizing: border-box ! important;
}

img {
	max-width: 100%;
	width: 100%;
	height: auto;
	vertical-align: top;
	object-fit: cover;
}

/* Preloader */

.preload {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: white;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 9999;
}
.preload picture {
    width: 100%;
}

.preload.fade-out {
  animation: fadeOut 1s forwards;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
    visibility: visible;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}

/* Основний контент спочатку невидимий, але на місці */
/* Прелоадер лише на Головній */
.page.home-page .main-container {
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.5s ease-in;
}

/* Анімація розсіювання */
@keyframes scale-fade {
	0% {
		opacity: 1;
		transform: scale(1);
	}
	100% {
		opacity: 0;
		transform: scale(3);
	}
}

/* end___Preloader */

.icon-phone-wrapper {
	width: 88px;
	height: 88px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #000000;
	border-radius: 60px;
	transition: background-color 0.6s, filter 0.6s;
	cursor: pointer;
}

.icon-phone {
	display: inline-block;
	width: 30px;
	height: 30px;
	background-image: url('../images/ic_baseline-phone.svg');
	transition: filter 0.6s;
}

/* Page Content */

.page-content {
	padding-top: 100px;
}
@media (max-width: 991.98px) {
	.page-content {
        padding-top: 60px;
    }
}

.page-content h2,
.page-content h3,
.page-content h4,
.page-content h5,
.page-content h6 {
	margin-top: 20px;
	margin-bottom: 20px;
	font-weight: 400;
}

.page-content h2 {
	font-size: 64px;
	line-height: 70px;
}
@media (max-width: 991.98px) {
	.page-content h2 {
		font-size: 34px;
		line-height: 38px;
	}
}

.page-content h3 {
	font-size: 38px;
	line-height: 42px;
}
@media (max-width: 991.98px) {
	.page-content h3 {
		font-size: 28px;
		line-height: 32px;
	}
}

.page-content h4 {
	font-size: 32px;
	line-height: 36px;
}
@media (max-width: 991.98px) {
	.page-content h4 {
		font-size: 24px;
		line-height: 28px;
	}
}

.page-content h5 {
	font-size: 26px;
	line-height: 30px;
}
@media (max-width: 991.98px) {
	.page-content h5 {
		font-size: 20px;
		line-height: 24px;
	}
}

.page-content h6 {
	font-size: 21px;
	line-height: 24px;
}
@media (max-width: 991.98px) {
	.page-content h6 {
		font-size: 18px;
		line-height: 22px;
	}
}

.page-content p {
	margin-bottom: 20px;
	font-size: 20px;
	line-height: 28px;
}

.page-content ul {
	list-style-type: none;
	padding: 5px 0px 5px 0px;
	margin: 0px;
	line-height: 1.6;
}

.page-content ul li {
	position: relative;
	padding: 5px 0 5px 30px;
}
  
.page-content ul li::before {
	content: "—";
	position: absolute;
	left: 0px;
	color: #ffffff;
}

/* end___Page Content */

/* ========== end___Main Styles ========== */

/* ========== Gutenberg Blocks ========== */

.wp-block-image .aligncenter {
	text-align: center;
}

.wp-block-search {
	display: flex;
	flex-direction: column;
}

.wp-block-search .wp-block-search__label {
	margin-bottom: 10px;
}

.wp-block-archives>li {
	margin-bottom: 1em;
}

/* ========== end___Gutenberg Blocks ========== */

/* ========== Default classes ========== */

.single .article .nav-links {
	display: flex;
	justify-content: space-between;
	column-gap: 20px;
}

@media (max-width: 991.98px) {
	.single .article .nav-links {
		flex-wrap: wrap;
		row-gap: 20px;
	}
}

/* ========== end___Default classes ========== */

.main-container {
	min-height: 100%;
	display: flex;
	flex-direction: column;
	overflow-x: hidden;
}

.content {
	display: flex;
	flex: 1 1 auto;
	gap: 15px;
}

@media (max-width: 991.98px) {
	.content {
		flex-direction: column;
	}
}

.main {
	flex-grow: 1;
}

.main__title {
	margin-bottom: 25px;
}

.widget-area {
	flex: 0 0 30%;
}

@media (max-width: 991.98px) {
	.widget-area {
		flex: 100%;
	}
}

.widget-area .widget {
	margin-bottom: 15px;
	padding: 15px;
	background-color: #ffffff;
	border-radius: 5px;
	box-shadow: 0px 0px 10px #D9DBDF;
}

[class*="__container"] {
	max-width: 1720px;
	margin: 0 auto;
	box-sizing: content-box;
}

.posts-navigation {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	margin-top: 25px;
	gap: 15px;
}

.posts-navigation .page-numbers {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	background-color: #ffffff;
	border: 1px solid #e7e7e7;
	border-radius: 5px;
	text-decoration: none;
	color: inherit;
}

.posts-navigation a:hover {
	border: 4px solid #e7e7e7;
}

.archive__title {
	margin-bottom: 15px;
}

.archive__description {
	margin-bottom: 15px;
}

.search__title {
	margin-bottom: 15px;
}

/**
 * Change Prev|Next buttons text
 *
 * https://stackoverflow.com/questions/47221792/change-link-text-with-css
 *
 */
.posts-navigation .prev.page-numbers.inactive {
	font-size: 0;
}

.posts-navigation .prev.page-numbers.inactive::after {
	content: "\25C1";
	font-size: 16px;
	color: inherit;
}

.posts-navigation .next.page-numbers.inactive {
	font-size: 0;
}

.posts-navigation .next.page-numbers.inactive::after {
	content: "\25B7";
	font-size: 16px;
	color: inherit;
}

.posts-navigation .prev.page-numbers {
	font-size: 0;
}

.posts-navigation .prev.page-numbers::after {
	content: "\25C1";
	font-size: 16px;
	color: inherit;
}

.posts-navigation .next.page-numbers {
	font-size: 0;
}

.posts-navigation .next.page-numbers::after {
	content: "\25B7";
	font-size: 16px;
	color: inherit;
}

.posts-navigation .page-numbers.current {
	background-color: #949494;
}

input[type=text],
input[type=email],
input[type=url],
input[type=tel],
input[type=number],
input[type=search],
textarea {
	border: 1px solid #949494;
}

/* ========== end___Main Styles ========== */

/* ========== Live Search with AJAX ========== */

.search-form {
	position: relative;
}

.ajax-search {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	right: 0;
	background: #fff;
	box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
	border-radius: 10px;
	margin-top: 5px;
	max-height: 230px;
	overflow-x: hidden;
	overflow-y: auto;
	z-index: 100;
	margin: 0;
	padding: 0;
	font-size: 14px;
	color: #424348;
	scrollbar-color: dark;
	scrollbar-width: thin;
	overscroll-behavior: contain;
}

.ajax-search::-webkit-scrollbar {
	width: 6px;
	background-color: #eff2f3;
}

.ajax-search::-webkit-scrollbar-thumb {
	background-color: #dddddd;
	border-radius: 4em;
}

.ajax-search__item {
	position: relative;
	border-top: 1px solid rgba(224, 229, 231, 0.5);
	padding: 10px 15px;
	cursor: pointer;
	list-style-type: none;
}

.ajax-search__link {
	color: var(--accent);
	line-height: 130%;
	margin-bottom: 10px;
	font-size: 13px;
	display: block;
}

.ajax-search__excerpt {
	cursor: default;
	font-size: 11px;
	line-height: 140%;
}

.ajax-search__not-found {
	font-size: 12px;
}

/* ========== end___Live Search with AJAX ========== */

/* end___HEADER */

.header {
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100%;
	z-index: 50;
	box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.header--active .header__inner {
	position: relative;
	z-index: 1;
}

.header--active .header__inner::before {
	content: "";
	position: absolute;
	z-index: -1;
	width: 300%;
	top: 0px;
	right: 200%;
	bottom: 0px;
	left: -100%;
	overflow-x: hidden;

	background: rgba(255, 255, 255, 0.27); 
	backdrop-filter: blur(38.50px);
	box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.header--active .main__menu .menu__link {
	color: #000000;
}

.header--active .pll-switcher-select {
    color: #000000;
}

.header--active .menu__item.menu__item--info {
	color: #000000;
}

.header--active .menu__item.menu__item--info .menu__item--tel::before {
    content: url("data:image/svg+xml;charset=UTF-8,<svg width='24' height='25' viewBox='0 0 24 25' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M6.62 11.29C8.06 14.12 10.38 16.43 13.21 17.88L15.41 15.68C15.68 15.41 16.08 15.32 16.43 15.44C17.55 15.81 18.76 16.01 20 16.01C20.55 16.01 21 16.46 21 17.01V20.5C21 21.05 20.55 21.5 20 21.5C10.61 21.5 3 13.89 3 4.5C3 3.95 3.45 3.5 4 3.5H7.5C8.05 3.5 8.5 3.95 8.5 4.5C8.5 5.75 8.7 6.95 9.07 8.07C9.18 8.42 9.1 8.81 8.82 9.09L6.62 11.29Z' fill='%230A140C'/></svg>");
}

.header__inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	min-height: 120px;
}

@media (max-width: 991.98px) {
	.header__inner {
		min-height: 90px;
	}
}

.header__branding {
	display: flex;
}

@media (max-width: 991.98px) {
	.main__menu {
		order: 1;
	}

	.header__branding {
		order: 2;
	}
}

@media (max-width: 991.98px) {
	.menu-open .header__branding {
		z-index: 2;
	}
}

@media (max-width: 991.98px) {
	.menu-open .header__branding {
		order: 1;
	}
	.menu-open .main__menu {
		order: 2;
	}
	.menu-open .header__tel {
		display: none;
	}
}

.header-branding__text {
	display: flex;
	flex-direction: column;
	margin-left: 15px;
}

@media (max-width: 991.98px) {
	.menu-open .header-branding__title a {
		color: #ffffff;
		text-decoration: none;
	}
}

.header-branding__desc {
	margin-top: 5px;
}

@media (max-width: 991.98px) {
	.menu-open .header-branding__desc {
		color: #ffffff;
	}
}

.header--active .header__branding .header-branding__logo {
	display: none;
}

.header__branding .header-branding__logo.branding-logo--dark {
	display: none;
}

.header--active .header__branding .header-branding__logo.branding-logo--dark {
	display: block;
}

.menu-open .header__branding .header-branding__logo {
	display: none;
}
.menu-open .header__branding .header-branding__logo.branding-logo--dark {
	display: block;
}

.header__branding .header-branding__logo a {
	display: block;
}

.header__branding .header-branding__logo img {
	max-width: 202px;
	width: 100%;
	height: auto;
}

.header__branding .header-branding__logo .custom-logo-link {
	display: flex;
	width: 100%;
	height: auto;
}

.header__branding .header-branding__logo .custom-logo-link img {
	max-height: 50px;
}

.header__tel svg {
	fill: #ffffff;
}

.header--active .header__tel svg {
	fill: #000000;
}

@media (min-width: 992px) {
	.header__tel {
		display: none;
	}
}

@media (max-width: 991.98px) {
	.header__tel {
		display: block;
		order: 3;
		width: 20px;
		height: 20px;
	}
}

/* end___HEADER */

/* MAIN MENU */

.menu-open body {
	overflow: hidden;
}

.main__menu {
	padding-left: 15px;
	padding-right: 15px;
}

.main__menu .menu__body {
	position: relative;
	z-index: 5;
}

@media (max-width: 991.98px) {
	.main__menu .menu__body {
		position: fixed;
		width: 100%;
		height: 100%;
		top: 0px;
		left: -100%;
		transition: left 0.3s;
		background-color: #ffffff;
		padding: 135px 20px 20px 20px;
		overflow: auto;
		z-index: 1;
	}

	.menu-open .main__menu .menu__body {
		left: 0px;
	}

	.menu-open .main__menu .menu__body .pll-switcher-select {
		color: #000000;
	}

	.menu-open .header::before {
		content: "";
		position: absolute;
		top: 0px;
		left: 0px;
		width: 100%;
		height: 90px;
		background-color: #ffffff;
	}
}

.main__menu .menu__list {
	display: flex;
	justify-content: center;
	align-items: center;
	column-gap: 60px;
	row-gap: 5px;
	flex-wrap: wrap;
}

@media (max-width: 991.98px) {
	.main__menu .menu__list {
		align-items: flex-start;
		flex-direction: column;
		gap: 20px;
	}
}

.main__menu .menu__item {
	cursor: pointer;
}

.main__menu .menu__link {
	font-size: 16px;
	color: #ffffff;
}

@media (max-width: 992px) {
	.menu-open .main__menu .menu__link {
		font-size: 16px;
		color: #000000;
	}

	.menu-open .menu__item.menu__item--info .menu__item--tel {
		color: #000000;
	}
}

.main__menu .menu__link:hover {
	text-decoration: underline;
}

.main__menu .icon-menu {
	display: none;
}

@media (max-width: 991.98px) {
	.main__menu .icon-menu {
		display: block;
		position: relative;
		z-index: 5;
		width: 30px;
		height: 18px;
	}

	.main__menu .icon-menu__line,
	.main__menu .icon-menu::before,
	.main__menu .icon-menu::after {
		content: "";
		position: absolute;
		background-color: #ffffff;
		height: 2px;
		width: 100%;
		left: 0px;
		transition: all 0.3s;
	}

	.header--active .main__menu .icon-menu__line,
	.header--active .main__menu .icon-menu::before,
	.header--active .main__menu .icon-menu::after {
		background-color: #000000;
	}

	.main__menu .icon-menu::before {
		top: 0px;
	}

	.main__menu .icon-menu::after {
		bottom: 0px;
	}

	.main__menu .icon-menu__line {
		top: calc(50% - 1px);
	}

	.menu-open .main__menu .icon-menu::before {
		top: calc(50% - 1px);
		transform: rotate(-45deg);
		background-color: #000000;
	}

	.menu-open .main__menu .icon-menu::after {
		bottom: calc(50% - 1px);
		transform: rotate(45deg);
		background-color: #000000;
	}

	.menu-open .main__menu .icon-menu__line {
		left: 50%;
		width: 0px;
		background-color: #000000;
	}
}

@media (min-width: 992px) {
	.main__menu .menu-item {
		position: relative;
		padding: 10px 0px;
	}

	.main__menu .menu-item .sub-menu {
		display: none;
		opacity: 0;
		transition: opacity 600ms, visibility 600ms;
	}

	.main__menu .menu-item:focus .sub-menu,
	.main__menu .menu-item:hover .sub-menu {
		opacity: 1;
		animation: fade 600ms;
		display: block;
		flex-direction: column;
		position: absolute;
		top: 100%;
		right: 0px;
		padding: 10px;
		min-width: 200px;
		background-color: #ffffff;
		border: 1px solid #e7e7e7;
		border-radius: 5px;
	}

	.main__menu .menu-item .sub-menu .menu__link {
		display: flex;
	}

	@keyframes fade {
		0% {
			opacity: 0;
		}

		100% {
			opacity: 1;
		}
	}
}

@media (max-width: 991.98px) {
	.main__menu .menu-item .sub-menu {
		display: flex;
		flex-direction: column;
		margin-top: 15px;
		padding-left: 20px;
		gap: 15px;
	}
}

/* end___MAIN MENU */

/* Polylang switcher */

.pll-switcher-select {
	color: #ffffff;
	background-color: transparent;
	text-transform: uppercase;
}

.pll-switcher-select:hover {
	cursor: pointer;
}

.pll-switcher-select option {
	color: #ffffff;
	background-color: #565656;
}

@media (max-width: 991.98px) {
	.menu-open .menu__item--language {
		display: flex;
		align-items: center;
		width: 67px;
		height: 48px;
	}
}

/* end___Polylang switcher */

/* Info Block */

.menu__item.menu__item--info {
	display: flex;
	flex-direction: column;
	row-gap: 10px;
	color: #ffffff;
}

@media (max-width: 991.98px) {
	.menu-open .main__menu .menu__item.menu__item--info {
		margin-top: 20px;
	}
}

.menu__item.menu__item--info .menu__item--tel {
	position: relative;
	padding-left: 30px;
	font-family: 'TTFirsNeue-Medium', Helvetica, Arial, sans-serif;
	font-size: 32px;
}

.menu__item.menu__item--info .menu__item--tel::before {
	content: url("data:image/svg+xml;charset=UTF-8,<svg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M3.62 7.79C5.06 10.62 7.38 12.93 10.21 14.38L12.41 12.18C12.68 11.91 13.08 11.82 13.43 11.94C14.55 12.31 15.76 12.51 17 12.51C17.55 12.51 18 12.96 18 13.51V17C18 17.55 17.55 18 17 18C7.61 18 0 10.39 0 1C0 0.45 0.45 0 1 0H4.5C5.05 0 5.5 0.45 5.5 1C5.5 2.25 5.7 3.45 6.07 4.57C6.18 4.92 6.1 5.31 5.82 5.59L3.62 7.79Z' fill='white'/></svg>");
	position: absolute;
	top: 0px;
	left: 0px;
	width: 18px;
	height: 18px;
}

.menu-open .menu__item.menu__item--info .menu__item--tel::before {
	content: url("data:image/svg+xml;charset=UTF-8,<svg width='18' height='18' viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M3.62 7.79C5.06 10.62 7.38 12.93 10.21 14.38L12.41 12.18C12.68 11.91 13.08 11.82 13.43 11.94C14.55 12.31 15.76 12.51 17 12.51C17.55 12.51 18 12.96 18 13.51V17C18 17.55 17.55 18 17 18C7.61 18 0 10.39 0 1C0 0.45 0.45 0 1 0H4.5C5.05 0 5.5 0.45 5.5 1C5.5 2.25 5.7 3.45 6.07 4.57C6.18 4.92 6.1 5.31 5.82 5.59L3.62 7.79Z' fill='%23000000'/></svg>");
}

.menu-open .menu__item.menu__item--info .menu__item--download {
	color: #000000;
}

.menu__item.menu__item--info .menu__item--download {
	font-family: 'TTFirsNeue-Medium', Helvetica, Arial, sans-serif;
	font-size: 18px;
	text-align: center;
}

/* end___Info Block */

/* ARTICLE */

.article {
	margin-bottom: 15px;
	padding: 15px;
	background-color: #ffffff;
	border-radius: 5px;
	box-shadow: 0px 0px 10px #D9DBDF;
}

.single-post .article {
	border: none;
}

.article__title {
	margin-bottom: 20px;
}

.article__content {
	margin-bottom: 20px;
}

.article__text>* {
	margin-top: 20px;
	line-height: 1.5;
}

.article__content .read-more {
	display: block;
	margin-top: 20px;
}

.article__meta {
	display: flex;
	flex-direction: column;
	gap: 15px;
	margin-bottom: 20px;
}

.article__navigation {
	margin-bottom: 20px;
}

/* Comments */

.article__comments .comment-reply-title {
	margin-top: 20px;
}

.article__comments .comment {
	margin-bottom: 30px;
}

.article__comments .comment .children {
	margin-top: 15px;
	margin-left: 30px;
}

.article__comments .comment .comment-meta {
	margin-top: 15px;
}

.article__comments .comment .comment-meta .comment-author {
	display: flex;
	align-items: center;
	gap: 15px;
}

.article__comments .comment .comment-meta .comment-author .avatar {
	max-width: 40px;
}

.article__comments .comment .comment-meta .comment-metadata {
	margin-top: 15px;
}

.article__comments .comment .comment-content {
	margin-top: 15px;
	line-height: 1.5;
}

.article__comments .comment .reply {
	margin-top: 10px;
}

.article__comments .comment-error {
	padding: 15px;
	color: #ffffff;
	background-color: #b22222;
}

/* end___Comments */

/* Widget area */

.widget-area .wp-block-heading {
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 15px;
}

.widget-area .wp-block-latest-comments .wp-block-latest-comments__comment {
	margin-bottom: 0px;
}

.widget-area .wp-block-latest-posts .wp-block-latest-posts__post-title {
	display: block;
	margin-bottom: 10px;
}

/* end___Widget area */

/* end___ARTICLE */

/* Scroll To Top Button */

.scrollToTopBtn {
	position: fixed;
	display: block;
	width: 50px;
	height: 50px;
	bottom: 25px;
	right: 25px;
	padding: 8px 4px;
	cursor: pointer;
	transform: translateY(100px);
	opacity: 0;
	transition: transform 0.5s, opacity 0.3s;
	background-color: #dddddd;
	z-index: 999;
}

.scrollToTopBtn:hover {
	background-color: #d2d2d2;
}

.showScrollBtn {
	transform: translateY(0);
	opacity: 1;
}

/* end___Scroll To Top Button */

/* Standard WordPress comment form */

.comment-form {
	margin-top: 15px;
	margin-bottom: 15px;
}

.comment-form p:not(:last-child) {
	margin-bottom: 15px;
}

.comment-form textarea {
	width: 100%;
	height: 200px;
	padding: 5px;
}

@media (max-width: 767.98px) {
	.comment-form textarea {
		width: 100%;
	}
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form input[type="tel"] {
	width: 100%;
	height: 35px;
	padding: 5px;
}

@media (max-width: 767.98px) {

	.comment-form input[type="text"],
	.comment-form input[type="email"],
	.comment-form input[type="url"],
	.comment-form input[type="tel"] {
		width: 100%;
	}
}

.comment-form input[type="submit"] {
	width: 200px;
	height: 50px;
	padding: 5px;
	background-color: transparent;
	border: 1px solid #949494;
	cursor: pointer;
}

.comment-form input[type="submit"]:hover {
	border: 4px solid #e7e7e7;
}

/* end___Standard WordPress comment form */


/* ========== PORTFOLIO ========== */

/* .portfolio-archive .article {}
.portfolio-archive .article__title {}
.portfolio-archive .article__content {}
.portfolio-single .article {}
.portfolio-single .article__title {}
.portfolio-single .article__content {} */

/* ========== end___PORTFOLIO ========== */

/* ====================================================== */
/* ===================== HOME PAGE ====================== */
/* ====================================================== */

/* ========== HERO ========== */

.home-page .hero {
	position: relative;
}

.home-page .hero__body {
	position: relative;
	display: flex;
	padding-top: 379px;
	padding-bottom: 270px;
	color: #ffffff;
	z-index: 2;
}

@media (max-width: 991.98px) {
	.home-page .hero__body {
		flex-wrap: wrap;
		height: initial;
		padding-top: 181px;
	}
}

.home-page .hero__ad-banner {
	position: absolute;
	width: 125px;
	height: 38px;
	top: -50px;
	left: 0px;
}
@media (max-width: 991.98px) {
	.home-page .hero__ad-banner {
		width: 167px;
		height: 50px;
		top: -60px;
	}
}

.home-page .hero__content {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: flex-end;
	margin: 0 auto;
}
@media (max-width: 1440px) {
	.home-page .hero__content {
		flex-direction: column;
		align-items: flex-end;
		justify-content: flex-start;
		position: relative;
		gap: 20px;
	}
}
@media (max-width: 1024px) {
	.home-page .hero__content {
		align-items: flex-start;
	}
}
@media (max-width: 991.98px) {
	.home-page .hero__content {
		row-gap: 35px;
		max-width: 100%;
	}
}

.home-page .hero__title {
	display: block;
	position: relative;
	max-width: 1150px;
}

.home-page .hero__title > h1 {
	display: inline-block;
	font-family: 'TTFirsNeue-Regular', Helvetica, Arial, sans-serif;
	font-size: 157px;
	text-transform: uppercase;
	color: #ffffff;
}

@keyframes rotate {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}

/* ANIMATE ICON */

.bg-realasy {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.home-page .hero__logo {
	display: block;
	position: absolute;
	top: 0px;
	right: -155px;
	width: 126px;
	height: 126px;
	cursor: pointer;
}

.home-page .about-main-left__icon {
	display: block;
	width: 126px;
	height: 126px;
	cursor: pointer;
}
@media (max-width: 1024px) {
	.home-page .about-main-left__icon {
		width: 100px;
		height: 100px;
	}
}

.home-page .hero__logo:hover .hero__logo-background,
.home-page .about-main-left__icon:hover .hero__logo-background,
.home-page .about-main-left__icon:hover .hero__logo-background--dark {
	animation-play-state: paused;
}

.home-page .hero__logo:hover .arrow-logo-icon,
.home-page .about-main-left__icon:hover .arrow-logo-icon,
.home-page .about-main-left__icon:hover .arrow-logo-icon--light {
	transform: rotate(-45deg);
}

.home-page .hero__logo-background {
	width: 100%;
	height: 100%;
	/* background-image: url('../images/logo-mask.svg'); */
	animation: rotate 20s linear infinite;
	background-size: cover;
	position: absolute;
	top: 0px;
	left: 0px;
}

.home-page .hero__logo-background--dark {
	width: 100%;
	height: 100%;
	/* background-image: url('../images/logo-mask-dark.svg'); */
	animation: rotate 20s linear infinite;
	background-size: cover;
	position: absolute;
	top: 0px;
	left: 0px;
}

.home-page .arrow-logo-icon {
	content: "";
	display: inline-block;
	background-image: url('../images/arrow-logo.svg');
	width: 24px;
	height: 26px;
	position: absolute;
	top: calc(50% - 13px);
	left: calc(50% - 12px);
	transition: transform 0.3s;
}

.home-page .arrow-logo-icon--light {
	content: "";
	display: inline-block;
	background-image: url('../images/arrow-logo-light.svg');
	width: 24px;
	height: 26px;
	position: absolute;
	top: calc(50% - 13px);
	left: calc(50% - 12px);
	transition: transform 0.3s;
}

/* /.ANIMATE ICON */

.home-page .hero__desc {
	display: inline-flex;
	max-width: 318px;
	font-family: 'TTFirsNeue-Medium', Helvetica, Arial, sans-serif;
	font-size: 20px;
	margin-left: -30px;
}

.home-page .hero__desc > p {
	display: inline-block;
	font-size: 20px;
	font-weight: 500;
	line-height: 26px;
	text-align: left;
	padding: 0 0 30px 0;
	font-family: 'TTFirsNeue-Regular';
}

.home-page .hero__background {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0px;
	background-color: #D9D9D9;
}

.home-page .hero__background:after {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
	background: linear-gradient(0deg, rgba(10, 20, 12, 0.40) 0%, rgba(10, 20, 12, 0.40) 100%);
	background: rgba(10, 20, 12, 0.40);
}

.home-page .hero__background img {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0px;
	object-fit: cover;
	object-position: top;
}

/* ========== end___HERO ========== */

/* ========== ABOUT ========== */

.about {
	color: #0A140C;
}

.about__body {
	padding: 170px 0;
}

.about__slider {
	width: 100%;
	/* контейнер для слайдера */
	overflow: hidden;
	/* предотвращает растягивание за границы */
}

.about__slider .swiper {
	width: 100%;
	/* слайдер адаптируется к ширине контейнера */
}

.about__slider .swiper-slide {
	display: flex;
	/* или flex-basis, если нужны другие стили */
	justify-content: center;
	/* выравнивание содержимого */
}

.swiper {
	width: 100%;
	/* ограничивает слайдер шириной контейнера */
}

.swiper-slide {
	max-width: 100%;
	/* чтобы слайды не выходили за границы */
}

.about__header {
	display: flex;
	column-gap: 56px;
}

.about__title {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	max-width: 50%;
	width: 100%;
	gap: 60px;
}

.about-title__text {
	font-family: 'TTFirsNeue-Medium', Helvetica, Arial, sans-serif;
	font-size: 128px;
	text-transform: uppercase;
}

.about-title__icon img {
	width: 90px;
	height: 90px;
}

/* Slider */

.about__slider {
	max-width: 49%;
	width: 100%;
}

.planning .swiper-navigation,
.progress .swiper-navigation,
.news .swiper-navigation,
.gallery .swiper-navigation,
.about__slider .swiper-navigation,
.build-progress-item__slider .swiper-navigation {
	position: absolute;
	width: 100px;
	right: 0px;
	bottom: 50px;
}

.planning .swiper-navigation .swiper-button-prev,
.progress .swiper-navigation .swiper-button-prev,
.news .swiper-navigation .swiper-button-prev,
.gallery .swiper-navigation .swiper-button-prev,
.about__slider .swiper-navigation .swiper-button-prev,
.build-progress-item__slider .swiper-navigation .swiper-button-prev {
	width: 30px;
	height: 30px;
}

.planning .swiper-navigation .swiper-button-prev::after,
.progress .swiper-navigation .swiper-button-prev::after,
.news .swiper-navigation .swiper-button-prev::after,
.gallery .swiper-navigation .swiper-button-prev::after,
.about__slider .swiper-navigation .swiper-button-prev::after,
.build-progress-item__slider .swiper-navigation .swiper-button-prev::after {
	position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	width: 100%;
	height: 100%;
	background-image: url("data:image/svg+xml;charset=UTF-8,<svg width='30' height='28' viewBox='0 0 30 28' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M30 12.7632L4.04661 12.7632L15.1695 1.62445L13.7712 0.0332025L6.01958e-07 13.824L13.7712 27.6149L15.1695 26.0236L4.04661 14.8849L30 14.8849L30 12.7632Z' fill='%23484E2C'/></svg>");
	content: '';
}

.planning .swiper-navigation .swiper-button-next,
.progress .swiper-navigation .swiper-button-next,
.news .swiper-navigation .swiper-button-next,
.gallery .swiper-navigation .swiper-button-next,
.about__slider .swiper-navigation .swiper-button-next,
.build-progress-item__slider .swiper-navigation .swiper-button-next {
	width: 30px;
	height: 30px;
}

.planning .swiper-navigation .swiper-button-next::after,
.progress .swiper-navigation .swiper-button-next::after,
.news .swiper-navigation .swiper-button-next::after,
.gallery .swiper-navigation .swiper-button-next::after,
.gallery .swiper-navigation .swiper-button-next::after,
.about__slider .swiper-navigation .swiper-button-next::after,
.build-progress-item__slider .swiper-navigation .swiper-button-next::after {
	position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
	content: '';
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	width: 100%;
	height: 100%;
	background-image: url("data:image/svg+xml;charset=UTF-8,<svg width='30' height='28' viewBox='0 0 30 28' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M1.3517e-06 12.7632L25.9534 12.7632L14.8305 1.62445L16.2288 0.0332025L30 13.824L16.2288 27.6149L14.8305 26.0236L25.9534 14.8849L1.25909e-06 14.8849L1.3517e-06 12.7632Z' fill='%23484E2C'/></svg>");
}

.planning .swiper-pagination,
.progress .swiper-pagination,
.news .swiper-pagination,
.gallery .swiper-pagination,
.about__slider .swiper-pagination,
.build-progress-item__slider .swiper-pagination {
	display: flex;
}

.planning .swiper-pagination .swiper-pagination-bullet,
.progress .swiper-pagination .swiper-pagination-bullet,
.news .swiper-pagination .swiper-pagination-bullet,
.gallery .swiper-pagination .swiper-pagination-bullet,
.about__slider .swiper-pagination .swiper-pagination-bullet,
.build-progress-item__slider .swiper-pagination .swiper-pagination-bullet {
	width: 50%;
	height: 2px;
}

.planning .swiper-pagination .swiper-pagination-bullet-active,
.progress .swiper-pagination .swiper-pagination-bullet-active,
.news .swiper-pagination .swiper-pagination-bullet-active,
.gallery .swiper-pagination .swiper-pagination-bullet-active,
.about__slider .swiper-pagination .swiper-pagination-bullet-active,
.build-progress-item__slider .swiper-pagination .swiper-pagination-bullet-active {
	background-color: #484E2C;
}

.about-slide__title {
	font-family: 'TTFirsNeue-Medium', Helvetica, Arial, sans-serif;
	font-size: 32px;
}

.about-slide__text {
	display: flex;
	gap: 30px;
	margin-top: 50px;
	margin-bottom: 88px;
	font-size: 20px;
}

@media (max-width: 991.98px) {
	.about-slide__text {
		flex-direction: column;
		margin-top: 30px;
	}
}

@media (max-width: 767.98px) {
	.about-slide__text {
		margin-top: 20px;
		margin-bottom: 64px;
		font-size: 18px;
	}
}

.about__main {
	display: flex;
	column-gap: 30px;
	margin-top: 50px;
}

@media (max-width: 991.98px) {
	.about__main {
		column-gap: 20px;
		margin-top: 60px;
	}
}

@media (max-width: 767.98px) {
	.about__main {
		margin-top: 40px;
	}
}

.about-main__left {
	flex: 1 1 50%;
}

.about-main-left__text {
	display: flex;
	align-items: center;
	column-gap: 50px;
	row-gap: 20px;
	margin-top: 54px;
	padding-left: 50px;
	flex-wrap: wrap;
	justify-content: flex-end;
}

@media (max-width: 991.98px) {
	.about-main-left__text {
		flex-wrap: wrap;
		margin-top: 30px;
		padding-left: 0px;
	}
}

@media (max-width: 767.98px) {
	.about-main-left__text {
		margin-top: 46px;
	}
}

.about-main-left__content {
	display: flex;
	column-gap: 50px;
	max-width: 570px;
	min-width: 450px;
}

@media (max-width: 991.98px) {
	.about-main-left__content {
		align-items: last baseline;
	}
}

.about-main-left__count {
	font-family: 'TTFirsNeue-Medium', Helvetica, Arial, sans-serif;
	font-size: 168px;
}

@media (max-width: 991.98px) {
	.about-main-left__count {
		font-size: 100px;
	}

	.about-main-left__count p {
		text-align: left;
	}
}

.about-main-left__desc {
	font-size: 20px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-end;
}

.about-main-left__desc p {
	font-size: 20px;
	font-weight: 400;
	line-height: 26px;
}

@media (max-width: 991.98px) {
	.about-main-left__desc {
		font-size: 18px;
	}
}

.about-main__right {
	flex: 1 1 50%;
}

.about-main-left__icon {
	position: relative;
	width: 126px;
	height: 126px;
	cursor: pointer;
}
@media (max-width: 991.98px) {
	.about-main-left__icon {
		max-width: 110px;
		margin-left: auto;
	}
}

@media (max-width: 767.98px) {
	.about-main-left__icon {
		max-width: 113px;
	}
}

/* ========== end___ABOUT ========== */

/* ========== LOCATION ========== */

.location {
	height: 100vh;
	max-height: 1040px;
	padding: 170px 0 0 0;
	position: relative;
	background-position: top;
}
@media (max-width: 991.98px) {
	.location {
		padding-top: 40px;
	}
}

.location__marker {
	width: 80px;
	height: 80px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: rgba(255, 255, 255, 0.6);
	transition: background-color 0.6s;
	border-radius: 60px;
	cursor: pointer;
	position: absolute;
}

.location__marker:hover {
	background-color: rgba(255, 255, 255, 1);
}

.location__marker--pos-1 {
	top: 5vh;
	left: 45vw;
}

.location__marker--pos-2 {
	left: 57vw;
	top: 42vh;
}

.location__marker--pos-3 {
	bottom: 15vh;
	left: 19vw;
}

.location__marker--pos-4 {
	bottom: 10vh;
	right: 10vw;
}

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

.location__marker.open {
	background-color: rgba(255, 255, 255, 1);
}

.location__marker.open>.location__marker__content {
	opacity: 1;
	z-index: 4;
}

.location__marker__content {
	display: flex;
	position: absolute;
	width: 300px;
	background-color: white;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	padding: 30px;
	backdrop-filter: blur(24px);
	box-shadow: 1px 1px 40px 0px #0A140C33;
	border-radius: 30px 30px 30px 0;
	gap: 20px;
	left: 65px;
	bottom: 35px;
	opacity: 0;
	transition: opacity 0.6s;
	z-index: -99;
}

.location__marker__content > span {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: flex-start;
	gap: 20px;
}

.location__marker__content > p {
	display: inline-block;
	font-size: 18px;
	line-height: 23px;
}

.location__marker__content__icon {
	display: inline-block;
	width: 35px;
	height: 35px;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

.location__header {
	display: flex;
	row-gap: 20px;
	justify-content: space-between;
	align-items: center;
	position: relative;
	z-index: 5;
}

.plus-icon {
	display: inline-block;
	width: 21px;
	height: 21px;
	background-image: url('../images/plus.svg');
}

.location__marker.location__marker--pos-4 .location__marker__content {
	left: -270px;
	bottom: 40px;
	border-radius: 30px 30px 0 30px;
}

@media (max-width: 767.98px) {
	.location__header {
		flex-direction: column;
		align-items: flex-start;
	}
}

.location__title {
	font-family: 'TTFirsNeue-Medium', Helvetica, Arial, sans-serif;
	font-size: 128px;
	color: #ffffff;
	text-transform: uppercase;
}

@media (max-width: 991.98px) {
	.location__title {
		font-size: 64px;
	}
}

.location__desc {
	max-width: 447px;
	font-size: 20px;
	color: #ffffff;
}

@media (max-width: 991.98px) {
	.location__desc {
		max-width: 336px;
	}
}

@media (max-width: 991.98px) {
	.location__background img {
		max-height: 419px;
		object-position: top;
	}
}

/* ========== end___LOCATION ========== */

/* ========== GALLERY ========== */

.gallery {
	padding: 170px 0
}

.gallery__body {
	position: relative;
}

.gallery__tabs__mob {
	width: 100%;
	height: 50px;
	justify-content: flex-start;
	align-items: center;
	border-radius: 50px;
	position: relative;
}

.gallery__tabs__mob__current-select {
	background-color: #484E2C;
	border-radius: 50px;
	z-index: 10;
}

.tabs__header__mob__select > span,
.gallery__tabs__mob__selector > span,
.gallery__tabs__mob > span {
	display: inline-flex;
	width: 100%;
	height: 100%;
	justify-content: space-between;
	align-items: center;
	padding: 0 20px 0 35px;
	color: white;
	font-size: 18px;
	line-height: 24px;
	cursor: pointer;
}

.tabs__header__mob .tabs__header__mob__select,
.gallery__tabs__mob__selector {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	position: absolute;
	background-color: #484E2C;
	border-radius: 0 0 50px 50px;
	width: 100%;
	padding: 20px 0;
	overflow: hidden;
	opacity: 0;
	transform: translateY(-10px);
	transition: opacity 1s ease, transform 0.6s ease;
	z-index: 1;
	gap: 20px;
}

.gallery__tabs__mob__selector {
	bottom: -151px;
	padding: 44px 0 20px;
}


.gallery__tabs__mob__selector {
	background-color: #5D643D;
}

.tabs__header__mob .tabs__header__mob__select {
	left: 0;
	bottom: -106px;
	background-color: #5D643D;
	padding: 44px 0 20px;
}

.tabs__header__mob.open .tabs__header__mob__select,
.gallery__tabs__mob__selector.open {
	opacity: 1;
	transform: translateY(0);
	/* Конечная позиция */
	z-index: 8;
}

.gallery__header {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

@media (max-width: 767.98px) {
	.gallery__header {
		flex-direction: column;
		row-gap: 20px;
	}
}

.gallery__title {
	display: flex;
	justify-content: center;
	align-items: center;
}

.planning__title h2,
.progress__title h2,
.news__title h2,
.gallery__title h2,
.build-progress__title h2 {
	display: inline-block;
	font-family: 'TTFirsNeue-Medium', Helvetica, Arial, sans-serif;
	font-size: 128px;
	text-transform: uppercase;
	color: #0A140C;
}

@media (max-width: 991.98px) {
	.gallery__title {
		font-size: 64px;
	}
}

@media (max-width: 767.98px) {
	.gallery__title {
		font-size: 32px;
	}
}

.gallery__desc {
	display: flex;
	align-items: center;
	column-gap: 20px;
}

.gallery-desc__number {
	font-family: 'TTFirsNeue-Medium', Helvetica, Arial, sans-serif;
	font-size: 128px;
	color: #0A140C;
}

@media (max-width: 991.98px) {
	.gallery-desc__number {
		font-size: 96px;
	}
}

.gallery-desc__subtitle {
	max-width: 212px;
	width: 100%;
	font-size: 20px;
	line-height: 1.3;
	color: #0A140C;
}

@media (max-width: 767.98px) {
	.gallery-desc__subtitle {
		max-width: 100%;
	}
}

.gallery__main {
	margin: 35px 0 0 0;
	border-radius: 50px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: flex-end;
}

.gallery__tabs {
	padding: 2px;
	background-color: #484E2C;
	border: 2px solid #484E2C;
	border-radius: 50px;
}

.gallery__tabs span {
	padding: 0 29px;
	height: 56px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	font-size: 20px;
	line-height: 26px;
	color: #FFFFFF;
	cursor: pointer;
}

.gallery__tabs__mob {
	display: none;
}

.gallery__tabs span.active {
	color: #0A140C;
	background-color: white;
	border-radius: 50px;

}

.gallery__slider {
	margin: 70px 0 0 0;
}

.planning .swiper-wrapper,
.progress .swiper-wrapper,
.news .swiper-wrapper,
.gallery__slider .swiper-wrapper,
.build-progress-item__slider .swiper-wrapper {
	margin: 0 0 90px 0;
}

.gallery__slider {
	display: block;
	opacity: 0;
	z-index: -999;
	position: absolute;
	left: -999999px;
	transition: opacity 0.6s;
}

.gallery__slider.active {
	opacity: 1;
	z-index: 7;
	position: relative;
	left: auto;
}

.gallery__slide .swiper-wrapper .swiper-slide img {
	width: 100%;
	height: auto;
}

.gallery .swiper-backface-hidden .swiper-slide {
	width: 100% !important;
	height: 760px;
	overflow: hidden;
}

.gallery__main .swiper-slide img {
	height: 100%;
}

.gallery .arrow-white-icon {
	transform: rotate(0);
	transition: transform 0.3s;
	display: inline-block;
	width: 18px;
	height: 20px;
	background-image: url('../images/arrow-white.svg');
}

/* ========== end___GALLERY ========== */

/*-------------local-------------*/
/* .map {
	padding: 170px 0 30px 0;
} */

.map-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(127, 132, 108, 0.59);
	/* Цвет фона */
	pointer-events: none;
	/* Чтобы не блокировать клики по карте */
	z-index: 1;
	/* Фон будет под маркером */
}

.custom-marker-label {
	position: absolute;
	width: 105px;
	font-size: 12px;
	line-height: 1.5;
	text-align: center;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 1);
	background-color: transparent;
}

.mapy__header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 50px;
}

.map__title {
	font-size: 128px;
	line-height: 165px;
	text-transform: uppercase;
}

.map__desc {
	position: absolute;
	top: 0px;
	right: 0px;
}

.map__desc > img {
	width: 62px;
	height: 62px;
	padding-bottom: 3px;
}

.map__form {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 110px;
	margin: 0 0 85px 0;
}
@media (max-width: 1720px) {
	.map__form {
		gap: 34px;
	}
}
@media (max-width: 1440px) {
	.map__form {
		justify-content: flex-start;
		align-items: flex-start;
		
	}
}
@media (max-width: 1024px) {
	.map__form {
		flex-direction: column;
		gap: 20px;
	}
}
@media (max-width: 767.98px) {
	.map__form {
		position: relative;
		margin: 0 0 20px 0;
	}
}

.map__form__left {
	flex-shrink: 0;
}

.map__form__left > * {
	font-size: 97px;
	font-weight: 500;
	line-height: 125px;
}
@media (max-width: 1500px) {
	.map__form__left > * {
		font-size: 85px;
		line-height: 113px;
	}
}
@media (max-width: 1440px) {
	.map__form__left > * {
		font-size: 80px;
		line-height: 108px;
	}
}
@media (max-width: 1350px) {
	.map__form__left > * {
		font-size: 60px;
		line-height: 88px;
	}
}
@media (max-width: 1210px) {
	.map__form__left > * {
		font-size: 40px;
		line-height: 68px;
	}
}
@media (max-width: 1070px) {
	.map__form__left > * {
		font-size: 32px;
		line-height: 41px;
	}
}

.map__form__left strong {
	font-weight: 600;
}

.map__form__right {
	position: relative;
	max-width: 970px;
	width: 100%;
}
@media (max-width: 767.98px) {
	.map__form__right {
		position: initial;
	}
}
@media (max-width: 1720px) {
	.map__form__right {
		max-width: 100%;
	}
}


.map__form__right__wrapper {
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 30px;
	flex-direction: column;
}

.map__form__right span {
	font-weight: 400;
	font-size: 20px;
	line-height: 26px;
	max-width: 410px;
}

/* Form */

.map__form__right__form {
	margin-top: 10px;
}
@media (max-width: 991.98px) {
	.map__form__right__form {
        margin-top: 0px;
    }
}
@media (max-width: 767.98px) {
	.map__form__right__form {
        margin-top: 45px;
    }
}

.map__form__right__form .wpcf7-form {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: repeat(1, 1fr);
	grid-column-gap: 30px;
	grid-row-gap: 0px;
}
@media (max-width: 767.98px) {
	.map__form__right__form .wpcf7-form {
		display: flex;
		flex-direction: column;
		row-gap: 20px;
		align-items: end;
	}
}

.map__form__right__form .wpcf7-form .wpcf7-form-control-wrap[data-name="your-name"] { 
	grid-area: 1 / 1 / 2 / 2; 
}
@media (max-width: 767.98px) {
	.map__form__right__form .wpcf7-form .wpcf7-form-control-wrap[data-name="your-name"] { 
        width: 100%;
    }
}

.map__form__right__form .wpcf7-form .wpcf7-form-control-wrap[data-name="tel-470"] { 
	grid-area: 1 / 2 / 2 / 3; 
}
@media (max-width: 767.98px) {
	.map__form__right__form .wpcf7-form .wpcf7-form-control-wrap[data-name="tel-470"] { 
        width: 100%;
    }
}

.map__form__right__form .wpcf7-form .wpcf7-form-control[type="submit"] { 
	grid-area: 1 / 3 / 2 / 4; 
}

.map__form__right__form .wpcf7-form .wpcf7-spinner { 
	grid-area: 2 / 1 / 3 / 4; 
}

.map__form__right__form .wpcf7-form .wpcf7-response-output { 
	grid-area: 3 / 1 / 4 / 4; 
}

.map__form__right__form .wpcf7 input[type="text"],
.map__form__right__form .wpcf7 input[type="tel"] {
	max-width: 405px;
	height: 80px;
	padding-left: 35px;
	border-radius: 50px;
	background-color: #F3F3F3;
	border: none;
}
@media (max-width: 1700px) {
	.map__form__right__form .wpcf7 input[type="text"],
	.map__form__right__form .wpcf7 input[type="tel"] {
		max-width: 350px;
	}
}
@media (max-width: 1580px) {
	.map__form__right__form .wpcf7 input[type="text"],
	.map__form__right__form .wpcf7 input[type="tel"] {
		max-width: 302px;
	}
}
@media (max-width: 1440px) {
	.map__form__right__form .wpcf7 input[type="text"],
	.map__form__right__form .wpcf7 input[type="tel"] {
		height: 60px;
	}	
}
@media (max-width: 991.98px) {
	.map__form__right__form .wpcf7 input[type="text"],
	.map__form__right__form .wpcf7 input[type="tel"] {
		max-width: 225px;
		height: 50px;
	}
}
@media (max-width: 767.98px) {
	.map__form__right__form .wpcf7 input[type="text"],
    .map__form__right__form .wpcf7 input[type="tel"] {
        max-width: 100%;
        height: 60px;
    }
}

.map__form__right__form .wpcf7 .wpcf7-submit {
    position: relative;
    width: 80px;
	height: 80px;
	background-color: rgba(72, 78, 44, 1);
	border-radius: 60px;
    /* background-image: url("data:image/svg+xml;charset=UTF-8,<svg xmlns='http://www.w3.org/2000/svg' width='23' height='23' viewBox='0 0 23 23'><path d='M2.29997 22.2264L20.6518 3.87456L20.6502 19.6031L22.7623 19.7377L22.7643 0.264273L3.29085 0.266246L3.42545 2.37835L19.154 2.37676L0.80217 20.7286L2.29997 22.2264Z' fill='%23484E2C'/></svg>"); */
	background-image: url('../images/arrow-white.svg');
    background-size: 23px 23px;
    background-repeat: no-repeat;
    background-position: center;
    color: transparent;
    text-shadow: none;
    border: none;
    cursor: pointer;
}
@media (max-width: 991.98px) {
	.map__form__right__form .wpcf7 .wpcf7-submit {
		width: 50px;
        height: 50px;
		background-size: 16px 16px;
	}
}
@media (max-width: 767.98px) {
	.map__form__right__form .wpcf7 .wpcf7-submit {
        width: 60px;
        height: 60px;
    }
}

.map__form__right__form .wpcf7 .wpcf7-spinner {
	display: none;
	visibility: hidden;
}

.map__form__right__form .wpcf7 form.invalid .wpcf7-response-output, 
.map__form__right__form .wpcf7 form.unaccepted .wpcf7-response-output,
.map__form__right__form .wpcf7 form.payment-required .wpcf7-response-output,
.map__form__right__form .wpcf7 form.sent .wpcf7-response-output {
	margin-left: 0px;
	padding-left: 0px;
	border-color: transparent;
}

.map__form__right__form .wpcf7 .wpcf7-not-valid-tip {
	margin-top: 15px;
	text-align: center;
}

/* /.Form */

.map-wrapper #map {
	width: 100%;
	height: 650px;
	border-radius: 10px;
}

.map-wrapper {
	position: relative;
}

.tabs {
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 50px;
	flex-direction: column;
}

.tabs-wrapper {
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	position: absolute;
	padding: 50px 0 0 60px;
	width: auto;
	height: 95%;
	z-index: 7;
}

.tabs__header {
	display: flex;
	background-color: rgba(72, 78, 44, 1);
	justify-content: space-between;
	align-items: center;
	max-width: 430px;
	width: 100%;
	height: 60px;
	padding: 2px;
	border-radius: 60px;
	border: 2px solid rgba(72, 78, 44, 1);
}

.tabs__header span {
	cursor: pointer;
	padding: 0 30px;
	color: rgba(255, 255, 255, 1);
	justify-content: center;
	align-items: center;
	display: inline-flex;
	height: 100%;
}

.tabs__header span:nth-child(2) {
	padding: 0 80px;
}

.tabs__header span.active {
	border-radius: 60px;
	color: rgba(10, 20, 12, 1);
	background-color: rgba(255, 255, 255, 1);
}

.tabs__body {
	width: 100%;
}

.tabs__body__col1--main,
.tabs__body__col2--main {
	width: 100%;
	background-color: rgba(255, 255, 255, 1);
	border-radius: 30px;
	padding: 30px;
	backdrop-filter: blur(24px);
	box-shadow: 1px 1px 40px 0px rgba(10, 20, 12, 0.2);
}

.tabs__body__col1--btn,
.tabs__body__col2--btn {
	position: relative;
	width: 100%;
	height: 56px;
	background-color: rgba(255, 255, 255, 1);
	border-radius: 30px;
	backdrop-filter: blur(24px);
	box-shadow: 1px 1px 40px 0px rgba(10, 20, 12, 0.2);
}

.tabs__body__col1--btn::before,
.tabs__body__col2--btn::before {
	content: "";
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 2px;
	width: 52px;
	height: 52px;
	background-color: rgba(72, 78, 44, 1);
    border-radius: 60px;
	background-image: url(../images/arrow-white.svg);
	background-size: 23px 23px;
	background-repeat: no-repeat;
	background-position: center;
	color: transparent;
	text-shadow: none;
	border: none;
	z-index: -1;
}

.tabs__body__col1--btn a,
.tabs__body__col2--btn a {
	display: flex;
	align-items: center;
	width: 100%;
	height: 100%;
	padding-left: 30px;
}

.tabs__body__col1,
.tabs__body__col2 {
	display: none;
	justify-content: flex-start;
	align-items: flex-start;
	flex-direction: column;
	gap: 30px;
}

.tabs__body__col1.open,
.tabs__body__col2.open {
	display: flex;
}

.tabs__body__col1__title,
.tabs__body__col2__title {
	font-size: 32px;
	font-weight: 500;
	line-height: 41px;
	color: rgba(10, 20, 12, 1);
	text-transform: uppercase;
}

.tabs__body__col1_content,
.tabs__body__col2_content {
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 30px;
	flex-direction: column;
}

.tabs__body__col1__content__row > span,
.tabs__body__col2__content__row > span {
	display: inline-block;
	margin-bottom: 15px;
	font-size: 20px;
	font-weight: 400;
	line-height: 26px;
	opacity: 0.50; 
	color: #0A140C;
}

.tabs__body__col1__content__row > div,
.tabs__body__col2__content__row > div {
	font-size: 20px;
	font-weight: 400;
	line-height: 26px;
	color: rgba(10, 20, 12, 1);
}

.gallery-desc__headers {
    display: none; /* За замовчуванням приховуємо всі вкладки */
}

.gallery-desc__headers.active {
    display: block; /* Показуємо активну вкладку */
}

.custom-control {
	background-color: white;
	color: #0A140C;
	border-radius: 60px;
	cursor: pointer;
	display: inline-block;
	width: 56px;
	height: 56px;
	display: inline-flex;
	justify-content: center;
	align-items: center;
}

.control-container {
	position: absolute;
	top: 250px;
	right: 90px;
	z-index: 5;
	flex-direction: column;
	display: flex;
	gap: 10px;
}

.control-container img {
	width: 15px;
	height: 15px;
}

.tabs__header__mob {
	display: none;
	position: relative;
	bottom: -100px;
}

.tabs__header__mob.open .arrow-white-icon {
	transform: rotate(135deg);
}

.tabs__header__mob > span {
	font-size: 18px;
	line-height: 1;
	width: 100%;
	height: 50px;
	border-radius: 50px;
	padding: 0 20px 0 35px;
	background-color: #484E2C;
}

.tabs__header__mob span {
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: #FFFFFF;
	font-size: 18px;
	font-weight: 400;
	line-height: 23px;
	width: 100%;
	z-index: 10;
}

/*-------------end-local-------------*/

/*-------------PLANNING-------------*/

.planning__header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 0 0 50px 0;
}

.planning__desc {
	cursor: pointer;
}

.planning__desc > img {
	width: 140px;
	height: 140px;
	object-fit: contain;
}

.planning .swiper-slide-wrapper {
	padding: 50px;
	background-color: #F5F1E9;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 40px;
	transition: background-color 0.6s;
}

.planning .swiper-slide-wrapper:hover {
	background-color: #484E2C;
}

.planning .swiper-slide-wrapper:hover .swiper-slider-header-column>span {
	color: #FFFFFF;
}

.planning .swiper-slide-wrapper:hover .icon-phone {
	filter: brightness(0) saturate(100%) invert(0%) sepia(0%) saturate(0%) hue-rotate(0deg);
}

.planning .swiper-slide-wrapper:hover .icon-phone-wrapper {
	background-color: white;
}

/* .planning .swiper-slide-wrapper:hover .swiper-slide-image img {
	filter: invert(100%);
} */

.planning .swiper-slide-image {
	display: flex;
	width: 100%;
	justify-content: center;
	align-items: center;
}

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

.swiper-slider-header-column {
	display: flex;
}

.swiper-slider-header-column.first {
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 30px;
}

.swiper-slider-header-column > span {
	font-size: 32px;
	line-height: 42px;
	color: #0A140C;
	transition: color 0.6s;
}

.planning__desc > img.qr-code {
	display: none;
	width: 22px;
	height: 21px;
	padding-bottom: 3px;
}

.planning__logo {
	position: relative;
}

.planning__logo img {
	animation: rotate 20s linear infinite;
}

.planning__logo img:hover {
	animation-play-state: paused;
}

.planning__logo:hover .arrow-logo-icon--light {
	transform: rotate(-45deg);
}

@media (max-width: 1024px) {
    .planning__logo > img {
        width: 114px;
        height: 114px;
    }
}
@media (max-width: 768px) {
	.planning__logo {
		position: absolute;
		bottom: 0px;
		right: 25px;
	}
	.planning__logo > img {
        width: 110px;
        height: 110px;
    }
}

/*-------------PLANNING-end-------------*/
/* ====================================================== */
/* ==================== /.HOME PAGE ===================== */
/* ====================================================== */

@media (max-width: 1440px) {
	.home-page .hero__title > h1 {
		font-size: 130px;
	}

	.gallery-desc__number {
		font-size: 100px;
		font-weight: 500;
		line-height: 129px;
	}

	.gallery-desc__subtitle {
		max-width: 190px;
		font-size: 18px;
		line-height: 23px;
	}

	.planning__title h2,
	.progress__title h2,
	.news__title h2,
	.gallery__title h2,
	.build-progress__title h2 {
		font-size: 64px;
	}

	.map__title {
		font-size: 68px;
	}

	.about__main {
		column-gap: 20px;
		margin-top: 60px;
	}

	.home-page .hero__title {
		position: unset;
	}

	.home-page .hero__logo {
		right: 0;
		bottom: 0;
		top: auto;
	}

	.home-page .hero__desc {
		margin-left: 0;
		margin: 0 130px 0 0;
	}

	.home-page .hero__desc>p {
		padding: 0;
	}

	.map__form__right span {
		text-align: center;
	}
}

@media (max-width: 1330px) {
	[class*="__container"] {
		padding: 0 20px;
		max-width: 95vw;
	}
}

@media (max-width: 1170px) {
	.home-page .hero__title > h1 {
		font-size: 120px;
	}

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

	/* .location__marker--pos-1 {
		top: 15vh;
		left: 54vw;
	} */
}

@media (max-width: 1024px) {

	.planning__desc > img {
		width: 110px;
		height: 114px;
	}

	.icon-phone-wrapper {
		width: 55px;
		height: 55px;
	}

	.swiper-slider-header-column.first {
		gap: 18px;
	}

	.icon-phone {
		width: 18px;
		height: 18px;
	}

	.gallery .swiper-backface-hidden .swiper-slide {
		height: 420px;
	}

	.gallery__main {
		align-items: flex-start;
	}

	.home-page .hero__title > h1 {
		font-size: 100px;
	}

	.home-page .hero__logo {
		right: 0;
		left: calc(320px - 10%);
		bottom: -145px;
	}

	.tabs-wrapper {
		padding: 0;
		width: 100%;
		left: calc(50% - 210px);
		height: auto;
	}

	.map__title {
		font-size: 32px;
		line-height: 42px;
	}

	.map__desc > img {
		width: 50px;
		height: 50px;
	}

	.map__form__right span {
		font-size: 18px;
		line-height: 23px;
		text-align: left;
	}

	.map__form__right__wrapper {
		gap: 20px;
	}

	.map__form__right__form__name,
	.map__form__right__form__tel {
		height: 60px;
		font-size: 18px;
		font-weight: 400;
		line-height: 24px;
	}

	.map__form__right__form {
		gap: 15px;
		justify-content: flex-start;
		flex-direction: column;
		align-items: flex-end;
	}

	.map__form__right__form__btn {
		width: 60px;
		height: 60px;
	}

	.arrow-white-icon {
		width: 18px;
		height: 20px;
	}

	.control-container {
		display: none;
	}

	.tabs-wrapper {
		justify-content: center;
		align-items: center;
		left: auto;
	}

	.map-wrapper {
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.tabs__body__col1__title,
	.tabs__body__col2__title {
		font-size: 23px;
		line-height: 30px;
	}

	.tabs__body__col1__content__row > span,
	.tabs__body__col2__content__row > span {
		font-size: 14px;
		line-height: 19px;
		margin-bottom: 10px;

	}

	.tabs__body__col1__content__row > div,
	.tabs__body__col2__content__row > div {
		font-size: 14px;
		line-height: 19px;
	}

	.tabs__body__col1,
	.tabs__body__col2,
	.tabs__body__col1_content,
	.tabs__body__col2_content {
		gap: 20px;
	}

	.map-wrapper #map {
		height: 565px;
	}

	.planning .swiper-slide-wrapper {
		gap: 30px;
	}

	.swiper-slider-header-column>span {
		font-size: 20px;
		font-weight: 400;
		line-height: 26px;
	}
}

@media (max-width: 991.99px) {
	.location__marker--pos-1 {
		top: 17vh;
	}
}

@media (max-width: 768px) {
	.map {
		padding: 60px 0 0 0;
	}

	.mapy__header {
		margin: 0 0 20px 0;
	}

	.map__form__right span {
		max-width: 100%;
	}

	.gallery__title {
		justify-content: flex-start;
	}

	.planning .swiper-navigation,
	.progress .swiper-navigation,
	.news .swiper-navigation,
	.gallery .swiper-navigation,
	.about__slider .swiper-navigation,
	.build-progress-item__slider .swiper-navigation {
		bottom: 30px;
	}

	.about-main__right img {
		aspect-ratio: 320 / 348;
	}

	.swiper-horizontal>.swiper-pagination-bullets,
	.swiper-pagination-bullets.swiper-pagination-horizontal,
	.swiper-pagination-custom,
	.swiper-pagination-fraction {
		bottom: 0;
	}

	[class*="__container"] {
		max-width: 100%;
	}

	.planning .swiper-navigation .swiper-button-prev,
	.progress .swiper-navigation .swiper-button-prev,
	.news .swiper-navigation .swiper-button-prev,
	.gallery .swiper-navigation .swiper-button-prev,
	.about__slider .swiper-navigation .swiper-button-prev,
	.build-progress-item__slider .swiper-navigation .swiper-button-prev,
	.planning .swiper-navigation .swiper-button-next,
	.progress .swiper-navigation .swiper-button-next,
	.news .swiper-navigation .swiper-button-next,
	.gallery .swiper-navigation .swiper-button-next,
	.about__slider .swiper-navigation .swiper-button-next,
	.build-progress-item__slider .swiper-navigation .swiper-button-next {
		width: 22px;
		height: 24px;
	}

	.about-slide__text {
		font-size: 18px;
		font-weight: 400;
		line-height: 23.22px;
	}

	.about-slide__title {
		font-size: 20px;
		font-weight: 600;
		line-height: 26px;
	}

	.location__marker__content {
		left: 30px;
		bottom: 27px
	}

	.gallery {
		padding: 70px 0 0 0;
	}

	.map-wrapper {
		padding-bottom: 181px;
	}

	.tabs__body {
		margin-bottom: -45px;
	}

	.tabs,
	.tabs-wrapper {
		height: 100%;
	}

	.tabs {
		justify-content: space-between;
		padding: 0 15px;
	}

	.tabs__header__mob {
		display: flex;
		width: 100%;
		margin-top: 40px;
	}

	.location__marker.location__marker--pos-1 {
		top: 12vh;
	}

	.location__marker.location__marker--pos-4 .location__marker__content {
		left: -182px;
		bottom: 25px;
	}

	.planning {
		position: relative;
		padding: 60px 0 200px 0;
	}

	.planning__desc > img.qr-code {
		display: inline-block;
	}

	.icon-phone-wrapper {
		width: 50px;
		height: 50px;
	}

	.swiper-slider-header-column>span {
		font-size: 18px;
		line-height: 23px;
	}

	.swiper-slider-header-column.first {
		gap: 10px;
	}

	.planning .swiper-slide-wrapper {
		padding: 20px;
	}

	.gallery__slider {
		margin: 20px 0 0 0;
	}

	.gallery-desc__subtitle {
		max-width: 320px;
	}

	.planning__title h2,
	.progress__title h2,
	.news__title h2,
	.gallery__title h2,
	.build-progress__title h2 {
		font-size: 32px;
		line-height: 41px;
	}

	.gallery-desc__number {
		font-size: 96px;
		line-height: 124px;
	}

	.gallery__main .swiper-slide img {
		object-fit: cover;
	}

	.gallery .swiper-backface-hidden .swiper-slide {
		height: 350px;
	}

	.gallery__tabs {
		display: none;
	}

	.gallery__tabs__mob {
		display: flex;
	}

	.gallery__tabs__mob.open .arrow-white-icon {
		transform: rotate(90deg);
	}

	.about-title__icon img {
		width: 22px;
		height: 21px;
	}

	.about-main__right {
		margin-top: 40px;
	}

	.about-main-left__text {
		position: relative;
	}

	/* .about-main-left__icon {
		position: absolute;
		top: 0;
		right: 0;
	} */

	.about-main-left__content {
		gap: 25px;

		display: block;
	}

	.about-main-left__content,
	.about__main {
		flex-direction: column;
		max-width: 100%;
		min-width: auto;
	}

	.about-title__icon {
		width: 22px;
		height: 21px;
		max-width: 22px;
	}

	.about__header {
		gap: 40px;
	}

	.about__slider .swiper-navigation {
		bottom: 20px;
	}

	.about-main-left__desc p {
		font-size: 18px;
		line-height: 23px;
	}

	.about-title__text h2 {
		font-size: 32px;
		font-weight: 500;
		line-height: 42px;
	}

	.about__body {
		padding: 70px 0;
	}

	.map__form__right__form {
		justify-content: flex-end;
		width: 100%;
	}

	.tabs__header {
		display: none;
	}

	.tabs {
		width: 100%;
	}

	.location {
		max-height: 500px;
	}

	.home-page .hero__desc {
		max-width: 87%;
		width: 100%;
	}

	.home-page .hero__desc>p {
		font-size: 18px;
	}

	.home-page .hero__title > h1 {
		font-size: 32px;
		line-height: 40px;
	}

	.home-page .hero__logo {
		width: 100px;
		height: 100px;
	}

	.home-page .hero__logo {
		left: auto;
		bottom: -146px;
	}

	.location__marker {
		width: 50px;
		height: 50px;
	}

	.plus-icon {
		width: 13px;
		height: 13px;
	}

	.location__title {
		font-size: 32px;
		line-height: 41px;
	}

	.location__desc > * {
		font-size: 14px;
		line-height: 18px;
		max-width: 220px;
	}

	.location__marker--pos-1 {
		left: 73vw;
	}

	.location__marker--pos-2 {
		top: 38vh;
		left: 78vw;
	}

	.location__marker--pos-3 {
		left: 10vw;
	}
	.location__marker--pos-4 {
		bottom: 10vh;
	}

	.location__marker__content {
		padding: 20px;
		gap: 15px;
		width: 200px;
	}

	.location__marker__content__icon {
		width: 26px;
		height: 26px;
	}

	.location__marker__content>span {
		gap: 15px;
	}

	.location__marker__content>p {
		font-size: 12px;
		line-height: 15px;
	}

	.location__marker.location__marker--pos-2 .location__marker__content,
	.location__marker.location__marker--pos-1 .location__marker__content {
		left: -180px;
		bottom: 25px;
		border-radius: 30px 30px 0 30px;
	}
}
@media (max-width: 400px) {
	.location__marker--pos-1 {
		left: 78vw;
	}
}

/*-------responsive-styles-end------*/

/* ========== Review ========== */

.review {
	margin-top: 72px;
	background-color: #484E2C;
}
@media (max-width: 991.98px) {
	.review {
        margin-top: 60px;
    }
}

.review__body {
	position: relative;
	padding-top: 96px;
	padding-bottom: 144px;
}
@media (max-width: 991.98px) {
	.review__body {
        padding-top: 50px;
        padding-bottom: 131px;
    }
}
@media (max-width: 767.98px) {
	.review__body {
        padding-top: 60px;
        padding-bottom: 169px;
    }
}

.review__header {
	display: flex;
	justify-content: space-between;
}

.review__title {
	/* https://observablehq.com/@saneef/fluid-typography-css-clamp-value-generator */
	font-size: clamp(40px, calc(1.04rem + 5.3vw), 128px);
	color: #ffffff;
}

.review__title h2 {
	display: flex;
	flex-direction: column;
}

.review__title h2 > *:first-of-type {
	font-family: 'TTFirsNeue-Medium', Helvetica, Arial, sans-serif;
}

.review__title h2 > *:nth-of-type(2) {
	margin-left: 60px;
	font-family: 'TTFirsNeue-DemiBold', Helvetica, Arial, sans-serif;
}
@media (max-width: 767.98px) {
	.review__title h2 > *:nth-of-type(2) {
		margin-left: 118px;
	}
}

.review__desc {
	display: flex;
	column-gap: 21px;
	color: #F5F1E9;
}
@media (max-width: 991.98px) {
	.review__desc {
		align-items: center;
        position: absolute;
		left: 0px;
		bottom: 60px;
    }
}

.review-desc__icon {
	max-width: 62px;
	width: 100%;
	height: 62px;
}
@media (max-width: 991.98px) {
	.review-desc__icon {
		max-width: 50px;
		height: 50px;
	}
}

.review-desc__text {
	max-width: 230px;
	width: 100%;
	font-size: 20px;
	color: #F5F1E9;
}
@media (max-width: 991.98px) {
	.review-desc__text {
		max-width: 370px;
	}
}
@media (max-width: 767.98px) {
	.review-desc__text {
		font-size: 18px;
	}
}

.review__main {
	position: relative;
	display: flex;
	justify-content: flex-end;
	column-gap: 60px;
	margin-top: 23px;
}
@media (max-width: 991.98px) {
	.review__main {
        column-gap: 55px;
    }
}
@media (max-width: 767.98px) {
	.review__main {
		flex-direction: column;
    }
}

.review-main__img {
	width: 84px;
	height: 82px;
}
@media (max-width: 991.98px) {
	.review-main__img {
		width: 65px;
		height: 63px;
	}
}
@media (max-width: 767.98px) {
	.review-main__img {
		position: absolute;
		top: -40px;
		left: 0px;
		transform: rotate(90deg);
	}
}

.review__form {
	margin-top: 10px;
}
@media (max-width: 991.98px) {
	.review__form {
        margin-top: 0px;
    }
}
@media (max-width: 767.98px) {
	.review__form {
        margin-top: 45px;
    }
}

.review__form .wpcf7-form {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: repeat(1, 1fr);
	grid-column-gap: 30px;
	grid-row-gap: 0px;
}
@media (max-width: 767.98px) {
	.review__form .wpcf7-form {
		display: flex;
		flex-direction: column;
		row-gap: 20px;
		align-items: center;
	}
}

.review__form .wpcf7-form .wpcf7-form-control-wrap[data-name="your-name"] { 
	grid-area: 1 / 1 / 2 / 2; 
}
@media (max-width: 767.98px) {
	.review__form .wpcf7-form .wpcf7-form-control-wrap[data-name="your-name"] { 
        width: 100%;
    }
}

.review__form .wpcf7-form .wpcf7-form-control-wrap[data-name="tel-470"] { 
	grid-area: 1 / 2 / 2 / 3; 
}
@media (max-width: 767.98px) {
	.review__form .wpcf7-form .wpcf7-form-control-wrap[data-name="tel-470"] { 
        width: 100%;
    }
}

.review__form .wpcf7-form .wpcf7-form-control[type="submit"] { 
	grid-area: 1 / 3 / 2 / 4; 
}

.review__form .wpcf7-form .wpcf7-spinner { 
	grid-area: 2 / 1 / 3 / 4; 
}

.review__form .wpcf7-form .wpcf7-response-output { 
	grid-area: 3 / 1 / 4 / 4; 
}

.review__form .wpcf7 input[type="text"],
.review__form .wpcf7 input[type="tel"] {
	width: 405px;
	height: 80px;
	padding-left: 35px;
	border-radius: 50px;
}
@media (max-width: 991.98px) {
	.review__form .wpcf7 input[type="text"],
	.review__form .wpcf7 input[type="tel"] {
		width: 225px;
		height: 50px;
	}
}
@media (max-width: 767.98px) {
	.review__form .wpcf7 input[type="text"],
    .review__form .wpcf7 input[type="tel"] {
        width: 100%;
        height: 60px;
    }
}

.review__form .wpcf7 .wpcf7-submit {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #ffffff;
    background-image: url("data:image/svg+xml;charset=UTF-8,<svg xmlns='http://www.w3.org/2000/svg' width='23' height='23' viewBox='0 0 23 23'><path d='M2.29997 22.2264L20.6518 3.87456L20.6502 19.6031L22.7623 19.7377L22.7643 0.264273L3.29085 0.266246L3.42545 2.37835L19.154 2.37676L0.80217 20.7286L2.29997 22.2264Z' fill='%23484E2C'/></svg>");
    background-size: 23px 23px;
    background-repeat: no-repeat;
    background-position: center;
    color: transparent;
    text-shadow: none;
    border: none;
    cursor: pointer;
}
@media (max-width: 991.98px) {
	.review__form .wpcf7 .wpcf7-submit {
		width: 50px;
        height: 50px;
		background-size: 16px 16px;
	}
}
@media (max-width: 767.98px) {
	.review__form .wpcf7 .wpcf7-submit {
        width: 60px;
        height: 60px;
    }
}

.review__form .wpcf7 .wpcf7-spinner {
	display: none;
	visibility: hidden;
}

.review__form .wpcf7 form.invalid .wpcf7-response-output, 
.review__form .wpcf7 form.unaccepted .wpcf7-response-output,
.review__form .wpcf7 form.payment-required .wpcf7-response-output {
	margin-left: 0px;
	padding-left: 0px;
	color: #ffffff;
	border-color: transparent;
}

.review__form .wpcf7 .wpcf7-not-valid-tip {
	margin-top: 15px;
	text-align: center;
}

/* ========== /.Review ========== */

/* ========== Progress ========== */

.progress {
	padding-top: 182px;
}
@media (max-width: 1024px) {
	.progress {
        padding-top: 84px;
    }
}
@media (max-width: 768px) {
	.progress {
        padding-top: 60px;
    }
}

.progress__header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 0 0 50px 0;
}

.progress__desc {
	flex-shrink: 0;
	cursor: pointer;
}

.progress__desc > img {
	width: 140px;
	height: 140px;
	object-fit: contain;
}

.progress .swiper-slide-wrapper {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 30px;
}

.progress .swiper-slider-header {
	align-items: flex-start;
	font-size: 32px;
}
@media (max-width: 1024px) {
    .progress .swiper-slider-header {
		font-size: 20px;
        font-weight: 400;
        line-height: 26px;
	}
}

.progress .swiper-slider-header-column a {
	position: relative;
	display: block;
	padding-right: 25px;
}

.progress .swiper-slider-header-column a::after {
	content: url("data:image/svg+xml;charset=UTF-8,<svg width='17' height='17' viewBox='0 0 17 17' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M14.1316 4.76749L2.79282 16.195L0.944994 14.3327L12.2837 2.90519L2.33107 2.94644L2.34186 0.302284L16.7736 0.242466L16.7142 14.7872L14.0906 14.7981L14.1316 4.76749Z' fill='%230A140C'/></svg>");
	position: absolute;
	top: 0px;
	right: 0px;
	width: 17px;
	height: 17px;
}
@media (max-width: 1024px) {
	.progress .swiper-slider-header-column a::after {
		top: 50%;
		transform: translateY(-50%);
	}
}

.progress .swiper-slide-image {
	display: flex;
	width: 100%;
	justify-content: center;
	align-items: center;
}

.progress__desc > img.qr-code {
	display: none;
	width: 22px;
	height: 21px;
	padding-bottom: 3px;
}

@media (max-width: 1720px) {
	.progress .swiper-slide-wrapper {
		padding: 30px;
	}	
}
@media (max-width: 1024px) {
	.progress__desc > img {
		width: 110px;
		height: 114px;
	}	
	.progress .swiper-slide-wrapper {
		gap: 30px;
	}	
}
@media (max-width: 768px) {
	.progress {
		position: relative;
		padding: 60px 0 200px 0;
	}
	.progress__desc > img.qr-code {
		display: inline-block;
	}
	.progress-main-image {
		position: absolute;
		bottom: 0;
		right: 25px;
	}
	.progress .swiper-slide-wrapper {
		padding: 0px;
	}	
}

.progress__logo {
	position: relative;
}

.progress__logo img {
	animation: rotate 20s linear infinite;
}

.progress__logo img:hover {
	animation-play-state: paused;
}

.progress__logo:hover .arrow-logo-icon--light {
	transform: rotate(-45deg);
}

@media (max-width: 1024px) {
    .progress__logo > img {
        width: 114px;
        height: 114px;
    }
}
@media (max-width: 768px) {
	.progress__logo {
		position: absolute;
		bottom: 0px;
		right: 25px;
	}
	.progress__logo > img {
        width: 110px;
        height: 110px;
    }
}

/* ========== /.Progress ========== */

/* ========== News ========== */

.news {
	padding-top: 182px;
}
@media (max-width: 1024px) {
	.news {
        padding-top: 84px;
    }
}
@media (max-width: 768px) {
	.news {
        padding-top: 60px;
    }
}

.news__header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 0 0 50px 0;
}

.news__desc {
	flex-shrink: 0;
	cursor: pointer;
}

.news__desc > img {
	width: 90px;
	height: 90px;
	padding-bottom: 3px;
}

.news .swiper-slide-wrapper {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 30px;
}

.news .swiper-slider-header {
	flex-direction: column;
	align-items: flex-start;
	font-size: 32px;
}
@media (max-width: 1024px) {
    .news .swiper-slider-header {
		font-size: 20px;
        font-weight: 400;
        line-height: 26px;
	}
}

.news .swiper-slide-excerpt {
	margin-top: 20px;
	font-size: 18px;
	line-height: 1.2;
}

.news .swiper-slide-link {
	position: relative;
	margin-top: 30px;
}

.news .swiper-slide-link:hover {
	cursor: pointer;
}

.news .swiper-slide-link::after {
	content: url("data:image/svg+xml;charset=UTF-8,<svg width='17' height='17' viewBox='0 0 17 17' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M14.1316 4.76749L2.79282 16.195L0.944994 14.3327L12.2837 2.90519L2.33107 2.94644L2.34186 0.302284L16.7736 0.242466L16.7142 14.7872L14.0906 14.7981L14.1316 4.76749Z' fill='%230A140C'/></svg>");
	position: absolute;
	top: 45%;
	transform: translateY(-50%);
	right: -25px;
	width: 17px;
	height: 17px;
}

.news .swiper-slide-image {
	display: flex;
	width: 100%;
	justify-content: center;
	align-items: center;
}

@media (max-width: 1720px) {
	.news .swiper-slide-wrapper {
		padding: 30px;
	}	
}
@media (max-width: 1024px) {
	.news__desc > img {
		width: 22px;
		height: 22px;
	}	
	.news .swiper-slide-wrapper {
		gap: 30px;
	}	
}
@media (max-width: 768px) {
	.news {
		position: relative;
		padding-top: 60px;
        padding-right: 0px;
	}
	.news-main-image {
		position: absolute;
		bottom: 0;
		right: 25px;
	}
	.news .swiper-slide-wrapper {
		padding: 0px;
	}	
}

.modal.news .modal__inner {
	flex-direction: column;
}

.modal.news .modal__header {
	max-width: 619px;
	width: 100%;
}

.modal.news .modal__content {
	max-width: 619px;
	background: #ffffff;
}

.modal.news .modal-content__meta {
	display: flex;
	gap: 30px;
	align-items: center;
}
@media (max-width: 767.98px) {
	.modal.news .modal-content__meta {
		gap: 20px;
	}
}

.modal.news .modal-content__title {
	font-family: 'TTFirsNeue-Medium', Helvetica, Arial, sans-serif;
	font-size: 24px;
}
@media (max-width: 767.98px) {
	.modal.news .modal-content__title {
		font-size: 20px;
	}
}

.modal.news .modal-content__date {
	font-size: 18px;
}
@media (max-width: 767.98px) {
	.modal.news .modal-content__date {
		font-size: 16px;
	}
}

.modal.news .modal-content__text {
	margin-top: 50px;
	font-size: 18px;
	line-height: 25px;
}
@media (max-width: 767.98px) {
	.modal.news .modal-content__text {
		margin-top: 20px;
	}
}

.modal.news .modal-content__text > *:not(:last-child) {
	margin-bottom: 30px;
}

.modal.news .modal-header__background img {
	max-height: 200px;
	height: 100%;
	object-position: top;
}

.modal.news .modal__close {
	top: 30px;
	right: 60px;
}
@media (max-width: 767.98px) {
	.modal.news .modal__close {
		top: 20px;
		right: 20px;
	}
}

/* ========== /.News ========== */

/* ========== Leader ========== */

.leader {
    padding-top: 170px;
}
@media (max-width: 1024px) {
    .leader {
        padding-top: 60px;
    }
}

.leader__header {
	font-family: 'TTFirsNeue-Medium', Helvetica, Arial, sans-serif;
}

.leader__title {
	font-size: 128px;
	text-transform: uppercase;
	color: #0A140C;
}
@media (max-width: 991.98px) {
	.leader__title {
		font-size: 64px;
	}
}
@media (max-width: 767.98px) {
	.leader__title {
		font-size: 32px;
	}
}

.leader__desc {
	max-width: 1200px;
	width: 100%;
	margin-top: 50px;
	font-size: 32px;
}
@media (max-width: 991.98px) {
	.leader__desc {
		max-width: 100%;
		margin-top: 50px;
        font-size: 24px;
    }
}

.leader__body {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 70px;
}
@media (max-width: 767.98px) {
	.leader__body {
		flex-direction: column;
		align-items: flex-end;
		row-gap: 40px;
        margin-top: 30px;
    }
}

.leader__list {
	display: flex;
	flex-wrap: wrap;
	column-gap: 91px;
	row-gap: 30px;
}

.leader__item {
	position: relative;
	display: flex;
	justify-content: space-between;
	column-gap: 30px;
	align-items: center;
	height: 200px;
	padding-left: 20px;
	padding-right: 20px;
}
@media (max-width: 767.98px) {
	.leader__item {
		width: 100%;
	}
}

.leader__item::before {
	content: url("data:image/svg+xml;charset=UTF-8,<svg width='21' height='202' viewBox='0 0 21 202' fill='none' xmlns='http://www.w3.org/2000/svg'><path opacity='0.7' d='M21 201V201C9.95457 201 1.00048 192.046 1.00045 181L1.00005 20.9999C1.00002 9.95429 9.95428 1 20.9999 1V1' stroke='%23484E2C'/></svg>");
	position: absolute;
	top: 0px;
	left: 0px;
	width: 20px;
	height: 200px;
}

.leader__item::after {
	content: url("data:image/svg+xml;charset=UTF-8,<svg width='21' height='202' viewBox='0 0 21 202' fill='none' xmlns='http://www.w3.org/2000/svg'><path opacity='0.7' d='M-2.3817e-07 201V201C11.0454 201 19.9995 192.046 19.9995 181L19.9999 20.9999C20 9.95429 11.0457 1 6.84261e-05 1V1' stroke='%23484E2C'/></svg>");
	position: absolute;
	top: 0px;
	right: 0px;
	width: 20px;
	height: 200px;
}

.leader-item__left {
	font-family: 'TTFirsNeue-Medium', Helvetica, Arial, sans-serif;
	font-size: 128px;
}
@media (max-width: 767.98px) {
	.leader-item__left {
        font-size: 96px;
    }
}

.leader-item__right {
	max-width: 160px;
    width: 100%;
}
@media (max-width: 767.98px) {
	.leader-item__right {
		max-width: 100%;
	}
}

.leader__img {
	position: relative;
	width: 140px;
    height: 140px;
	cursor: pointer;
}
@media (max-width: 767.98px) {
	.leader__img {
        width: 110px;
		height: 110px;
    }
}

.leader__logo {
	position: relative;
}

.leader__logo img {
	animation: rotate 20s linear infinite;
}

.leader__logo img:hover {
	animation-play-state: paused;
}

.leader__logo:hover .arrow-logo-icon--light {
	transform: rotate(-45deg);
}

@media (max-width: 1024px) {
    .leader__logo > img {
        width: 114px;
        height: 114px;
    }
}
@media (max-width: 768px) {
	.leader__logo {
		position: absolute;
		bottom: 0px;
	}
	.leader__logo > img {
        width: 110px;
        height: 110px;
    }
}

/* ========== /.Leader ========== */

/* ========== Footer ========== */

.footer {
	background-color: #484E2C;
}

.footer__inner {
	display: flex;
	flex-direction: column;
	row-gap: 28px;
	padding-top: 30px;
	padding-bottom: 30px;
}

.footer__middle,
.footer__bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	row-gap: 20px;
}
@media (max-width: 767.98px) {
	.footer__middle,
	.footer__bottom {
		flex-direction: column;
		align-items: flex-start;
	}
}

.footer__menu .menu__list {
	display: flex;
	flex-wrap: wrap;
	column-gap: 20px;
	row-gap: 15px;
	font-family: 'TTFirsNeue-Medium', Helvetica, Arial, sans-serif;
	font-size: 15px;
	color: #ffffff;
}
@media (max-width: 767.98px) {
	.footer__menu .menu__list {
		flex-direction: column;
	}
}

.footer__logo {
	width: 200px;
	height: 49px;
}

.footer__banner {
	width: 125px;
	height: 38px;
}
@media (max-width: 991.98px) {
	.footer__banner {
		width: 100px;
		height: 30px;
	}
}
@media (max-width: 767.98px) {
	.footer__banner {
		width: 167px;
		height: 50px;
	}
}

@media (min-width: 992px) {
	.main__menu .menu__item--ad-banner {
		display: none;
	}
}

.main__menu .menu__item--ad-banner {
	width: 125px;
	height: 38px;
	margin-top: 20px;
}
@media (max-width: 991.98px) {
	.main__menu .menu__item--ad-banner {
		width: 100px;
		height: 30px;
	}
}
@media (max-width: 767.98px) {
	.main__menu .menu__item--ad-banner {
		width: 167px;
		height: 50px;
	}
}

.footer__socials {
	display: flex;
	align-items: center;
	column-gap: 15px;
}

.footer-socials__title {
	font-family: 'TTFirsNeue-Medium', Helvetica, Arial, sans-serif;
	font-size: 18px;
	color: #777C5F;
}

.footer-socials__list {
	display: flex;
	column-gap: 15px;
}

.footer-socials__item {
	width: 40px;
	height: 40px;
}

.footer__menu--additional .menu__list {
	display: flex;
	column-gap: 20px;
	row-gap: 15px;
	font-family: 'TTFirsNeue-Medium', Helvetica, Arial, sans-serif;
	font-size: 14px;
	color: #777C5F;
	text-decoration: underline;
}
@media (max-width: 767.98px) {
	.footer__menu--additional .menu__list {
		flex-direction: column;
	}
}

/* ========== /.Footer ========== */

/* ====================================================== */
/* ================= DOCUMENTATION PAGE ================= */
/* ====================================================== */

/* ========== HERO ========== */

.documentation-page .hero {
	position: relative;
}

.documentation-page .hero__body {
	position: relative;
	padding-top: 374px;
	padding-bottom: 220px;
	color: #ffffff;
	z-index: 2;
}
@media (max-width: 991.98px) {
	.documentation-page .hero__body {
		padding-top: 465px;
		padding-bottom: 465px;
	}
}
@media (max-width: 767.98px) {
	.documentation-page .hero__body {
		padding-top: 172px;
		padding-bottom: 103px;
	}
}

.documentation-page .hero__title {
	font-family: 'TTFirsNeue-Medium', Helvetica, Arial, sans-serif;
	font-size: 157px;
	text-align: center;
	text-transform: uppercase;
	color: #ffffff;
}
@media (max-width: 991.98px) {
	.documentation-page .hero__title {
        font-size: 86px;
    }
}
@media (max-width: 767.98px) {
	.documentation-page .hero__title {
        font-size: 32px;
    }
}

.documentation-page .hero__background {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0px;
	background-color: #D9D9D9;
}

.documentation-page .hero__background:after {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
	background: linear-gradient(0deg, rgba(10, 20, 12, 0.40) 0%, rgba(10, 20, 12, 0.40) 100%);
	background: rgba(10, 20, 12, 0.40);
}

.documentation-page .hero__background img {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0px;
	object-fit: cover;
	object-position: top;
}

/* ========== end___HERO ========== */

/* ========== DOCUMENTS ========== */

.documentation-page .documents {
	padding-top: 100px;
	padding-bottom: 170px;
	background-color: #F5F1E9;
}
@media (max-width: 991.98px) {
	.documentation-page .documents {
        padding-top: 60px;
		padding-bottom: 113px;
	}
}
@media (max-width: 767.98px) {
	.documentation-page .documents {
        padding-bottom: 80px;
    }
}

.documentation-page .documents__header {
	display: flex;
	justify-content: space-between;
}

.documentation-page .documents__title {
	font-family: 'TTFirsNeue-Medium', Helvetica, Arial, sans-serif;
	font-size: 128px;
	color: #0A140C;
	text-transform: uppercase;
}
@media (max-width: 991.98px) {
	.documentation-page .documents__title {
		font-size: 64px;
	}
}
@media (max-width: 767.98px) {
	.documentation-page .documents__title {
		font-size: 32px;
	}
}

.documentation-page .documents__icon {
	width: 90px;
	height: 90px;
}
@media (max-width: 991.98px) {
	.documentation-page .documents__icon {
        width: 50px;
        height: 50px;
    }
}
@media (max-width: 767.98px) {
	.documentation-page .documents__icon {
        width: 22px;
        height: 22px;
    }
}

.documentation-page .documents__list {
	margin-top: 37px;
}
@media (max-width: 767.98px) {
	.documentation-page .documents__list {
		margin-top: 40px;
	}
}

.documentation-page .documents__item {
	display: flex;
	gap: 55px;
	padding-top: 38px;
	padding-bottom: 38px;
}
@media (max-width: 767.98px) {
	.documentation-page .documents__item {
		gap: 30px;
		padding-top: 20px;
		padding-bottom: 20px;
	}
}

.documentation-page .documents__item:not(:last-child) {
	border-bottom: 1px solid #302A25;
}

.documentation-page .documents-item__content {
	flex: 100%;
}

.documentation-page .documents-item__icon {
	width: 40px;
	height: 40px;
}
@media (max-width: 991.98px) {
	.documentation-page .documents-item__icon {
        width: 25px;
        height: 25px;
    }
}
@media (max-width: 767.98px) {
	.documentation-page .documents-item__icon {
        width: 30px;
        height: 30px;
    }
}

.documentation-page .documents-item__title {
	font-family: 'TTFirsNeue-Medium', Helvetica, Arial, sans-serif;
	font-size: 32px;
	color: #0A140C;
}
@media (max-width: 991.98px) {
	.documentation-page .documents-item__title {
        font-size: 20px;
    }
}

.documentation-page .documents-item__date {
	font-size: 32px;
	color: #0A140C;
}
@media (max-width: 991.98px) {
	.documentation-page .documents-item__date {
		font-size: 20px;
	}
}

.documentation-page .documents-item-content__row-1 {
	display: flex;
	justify-content: space-between;
}
@media (max-width: 767.98px) {
	.documentation-page .documents-item-content__row-1 {
		flex-direction: column;
		row-gap: 20px;
		column-gap: 5px;
	}
}

.documentation-page .documents-item__meta {
	display: flex;
	gap: 5px;
}
@media (max-width: 767.98px) {
	.documentation-page .documents-item__meta {
		flex: 100%;
	}
}

.documentation-page .documents-item-content__row-1 .documents-item__meta,
.documentation-page .documents-item-content__row-1 .documents-item__format, 
.documentation-page .documents-item-content__row-1 .documents-item__size {
	display: none;
}
@media (max-width: 767.98px) {
	.documentation-page .documents-item-content__row-1 .documents-item__meta,
	.documentation-page .documents-item-content__row-1 .documents-item__format, 
	.documentation-page .documents-item-content__row-1 .documents-item__size {
		display: flex;
	}
}

@media (max-width: 767.98px) {
	.documentation-page .documents-item-content__row-1 .documentation-item__date {
		display: none;
	}
}

.documentation-page .documents-item-content__row-2 {
	display: flex;
	gap: 5px;
	margin-top: 30px;
}
@media (max-width: 767.98px) {
	.documentation-page .documents-item-content__row-2 {
		margin-top: 0px;
	}
}

.documentation-page .documents-item-content__row-2 .documents-item__meta {
	font-size: 20px;
	color: #0A140C; 
	opacity: 0.30;
}

@media (max-width: 991.98px) {
	.documentation-page .documents-item-content__row-2 .documents-item__meta {
		display: none;
	}
}

/* ========== end___DOCUMENTS ========== */

/* ========== BREADCRUMBS ========== */

.documentation-page .breadcrumbs {
	padding-top: 50px;
	font-size: 20px;
	color: #0A140C; 
	background-color: #F5F1E9;
}
@media (max-width: 991.98px) {
	.documentation-page .breadcrumbs {
        padding-top: 60px;
		font-size: 18px;
    }
}
@media (max-width: 767.98px) {
	.documentation-page .breadcrumbs {
        padding-top: 20px;
    }
}

/* ========== end___BREADCRUMBS ========== */

/* ====================================================== */
/* ================ /.DOCUMENTATION PAGE ================ */
/* ====================================================== */

/* ====================================================== */
/* ============ CONSTRUCTION PRTOGRESS PAGE ============= */
/* ====================================================== */

/* ========== HERO ========== */

.construction-progress-page .hero {
	position: relative;
}

.construction-progress-page .hero__body {
	position: relative;
	padding-top: 374px;
	padding-bottom: 220px;
	color: #ffffff;
	z-index: 2;
}
@media (max-width: 991.98px) {
	.construction-progress-page .hero__body {
		padding-top: 465px;
		padding-bottom: 465px;
	}
}
@media (max-width: 767.98px) {
	.construction-progress-page .hero__body {
		padding-top: 172px;
		padding-bottom: 103px;
	}
}

.construction-progress-page .hero__title {
	font-family: 'TTFirsNeue-Medium', Helvetica, Arial, sans-serif;
	font-size: 157px;
	text-align: center;
	text-transform: uppercase;
	color: #ffffff;
}
@media (max-width: 991.98px) {
	.construction-progress-page .hero__title {
        font-size: 86px;
    }
}
@media (max-width: 767.98px) {
	.construction-progress-page .hero__title {
        font-size: 32px;
    }
}

.construction-progress-page .hero__background {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0px;
	background-color: #D9D9D9;
}

.construction-progress-page .hero__background:after {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
	background: linear-gradient(0deg, rgba(10, 20, 12, 0.40) 0%, rgba(10, 20, 12, 0.40) 100%);
	background: rgba(10, 20, 12, 0.40);
}

.construction-progress-page .hero__background img {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0px;
	object-fit: cover;
	object-position: top;
}

/* ========== end___HERO ========== */

/* ========== BREADCRUMBS ========== */

.construction-progress-page .breadcrumbs {
	padding-top: 50px;
	font-size: 20px;
	color: #0A140C;
}
@media (max-width: 991.98px) {
	.construction-progress-page .breadcrumbs {
        padding-top: 60px;
		font-size: 18px;
    }
}
@media (max-width: 767.98px) {
	.construction-progress-page .breadcrumbs {
        padding-top: 20px;
    }
}

/* ========== end___BREADCRUMBS ========== */

/* ========== BUILD PROGRESS ========== */

.construction-progress-page .build-progress {
	padding-top: 100px;
}
@media (max-width: 991.98px) {
	.construction-progress-page .build-progress {
        padding-top: 60px;
    }
}

.construction-progress-page .build-progress__header {
	display: flex;
	justify-content: space-between;
}
@media (max-width: 1199.98px) {
	.construction-progress-page .build-progress__header {
        flex-direction: column;
		column-gap: 42px;
		row-gap: 25px;
    }
}

.construction-progress-page .build-progress__desc {
	display: flex;
	align-items: center;
	gap: 20px;
}

.construction-progress-page .build-progress-desc__number {
	font-family: 'TTFirsNeue-Medium', Helvetica, Arial, sans-serif;
	font-size: 128px;
	color: #0A140C;
}
@media (max-width: 991.98px) {
	.construction-progress-page .build-progress-desc__number {
        font-size: 100px;
    }
}

.construction-progress-page .build-progress-desc__text {
	max-width: 212px;
	font-size: 20px;
	line-height: 1.2;
	color: #0A140C;
}
@media (max-width: 991.98px) {
	.construction-progress-page .build-progress-desc__text {
		max-width: 247px;
		font-size: 18px;
	}
}
@media (max-width: 767.98px) {
	.construction-progress-page .build-progress-desc__text {
		max-width: 100%;
	}
}

.construction-progress-page .build-progress__list {
	margin-top: 34px;
}

.construction-progress-page .build-progress__item:not(:first-of-type) {
	margin-top: 100px;
}
@media (max-width: 991.98px) {
	.construction-progress-page .build-progress__item:not(:first-of-type) {
        margin-top: 31px;
    }
}
@media (max-width: 767.98px) {
	.construction-progress-page .build-progress__item:not(:first-of-type) {
        margin-top: 60px;
    }
}

.construction-progress-page .build-progress-item__meta {
	display: flex;
	align-items: center;
	column-gap: 30px;
}
@media (max-width: 767.98px) {
	.construction-progress-page .build-progress-item__meta {
        justify-content: space-between;
    }
}

.construction-progress-page .build-progress-item-meta__date {
	font-family: 'TTFirsNeue-Medium', Helvetica, Arial, sans-serif;
	font-size: 32px;
	color: #0A140C;
}
@media (max-width: 991.98px) {
	.construction-progress-page .build-progress-item-meta__date {
		font-size: 20px;
	}
}

.construction-progress-page .build-progress-item-meta__stage {
	font-size: 32px;
	color: #0A140C;
}
@media (max-width: 991.98px) {
	.construction-progress-page .build-progress-item-meta__stage {
		font-size: 20px;
	}
}

.construction-progress-page .build-progress-item__slider {
	margin-top: 50px;
}
@media (max-width: 991.98px) {
	.construction-progress-page .build-progress-item__slider {
        margin-top: 30px;
    }
}
@media (max-width: 767.98px) {
	.construction-progress-page .build-progress-item__slider {
        margin-top: 20px;
    }
}

.construction-progress-page .build-progress-item__content {
	display: flex;
	column-gap: 50px;
	row-gap: 30px;
	margin-top: 95px;
}
@media (max-width: 991.98px) {
	.construction-progress-page .build-progress-item__content {
		flex-direction: column;
        margin-top: 30px;
    }
}
@media (max-width: 767.98px) {
	.construction-progress-page .build-progress-item__content {
        margin-top: 20px;
    }
}

.construction-progress-page .build-progress-item-content__date {
	font-family: 'TTFirsNeue-Medium', Helvetica, Arial, sans-serif;
	font-size: 128px;
}
@media (max-width: 991.98px) {
	.construction-progress-page .build-progress-item-content__date {
        font-size: 100px;
    }
}
@media (max-width: 767.98px) {
	.construction-progress-page .build-progress-item-content__date {
        font-size: 110px;
    }
}

.construction-progress-page .build-progress-item-content__text > *:not(:last-child) {
	margin-bottom: 30px;
}

.construction-progress-page .build-progress-item-content__text {
	font-size: 20px;
}

/* ========== end___BUILD PROGRESS ========== */

/* ====================================================== */
/* =========== /.CONSTRUCTION PRTOGRESS PAGE ============ */
/* ====================================================== */

/* ====================================================== */
/* ======================== 404 PAGE ==================== */
/* ====================================================== */

.error404 .header {
	background-color: #484E2C;
}

.error-404 {
	padding-top: 250px;
}
@media (max-width: 991.98px) {
	.error-404 {
        padding-top: 150px;
    }
}

.error-404__body {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.error-404__img {
	max-width: 848px;
}

.error-404__title {
	font-family: 'TTFirsNeue-Medium', Helvetica, Arial, sans-serif;
	font-size: 40px;
	text-align: center;
}
@media (max-width: 991.98px) {
	.error-404__title {
        font-size: 20px;
    }
}

/* ====================================================== */
/* ========================= /.404 PAGE ================= */
/* ====================================================== */

/* ====================================================== */
/* ================ PRIVACY POLICY PAGE ================= */
/* ====================================================== */

/* .privacy-policy-page {} */

/* ========== HERO ========== */

.privacy-policy-page .hero {
	position: relative;
}

.privacy-policy-page .hero__body {
	position: relative;
	padding-top: 374px;
	padding-bottom: 220px;
	color: #ffffff;
	z-index: 2;
}
@media (max-width: 991.98px) {
	.privacy-policy-page .hero__body {
		padding-top: 465px;
		padding-bottom: 465px;
	}
}
@media (max-width: 767.98px) {
	.privacy-policy-page .hero__body {
		padding-top: 172px;
		padding-bottom: 103px;
	}
}

.privacy-policy-page .hero__title {
	font-family: 'TTFirsNeue-Medium', Helvetica, Arial, sans-serif;
	font-size: 157px;
	text-align: center;
	text-transform: uppercase;
	color: #ffffff;
}
@media (max-width: 991.98px) {
	.privacy-policy-page .hero__title {
        font-size: 86px;
    }
}
@media (max-width: 767.98px) {
	.privacy-policy-page .hero__title {
        font-size: 32px;
    }
}

.privacy-policy-page .hero__background {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0px;
	background-color: #D9D9D9;
}

.privacy-policy-page .hero__background:after {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0px;
	left: 0px;
	background: linear-gradient(0deg, rgba(10, 20, 12, 0.40) 0%, rgba(10, 20, 12, 0.40) 100%);
	background: rgba(10, 20, 12, 0.40);
}

.privacy-policy-page .hero__background img {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0px;
	object-fit: cover;
	object-position: top;
}

/* ========== end___HERO ========== */


/* ========== BREADCRUMBS ========== */

.privacy-policy-page .breadcrumbs {
    padding-top: 50px;
    font-size: 20px;
    color: #0A140C;
}
@media (max-width: 991.98px) {
	.privacy-policy-page .breadcrumbs {
        padding-top: 60px;
		font-size: 18px;
    }
}
@media (max-width: 767.98px) {
	.privacy-policy-page .breadcrumbs {
        padding-top: 20px;
    }
}

/* ========== end___BREADCRUMBS ========== */

/* ====================================================== */
/* =============== /.PRIVACY POLICY PAGE ================ */
/* ====================================================== */

/* ====================================================== */
/* ======================= MODALS ======================= */
/* ====================================================== */

body.no-scroll {
	overflow: hidden;
}

.btn--leave-popup,
.btn--download-popup {
	max-width: 100%;
	width: 100%;
}

.modal {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow-y: auto;
	padding: 30px 15px;
	z-index: 2000;
	background: rgba(48, 42, 37, 0.70);
	backdrop-filter: blur(5px);
}

.modal.show {
	display: block;
}

.modal__inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	flex-direction: column;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	min-height: 100%;
}

.modal__header {
	-webkit-transform: scale(0.5);
	transform: scale(0.5);
	opacity: 0;
	-webkit-transition: opacity .2s ease-out, -webkit-transform .2s ease-out;
	transition: opacity .2s ease-out, -webkit-transform .2s ease-out;
	transition: transform .2s ease-out, opacity .2s ease-out;
	transition: transform .2s ease-out, opacity .2s ease-out, -webkit-transform .2s ease-out;
	background: #0A140C;
	backdrop-filter: blur(5.5px);
}

.modal__content {
	position: relative;
	max-width: 619px;
	width: 100%;
	padding-top: 76px;
	padding-right: 15px;
	padding-bottom: 70px;
	padding-left: 15px;
	background-color: #fff;
	-webkit-transform: scale(0.5);
	transform: scale(0.5);
	opacity: 0;
	-webkit-transition: opacity .2s ease-out, -webkit-transform .2s ease-out;
	transition: opacity .2s ease-out, -webkit-transform .2s ease-out;
	transition: transform .2s ease-out, opacity .2s ease-out;
	transition: transform .2s ease-out, opacity .2s ease-out, -webkit-transform .2s ease-out;
	background: #0A140C;
	backdrop-filter: blur(5.5px);
}

.modal__close {
	width: 20px;
	height: 20px;
	position: absolute;
	top: 25px;
	right: 25px;
	z-index: 1;
	background: none;
	border: none;
	padding: 0;
	cursor: pointer;
	-webkit-transition: -webkit-transform 0.2s linear;
	transition: -webkit-transform 0.2s linear;
	transition: transform 0.2s linear;
	transition: transform 0.2s linear, -webkit-transform 0.2s linear;
}
  
.modal__close:focus {
	outline: none;
}
  
.modal__close:hover {
	-webkit-transform: rotate(90deg);
			transform: rotate(90deg);
}
  
.modal__close img {
	display: block;
}

.modal__text {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.modal-text__title {
	max-width: 350px;
	font-family: 'TTFirsNeue-DemiBold', Helvetica, Arial, sans-serif;
	font-size: 20px;
	line-height: 1.3;
	color: #ffffff;
}

.modal-text__form {
	display: flex;
    flex-direction: column;
    align-items: center;
	width: 100%;
	margin-top: 20px;
}

.modal-text__form input[type="email"],
.modal-text__form input[type="text"],
.modal-text__form input[type="tel"] {
	width: 370px;
    height: 60px;
	margin-bottom: 21px;
    padding-left: 30px;
    border-radius: 50px;
    background-color: #ffffff;
    border: none;
}
@media (max-width: 445px) {
	.modal-text__form input[type="email"],
	.modal-text__form input[type="text"],
	.modal-text__form input[type="tel"] {
		width: 300px;
	}
}

.modal-text__form input[type="submit"] {
	width: 370px;
    height: 60px;
	background-color: #484E2C;
	color: #ffffff;
	border-radius: 50px;
	cursor: pointer;
}
@media (max-width: 445px) {
	.modal-text__form input[type="submit"] {
		width: 300px;
	}
}

.modal .wpcf7 .wpcf7-spinner {
	display: none;
	visibility: hidden;
}

.modal .wpcf7 .wpcf7-not-valid-tip {
	margin-bottom: 15px;
	text-align: center;
}

.modal .wpcf7 form .wpcf7-response-output {
    max-width: 370px;
	margin: 21px 0px 0px 0px;
	padding: 15px;
	color: #ffffff;
}

.modal .message-body {
	display: flex;
	flex-direction: column;
	align-items: center;
	row-gap: 31px;
	max-width: 350px;
	width: 100%;
}

.modal .message-body .message-body__text--1 {
	font-family: 'TTFirsNeue-DemiBold', Helvetica, Arial, sans-serif;
	font-size: 40px; 
	line-height: 1.3;
	text-align: center; 
	color: #ffffff;
}

.modal .message-body .message-body__text--2 {
	font-family: 'TTFirsNeue-DemiBold', Helvetica, Arial, sans-serif;
	font-size: 20px; 
	line-height: 1.3;
	text-align: center; 
	color: #ffffff;
}

/* ====================================================== */
/* ======================= /.MODALS ===================== */
/* ====================================================== */

@media (min-width: 992px) and (max-width: 1440px) {
	.main__menu .menu__list {
		column-gap: 10px;
	}

	.main__menu .menu__item--language {
		margin-left: 62px;
	}

	.main__menu .menu__item--info {
		margin-left: 39px;
	}

	.menu__item.menu__item--info .menu__item--tel {
		font-size: 24px;
	}

	.menu__item.menu__item--info .menu__item--download {
		font-size: 16px;
	}

	.home-page .hero__title > h1 {
		font-size: 128px;
		line-height: 1.2;
	}

	.about__header {
		flex-direction: initial;
	}

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

	.about-title__text {
		font-size: 100px;
	}

	.location__title {
		font-size: 100px;
	}

	.location__desc {
		font-size: 18px;
	}

	.gallery__title h2,
	.planning__title h2,
	.progress__title h2,
	.news__title h2,
	.gallery__title h2,
	.build-progress__title h2 {
		font-size: 100px;
	}

	.gallery__tabs span {
		font-size: 18px;
	}

	.gallery .swiper-backface-hidden .swiper-slide {
		height: 620px;
	}

	.planning__title h2 {
		font-size: 100px;
	}

	.review-desc__text {
		font-size: 18px;
	}

	.review__form .wpcf7 input[type="text"], 
	.review__form .wpcf7 input[type="tel"] {
		height: 60px;
	}

	.review__form .wpcf7 .wpcf7-submit {
		width: 60px;
		height: 60px;
	}

	.review__body {
		padding-top: 70px;
		padding-bottom: 68px;
	}

	.progress {
		padding-top: 170px;
	}

	.progress__title h2 {
		font-size: 100px;
	}

	.progress .swiper-slide-wrapper {
        padding: 0px;
    }

	.progress .swiper-slider-header-column,
	.progress .swiper-slider-header-column > span {
		font-size: 24px;
		line-height: 42px;
	}

	.progress .swiper-slider-header-column.first {
		gap: 15px;
	}

	.news {
		padding-top: 170px;
	}

	.news__title h2 {
		font-size: 100px;
	}

	.news .swiper-slide-wrapper {
        padding: 0px;
    }

	.news .swiper-slider-header-column,
	.news .swiper-slider-header-column > span {
		font-size: 24px;
		line-height: 42px;
	}

	.news .swiper-slider-header-column.first {
		gap: 15px;
	}

	.leader__title {
		font-size: 100px;
	}

	.leader__desc {
		font-size: 28px;
	}

	.map__title {
        font-size: 100px;
    }	

	.map__form__right__form .wpcf7 .wpcf7-submit {
		width: 60px;
		height: 60px;
	}

	.map__form__right span {
        text-align: left;
    }

	.map .tabs__header {
		font-size: 18px;
	}

	.map .tabs__body__col1__content__row > span,
	.map .tabs__body__col2__content__row > span,
	.map .tabs__body__col1__content__row p,
	.map .tabs__body__col2__content__row p,
	.map .tabs__body__col1__content__row a,
	.map .tabs__body__col2__content__row a {
		font-size: 15px;
	}

	.documentation-page .hero__body,
	.construction-progress-page .hero__body,
	.privacy-policy-page .hero__body {
		padding-top: 305px;
		padding-bottom: 188px;
	}

	.documentation-page .hero__title,
	.construction-progress-page .hero__title,
	.privacy-policy-page .hero__title {
		font-size: 100px;
	}

	.documentation-page .breadcrumbs,
	.construction-progress-page .breadcrumbs,
	.privacy-policy-page .breadcrumbs {
		font-size: 18px;
	}

	.documentation-page .documents__item {
		gap: 37px;
	}

	.documentation-page .documents__title {
		font-size: 100px;
	}

	.documentation-page .documents-item__icon {
		width: 30px;
		height: 30px;
	}

	.documentation-page .documents-item__title,
	.documentation-page .documents-item__date {
		font-size: 24px;
	}

	.documentation-page .documents-item__size {
		font-size: 16px;
	}

	.construction-progress-page .build-progress-desc__text {
		font-size: 18px;
	}

	.construction-progress-page .build-progress-item-meta__date,
	.construction-progress-page .build-progress-item-meta__stage {
		font-size: 24px;
	}

	.construction-progress-page .build-progress-item-content__text {
		font-size: 18px;
	}

	.error-404__img {
		max-width: 587px;
	}

	.error-404__title {
		font-size: 22px;
	}
}

/* ============================ OVERRIDE ================================== */

[class*="__container"] {
	max-width: 1330px;
	margin: 0 auto;
	padding-left: 15px;
	padding-right: 15px;
	box-sizing: border-box;
}

/* Menu */

.main__menu .menu__list {
	column-gap: 10px;
}

.menu__item.menu__item--language {
	margin-left: 62px;
}
@media (max-width: 991.98px) {
	.menu__item.menu__item--language {
		margin-left: initial;
	}
}

.menu__item.menu__item--info {
	margin-left: 39px;
}
@media (max-width: 991.98px) {
	.menu__item.menu__item--info {
		margin-left: initial;
	}
}

.menu__item.menu__item--info .menu__item--tel {
	font-size: 24px;
}

.menu__item.menu__item--info .menu__item--download {
    font-size: 16px;
}

/* end___Menu */

/* HomePage Hero */

.home-page .hero__title > h1 {
	font-size: clamp(40px, calc(1.04rem + 8.3vw), 128px);
	line-height: 1.3;
}

.home-page .hero__desc {
	margin-left: 30px;
}
@media (max-width: 991.98px) {
	.home-page .hero__desc {
		margin-left: 0px;
	}
}

.home-page .hero__desc > p {
	font-size: 18px;
	line-height: 1.2;
}

/* end___HomePage Hero */

/* About */

.about__body {
	padding-top: 170px;
	padding-bottom: 170px;
}
@media (max-width: 991.98px) {
	.about__body {
		padding-top: 60px;
		padding-bottom: 60px;
	}
}

.about__header {
    column-gap: 30px;
}
@media (max-width: 1350px) {
	.about__header {
		flex-direction: column;
		row-gap: 60px;
	}
}

.about__title {
	max-width: initial;
}
@media (max-width: 1350px) {
	.about__title {
		flex-direction: row;
		justify-content: space-between;
	}
}

.about-title__text {
	font-size: 100px;
}
@media (max-width: 991.98px) {
	.about-title__text {
		font-size: 64px;
	}
}
@media (max-width: 767.98px) {
	.about-title__text {
		font-size: 32px;
	}
}

.about__slider {
	max-width: initial;
}

.about__slider .swiper-slide {
    padding-right: 5px;
}

.about-slide__title {
	font-size: 28px;
}
@media (max-width: 991.98px) {
	.about-slide__title {
		font-size: 32px;
	}
}
@media (max-width: 767.98px) {
	.about-slide__title {
		font-size: 20px;
	}
}

.about-slide__text {
	font-size: 18px;
}
@media (max-width: 991.98px) {
	.about-slide__text {
		font-size: 20px;
	}
}
@media (max-width: 767.98px) {
	.about-slide__text {
		font-size: 18px;
	}
}

.about-main-left__text {
	flex-wrap: nowrap;
	padding-left: 0px;
}
@media (max-width: 1200px) {
	.about-main-left__text {
		flex-wrap: wrap;
	}
}

.about-main-left__content {
	column-gap: 30px;
}

.about-main-left__count {
	font-size: 128px;
}

.about-main-left__desc p {
	font-size: 18px;
}

.about-main-left__icon {
	flex-shrink: 0;
}

/* end___About */

/* Location */

.location {
	padding-top: 70px;
}
@media (max-width: 991.98px) {
	.location {
		padding-top: 50px;
	}
}
@media (max-width: 767.98px) {
	.location {
		padding-top: 40px;
	}
}

.location__header {
	flex-direction: row;
	justify-content: space-between;
	align-items: flex-start;
}
@media (max-width: 1156px) {
	.location__header {
		column-gap: 40px;
		justify-content: initial;
	}
}
@media (max-width: 767.98px) {
	.location__header {
		flex-direction: column;
	}
}

.location__title {
	padding-top: 100px;
	font-size: 100px;
}
@media (max-width: 1239px) {
	.location__title {
		font-size: 90px;
	}
}
@media (max-width: 991.98px) {
	.location__title {
		padding-top: 0px;
		font-size: 64px;
	}
}
@media (max-width: 767.98px) {
	.location__title {
		font-size: 32px;
	}
}

.location__desc {
	font-size: 24px;
}
@media (max-width: 991.98px) {
	.location__desc {
		font-size: 16px;
	}
}
@media (max-width: 767.98px) {
	.location__desc {
		font-size: 14px;
	}
}

/* end___Location */

/* Gallery */

@media (max-width: 991.98px) {
	.gallery {
		padding-top: 91px;
		padding-bottom: 70px;
	}
}
@media (max-width: 767.98px) {
	.gallery {
		padding-top: 60px;
		padding-bottom: 60px;
	}
}

.gallery__title h2 {
	font-size: 100px;
}
@media (max-width: 991.98px) {
	.gallery__title h2 {
		font-size: 64px;
	}
}
@media (max-width: 767.98px) {
	.gallery__title h2 {
		font-size: 32px;
	}
}

.gallery-desc__subtitle {
	font-size: 18px;
}

.gallery__tabs span {
	font-size: 18px;
}

.gallery__slider {
	margin-top: 52px;
}
@media (max-width: 991.98px) {
	.gallery__slider {
		margin-top: 42px;
	}
}
@media (max-width: 767.98px) {
	.gallery__slider {
		margin-top: 53px;
	}
}

/* end___Gallery */

/* Planning */

.planning__title h2 {
	font-size: 100px;
}
@media (max-width: 991.98px) {
	.planning__title h2 {
		font-size: 64px;
	}
}
@media (max-width: 767.98px) {
	.planning__title h2 {
		font-size: 32px;
	}
}

/* end___Planning */

/* Review */

.review__body {
    padding-top: 70px;
    padding-bottom: 68px;
}
@media (max-width: 991.98px) {
	.review__body {
		padding-top: 50px;
		padding-bottom: 131px;
	}
}

.review__title {
	width: 85%;
    font-size: clamp(40px, calc(1.04rem + 5.3vw), 100px);
}
@media (max-width: 767.98px) {
    .review__title {
        font-size: 44px;
    }
}

.review__title h2 {
    display: initial;
}

@media (max-width: 767.98px) {
    .review__title h2 > *:nth-of-type(2) {
        margin-left: 30px;
    }
}

/** 
  * Випадок, коли друге слово в рядку "<span>перегляд квартири</span>" переноситься на новий рядок.
  * Тобто коли стає так: 
    перегляд 
  		квартири
  *		
  */
@media (max-width: 558px) {  
	.review__title h2 > *:nth-of-type(2) .last-word {
		margin-left: 100px;
	}
	.review-main__img {
		top: -72px
	}
	.review__form {
        margin-top: 21px;
    }
}

@media (max-width: 991.98px) {
    .review__desc {
        bottom: 45px;
    }
}

.review-desc__text {
    max-width: 218px;
    font-size: 18px;
}
@media (max-width: 991.98px) {
	.review-desc__text {
		max-width: 370px;
	}
}

@media (max-width: 767.98px) {
	.review__main {
		margin-top: 55px;
	}
}

/* end___Review */

/* Progress */

.progress {
    padding-top: 170px;
}
@media (max-width: 991.98px) {
	.progress {
		padding-top: 84px;
	}
}
@media (max-width: 767.98px) {
	.progress {
		padding-top: 60px;
		padding-bottom: 150px;
	}
}

.progress__title h2 {
	font-size: 100px;
}
@media (max-width: 991.98px) {
	.progress__title h2 {
		font-size: 64px;
	}
}
@media (max-width: 767.98px) {
	.progress__title h2 {
		font-size: 32px;
	}
}

.progress .swiper-slider-header,
.swiper-slider-header-column > span {
    font-size: 24px;
	line-height: 1.2;
}
@media (max-width: 991.98px) {
	.progress .swiper-slider-header,
	.swiper-slider-header-column > span {
		font-size: 20px;
	}
}

.progress .swiper-slide-wrapper {
	padding: 0px;
}

/* end___Progress */

/* News */

.news {
    padding-top: 170px;
}
@media (max-width: 991.98px) {
	.news {
		padding-top: 84px;
	}
}
@media (max-width: 767.98px) {
	.news {
		padding-top: 60px;
	}
}

.news__title h2 {
	font-size: 100px;
}
@media (max-width: 991.98px) {
	.news__title h2 {
		font-size: 64px;
	}
}
@media (max-width: 767.98px) {
	.news__title h2 {
		font-size: 32px;
	}
}

.news .swiper-slider-header,
.news .swiper-slide-title {
	font-family: 'TTFirsNeue-Medium', Helvetica, Arial, sans-serif;
    font-size: 24px;
	line-height: 1.2;
}
@media (max-width: 991.98px) {
	.news .swiper-slider-header,
	.news .swiper-slide-title {
		font-size: 20px;
	}
}

.news .swiper-slide-wrapper {
	padding: 0px;
}

/* end___News */

/* Leader */

@media (max-width: 991.98px) {
	.leader {
		padding-top: 60px;
	}
}

.leader__title {
	font-size: 100px;
}
@media (max-width: 991.98px) {
	.leader__title {
		font-size: 64px;
	}
}
@media (max-width: 767.98px) {
	.leader__title {
		font-size: 32px;
	}
}

.leader__desc {
	max-width: 1080px;
    margin-top: 32px;
	font-size: 28px;
}
@media (max-width: 991.98px) {
	.leader__desc {
		margin-top: 30px;
		font-size: 24px;
	}
}
@media (max-width: 767.98px) {
	.leader__desc {
		margin-top: 20px;
		font-size: 20px;
	}
}

.leader__item {
	height: 145px;
}

.leader__item::before {
    content: url("data:image/svg+xml;charset=UTF-8,<svg width='16' height='147' viewBox='0 0 16 147' fill='none' xmlns='http://www.w3.org/2000/svg'><path opacity='0.7' d='M15.5296 146.296V146.296C7.5053 146.296 1.00035 139.791 1.00033 131.767L1.00004 15.5295C1.00002 7.50509 7.50509 1 15.5295 1V1' stroke='%23484E2C' stroke-width='0.726478'/></svg>");
}

.leader__item::after {
    content: url("data:image/svg+xml;charset=UTF-8,<svg width='16' height='147' viewBox='0 0 16 147' fill='none' xmlns='http://www.w3.org/2000/svg'><path opacity='0.7' d='M0.462618 146.296V146.296C8.48688 146.296 14.9918 139.791 14.9919 131.767L14.9922 15.5295C14.9922 7.50509 8.48709 1 0.462668 1V1' stroke='%23484E2C' stroke-width='0.726478'/></svg>");
}

.leader-item__left {
	font-size: 93px;
}

.leader__list {
    column-gap: 66px;
}

.leader__item {
    column-gap: 14px;
}

@media (max-width: 1024px) {
    .leader__logo > img {
        width: inherit;
        height: inherit;
    }
}

/* end___Leader */

/* Map */

.map__title {
	font-size: 100px;
	line-height: 1.2;
}
@media (max-width: 991.98px) {
	.map__title {
		font-size: 64px;
	}
}
@media (max-width: 767.98px) {
	.map__title {
		font-size: 32px;
	}
}

.map__form__left > * {
    font-size: 79px;
    font-family: 'TTFirsNeue-Medium', Helvetica, Arial, sans-serif;
    line-height: 1.2;
}
@media (max-width: 991.98px) {
	.map__form__left > * {
		font-size: 48px;
	}
}
@media (max-width: 767.98px) {
	.map__form__left > * {
		font-size: 32px;
	}
}

@media (max-width: 991.98px) {
	.map__form__right__form {
		margin-top: 30px;
	}
}

@media (max-width: 991.98px) {
	.map__form__right__form .wpcf7-form {
		flex-direction: row;
	}
}
@media (max-width: 767.98px) {
	.map__form__right__form .wpcf7-form {
		flex-direction: column;
	}
}

.map__form__right span {
    font-size: 18px;
    line-height: 1.2;
    max-width: 347px;
}
@media (max-width: 767.98px) {
	.map__form__right span {
		max-width: 100%;
	}
}

.map__form__right__form .wpcf7 input[type="text"],
.map__form__right__form .wpcf7 input[type="tel"] {
	max-width: 302px;
    height: 60px;
}
@media (max-width: 991.98px) {
	.map__form__right__form .wpcf7 input[type="text"],
	.map__form__right__form .wpcf7 input[type="tel"] {
		max-width: 225px;
		height: 50px;
	}
}
@media (max-width: 767.98px) {
	.map__form__right__form .wpcf7 input[type="text"],
	.map__form__right__form .wpcf7 input[type="tel"] {
		max-width: 100%;
		width: 100%;
		height: 60px;
	}
}

.map__form__right__form .wpcf7 .wpcf7-submit {
    width: 60px;
    height: 60px;
}

.tabs__header {
	font-size: 18px;
}
@media (max-width: 991.98px) {
	.tabs__header {
		font-size: 10px;
	}
}
@media (max-width: 767.98px) {
	.tabs__header {
		font-size: 18px;
	}
}

.tabs__header__mob .arrow-white-icon {
	transform: rotate(0);
	transition: transform 0.3s;
	display: inline-block;
	width: 18px;
	height: 20px;
	background-image: url('../images/arrow-white.svg');
}

.tabs__body__col1__title {
	font-size: 24px;
}
@media (max-width: 991.98px) {
	.tabs__body__col1__title {
		font-size: 18px;
	}
}
@media (max-width: 767.98px) {
	.tabs__body__col1__title {
		font-size: 24px;
	}
}

.tabs__body__col2__title {
	font-size: 24px;
}
@media (max-width: 991.98px) {
	.tabs__body__col2__title {
		font-size: 18px;
	}
}
@media (max-width: 767.98px) {
	.tabs__body__col2__title {
		font-size: 24px;
	}
}

.tabs__body__col1__content__row > span,
.tabs__body__col2__content__row > span,
.tabs__body__col1__content__row > div,
.tabs__body__col2__content__row > div {
	font-size: 15px;
}
@media (max-width: 991.98px) {
	.tabs__body__col1__content__row > span,
	.tabs__body__col2__content__row > span,
	.tabs__body__col1__content__row > div,
	.tabs__body__col2__content__row > div {
		font-size: 10px;
	}
}
@media (max-width: 767.98px) {
	.tabs__body__col1__content__row > span,
	.tabs__body__col2__content__row > span,
	.tabs__body__col1__content__row > div,
	.tabs__body__col2__content__row > div {
		font-size: 15px;
	}
}

/* end___Map */

/* Footer */

.footer__inner {
	row-gap: 20px;
}

/* end___Footer */

/* DocumentationPage Hero */

.documentation-page .hero__title {
	font-size: 100px;
}
@media (max-width: 991.98px) {
    .documentation-page .hero__title {
        font-size: 86px;
    }
}
@media (max-width: 767.98px) {
	.documentation-page .hero__title {
        font-size: 40px;
    }
}

.documentation-page .hero__body {
    padding-top: 305px;
    padding-bottom: 188px;
}
@media (max-width: 991.98px) {
    .documentation-page .hero__body {
        padding-top: 465px;
        padding-bottom: 465px;
    }
}
@media (max-width: 767.98px) {
	.documentation-page .hero__body {
		padding-top: 172px;
		padding-bottom: 103px;
	}
}

/* end___DocumentationPage Hero */

/* DocumentationPage Breadcrumbs */

.documentation-page .breadcrumbs {
	font-size: 18px;
}
@media (max-width: 991.98px) {
	.documentation-page .breadcrumbs {
		padding-top: 60px;
	}
}
@media (max-width: 767.98px) {
	.documentation-page .breadcrumbs {
		padding-top: 20px;
	}
}

/* end___DocumentationPage Breadcrumbs */

/* DocumentationPage Documents */

.documentation-page .documents__title {
	font-size: 100px;
}
@media (max-width: 991.98px) {
    .documentation-page .documents__title {
        font-size: 64px;
    }
}
@media (max-width: 767.98px) {
	.documentation-page .documents__title {
        font-size: 32px;
    }
}

.documentation-page .documents__list {
    margin-top: 30px;
}
@media (max-width: 991.98px) {
	.documentation-page .documents__list {
		margin-top: 60px;
	}
}
@media (max-width: 767.98px) {
	.documentation-page .documents__list {
		margin-top: 42px;
	}
}

.documentation-page .documents__item:not(:last-child) {
    border-bottom: 1px rgba(10, 20, 12, 0.30) solid;
}
@media (max-width: 991.98px) {
	.documentation-page .documents__item:not(:last-child) {
		border: none;
	}
}

.documentation-page .documents-item__title,
.documentation-page .documents-item__date {
    font-size: 24px;
}
@media (max-width: 991.98px) {
	.documentation-page .documents-item__title,
	.documentation-page .documents-item__date {
		font-size: 20px;
	}
}

@media (max-width: 767.98px) {
	.documentation-page .documents-item__date {
		text-align: right;
	}
}

.documentation-page .documents-item-content__row-2 .documents-item__meta {
	font-size: 18px;
}
@media (max-width: 991.98px) {
	.documentation-page .documents-item-content__row-2 .documents-item__meta {
		display: none;
	}
}

/* end___DocumentationPage Documents */

/* ConstructionProgressPage */

.construction-progress-page .hero__title {
	font-size: 100px;
}
@media (max-width: 991.98px) {
    .construction-progress-page .hero__title {
        font-size: 86px;
    }
}
@media (max-width: 767.98px) {
	.construction-progress-page .hero__title {
        font-size: 40px;
    }
}

.construction-progress-page .hero__body {
    padding-top: 305px;
    padding-bottom: 188px;
}
@media (max-width: 991.98px) {
    .construction-progress-page .hero__body {
        padding-top: 465px;
        padding-bottom: 465px;
    }
}
@media (max-width: 767.98px) {
	.construction-progress-page .hero__body {
		padding-top: 172px;
		padding-bottom: 103px;
	}
}

.construction-progress-page .breadcrumbs {
	font-size: 18px;
}
@media (max-width: 991.98px) {
	.construction-progress-page .breadcrumbs {
		padding-top: 60px;
	}
}
@media (max-width: 767.98px) {
	.construction-progress-page .breadcrumbs {
		padding-top: 20px;
	}
}

.construction-progress-page .build-progress__title h2 {
	font-size: 100px;
}
@media (max-width: 991.98px) {
    .construction-progress-page .build-progress__title h2 {
        font-size: 64px;
    }
}
@media (max-width: 767.98px) {
	.construction-progress-page .build-progress__title h2 {
        font-size: 32px;
    }
}

.construction-progress-page .build-progress-desc__text {
	font-size: 18px;
}

.construction-progress-page .build-progress-item-meta__date,
.construction-progress-page .build-progress-item-meta__stage {
	font-size: 24px;
}
@media (max-width: 991.98px) {
	.construction-progress-page .build-progress-item-meta__date,
	.construction-progress-page .build-progress-item-meta__stage {
		font-size: 20px;
	}
}

.construction-progress-page .build-progress-item-content__text {
    font-size: 18px;
}
@media (max-width: 991.98px) {
	.construction-progress-page .build-progress-item-content__text {
		font-size: 20px;
	}
}
@media (max-width: 767.98px) {
	.construction-progress-page .build-progress-item-content__text {
		font-size: 18px;
	}
}

.construction-progress-page .build-progress-item__content {
    margin-top: 121px;
}

/* end___ConstructionProgressPage */

/* PrivacyPolicyPage */

.privacy-policy-page .hero__title {
	font-size: 100px;
}
@media (max-width: 991.98px) {
    .privacy-policy-page .hero__title {
        font-size: 86px;
    }
}
@media (max-width: 767.98px) {
	.privacy-policy-page .hero__title {
        font-size: 40px;
    }
}

.privacy-policy-page .hero__body {
    padding-top: 305px;
    padding-bottom: 188px;
}
@media (max-width: 991.98px) {
    .privacy-policy-page .hero__body {
        padding-top: 465px;
        padding-bottom: 465px;
    }
}
@media (max-width: 767.98px) {
	.privacy-policy-page .hero__body {
		padding-top: 172px;
		padding-bottom: 103px;
	}
}

.privacy-policy-page .breadcrumbs {
	font-size: 18px;
}
@media (max-width: 991.98px) {
	.privacy-policy-page .breadcrumbs {
		padding-top: 60px;
	}
}
@media (max-width: 767.98px) {
	.privacy-policy-page .breadcrumbs {
		padding-top: 20px;
	}
}

/* end___PrivacyPolicyPage */

.page-content p {
    font-size: 18px;
    line-height: 1.3;
}

.page-content h2 {
	font-size: 48px;
	line-height: 1.3;
}
@media (max-width: 991.98px) {
	.page-content h2 {
		font-size: 38px;
	}
}

.page-content h3 {
	font-size: 48px;
	line-height: 1.3;
}
@media (max-width: 991.98px) {
	.page-content h3 {
		font-size: 38px;
	}
}

.page-content h4 {
	font-size: 48px;
	line-height: 1.3;
}
@media (max-width: 991.98px) {
	.page-content h4 {
		font-size: 38px;
	}
}

.page-content h5 {
	font-size: 48px;
	line-height: 1.3;
}
@media (max-width: 991.98px) {
	.page-content h5 {
		font-size: 38px;
	}
}

.page-content h6 {
	font-size: 48px;
	line-height: 1.3;
}
@media (max-width: 991.98px) {
	.page-content h6 {
		font-size: 38px;
	}
}

/* 404 Page */

.error-404__img {
    max-width: 587px;
}

.error-404__title {
    font-size: 22px;
}
@media (max-width: 991.98px) {
	.error-404__title {
        font-size: 18px;
    }
}

/* end___404 Page */

/* ============================ END___OVERRIDE ================================== */

/* ======================= HIDE ELEMENTS ============================ */

.menu__item--download {
	display: none;
}

/* ================================================================== */

/* Flatris */

.chess_active_btn {
	left: 25px ! important;
	bottom: 25px ! important;
}
@media (max-width: 690.99px) {
	.chess_active_btn {
		width: 50px ! important;
		height: 50px ! important;
		left: initial ! important;
		right: 25px ! important;
		top: initial ! important;
		bottom: 160px ! important;
		line-height: 40px ! important;
	}
	.chess_active_btn .chess_active_btn_text {
		font-size: 6px ! important;
		letter-spacing: 0.5px ! important;
	}
}

/* end___Flatris */