@media only screen and (max-width: 767px) {
    .hide-on-mobile { display: none !important; }
}
@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .hide-on-tablet { display: none !important; }
}
@media only screen and (min-width: 1025px) {
    .hide-on-desktop { display: none !important; }
}
