How to change another image for image banner in mobile view

How to change another image for image banner in mobile view

In theme.liquid, add the followings:

Idea
<style>
    #shopify-section-ID {
      @media (max-width: 768px) {
  .banner__media {
    content: url("image URL") !important;
  }
    }
  </style>