.guarantee-section {
  padding: 48px 12px;
  text-align: center;
}
.guarantee-section__title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  font-family: "Playfair display";
}
.guarantee-section__icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 800px;
  margin: 42px auto 0;
  row-gap: 12px;
}
.guarantee-section__icon-item {
  flex: 1 1 25%;
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px;
}
.guarantee-section__icon--img img {
  max-width: 48px;
  max-height: 48px;
  display: block;
}
.guarantee-section__icon-title {
  font-weight: var(--body-font-weight);
  font-size: 16px;
  margin-top: 12px;
}

@media (max-width: 768px) {
    .guarantee-section__title {
        font-size: 32px;
    }
  .guarantee-section__icon-item {
    flex: 1 1 50%;
  }

  .guarantee-section__icon-title {
      font-size: 12px;
  }
}