.who {
  width: 100%;
}

.who .container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 60px;
}

.who_row {
  width: 100%;
}

.who h2 {
  width: 100%;
  max-width: 480px;
}

.who_desc {
  font-size: 14px;
  font-weight: 400;
  line-height: 140%;
  width: calc(100% - (540px));
}

.img_wrap {
  margin-top: 36px;
  width: 100%;
  max-width: 480px;
  border-radius: 30px;
}

.who_items {
  width: calc(100% - (540px));
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.who_item {
  width: calc(100% / 2 - (40px / 2));
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 400;
  line-height: 130%;
}

.who_item .lozad {
  border-radius: 12px;
  background: var(--Platinum);
  min-width: 40px;
  height: 40px;
  aspect-ratio: 1 / 1;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 20px;
}

@media (max-width: 992px) {
  .who .container {
    gap: 16px;
  }

  .who h2 {
    margin-top: 8px;
    max-width: 100%;
  }

  .who_desc {
    width: 100%;
  }

  .img_wrap {
    display: none;
  }

  .who_items {
    margin-top: 24px;
    width: 100%;
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .who_item {
    width: 100%;
  }
}
