:root {
    --dark: #3C3C3C;
    --primary: #1E22AA;
    --natural: #F2F0E2;
    --gray: #B0B0B0;
    --light: #F9F2EC;
    --swiper-theme-color: #1E22AA;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scrollbar-width: none;
}

body {
    margin: 0;
    padding: 0;
    opacity: 0;
    transition: opacity 0.5s;
    overflow-x: hidden;
    font-weight: 400;
    color: var(--dark);
    font-family: 'Montserrat', sans-serif;
}

.body-wrapper {
    overflow-x: hidden;
    width: 100vw;
    max-width: 2560px;
    margin: 0 auto;
}

html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}

.container {
    padding: 0;
    max-width: 1140px;
    margin: 0 auto;
    width: 100%;
    position: relative;
}

strong {
    font-weight: 600;
}

h1 {
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.15;
    text-align: center;
    max-width: 680px;
    margin: 0 auto 2.5rem;
}

h2 {
    font-size: 2rem;
    line-height: 1.15;
    font-weight: 600;
    max-width: 680px;
    margin: 0 auto 4rem;
    text-align: center;
}

h1 .line,
h2 .line,
h1 .word,
h2 .word {
    overflow: hidden;
}

h3 {
    font-size: 1.5rem;
    line-height: 1.3;
    font-weight: 600;
    margin-bottom: 1.125rem;
}

h4 {
    font-weight: 600;
    font-size: 1.125rem;
}

h5 {
    font-weight: 600;
    font-size: 1rem;
}

h6 {
    font-weight: 600;
    font-size: 1rem;
}

p,
li {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 0.75rem;
}

p:last-child {
    margin-bottom: 0;
}

li {
    margin-left: 1rem;
    margin-bottom: 0;
}

ul,
ol {
    margin-bottom: 1.25rem;
}

ul:last-child,
ol:last-child {
    margin-bottom: 0;
}

.article h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.article h3 {
    font-weight: 600;
}

.article h4 {
    font-size: 1.25rem;
    margin-top: 1.25rem;
    margin-bottom: 0.875rem;
}

.article h5 {
    font-size: 1.125rem;
    font-weight: 600;
    margin: 1.25rem 0 0.875rem;
}

.article h6 {
    font-size: 1rem;
    font-weight: 600;
    margin: 1.25rem 0 0.875rem;
}

.article img:not(.bgshape) {
    width: 100%;
    max-height: 600px;
    object-fit: cover;
    margin: 1.25rem 0;
    border-radius: 16px;
}

section {
    padding: 100px clamp(20px, 5vw, 80px) 0;
    position: relative;
    max-width: 2560px;
    margin: 0 auto;
}

.primary-link {
    padding: 1em 2.5em 0.9375em;
    font-weight: 700;
    font-size: 1rem;
    line-height: 1;
    letter-spacing: 0.05em;
    border-radius: 99px;
    display: block;
    width: fit-content;
    text-transform: uppercase;
    outline: none;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    transition: background-color 0.3s, color 0.3s, border-color 0.3s;
    border: 2px solid var(--primary);
    background-color: var(--primary);
    color: white;
}

.primary-link.natural {
    background-color: var(--natural);
    border-color: var(--natural);
    color: var(--primary);
}

.primary-link:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: white;
}

.primary-link.purple {
    background-color: var(--primary);
    border-color: var(--primary);
    color: white;
}

.primary-link.purple:hover {
    background-color: white;
    color: var(--primary);
}

.primary-link.center {
    margin: 60px auto 0;
}

.small-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: auto;
    width: fit-content;
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 1.125rem;
    position: relative;
    margin-top: 1.75rem;
}

.small-link:hover {
    color: var(--primary);
}

.small-link::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.55s cubic-bezier(0.01, 0.69, 0.4, 1);
}

.small-link:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.small-link::after {
    content: '';
    height: 0.875em;
    width: 2.75em;
    background-image: url('../images/arrow-right-blue.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

::selection {
    background: var(--primary);
    color: white;
}

::-moz-selection {
    background: var(--primary);
    color: white;
}

.rccookie-container {
    background-color: #FFFFFFBB;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 10px;
}

.rccookie-container .primary-link,
.rccookie-modal .primary-link {
    background-color: var(--primary);
    color: white;
}

.rccookie-container .secondary-link {
    color: var(--dark);
}

.rccookie-modal .modal-content {
    border-radius: 15px;
}

.custom-control-input:checked~.custom-control-label::before {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
}

.custom-control-input:not(:disabled):active~.custom-control-label::before,
.custom-control-input:not(:disabled):focus~.custom-control-label::before {
    border-color: var(--primary) !important;
    box-shadow: none !important;
}

.custom-control-label::before {
    border: 1px solid var(--dark);
}

.slider {
    transition: color 0.3s, background-color 0.3s, border-color 0.3s;
}

.slider:hover {
    background: var(--primary);
    border-color: var(--primary) !important;
    color: white;
}

.sliderMask {
    border-color: var(--primary) !important;
    background-color: var(--primary) !important;
}

.sliderContainer_success .slider {
    top: -1px;
    border: 1px solid var(--primary);
    background-color: var(--primary) !important;
    color: white;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100svh;
    display: none;
    opacity: 0;
    background-color: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: opacity 0.4s;
    z-index: 996;
}

.overlay.active {
    opacity: 1;
}

a {
    transition: color 0.3s;
    text-decoration: none;
    cursor: pointer;
    color: var(--dark);
}

a:hover,
a:focus-visible {
    text-decoration: none;
    color: var(--dark);
}

button {
    transition: background-color 0.3s, color 0.3s;
    border: none;
    outline: none;
    cursor: pointer;
    background: transparent;
}

button:focus {
    outline: none !important;
}

.vbox-container {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.vbox-close {
    padding: 20px !important;
    top: 10px !important;
    right: 20px !important;
}

.vbox-next {
    right: 40px !important;
}

.vbox-prev {
    left: 40px !important;
}

.vbox-title {
    display: none !important;
}

/* CUSTOM MODAL */

.custom-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100dvh;
    background-color: rgba(0, 0, 0, 0.5);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: none;
    opacity: 0;
    transition: opacity 0.4s;
    overflow-y: auto;
    padding: 20px;
}

.custom-modal.active {
    opacity: 1;
}

.custom-modal .modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.custom-modal .modal-content {
    margin: 20px auto;
    width: 100%;
    max-width: 950px;
    max-height: calc(100% - 40px);
    background-color: var(--natural);
    border-radius: 16px;
    overflow: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-width: thin;
}

.custom-modal .modal-content .header {
    padding: 30px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.custom-modal .modal-content .header h3 {
    margin-bottom: 0;
    font-size: 2rem;
    text-align: center;
    width: 100%;
}

.custom-modal .modal-content .header .cancel {
    position: absolute;
    top: 30px;
    right: 30px;
    cursor: pointer;
    width: 24px;
}

.custom-modal form {
    padding: 0 40px 40px;
}

.custom-modal form h4 {
    font-size: 1.25rem;
    width: 100%;
    text-align: center;
}

.custom-modal form label {
    font-weight: 500;
    width: 100%;
}

.custom-modal form input,
.custom-modal form textarea,
.custom-modal form select {
    border-color: var(--primary);
}

.custom-modal form input:nth-of-type(3) {
    width: 100%;
}

.custom-modal form input.half {
    width: calc(50% - 0.625rem);
}

.custom-modal .form-group {
    width: 100%;
}

.custom-modal form .primary-link {
    display: block;
}

/* SIDEBAR OPEN */

.open-sidebar {
    width: 28px;
    height: 28px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    display: none;
}

.open-sidebar .hb {
    border-bottom: 3px solid white;
    border-radius: 99px;
    transition: all 0.45s;
}

.navbar.scrolled .open-sidebar .hb {
    border-color: var(--primary);
}

.open-sidebar .hb1,
.open-sidebar .hb2 {
    width: 26px;
}

.open-sidebar .hb3 {
    width: 13px;
    margin-left: 12px;
}

.open-sidebar.closed .hb1 {
    transform: rotate(-45deg) translate(-6px, 6px);
    width: 30px;
}

.open-sidebar.closed .hb2 {
    margin-right: -100%;
    opacity: 0;
}

.open-sidebar.closed .hb3 {
    transform: rotate(45deg) translate(-6px, -6px);
    width: 30px;
    margin-left: 0;
}

/* SIDEBAR */

#sidebar {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 40px !important;
}

@media (min-width: 1281px) {
    #sidebar {
        display: none;
    }
}

#sidebar,
.navbar-dropdown {
    width: 100%;
    position: fixed;
    right: -100vw;
    top: 70px;
    height: calc(100dvh - 70px);
    z-index: 998;
    transition: right 0.45s ease-out;
    overflow: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 0 20px;
}

#sidebar {
    background: #FFFFFFDD;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

#sidebar.active,
.navbar-dropdown.active {
    right: 0;
}

#sidebar .content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    margin-top: -10px;
    height: 100%;
}

#sidebar .links {
    width: 100%;
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#sidebar .links .nav-item {
    width: 100vw;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    font-size: 1.125rem;
    font-weight: 600;
    letter-spacing: 0;
    color: var(--dark);
    text-transform: uppercase;
}

#sidebar .links .primary-link {
    font-size: 1.0625rem;
    font-weight: 600;
    margin-top: 12px;
}

#sidebar .links a svg {
    position: absolute;
    right: 25px;
    top: 47%;
    transform: translateY(-50%) rotate(-90deg);
    width: 1.375rem;
}

#sidebar .links a svg path {
    stroke: var(--dark);
    stroke-width: 1;
}

#sidebar .lang {
    font-size: 20px;
    color: var(--dark);
    width: fit-content;
    margin: 20px auto 0;
}

#sidebar .lang .current {
    padding-right: 26px;
}

#sidebar .lang .current::after {
    width: 16px;
    height: 16px;
    filter: brightness(0);
    transform: translateY(-50%) rotate(180deg);
}

#sidebar .lang.active .current::after {
    transform: translateY(-50%) rotate(0deg);
}

#sidebar .lang .list {
    top: auto;
    right: 50%;
    transform: translateX(50%);
    bottom: 95%;
    transition: all 0.3s;
}

#sidebar .lang.active .list {
    bottom: calc(100% + 10px);
}

#sidebar .lang a {
    font-size: 1.125rem;
    color: var(--dark);
    border-color: var(--dark);
    padding: 7px 16px;
}

#sidebar .lang a:first-child {
    padding-top: 10px;
}

#sidebar .lang a:last-child {
    padding-bottom: 10px;
}

/* DESKTOP NAVBAR */

.navbar {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    padding: 0;
    background-color: transparent;
    transition: all 0.4s ease-in-out;
}

.navbar.scrolled {
    background-color: #FFFFFFEE;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}

.navbar .container {
    max-width: 100%;
    flex-wrap: nowrap;
    gap: 1vw;
}

.navbar .first.container {
    justify-content: flex-end;
    background-color: #292929;
    padding: 0.5vw clamp(20px, 5vw, 80px);
}

.navbar .first.container * {
    color: white;
}

.navbar .first.container>a {
    font-size: 0.9vw;
    font-weight: 500;
    text-transform: uppercase;
    border-right: 1px solid white;
    padding-right: 1vw;
}

.navbar .first .search {
    position: relative;
    width: fit-content;
    border-left: 1px solid white;
    border-right: 1px solid white;
}

.navbar .first .search::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 1vw;
    transform: translateY(-50%);
    width: 1.1vw;
    height: 1.1vw;
    background-image: url('../images/search.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    pointer-events: none;
}

.navbar .first .search input {
    background-color: transparent;
    border: none;
    color: white;
    padding: 0.25vw 2.75vw 0.25vw 1vw;
    font-size: 0.9vw;
    width: 12vw;
}

.navbar .first .search input::placeholder {
    color: white;
    opacity: 0.75;
}

.lang {
    position: relative;
    text-transform: uppercase;
    font-weight: 600;
    padding-right: 1.5vw;
    cursor: pointer;
    font-size: 0.9vw;
}

.lang .current::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 0.9vw;
    height: 0.9vw;
    background-image: url('../images/angle-down-white.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 1;
    transition: transform 0.4s ease-out;
}

.lang.active .current::after {
    transform: translateY(-50%) rotate(180deg);
}

.lang .list {
    position: absolute;
    top: 70%;
    right: 0;
    background-color: #FFFFFF;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 2;
    border-radius: 8px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition: top 0.3s, opacity 0.3s;
}

.lang.active .list {
    top: calc(100% + 0.8vw);
    opacity: 1;
    pointer-events: auto;
}

.lang .list a {
    display: block;
    color: var(--dark) !important;
    padding: 0.375vw 1vw;
    transition: background-color 0.3s;
}

.lang .list a:first-child {
    padding-top: 0.625vw;
}

.lang .list a:last-child {
    padding-bottom: 0.625vw;
}

.lang .list a:hover {
    background-color: var(--natural);
}

.navbar .container {
    padding: 1.375vw clamp(20px, 5vw, 80px);
}

.navbar .logo {
    height: 1.5vw;
    display: flex;
    align-items: center;
}

.navbar .logo svg {
    width: auto;
    height: 100%;
}

.navbar .logo svg path {
    stroke: white;
    transition: stroke 0.3s;
}

.navbar.scrolled .logo svg path {
    stroke: var(--primary);
}

.navbar .links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.625vw;
}

.navbar .links .nav-item {
    font-size: 0.9vw;
    font-weight: 600;
    display: flex;
    align-items: center;
    position: relative;
    white-space: nowrap;
    color: white;
    text-transform: uppercase;
}

.navbar.scrolled .links .nav-item {
    color: var(--dark);
}

.navbar .links .nav-item:hover {
    color: white;
}

.navbar.scrolled .links .nav-item:hover,
.navbar.scrolled .links .nav-item.active {
    color: var(--primary);
}

.navbar .links .nav-item::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background-color: white;
    transition: width 0.4s cubic-bezier(0.01, 0.69, 0.4, 1);
}

.navbar.scrolled .links .nav-item::after {
    background-color: var(--primary);
}

.navbar .links .nav-item:hover::after,
.navbar .links .nav-item.active::after {
    width: 100%;
}

.navbar .links .nav-item svg {
    width: 0.875vw;
    margin-left: 8px;
    transition: transform 0.3s;
}

.navbar .links .nav-item.active svg {
    transform: rotate(180deg);
}

.navbar .links .nav-item svg path {
    transition: stroke 0.3s;
    stroke: white;
}

.navbar.scrolled .links .nav-item svg path {
    stroke: var(--dark);
}

.navbar.scrolled .links .nav-item:hover svg path,
.navbar.scrolled .links .nav-item.active svg path {
    stroke: var(--primary);
}

.navbar .links .primary-link {
    padding: 0.625vw 1.125vw;
    font-size: 0.9vw;
    font-weight: 620;
}

.navbar .lang .current {
    color: white;
    font-weight: 600;
    border-left: 2px solid white;
    padding-left: 1.5vw;
    transition: all 0.3s;
}

.navbar.scrolled .lang .current {
    color: var(--dark);
    border-color: var(--dark);
}

.navbar .lang .current::after {
    transition: all 0.4s;
}

.navbar.scrolled .lang .current::after {
    filter: brightness(0);
}

/* NAVBAR DROPDOWN */

.navbar .navbar-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    padding: 0;
    width: 100%;
    height: fit-content;
    overflow: hidden;
    z-index: 998;
    max-height: 0;
    transition: max-height 0.45s cubic-bezier(0.01, 0.69, 0.4, 1);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.1);
}

.navbar .navbar-dropdown.active {
    z-index: 999;
}

.navbar .navbar-dropdown .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5vw;
    padding: 0;
    background-color: #FFFFFFEE;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

.navbar .navbar-dropdown .container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--dark);
}

.navbar .navbar-dropdown .arrow {
    display: none;
}

.navbar .navbar-dropdown .container a {
    font-size: 0.9vw;
    padding: 0.8vw;
    white-space: nowrap;
    font-weight: 600;
    text-transform: uppercase;
}

.navbar-dropdown .container a:hover {
    color: var(--primary);
}

/* KIS LENYÍLÓK */

.desktop-modal {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100vw - 40px);
    max-width: 300px;
    background-color: #FFFFFFDD;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.1));
    border-radius: 15px;
    display: none;
    opacity: 0;
    transition: transform 0.3s, opacity 0.3s;
    padding: 20px;
}

.desktop-modal.active {
    transform: translate(-50%, 2.5vw);
    opacity: 1;
}

.desktop-modal::before {
    content: '';
    position: absolute;
    top: -17.75px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 21px;
    background-image: url('../images/triangle.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.9;
}

.desktop-modal .cancel,
.navbar-dropdown .cancel {
    position: absolute;
    top: 15px;
    right: 12px;
    padding: 10px;
    cursor: pointer;
    width: 36px;
}

.desktop-modal h4 {
    margin: 0 0 20px;
    text-transform: none;
    font-weight: 600;
    font-size: 20px;
    text-align: center;
}

.desktop-modal form {
    padding: 0;
    width: 100%;
    background-color: transparent;
    gap: 0;
}

.desktop-modal form input {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid var(--dark);
    border-radius: 5px;
    margin-bottom: 15px;
    line-height: 1;
}

.desktop-modal .primary-link {
    background-color: var(--primary);
    margin: 0 auto;
}

.desktop-modal .primary-link:hover {
    background-color: var(--primary);
}

/* Állandó */

.flex-content {
    display: flex;
    gap: 80px;
}

.flex-content.center {
    align-items: center;
}

.flex-content.reverse {
    flex-direction: row-reverse;
}

.flex-content .side {
    width: 50%;
}

.flex-content .side>img,
.flex-content .side .image img {
    width: 100%;
}

.card {
    display: block;
    border: none;
    border-radius: 10px;
}

.flex-content .primary-link {
    margin-top: 2rem;
}

.items {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 40px;
    justify-content: center;
}

.items .item {
    display: flex;
    flex-direction: column;
    width: calc(33.33% - 28px);
    position: relative;
}

.items.two .item {
    width: calc(50% - 20px);
}

.items.four .item {
    width: calc(25% - 30px);
}

.items.six .item {
    width: calc(16.66% - 33.33px);
}

.items .item h3 {
    font-size: 1.25rem;
}

.relative {
    position: relative;
}

.swiper {
    width: 100%;
    position: relative;
}

.bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.swiper-button-prev,
.swiper-button-next {
    width: 40px;
    height: 40px;
    position: absolute;
    top: 50%;
    z-index: 99;
    cursor: pointer;
    transition: opacity 0.3s;
    margin-top: 0;
    transform: translateY(-50%);
}

.swiper-button-lock {
    opacity: 0;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 34px;
    font-weight: 400;
}

.swiper-button-prev::after {
    margin-right: 3px;
}

.swiper-button-next::after {
    margin-left: 1px;
}

.swiper-button-prev {
    left: -50px;
}

.swiper-button-next {
    right: -50px;
}

.swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: -30px;
}

.swiper-pagination-bullet {
    background-color: var(--gray);
    opacity: 1;
    width: 10px;
    height: 10px;
    margin: 0 8px;
    transition: all 0.4s;
    border-radius: 10px;
}

.swiper-pagination-bullet-active {
    background-color: var(--primary);
    width: 32px;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* LOADER */

.weLoveSEO {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99999;
    font-size: 2px;
    color: #292929;
}

.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100svh;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    z-index: 9999;
    transition: opacity 0.75s;
}

.loader.end {
    opacity: 0;
}

.loader svg {
    width: 100%;
    height: 100%;
    max-width: 550px;
    max-height: 550px;
}

/* HERO */

.hero {
    width: 100vw;
    position: relative;
    z-index: 2;
    margin: 0;
    padding: 180px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: visible;
    color: white;
}

.hero.main-hero {
    height: 100dvh;
}

.hero .layer {
    background: linear-gradient(180deg, #0C0E44A8 0%, #1E22AA88 100%);
}

.hero .container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero .logo {
    width: 100%;
    height: 100%;
    max-width: 550px;
    max-height: 550px;
}

.hero .logo path {
    stroke: white;
}

.hero .logo .shape,
.hero .logo .text {
    fill: white;
}

.hero .logo .text {
    stroke: none;
}

.hero .mobile-button {
    display: none;
}

.hero+.search {
    padding: 0 clamp(20px, 5vw, 80px);
    z-index: 10;
    height: 0;
}

.search .small-container {
    max-width: 800px;
    margin: 0 auto;
}

.search-form {
    flex-wrap: nowrap;
    gap: 0;
    padding: 24px 20px;
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.hero+.search .search-form {
    transform: translateY(-100%);
}

.search-form label {
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    margin-bottom: 12px;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
}

.search-form input {
    padding: 0;
    border: none;
    outline: none;
    cursor: pointer;
    font-weight: 500;
}

.search-form .input-group {
    position: relative;
    padding: 0 30px;
    border-left: 1px solid var(--gray);
    flex: 1;
}

.search-form .input-group:first-of-type {
    border-left: none;
    padding-left: 10px;
}

.search-form .input-group.date::after {
    content: '';
    position: absolute;
    bottom: 2px;
    right: 30px;
    width: 24px;
    height: 24px;
    background-image: url('../images/date.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    pointer-events: none;
}

.search-form .input-group.date input {
    padding-right: 40px;
    background-color: transparent;
}

.search-form .input-group.date input::placeholder {
    text-transform: none;
}

.search-form .quantity {
    width: 100%;
    position: relative;
    z-index: 1;
}

.search-form .quantity input {
    cursor: default;
}

.search-form .quantity svg {
    position: absolute;
    right: 0;
    width: 14px;
    height: auto;
    cursor: pointer;
    z-index: 1;
}

.search-form .quantity .plus {
    top: -4px;
}

.search-form .quantity .minus {
    top: 14px;
}

.search-form button {
    margin: -24px -20px -24px 0;
    background-color: var(--natural);
    white-space: nowrap;
    padding: 20px 40px;
    font-weight: 700;
    color: var(--primary);
    transition: all 0.3s ease;
    text-transform: uppercase;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
}

.search-form button:hover {
    background-color: var(--primary);
    color: white;
}

/* CALENDAR */

#ui-datepicker-div {
    max-width: 400px;
    width: 100%;
    background-color: white;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: -100%;
    left: -100%;
}

.ui-datepicker-header {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.ui-datepicker-prev,
.ui-datepicker-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    cursor: pointer;
}

.ui-datepicker-prev span,
.ui-datepicker-next span {
    font-family: "Times New Roman", Times, serif;
    font-size: 34px;
    line-height: 22px;
    font-weight: 500;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
}

.ui-datepicker-prev {
    left: 0;
}

.ui-datepicker-next {
    right: -15px;
}

.ui-datepicker-calendar {
    width: 100%;
    border-spacing: 0;
    border-collapse: collapse;
}

.ui-datepicker-calendar td {
    width: calc(100% / 7);
}

.ui-state-default {
    color: var(--dark);
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.ui-datepicker-current-day a {
    color: white;
    background-color: var(--primary);
    border-radius: 5px;
}

.ui-datepicker-unselectable span {
    color: #bbb;
    cursor: default;
}

.ui-datepicker-calendar thead {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--primary);
}

.ui-datepicker-title {
    font-size: 18px;
    font-weight: 600;
}

.ui-datepicker-calendar th span {
    color: var(--primary);
    text-transform: uppercase;
    font-weight: 600;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bgshape {
    position: absolute;
    width: 23vw;
    height: 17.2vw;
    clip-path: polygon(0 100%, 0 100%, 0 100%);
}

.bgshape.top.left {
    top: 0;
    left: 0;
}

.bgshape.top.right {
    top: 0;
    right: 0;
    transform: scaleX(-1);
}

.bgshape.bottom.left {
    bottom: 0;
    left: 0;
    transform: scaleY(-1);
}

.bgshape.bottom.right {
    bottom: 0;
    right: 0;
    transform: scaleX(-1) scaleY(-1);
}

.about {
    padding-top: 130px;
}

.rect-text {
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.125rem;
    position: relative;
    text-align: center;
    padding: 16px;
}

.rect-text .line {
    overflow: hidden;
}

.rect-text span {
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    line-height: 1.2;
}

.rect-text svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    transform: rotate(180deg);
}

.about .flex-content {
    gap: 0;
}

.about .flex-content .left {
    position: relative;
    min-height: 500px;
}

.about .left.side img {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 50vw;
    object-fit: cover;
    mask-image: url('../images/image-mask.png');
    -webkit-mask-image: url('../images/image-mask.png');
    mask-size: 0% 0%;
    -webkit-mask-size: 0% 0%;
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
    mask-position: 50% 50%;
    -webkit-mask-position: 50% 50%;
}

.about .right.side {
    padding: 60px 0 50px 100px;
}

.about.subpage .right.side .small-link {
    display: none;
}

.featured .item {
    height: 450px;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
}

.featured .item .layer {
    z-index: 0;
    background: linear-gradient(180deg, #1E22AA00 20%, #1E22AA 90%);
}

.featured .item img {
    transition: transform 0.7s cubic-bezier(0, 0.69, 0.4, 1);
}

.featured .item:hover img {
    transform: scale(1.05);
}

.featured .item .content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    text-align: center;
    position: relative;
    z-index: 2;
    pointer-events: none;
}

.featured .item h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.featured .item .offer-link {
    padding: 1.25rem 1.25rem 0;
    color: white;
    font-weight: 700;
    letter-spacing: 0.05em;
    font-size: 1.125rem;
    text-transform: uppercase;
    border-top: 1px solid white;
    margin-bottom: -3rem;
    opacity: 0;
    transition: all 0.6s cubic-bezier(0, 0.69, 0.4, 1);
}

.featured .item:hover .offer-link {
    opacity: 1;
    margin-bottom: 0;
}

.featured .bgshape.bottom.left {
    bottom: -80px;
}

.loyality-program {
    background-color: var(--natural);
    padding: 80px clamp(20px, 5vw, 80px);
    margin-top: 80px;
}

.loyality-program h2 {
    text-transform: uppercase;
}

.loyality-program .items {
    gap: 69px;
}

.loyality-program .items .item {
    width: calc(20% - 56px);
}

.loyality-program .items .item img {
    filter: blur(0px);
}

.loyality-program .items .item h3 {
    text-align: center;
    text-transform: uppercase;
    margin-top: 2rem;
    font-size: 1.125rem;
    letter-spacing: 0.05em;
}

.big-container {
    max-width: 1440px;
    margin: 0 auto;
}

.rooms-section .buttons {
    margin: 40px auto;
    max-width: 1140px;
    display: flex;
}

.rooms-section .buttons span {
    width: 50%;
    text-align: center;
    padding: 0 0 12px;
    cursor: pointer;
    color: var(--gray);
    font-size: 1.25rem;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
    letter-spacing: 0.05em;
    position: relative;
}

.rooms-section .buttons span::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--gray);
    transition: all 0.3s;
}

.rooms-section .buttons span.active {
    color: var(--primary);
    font-weight: 700;
}

.rooms-section .buttons span.active::after {
    background-color: var(--primary);
    height: 4px;
}

.rooms-section .swiper-wrapper {
    align-items: stretch;
}

.rooms-section .swiper-slide {
    padding: 12px;
    background-color: white;
    height: auto;
    display: flex;
    flex-direction: column;
}

.rooms-section .swipersSwiper .swiper-wrapper>.swiper-slide:not(.swiper-slide-active) {
    z-index: -1;
}

.rooms-section .item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    flex: 1;
    position: relative;
}

.rooms-section .item .image {
    display: block;
    height: 230px;
    overflow: hidden;
}

.rooms-section .item .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0, 0.69, 0.4, 1);
}

.rooms-section .item .image:hover img {
    transform: scale(1.05);
}

.rooms-section .item .content {
    padding: 20px;
    padding-bottom: 88px;
}

.rooms-section .item h3 {
    margin-bottom: 0.5rem;
}

.rooms-section .item .numbers {
    letter-spacing: 0.05em;
    color: #808080;
    font-weight: 500;
}

.rooms-section .item .link {
    padding: 20px;
    text-align: center;
    display: block;
    background-color: white;
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    border-top: 1px solid var(--gray);
    transition: all 0.3s ease;
    position: absolute;
    bottom: 0;
    width: 100%;
}

.rooms-section .item .link:hover {
    background-color: var(--primary);
    color: white;
}

section.services {
    background-color: var(--primary);
    margin-top: 80px;
    padding: 100px clamp(20px, 5vw, 80px);
    color: white;
}

section.services h2 {
    text-transform: uppercase;
    margin-bottom: 80px;
}

.servicesSwiper {
    overflow: hidden;
}

.servicesSwiper::before,
.servicesSwiper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 50px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.servicesSwiper::before {
    left: 0;
    background: linear-gradient(to right, var(--primary), transparent);
}

.servicesSwiper::after {
    right: 0;
    background: linear-gradient(to left, var(--primary), transparent);
}

.servicesSwiper .swiper-wrapper {
    align-items: flex-start;
}

.servicesSwiper .swiper-slide img {
    display: block;
    width: auto;
    height: 80px;
    margin: 0 auto 32px;
    filter: brightness(9);
    pointer-events: none;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
}

.servicesSwiper .swiper-slide h4 {
    text-align: center;
    font-size: 1.125rem;
    margin-bottom: 0;
    text-transform: uppercase;
}

section.services .swiper-button-prev::after,
section.services .swiper-button-next::after {
    color: white;
}

.banner .container {
    padding: 60px;
    border-radius: 20px;
    overflow: hidden;
    color: white;
}

.banner .layer {
    background-color: #3C3C3CAA;
}

.banner .content {
    max-width: 950px;
    margin: 0 auto;
    text-align: center;
}

.banner .content * {
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.5;
}

.banner hr {
    border-top: 1px solid white;
    width: 180px;
    margin: 32px auto 40px;
}

.banner .primary-link {
    margin: 0 auto;
}

.events .buttons {
    margin: 40px auto 60px;
    max-width: 1140px;
    display: flex;
    flex-wrap: wrap;
}

.events .buttons span {
    flex: 1;
    text-align: center;
    padding: 0 20px 12px;
    cursor: pointer;
    color: var(--gray);
    font-size: 1.25rem;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
    letter-spacing: 0.05em;
    position: relative;
}

.events .buttons span::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--gray);
    transition: all 0.3s;
}

.events .buttons span.active {
    color: var(--primary);
    font-weight: 700;
}

.events .buttons span.active::after {
    background-color: var(--primary);
    height: 4px;
}

.events .swiper {
    overflow: visible;
}

.events .swiper-slide {
    display: flex;
    align-items: center;
    position: relative;
}

.events .swiper-slide:not(.swiper-slide-active) {
    pointer-events: none;
    z-index: -1;
}

.events .swiper-slide .image {
    position: relative;
    width: 50%;
    min-height: 520px;
}

.events .swiper-slide .image img {
    position: absolute;
    top: 0;
    right: 0;
    width: calc(50vw + 2px);
    height: 100%;
    object-fit: cover;
    mask-image: url('../images/image-mask.png');
    -webkit-mask-image: url('../images/image-mask.png');
    mask-size: 0% 0%;
    -webkit-mask-size: 0% 0%;
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
    mask-position: 50% 50%;
    -webkit-mask-position: 50% 50%;
    transition: all 1.5s cubic-bezier(.4, .01, .55, 1);
}

.events .swiper-slide.swiper-slide-active .image img {
    mask-size: 1820% 1820%;
    -webkit-mask-size: 1820% 1820%;
}

.events .swiper-slide .content {
    width: 50%;
    padding: 40px 0 40px 80px;
    transition: opacity 0.7s ease;
    background-color: white;
}

.events .swiper-slide:not(.swiper-slide-active) .content {
    opacity: 0;
    pointer-events: none;
}

.events .swiper-slide .content h3 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.catering h2 {
    max-width: 950px;
    margin-bottom: 40px;
}

.catering .desc {
    max-width: 1000px;
    margin: 0 auto 60px;
}

.catering .item {
    height: 500px;
    overflow: hidden;
}

.catering .item img {
    transition: all 0.7s cubic-bezier(0, 0.69, 0.4, 1);
}

.catering .item:hover img {
    transform: scale(1.06);
    filter: blur(4px);
}

.catering .item .layer {
    opacity: 0;
    background: var(--primary);
    transition: opacity 0.7s cubic-bezier(0, 0.69, 0.4, 1);
    z-index: 0;
}

.catering .item:hover .layer {
    opacity: 0.7;
}

.catering .item .title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    font-weight: 600;
    padding: 0.5em 1.5em;
    font-size: 1.5rem;
    background-color: #F2F0E2EE;
    border-radius: 8px;
    text-transform: uppercase;
    transition: opacity 0.7s cubic-bezier(0, 0.69, 0.4, 1);
}

.catering .item:hover .title {
    opacity: 0;
}

.catering .item .content {
    width: 100%;
    height: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    position: relative;
    color: white;
    z-index: 2;
    pointer-events: none;
    opacity: 0;
    transition: all 0.7s cubic-bezier(0, 0.69, 0.4, 1);
    transform: translateY(25px);
}

.catering .item:hover .content {
    opacity: 1;
    transform: translateY(0);
}

.catering .item h3 {
    font-size: 1.5rem;
    margin-bottom: 0;
    text-transform: uppercase;
}

.catering .item hr {
    border-top: 1px solid white;
    width: 150px;
    margin: 1.25rem auto;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.7s cubic-bezier(0, 0.69, 0.4, 1);
}

.catering .item:hover hr {
    transform: scaleX(1);
}

.catering .item p {
    font-weight: 500;
}

.catering .item .primary-link {
    border-color: white;
    background-color: transparent;
    margin: 1rem auto 0;
}

.socials {
    display: flex;
    gap: 64px;
    justify-content: center;
}

.socials img {
    height: 48px;
    width: auto;
}

.news .item {
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 2px 4px 12px rgba(0, 0, 0, 0.1);
}

.news .item .image {
    display: block;
    height: 250px;
    overflow: hidden;
}

.news .item .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0, 0.69, 0.4, 1);
}

.news .item .image:hover img {
    transform: scale(1.05);
}

.news .item .content {
    padding: 20px;
    padding-bottom: 64px;
    flex: 1;
}

.news .item .date {
    color: var(--gray);
    font-weight: 500;
}

.news .item h3 {
    margin: 0.5rem 0 0.75rem;
}

.news .item .link {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.news .item .link:hover {
    background-color: var(--primary);
}

.news .item .link svg {
    width: 20px;
    margin-left: 2px;
}

.news .item .link svg path {
    stroke: var(--primary);
    transition: stroke 0.3s ease;
}

.news .item .link:hover svg path {
    stroke: white;
}

.sights .item {
    height: 440px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 2px 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    width: calc(50% - 20px);
}

.sights .item .layer {
    background: linear-gradient(180deg, #F2F0E233 0%, #F2F0E2DF 75%, #F2F0E2 100%);
}

.sights .item img {
    transition: transform 0.7s cubic-bezier(0, 0.69, 0.4, 1);
}

.sights .item:hover img {
    transform: scale(1.05);
}

.sights .item *:not(.layer) {
    pointer-events: none;
}

.sights .item .title {
    text-transform: uppercase;
    color: var(--primary);
    font-weight: 700;
    font-size: 1.125rem;
}

.sights .item hr {
    border-top: 2px solid var(--primary);
    width: 200px;
    margin: 1rem 0 1.25rem;
}

.sights .items .item h3 {
    margin-bottom: 0;
}
/* 
.sights .item:first-child {
    width: 100%;
    padding: 40px 54px;
}

.sights .item:first-child:hover img {
    transform: scale(1.035);
}

.sights .item:first-child h3 {
    font-size: 1.75rem;
    max-width: 630px;
} */

.location .flex-content {
    gap: 0;
}

.location .left.side {
    width: 55%;
}

.location .buttons {
    margin-bottom: 40px;
    display: flex;
}

.location .buttons span {
    width: 50%;
    text-align: center;
    padding: 0 0 12px;
    color: var(--gray);
    font-size: 1.25rem;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
    letter-spacing: 0.05em;
    position: relative;
    cursor: pointer;
}

.location .buttons span::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--gray);
    transition: all 0.3s;
}

.location .buttons span.active {
    color: var(--primary);
    font-weight: 700;
}

.location .buttons span.active::after {
    background-color: var(--primary);
    height: 4px;
}

.location .swiper-wrapper {
    align-items: normal;
}

.location .swiper-slide {
    background-color: white;
    height: auto;
    padding-right: 60px;
}

.location ul {
    list-style: none;
}

.location li {
    position: relative;
    padding-left: 32px;
    margin-left: 0;
    margin-bottom: 1.125rem;
    font-weight: 500;
    font-size: 1.125rem;
}

.location li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.25em;
    color: var(--primary);
    width: 1.125em;
    height: 1.125em;
    background-color: var(--natural);
    border-radius: 50%;
}

.nav-icons {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
}

.nav-icons img {
    height: 2.5rem;
    border-radius: 10px;
}

.location .right.side {
    position: relative;
    width: 45%;
    min-height: 500px;
}

.location .right.side #map {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 46.75vw;
}

.leaflet-tile-pane {
    filter: grayscale(30%);
}

.leaflet-bottom,
.leaflet-top {
    z-index: 990 !important;
}

.leaflet-control-attribution {
    font-size: 10px;
}

.leaflet-attribution-flag {
    max-width: 0;
}

.leaflet-interactive {
    pointer-events: none !important;
}

.banner {
    z-index: 2;
}

.contact {
    background-color: var(--natural);
    padding-top: 200px;
    position: static;
    margin-top: -120px;
    padding-bottom: 80px;
}

.contact .flex-content {
    align-items: flex-start;
}

.contact h3 {
    font-size: 2rem;
    max-width: 550px;
    font-weight: 700;
    margin-bottom: 2rem;
}

.contact .infos {
    margin-top: 50px;
}

.contact .infos h4 {
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.contact .infos p {
    margin-bottom: 0.25rem;
}

form {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
}

input,
textarea,
select {
    padding: 0.75em 1.25em;
    outline: none;
    background-color: white;
    color: var(--dark);
    font-size: 1rem;
    width: 100%;
    resize: none;
    border-radius: 0.375rem;
    border: none;
    font-weight: 500;
}

select {
    appearance: none;
    background-image: url("../images/angle-down-gray.svg");
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 18px;
}

form input::placeholder,
form textarea::placeholder,
form select::placeholder {
    color: var(--dark);
    opacity: 0.5;
    text-transform: uppercase;
}

.form-group {
    width: 100%;
    margin-bottom: 0;
}

.form-check {
    padding-left: 0 !important;
    width: 100%;
    height: fit-content;
}

.form-check:not(.form-group .form-check):first-of-type {
    margin-top: 20px;
}

.form-check-input {
    position: absolute;
    overflow: hidden;
    clip: rect(0 0 0 0);
    height: 1px;
    width: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
}

.form-check-input+label {
    position: relative;
    line-height: 1.5;
    font-size: 14px;
    margin-bottom: 0;
    color: var(--dark);
    padding-left: 37px;
}

.form-check-input+label a {
    text-decoration: underline;
}

.form-check-input+label::before {
    content: " ";
    display: inline-block;
    vertical-align: middle;
    margin-right: 12px;
    margin-left: -37px;
    width: 24px;
    height: 24px;
    background-color: white;
    border-radius: 5px;
    transition: 0.3s ease;
}

.form-check-input:checked+label::before {
    background-color: var(--primary);
}

.form-check-input+label::after {
    content: " ";
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA1MTIgNTEyIj48cGF0aCBmaWxsPSIjZmZmZmZmIiBkPSJNMTczLjg5OCA0MzkuNDA0bC0xNjYuNC0xNjYuNGMtOS45OTctOS45OTctOS45OTctMjYuMjA2IDAtMzYuMjA0bDM2LjIwMy0zNi4yMDRjOS45OTctOS45OTggMjYuMjA3LTkuOTk4IDM2LjIwNCAwTDE5MiAzMTIuNjkgNDMyLjA5NSA3Mi41OTZjOS45OTctOS45OTcgMjYuMjA3LTkuOTk3IDM2LjIwNCAwbDM2LjIwMyAzNi4yMDRjOS45OTcgOS45OTcgOS45OTcgMjYuMjA2IDAgMzYuMjA0bC0yOTQuNCAyOTQuNDAxYy05Ljk5OCA5Ljk5Ny0yNi4yMDcgOS45OTctMzYuMjA0LS4wMDF6Ii8+PC9zdmc+");
    background-repeat: no-repeat;
    background-size: 14px 14px;
    background-position: center center;
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    left: 0;
    top: -10px;
    text-align: center;
    background-color: transparent;
    font-size: 10px;
    height: 24px;
    width: 24px;
    transition: 0.3s ease;
    opacity: 0;
}

.form-check-input:checked+label::after {
    opacity: 1;
    top: 0;
}

.contact .primary-link {
    margin-top: 1.25rem;
    position: relative;
    z-index: 2;
    border-width: 1px;
}

/* FOOTER */

footer {
    position: relative;
}

footer .content {
    padding: 80px 40px;
    color: white;
    background: var(--dark);
}

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

footer .item .logo {
    width: 100%;
    max-width: 220px;
}

footer .item {
    display: flex;
    flex-direction: column;
    min-width: 17%;
    max-width: 22%;
}

footer .item h3 {
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
}

footer .item p,
footer .item a {
    display: block;
    width: fit-content;
    color: white;
    margin-bottom: 0;
}

footer .item a:hover {
    color: #fff7ba;
}

footer li {
    margin-bottom: 0.5rem;
    list-style: none;
    margin-left: 0;
}

footer .nav-icons,
footer .socials {
    gap: 1rem;
    justify-content: flex-end;
}

footer .socials img,
footer .nav-icons img {
    width: 2rem;
    height: 2rem;
    object-fit: contain;
}


footer hr {
    border-top: 1px solid white;
    margin: 40px 0 50px;
    width: 100%;
}

footer .raccoon {
    text-align: center;
    margin-top: 60px;
}

footer .raccoon a {
    color: white;
    font-size: 1.125rem;
    font-weight: 550;
}

/* ALOLDALAK */

.nav {
    line-height: 1.15;
    margin-bottom: 40px;
}

.nav a:after {
    content: '/';
    margin-left: 0.375rem;
    margin-right: 0.375rem;
}

.nav a:last-of-type {
    font-weight: 600;
}

.nav a:last-of-type:after {
    content: '';
}

.rooms-search {
    padding-top: 9.5vw;
}

.rooms-search+.rooms-section {
    padding-top: 80px;
}

.swipersSwiper>.swiper-wrapper>.swiper-slide:not(.swiper-slide-active) {
    pointer-events: none !important;
    opacity: 0 !important;
}

.swipersSwiper>.swiper-wrapper>.swiper-slide.swiper-slide-active,
.swipersSwiper>.swiper-wrapper>.swiper-slide.swiper-slide-active * {
    pointer-events: auto !important;
}

.swipersSwiper .swiper-pagination {
    bottom: -20px !important;
}

.roomsSwiper .primary-link {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.rooms-section .item .content p,
.rooms-section .item .content li {
    font-size: 0.875rem;
}

.room-section {
    padding-top: 5vw;
}

.room-section .flex-content {
    gap: 0;
}

.room-section .left.side {
    position: relative;
    height: 600px;
}

.room-section .left .swiper {
    position: absolute;
    top: 0;
    right: 0;
    width: 50vw;
    height: 100%;
}

.room-section .left .swiper-button-prev,
.room-section .left .swiper-button-next {
    bottom: 0;
    top: auto;
    left: auto;
    transform: none;
    height: 60px;
    width: 60px;
    background-color: var(--natural);
}

.room-section .left .swiper-button-next {
    right: 0;
}

.room-section .left .swiper-button-prev {
    right: 54px;
}

.room-section .left .swiper-button-prev::after,
.room-section .left .swiper-button-next::after {
    font-size: 26px;
    color: var(--primary);
}

.room-section .right.side {
    padding-left: 60px;
    padding-top: 60px;
}

.room-section h1 {
    text-align: left;
    margin-bottom: 2rem;
}

.room-section .numbers {
    font-weight: 550;
}

.room-section p {
    max-width: 550px;
}

.room-section .roomServicesSwiper {
    padding: 20px 0;
    border-top: 1px solid var(--primary);
    border-bottom: 1px solid var(--primary);
    margin: 20px 0;
}

.room-section .roomServicesSwiper::before,
.room-section .roomServicesSwiper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.room-section .roomServicesSwiper::before {
    left: 0;
    background: linear-gradient(to right, white 20%, transparent);
}

.room-section .roomServicesSwiper::after {
    right: 0;
    background: linear-gradient(to left, white 20%, transparent);
}

.room-section .right .swiper-button-prev,
.room-section .right .swiper-button-next {
    background-color: white;
    border-radius: 50%;
    border: 1px solid var(--primary);
    width: 36px;
    height: 36px;
    margin-top: 0;
}

.room-section .right .swiper-button-prev {
    left: 0;
    transform: translate(-50%, -50%);
}

.room-section .right .swiper-button-next {
    right: 0;
    transform: translate(50%, -50%);
}

.room-section .right .swiper-button-prev::after,
.room-section .right .swiper-button-next::after {
    font-size: 18px;
}

.room-section .right .swiper-slide img {
    display: block;
    width: auto;
    height: 50px;
    margin: 0 auto 16px;
}

.room-section .right .swiper-slide h4 {
    font-size: 0.875rem;
    text-align: center;
    margin-bottom: 0;
}

.room-section .extras {
    margin-bottom: 20px;
}

.collapse-item {
    border-top: 1px solid var(--gray);
    border-bottom: 1px solid var(--gray);
}

.collapse-item+.collapse-item {
    border-top: none;
}

.collapse-item:last-child {
    margin-bottom: 0;
    border-bottom: none;
}

.collapse-item .header {
    position: relative;
    cursor: pointer;
    padding: 0.875rem 0;
}

.collapse-item .header::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    transform: translateY(-50%);
    transition: transform 0.4s;
    border: 1px solid var(--dark);
    background: url('../images/angle-down-gray.svg') no-repeat center center / contain;
    background-size: 60% 60%;
}

.collapse-item.active .header::after {
    transform: translateY(-50%) rotate(180deg);
}

.collapse-item .header h4 {
    margin-bottom: 0;
}

.collapse-item .content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s ease-in-out;
}

.collapse-item .content .inner {
    padding: 0 0 0.875rem;
    background-color: white;
    border-radius: 0 0 16px 16px;
}

.collapse-item .content .inner * {
    max-width: 550px;
}

.c2a-text {
    color: var(--primary);
    text-align: center;
    margin-top: 1.375rem;
}

.c2a-text.mobile-only {
    margin-top: 0;
    margin-bottom: 1.25rem;
    display: none;
}

.room-section .primary-link {
    margin: 0.75rem auto 0;
}

.services .bgshape.bottom.left {
    bottom: 100%;
}

.hero:not(.main-hero) {
    padding: calc(7vw + 200px) clamp(20px, 5vw, 80px) 200px;
}

.hero h1 {
    font-size: 3.5rem;
    max-width: 1140px;
}

.hero p {
    font-size: 1.5rem;
    width: 100%;
    max-width: 700px;
    font-weight: 500;
}

.hero p .line {
    overflow: hidden;
}

.hero+section .nav {
    margin-top: -60px;
    margin-bottom: 70px;
}

.about .flex-content.reverse .left img {
    right: auto;
    left: 0;
}

.about .flex-content.reverse .right {
    padding-left: 0;
    padding-right: 60px;
}

.team .container {
    max-width: 1440px;
}

.team .swiper-slide {
    height: 380px;
    border-radius: 20px;
    overflow: hidden;
}

.team .swiper-slide .content {
    position: absolute;
    bottom: 30px;
    right: 0;
    padding: 14px 20px;
    background-color: #F2F0E2D0;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    max-width: calc(100% - 40px);
    border-radius: 12px 0 0 12px;
    text-align: center;
}

.team .swiper-slide .content h4 {
    margin-bottom: 0;
    font-size: 1.0625rem;
    font-weight: 700;
}

.team .swiper-slide .content p {
    margin-top: 4px;
    font-size: 0.875rem;
    font-weight: 500;
}

.team .swiper-button-prev,
.team .swiper-button-next {
    background: linear-gradient(to left, #FFFFFF00, #FFFFFF88 40%, #FFFFFF 97%);
    width: 7%;
    height: 100%;
    top: 0;
    bottom: 0;
    transform: none;
    border-radius: 0;
}

.team .swiper-button-next {
    right: 0;
    background: linear-gradient(to right, #FFFFFF00, #FFFFFF88 40%, #FFFFFF 97%);
    justify-content: flex-end;
}

.team .swiper-button-prev {
    justify-content: flex-start;
    left: 0;
}

.team .swiper-button-next::after {
    transform: translateX(30px);
}

.team .swiper-button-prev::after {
    transform: translateX(-30px);
}

.services-subpage .item {
    align-items: center;
    text-align: center;
}

.services-subpage .item .icon {
    width: 160px;
    height: 160px;
    margin-bottom: -80px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    box-shadow: 2px 4px 12px rgba(0, 0, 0, 0.1);
}

.services-subpage .item .icon img {
    width: 60%;
    height: 60%;
    object-fit: contain;
    filter: brightness(10);
}

.services-subpage .item .content {
    padding: 32px;
    background-color: #FFFFFF;
    border-radius: 16px;
    padding-top: 108px;
    box-shadow: 2px 4px 20px #C8C8C840;
    flex-grow: 1;
    width: 100%;
}

.services-subpage .item h3 {
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.services-subpage+.banner .bgshape {
    display: none;
}

.hero:not(.main-hero).news-hero {
    padding: calc(7vw + 160px) clamp(20px, 5vw, 80px) 160px;
}

.newsSwiper .swiper-slide {
    height: auto;
    display: flex;
    padding: 10px;
}

.newsSwiper .swiper-slide .item {
    flex: 1;
    position: relative;
}

.news .swiper-button-prev,
.news .swiper-button-next {
    top: 260px;
    transform: translateY(-50%);
}

.hero.article-hero {
    padding-top: 10vw;
    padding-bottom: 10vw;
}

.article h1 {
    max-width: 100%;
    font-size: 2.5rem;
    margin-left: 0;
    text-align: left;
    font-weight: 700;
}

.article h2 {
    text-align: left;
    max-width: 100%;
}

.article .small-container {
    max-width: 1000px;
    margin: 0 auto;
}

.offers:not(.subpage) {
    padding-top: calc(5vw + 60px);
}

.offers .bgshape.top.right {
    top: 5.1vw;
}

.offers h2 {
    margin-bottom: 2rem;
}

.offers .desc {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.offers .item .content {
    padding-bottom: 4.75rem;
}

.offers .item .price {
    font-weight: 600;
    font-size: 1.25rem;
}

.offers .item .primary-link {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.offers.subpage h2 {
    margin-bottom: 4rem;
}

.offer-section .prices {
    margin: 1.5rem 0;
    display: flex;
    align-items: flex-start;
    gap: 1.75rem;
}

.offer-section .price {
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.offer-section .price-selector {
    position: relative;
}

.offer-section .price-selector .current {
    color: #444444;
    padding: 0.375rem 0;
    cursor: pointer;
    position: relative;
    font-weight: 500;
    border-bottom: 1px solid var(--gray);
    padding-right: 32px;
}

.offer-section .price-selector .current::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 18px;
    height: 18px;
    background: url('../images/angle-down-gray.svg') no-repeat center center / contain;
    background-size: 100% 100%;
    transform: translateY(-50%);
    transition: transform 0.4s ease;
}

.offer-section .price-selector.active .current::after {
    transform: translateY(-50%) rotate(180deg);
}

.offer-section .price-selector .list {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    background-color: white;
    border: 1px solid var(--gray);
    border-radius: 0.375rem;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    z-index: 10;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.offer-section .price-selector.active .list {
    opacity: 1;
    pointer-events: auto;
}

.offer-section .price-selector .list .item {
    padding: 0.5rem 0.625rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.offer-section .price-selector .list .item:hover {
    background-color: #F2F0E2;
}

.offer-section .desc {
    margin-bottom: 1.5rem;
}

.offer-section .validity {
    padding: 0.875rem 0;
    border-top: 1px solid var(--gray);
}

.offer-section .validity h4 {
    margin-bottom: 0.25rem;
}

.offer-details .main-description {
    max-width: 900px;
    margin-bottom: 60px;
}

.nav-section h2 {
    margin-bottom: 0;
}

.sights .sight {
    padding-top: 80px;
}

.sights .sight .right.side h3 {
    text-transform: uppercase;
    font-size: 2rem;
}

.sights .sight:nth-child(even) .flex-content {
    flex-direction: row-reverse;
}

.sights .sight:nth-child(even) .right.side {
    padding-left: 0;
    padding-right: 60px;
}

.sights .sight:nth-child(even) .left.side img {
    right: auto;
    left: 0;
}

.sights .sight:nth-child(odd) .bgshape.top.left {
    left: auto;
    right: 0;
    transform: scaleX(-1);
}

.sights .sight:first-child .bgshape.top.left {
    display: none;
}

.sights+.banner .bgshape {
    display: none;
}

.featured .swiper-button-prev,
.news .swiper-button-prev {
    left: -54px;
}

.featured .swiper-button-next,
.news .swiper-button-next {
    right: -54px;
}

.hero.catering-hero {
    padding-left: 0;
    padding-right: 0;
    padding-top: 3.75vw;
    padding-bottom: 0;
    min-height: auto;
}

.cateringSwiper {
    height: 650px;
}

.cateringSwiper .swiper-slide {
    overflow: hidden;
}

.cateringSwiper img {
    height: 100%;
    object-fit: cover;
}

.hero.catering-hero .swiper-button-prev,
.hero.catering-hero .swiper-button-next {
    background-color: white;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    top: calc(50% + 3vw);
    box-shadow: 2px 4px 12px rgba(0, 0, 0, 0.1);
}

.hero.catering-hero .swiper-button-prev::after,
.hero.catering-hero .swiper-button-next::after {
    font-size: 26px;
    color: #666;
    font-weight: 600;
}

.hero.catering-hero .swiper-button-prev {
    left: clamp(20px, 5vw, 80px);
}

.hero.catering-hero .swiper-button-next {
    right: clamp(20px, 5vw, 80px);
}

.hero.catering-hero .swiper-button-prev::after {
    margin-right: 3px;
}

.hero.catering-hero .swiper-button-next::after {
    margin-left: 3px;
}

.hero.catering-hero .swiper-pagination {
    bottom: 20px;
}

.hero.catering-hero .swiper-pagination-bullet {
    width: 13px;
    height: 13px;
}

.hero.catering-hero .swiper-pagination-bullet-active {
    background-color: white;
    width: 32px;
}

.menu .nav-buttons {
    background-color: var(--natural);
    display: flex;
    flex-wrap: wrap;
    position: sticky;
    z-index: 10;
    top: 3.75vw;
}

.menu .nav-buttons button {
    flex: 1;
    padding: 0.875rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    background-color: transparent;
    border: none;
    border-bottom: 4px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 1.25rem;
    letter-spacing: 0.025em;
}

.menu .nav-buttons button.active {
    border-bottom: 4px solid var(--primary);
    color: var(--primary);
}

.menuSwiper {
    background-color: white;
    margin-top: 32px;
}

.menuSwiper .category {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.menuSwiper .category .item {
    width: calc(50% - 12px);
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gray);
}

.menuSwiper .category .item .upper {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.menuSwiper .category .item .upper * {
    font-size: 1.25rem;
    margin-bottom: 0;
    line-height: 1.3;
}

.menuSwiper .category .item .price {
    color: var(--primary);
    font-weight: 500;
    white-space: nowrap;
}

.menuSwiper .category .item .lower {
    max-width: 550px;
    margin-top: 10px;
}

.menu .note {
    max-width: 800px;
    margin: 2rem auto 0;
    text-align: center;
}

.gallery .items {
    gap: 24px;
}

.gallery .items.four .item {
    width: calc(25% - 18px);
    padding-bottom: calc(25% - 18px);
    overflow: hidden;
    position: relative;
}

.gallery .items.four .item img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0, 0.69, 0.4, 1);
}

.gallery .items.four .item:hover img {
    transform: scale(1.05);
}

.reservation .right {
    padding: 30px 40px;
    background-color: #E9E9F7;
    border-radius: 16px;
}

.reservation .right h4 {
    font-size: 1.25rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.reservation .right a {
    display: block;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.hall-capacity .scroll-container {
    overflow-x: auto;
    padding-bottom: 10px;
    margin-left: -10px;
    margin-right: -10px;
    padding: 10px;
}

.hall-capacity .table {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 0 10px #C8C8C840;
}

.hall-capacity .table .line {
    display: flex;
}

.hall-capacity .table .line:nth-child(odd) {
    background-color: #F2F0E299;
}

.hall-capacity .table .line div {
    width: 120px;
    min-width: 120px;
    text-align: center;
    line-height: 1.25;
    padding: 20px;
    font-weight: 450;
}

.hall-capacity .table .line.header div {
    font-weight: 600;
    padding: 20px 0;
    text-transform: uppercase;
    font-size: 0.875rem;
}

.hall-capacity .table .line.header div:first-child {
    font-size: 1.25rem;
    display: flex;
    align-items: center;
}

.hall-capacity .table .line div:first-child {
    width: 100%;
    text-align: left;
    font-weight: 600;
    padding: 20px;
    padding-left: 24px;
    font-size: 1.125rem;
    min-width: 180px;
}

.hall-capacity .table .line:not(.header) div:not(:first-child) {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hall-capacity .table .line div img {
    display: block;
    margin: 0 auto 12px;
    height: 2rem;
}

.hall-capacity .table .line:not(.header) div:nth-child(n+4)::after {
    content: '';
    width: 1em;
    height: 1em;
    background: url('../images/person.svg') no-repeat center center / contain;
    margin-left: 0.3125rem;
    margin-top: -2px;
    opacity: 0.8;
}

.hall-list {
    padding-top: 70px;
}

.hall-list .item {
    box-shadow: 2px 4px 20px #C8C8C840;
    border-radius: 16px;
    overflow: hidden;
}

.hall-list .item .image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.hall-list .item .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0, 0.69, 0.4, 1);
}

.hall-list .item .image:hover img {
    transform: scale(1.05);
}

.hall-list .item .image span {
    background-color: #FFFFFFDD;
    backdrop-filter: blur(4px);
    padding: 0.5em 0.75em 0.4375em;
    color: var(--primary);
    position: absolute;
    bottom: 10px;
    right: 10px;
    border-radius: 4px;
    font-size: 0.8125rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.hall-list .item .content {
    padding: 24px;
}

.hall-list .item .content h3 {
    font-size: 1.625rem;
}

.hall-list .item .content h4 {
    color: var(--primary);
    padding-top: 1rem;
    margin-top: 1rem;
    border-top: 1px solid var(--gray);
    margin-bottom: 1rem;
}

.marker {
    height: 7.5vw;
    margin-top: -7.5vw;
}

.floating-booking {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 100;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.floating-booking.active {
    opacity: 1;
    pointer-events: auto;
}

.booking-page {
    padding-top: calc(5vw + 60px);
}

@media (max-width: 1279px) {

    .navbar {
        height: 70px;
        flex-direction: row;
        justify-content: space-between;
    }

    .navbar .container {
        max-width: 100%;
        position: relative;
        margin: 0;
        padding: 0 clamp(20px, 5vw, 80px);
    }

    .navbar .logo {
        height: 22px;
        margin: 0;
    }

    .navbar .links {
        display: none;
    }

    .navbar .open-sidebar {
        display: flex;
    }

    .navbar .buttons {
        gap: 15px;
        position: static;
    }

    .navbar .buttons a {
        display: none;
    }

    .navbar .buttons svg {
        height: 28px;
    }

    .navbar .buttons .item {
        position: static;
    }

    .navbar .lang {
        display: none;
    }

    .desktop-modal {
        left: auto;
        right: 20px;
        transform: none;
        max-width: 380px;
    }

    .desktop-modal.active {
        transform: translateY(33px);
    }

    .desktop-modal::before {
        left: auto;
        transform: none;
        right: 36px;
    }

    .desktop-modal .cancel {
        top: 14px;
    }

    #sidebar .navbar-dropdown {
        top: 0;
        background-color: #FFFFFFEF;
        -webkit-backdrop-filter: blur(8px);
        backdrop-filter: blur(8px);
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }

    #sidebar .navbar-dropdown .container {
        box-shadow: none;
        background-color: transparent;
    }

    #sidebar .navbar-dropdown .arrow {
        width: 14px;
        height: 24px;
        object-fit: contain;
        cursor: pointer;
        margin: 20px 0 0;
        display: block;
    }

    #sidebar .navbar-dropdown .container {
        display: flex;
        flex-direction: column;
    }

    #sidebar .navbar-dropdown .container .item {
        width: 100%;
    }

    #sidebar .navbar-dropdown .container a {
        font-size: 1.125rem;
        text-transform: uppercase;
        font-weight: 600;
        padding: 1rem 0;
        text-align: center;
    }

}

@media (max-width: 767px) {

    p,
    li,
    a {
        font-size: 0.875rem;
    }

    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.5rem;
        margin-bottom: 1.75rem;
    }

    h3 {
        font-size: 1.125rem;
        margin-bottom: 1rem;
    }

    h4 {
        font-size: 1.125rem;
    }

    h5,
    h6 {
        font-size: 0.875rem;
    }

    section {
        padding: 40px 20px 0;
    }

    ul,
    ol {
        margin-bottom: 1rem;
    }

    .article h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .article h3 {
        font-size: 1.375rem;
    }

    .article h4 {
        font-size: 1.25rem;
    }

    .article h5 {
        font-size: 1rem;
    }

    .article h6 {
        font-size: 0.875rem;
    }

    .article img {
        margin: 1rem 0;
        max-height: 450px;
    }

    .primary-link {
        font-size: 0.875rem;
        padding: 0.875rem 1.5rem 0.75rem;
    }

    .primary-link.center {
        margin: 2rem auto 0;
    }

    .vbox-close {
        padding: 20px !important;
        top: 5px !important;
        right: 5px !important;
    }

    .vbox-next {
        right: 25px !important;
    }

    .vbox-prev {
        left: 25px !important;
    }

    .swiper-button-prev::after,
    .swiper-button-next:after {
        font-size: 28px;
    }

    .swiper-button-prev {
        left: -34px;
    }

    .swiper-button-next { 
        right: -34px;
    }

    .flex-content,
    .flex-content.reverse {
        flex-direction: column-reverse;
        gap: 20px;
    }

    .flex-content .side {
        width: 100%;
    }

    .flex-content .primary-link {
        margin-top: 1.25rem;
    }

    .items {
        gap: 20px;
    }

    .items .item,
    .items.two .item {
        width: 100%;
    }

    .items .item h3 {
        font-size: 1.125rem;
        margin-bottom: 1.125rem;
    }

    /***************** */

    .hero .mobile-button {
        display: block;
        position: absolute;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 2;
        width: 48px;
        height: 48px;
        background-color: white;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
    }

    .hero .mobile-button::before {
        content: '';
        width: 22px;
        height: 22px;
        background: url('../images/angle-down-blue.svg') no-repeat center center / contain;
        margin-top: 4px;
    }

    .hero+.search {
        padding: 30px clamp(20px, 5vw, 80px) 0;
        height: auto;
    }

    .hero+.search .search-form {
        transform: none;
    }

    .search-form {
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
        padding: 24px;
    }
    
    .search-form label {
        display: block;
        text-align: center;
        margin-bottom: 0px;
    }

    .search-form input {
        padding: 10px 0 16px !important;
        text-align: center;
        font-size: 1rem;
    }

    .search-form .input-group {
        display: block;
        flex: auto;
        width: 100%;
        padding: 0;
        border-left: 0;
        align-items: center;
    }

    .search-form .input-group:not(:last-of-type) {
        margin-bottom: 10px;
        border-bottom: 1px solid var(--gray);
    }

    .search-form .input-group.date::after {
        bottom: 18px;
        right: -2px;
    }

    .search-form .quantity svg {
        width: 16px;
        right: 2px;
    }

    .search-form .quantity .plus {
        top: 4px;
    }

    .search-form .quantity .minus {
        top: 24px;
    }

    .search-form button {
        margin: 0 -24px -24px -24px;
        width: calc(100% + 48px);
    }

    #ui-datepicker-div {
        width: calc(100% - 80px);
    }

    .bgshape {
        width: 41.4vw;
        height: 30.96vw;
    }

    .about {
        padding-top: 60px;
    }

    .rect-text {
        margin: 0 auto 32px;
        font-size: 0.9375rem;
        padding: 11px 16px;
    }

    .rect-text::before {
        height: 14px;
        bottom: 0;
    }

    .about .flex-content {
        flex-direction: column;
        gap: 30px;
    }

    .about .flex-content .left {
        height: 300px;
        min-height: 300px;
    }

    .about .left.side img {
        width: 100%; height: 100%; object-fit: cover; 
    }

    .about .right.side {
        padding: 0;
    }

    .small-link {
        font-size: 0.875rem; 
        margin-top: 1.25rem;
    }

    .featured .item {
        height: 350px;
    }

    .featured .item .offer-link {
        margin-bottom: -3.5rem;
    }

    .featured .bgshape.bottom.left {
        bottom: -40px;
    }

    .rooms-section .buttons {
        margin: 40px auto 24px;
    }

    .rooms-section .buttons span {
        font-size: 0.9375rem;
    }

    .rooms-section .swipersSwiper {
        width: calc(100% - 40px);
    }

    .rooms-section .swiper-slide {
        padding: 7px;
    }

    .rooms-section .item {
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    }

    .rooms-section .item .image {
        height: 200px;
    }

    .rooms-section .item .content {
        padding: 18px;
        padding-bottom: 76px;
    }

    .rooms-section .item h3 a {
        font-size: 1.125rem;
    }

    .rooms-section .item .link {
        padding: 14px;
    }

    .rooms-section .small-link {
        margin-top: 50px;
    }

    .swipersSwiper .swiper-pagination {
        bottom: -26px !important;
    }

    section.services {
        padding: 40px 20px;
        margin-top: 40px;
    }

    section.services h2 {
        margin-bottom: 50px;
    }

    section.services .relative {
        width: calc(100% - 40px);
        margin: 0 auto;
    }

    .servicesSwiper .swiper-slide img {
        height: 64px;
        margin: 0 auto 20px;
    }

    .servicesSwiper .swiper-slide h4 {
        font-size: 0.8125rem;
    }

    section.services .swiper-button-prev,
    section.services .swiper-button-next {
        top: 40%;
    }

    .banner {
        padding: 50px 0 0;
    }

    .banner .container {
        padding: 24px;
        border-radius: 0;
    }

    .banner .content * {
        font-size: 1.125rem;
    }

    .banner hr {
        width: 140px;
        margin: 24px auto 30px;
    }

    .events .buttons {
        margin: 32px auto 40px;
        max-width: 1140px;
    }

    .events .buttons span {
        flex: auto;
        width: 50%;
        padding: 12px 18px;
        font-size: 0.9375rem;
    }

    .events .swiper-slide {
        flex-direction: column;
    }

    .events .swiper-slide .image,
    .events .swiper-slide .content {
        width: 100%;
        padding: 0;
    }

    .events .swiper-slide .image {
        min-height: 200px;
        margin-bottom: 24px;
    }

    .events .swiper-slide .image img {
        width: 100%;
        border-radius: 10px;
    }

    .events .swiper-slide .content h3 {
        font-size: 1.375rem;
        margin-bottom: 1rem;
    }

    .catering .bgshape {
        display: none;
    }

    .catering .desc {
        margin-bottom: 40px;
    }

    .catering h2 {
        margin-bottom: 28px;
    }

    .catering .item {
        height: 260px;
        border-radius: 16px;
    }

    .catering .item:hover .layer {
        opacity: 0;
    }

    .catering .item:hover .title {
        opacity: 1;
    }

    .catering .item:hover .content {
        opacity: 0;
    }

    .socials {
        gap: 28px;
    }

    .socials img {
        height: 36px;
    }

    .news .item .image {
        height: 220px;
    }
    
    .news .item h3 {
        margin: 0.375rem 0 0.625rem;
    }

    .news .item h3 a {
        font-size: 1.125rem;
    }

    .news .item .content {
        padding-bottom: 58px;
    }

    .news .item .link {
        width: 36px;
        height: 36px;
    }

    .news .item .link svg {
        width: 10px;
        margin-left: 2px;
    }

    .sights .item {
        height: 280px;
        padding: 20px !important;
    }

    .sights .item .layer {
        background: linear-gradient(180deg, #F2F0E255 0%, #F2F0E2DF 75%, #F2F0E2 100%);
    }

    .sights .item hr {
        margin: 0.75rem 0 1rem;
    }

    .sights .items .item .title {
        font-size: 0.875rem;
    }

    .sights .items .item h3 {
        font-size: 0.9375rem;
        padding-right: 30px;
    }

    .location .flex-content {
        flex-direction: column;
        gap: 32px;
    }

    .location .left.side,
    .location .right.side {
        width: 100%;
    }

    .location .buttons {
        margin-bottom: 32px;
    }

    .location .buttons span {
        font-size: 1rem;
    }

    .location .swiper-wrapper {
        align-items: flex-start;
    }

    .location .swiper-slide {
        padding-right: 0;
    }

    .location h4 {
        text-align: center;
    }

    .nav-icons {
        justify-content: center;
    }

    .nav-icons a:first-child {
        padding-left: 0.25em;
    }

    .location li {
        padding-left: 28px;
        margin-bottom: 0.625rem;
        font-size: 0.9375rem;
    }

    .location li::before {
        top: 0.125em;
    }

    .location .right.side {
        min-height: 280px;
    }

    .location .right.side #map {
        width: 100%;
        border-radius: 16px;
    }

    .leaflet-control-attribution,
    .leaflet-control-attribution a {
        font-size: 9px;
    }

    .contact {
        margin-top: 0;
        padding: 40px clamp(20px, 5vw, 80px);
    }

    .contact .flex-content {
        flex-direction: column;
    }

    .contact h3 {
        font-size: 1.5rem;
        margin-bottom: 1.25rem;
    }

    .contact .infos {
        margin-top: 30px;
    }

    .contact .infos h4 {
        margin-bottom: 1rem;
    }

    form {
        gap: 0.625rem;
    }

    form input,
    form textarea,
    form select,
    form option {
        padding: 0.625rem 1rem;
        font-size: 0.875rem;
    }

    form input:nth-of-type(2),
    form input:nth-of-type(3) {
        width: 100%;
    }

    form select {
        background-size: 1rem;
    }

    .form-check-input+label,
    .form-check-input+label a {
        font-size: 0.75rem;
        line-height: 1.7;
    }

    .form-check:not(.form-group .form-check):first-of-type {
        margin-top: 0.75rem;
    }

    .form-group.half {
        width: 100%;
    }

    form .primary-link {
        margin: 1rem auto 0;
    }

    footer .content {
        padding: 40px 20px;
    }

    footer .container {
        flex-direction: column;
        gap: 30px;
        align-items: center;
    }

    footer .item {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        max-width: 100%;
        text-align: center;
        padding-right: 0;
    }

    footer .item .logo {
        width: 180px;
        margin-bottom: 0;
    }

    footer .item:first-of-type p {
        font-size: 13px;
        max-width: 200px;
    }

    footer .item h3 {
        font-size: 18px;
        margin-bottom: 12px;
    }

    footer .item a,
    footer .item p {
        margin-bottom: 6px;
        font-size: 14px;
        text-align: center;
        width: 100%;
    }

    footer .socials a {
        width: fit-content;
    }

    footer .socials {
        justify-content: center;
    }

    footer .raccoon {
        margin-top: 36px;
    }

    footer .raccoon a {
        display: block !important;
        width: 100% !important;
        margin-bottom: 0;
        text-align: center;
    }

    .nav {
        margin-bottom: 32px;
    }

    .rooms-search {
        padding-top: 90px;
    }

    .rooms-search + .rooms-section {
        padding-top: 60px;
    }

    .rooms-section.subpage .buttons {
        flex-wrap: wrap;
    }

    .rooms-section.subpage .buttons span {
        font-size: 0.9375rem;
        width: 50%;
        margin-bottom: 16px;
    }

    .rooms-section.subpage .swiper-slide {
        background-color: transparent;
    }

    .rooms-section .item .content p, .rooms-section .item .content li {
        font-size: 0.75rem;
    }

    .rooms-section.subpage .item .content {
        padding-bottom: 82px;
    }

    .rooms-section.subpage + .services {
        margin-top: 80px;
    }

    .services + .banner {
        padding-top: 0;
    }

    .room-section {
        padding-top: 70px;
    }

    .room-section .flex-content {
        flex-direction: column;
        gap: 30px;
    }

    .room-section .left.side {
        height: 280px;
    }

    .room-section .left .swiper {
        top: 0;
        right: -20px;
        width: 100vw;
    }

    .room-section .left .swiper-button-next {
        right: -20px;
    }

    .room-section .left .swiper-button-prev {
        right: 34px;
    }

    .room-section .right.side {
        padding: 0;
    }

    .room-section h1 {
        margin-bottom: 1rem;
    }

    .services .bgshape {
        z-index: 2;
        pointer-events: none;
    }

    .hero h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .hero p {
        font-size: 1.125rem;
    }

    .hero:not(.main-hero) {
        padding: 170px clamp(20px, 5vw, 80px) 120px;
    }

    .hero + section .nav {
        margin-top: -20px;
        margin-bottom: 40px;
    }

    .about .flex-content.reverse .right {
        padding-right: 0;
    }

    .team .relative {
        width: calc(100% - 60px);
        margin: 0 auto;
    }

    .team .swiper-slide {
        height: 360px;
    }

    .team .swiper-button-prev, .team .swiper-button-next {
        width: 32px;
        background: transparent;
    }

    .team .swiper-button-prev::after, .team .swiper-button-next::after {
        transform: none;
        margin: 0;
    }

    .team .swiper-button-prev {
        left: -34px;
    }

    .team .swiper-button-next {
        right: -34px;
    }

    .services-subpage .items {
        gap: 10px;
    }

    .services-subpage .item {
        width: calc(50% - 5px);
        margin-bottom: 8px;
    }

    .services-subpage .item .icon {
        width: 100px;
        height: 100px;
        margin-bottom: -50px;
    }

    .services-subpage .item .content {
        padding: 76px 16px 16px;
    }

    .services-subpage .item .content h3 {
        font-size: 0.875rem;
        letter-spacing: 0;
    }

    .services-subpage .item .content p {
        font-size: 0.75rem;
    }

    .hero:not(.main-hero).news-hero {
        padding: 170px clamp(20px, 5vw, 80px) 90px;
    }

    .news .relative {
        width: calc(100% - 50px);
        margin: 0 auto;
    }

    .featured .swiper-button-prev, .news .swiper-button-prev {
        left: -39px;
    }

    .featured .swiper-button-next, .news .swiper-button-next {
        right: -39px;
    }

    .article h1 {
        font-size: 1.75rem;
    }

    .article h2 {
        font-size: 1.5rem;
    }

    .offers:not(.subpage) {
        padding-top: 100px;
    }

    .offers .bgshape.top.right {
        top: 70px;
    }

    .offers .item .content {
        padding-bottom: 4.5rem;
    }

    .offer-section h1 {
        text-align: center;
        font-size: 1.625rem;
    }

    .offer-section .prices {
        flex-direction: column;
        align-items: center;
        gap: 6px;
    }

    .offer-section .price {
        font-size: 1.125rem;
    }

    .custom-modal .modal-content {
        margin: 0;
        max-height: 100%;
    }

    .custom-modal .modal-content .header {
        padding: 20px;
    }

    .custom-modal .modal-content .header h3 {
        font-size: 1.625rem;
    }
    
    .custom-modal .modal-content .header .cancel {
        top: 16px;
        right: 16px;
        width: 18px;
    }
    
    .custom-modal form {
        padding: 0 20px 30px;
    }
    
    .custom-modal form h4 {
        font-size: 0.9375rem;
        font-weight: 500;
        margin-bottom: 1rem;
    }

    .custom-modal form .primary-link {
        margin: 0.5rem auto 0;
    }

    .offer-details .bgshape {
        display: none;
    }

    .offer-details .main-description {
        margin-bottom: 30px;
    }

    .offers.subpage h2 {
        margin-bottom: 2rem;
    }

    .sights .sight .bgshape {
        display: none;
    }

    .sights .sight:nth-child(even) .flex-content {
        flex-direction: column;
    }

    .sights .sight:nth-child(even) .right.side {
        padding-right: 0;
    }

    .sights .sight {
        padding-top: 40px;
    }

    .featured .relative {
        width: calc(100% - 60px);
        margin: 0 auto;
    }

    .featured .swiper-button-prev {
        left: -46px;
    }

    .featured .swiper-button-next {
        right: -46px;
    }

    .hero.catering-hero {
        padding: 0;
        margin-top: 70px;
    }

    .cateringSwiper {
        height: 350px;
    }

    .hero.catering-hero .swiper-button-prev,
    .hero.catering-hero .swiper-button-next {
        width: 36px;
        height: 36px;
        top: 50%;
    }

    .hero.catering-hero .swiper-button-prev::after,
    .hero.catering-hero .swiper-button-next::after {
        font-size: 18px;
    }

    .hero.catering-hero .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
    }

    .hero.catering-hero .swiper-pagination-bullet-active {
        background-color: white;
        width: 24px;
    }

    .menu .nav-buttons {
        top: 68px;
    }

    .menu .nav-buttons button {
        width: 50%;
        flex: none;
        font-size: 0.875rem;
        padding: 0.5rem 0.875rem 0.25rem;
    }

    .menu .nav-buttons button:nth-child(1),
    .menu .nav-buttons button:nth-child(2) {
        padding-top: 0.625rem;
    }

    .menuSwiper .category .item {
        width: 100%;
    }

    .menuSwiper .category .item .upper * {
        font-size: 1.125rem;
    }

    .gallery .items {
        gap: 10px;
    }

    .gallery .items.four .item {
        width: calc(50% - 5px);
        padding-bottom: calc(50% - 5px);
    }

    .reservation .flex-content {
        flex-direction: column;
        gap: 30px;
    }

    .reservation .right {
        padding: 24px 20px;
    }

    .hall-capacity .bgshape {
        display: none;
    }

    .hall-capacity .table {
        width: fit-content;
    }

    .hall-capacity .table .line div {
        padding: 8px;
        width: 100px;
        min-width: 100px;
        font-size: 0.875rem;
    }

    .hall-capacity .table .line.header div {
        font-weight: 600;
        padding: 8px 0;
        font-size: 0.75rem;
    }

    .hall-capacity .table .line.header div:first-child {
        font-size: 1rem;
    }

    .hall-capacity .table .line div:first-child {
        padding: 8px;
        padding-left: 16px;
        font-size: 0.875rem;
        width: 120px;
        min-width: 120px;
    }

    .hall-capacity .table .line div img {
        height: 1.5rem;
        margin: 0 auto 8px;
    }

    .hall-list {
        padding-top: 40px;
    }

    .hall-list .item .content {
        padding: 20px;
    }

    .hall-list .item .content h3 {
        font-size: 1.375rem;
    }

    .marker {
        height: 90px;
        margin-top: -90px;
    }

    .hero.article-hero {
        padding-top: 100px;
        padding-bottom: 100px;
    }

    .c2a-text.mobile-only {
        display: block;
    }

}

@media (min-width: 767px) and (max-width: 1279px) {
    .navbar {
        height: 90px;
    }

    .navbar .logo {
        height: 28px;
    }

    .navbar .open-sidebar {
        transform: scale(1.3);
    }

    #sidebar,
    .navbar-dropdown {
        top: 90px;
        height: calc(100dvh - 90px);
        padding: 10px 40px;
    }

    #sidebar .links a svg {
        right: 42px;
    }

    #sidebar .links .nav-item {
        height: 66px;
        font-size: 1.375rem;
    }

    #sidebar .navbar-dropdown .container a {
        font-size: 1.375rem;
    }

    #sidebar .lang {
        font-size: 1.5rem;
    }

    #sidebar .lang a {
        font-size: 1.25rem;
    }

    .marker {
        height: 130px;
        margin-top: -130px;
    }
}

@media (min-width: 767px) and (max-width: 1023px) {


    section {
        padding: 80px 40px 0;
    }

    h2 {
        font-size: 3.25rem;
        margin-bottom: 3rem;
    }

    .flex-content {
        gap: 40px;
    }

    .items .item {
        width: calc(50% - 20px);
    }

    .swiper-button-prev {
        left: -28px;
    }

    .swiper-button-next {
        right: -28px;
    }

    h2 {
        font-size: 2.5rem;
        margin-bottom: 2.5rem;
    }

    /*********************************/

    .search-form {
        flex-wrap: wrap;
        justify-content: center;
        padding: 20px 8px;
    }

    .search-form .input-group {
        flex: none;
        width: 50%;
        margin-bottom: 20px;
    }

    .search-form .input-group:nth-child(3) {
        border-left: 0;
    }

    .search-form button {
        margin: 8px auto 0;
        border-radius: 99px;
    }

    .main-hero + .about {
        padding-top: 180px;
    }

    .about .right.side {
        padding: 40px 0 40px 40px;
    }

    footer .container {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }

    footer .item {
        max-width: none;
        width: 33%;
        margin-bottom: 30px;
    }

    footer .item .logo {
        max-width: 200px;
    }

    footer .item p, footer .item a {
        width: 100%;
    }

    .hall-capacity .table {
        width: fit-content;
    }

    .menu .nav-buttons {
        top: 90px;
    }

    .menu .nav-buttons button {
        flex: 1 1 33.33%;
    }

    .offers:not(.subpage) {
        padding-top: 120px;
    }

    .room-section .right.side {
        padding-left: 40px;
        padding-top: 40px;
    }

    .room-section {
        padding-top: 88px;
    }

    .hero + section .nav {
        margin-top: -50px;
        margin-bottom: 70px;
    }

    .featured .relative,
    .news .relative {
        width: calc(100% - 54px);
        margin: 0 auto;
    }

}

@media (min-width: 1024px) and (max-width: 1279px) {}

@media (min-width: 1280px) and (max-width: 1440px) {}

@media (min-width: 640px) {
    .container {
        max-width: 640px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 768px;
    }
}

@media (min-width: 1023px) {
    .container {
        max-width: 1023px;
    }
}

@media (min-width: 1280px) {
    .container {
        max-width: 1280px;
    }
}