
  @keyframes slide {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-100%);
    }
  }
  
  .clients{
    margin: 20px 0;  
    background: url('../img/bg12.jpg') no-repeat center center/cover;   
    height: 450px; 
  }
  .clients .container{
    padding-top: 25px;
    position: relative;
    margin: auto;
  }
 .clients .head h3{
  text-align: center;  
  font-size: 44px;
  color: white;
	font-size: 40px;
	text-shadow: -1px 1px 2px #000,
				  1px 1px 2px #000,
				  1px -1px 0 #000,
				  -1px -1px 0 #000;
}
.clients .head p{
  text-align: center;
  font-weight: 600;
  font-size: 21px;
  color: white;
	font-size: 30px;
	text-shadow: -1px 1px 2px #000,
				  1px 1px 2px #000,
				  1px -1px 0 #000,
				  -1px -1px 0 #000;
}
.logos {
  overflow: hidden;
  padding: 50px 0;
  white-space: nowrap;
  position: relative;
}
  .logos:before,
  .logos:after {
    position: absolute;
    top: 0;
    width: 2500px;
    height: 100%;
    content: "";
    z-index: 2;
  }
  
  .logos:before {
    left: 0;
    /* background: linear-gradient(to left, rgba(255, 255, 255, 0), white); */
  }
  
  .logos:after {
    right: 0;
    /* background: linear-gradient(to right, rgba(255, 255, 255, 0), white) */
  }
  
  .logos:hover .logos-slide {
    animation-play-state: paused;
  }
  
  .logos-slide {
    display: inline-block;
    animation: 45s slide infinite linear;
    /* animation: slide 20s infinite; */
  }
  
  .logos-slide img {
    height: 200px;
    margin: 0 40px;
    border: 6px solid #545454;
    border-radius: 10px;
    box-shadow: 5px 5px 5px #080808;
  }
  
  