/* #region Variables */
:root {
    --main-primary-color: #051945;
    --main-accent-color: #b58b5b;

    --white-color: #fff;

    --header-color-normal: #00000073;
    --header-color-alter: var(--main-primary-color);
    --header-height: 80px;

    --padding-10: 10px;
    --padding-60: 60px;
}

/* #endregion */

/* #region Common */
* {
    font-family: 'Poppins', 'Ubuntu', sans-serif;
    color: var(--white-color);
}

::-webkit-scrollbar {
    background-color: #b58b5b;
    width: 5px;
}

::-webkit-scrollbar-track {
    background-color: #051945;
}

::-webkit-scrollbar-track:hover {
    background-color: #b58b5b;
}

::-webkit-scrollbar-thumb {
    background-color: #b58b5b;
    border-radius: 16px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #051945;
}

::-webkit-scrollbar-button {
    display: none;
}

body {
    background-color: var(--main-primary-color);
}

header {
    padding: 0 10px;
}

section:not(.head, .map),
header .content,
footer {
    max-width: 1920px;
    margin: 0 auto;
    padding-block: var(--padding-60);
}

section.head {
    margin-bottom: calc(var(--padding-60) / 2);
}

img {
    width: 100%;
    height: 100%;
}

:is(header, footer) svg {
    width: 26px;
    transition: fill 0.2s ease;
    fill: var(--white-color);
}

:is(header, footer) svg:hover {
    fill: var(--main-accent-color);
}

.social {
    display: flex;
    align-items: center;
    gap: 20px;
}

.title {
    font-size: min(100px, 10vw);
    color: #fff0;
    font-weight: 900;
    letter-spacing: 3px;
    line-height: 1;
    -webkit-text-stroke: 2px var(--main-accent-color);
    margin-bottom: 50px;
}

.title.title-center {
    text-align: center;
}

.title.title-left {
    text-align: left;
}

.title.title-right {
    text-align: right;
}

.preview_card {
    position: relative;
    height: 475px;
    transition: filter 0.2s ease;
}

.preview_card img {
    object-fit: cover;
}

.preview_card .preview_card-overlay {
    position: absolute;
    inset: 0;
    padding: 25px;
    color: var(--white-color);
    text-decoration: none;
    font-weight: 600;
}

.preview_card .preview_card-overlay::after,
.preview_card .preview_card-overlay::before {
    content: '';
    display: block;
    position: absolute;
    top: calc(0% + 10px);
    left: calc(0% + 10px);
    border-top: 2px solid var(--white-color);
    border-left: 2px solid var(--white-color);
    opacity: 0;
    width: 0;
    height: 0;
    transition: all 0.5s ease;
}

.preview_card .preview_card-overlay::before {
    top: unset;
    left: unset;
    bottom: calc(0% + 10px);
    right: calc(0% + 10px);
    transform: rotate(180deg);
}

.preview_card:hover .preview_card-overlay::after,
.preview_card:hover .preview_card-overlay::before {
    width: 50%;
    height: 50%;
    opacity: 1;
}

.swiper-pagination-bullet {
    width: 20px;
    height: 20px;
    border: 2px solid var(--white-color);
    opacity: 1;
    background: transparent;
}

.swiper-pagination-bullet-active {
    background: var(--main-accent-color);
}

.swiper-button-prev,
.swiper-button-next {
    all: unset;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    background: none;
    color: transparent;
}

:is(.swiper-button-prev, .swiper-button-next)::after {
    all: unset;
    content: '';
    position: absolute;
    display: block;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 150%;
}

:is(.swiper-button-prev, .swiper-button-next) svg {
    width: 40px;
    height: 40px;
    fill: var(--white-color);
}

.page_menu {
    padding-block: var(--padding-10);
}

.page_menu ul {
    --gap: 10px;

    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: var(--gap);
    flex-wrap: wrap;
}

.page_menu li {
    display: flex;
    gap: var(--gap);
}

.page_menu li:before {
    content: '»';
}

.page_menu li:first-child::before {
    content: unset;
}

.page_menu li a {
    color: var(--white-color);
    text-decoration: none;
    text-transform: capitalize;
    text-wrap: nowrap;
}

.page_menu li:last-child a {
    color: var(--main-accent-color);
}

.language_select_button,
.language_select_button:is(.show, :hover, :active, :focus-visible) {
    background: transparent !important;
    border: none !important;
}

.language_select_button + .dropdown-menu {
    min-width: unset;
}

.reservation_button {
    padding: 8px 15px;
    border: 1px solid var(--white-color);
    border-radius: 20px;
    color: var(--white-color);
    transition: background 0.2s ease-in-out, color 0.2s ease-in-out;
}

.reservation_button:hover {
    background: var(--white-color);
    color: var(--main-primary-color);
}

#offer_dialog {
    background: rgba(101, 47, 161, 1);
    background: linear-gradient(20deg, rgba(5, 25, 69, 1) -100%, rgba(101, 47, 161, 1) 20%, rgba(204, 138, 64, 1) 100%);
    border-radius: 10px;
    padding: 50px 20px 30px 20px;
    border: none;
    box-shadow: 0 10px 10px #0000002b;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

#offer_dialog::backdrop {
    background: #000000a8;
}

#offer_dialog.open {
    opacity: 1;
}

#offer_dialog.hide {
    opacity: 0;
}

#offer_dialog .offer_content {
    max-width: 500px;
    text-align: center;
    display: grid;
    gap: 20px;
    grid: auto / 1fr 1fr;
}

#offer_dialog h3 {
    grid-column: 1 / 3;
}

#offer_dialog h3 span {

}

#offer_dialog p {
    grid-column: 1 / 3;
}

#offer_dialog button.close {
    position: absolute;
    top: 10px;
    right: 15px;
    width: 25px;
    height: 25px;
    background: none;
    border: none;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

#offer_dialog button.close svg {
    width: 20px;
    height: 20px;
    fill: #fff;
}

@keyframes opacity_animation {
    0% {
        opacity: 0
    }
    100% {
        opacity: 1
    }
}

/* #endregion */

/* #region Header */
header {
    position: fixed;
    display: flex;
    align-items: center;
    width: 100%;
    top: 0;
    height: var(--header-height);
    background-color: var(--header-color-normal);
    transition: all 0.5s ease;
    z-index: 10;
}

header::after {
    content: '';
    position: absolute;
    display: block;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: var(--white-color);
    opacity: 0;
    transition: inherit;
}

header.active::after {
    opacity: 0.4;
}

header:is(.alter, .active) {
    background-color: var(--header-color-alter);
    box-shadow: 0 10px 10px #00000040;
}

header .content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-block: var(--padding-10);
    width: 100%;
}

.logo {
    display: block;
    max-height: 50px;
    max-width: 230px;
}

.logo > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

header ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 0;
    padding: 0;
}

header li {
    display: flex;
    align-items: center;
}

header ul a {
    color: var(--white-color);
    text-decoration: none;
    transition: color 0.5s ease;
}

header ul a:hover {
    color: var(--main-accent-color);
}

header .burger_menu {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-self: center;
    flex-direction: column;
    width: 25px;
    height: 18px;
    cursor: pointer;
    padding: 5px;
    box-sizing: content-box;
}

header .burger_menu::after {
    content: '';
    position: absolute;
    display: block;
    width: 150%;
    height: 150%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

header .burger_menu span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--white-color);
}

header .navigation ul li {
    transition: all 0.5s ease;
}

header.active .navigation ul li:not(.detail_required, .dropdown li) {
    opacity: 0;
    pointer-events: none;
    z-index: -1;
}

header .detailed_navigation {
    position: fixed;
    opacity: 0;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transition: all 0.5s ease;
    pointer-events: none;
    z-index: -1;
}

header .detailed_navigation:after {
    content: '';
    position: absolute;
    display: block;
    top: var(--header-height);
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--main-primary-color);
    z-index: -1;
}

header.active .detailed_navigation {
    opacity: 1;
    pointer-events: auto;
}

header.active.hide .detailed_navigation {
    opacity: 0;
}

header .detailed_navigation .wrapper {
    position: relative;
    display: grid;
    grid: auto / repeat(3, max-content);
    width: max-content;
    justify-content: center;
    align-items: flex-end;
    top: 50%;
    left: 50%;
    gap: 10vw;
    padding: 20px;
    transform: translate(-50%, -50%);
}

header .detailed_navigation ul {
    column-count: 3;
    column-gap: 20px;
    display: flex;
    flex-direction: column;
}

header .detailed_navigation a {
    display: block;
    font-size: 20px;
    font-weight: 500;
    text-transform: uppercase;
}

header address {
    max-width: 360px;
}

/* #endregion */

/* #region Head */
.head {
    height: 80vh;
}

.head .head_slider {
    height: 100%;
}

.head .head_slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* #endregion */

/* #region About */
.about .title {
    margin: 0 auto 35px auto;
    max-width: 1200px;
}

.about .descr_title {
    margin-bottom: 40px;
}

.about .pure_comfort {
    background: url('/app/assets/images/pure-comfort.jpg') center 37% / cover no-repeat;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: min(13vw, 250px);
    font-weight: 900;
    text-align: center;
    text-wrap: nowrap;
    white-space: nowrap;
}

/* #endregion */

/* #region Accommodation */
.accommodation .content {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.accommodation .accommodation_slider,
.detail_gallery .detail_slider {
    width: 90%;
    margin: 0;
}

.accommodation .accommodation_slider:hover .preview_card {
    filter: brightness(0.5);
}

.accommodation .accommodation_slider .preview_card:hover {
    filter: brightness(1);
}

/* #endregion */

/* #region Concepts */
.concepts .content {
    display: grid;
    grid: 180px / repeat(5, 1fr);
}

.concepts .concepts_block {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-direction: column;
    gap: 20px;
    text-decoration: none;
    cursor: pointer;
}

.concepts .concepts_block h5 {
    color: var(--white-color);
    letter-spacing: 2px;
    text-align: center;
}

.concepts .concepts_block img {
    display: block;
    object-fit: cover;
    width: unset;
    height: unset;
}

/* #endregion */

/* #region Services */
.services {
    --padding: 0 40px 10px 40px;
}

.services .content {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.services .preview_block {
    background-color: var(--main-accent-color);
    display: flex;
    align-items: flex-end;
    width: max-content;
    min-width: 350px;
    height: 550px;
    padding: var(--padding);
}

.services .preview_block img {
    position: absolute;
    top: 40px;
    width: 100%;
    height: 80%;
    object-fit: cover;
}

.services .preview_block a:not(.services_more) {
    font-size: 36px;
    font-weight: 600;
    color: var(--white-color);
    text-decoration: none;
}

.services .services_more {
    position: absolute;
    bottom: 0;
    right: 0;
    background-color: var(--main-accent-color);
    padding: var(--padding);
    height: 40%;
    display: flex;
    align-items: flex-end;
    z-index: -1;
}

.services a.services_more {
    font-size: 26px;
    font-weight: 600;
    color: var(--white-color);
    text-decoration: none;
}

/* #endregion */

/* #region Gallery Preview */
.gallery_preview {
    --offset: 5px;
    padding-inline: var(--offset);
}

.gallery_preview .collage {
    display: grid;
    grid: repeat(10, 80px) / repeat(16, 1fr);
    gap: var(--offset);
    margin: 0 auto;
}

.gallery_preview .collage img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.gallery_preview .collage_item:nth-child(1) {
    grid-area: 1 / 1 / 4 / 4;
}

.gallery_preview .collage_item:nth-child(2) {
    grid-area: 4 / 1 / 8 / 4;
}

.gallery_preview .collage_item:nth-child(3) {
    grid-area: 1 / 10 / 4 / 14;
}

.gallery_preview .collage_item:nth-child(4) {
    grid-area: 1 / 4 / 5 / 10;
}

.gallery_preview .collage_item:nth-child(5) {
    grid-area: 7 / 8 / 11 / 14;
}

.gallery_preview .collage_item:nth-child(6) {
    grid-area: 4 / 10 / 7 / 14;
}

.gallery_preview .collage_item:nth-child(7) {
    grid-area: 5 / 4 / 8 / 8;
}

.gallery_preview .collage_item:nth-child(8) {
    grid-area: 8 / 1 / 11 / 8;
}

.gallery_preview .collage_item:nth-child(9) {
    grid-area: 4 / 14 / 11 / 17;
}

.gallery_preview .collage_item:nth-child(10) {
    grid-area: 1 / 14 / 4 / 17;
}

.gallery_preview .collage_item:nth-child(11) {
    grid-area: 5 / 8 / 7 / 10;
}

.gallery_more {
    position: relative;
}

.gallery_more .more_overlay {
    position: relative;
    top: 0%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--main-primary-color);
    width: calc(100% + var(--offset) * 2);
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gallery_more .more_overlay img {
    width: calc(100% - var(--offset) * 1.5);
    height: auto;
    object-fit: cover;
}

.gallery_more span {
    position: absolute;
    bottom: 0;
    display: block;
    width: 100%;
    text-align: center;
    color: var(--main-accent-color);
    font-family: 'Allura', cursive;
    font-size: 28px;
    line-height: 28px;
}

/* #endregion */

/* #region Footer */
footer {
    position: relative;
    padding-bottom: calc(var(--padding-60) * 2);
}

footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

footer .logo {
    margin-bottom: 10px;
}

footer .logo_wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-size: 14px;
    font-weight: 300;
}

footer .contacts {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

footer .contacts a {
    color: var(--white-color);
    text-decoration: none;
}

footer address {
    margin: 0;
}

footer .contacts li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

footer .contacts svg {
    width: 16px;
}

footer .link_wrapper {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    gap: 20px;
}

footer .link_wrapper ul {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
}

footer .link_wrapper img {
    max-width: 140px;
}

footer .link_wrapper li a {
    color: var(--white-color);
    text-decoration: none;
}

footer .design_by {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 5px;
    margin: 0 auto;
}

footer .design_by svg {
    width: 120px;
}

/* #endregion */

/* #region Group */
.group .descr {
    margin-block: 30px;
}

.group .detail_card {
    position: relative;
    display: block;
    height: 460px;
    padding: 15px;
    text-decoration: none;
    overflow: hidden;
    margin-bottom: 20px;
}

.group .detail_card img {
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    filter: brightness(0.8);
    z-index: -1;
    transition: transform 0.2s ease, filter 0.2s ease;
}

.group .detail_card:hover img {
    transform: scale(1.1);
    filter: brightness(0.5);
}

.group .detail_card h5 {
    width: 100%;
    height: 100%;
    margin: 0;
}

.group .detail_card h5::after {
    content: attr(data-text);
    position: absolute;
    bottom: 10px;
    left: 0;
    width: inherit;
    transform: rotate(-90deg);
    transform-origin: 0 -12px;
    color: transparent;
    -webkit-text-stroke: 1px var(--white-color);
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 3px;
}

.group .detail_card span {
    position: absolute;
    bottom: 15px;
    right: 15px;
    letter-spacing: 5px;
    text-decoration: underline;
    text-underline-offset: 10px;
    text-underline-position: initial;
    text-transform: uppercase;
}

/* #endregion */

/* #region Campaign */
.campaign .detail_card {
    height: max-content;
}

.campaign .detail_card img {
    position: unset;
}

/* #endregion */

/* #region Detail */
.certificates .detail_card {
    --text-color: #545454;

    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    height: 200px;
    padding: 60px 15px 15px;
    text-decoration: none;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.23);
    background: var(--white-color);
    border-radius: 10px;
}

.certificates .detail_card a {
    text-decoration: none;
    padding: 5px 10px;
    background: var(--main-accent-color);
    color: var(--white-color);
    border-radius: 10px;
}

.certificates .detail_card::before {
    content: '';
    position: absolute;
    display: block;
    top: 0;
    background: var(--main-accent-color);
}

.certificates .detail_card:before {
    left: 0;
    width: 100%;
    height: 10px;
}

.certificates .detail_card_file_type {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    right: 10px;
    width: 50px;
    height: 60px;
    border-radius: 0 0 15px 15px;
    background: var(--main-accent-color);
}

.certificates .detail_card_file_type:after {
    content: '';
    display: block;
    width: 30px;
    height: 30px;
    background-color: var(--white-color);
    -webkit-mask-image: var(--icon-url);
    mask-image: var(--icon-url);
    mask-repeat: no-repeat;
    mask-position: center;
}

.certificates .detail_card:has(a[href$='.pdf']) .detail_card_file_type:after {
    --icon-url: url('/app/assets/images/icons/file-pdf.svg');
}

.certificates .detail_card:has(a[href$='.docx'], a[href$='.txt']) .detail_card_file_type:after {
    --icon-url: url('/app/assets/images/icons/file-word.svg');
}

.certificates .detail_card h5 {
    width: 100%;
    margin: 0;
    color: var(--text-color);
    font-weight: 700;
}

/* #endregion */

/* #region Detail */
.detail {
    --padding: 50px;
}

.detail img {
    position: absolute;
    z-index: -1;
    top: calc(0px - var(--padding));
    left: calc(100% - var(--padding) * 3);
    width: calc(100% + var(--padding) * 3);
    height: calc(100% + var(--padding) * 2);
    object-fit: cover;
}

.detail .detail_block {
    position: relative;
    background-color: var(--main-accent-color);
    min-height: 350px;
    width: 50%;
    margin-top: var(--padding);
    padding: var(--padding);
    box-shadow: 0 10px 10px #0000002c;
}

.detail .detail_title {
    text-decoration: underline;
    text-underline-offset: 8px;
    text-decoration-thickness: 2px;
    margin-bottom: 20px;
}

.detail_gallery {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.detail_gallery .detail_slider img {
    height: 350px;
    object-fit: cover;
}

/* #endregion */

/* #region Gallery */
.gallery {
    --offset: 5px;
    padding-inline: var(--offset);
}

.collage {
    column-count: 3;
    column-gap: var(--offset);
}

.gallery .collage a {
    display: block;
    margin-bottom: var(--offset);
}

/* #endregion */

/* #region Promotion */
.promotion img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.promotion video {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.promotion .promotion_block {
    height: 100%;
}

.promotion .promotion_content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -51%);
    width: 400px;
    height: 100%;
    margin: 0 auto;
    background: #000000bd;
    text-align: center;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: column;
    padding: 40px;
}

.promotion .promotion_content :is(h3, p, a) {
    color: var(--white-color);
    text-transform: none;
    text-decoration: none;
}

.promotion .promotion_content p {
    font-style: italic;
}

.promotion .promotion_content a {
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
}

/* #endregion */

/* #region Contact */
.contact .contact_info {
    display: grid;
    gap: 20px;
}

.contact .contact_info a {
    color: var(--white-color);
    text-decoration: none;
}

.map {
    width: 100%;
    height: 500px;
}

.map iframe {
    width: 100%;
    height: 100%;
}

.contact form {
    --input-block-padding: 10px;
    --input-inline-padding: 10px;
    --label-font-size: 14px;

    display: grid;
    grid: auto / 1fr 1fr;
    gap: 20px;
}

.contact :is(input, textarea) {
    width: 100%;
    height: 100%;
}

.contact .input_block {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
}

.contact label {
    position: relative;
    bottom: calc(var(--label-font-size) * -1 - var(--input-block-padding));
    left: var(--input-inline-padding);
    font-size: var(--label-font-size);
    line-height: var(--label-font-size);
    transition: all 0.5s ease;
    text-transform: capitalize;
    pointer-events: none;
    color: grey;
}

.contact :is(input, textarea) {
    padding: var(--input-block-padding) var(--input-inline-padding);
    color: black;
    border-radius: 3px;
    border: none;
}

.contact .input_block:has(> textarea) {
    grid-column: 1 / 3;
}

.contact :is(input, textarea):invalid {
    outline: 1px solid red;
}

.contact label:has(+ :is(input, textarea):focus, + :is(input, textarea):not(:placeholder-shown)) {
    bottom: var(--input-block-padding);
    left: 0;
    color: var(--white-color);
}

.contact .input_block:has(> input[type="checkbox"]) {
    grid-column: 1 / 3;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 20px;
}

.contact .input_block:has(> input[type="checkbox"]) label {
    position: unset;
}

.contact .input_block input[type="checkbox"] {
    width: min-content;
}

.contact button[type='submit'] {
    background: transparent;
    border-radius: 30px;
    border: 1px solid var(--white-color);
    color: var(--white-color);
    height: 50px;
    transition: background 0.2s ease-in-out;
    cursor: pointer;
}

.contact button[type='submit']:hover {
    background: var(--main-accent-color);
}

.contact button[disabled='true'] {
    opacity: .8;
    pointer-events: none;
}

.contact .request_message {
    grid-column: 1 / 3;
    font-size: 14px;
}

.contact .request_message.success {
    color: green;
}

.contact .request_message.error {
    color: red;
}

/* #endregion */

/* #region Offer */
.offer a {
    color: var(--white-color);
    text-decoration: none;
}

.offer .offer_slider_block {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.offer .location_sliders.reverse .offer_slider_block {
    flex-direction: row-reverse;
}

.offer .block_detail {
    width: 30%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    align-items: flex-start;
}

.offer .block_detail .block_detail_text {
    max-height: 440px;
    overflow-y: auto;
}

.offer .location_sliders {
    position: relative;
}

.offer .image_sliders {
    position: relative;
    width: 70%;
    border-radius: 10px;
}

.offer .image_sliders img {
    height: 600px;
    object-fit: cover;
}

.offer :is(.image_sliders_navigation, .location_sliders_navigation) {
    position: absolute;
    bottom: 10px;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.offer .location_sliders_navigation {
    left: 0;
}

.offer .location_sliders.reverse .location_sliders_navigation {
    left: unset;
    right: 0;
}

.offer .image_sliders_navigation {
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
}

.offer .offer_services_slider {
    position: relative;
}

.offer .service_block {
    height: 600px;
}

.offer .offer_services_navigation {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: calc(100% - 30px);
    z-index: 2;
}

.offer .offer_services_navigation svg {
    height: 100px;
}

.offer .service_block img {
    object-fit: cover;
}

.offer .service_block_circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: min-content;
    border-radius: 50%;
    aspect-ratio: 1 / 1;
    background: #ffffff75;
    color: #000;
    z-index: 2;
    width: 50%;
    font-size: 34px;
    font-weight: 400;
    text-transform: uppercase;
}

/* #endregion */

/* #region Corparate */
.corparate .content {
    display: grid;
    grid: auto / 25% 75%;
    gap: 20px;
}

.corparate aside {
    position: sticky;
    top: 120px;
    height: min-content;
}

.corparate aside ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.corparate aside ul a {
    font-size: 20px;
    color: var(--main-accent-color);
    text-decoration: none;
}

.corparate h2 {
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 30px;
}

.corparate h3 {
    font-size: 26px;
    font-weight: 500;
    margin-block: 35px 10px;
}

.corparate p {
    font-size: 16px;
    color: #ffffffd5;
}

/* #endregion */

@media (max-width: 1200px) {
    header nav:not(.detailed_navigation) ul li:not(.burger_menu, .language_select, .dropdown li) {
        display: none;
    }

    .gallery_preview .collage {
        grid: repeat(10, 60px) / repeat(16, 1fr);
    }
}

@media (max-width: 1024px) {
    header .detailed_navigation .wrapper {
        grid: auto / repeat(2, max-content);
        align-items: flex-start;
        overflow-y: auto;
    }

    .concepts .content {
        grid: 180px / repeat(3, 1fr);
        gap: 60px 10px;
    }

    .services {
        --padding: 10px;
        --image-height: 300px;
    }

    .services .preview_block {
        display: grid;
        grid: var(--image-height) min-content / 1fr max-content;
        width: 100%;
        height: unset;
    }

    .services .preview_block a:not(.services_more) {
        font-size: 26px;
    }

    .services a.services_more {
        all: unset;
        font-size: 18px;
    }

    .services .preview_block picture {
        grid-area: 1 / 1 / 1 / 3;
        align-self: center;
        width: 100%;
        height: 100%;
    }

    .services .preview_block img {
        all: unset;
        width: 100%;
    }

    .gallery_preview .collage {
        grid: repeat(10, 40px) / repeat(16, 1fr);
    }

    .gallery_more span {
        font-size: 18px;
        line-height: 18px;
    }

    .detail .detail_block {
        width: 70%;
    }

    .detail img {
        left: calc(40% - var(--padding) * 3);
    }

    section:is(.group, .detail) {
        margin-top: 50px;
    }

    footer .logo_wrapper {
        margin-bottom: 30px;
    }

    footer .link_wrapper {
        justify-content: space-between;
    }

    .offer .location_sliders.reverse .offer_slider_block,
    .offer .offer_slider_block {
        flex-direction: column-reverse;
        padding-bottom: 60px;
    }

    .offer .block_detail {
        width: 100%;
    }

    .offer .image_sliders {
        width: 100%;
    }

    .offer :is(.location_sliders.reverse .location_sliders_navigation, .location_sliders_navigation) {
        left: 0;
        right: unset;
        bottom: 0px;
    }

    .corparate .content {
        grid: auto / 1fr;
    }

    .corparate aside {
        position: unset;
        margin-block: 30px;
    }

    .corparate .text {
        max-width: 100vw;
    }
}

@media (max-width: 768px) {
    :root {
        --padding-60: 24px;
    }

    header .detailed_navigation .wrapper {
        grid: auto / repeat(1, max-content);
        top: var(--header-height);
        height: calc(100% - var(--header-height));
        transform: translateX(-50%);
        padding: 10px 0;
        gap: 30px;
        width: 100%;
    }

    section.head {
        margin-bottom: calc(var(--padding-60) * 2);
    }

    :is(.accommodation, .services) :is(.swiper-button-prev, .swiper-button-next) {
        position: absolute;
        z-index: 2;
    }

    :is(.accommodation, .services) :is(.swiper-button-prev, .swiper-button-next)::after {
        background: rgba(0, 0, 0, 0.3);
        filter: blur(20px);
        z-index: -1;
    }

    :is(.swiper-button-prev, .swiper-button-next)::after {
        width: 100%;
        height: 100%;
    }

    :is(.accommodation, .services) .swiper-button-prev {
        left: 5%;
    }

    :is(.accommodation, .services) .swiper-button-next {
        right: 5%;
    }

    .concepts .content {
        grid: 150px / repeat(2, 1fr);
        grid-auto-rows: 150px;
        text-align: center;
    }

    .services :is(.swiper-button-prev, .swiper-button-next) {
        top: calc(var(--image-height) / 2 - var(--padding));
    }

    section.gallery_preview {
        --offset: 5px;
        padding-inline: var(--offset);
        padding-top: 0;
    }

    .gallery_preview .collage {
        display: grid;
        grid: repeat(10, 30px) / repeat(16, 1fr);
        gap: var(--offset);
        margin: 0 auto;
        position: relative;
    }

    .gallery_preview .collage img {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }

    .gallery_preview .collage_item:nth-child(3) {
        grid-area: 1 / 9 / 4 / 17;
    }

    .gallery_preview .collage_item:nth-child(4) {
        grid-area: 1 / 1 / 5 / 9;
    }

    .gallery_preview .collage_item:nth-child(5) {
        grid-area: 7 / 9 / 11 / 17;
    }

    .gallery_preview .collage_item:nth-child(6) {
        grid-area: 4 / 9 / 7 / 17;
    }

    .gallery_preview .collage_item:nth-child(7) {
        grid-area: 5 / 1 / 8 / 9;
    }

    .gallery_preview .collage_item:nth-child(8) {
        grid-area: 8 / 1 / 11 / 9;
    }

    .gallery_preview .collage_item:nth-child(11) {
        grid-area: unset;
    }

    .gallery_preview :is(
			.collage_item:nth-child(1),
			.collage_item:nth-child(2),
			.collage_item:nth-child(9),
			.collage_item:nth-child(10)
		) {
        display: none;
        grid-area: unset;
    }

    .gallery_more {
        position: absolute;
        grid-area: unset;
        top: calc(-18px + -0.5rem);
        right: var(--offset);
        display: flex;
        text-decoration: none;
        width: max-content;
        height: 30px;
        justify-content: center;
        align-items: center;
        gap: 5px;
    }

    .gallery_more .more_overlay {
        display: none;
    }

    .gallery_more span {
        position: unset;
        text-align: unset;
        width: unset;
    }

    .detail .detail_block {
        width: 100%;
        padding: 20px;
    }

    .detail img {
        display: none;
    }

    .contact form {
        margin-top: 20px;
        gap: 10px;
    }

    .contact form :is(label, input) {
        font-size: 14px;
    }

    footer .link_wrapper {
        display: grid;
        grid: auto / 120px 1fr;
        gap: 40px 20px;
    }
}

@media (max-width: 568px) {
    .concepts .content {
        grid: 120px / repeat(2, 1fr);
    }

    .concepts .concepts_block {
        text-align: center;
    }

    .concepts .concepts_block img {
        max-width: 55px;
    }

    .promotion .promotion_content {
        width: 70%;
        height: 55%;
        padding: 20px;
    }
}