.header-bar {
    background-color: var(--color3);
    padding: 0.5rem;
    background-image: url(../img/headerbar-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.header-bar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-bar-content span,
.header-bar-content a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 12px;
}

.header-bar-content a:hover i {
    transition: 0.3s;
    color: var(--color1);
}

.header-bar-content i {
    font-size: 1rem;
}

#header {
    position: sticky;
    z-index: 99;
    top: 0;
    box-shadow: 0px 0px 32px 0px #5757560A;
    backdrop-filter: blur(48px);
    height: 100%;
    background: rgb(255 255 255 / 80%);
}

.header-logo {
    width: 80px;
}

.mobile .icon-search {
    font-size: 18px;
}

.header-menu>li:first-child>a>span {
    background-color: var(--color3);
    padding: 0.4rem 14px;
    border-radius: 24px;
    color: #ffffff;
    display: block;
}

.bottom-header .header-menu>li:first-child>a::after {
    content: '';
    height: 1rem;
    display: inline-flex;
    align-items: center;
    margin-left: 24px;
    padding-top: 6px;
    width: 1px;
    background-color: #212121;
}

.top-header-inner {
    gap: 8px;
    position: static;
}

.header {
    border-top: 1px solid #E2E2E2;
}

.top-header-content {
    gap: 8px;
    justify-content: flex-end;
}

.header-call-button {
    border-radius: 2rem;
    font-size: 14px;
    line-height: 24px;
    color: #212121B5;
    display: flex;
    color: #fff;
    padding: 6px 18px 6px 6px;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background-color: var(--color3);
    min-height: 44px;
}

.header-call-button i {
    background-color: #fff;
    padding: 7px;
    border-radius: 50%;
    color: var(--color3);
}

.icon-phone {
    font-size: 24px;
}

.header-location {
    flex-wrap: wrap;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    direction: rtl;
    background-color: #FFFFFF;
    border-radius: 8px;
    padding: 0.5rem 0.5rem;
    box-shadow: 0 4px 8px #0000000a;
}

.locations {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #FFFFFF;
    border: 1px solid #ccc;
    z-index: 1000;
    padding: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    transition: 0.3s;
}

.location-item {
    border-bottom: 1px solid #997BB633;
    padding: 24px 0px 16px 24px;
}

.location-item:last-child {
    border-bottom: none;
}

.location-item span {
    color: #121212;
    line-height: 27.64px;
    font-size: 16px;
    font-weight: 500;
    position: relative;
}

.location-item p {
    color: #121212;
    font-weight: 400;
    font-size: 14px;
}

.location-item span::before {
    content: '';
    background-color: #997BB6;
    width: 3px;
    height: 12px;
    position: absolute;
    border-radius: 0 3px 3px 0;
    left: -8px;
    bottom: 0;
    top: 0;
    margin: auto;
    display: block;
}

.header-location:hover .icon-location,
.header-location:hover .icon-arrow-down {
    color: var(--color2);
}

.location-item:hover p {
    color: var(--color2);
}

.icon-arrow-down {
    font-size: 10px;
    transition: 0.3s;
}

.icon-location {
    font-size: 24px;
}

.header-location:hover .locations,
.lang-button:hover .locations {
    opacity: 1;
    visibility: visible;
    border-radius: 8px;
    top: 55px;
}

.header-location:hover .icon-arrow-down,
.lang-btn:hover .icon-arrow-down {
    transform: rotate(180deg);
}

.header-location .location-item {
    margin-bottom: 5px;
}

.lang-button {
    position: relative;
    display: inline-block;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 4px 8px;
    background-color: #024A6333;
    border-radius: 2rem;
    min-height: 44px;
}

.lang-btn i.icon-lang-left,
.lang-btn i.icon-lang-right {
    margin: 0 5px;
}

.header-search {
    display: flex;
    align-items: center;
    background-color: #024A6333;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    justify-content: center;
    transition: 0.3s;
    cursor: pointer;
}

.header-search:hover {
    background-color: var(--color3);
}

.header-search:hover .icon-search {
    color: #fff;
}

.icon-search {
    font-size: 1.13rem;
    color: var(--color3);
    transition: 0.3s;
}

.icon-language {
    font-size: 24px;
    color: var(--color3);
    transition: 0.3s;
}

.lang-btn span {
    color: var(--color3);
    transition: 0.3s;
}

.lang-btn:hover {
    background-color: var(--color3);
    color: #fff;
}

.lang-btn:hover span {
    color: #fff;
}

.lang-btn:hover .icon-language {
    color: #fff;
}

/* --------------------
    Menu Mobile
-------------------- */
#mask {
    position: fixed;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.5);
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    display: none;
}

#menumobile {
    position: fixed;
    top: 0;
    bottom: 0;
    left: -300px;
    width: 250px;
    background: #fff;
    z-index: 99991;
    transition: all 0.5s;
    box-sizing: border-box;
    overflow: hidden;
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .3) !important;
    overflow-y: auto;
}

#menumobile img {
    max-width: 130px;
}

#nomenumobile {
    cursor: pointer;
    transition: all 0.5s;
    width: 25px;
    height: 25px;
    background: var(--color3);
    text-align: center;
    border-radius: 3px;
    display: inline-flex;
    color: #fff;
    font-size: 18px;
    align-items: center;
    justify-content: center;
}

.come-menumobile {
    left: 0 !important;
}

.title-mm {
    background: #FFFFFF;
    padding: 20px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--color3);
}

.title-mm img {
    user-select: none;
}

.btn-mm {
    padding: 0 20px;
    margin-top: 20px;
}

.btn-mm a {
    display: flex;
}

.title-sub-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 10px;
    flex-flow: row-reverse;
    border-bottom: 1px solid var(--color2);
    margin-bottom: 1rem;
}

.title-sub-head strong {
    font-family: var(--bold_font);
}

.main-mm {
    padding: 5px 15px;
}

.main-mm ul li a {
    color: #222;
    display: block;
    padding: 8px 0;
    position: relative;
}

.main-mm ul li a:hover {
    color: var(--color2);
}

.main-mm ul li>.sub-menu {
    position: fixed;
    top: 0;
    bottom: 0;
    width: 250px;
    background: #fff;
    left: -250px;
    transition: 0.3s;
    z-index: 9;
    padding: 20px;
}

.childer i {
    position: absolute;
    cursor: pointer;
    top: 9px;
    border: solid #fff;
    border-width: 0 0 2px 2px;
    display: inline-block;
    padding: 3px;
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
    right: 10px;
}

.childer {
    position: absolute;
    right: 0;
    cursor: pointer;
    top: 10px;
    width: 25px;
    height: 25px;
    background: var(--color3);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.come-submenu {
    left: 0 !important;
}

.sub-closer {
    cursor: pointer;
    top: 10px;
    width: 25px;
    height: 25px;
    background: var(--color3);
    border-radius: 3px;
    overflow: hidden;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sub-closer i {
    cursor: pointer;
    top: -1px;
    border: solid #fff;
    border-width: 0 0 2px 2px;
    display: inline-block;
    padding: 3px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    position: relative;
    right: -1px;

}

.title-subcome {
    color: var(--color2);
    font-weight: normal;
    position: relative;
    top: 2px;
}

.icon-menu {
    font-size: 18px;
    color: var(--color3);
}

@media (max-width: 1199.98px) {
    .header-menu>li>a {
        margin: 0 0px;
        padding: 8px 7px;
        font-size: 13px;
    }
}

@media (max-width: 992px) {
    .top-header-inner {
        align-items: center;
    }

    .top-header {
        padding: 6px 0;
    }

    .icon-menu {
        font-size: 18px;
        color: var(--color3);
        padding: 11px;
        border: 2px solid var(--color3);
        border-radius: 50%;
    }

    .header-call-button-mobile,
    .lang-btn-mobile {
        border-radius: 50%;
        border: 2px solid var(--color3);
        font-size: 18px;
        line-height: 24px;
        color: #212121B5;
        display: flex;
        color: var(--color3);
        align-items: center;
        justify-content: center;
        padding: 11px;
    }

    .lang-btn-mobile {
        max-width: 44px;
        max-height: 44px;
        width: 44px;
        height: 44px;
    }

    .lang-btn-mobile span {
        line-height: 1;
        font-size: 16px;
    }

    .header-search {
        background-color: transparent;
        border: 2px solid var(--color3);
    }

}