.running-line {
  position: relative;
  z-index: 1;
  margin: 0 auto 96px;
  max-width: 2160px;
}
@media screen and (max-width: 900px) {
  .running-line {
    margin-bottom: 64px;
  }
}
.running-line:after, .running-line:before {
  content: "";
  display: block;
  position: absolute;
  z-index: 2;
  top: 0;
  width: 120px;
  height: 100%;
  background-image: var(--gradient-white);
}
.running-line:before {
  left: 0;
}
@media screen and (max-width: 2160px) {
  .running-line:before {
    display: none;
  }
}
.running-line:after {
  right: 0;
  transform: rotate(180deg);
}
@media screen and (max-width: 2160px) {
  .running-line:after {
    display: none;
  }
}
.running-line__wrapper {
  transition-timing-function: linear !important;
}
.running-line__slide {
  padding: 0 20px;
  width: 240px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 900px) {
  .running-line__slide {
    width: 200px;
    height: 80px;
  }
}
.running-line__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}