Themes > Customise > Click on Image Banner section to open settings > Click Custom CSS and select the following code for the image
to show on desktop only:
@media screen and (max-width: 750px) {
.banner, slideshow-component {
display: none;
}
}
to show on mobile only
@media screen and (min-width: 750px) {
.banner, slideshow-component {
display: none;
}
}