@media only screen and (min-width: 991px) {
    
    .hide-on-desktop {
        
        display: none;
        
    }
}

@media only screen and (max-width: 991px) {
    
    .hide-on-mobile {
        
        display: none;
        
    }
}