How to make banner images responsive from desktop to mobile views in dawn

Hello everyone, can anyone guide me how can i make desktop banner into mobile banner in dawn theme . i want to upload another mobile banner

https://shopbulbul.com

i have attached both banners for desktop and mobile. desktop banner is fine but i want to upload separate mobile banner too .

I GOT SOLUTION ONLINE THANK YOU

Display On Desktop Only With Following Code:

Copy Code

@media screen and (max-width: 750px) {
  .banner, slideshow-component {
    display: none;
  }
}

Display On Mobile Only With Following Code:

Copy Code

@media screen and (min-width: 750px) {
  .banner, slideshow-component {
    display: none;
  }
}