/* Hide Mobile Section on Desktop */
@media screen and (min-width: 768px) {
#mobile-section-id {
display: none;
}
}
/* Hide Desktop Section on Mobile */
@media screen and (max-width: 767px) {
#desktop-section-id {
display: none;
}
}

