@keyframes scroll-left {
  0%   { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}
.scroll-text {
  white-space: nowrap;
  overflow: hidden;
  box-sizing: border-box;
  background-color: transparent !important;
}
.scroll-text div {
  display: inline-block;
  animation: scroll-left 80s linear infinite;
  font-size: 18px;
  font-weight: 500;
  color: #d9d9d9;
}
