
.marquee {
  height: 40px;
  width: 900px;

  overflow: hidden;
  position: relative;
}

.marquee div {
  display: block;
  width: 200%;
  height: 40px;
  margin-top: 7px;

  position: absolute;
  overflow: hidden;

  animation: marquee 20s linear infinite;
}

.marquee span {
  float: right;
  font-size: 13px;
  font-weight: 600;
  width: 50%;
  color: #fff;
}

.marquee span a{
  float: right;
  font-size: 13px;
  font-weight: 600;
  width: 50%;
  color: #fff;
}

@keyframes marquee {
  0% { right: 0; }
  100% { right: -100%; }
}