.who__container {
  display: flex;
  flex-direction: column;
  padding-top: 7rem;
  padding-bottom: 5rem;
  gap: 6rem;
}

.who__text {
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  gap: 2.5rem;
}

.text__title {
  font-size: 1.5em;
}

.text__subtitle {
  font-weight: 700;
  font-size: 4em;
}

.text__description {
  font-size: 1.4em;
  width: 60%;
}

.who__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
}

.list__title {
  font-weight: 900;
  font-size: 2.5em;
}

.list__items {
  display: flex;
  gap: 4rem;
}

.list__items .list__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.list__items .list__item .item__image {
  width: 96px;
  height: 96px;
}

.item__title {
  font-weight: 600;
  font-size: 1.5em;
}

@media screen and (max-width: 675px) {
  .who__container {
    padding: 2rem 1rem;
  }

  .text__subtitle {
    font-size: 2em;
  }

  .text__description {
    width: 100%;
  }

  .list__items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .item__image {
    height: 72px;
  }
}
