@charset "UTF-8";
@font-face {
	font-family: 'B52';
	src: url('../fonts/B52.ttf') format('truetype');
	font-weight: 400;
	font-style: normal;
}
@font-face {
	font-family: 'Helvetica Neue';
	src: url('../fonts/HelveticaNeue-Light.otf') format('truetype');
	font-weight: 300;
	font-style: normal;
}
@font-face {
	font-family: 'Helvetica Neue';
	src: url('../fonts/HelveticaNeue-Roman.otf') format('truetype');
	font-weight: 400;
	font-style: normal;
}
html,
body,
ul,
ol,
li,
dl,
dt,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
input,
textarea,
p,
blockquote,
th,
td {
	margin: 0;
	padding: 0;
}

html {
	line-height: 1.15;
}

ul,
ol {
	list-style: none;
}

a {
	text-decoration: none;
	color: inherit;
}

button,
input,
select,
textarea {
	margin: 0;
	padding: 0;
	border: 0;
	background: none;
	font-size: 100%;
	vertical-align: baseline;
	outline: none;
	appearance: none;
	-webkit-appearance: none;
	font: inherit;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

input[type='checkbox'],
input[type='radio'],
input[type='file'] {
	vertical-align: middle;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

* {
	box-sizing: border-box;
}

html,
body {
	scroll-behavior: smooth;
	height: 100vh;
	font-style: normal;
	font-weight: 400;
	font-family: 'Helvetica Neue', sans-serif;
	background: #ffffff;
	color: #000000;
}

button {
	cursor: pointer;
}

.title {
	width: 758px;
	margin-bottom: 40px;
}
@media (max-width: 991px) {
	.title {
		width: 100%;
		margin-bottom: 20px;
	}
}
.title__top {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	gap: 8px;
	color: #a1a897;
	font-size: 14px;
	font-weight: 300;
	line-height: 18px;
	text-align: left;
	text-transform: uppercase;
	margin-bottom: 8px;
}
@media (max-width: 991px) {
	.title__top {
		font-size: 12px;
		font-weight: 300;
		line-height: 16px;
		text-align: left;
		letter-spacing: 1.92px;
	}
}
.title__top span {
	display: block;
	width: 100%;
	height: 1px;
	background-color: #a1a897;
	opacity: 0.4;
}
.title h2 {
	font-family: 'B52', serif;
	font-size: 68px;
	font-weight: 400;
	line-height: 64px;
	text-align: left;
	margin-bottom: 8px;
}
@media (max-width: 991px) {
	.title h2 {
		font-size: 40px;
		font-weight: 400;
		line-height: 36px;
		text-align: left;
	}
}
.title p {
	font-size: 16px;
	font-weight: 300;
	line-height: 24px;
	text-align: left;
}
@media (max-width: 991px) {
	.title p {
		font-size: 14px;
		font-weight: 300;
		line-height: 20px;
		text-align: left;
	}
}

.primary {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 8px 20px;
	color: #ffffff;
	font-family: 'B52', serif;
	font-size: 24px;
	font-weight: 400;
	line-height: 28px;
	text-align: left;
	background: #a1a897;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
.primary > span {
	position: relative;
	z-index: 2;
}
.primary::after {
	content: '';
	position: absolute;
	left: 0;
	left: 0;
	width: 0;
	height: 100%;
	background: #000000;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
	opacity: 0;
}
.primary:hover::after {
	width: 100%;
	opacity: 1;
}
@media (max-width: 991px) {
	.primary {
		padding: 6px 8px;
		font-size: 20px;
		font-weight: 400;
		line-height: 24px;
		text-align: left;
	}
}

.fade-in {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
	opacity: 1;
	transform: translateY(0);
}

.container {
	max-width: 1920px;
	margin: auto;
	padding: 0 40px;
}
@media (max-width: 991px) {
	.container {
		padding: 0 16px;
	}
}

.header-wrap {
	width: 100%;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 11;
	padding: 12px;
	transform: translateY(0);
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
.header-wrap.hidden {
	transform: translateY(-100%);
}
.header-wrap.scrolled .header {
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.header {
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	gap: 0;
	padding: 8px 16px;
	background: rgba(0, 0, 0, 0.3);
	-webkit-backdrop-filter: blur(5px);
	backdrop-filter: blur(5px);
}
.header__logo > img {
	width: 156px;
	height: 52px;
	object-fit: cover;
}
@media (max-width: 991px) {
	.header__logo > img {
		width: 108px;
		height: 36px;
	}
}
.header__nav {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 40px;
}
.header__nav a {
	color: #ffffff;
	font-size: 16px;
	font-weight: 400;
	line-height: 20px;
	text-align: left;
}
@media (max-width: 1024px) {
	.header__nav {
		display: none;
	}
}
.header .language-switcher {
	position: relative;
	display: inline-block;
}
@media (max-width: 991px) {
	.header .language-switcher {
		display: none;
	}
}
.header #lang-btn {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	gap: 4px;
	border: 1px solid rgba(161, 168, 151, 0.32);
	border-radius: 4px;
	padding: 4px 8px;
	color: #ffffff;
	cursor: pointer;
	font-size: 16px;
	font-weight: 400;
	line-height: 20px;
	text-align: left;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
.header .arrow {
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
.header #lang-btn.active .arrow {
	transform: rotateX(180deg);
}
.header #lang-menu {
	position: absolute;
	top: 110%;
	left: 0;
	width: 100%;
	border: 1px solid rgba(161, 168, 151, 0.32);
	border-radius: 4px;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
.header #lang-menu li > a {
	display: block;
	width: 100%;
	height: 100%;
	padding: 4px 8px;
	cursor: pointer;
	color: #ffffff;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
	text-transform: uppercase;
}
.header #lang-menu li > a:hover {
	background: #a1a897;
}
.header .hidden {
	display: none;
}
.header__phone {
	color: #ffffff;
	font-size: 16px;
	font-weight: 400;
	line-height: 20px;
	text-align: left;
}
@media (max-width: 991px) {
	.header__phone {
		display: none;
	}
}
.header__btns {
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	align-items: center;
	gap: 12px;
}
.header__btns .burger {
	width: 40px;
	height: 40px;
	padding: 8px;
	display: flex;
	justify-content: center;
	align-items: center;
	display: none;
	background: #000000;
}
@media (max-width: 1024px) {
	.header__btns .burger {
		display: flex;
	}
}

.mobile-menu {
	display: none;
}

@media (max-width: 1024px) {
	.mobile-menu {
		position: relative;
		display: flex;
		flex-direction: column;
		justify-content: flex-start;
		align-items: center;
		gap: 24px;
		width: 100%;
		padding: 20px 20px 40px 20px;
		background: rgba(0, 0, 0, 0.3);
		-webkit-backdrop-filter: blur(5px);
		backdrop-filter: blur(5px);
		opacity: 0;
		pointer-events: none;
		-webkit-transition: all 0.3s ease-out;
		-moz-transition: all 0.3s ease-out;
		-o-transition: all 0.3s ease-out;
		transition: all 0.3s ease-out;
		bottom: -1px;
		max-height: 0;
		overflow: hidden;
	}
}
.mobile-menu.active {
	opacity: 1;
	pointer-events: all;
	max-height: 500px;
}
.mobile-menu__nav {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 24px;
}
.mobile-menu__nav a {
	color: #ffffff;
	font-size: 16px;
	font-weight: 400;
	line-height: 20px;
	text-align: left;
}
.mobile-menu__contacts {
	border-top: 1px solid rgba(0, 0, 0, 0.12);
	padding-top: 24px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 24px;
}
.mobile-menu__contacts p {
	width: 178px;
	/* color: #a1a897; */
	color: #ffffff;
	font-size: 16px;
	font-weight: 400;
	line-height: 20px;
	text-align: center;
}
.mobile-menu__contacts a {
	/* color: #a1a897; */
	color: #ffffff;
	font-size: 16px;
	font-weight: 400;
	line-height: 20px;
	text-align: center;
}

.lang-toggle {
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 0;
	background: rgba(161, 168, 151, 0.12);
	overflow: hidden;
	color: #ffffff;
	display: none;
}
@media (max-width: 991px) {
	.lang-toggle {
		display: flex;
	}
}

.lang-option {
	width: 50%;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 12px;
	padding: 12px;
	font-size: 16px;
	font-weight: 400;
	line-height: 20px;
	text-align: left;
	cursor: pointer;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
	text-transform: uppercase;
}

.lang-option.active {
	opacity: 0.4;
}

#current-lang {
	text-transform: uppercase;
}

.hero {
	position: relative;
	width: 100%;
	height: 100vh;
}
@media (max-width: 991px) {
	.hero {
		height: 720px;
	}
}
.hero__bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.hero .container {
	height: 100%;
}
.hero__body {
	position: relative;
	width: 100%;
	height: 100%;
}
.hero__row {
	width: 100%;
	position: absolute;
	left: 0;
	bottom: 0;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	gap: 0;
	margin-bottom: 70px;
}
@media (max-width: 991px) {
	.hero__row {
		flex-direction: column;
		gap: 20px;
		align-items: flex-start;
		margin-bottom: 28px;
	}
}
.hero__content {
	width: 500px;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 8px;
}
@media (max-width: 991px) {
	.hero__content {
		width: 100%;
		gap: 12px;
	}
}
.hero__content h1 {
	color: #ffffff;
	font-family: 'B52', serif;
	font-size: 72px;
	font-weight: 400;
	line-height: 64px;
	text-align: left;
}
@media (max-width: 991px) {
	.hero__content h1 {
		font-size: 48px;
		font-weight: 400;
		line-height: 44px;
		text-align: left;
	}
}
.hero__content p {
	color: #ffffff;
	font-size: 20px;
	font-weight: 400;
	line-height: 26px;
	text-align: left;
}
@media (max-width: 991px) {
	.hero__content p {
		font-size: 18px;
		font-weight: 400;
		line-height: 24px;
		text-align: left;
	}
}
.hero__map {
	width: 240px;
	height: 304px;
}
@media (max-width: 991px) {
	.hero__map {
		width: 334px;
		height: 80px;
		display: flex;
		flex-direction: row-reverse;
		justify-content: center;
		align-items: center;
		gap: 0;
	}
}
.hero__map-top {
	width: 100%;
	height: 240px;
}
@media (max-width: 991px) {
	.hero__map-top {
		width: 80px;
		height: 80px;
		overflow: hidden;
	}
}
.hero__map-top iframe {
	width: 100%;
	height: 100%;
}
.hero__map-bottom {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 12px;
	background: #a1a897;
}
@media (max-width: 991px) {
	.hero__map-bottom {
		padding: 20px;
		width: 254px;
	}
}
.hero__map-bottom p {
	color: #ffffff;
	font-size: 16px;
	font-weight: 400;
	line-height: 20px;
	text-align: left;
}
@media (max-width: 991px) {
	.hero__map-bottom p {
		font-size: 14px;
		font-weight: 400;
		line-height: 18px;
		text-align: left;
	}
}
.hero__scroll {
	position: absolute;
	left: 50%;
	bottom: 12px;
	transform: translateX(-50%);
	color: #ffffff;
	font-size: 12px;
	font-weight: 400;
	line-height: normal;
	text-align: center;
	letter-spacing: 1.44px;
	text-transform: uppercase;
	animation: moveUpDown 1.6s ease-in-out infinite;
}
@media (max-width: 991px) {
	.hero__scroll {
		display: none;
	}
}

@keyframes moveUpDown {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(6px);
	}
}
.about-us {
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 40px;
	padding-top: 80px;
	padding-bottom: 80px;
}
@media (max-width: 991px) {
	.about-us {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		gap: 20px;
		padding-top: 40px;
		padding-bottom: 40px;
	}
}
.about-us__left {
	width: 50%;
}
@media (max-width: 991px) {
	.about-us__left {
		width: 100%;
	}
}
.about-us__title {
	font-family: 'B52', sans-serif;
	font-size: 68px;
	font-weight: 400;
	line-height: 64px;
	margin-bottom: 20px;
}
.about-us__text {
	font-size: 16px;
	font-weight: 400;
	line-height: 20px;
	text-transform: uppercase;
	margin-bottom: 40px;
}
.about-us__text > ul {
	list-style-type: disc;
	margin-left: 20px;
}
@media (max-width: 991px) {
	.about-us__title {
		font-family: 'B52', sans-serif;
		font-size: 32px;
		line-height: 34px;
	}
	.about-us__text {
		margin-bottom: 20px;
	}
}
.about-us__list {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	gap: 40px;
}
@media (max-width: 991px) {
	.about-us__text {
		font-size: 14px;
		font-weight: 300;
		line-height: 16px;
		margin-bottom: 20px;
	}

	.about-us__list {
		gap: 28px;
	}
}
.about-us__item {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
	color: #a1a897;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px;
	text-align: left;
}
@media (max-width: 991px) {
	.about-us__item {
		font-size: 14px;
		font-weight: 400;
		line-height: 20px;
		text-align: left;
	}
}
.about-us__item span {
	margin-left: 8px;
	color: #000000;
}
.about-us__right {
	width: 50%;
	position: relative;
}
@media (max-width: 991px) {
	.about-us__right {
		width: 100%;
	}
}
.about-us__right-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 0;
	z-index: 11;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 24px;
	padding: 12px 8px;
	background-color: #000000;
}
.about-us__swiper-prev,
.about-us__swiper-next {
	display: flex;
	justify-content: center;
	align-items: center;
}
.about-us__swiper-prev-pagination {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 12px;
}
.about-us .swiper {
	width: 100%;
	height: 545px;
	overflow: hidden;
}
@media (max-width: 991px) {
	.about-us .swiper {
		height: 217px;
	}
}
.about-us .swiper-slide {
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
.about-us .swiper-slide img {
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
.about-us .swiper-pagination-vertical.swiper-pagination-bullets {
	transform: translate3d(0px, 0%, 0);
}
.about-us .swiper-pagination-bullet {
	width: 24px;
	height: 2px;
	opacity: 0.4;
	background: #a1a897;
	border-radius: 0;
	margin: 0 !important;
}
.about-us .swiper-pagination-bullet-active {
	background: #ffffff;
	opacity: 1;
}

.residence {
	padding-top: 80px;
	padding-bottom: 80px;
}
@media (max-width: 991px) {
	.residence {
		padding-top: 40px;
		padding-bottom: 40px;
	}
}
.residence__list {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 40px;
}
@media (max-width: 991px) {
	.residence__list {
		flex-direction: column;
	}
}
.residence__item {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 8px;
}

.residence__item:hover h4:before {
	width: 100%;
	opacity: 1;
}

.residence__item:hover h4 {
	color: #ffffff;
}
.residence__item-img {
	position: relative;
	overflow: hidden;
	cursor: pointer;
}
.residence__item-img > img {
	object-fit: cover;
}
.residence__item-hover {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	opacity: 0 !important;
	pointer-events: none;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
.residence__item:hover .residence__item-hover {
	opacity: 1 !important;
}
.residence__item-info {
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: flex-end;
	gap: 20px;
}
@media (max-width: 991px) {
	.residence__item-info {
		flex-direction: column;
		gap: 12px;
	}
}
.residence__item-info h4 {
	position: relative;
	width: fit-content;
	font-family: 'B52', serif;
	font-size: 40px;
	font-weight: 400;
	line-height: 36px;
	text-align: left;
	margin-bottom: 8px;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
.residence__item-info h4::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 0;
	height: 100%;
	background-color: #000000;
	opacity: 0;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
	z-index: -1;
}
@media (max-width: 991px) {
	.residence__item-info h4 {
		font-size: 32px;
		font-weight: 400;
		line-height: 28px;
		text-align: left;
	}
}
.residence__item-info p {
	font-size: 14px;
	font-weight: 400;
	line-height: 20px;
	text-align: left;
}
@media (max-width: 991px) {
	.residence__item-info p {
		font-size: 13px;
		font-weight: 400;
		line-height: 18px;
		text-align: left;
	}
}
.residence__item-info ul {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	gap: 6px;
}
.residence__item-info ul > li {
	color: #a7a7a7;
	font-size: 14px;
	font-weight: 400;
	line-height: 20px;
	text-align: left;
}
@media (max-width: 991px) {
	.residence__item-info ul > li {
		font-size: 13px;
		font-weight: 400;
		line-height: 18px;
		text-align: left;
	}
}
.residence__item-right {
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	align-items: center;
	gap: 4px;
}
@media (max-width: 991px) {
	.residence__item-right {
		width: 100%;
	}
}
.residence__item-outline {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 8px 16px;
	font-family: 'B52', serif;
	font-size: 20px;
	font-weight: 400;
	line-height: 20px;
	text-align: left;
	border: 1px solid #000000;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
.residence__item-outline > span {
	position: relative;
	z-index: 2;
}
.residence__item-outline::after {
	content: '';
	position: absolute;
	left: 0;
	left: 0;
	width: 0;
	height: 100%;
	background: #000000;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
	opacity: 0;
}
.residence__item-outline:hover::after {
	width: 100%;
	opacity: 1;
}
.residence__item-outline:hover {
	color: #ffffff;
}
@media (max-width: 991px) {
	.residence__item-outline {
		width: 50%;
	}
}
.residence__item-primary {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 8px 16px;
	color: #ffffff;
	font-family: 'B52', serif;
	font-size: 20px;
	font-weight: 400;
	line-height: 20px;
	text-align: left;
	background-color: #a1a897;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
.residence__item-primary > span {
	position: relative;
	z-index: 2;
}
.residence__item-primary::after {
	content: '';
	position: absolute;
	left: 0;
	left: 0;
	width: 0;
	height: 100%;
	background: #000000;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
	opacity: 0;
}
.residence__item-primary:hover::after {
	width: 100%;
	opacity: 1;
}
@media (max-width: 991px) {
	.residence__item-primary {
		width: 50%;
	}
}

.entertainment {
	padding-top: 80px;
	padding-bottom: 80px;
	background-color: #a1a897;
}
@media (max-width: 991px) {
	.entertainment {
		padding-top: 40px;
		padding-bottom: 40px;
	}
}
@media (max-width: 1440px) {
	.entertainment .container {
		padding-right: 0;
	}
}
.entertainment .title {
	width: 1000px;
	color: #ffffff;
}
@media (max-width: 1440px) {
	.entertainment .title {
		padding-right: 40px;
		width: 100%;
	}
}
@media (max-width: 991px) {
	.entertainment .title {
		padding-right: 16px;
	}
}
.entertainment .title__top {
	color: #ffffff;
	white-space: nowrap;
}
.entertainment .title__top span {
	background-color: #ffffff;
}
.entertainment__slide:hover img {
	transform: scale(1.1);
}
.entertainment__slide img {
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
.entertainment__slide {
	position: relative !important;
	height: 624px;
	overflow: hidden;
}
@media (max-width: 1440px) {
	.entertainment__slide {
		height: 560px;
	}
}
@media (max-width: 1024px) {
	.entertainment__slide {
		height: 392px;
	}
}
@media (max-width: 991px) {
	.entertainment__slide {
		height: 336px;
	}
}
.entertainment__slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.entertainment__slide-name {
	position: absolute;
	left: 12px;
	bottom: 24px;
	z-index: 9;
	width: fit-content;
	max-width: calc(100% - 24px);
	padding: 8px 2px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-family: 'B52', serif;
	font-size: 40px;
	font-weight: 400;
	line-height: 36px;
	text-align: left;
	background: #ffffff;
	white-space: nowrap;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
.entertainment__slide-name::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 0;
	height: 100%;
	background-color: #000000;
	opacity: 0;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
	z-index: -1;
}
.entertainment__slide:hover .entertainment__slide-name::before {
	width: 100%;
	opacity: 1;
}
.entertainment__slide:hover .entertainment__slide-name {
	color: #ffffff;
}
@media (max-width: 991px) {
	.entertainment__slide-name {
		font-size: 32px;
		font-weight: 400;
		line-height: 28px;
		text-align: left;
	}
}
.entertainment .swiper-pagination {
	margin-top: 40px;
	position: static;
	height: 2px;
	background: rgba(255, 255, 255, 0.08);
}
@media (max-width: 1440px) {
	.entertainment .swiper-pagination {
		width: calc(100% - 40px);
	}
}
@media (max-width: 1024px) {
	.entertainment .swiper-pagination {
		width: calc(100% - 16px);
	}
}
@media (max-width: 991px) {
	.entertainment .swiper-pagination {
		margin-top: 20px;
	}
}
.entertainment .swiper-pagination-progressbar-fill {
	background-color: #ffffff;
	opacity: 0.4;
}

.form {
	padding-top: 80px;
	padding-bottom: 80px;
	display: flex;
	justify-content: center;
	align-items: center;
}
@media (max-width: 991px) {
	.form {
		padding-top: 40px;
		padding-bottom: 40px;
	}
}
@media (max-width: 991px) {
	.form__desktop {
		display: none;
	}
}
.form__mobile {
	display: none;
}
@media (max-width: 991px) {
	.form__mobile {
		display: block;
	}
}

.faq-wrap {
	border-top: 1px solid rgba(0, 0, 0, 0.12);
	padding-top: 80px;
}
@media (max-width: 991px) {
	.faq-wrap {
		padding-top: 40px;
		padding-bottom: 40px;
	}
}

.faq__title {
	font-family: 'B52', serif;
	font-size: 68px;
	font-weight: 400;
	line-height: 64px;
	text-align: center;
	margin-bottom: 40px;
}
@media (max-width: 991px) {
	.faq__title {
		font-size: 40px;
		font-weight: 400;
		line-height: 36px;
		text-align: center;
		margin-bottom: 20px;
	}
}
.faq__list {
	max-width: 1440px;
	margin: auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 4px;
}
@media (max-width: 1550px) {
	.faq__list {
		width: 960px;
	}
}
@media (max-width: 1100px) {
	.faq__list {
		width: 100%;
	}
}
.faq__item {
	width: 100%;
	padding: 20px;
	border: 1px solid rgba(161, 168, 151, 0.32);
}
@media (max-width: 991px) {
	.faq__item {
		padding: 16px;
	}
}
.faq .faq__item.active {
	border-color: #000000;
}
.faq__item-head {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
	cursor: pointer;
}
.faq__item-title {
	font-size: 18px;
	font-weight: 400;
	line-height: 22px;
	text-align: left;
}
@media (max-width: 991px) {
	.faq__item-title {
		font-size: 16px;
		font-weight: 400;
		line-height: 20px;
		text-align: left;
	}
}
.faq__item-plus {
	display: inline-block;
}
.faq__item-head:hover > .faq__item-plus {
	animation: spin 0.5s ease-in-out;
}
@keyframes spin {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(-180deg); /* 3 оберти */
	}
}

.faq__item-minus {
	display: none;
}
.faq__item-body {
	overflow: hidden;
	max-height: 0;
}
.faq__item-text {
	padding-top: 8px;
	font-size: 14px;
	font-weight: 400;
	line-height: 20px;
	text-align: left;
}

.advantages {
	padding-top: 80px;
	padding-bottom: 80px;
	background-color: #a1a897;
}
@media (max-width: 991px) {
	.advantages {
		padding-top: 40px;
		padding-bottom: 40px;
	}
}
@media (max-width: 1440px) {
	.advantages .container {
		padding-right: 0;
	}
}
.advantages .title {
	width: 873px;
	color: #ffffff;
}
@media (max-width: 1440px) {
	.advantages .title {
		padding-right: 40px;
		width: 100%;
	}
}
@media (max-width: 991px) {
	.advantages .title {
		padding-right: 16px;
	}
}
.advantages .title__top {
	color: #ffffff;
	white-space: nowrap;
}
.advantages .title__top span {
	background-color: #ffffff;
}
.advantages__slide {
	position: relative !important;
	height: 624px;
	overflow: hidden;
}
.advantages__slide img {
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
.advantages__slide:hover img {
	transform: scale(1.1);
}
@media (max-width: 1440px) {
	.advantages__slide {
		height: 560px;
	}
}
@media (max-width: 1024px) {
	.advantages__slide {
		height: 392px;
	}
}
@media (max-width: 991px) {
	.advantages__slide {
		height: 336px;
	}
}
.advantages__slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.advantages__slide-name {
	position: absolute;
	left: 24px;
	bottom: 24px;
	z-index: 9;
	width: calc(100% - 48px);
	padding: 8px 12px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-family: 'B52', serif;
	font-size: 28px;
	font-weight: 400;
	line-height: 24px;
	text-align: left;
	background: #ffffff;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
.advantages__slide-name:before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 0;
	height: 100%;
	background-color: #000000;
	opacity: 0;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
	z-index: -1;
}
.advantages__slide:hover .advantages__slide-name:before {
	width: 100%;
	opacity: 1;
}
.advantages__slide:hover .advantages__slide-name {
	color: #ffffff;
}
@media (max-width: 991px) {
	.advantages__slide-name {
		font-size: 32px;
		font-weight: 400;
		line-height: 28px;
		text-align: left;
	}
}
.advantages .swiper-pagination {
	margin-top: 40px;
	position: static;
	height: 2px;
	background: rgba(255, 255, 255, 0.08);
}
@media (max-width: 1440px) {
	.advantages .swiper-pagination {
		width: calc(100% - 40px);
	}
}
@media (max-width: 1024px) {
	.advantages .swiper-pagination {
		width: calc(100% - 16px);
	}
}
@media (max-width: 991px) {
	.advantages .swiper-pagination {
		margin-top: 20px;
	}
}
.advantages .swiper-pagination-progressbar-fill {
	background-color: #ffffff;
	opacity: 0.4;
}

.gallery {
	padding-top: 80px;
	padding-bottom: 80px;
}
@media (max-width: 991px) {
	.gallery {
		padding-top: 40px;
		padding-bottom: 40px;
	}
}
.gallery__content {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	gap: 4px;
	flex-wrap: wrap;
}
.gallery__content a {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 364px;
	height: 364px;
	overflow: hidden;
}
@media (max-width: 1440px) {
	.gallery__content a {
		width: 336px;
		height: 336px;
	}
}
@media (max-width: 1024px) {
	.gallery__content a {
		width: 233px;
		height: 233px;
	}
}
@media (max-width: 991px) {
	.gallery__content a {
		width: 116px;
		height: 116px;
	}
}
.gallery__content a .photo {
	width: 100%;
	height: 100%;
	object-fit: cover;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
.gallery__content a:hover .photo {
	transform: scale(1.1);
}

.gallery__content a:hover .zoom {
	opacity: 1;
}

.gallery__content a .zoom {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 36px;
	height: 36px;
	opacity: 0;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}

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

.map {
	position: relative;
	width: 100%;
	height: 500px;
}
@media (max-width: 991px) {
	.map {
		height: auto;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		gap: 0;
	}
}
.map iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
@media (max-width: 991px) {
	.map iframe {
		position: static;
		width: 100%;
		height: 384px;
	}
}
.map .container {
	height: 100%;
	display: flex;
	flex-direction: row;
	justify-content: flex-end;
	align-items: center;
	gap: 0;
}
@media (max-width: 991px) {
	.map .container {
		height: auto;
		padding: 0;
	}
}
.map__block {
	position: relative;
	top: 0;
	right: 0;
	z-index: 9;
	width: 360px;
	height: 460px;
	padding: 40px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: flex-start;
	gap: 0;
	background: #a1a897;
}
@media (max-width: 991px) {
	.map__block {
		width: 100%;
		height: 384px;
		padding: 28px;
	}
}
.map__block-title {
	color: #ffffff;
	font-family: 'B52', serif;
	font-size: 40px;
	font-weight: 400;
	line-height: 36px;
	text-align: left;
}
.map__block-list {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	gap: 20px;
}
.map__block-item {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	gap: 20px;
}
.map__block-item a {
	color: #ffffff;
	font-size: 16px;
	font-weight: 400;
	line-height: 20px;
	text-align: left;
}
.map__block-btn {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 8px 12px;
	color: #000000;
	font-family: 'B52', serif;
	font-size: 20px;
	font-weight: 400;
	line-height: 24px;
	text-align: left;
	background: #ffffff;
	border: 1px solid #000000;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
.map__block-btn > span {
	position: relative;
	z-index: 2;
}
.map__block-btn::after {
	content: '';
	position: absolute;
	left: 0;
	left: 0;
	width: 0;
	height: 100%;
	background: #000000;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
	opacity: 0;
}
.map__block-btn:hover::after {
	width: 100%;
	opacity: 1;
}
.map__block-btn:hover {
	color: #ffffff;
}
@media (max-width: 991px) {
	.map__block-btn {
		width: 100%;
	}
}
.map__block-socials {
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	gap: 20px;
}
.map__block-social {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 32px;
	height: 32px;
	background: rgba(0, 0, 0, 0.32);
}

.footer {
	padding-top: 40px;
	padding-bottom: 40px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 20px;
}
.footer__logo {
	width: 156px;
	height: 52px;
}
.footer__text {
	color: #a7a7a7;
	font-size: 14px;
	font-weight: 400;
	line-height: 18px;
	text-align: center;
}
.footer__nav {
	width: 100%;
	border-top: 1px solid rgba(0, 0, 0, 0.12);
	padding-top: 20px;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 40px;
	padding-bottom: 20px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}
@media (max-width: 991px) {
	.footer__nav {
		display: flex;
		flex-direction: row;
		justify-content: center;
		align-items: center;
		gap: 20px;
		flex-wrap: wrap;
	}
}
.footer__nav a {
	font-size: 16px;
	font-weight: 400;
	line-height: 20px;
	text-align: left;
}
.footer__payment {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 12px;
}
.footer__payment-item {
	display: flex;
	justify-content: center;
	align-items: center;
}
.footer__privacy {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 40px;
}
@media (max-width: 991px) {
	.footer__privacy {
		flex-direction: column;
		gap: 12px;
	}
}
.footer__privacy-link {
	font-size: 13px;
	font-weight: 400;
	line-height: 15px;
	text-align: left;
}
.footer__copyright {
	color: #a7a7a7;
	font-size: 13px;
	font-weight: 400;
	line-height: 15px;
	text-align: center;
}

body.modal-open {
	overflow: hidden; /* блокує скрол */
}

.modal {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.8);
	display: none;
	align-items: center;
	justify-content: center;
	z-index: 1000;
}
.modal.active {
	display: flex;
}
.modal__close {
	position: absolute;
	top: 40px;
	right: 40px;
	cursor: pointer;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
@media (max-width: 991px) {
	.modal__close {
		right: 20px;
	}
}
.modal__content {
	position: relative;
	background: #ffffff;
	max-width: 800px;
	width: 100%;
	max-height: 840px;
	overflow: auto;
}
@media (max-width: 991px) {
	.modal__content {
		max-width: 100%;
	}
}
.modal__body {
	padding: 40px;
	text-transform: uppercase;
	font-size: 16px;
	font-weight: 400;
	line-height: 20px;
}
@media (max-width: 991px) {
	.modal__body {
		padding: 20px;
		font-size: 13px;
		font-weight: 400;
		line-height: 15px;
	}
}
.modal__body-title {
	font-family: 'B52', serif;
	font-size: 40px;
	font-weight: 400;
	line-height: 36px;
	text-align: left;
	margin-bottom: 8px;
}
@media (max-width: 991px) {
	.modal__body-title {
		font-size: 32px;
		font-weight: 400;
		line-height: 28px;
		text-align: left;
	}
}
/* .modal__info {
	max-height: 300px;
	overflow: auto;
}
@media (max-width: 480px) {
	.modal__info {
		max-height: 200px;
		overflow: auto;
	}
} */
.modal__text > ul {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.modal__text > ul.list-with-icon {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 20px;
}
.modal__text > ul > li:not(.item-with-icon) {
	margin-left: 20px;
	list-style-type: disc;
}
.modal__text > ul > .item-with-icon {
	display: flex;
	align-items: center;
	gap: 5px;
}
.modal__body-list {
	margin-top: 8px;
	display: flex;
	flex-direction: row;
	justify-content: flex-start;
	align-items: center;
	gap: 6px;
	margin-bottom: 12px;
}
.modal__body-item {
	color: #a7a7a7;
	font-size: 14px;
	font-weight: 400;
	line-height: 20px;
	text-align: left;
}
@media (max-width: 991px) {
	.modal__body-item {
		font-size: 13px;
		font-weight: 400;
		line-height: 18px;
		text-align: left;
	}
}
.modal__body-btn {
	position: relative;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 7px 15px;
	color: #ffffff;
	font-family: 'B52', serif;
	font-size: 20px;
	font-weight: 400;
	line-height: 20px;
	text-align: left;
	background: #a1a897;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
.modal__body-btn > span {
	position: relative;
	z-index: 2;
}
.modal__body-btn::after {
	content: '';
	position: absolute;
	left: 0;
	left: 0;
	width: 0;
	height: 100%;
	background: #000000;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
	opacity: 0;
}
.modal__body-btn:hover::after {
	width: 100%;
	opacity: 1;
}
.modal__swiper {
	position: relative;
	max-height: 520px;
}
@media (max-width: 1440px) {
	.modal__swiper {
		height: 420px;
	}
}
@media (max-width: 991px) {
	.modal__swiper {
		height: 320px;
	}
}
.modal__swiper-prev {
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	display: flex;
	justify-content: center;
	align-items: center;
	width: 48px;
	height: 48px;
	padding: 14px;
	background: #ffffff;
	z-index: 2;
}
@media (max-width: 991px) {
	.modal__swiper-prev {
		display: none;
	}
}
.modal__swiper-next {
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	display: flex;
	justify-content: center;
	align-items: center;
	width: 48px;
	height: 48px;
	padding: 14px;
	background: #ffffff;
	z-index: 2;
}
@media (max-width: 991px) {
	.modal__swiper-next {
		display: none;
	}
}
.modal__swiper-pagination {
	display: none;
}
@media (max-width: 991px) {
	.modal__swiper-pagination {
		width: fit-content !important;
		position: absolute;
		bottom: 4px;
		left: 50% !important;
		transform: translateX(-50%) !important;
		display: flex;
		flex-direction: row;
		justify-content: center;
		align-items: center;
		gap: 12px;
		padding: 8px 12px;
		background: #000000;
		z-index: 2;
	}
}
.modal .swiper-pagination-bullet {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 24px;
	height: 2px;
	border-radius: 0;
	opacity: 0.4;
	background: #a1a897;
	margin: 0 !important;
}
.modal .swiper-pagination-bullet-active {
	opacity: 1;
	background: #ffffff;
}
.modal .swiper-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* graviti forms */
.gform_heading {
	display: none !important;
}

input[type='submit'] {
	display: flex !important;
	justify-content: center !important;
	align-items: center !important;
	padding: 8px 12px !important;
	color: #ffffff !important;
	font-family: 'B52', serif !important;
	font-size: 20px !important;
	font-weight: 400 !important;
	line-height: 24px !important;
	text-align: left !important;
	background: #a1a897 !important;
	border: 1px solid #a1a897 !important;
	-webkit-transition: all 0.3s ease-out !important;
	-moz-transition: all 0.3s ease-out !important;
	-o-transition: all 0.3s ease-out !important;
	transition: all 0.3s ease-out !important;
}
input[type='submit']:hover {
	color: #a1a897 !important;
	background: #ffffff !important;
}
@media (max-width: 991px) {
	input[type='submit'] {
		width: 100% !important;
	}
}
.gform-field-label {
	font-size: 16px !important;
	font-weight: 400 !important;
	line-height: 20px !important;
	text-align: left !important;
}
.gfield_description {
	font-size: 14px !important;
	font-weight: 400 !important;
	line-height: 16px !important;
	text-align: left !important;
}
.gform-theme--foundation .gform_fields {
	grid-row-gap: 12px !important;
}
.gform_confirmation_message {
	align-items: center !important;
	font-family: 'B52', serif !important;
	font-size: 28px !important;
	font-weight: 400 !important;
	line-height: 24px !important;
	text-align: center !important;
}
.custom-confirmation > h2 {
	align-items: center !important;
	font-family: 'B52', serif !important;
	font-size: 28px !important;
	font-weight: 400 !important;
	line-height: 24px !important;
	text-align: center !important;
	margin-bottom: 12px !important;
}
.custom-confirmation > p {
	font-size: 16px !important;
	font-weight: 400 !important;
	line-height: 18px !important;
	text-align: center !important;
}
