/*
фиксация меню на компьютерах
*/
@media (min-width: 992px) {
    #sp-header.header-sticky+#sp-vmmenu{
        position: fixed;
        top: 100px;
        width: 100%;
        z-index: 999;
      /*  background: #959700;*/
    }
    #sp-header.header-sticky+#sp-vmmenu #sp-menu{
        margin-bottom: 0;
    }
}
 
/*
фиксация меню на планшетах
*/
@media (min-width: 768px) and (max-width: 991.98px) {
    #sp-header.header-sticky+#sp-vmmenu{
        position: fixed;
        top: 134px;
        width: 100%;
        z-index: 999;
        background: #959700;
    }
    #sp-header.header-sticky+#sp-vmmenu #sp-menu{
        margin-bottom: 0;
    }
}