.network-slider {
  overflow: hidden;
  position: relative;
  width: 100%;
  scroll-margin-top: 120px;
}
@media screen and (min-width: 1025px) {
  .network-slider {
    margin-bottom: 120px !important;
    scroll-margin-top: 20vh;
  }
}
@media screen and (max-width: 1024px) and (min-width: 768px) {
  .network-slider {
    margin-bottom: 80px !important;
  }
}
@media screen and (max-width: 768px) {
  .network-slider {
    margin-bottom: 60px !important;
  }
}
.network-slider__intro {
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .network-slider__intro {
    margin-bottom: 50px;
  }
}
@media screen and (min-width: 1025px) {
  .network-slider__text {
    max-width: 547px;
  }
}
.network-slider__wrapper {
  display: flex;
  flex-direction: column;
  gap: 25px;
  overflow: hidden;
}
.network-slider__track {
  display: flex;
  gap: 20px;
  white-space: nowrap;
  width: fit-content;
  animation: scroll-left 180s linear infinite;
  will-change: transform;
}
.network-slider__track.reverse {
  margin-left: -105px;
  padding-bottom: 5px;
}
.network-slider__item {
  flex: 0 0 auto;
  height: 106px;
  width: 203px;
}
@media screen and (max-width: 1024px) {
  .network-slider__item {
    width: 150px;
    height: 80px;
  }
}
.network-slider__item a {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}
.network-slider__item a:hover {
  box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.05);
}
.network-slider__item img {
  max-height: 106px;
  width: auto;
  transition: all 0.3s ease;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/*# sourceMappingURL=network-slider.css.map */
