.hero-section-acf {
    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/anti-climb-fence/fence.jpg);
    background-position: center;
  }
  .hero-section-acf::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.6); /* Adjust the transparency as needed */
  }
  .hero-section-acf h1 {
    font-size: 2rem;
    color: white;
    margin-bottom: 1rem;
  }
  .hero-section-acf p {
    font-size: 1.125rem;
    color: #ff7800;
  }
  .metal-type{
    background-color: #ff7800;
    display: inline-block;
    color: #fff;
    padding: 20px;
    margin-top: 5%;
    font-size: 32px;
    font-weight: 700;
    font-family: 'arial';
  }
  
  @media (min-width: 767px) {
    .hero-section-acf {
      min-height: 445px;
    }
  
    .hero-section-acf h1 {
      font-size: 3rem;
    }
  }
  @media (max-width: 1030px) {
    .hero-section-acf {
      background-position: unset;
    }
  }
  