body1 {
  align-items: center;
  background: #E3E3E3;
  display: flex;
  height: 200vh;
  justify-content: center;
  
}

@-webkit-keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-250px * 7));
  }
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-250px * 7));
  }
}
.slider1 {
  background: white;
  box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.125);
  height: 150px;
  margin: auto;
  overflow: hidden;
  position: relative;
  width: 90%;
}
.slider1::before, .slider1::after {
  background: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0) 100%);
  content: "";
  height: 200px;
  position: absolute;
  width: 300px;
  z-index: 2;
}
.slider1::after {
  right: 0;
  top: 0;
  transform: rotateZ(180deg);
}
.slider1::before {
  left: 0;
  top: 0;
}
.slider1 .slide-track1 {
  -webkit-animation: scroll 40s linear infinite;
          animation: scroll 40s linear infinite;
  display: flex;
  width: calc(300px * 14);
}

.slider1 .slide1 {
  height: 150px;
  line-height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.slider1 .slide1 img {
  margin-left: 40px;
  height: 120px;
  width: 200px;
  object-fit: contain;
}
.clients h1{
  text-transform: uppercase;
  font-family: 'Averia', serif;
  color: rgb(25, 4, 46);
  font-weight: bold;
  text-align: center;
}