.benefits__title {
  font-size: 22px;
}
@media (min-width: 768px) {
  .benefits__title {
    font-size: 32px;
  }
}
.benefits__row {
  margin-top: 2px;
}
@media (min-width: 992px) {
  .benefits__row {
    margin-top: 32px;
  }
}
.benefits__col {
  margin-top: 30px;
}
@media (min-width: 992px) {
  .benefits__col {
    margin-top: 0;
  }
}
.benefits-elem {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.benefits-elem.-border {
  height: 100%;
  padding: 20px;
  border: 1px solid var(--bs-border-color);
  border-radius: 50px;
}

.benefits-elem__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  margin-bottom: 22px;
  border-radius: 10px;
  background: var(--bs-primary);
  color: var(--bs-body-bg);
  font-size: 20px;
  font-weight: 700;
}
@media (min-width: 768px) {
  .benefits-elem__icon {
    font-size: 24px;
  }
}
.benefits-elem__heading {
  font-size: 20px;
  margin-bottom: 16px;
}
.benefits-elem__description {
  line-height: 1.5;
  color: var(--gray-font-color);
}