.section__header {
    /* padding: 24px 0; */
    padding: 20px 0;
    background-color: #fff;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    transition: all 0.3s linear;
}

.section__header.active {
    /* padding: 12px 0; */
    /* border-bottom: 4px solid var(--primary-color); */
    transition: all 0.3s linear;
}

.section__header .header__logo .header__logo--img {
    /* width: 98.6px; */
    width: 159px;
    height: 68px;
    object-fit: contain;
}

.section__header .header__menu {
    display: flex;
    align-items: center;
    gap: 0 40px;
}

.section__header .header__menu--list {
    gap: 0 40px;
    display: flex;
}

.section__header .header__menu--option {
    gap: 0 22px;
}

.section__header .header__menu--item {
    position: relative;
}

/* .section__header .header__menu--item::before {
    position: absolute;
    display: block;
    content: "";
    top: 100%;
    height: 2px;
    width: 0%;
    background-color: var(--primary-color);
    transition: all 0.3s linear;
} */

.section__header.active .header__menu--item::before {
    bottom: -46px;
}

.section__header .header__menu--item::before {
    position: absolute;
    display: block;
    content: '';
    bottom: -46px;
    left: 50%;
    height: 4px;
    width: 0%;
    background-color: var(--secondary-color);
    transition: all 0.3s linear;
    transform: translateX(-50%);
}

.section__header .header__menu--item:hover:before,
.section__header .header__menu--item.current_page_item:before,
.section__header .header__menu--item.active:before {
    width: 130%;
    transition: all 0.3s linear;
}

.section__header .header__menu--item .header__menu--link {
    font-size: 13px;
    /* font-size: 13px; */
    line-height: 22px;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
}

.section__header .header__menu--option .header__menu-booking {
    border: 0;
    background-color: var(--primary-color);
    border-radius: 24px;
    padding: 8px 25px;
    transition: 0.3s linear all;
}

.section__header .header__menu--option .header__menu-booking:hover {
    transform: scale(1.04);
    transition: 0.3s linear all;
}

.section__header .header__menu--option .header__menu-booking span {
    font-size: 14px;
    /* font-size: 14px; */
    line-height: 22px;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
}

.section__header .header__language {
    gap: 0 10px;
    cursor: pointer;
    position: relative;
}

.section__header .language__dropdown--menus {
    position: absolute;
    z-index: 11;
    top: 120%;
    border-radius: 4px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    background-color: #fff;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s linear;
}

.section__header .language__dropdown--icon img {
    transform: rotate(0);
    transition: all 0.2s linear;
}

.section__header .language__dropdown--icon img.active {
    transform: rotate(180deg);
    transition: all 0.2s linear;
}

.section__header .language__dropdown--menus.show {
    opacity: 1;
    visibility: visible;
    transition: all 0.2s linear;
}

.section__header .language__dropdown--menus .dropdown-items {
    width: 100%;
    display: block;
    padding: 5px 15px;
    font-size: 16px;
    line-height: 22px;
    font-weight: 350;
    color: #000;
    text-decoration: none;
}

.section__header .header__language .language__dropdown {
    font-size: 16px;
    /* font-size: 14px; */
    line-height: 22px;
    font-weight: 500;
    color: var(--primary-color);
    text-transform: uppercase;
}

.section__header .header__menu--mb img {
    width: 25px;
    height: 16px;
    display: none;
}

.header__mobile {
    /* position: absolute;
    top: 100%;
    right: -300px; */
    position: fixed;
    top: 92px;
    bottom: 0;
    left: 100%;
    width: 100%;
    /* padding: 30px 0; */
    background: var(--primary-color);
    transition: ease all 0.3s;
    z-index: 10;
}

.header__mobile.show {
    /* right: 0; */
    left: 50%;
}

body.show::after {
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #d1d1d170;
    position: fixed;
    z-index: 10;
}

.header__mobile .header__mobile--item {
    padding: 0 10px;
}

.header__mobile .header__mobile--item a {
    display: block;
    color: #fff;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 0.3px;
    text-align: left;
    background: var(--primary-color);
    padding: 20px 0 20px 20px;
    text-transform: uppercase;
    border-bottom: 1px solid #ffffff46;
}

.header__menu--mb {
    display: none;
}

@media screen and (max-width: 1200px) {
    .section__header .header__menu {
        gap: 0 30px;
    }

    .section__header .header__menu--list {
        gap: 0 20px;
    }

    .section__header .header__menu--option .header__menu-booking {
        padding: 8px 20px 10px;
    }
}

@media screen and (max-width: 991px) {
    .section__header {
        position: fixed;
        top: 0;
        z-index: 999;
        width: 100%;
        background-color: #fff;
        padding: 12px 0;
    }

    .section__header .header__menu--list {
        display: none;
    }

    .section__header .header__menu--option .header__menu-booking {
        display: none;
    }

    .section__header .header__menu--mb img {
        display: block;
        cursor: pointer;
    }

    .section__header .header__logo .header__logo--img {
        width: 128px;
    }

    .header__menu--mb {
        display: block;
    }
}

@media screen and (max-width: 767px) {
    .header__mobile .header__mobile--item a {
        font-size: 14px;
    }
}

@media screen and (max-width: 576px) {
    .header__mobile.show {
        left: 35%;
    }
}
