@-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));
  }
}
.slider-client {
  background: white;
  box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.125);
  height: 100px;
  margin: auto;
  overflow: hidden;
  position: relative;
  /*width: 960px;*/
  /*margin-top: 5rem !important;*/
  margin-bottom: 5rem !important;
}
.slider-client::before, .slider-client::after {
  background: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0) 100%);
  content: "";
  height: 100px;
  position: absolute;
  width: 200px;
  z-index: 2;
}
.slider-client::after {
  right: 0;
  top: 0;
  transform: rotateZ(180deg);
}
.slider-client::before {
  left: 0;
  top: 0;
}
.slider-client .slide-track {
  -webkit-animation: scroll 40s linear infinite;
          animation: scroll 40s linear infinite;
  display: flex;
  width: calc(250px * 14);
}
.slider-client .slide {
  height: 100px;
  width: 250px;
}
.slide img {
  height: 100%; /* Adjust height relative to its container */
  width: 60%; /* Set width to 60% of its container */
  object-fit: contain; /* Ensures aspect ratio is maintained */
}
.clients-section{
    margin-top:3.2rem!important;
}
@media(max-width:768px){
  .clients-section{
    margin-top:1rem!important;
}
.slider-client {
  margin-bottom: 1rem !important;
}
}
.clients-title{
    text-align: center;
}
.slider-client:hover .slide-track {
      animation-play-state: paused;
    }
