.clients__section {
  padding-block: 48px 32px;
}

.clients__text {
  text-align: center;
  margin-bottom: 24px;
  font-size: var(--text-l);
}

.clients__list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
align-items: center;
  max-width: 600px;
  gap: 22px 44px;
}
.clients__item {
  flex: 0 0 40%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.clients__logo {
  width: 100%;
  object-fit: contain;
}

.about__section {
  background: var(--grey-background-section);
  padding-block: 80px;
}

.about__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 768px;
}

.about__title {
  font-size: var(--title-ml);
  font-weight: 700;
  align-self: flex-start;
  margin-bottom: 32px;
}
.about__title span {
  font-weight: 600;
}

.about__desc {
  font-size: var(--text-m);
  font-weight: 400;
  width: 100%;
}

@media (width >= 768px) {
  .clients__list {
    gap: 32px;
  }
  .clients__item {
    flex: 0 21%;
  }

  .about__section {
    padding-block: 120px;
  }

  .about__title {
    margin-bottom: 48px;
  }
}

@media (width >= 1248px) {
  .clients__section {
    padding-block: 64px 32px;
  }
  .clients__list {
    max-width: 820px;
  }
  .clients__item {
    flex: 0 22%;
  }
  .about__container {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 100%;
  }

  .about__desc {
    max-width: 608px;
  }
}
