.benefits {
  margin: 40px 0;
}
.benefits__wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.benefits__item {
  flex: 1 1 calc(33% - 60px);
  display: flex;
  padding: 20px;
  margin-bottom: 10px;
  border: 1px solid var(--additional-c-elements);
  border-radius: 15px;
}
.benefits__item .title {
  font-size: 18px;
  font-weight: 700;
  line-height: 130%;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.benefits__item p {
  line-height: 1.2;
}
.benefits__icon {
  margin-right: 20px;
  margin-bottom: 20px;
}
.benefits__icon svg, .benefits__icon img {
  width: 20px;
  height: 20px;
  padding: 20px;
  background: var(--additional-c-elements);
  border-radius: 10px;
}

@media screen and (max-width: 992px) {
  .benefits__item {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    flex: 1 1 calc(50% - 60px);
  }
}
@media screen and (max-width: 568px) {
  .benefits__item {
    flex: 1 1 100%;
  }
}/*# sourceMappingURL=benefits.css.map */