Add this code Custom CSS of Image banner section that you want to hide on mobile
@media (max-width: 768px) {
.banner {
display: none;
}
}
And this to section you want to hide on desktop
@media (min-width: 767px) {
.banner {
display: none;
}
}
