
#menu span{
    cursor: pointer;
    transition: all 0.3s ease;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 600;
    padding: 15px 0;
    border-bottom: 2px solid transparent;
}

#menu span:hover{
    border-bottom-color: #fff;
    transform: translateX(10px);
}


@media (min-width: 300px) {

    .navbar_box_icon{
        height: 75%;
        margin-top: 2%;
        margin-left: 5%;
    }

    .navbar_box_icon_span_0{
        min-height: 75px!important;
    }

    .navbar_box_right i{
        display: block;
        color: #fff;
    }

    .navbar_box_right_sections{
        display: none;
    }

    .navbar_box_right_sections span{
        cursor: pointer;
        font-size: 2vh;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        font-weight: 600;
        color: #fff;
        transition: all 0.3s ease;
    }

    .navbar_box_right_sections span:hover{
        background: rgba(255, 159, 74, 0.6);
        padding: 0.7vh 1.5vh;
        border-radius: 8px;
        color: #fff;
        transform: scale(1.05);
        box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    }

}

@media (min-width: 1024px) {

    .navbar_box_icon{
        height: 100%;
        margin-top: 0%;
        margin-left: 2%;
        gap: 15px;
    }

    .navbar_box_icon_span_0{
        min-height: 85px!important;
    }

    .navbar_box_right i{
        display: none;
    }

    .navbar_box_right_sections{
        display: flex;
        gap: 8px;
        align-items: center;
        flex-direction: row;
        flex-wrap: nowrap;
    }

    .navbar_box_right_sections span{
        cursor: pointer;
        font-size: 1rem;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        font-weight: 600;
        color: #fff;
        padding: 10px 22px;
        border-radius: 8px;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .navbar_box_right_sections span::before{
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: rgba(255, 255, 255, 0.2);
        transition: left 0.4s ease;
        z-index: -1;
    }

    .navbar_box_right_sections span:hover::before{
        left: 0;
    }

    .navbar_box_right_sections span:hover{
        background: rgba(255, 159, 74, 0.6);
        transform: scale(1.08);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

}