
.custom-container {
  max-width: 1410px;
  margin: 0 auto;
  width: 100%;
  padding: 0 12px;
}
.slide-animation1 {
  animation: 25s linear 0s infinite normal none running marquee;
}
.slide-animation1 .feature-item {
  width: 315px;
  height: 72px;
  flex-shrink: 0;
  box-shadow: rgba(127, 145, 156, 0.12) 0 6px 12px;
}
.slide-animation2 {
  animation: 25s linear 0s infinite normal none running marquee2;
}
.slide-animation2 .feature-item {
  width: 315px;
  height: 72px;
  flex-shrink: 0;
  box-shadow: rgba(127, 145, 156, 0.12) 0 6px 12px;
}


@keyframes marquee {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-2086px, 0, 0);
  }
}
@keyframes marquee2 {
  0% {
    transform: translate3d(-2086px, 0, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}