#header {
    z-index: 1030;
    position: relative;
    background-color: var(--white);
    border-bottom: 1px solid #E9EBEE;
    padding: 0.875rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo-menu {
    display: flex;
    align-items: center;
    gap: 4.5rem;
}

.header-logo {
    max-width: 75px;
}

.nav-menu.top-header-menu ul {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-login {
    height: 2.5rem;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color1);
    transition: 0.3s;
}

.header-login:hover {
    color: #0056D6;
}

.header-sign {
    height: 2.5rem;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background-color: var(--color1);
    border-radius: 0.5rem;
    transition: 0.3s;
}

.header-sign:hover {
    background-color: #0056D6;
    color: var(--white);
}

/* --------------------
    Menu Mobile
-------------------- */
#mask {
    position: fixed;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.5);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
}

#menumobile {
    position: fixed;
    top: 0;
    bottom: 0;
    right: -300px;
    width: 250px;
    background: var(--white);
    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;
}

#nomenumobile {
    cursor: pointer;
    transition: all 0.5s;
    width: 2rem;
    height: 2rem;
    background: transparent;
    text-align: center;
    display: inline-flex;
    color: #242424;
    font-size: 16px;
    align-items: center;
    justify-content: center;
}

.come-menumobile {
    right: 0 !important;
}

.title-mm {
    background: var(--white);
    padding: 20px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #E9EBEE;
}

.title-mm img {
    user-select: none;
}

.btn-mm {
    padding: 0 20px;
    margin-top: 20px;
}

.btn-mm a {
    display: flex;
}

.main-mm ul li a {
    color: #242424;
    display: block;
    padding: 8px 20px;
    position: relative;
    /* font-family: var(--main_font); */
}

.main-mm ul li a:hover {
    color: var(--color1);
}

.main-mm ul li>.sub-menu {
    position: relative;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), padding 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s ease;
    background: #F7F9FC;
    padding: 0 40px 0 0;
    opacity: 0;
}

.main-mm ul li>.sub-menu.sub-menu-open {
    opacity: 1;
}

.main-mm ul li>.sub-menu li a {
    padding: 7px 0;
    font-size: 0.9rem;
}

.childer i {
    position: absolute;
    cursor: pointer;
    top: 9px;
    border: solid #242424;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    left: 10px;
}

.childer.active i {
    transform: rotate(225deg);
    -webkit-transform: rotate(225deg);
}

.childer {
    position: absolute;
    left: 1rem;
    cursor: pointer;
    top: 10px;
    width: 25px;
    height: 25px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.come-submenu {
    right: 0 !important;
}

.sub-closer {
    cursor: pointer;
    top: 10px;
    width: 25px;
    height: 25px;
    background: transparent;
    overflow: hidden;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sub-closer i {
    cursor: pointer;
    top: -1px;
    border: solid var(--color1);
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    position: relative;
    left: -1px;

}

.title-subcome {
    color: var(--color1);
    font-weight: normal;
    position: relative;
    top: 2px;
}

.icon-menu,
.header-ms .search-box .icon-search {
    font-size: 1.25rem;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #242424;
}

.header-ms .search-box .icon-search {
    font-size: 1.25rem;
}

@media (max-width: 1199.99px) {
    .nav-menu.top-header-menu {
        display: none;
    }

    .header-actions-mobile a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 2rem;
        height: 2rem;
        font-size: 1.5rem;
        color: #242424;
    }

    .header-actions {
        flex-direction: column;
        gap: 1rem;
        padding-top: 1rem;
        border-top: 1px solid #E9EBEE;
    }

    .header-actions .header-sign {
        width: 90%;
    }
}

@media (min-width: 1200px) {}

@media screen and (min-width: 1200px) and (max-width: 1300px) {
    .header-logo-menu {
        gap: 30px;
    }
}