<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@keyframes smooth-carousel-animation {
  0% {
    transform: translateX(0%);
  }
  50% {
    transform: translateX(calc(-100% + 80px));
  }
  100% {
    transform: translateX(0%);
  }
}
.smooth-carousel {
  height: 120px;
  margin: auto;
  overflow: hidden;
  position: relative;
}
.smooth-carousel .smooth-carousel-list {
  margin: 0 -12px;
  animation: smooth-carousel-animation 240s linear infinite;
  display: flex;
  width: 6384px;
}
.smooth-carousel .smooth-carousel-list .smooth-carousel-item {
  margin: 0 48px;
  height: 120px;
  width: 120px;
}
.smooth-carousel .smooth-carousel-list .smooth-carousel-item .smooth-img {
  width: 120px;
  height: 120px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  margin: 0 auto;
}/*# sourceMappingURL=styles.css.map */</pre></body></html>