/* ------------------banner(service request)---------------------- */
.group-section-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;
}
.banner-heading {
  font-weight: 700;
  font-size: 30px;
  color: #fff;
}

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

/* <!---------------------group & partners ------------------> */
.group-section h1 {
  font-size: 24px;
  font-weight: 500;
}
.card {
  border-radius: 0;
  border: 1px solid #d9d9d9;
  background-color: #ffffff;
}
.card-text {
  font-size: 14px;
  font-weight: 400;
  color: #6b748c;
  letter-spacing: 0.02em;
}
.card-link {
  color: #dd1f4d;
}

.card-link:hover {
  text-decoration: underline;
}
.card-second {
  background-color: #fafafa;
  border-radius: 0;
  border: none;
  padding: 48px 32px !important;
}

@media (max-width:768px){
    .card-text{
        text-align: justify !important;
    }
}

