.section7 {
  width: 100%;
  height: 100%;
}

.section7 h1 {
  font-size: 35px;
  color: black;
  margin-top: 10%;
  text-align: center;
}
.section7 h1 span{
  color: #f5a934;
}
.client-slider {
  margin-top: 5%;
  width: 100%;
  overflow: hidden;
}

.client-slider-wrapper {
  display: flex;
  transition: transform 1s ease;
  width: calc(100% * 8);
}

.client-slider-items {
  display: flex;
  width: 100%;
}

.client-slider-items img {
  width: auto;
  height: 130px;
  min-width: 0;
  max-width: none;
  margin-right: 80px;
  opacity: 0.6;
  transition: opacity 0.5s ease;
}

.client-slider-items img:last-child {
  margin-right: 0;
}


.client-slider-items img:hover{
  filter: grayscale(0%);
  opacity: 1;
}