@-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));
  }
}
 
@-webkit-keyframes scroll2 {
  0% {
    transform: translateX(calc(-250px * 7));
  }
  100% {
    transform: translateX(0);
  }
}

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

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

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


.slider {
  box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.125);
  height: 150px;
  margin: auto auto 20px;
  overflow:hidden;
  position: relative;
  width: 100%;
}
.slider::before, .slider::after {
  background: linear-gradient(to right, #450505 0%, rgba(69, 5, 5, 0) 100%);
  content: "";
  height: 150px;
  position: absolute;
  width: 150px;
  z-index: 2;
}
.slider::after {
  right: 0;
  top: 0;
  transform: rotateZ(180deg);
}
.slider::before {
  left: 0;
  top: 0;
}
.slider .slide-track {
  -webkit-animation: scroll 40s linear infinite;
          animation: scroll 40s linear infinite;
  display: flex;
  width: calc(150px * 14);
}
.slider .slide {
  height: 150px;
  width: 150px; margin:0 10px
}

.slider2 {
  box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.125);
  height: 150px;
  margin: auto auto 20px;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.slider2::before, .slider2::after {
  background: linear-gradient(to right, #450505 0%, rgba(69, 5, 5, 0) 100%);
  content: "";
  height: 150px;
  position: absolute;
  width: 150px;
  z-index: 2;
}
.slider2::after {
  right: 0;
  top: 0;
  transform: rotateZ(180deg);
}
.slider2::before {
  left: 0;
  top: 0;
}
.slider2 .slide-track2 {
  -webkit-animation: scroll2 40s linear infinite;
          animation: scroll2 40s linear infinite;
  display: flex;
  width: calc(150px * 14);
}
.slider2 .slide {
  height: 150px;
  width: 150px; margin:0 10px
}


.slider3 {
  box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.125);
  height: 150px;
  margin: auto auto 20px;
  overflow:hidden;
  position: relative;
  width: 100%;
}
.slider3::before, .slider3::after {
  background: linear-gradient(to right, #450505 0%, rgba(69, 5, 5, 0) 100%);
  content: "";
  height: 150px;
  position: absolute;
  width: 150px;
  z-index: 2;
}
.slider3::after {
  right: 0;
  top: 0;
  transform: rotateZ(180deg);
}
.slider3::before {
  left: 0;
  top: 0;
}
.slider3 .slide-track3 {
  -webkit-animation: scroll3 40s linear infinite;
          animation: scroll3 40s linear infinite;
  display: flex;
  width: calc(150px * 14);
}
.slider3 .slide {
  height: 150px;
  width: 150px; margin:0 10px
}
