/* Navbar styles */
.navbar {
    background: var(--Neutral-White, #FFF);
    box-shadow: 0px 4px 40px 0px rgba(0, 0, 0, 0.08);
    height: 85px;
    display: flex !important;
    align-items: center;
}

        .navbar .container .navbar-brand {
            margin-right: auto;
        }

        .navbar .container .navbar-toggler {
            margin-left: auto;
        }

        .navbar .container .navbar-nav {
            display: flex;
            color: #fff;
            gap: 28px;
        }


.button-book {
    padding: 13px 30px;
    border-radius: 12px;
    background: var(--Primary-500, #125a42);
    color: #fff;
}

    .button-book a {
        color: var(--Neutral-White, #FFF);
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
    }

#selectLanguage .language-button {
    border-radius: 12px;
    border: 1px solid var(--Primary-500, #125a42);
    padding: 9px 11px;
    transition: .3s all;
}
    #selectLanguage .language-button:hover {
        background: var(--Primary-500, #125a42);
        transition: .3s all;
    }
    #selectLanguage .language-button:hover span {

        color: #fff !important;
    }

.language-button span {
    color: var(--Primary-500, #125a42) !important;
    font-size: 19px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}


html:lang(en) .button-book a {
    font-size: 15px;
}


.nav-item a {
    font-size: 22px;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
    color: var(--Neutral-900, #1A1A1A) !important;
    transition: .2s all;
}

.navbar-nav .nav-link.active {
    color: #125a42 !important;
}

.nav-link:hover {
    color: #125a42 !important;
    cursor: pointer;
}

.navbar-toggler {
    border: none;
}

.navbar-toggler-icon {
    color: #000 !important;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.dropdown-toggle::after {
    display: none;
}

.offcanvas-nav {
    position: fixed;
    top: 0;
    bottom: 0;
    right: -300px; /* Initially hidden */
    width: 300px;
    background-color: #fff;
    z-index: 1050;
    overflow-y: auto;
    transition: right 0.3s ease;
}

.close-btn-mv {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #E2E6E9;
    border: 1px solid #E2E6E9;
}
/* Add this CSS to your stylesheet */
.fixed-navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: top 0.3s;
}

body.fixed-navbar-active {
    padding-top: 70px; /* Adjust based on the height of your navbar */
}

.loading-indicator {
    display: none;
    margin-left: 8px;
    width: 16px;
    height: 16px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #125a42;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.LogoSite img{
    width: 65px
}
 