/* Reset default body and html padding/margin */
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  box-sizing: border-box;
  background-color: #ffffff;
  overflow-x: hidden; /* Prevent sideways scroll */
}

/* Apply box-sizing border-box globally */
*, *::before, *::after {
  box-sizing: border-box;
}

.ind-supplies-product {
    width: 100vw;
    background-size: cover;
    background-position: center center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    text-align: center;
    /* margin-top: 3.8rem; */
    padding:3.6rem 20px 10px 20px;
    position: relative;
    overflow: hidden !important;
    box-sizing: border-box;
  }
  
  .ind-supplies-product h1 {
    color: #0d3281;
    font-size: 5.5rem; /* Default font size for large screens */
    /* margin: 10px 0;
     */
     margin-top: 10rem;
    font-weight: bold;
  }
  
  .ind-supplies-product h2 {
    color: #0d3281;
    font-size: 3rem; /* Default font size for large screens */
    /* margin: 10px 0; */
  }
  
  /* Media Queries */
  
  /* For large tablets and small laptops (1000px - 1200px) */
  @media (max-width: 1200px) and (min-width: 1000px) {
    .ind-supplies-product h1 {
      font-size: 4.5rem; /* Reduce font size */
    }
  
    .ind-supplies-product h2 {
      font-size: 2.5rem; /* Reduce font size */
    }
  }
  
  /* For tablets (760px - 1000px) */
  @media (max-width: 1000px) and (min-width: 760px) {
  
  
    .ind-supplies-product h1 {
      font-size: 3.5rem; /* Smaller font size for tablets */
    }
  
    .ind-supplies-product h2 {
      font-size: 2rem; /* Smaller font size for tablets */
    }
  }
  
  /* For mobile devices (320px - 760px) */
  @media (max-width: 760px) {
    .ind-supplies-product {
      /* padding: 15px; */
      text-align: center;
    }
  
    .ind-supplies-product h1 {
      font-size: 2.5rem; /* Adjust font size for smaller screens */
    }
  
    .ind-supplies-product h2 {
      font-size: 1.5rem; /* Adjust font size for smaller screens */
    }
  }
  
  /* For very small screens (less than 320px) */
  @media (max-width: 320px) {
    .ind-supplies-product h1 {
      font-size: 3rem; /* Further reduce font size */
    }
  
    .ind-supplies-product h2 {
      font-size: 2.2rem; /* Further reduce font size */
    }
  }
   