.hero-section-mesh {
    position: relative;
    min-height: 267px;
    overflow-x: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-inline: 1rem;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../img/wire-mesh/coils-of-steel-wire-rabitz-mesh-netting-rolls-in-warehouse-.jpg);
    background-position: center;
  }
  .hero-section-mesh::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.6); /* Adjust the transparency as needed */
  }
  .hero-section-mesh h1 {
    font-size: 2rem;
    color: white;
    margin-bottom: 1rem;
  }
  .hero-section-mesh p {
    font-size: 1.125rem;
    color: #ff7800;
  }

    .mesh-1{
      background-image: url(../img/wire-mesh/wire-1.jpg);
    }
    .mesh-2{
      background-image: url(../img/wire-mesh/wire-2.jpg);
    }
    
  
  @media (min-width: 767px) {
    .hero-section-mesh {
      min-height: 445px;
    }
  
    .hero-section-mesh h1 {
      font-size: 3rem;
    }
  }
  @media (max-width: 1030px) {
    .hero-section-mesh {
      background-position: unset;
    }
  }
  