.profiles-rehau__list {
  display: grid;
  gap: 40px;
}
.profiles-rehau__item {
  display: grid;
  grid-template-columns: 1fr 4fr;
  grid-gap: 10px;
}
.profiles-rehau__item a {
  text-decoration: none;
  color: #242424;
}
.profiles-rehau__description {
  display: flex;
  align-items: center;
  flex-grow: 1;
  padding: 5px 45px;
}

.balloon {
  display: flex;
  align-items: center;
  gap: 46px;
  width: 20%;
  flex-shrink: 0;
  border-right: 1px solid rgba(36, 36, 36, 0.1);
}
.balloon__data {
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 150%;
  color: #fff;
  height: 70px;
  width: 70px;
  border-radius: 50%;
  background: linear-gradient(90deg, #ef4343 -0.19%, #ff6262 99.95%);
}
.balloon__label {
  font-weight: 700;
  font-size: 24px;
  line-height: 150%;
}
@media (max-width: 576px) {
  .profiles-rehau__item {
    grid-template-columns: 1fr;
  }
  .profiles-rehau__description {
    padding: 0;
  }
  .balloon {
    border: none;
  }
  .balloon__label {
    font-size: 16px;
  }
}
