/* Services */
.services {
  padding: 40px 0;
  text-align: center;
  background-size: contain;
  background-repeat: no-repeat;
  margin: 0 20px;
}

.services h2 {
  color: var(--heading-color);
  margin-bottom: 10px;
  font-size: 50px;
  font-weight: 600;
}
.services h3 {
  margin-top: 26px;
  color: var(--heading-color);
}
.services p {
  color: #555;
  line-height: 24px;
}

.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 30px;
}
.card img {
  height: auto;
  width: 18%;
}

.card {
  background: var(--white);
  border-radius: 20px;
  padding: 20px 20px;
  flex: 0 calc(25% - 15px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: 2px solid #d7ddee;
  text-align: left;
}

.card h3 {
  color: var(--heading-color);
  margin-bottom: 10px;
  padding: 0px 30px 0 0;
  font-size: 20px;
  font-weight: 600;
}
.card img {
  height: 44px;
  width: 44px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}
@media (max-width: 992px) {
  .card {
    flex: 0 calc(50% - 10px);
  }
  .services h2 {
    font-size: 32px;
  }
}
@media (max-width: 600px) {
  body section.services .service-cards.d-flex.flex-wrap .card {
    flex: 0 0 100% !important;
    width: 100% !important;
    max-width: 100% !important;
    display: grid;
    grid-template-columns: 60px 1fr;
    column-gap: 16px;
    align-items: center;
  }
  .service-cards .card img {
    grid-row: 1 / 3;
    width: 52px;
    height: 52px;
    margin: 0;
  }
  .service-cards .card h3 {
    grid-column: 2;
    margin-top: 0 !important;
    padding-right: 0;
    font-size: 18px;
  }
  .service-cards .card p {
    grid-column: 2;
    margin-bottom: 0;
  }
}
