.section-slider {
  display: flex;
  justify-content: center;
  background: linear-gradient(135deg, #e0dad5 0%, #e0dad58a 100%);
  position: relative;
}

.slider-container {
  width: 65%;
  overflow: hidden;
  direction: ltr;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 25px;
}

.slider-container>h3 {
  text-align: center;
  width: 50%;
  margin-top: 25px;
  color: #234567;
}

.slider-container>p {
  text-align: center;
  width: 50%;
  margin-top: 10px;
  margin-bottom: 15px;
}

.section-slider::after {
  content: "";
  background: linear-gradient(90deg,
      #e9e4e1 0%,
      #e0dad5 25%,
      #e0dad5 50%,
      #e0dad5e6 75%,
      #e0dad505 100%);
  height: 100%;
  width: 35%;
  position: absolute;
  left: 0;
  bottom: 0;
}

.section-slider::before {
  content: "";
  background: linear-gradient(270deg,
      #e9e4e1 0%,
      #e0dad5 25%,
      #e0dad5 50%,
      #e0dad5e6 75%,
      #e0dad505 100%);
  height: 100%;
  width: 35%;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.slider-track {
  display: flex;
  width: max-content;
  animation: scroll linear infinite;
  max-width: 100%;
}

.slider-item {
  flex: 0 0 auto;
  width: 200px;
  margin: 10px;
  /* background: white; */
  padding: 20px;
  text-align: center;
  border-radius: 10px;
  /* box-shadow: 0 0 5px rgba(0, 0, 0, 0.1); */
  transition: transform 0.99s;
  filter: grayscale(1);
}

.slider-item:hover {
  transform: scale(1.2);
  filter: grayscale(0);
}

.slider-item img {
  max-width: 100%;
  height: auto;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}


@media (max-width: 600px) {
  .slider-item {
    width: 110px;
    margin: 5px;
    padding: 2px;
  }
}