.services {
  padding: 120px 0;
}

.services__cards {
  display: flex;
  flex-wrap: wrap;
  row-gap: 48px;
  column-gap: 30px;
}

.services__card {
  display: flex;
  flex-direction: column;
  width: calc(50% - 15px);
}

.services__card-img {
  border-radius: 8px;
  margin-bottom: 24px;
}

.services__card-title {
  font-size: 24px;
  line-height: 1.3;
  font-weight: 600;
  margin-bottom: 8px;
  font-family: var(--font-playfair);
  color: var(--green);
}

.services__card-text {
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .services {
    padding: 60px 0;
  }

  .services__cards {
    flex-direction: column;
    gap: 24px;
  }

  .services__card {
    width: 100%;
  }

  .services__card-title {
    font-size: 22px;
  }


}

@media (max-width: 400px) {

}