.clients {
  position: relative;
}
.clients .container {
  position: relative;
  z-index: 1;
}
.clients .bg-item {
  position: absolute;
  top: 0;
  z-index: 0;
}
.clients .bg-item--left {
  left: 0;
}
.clients .bg-item--right {
  right: 0;
}
.clients__items {
  margin-top: 30px;
  gap: 40px 0;
}
@media screen and (max-width: 992px) {
  .clients__items {
    gap: 28px 0;
  }
}
@media screen and (max-width: 576px) {
  .clients__items {
    margin-top: 26px;
    gap: 16px 0;
  }
  .clients .bg-item {
    display: none;
  }
}

.clients .content-header {
  max-width: max-content;
}

.clients .block-title {
  color: var(--brandAccentPrimary);
  font-family: MBold;
  font-size: 34px;
  line-height: 1.2;
  margin-bottom: 20px;
}
@media screen and (max-width: 576px) {
  .clients .block-title {
    font-size: 22px;
  }
}
.clients .block-desc {
  text-align: center;
  font-family: MMedium;
  font-size: 16px;
  line-height: 1.5;
}
@media screen and (max-width: 576px) {
  .clients .block-desc {
    font-size: 14px;
  }
}
.clients__item {
  -ms-flex-preferred-size: 33.3333333333%;
  flex-basis: 33.3333333333%;
}
.clients__item img {
  display: block;
  height: auto;
  width: 100%;
}
@media screen and (min-width: 1200px) {
  .clients__item {
    -ms-flex-preferred-size: 14.2857142857%;
    flex-basis: 14.2857142857%;
  }
}
@media screen and (max-width: 1199px) and (min-width: 768px) {
  .clients__item {
    -ms-flex-preferred-size: 16.6666666667%;
    flex-basis: 16.6666666667%;
  }
}
@media screen and (max-width: 767px) and (min-width: 576px) {
  .clients__item {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
  }
}
