.what-have-we {
  padding: clamp(64px, 5vw, 100px) 0;
  background: #F3F1EC;
}
.what-have-we__title {
  font-size: clamp(32px, 4vw, 40px);
  margin-bottom: 16px !important;
  font-weight: 400;
}
.what-have-we__text {
  font-size: clamp(16px, 4vw, 18px);
  max-width: 435px;
  line-height: 1.6;
}
.what-have-we__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 48px 1fr;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 48px;
  grid-row-gap: 48px;
  list-style: none;
  padding-left: 0;
  margin-top: 10px;
}
.what-have-we__item {
  padding: 16px 7px 16px 0;
  border-bottom: 1px solid #0E1122;
}
.what-have-we__item-icon {
  height: 40px;
  margin-bottom: 24px;
}
.what-have-we__item-icon img {
  height: 100%;
  width: auto;
}
.what-have-we__item-title {
  font-size: 18px;
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 5px !important;
}
.what-have-we__item-text {
  font-size: 18px;
  color: rgba(14, 17, 34, 0.6980392157);
  line-height: 1.5;
}
@media (max-width: 1199px) {
  .what-have-we__text {
    max-width: 355px;
  }
  .what-have-we__list {
    margin-top: 0;
  }
}
@media (max-width: 991px) {
  .what-have-we__text {
    max-width: 600px;
  }
  .what-have-we__list {
    margin-top: 48px;
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }
}
@media (max-width: 767px) {
  .what-have-we__title br {
    display: block;
  }
}
@media (max-width: 575px) {
  .what-have-we__list {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
    width: 335px;
  }
  .what-have-we__text {
    max-width: 355px;
    margin: 0 auto;
  }
}