/* ------------------banner(service request)---------------------- */
.terms-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) {
  .terms-section-banner {
    height: 88px;
  }
  .banner-heading {
    font-size: 22px;
  }
}
/* -----------------------terms & conditions------------------ */
.terms-header {
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.02em;
  color: hsla(230, 12%, 19%, 1);
  margin-bottom: 24px;
  text-transform: uppercase;
}
.terms-content,.terms-list li {
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: hsla(224, 13%, 48%, 1);
  margin-bottom: 48px;
  text-align: justify;
  text-transform: none;
}
.content-2{
    margin-bottom: 15px;
}
.terms-list li{
    margin-bottom: 10px;
}
.terms-list:last-child{
    margin-bottom: 48px;
}
.terms-container {
  margin-top: 48px;
  border-bottom: 1px solid hsla(0, 0%, 85%, 1);
}
.terms-container:last-child{
    border-bottom: none;
}
.contact-email{
    text-transform: none;
    color: #e63946;
    font-weight: 600;
}
.contact-email:hover{
    text-decoration: underline;
}
