

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

@keyframes scroll {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(calc(-430px * 8));
            transform: translateX(calc(-430px * 8));
	  
  }
}
.slider {
  background: #eaeaea;
  box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.125);
  height: 44px;
  margin: auto;
  overflow: hidden;
  position: relative;
  width: 100%;
	
	
}

.slider .slide-track {
  
  display: flex;
  width: calc(350px * 17);
}
.slider .slide {
  height: 100px;
  width: 350px;
	-webkit-animation: scroll 40s linear infinite;
          animation: scroll 40s linear infinite;
}


.slider2 {
  background: #ffffff;
  box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.125);
  height: 30px;
  margin: auto;
  overflow: hidden;
  position: relative;
  width: 100%;
	
	
}
.slider2::before, .slider2::after {
  background: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0) 100%);
  content: "";
  height: 26px;
  position: absolute;
  width: 200px;
  z-index: 2;
}
.slider2::after {
  right: 0;
  top: 0;
  -webkit-transform: rotateZ(180deg);
          transform: rotateZ(180deg);
}
.slider2::before {
  left: 0;
  top: 0;
}
.slider2 .slide-track2 {
  -webkit-animation: scroll 30s linear infinite;
          animation: scroll 30s linear infinite;
  display: flex;
  width: calc(1250px * 16);
}
.slide2 {
	
  height: 28px;
  width: 1250px;
	
}



