/* ------------------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;
}
@media (max-width: 768px) {
  .service-request-banner {
    height: 88px;
  }
  .banner-heading {
    font-size: 22px;
  }
}

/* -----------------products section--------------------- */
.section-title {
  color: #2b2d37;
  font-weight: 600;
  font-size: 26px;
  letter-spacing: 0.02em;
}
.card-title {
  font-weight: 600;
  font-size: 20px;
  color: #393939;
}
.card-text {
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: #6b748c;
}
.details-button {
  padding: 11px 30px;
  border-radius: 0;
  border: 2px solid #dd1f4d;
  color: #dd1f4d;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.02em;
}
.product-card {
  width: 100%;
  height: 609px;
  border-radius: 0;
  overflow: hidden;
  border: none;
}
.product-card img {
  border-radius: 0;
}
.section-header {
  max-width: 1200px;
}
.card-product-body {
  padding: 55px 46px;
  background-color: rgba(243, 243, 243, 0.4);
}
.card-product-body-1 {
  padding: 50px 46px;
  background-color: rgba(243, 243, 243, 0.4);
}
.card-product-body-2 {
  padding: 53px 56px;
  background-color: rgba(243, 243, 243, 0.4);
}
.card-img-top {
  height: 52%;
}
.card-product-body-3 {
  padding: 79px 56px;
  background-color: rgba(243, 243, 243, 0.4);
}
.card-product-img-size {
  flex: 0 0 49%;
  max-width: 49%;
}
@media (max-width: 768px) {
  .card-product-img-size {
    max-width: 100%;
  }
}
@media (max-width: 576px) {

  .product-card {
    height: 403px;
  }
  .card-product-body {
    padding: 31px 20px;
  }
  .card-title {
    font-size: 16px;
  }
  .card-text {
    font-size: 14px;
    line-height: 20px;
  }
  .details-button {
    padding: 9px 23px;
    font-size: 12px;
    width: 100%;
  }
  .section-title {
    font-size: 20px;
  }
}
@media (max-width: 992px) {
  .product-card {
    height: 390px;
  }
  .card-title {
    font-size: 14px;
  }
  .card-text {
    font-size: 14px;
    line-height: 16px;
  }
  .details-button {
    padding: 7px 18px;
    font-size: 12px;
  }
  .section-title {
    font-size: 22px;
  }
  .card-product-body {
    padding: 33px 27px;
  }
  .card-product-body-1 {
    padding: 29px 27px;
  }
  .card-product-body-2,
  .card-product-body-3 {
    padding: 31px 33px;
  }
}
@media (min-width: 768px) and (max-width: 1200px) {
  .product-card {
    height: 460px;
    display: flex;
    flex-direction: column;
  }

  .card-img-top {
    height: 48%;
    object-fit: cover;
  }

  .card-product-body,
  .card-product-body-1,
  .card-product-body-2,
  .card-product-body-3 {
    padding: 32px 28px;
    height: 52%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .card-title {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .card-text {
    font-size: 13px;
    line-height: 20px;
    flex-grow: 1;
  }

  .details-button {
    align-self: flex-start;
    font-size: 13px;
    padding: 8px 20px;
    margin-top: 12px;
  }
}
