.site-language-switcher {
	font-size: 1.3rem;
	position: relative;
	text-transform: uppercase;
}
.site-language-switcher__select {
	cursor: pointer;
	display: inline-flex;
	position: relative;
}
.site-language-switcher__select > span {
	text-decoration: underline;
}
.site-language-switcher__select:hover .site-language__list {
	opacity: 1;
	pointer-events: all;
	transform: translateY(0) translate(-1rem);
}
.site-language-switcher li {
	display: flex;
}
.site-language-switcher .site-language__list {
	background-color: #fff;
	display: grid;
	gap: 0;
	left: 0;
	min-width: 100%;
	opacity: 0;
	padding-top: 0.5rem;
	pointer-events: none;
	position: absolute;
	top: 100%;
	transform: translateY(-0.5rem) translate(-1rem);
	transition: all 0.3s;
}
.site-language-switcher .site-language__list li a {
	background-color: #fff;
	padding: 0.25rem 2rem 0.25rem 1rem;
	text-decoration: none;
}
.site-language-switcher .site-language__list li a:hover {
	text-decoration: underline;
}
.site-language__list {
	display: inline-flex;
	flex-wrap: wrap;
	gap: 0.8rem;
}
.site-language__list li > * {
	display: block;
	padding: 0.5rem;
}
.site-language__list a {
	text-decoration: underline;
}
.no-scroll {
	overflow: hidden;
}
.hotel-menu {
	--menu-max-width: 43rem;
	--menu-bg: #fff;
	--menu-inline-padding: 3.5rem;
	--submenu-bg: #fbf6f1;
}
@media (min-width: 990px) {
	.hotel-menu {
		--menu-inline-padding: 3.5rem;
	}
}
.hotel-menu__details.--open .hotel-menu__layer {
	transform: translate(0);
}
.hotel-menu__details.--open .hotel-menu__summary:after {
	opacity: 1;
	pointer-events: all;
}
.hotel-menu__details.--open .hotel-menu__close {
	opacity: 1;
	pointer-events: all;
	transition: opacity 0.3s 0.2s;
}
.hotel-menu__summary {
	line-height: 0;
}
.hotel-menu__summary:after {
	background-color: #37373773;
	content: '';
	height: 100%;
	left: 0;
	opacity: 0;
	pointer-events: none;
	position: fixed;
	top: 0;
	transition: opacity 0.3s;
	width: 100%;
}
.hotel-menu__burger {
	--burger-padding: 1.25rem;
	padding: var(--burger-padding);
	transform: translate(calc(var(--burger-padding) * -1));
	transition: 0.3s;
	width: 5rem;
}
@media (min-width: 990px) {
	.hotel-menu__burger {
		--burger-padding: 1rem;
	}
}
.hotel-menu__close {
	--close-icon-size: 7rem;
	display: grid;
	grid-template: 1fr/1fr;
	height: var(--close-icon-size);
	left: min(
		100% - var(--close-icon-size),
		var(--menu-max-width) - var(--close-icon-size)
	);
	opacity: 0;
	padding: 2.2rem;
	place-items: center;
	pointer-events: none;
	position: fixed;
	top: 0;
	transform: translate(-1rem);
	transition: none;
	width: var(--close-icon-size);
	z-index: 5;
}
.hotel-menu__close:after,
.hotel-menu__close:before {
	background-color: currentColor;
	content: '';
	display: block;
	grid-area: 1/1/2/2;
	height: 0.1rem;
	width: 100%;
}
.hotel-menu__close:before {
	transform: rotate(45deg);
}
.hotel-menu__close:after {
	transform: rotate(-45deg);
}
.hotel-menu__layer {
	height: 100vh;
	height: 100dvh;
	max-width: var(--menu-max-width);
	padding-top: 1.8rem;
	position: fixed;
	transform: translate(-100%);
	transition: transform 0.3s;
}
.hotel-menu__layer,
.hotel-menu__layer:after {
	background-color: var(--menu-bg);
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
}
.hotel-menu__layer:after {
	content: '';
	height: 100%;
	z-index: -1;
}
.hotel-menu__layer.--group:after {
	border-left: 1.8rem solid var(--accent-color);
}
.hotel-menu__menus {
	display: grid;
	gap: 2.5rem;
	margin-top: 2rem;
}
.hotel-menu__scroll {
	height: calc(100svh - 5.2rem);
	overflow-y: auto;
}
.hotel-menu__container {
	padding-inline: calc(var(--menu-inline-padding) + 1.8rem)
		var(--menu-inline-padding);
}
.hotel-menu__pattern {
	height: 100%;
	left: 0;
	position: fixed;
	top: 0;
	width: 1.8rem;
	z-index: 1;
}
.hotel-menu__primary {
	display: grid;
	gap: 1rem;
}
.hotel-menu__primary > li:not(.hotel-menu__booking) > button {
	background: transparent;
	border: 0;
	cursor: pointer;
	padding: 0;
}
.hotel-menu__primary > li:not(.hotel-menu__booking) > a,
.hotel-menu__primary > li:not(.hotel-menu__booking) > button,
.hotel-menu__primary > li:not(.hotel-menu__booking) > span {
	color: rgb(var(--primary-color));
	font-family: var(--heading-font);
	font-size: 2.8rem;
	line-height: 1.5;
	text-decoration: none;
}
.hotel-menu__primary > li:not(.hotel-menu__booking) > a:hover,
.hotel-menu__primary > li:not(.hotel-menu__booking) > button:hover,
.hotel-menu__primary > li:not(.hotel-menu__booking) > span:hover {
	text-decoration: underline;
}
.hotel-menu__secondary {
	border-top: 0.1rem solid rgba(var(--primary-color), 0.1);
	display: grid;
	gap: 0.8rem;
	padding-top: 2.5rem;
}
.hotel-menu__secondary a,
.hotel-menu__secondary span {
	font-size: 1.3rem;
	text-decoration: none;
	text-transform: uppercase;
}
.hotel-menu__item.--open > .hotel-menu__parent,
.hotel-menu__secondary a:hover {
	text-decoration: underline;
}
.hotel-menu__item.--open .hotel-menu__sub {
	transform: translateY(0);
}
.hotel-menu__booking {
	margin-block: 1.5rem;
}
.hotel-menu__booking .button {
	width: 100%;
}
@media (min-width: 768px) {
	.hotel-menu__booking {
		display: none;
	}
}
.hotel-menu__link {
	transition: all 0.3s;
}
.hotel-menu__blazon {
	display: flex;
	height: 3.4rem;
	position: relative;
	width: 3.4rem;
}
.hotel-menu__blazon svg path {
	fill: currentColor;
}
.hotel-menu__blazon > * {
	height: 100%;
	-o-object-fit: contain;
	object-fit: contain;
	width: 100%;
}
.hotel-menu__parent {
	align-items: center;
	background: transparent;
	border: 0;
	color: rgb(var(--primary-color));
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	padding: 0;
	text-align: left;
	width: 100%;
}
.hotel-menu__parent:after {
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='19' height='19' fill='none' viewBox='0 0 19 19'%3E%3Cpath stroke='%23373737' d='m7.74 15.481 4.223-6.333L7.74 2.815'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-size: contain;
	content: '';
	display: block;
	height: 1.9rem;
	transition: transform 0.3s;
	width: 1.9rem;
}
.hotel-menu__language {
	display: flex;
}
.hotel-menu__language .site-language-switcher:hover span:after {
	transform: rotate(180deg);
}
.hotel-menu__language .site-language-switcher span {
	align-items: center;
	display: flex;
	position: relative;
}
.hotel-menu__language .site-language-switcher span:after {
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15' height='15' fill='none' viewBox='0 0 15 15'%3E%3Cpath stroke='%23373737' d='m2.777 6.111 5 3.333 5-3.333'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-size: contain;
	content: '';
	display: block;
	height: 1.5rem;
	margin-left: 0.5rem;
	transition: transform 0.3s;
	width: 1.5rem;
}
.hotel-menu__language .site-language-switcher .site-language__list {
	transform: translateY(-0.5rem) translate(-1rem);
}
.hotel-menu__sub {
	background-color: var(--submenu-bg);
	height: 100dvh;
	left: 0;
	max-width: var(--menu-max-width);
	overflow-y: auto;
	padding: 0 2.5rem 10rem;
	position: absolute;
	top: 0;
	transform: translate(-100%);
	transition: transform 0.3s;
	width: 100%;
	z-index: 2;
}
@media (min-width: 990px) {
	.hotel-menu__sub {
		left: 100%;
		padding: 10rem 5rem;
		z-index: -1;
	}
}
.hotel-menu__sub.--open {
	transform: translate(0);
}
.hotel-menu__sub .button {
	margin-top: 4rem;
}
.hotel-menu__sub__header {
	background: var(--submenu-bg);
	border-bottom: 0.1rem solid rgba(0, 0, 0, 0.2);
	margin-bottom: 3rem;
	padding-block: 2.5rem;
}
@media (min-width: 990px) {
	.hotel-menu__sub__header {
		display: none;
	}
}
.hotel-menu__sub__header button {
	align-items: center;
	background: transparent;
	border: 0;
	border-radius: 0;
	color: rgb(var(--primary-color));
	cursor: pointer;
	display: flex;
	font-size: 1.3rem;
	font-weight: 500;
	gap: 1rem;
	letter-spacing: 0.02em;
	line-height: 1.8rem;
	padding: 0;
	text-transform: uppercase;
}
.hotel-menu__sub__header button:before {
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='8' fill='none' viewBox='0 0 4 8'%3E%3Cpath fill='%23373737' fill-rule='evenodd' d='M0 3.642 2.185 0l1.03.617-1.816 3.025 1.815 3.025-1.029.617z' clip-rule='evenodd'/%3E%3C/svg%3E");
	background-position: 50%;
	background-repeat: no-repeat;
	background-size: contain;
	content: '';
	display: block;
	height: 0.8rem;
	width: 0.4rem;
}
.hotel-menu__sub__title {
	margin-bottom: 4rem;
}
.hotel-menu__sub__title a {
	align-items: center;
	background: transparent;
	border: 0;
	color: rgb(var(--primary-color));
	cursor: pointer;
	display: flex;
	font-size: 1.8rem;
	font-weight: 500;
	letter-spacing: 0.1rem;
	padding: 0;
	text-decoration: none;
	text-transform: uppercase;
	width: 100;
}
@media (min-width: 990px) {
	.hotel-menu__sub__title a {
		font-size: 1.4rem;
	}
}
.hotel-menu__sub__menu {
	display: grid;
	gap: 1.3rem;
	grid-template-rows: max-content;
	text-transform: uppercase;
}
.hotel-menu__sub__menu a {
	font-size: 1.3rem;
	font-weight: 400;
	text-decoration: none;
}
.hotel-menu__sub__menu a:hover {
	text-decoration: underline;
}
.hotel-menu__sub__name {
	display: block;
	font-size: 1.4rem;
	font-weight: 400;
	text-transform: none;
}
.hotel-menu__sub__country {
	color: rgba(var(--primary-color), 0.6);
	font-size: 1rem;
	font-weight: 500;
	text-transform: uppercase;
}
.hotel-menu__sub__hotelsList a {
	display: grid;
}
.hotel-menu__sub__hotelsList a:hover {
	text-decoration: none;
}
.hotel-menu__sub__hotelsList a:hover .hotel-menu__sub__name {
	text-decoration: underline;
}
.hotel-menu__special {
	background-color: var(--submenu-bg);
	border-right: 0.1rem solid #fff;
	margin-bottom: 3rem;
}
.hotel-menu__special .hotel-menu__item.--open .hotel-menu__parent {
	text-decoration: none;
}
.hotel-menu__special .hotel-menu__item .hotel-menu__parent {
	font-size: 1.2rem;
	padding-block: 2.4rem;
	text-transform: uppercase;
}
.hotel-menu__special .hotel-menu__item .hotel-menu__parent strong {
	display: block;
	font-size: 1.5rem;
	font-weight: 500;
	letter-spacing: 0.06rem;
}
html:not(.js) .hotel-menu__details[open] .hotel-menu__layer {
	transform: translate(0);
}
html:not(.js) .hotel-menu__details[open] .hotel-menu__close,
html:not(.js) .hotel-menu__details[open] .hotel-menu__summary:after {
	opacity: 1;
	pointer-events: all;
}
.site-header {
	background-color: #fff;
	border-bottom: 0.1rem solid #d7d7d7;
	position: sticky;
	top: 0;
	transition: transform 0.3s;
	z-index: 5;
}
.site-header.hide {
	transform: translateY(-100%);
}
.site-header:has(~ main > .hotel-hero:first-child) {
	left: 0;
	position: fixed;
	transition: 0.3s;
	width: 100%;
}
.site-header:has(~ main > .hotel-hero:first-child):not(.scrolled) {
	background-color: transparent;
	border-color: transparent;
}
.site-header:has(~ main > .hotel-hero:first-child):not(.scrolled)
	.hotel-menu__burger,
.site-header:has(~ main > .hotel-hero:first-child):not(.scrolled)
	.site-header__homepage {
	color: #fff;
}
.site-header:has(~ main > .hotel-hero:first-child):not(.scrolled)
	.site-booking
	.button {
	background-color: transparent;
	border-color: #fff;
}
.site-header:has(~ main > .hotel-hero:first-child):not(.scrolled)
	.site-booking
	.button:hover {
}
.site-header.--open-modal {
	background: none;
	border-bottom: none;
	pointer-events: none;
	transform: translateY(0);
}
.site-header.--open-modal .container {
	justify-content: center;
}
@media (min-width: 768px) {
	.site-header.--open-modal .container {
		min-height: 8rem;
	}
}
.site-header.--open-modal .hotel-menu,
.site-header.--open-modal .site-booking {
	display: none;
}
.site-header__container {
	align-items: center;
	display: flex;
	gap: 1rem;
	justify-content: space-between;
	min-height: 6.2rem;
	padding-block: 0.5rem;
	transition: all 0.3s;
}
.site-header__homepage {
	display: block;
	line-height: 0;
	transition: 0.3s;
}
.hotel-menu,
.site-booking {
	flex: 1;
}
.site-booking {
	text-align: right;
}
@media (max-width: 767px) {
	.site-booking .site-booking-button {
		display: none;
	}
}
.site-booking__mobile {
	background: linear-gradient(180deg, #fff0 10%, #fffc 80%);
	bottom: 0;
	left: 0;
	padding: 1rem;
	position: fixed;
	transition: transform 0.3s;
	width: 100%;
	z-index: 4;
}
@media (min-width: 768px) {
	.site-booking__mobile {
		display: none;
	}
}
.site-booking__mobile .button {
	justify-content: center;
	text-align: center;
	width: 100%;
}
.site-booking__mobile .button.--primary .button__content {
	padding-block: 1.5rem;
}
.hotel-list {
	padding-inline: 1.5rem;
}
@media (min-width: 1200px) {
	.hotel-list {
		padding-inline: 2rem;
	}
}
.hotel-list__card {
	position: relative;
	text-align: center;
}
.hotel-list__card__link {
	align-items: center;
	display: flex;
	justify-content: center;
	margin-top: 2rem;
	padding-bottom: 3px;
}
.hotel-list__card__link:after {
	content: ' ';
	inset: 0;
	position: absolute;
}
.hotel-list__card__link svg {
	display: block;
	height: auto;
	max-width: 100%;
	width: 100%;
}
@media (max-width: 1199px) {
	.hotel-list__card__link svg {
		max-height: 2.5rem;
	}
}
@media (max-width: 989px) {
	.hotel-list__card__link svg {
		max-height: 2rem;
	}
}
.hotel-list.swiper:not(.swiper-initialized) .swiper-wrapper {
	gap: 1rem;
	justify-content: center;
}
.hotel-list.swiper:not(.swiper-initialized) .swiper-wrapper .swiper-slide {
	width: 76.9230769231%;
}
@media (min-width: 375px) {
	.hotel-list.swiper:not(.swiper-initialized) .swiper-wrapper .swiper-slide {
		width: 58.8235294118%;
	}
}
@media (min-width: 600px) {
	.hotel-list.swiper:not(.swiper-initialized) .swiper-wrapper .swiper-slide {
		width: 40%;
	}
}
@media (min-width: 768px) {
	.hotel-list.swiper:not(.swiper-initialized) .swiper-wrapper .swiper-slide {
		width: 28.5714285714%;
	}
}
@media (min-width: 990px) {
	.hotel-list.swiper:not(.swiper-initialized) .swiper-wrapper .swiper-slide {
		width: 26.3157894737%;
	}
}
@media (min-width: 1200px) {
	.hotel-list.swiper:not(.swiper-initialized) .swiper-wrapper .swiper-slide {
		width: 22.2222222222%;
	}
}
@media (min-width: 1560px) {
	.hotel-list.swiper:not(.swiper-initialized) .swiper-wrapper .swiper-slide {
		width: 18.1818181818%;
	}
}
@media (min-width: 1800px) {
	.hotel-list.swiper:not(.swiper-initialized) .swiper-wrapper .swiper-slide {
		width: 15.3846153846%;
	}
}
.site-footer-social__list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.site-footer-social__list:hover .site-footer-social__link {
	opacity: 0.3;
}
.site-footer-social__list:hover .site-footer-social__link:hover {
	opacity: 1;
	transform: translateY(-0.3rem);
}
.site-footer-social__link {
	display: block;
	line-height: 0;
	opacity: 0;
	padding: 0.5rem;
	transform: translateY(1rem);
	transition: all 0.3s;
}
.site-footer-social__link.visible {
	opacity: 1;
	transform: translateY(0);
}
.site-footer-social__icon {
	width: 3rem;
}
.site-footer-social__logo {
	display: block;
	margin-top: 3rem;
	margin-inline: auto;
	max-width: min(26rem, 100%);
}
@media (min-width: 768px) {
	.site-footer-social__logo {
		max-width: min(36rem, 100%);
	}
}
.site-footer-bottom {
	background-color: #fff;
	margin-top: var(--footer-spacing);
}
.site-footer-bottom .container {
	display: grid;
	gap: 2rem;
}
@media (min-width: 990px) {
	.site-footer-bottom .container {
		gap: 4rem;
	}
}
.site-footer-grid {
	display: grid;
	gap: 4rem;
	width: 100%;
}
@media (min-width: 990px) {
	.site-footer-grid {
		align-items: start;
		display: flex;
		gap: 1.5rem;
	}
}
.site-footer-grid__title {
	align-items: center;
	display: flex;
	font-size: 1.8rem;
	font-weight: 500;
	justify-content: space-between;
	text-transform: uppercase;
}
.site-footer-grid__left {
	display: grid;
	flex: 2;
	gap: 1.5rem;
}
@media (max-width: 989px) {
	.site-footer-grid__left {
		white-space: normal;
	}
}
.site-footer-grid__menu {
	align-items: start;
	background: transparent;
	border: 0;
	display: grid;
	flex: 1;
	gap: 1.5rem;
	padding: 0;
	text-align: left;
}
.site-footer-grid__menu .site-footer-grid__title {
	background: transparent;
	border: 0;
	color: rgb(var(--primary-color));
	display: flex;
	padding: 0;
	text-align: left;
}
@media (max-width: 989px) {
	.site-footer-grid__menu .site-footer-grid__title {
		cursor: pointer;
		-webkit-user-select: none;
		-moz-user-select: none;
		user-select: none;
	}
	.site-footer-grid__menu .site-footer-grid__title:after {
		background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='19' fill='none' viewBox='0 0 18 19'%3E%3Cpath stroke='%23373737' d='m3.333 7.506 6 4 6-4'/%3E%3C/svg%3E");
		background-repeat: no-repeat;
		background-size: contain;
		content: '';
		height: 1.8rem;
		margin-left: 0.5rem;
		transition: transform 0.3s;
		width: 1.8rem;
	}
	.site-footer-grid__menu .site-footer-grid__title.--open:after {
		transform: rotate(180deg);
	}
}
.site-footer-grid__menu a {
	font-size: 1.3rem;
	text-decoration: none;
	text-transform: uppercase;
}
.site-footer-grid__menu a:hover {
	text-decoration: underline;
}
@media (max-width: 989px) {
	.site-footer-grid__menu ul.--hidden {
		display: none;
	}
}
@media (max-width: 767px) {
	.site-footer-grid__list li:not(:last-child) {
		margin-bottom: 0.8rem;
	}
}
.site-footer-copyright {
	border-top: 0.1rem solid #d7d7d7;
	display: flex;
	flex-direction: column;
	font-size: 1rem;
	font-weight: 500;
	gap: 1rem;
	line-height: 1.5;
	padding: 2rem 0 4rem;
}
@media (min-width: 990px) {
	.site-footer-copyright {
		flex-direction: row;
		justify-content: space-between;
		padding-top: 4rem;
	}
}
.site-footer {
	--footer-spacing: 5.5rem;
	--footer-padding-bottom: 4rem;
	background-color: rgb(var(--secondary-color));
	display: flex;
	flex-direction: column;
	position: relative;
}
@media (min-width: 768px) {
	.site-footer {
		--footer-spacing: 6.5rem;
	}
}
@media (min-width: 990px) {
	.site-footer {
		--footer-spacing: 7.5rem;
		--footer-padding-bottom: 6rem;
	}
}
@media (min-width: 1200px) {
	.site-footer {
		--footer-spacing: 8.5rem;
	}
}
@media (min-width: 1560px) {
	.site-footer {
		--footer-spacing: 9.5rem;
	}
}
.site-footer > * {
	padding-top: var(--footer-spacing);
	width: 100%;
}
.site-footer-details {
	display: flex;
	flex-direction: column;
}
@media (min-width: 990px) {
	.site-footer-details {
		flex-direction: row;
		gap: 6rem;
	}
}
.site-footer-details__section {
	border-top: 0.1rem solid #d7d7d7;
	display: grid;
	flex: 1;
	grid-template-rows: repeat(3, auto);
	padding: 2.5rem;
	row-gap: 1rem;
}
@media (min-width: 768px) {
	.site-footer-details__section {
		-moz-column-gap: 3rem;
		column-gap: 3rem;
		grid-template-columns: 1fr auto;
		grid-template-rows: repeat(2, auto);
	}
}
@media (min-width: 1200px) {
	.site-footer-details__section {
		-moz-column-gap: 4rem;
		column-gap: 4rem;
		padding: 3.5rem 2rem;
	}
}
@media (min-width: 1560px) {
	.site-footer-details__section {
		-moz-column-gap: 6rem;
		column-gap: 6rem;
		padding: 5rem 3rem;
	}
}
.site-footer-details__title {
	font-size: 1.4rem;
	font-weight: 500;
	line-height: 1.11;
	text-transform: uppercase;
}
@media (min-width: 990px) {
	.site-footer-details__title {
		font-size: 1.8rem;
	}
}
.site-footer-details__link {
	align-self: center;
	justify-self: flex-start;
}
@media (min-width: 768px) {
	.site-footer-details__link {
		grid-column: 2;
		grid-row: 1/-1;
	}
}
.site-footer-pattern {
	height: 4rem;
	margin-top: 0;
	position: relative;
}
@media (min-width: 990px) {
	.site-footer-pattern {
		height: 6rem;
	}
}
.site-footer-pattern__image {
	inset: 0;
	-o-object-fit: contain;
	object-fit: contain;
	position: absolute;
}
@media (min-width: 990px) {
	.site-footer-pattern__image.--mobile {
		display: none;
	}
}
@media (max-width: 989px) {
	.site-footer-pattern__image.--desktop {
		display: none;
	}
}
