.box-navbar {
    background: #f94e41;
    display: flex;
    align-items: center;
    padding: 14px 60px;
    position: sticky;
    width: 100%;
    box-sizing: border-box;
    left: 0;
    z-index: 100;
}

    .box-navbar .logo {
        display: block;
        width: 260px;
    }

    .box-navbar .menu {
        margin: 0 0 0 auto;
        padding: 0;
        list-style: none;
        display: flex;
    }

        .box-navbar .menu > * + * {
            margin-left: 15px;
            padding-left: 15px;
        }

            .box-navbar .menu > * + *::before {
                content: "";
                background: rgba(255, 255, 255, 0.2);
                position: absolute;
                left: 0;
                top: 50%;
                transform: translateY(-50%);
                width: 1px;
                height: 16px;
            }

        .box-navbar .menu li {
            position: relative;
        }

        .box-navbar .menu a {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #fff;
            font-family: "Plus Jakarta Sans", sans-serif;
            font-size: 13px;
            font-weight: 700;
            line-height: 100%;
            text-decoration: none;
        }

    .box-navbar .btn-expand {
        width: 20px;
        height: 20px;
        margin-left: 40px;
        border: none;
        background: none;
        cursor: pointer;
        padding: 0;
    }

.listMenu {
    position: absolute;
    top: 55px;
    right: 60px;
    z-index: 1000;
}

.listMenu_ul {
    display: none;
    width: 390px;
    height: calc(100% - 300px);
    padding: 8px 24px;
    flex-direction: column;
    align-items: flex-start;
    flex-shrink: 0;
    background: white;
    animation: Gvc13T9u .2s ease-in both;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 70, 0.15);
    box-shadow: 0px 2px 12px 0px rgba(0, 0, 0, 0.07);
}

@keyframes Gvc13T9u {
    from {
        transform: translateY(15px);
    }

    to {
        transform: translateY(0px);
    }
}

@keyframes _3rGzcfsn {
    from {
        transform: translateY(0px);
    }

    to {
        transform: translateY(15px);
    }
}

.listMenu_ul_item {
    color: #020626;
    font-family: "Plus Jakarta Sans";
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    display: flex;
    padding: 16px 0;
    gap: 16px;
    border-bottom: 1px solid #EAEEF3;
    align-items: center;
}

    .listMenu_ul_item:last-child {
        border-bottom: none;
    }

.listMenu_ul span {
    background: #F94E41;
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.listMenu_ul_item a {
    color: #000046;
}

@media (max-width: 767px) {
    .box-navbar {
        padding: 14px 15px;
        justify-content: space-between;
    }

        .box-navbar .menu {
            display: none;
        }

        .box-navbar .logo {
            width: 200px;
        }

    .listMenu {
        position: absolute;
        top: 48px;
        right: 0px;
        z-index: 1000;
        width: 100%;
        height: 100vh;
    }
    .listMenu_ul {
        width: 100%;
        height: 100vh;
        padding: 0px 12px;
        flex-direction: column;
        align-items: flex-start;
        flex-shrink: 0;
        background: #FFF8F8;
        animation: Gvc13T9u .2s ease-in both;
    }

}
