.no-bullets { 
  list-style-type: none; 
}

#desktop-text {
    display: block;
}

/* Mobile styles */
@media only screen and (max-width: 992px) {
    #desktop-text {
        display: none;
    }
    #mobile-text {
        display: block;
    }
}

@media only screen and (min-width: 992px) {
    #desktop-text {
        display: block;
    }
    #mobile-text {
        display: none;
    }
}