.benefits {
  margin-bottom: 40px;
  margin-top: 24px;
}
@media (min-width: 992px) {
  .benefits {
    margin-top: 0;
  }
}
.benefits .container {
  position: relative;
}
.benefits__title {
  font-size: 1.375rem;
}
@media (min-width: 768px) {
  .benefits__title {
    font-size: 2.125rem;
  }
}
.benefits__row {
  margin-top: 2px;
}
@media (min-width: 992px) {
  .benefits__row {
    width: 100%;
    margin-top: 32px;
    position: absolute;
    top: -125px;
    left: 0;
    padding: 0 56px;
  }
}
.benefits__col {
  margin-top: 12px;
}
@media (min-width: 992px) {
  .benefits__col {
    margin-top: 0;
  }
}
.benefits-elem {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-radius: 16px;
  background: var(--bs-white);
  padding: 24px;
  height: 100%;
  box-shadow: 0px 3px 8px 0px rgba(0, 0, 0, 0.07);
}
.benefits-elem__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  margin-bottom: 22px;
  border-radius: 50px;
  background: var(--bs-primary);
  color: var(--bs-body-bg);
  font-size: 20px;
  font-weight: 600;
}
@media (min-width: 768px) {
  .benefits-elem__icon {
    font-size: 1.5rem;
  }
}
.benefits-elem__heading {
  font-size: 1.5rem;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.benefits-elem__description {
  line-height: 1.5;
  color: var(--gray-font-color);
}
