.marketing {
  position: relative;
  overflow: hidden;
  direction: rtl;
}

.force-scroll::before {
  content: attr(data-text);
  position: absolute;
  white-space: nowrap;
  animation: scrollText 15s linear infinite;
  color: #fff;
  right: -100%;
}

@keyframes scrollText {
  0% {
    right: -100%;
  }
  100% {
    right: 100%;
  }
}