.service-card .title-wrap p {
  color: var(--default-blue);
}
.card-body-service {
  padding: 24px 15px 24px 20px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 28px;
  height: 100%;
}
.card-body-service .icon {
  height: 60px;
  width: 60px;
  min-width: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.card-body-service.green .icon {
  background: var(--default-green);
}
.card-body-service.green {
  background: #e6f2e1;
}
.card-body-service.purple {
  background: #ebe3f5;
}
.card-body-service.purple .icon {
  background: var(--default-purple);
}
.card-body-service h3 {
  font-size: 1.4rem;
  line-height: 26px;
  font-weight: bold;
  margin: 0;
  font-family: var(--inter-font-family);
  color: #000;
}

@media only screen and (max-width: 1140px) {
  .card-body-service h3 {
    font-size: 1.1rem;
    line-height: 1.1;
  }
}
@media only screen and (max-width: 991px) {
  .service-crd-lst .row {
    gap: 20px;
  }
  .card-body-service {
    margin-bottom: 10px;
    padding: 16px 20px;
  }
  .card-body-service h3 {
    font-size: 1rem;
  }
  .card-body-service .icon {
    height: 54px;
    width: 54px;
    min-width: 54px;
  }
}
@media only screen and (max-width: 767px) {
  .card-body-service {
    gap: 24px;
  }
}
