.footer-marquee {
  background: #f9f5e9;
  color: #444;
  font-size: 0.8em;
  padding: 1em 0;
  overflow: hidden;
  position: relative;
}

.footer-marquee .marquee {
  display: flex;
  white-space: nowrap;
  animation: scroll-loop 25s linear infinite;
}

.footer-marquee .marquee span {
  display: inline-block;
  padding-right: 45em;
}

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