.advantages-window-module__wrapper {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 70px;
}
.advantages-window-module__head {
  display: flex;
  gap: 24px;
  align-items: center;
}
.advantages-window-module__icon {
  font-weight: 700;
  font-size: 24px;
  line-height: 150%;
  color: #fff;
}
.advantages-window-module__title {
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
}
.advantages-window-module__description {
  font-weight: 400;
  font-size: 14px;
  line-height: 160%;
}
@media (max-width: 576px) {
  .advantages-window-module__wrapper {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 30px;
  }
}
