/* Custom menu css */
.s-menu li {
    display: flex;
    align-items: center;
}

.s-menu li::before {
    content: "";
    opacity: 80%;
    width: 0px;
    height: 0px;
    transition: all .3s;
    background-color: var(--secondary);
}
.s-menu li:hover::before , .s-menu li.active::before{
    width: 8px;
    height: 12px;
    margin-right: 2px;
}
.s-menu li:hover a, .s-menu li.active a  {
    
}

.s-mobile-menu li {
    
}
.s-mobile-menu li::before{
    content: "";
    width: 0px ;
    height: 0px;
    background-color: var(--secondary);
    margin-right: 2px;
    transition: all .3s;

}
.s-mobile-menu li:hover::before , .s-mobile-menu li.active::before{
    width: 12px ;
    height: 12px;
}

