/* SliderStyles.module.css */
.desktopImage {
    display: block !important;
  }
  
  .mobileImage {
    display: none !important; /* Hide mobile images by default */
  }
  
  /* Media query to adjust visibility based on screen size */
  @media (max-width: 767px) {
    .desktopImage {
      display: none !important; /* Hide desktop images on small screens */
    }
    .mobileImage {
      display: block !important; /* Show mobile images on small screens */
    }
  }
  