.benefits-section {
  padding-top: 160px;
}

.benefits-section__header {
  margin-bottom: 60px;
}

.benefits-section__cards {
  margin: 0;
  gap: 32px;
}

.benefits-section__cards .cards__item {
  margin-top: 0;
  padding: 0;
}

.benefits-section__card {
  display: flex;
  flex-flow: column nowrap;
  width: 100%;
  height: 100%;
  background-color: var(--color-container);
  border-radius: 32px;
  padding: 42px;
}

.benefits-section__card-img {
  width: 150px;
  height: 108px;
  margin-bottom: 20px;
}

.benefits-section__card-title {
  margin-bottom: 20px;
}

@media screen and (max-width: 1199px) {
  .benefits-section {
      padding-top: 120px;
  }

  .benefits-section__header {
    margin-bottom: 60px;
  }

  .benefits-section__cards {
    gap: 32px;
  }

  .benefits-section__card-img {
    margin-bottom: 20px;
  }

  .benefits-section__card-title {
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 767px) {
  .benefits-section {
    padding-top: 80px;
  }

  .benefits-section__header {
    max-width: 225px;
    margin: 0 auto 16px;
  }
  
  .benefits-section__card-img {
    margin-bottom: 20px;
  } 

  .benefits-section__card-title {
    margin-bottom: 20px;
  }

  .benefits-section__cards {
    gap: 24px;
  }
}