/* ------------------banner(service request)---------------------- */
.service-request-banner {
    background-image: url("../images/service-request/banner.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 176px;
    display: grid;
    place-items: center start;
    margin-bottom: 24px;
  }
  .banner-heading {
    font-weight: 700;
    font-size: 30px;
    color: #fff;
    
    .card-img-top {
        width: 100%;
        aspect-ratio: 338 / 232;
        object-fit: cover;
        border-radius: 35px;
    }


  }
  @media (max-width: 768px) {
    .service-request-banner {
      height: 88px;
    }
    .banner-heading {
      font-size: 22px;
    }
  }
  