/*---------Slider-------*/

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-150px * 10));
    -webkit-transform: translateX(calc(-150px * 10));
    -moz-transform: translateX(calc(-150px * 10));
    -ms-transform: translateX(calc(-150px * 10));
    -o-transform: translateX(calc(-150px * 10));
}
}
.slider {
  background: var(--blueColor);
  box-shadow: 0 10px 20px -5px rgb(101, 96, 96);
  height: 270px;
  margin: auto;
  overflow: hidden;
  position: relative;
  width: 95%;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}


.slider::before {
  left: 0;
  top: 0;
}
.slider .slide-track {
  animation: scroll 40s linear infinite;
  display: flex;
  width: calc(250px * 22);
  -webkit-animation: scroll 40s linear infinite;
}
.slider .slide {
  height: 100%;
  width: 100%;
}
