How to remove slideshow from mobile in warehouse theme?

We are currently using the warehouse theme and we want to remove the slideshow from mobile only as it doesnt look right. Can anyone help?

@MEDHealthChoice Please share your store URL and password(If it is password protected.).

super easy, click on your home page then right-click on dev tools (inspect) follow the flow .. once in dev mode you will see where it says elements highlighted in blue

once inside elements right-click again on the slider it will say something like

now that you have the element name whatever it is you need to go back to your theme files (click theme inside your store) once you are inside themes click on actions duplicate and duplicate your theme then rename it to no slider mobile and publish that one. now once its published click on actions again and go to Edit code find your main.css file and scroll all the way to the bottom and add

@media screen and (max-width: 780px) {
  .hero-inner{
    display:none;
  }
}