/*.moo-running-strip {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 13px 0;
  background: rgba(27, 29, 80, 0.9);
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
  overflow: hidden;
  -webkit-border-radius: 20px 20px 0 0;
  -moz-border-radius: 20px 20px 0 0;
  border-radius: 20px 20px 0 0;
  z-index: 1;
}
.moo-running-strip .running-content {
  display: block;
  width: 100%;
  transform: translateX(100%);
  animation: move 20s linear infinite;
    white-space: nowrap;
}
.moo-running-strip .running-content strong {
    background: #45B76D;
  background: linear-gradient(to right, #45B76D 0%, #EDB61D 50%, #E81850 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
    font-size: 17px;
}
@keyframes move {
  to {
    transform: translateX(-70%);
  }
}*/
.marquee-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 45px;
    line-height: 45px;
    background: rgba(27, 29, 80, 0.9);
    color: #ffffff;
    font-size: 15px;
    font-weight: 500;
    overflow: hidden;
    -webkit-border-radius: 20px 20px 0 0;
    -moz-border-radius: 20px 20px 0 0;
    border-radius: 20px 20px 0 0;
    z-index: 1;
}
.marquee-container .marquee {
    top: 0;
    left: 100%;
    width: 100%;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
}
.marquee-container .marquee strong {
    background: #45B76D;
    background: linear-gradient(to right, #45B76D 0%, #EDB61D 50%, #E81850 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 17px;
}
.marquee-container .marquee2 {
    animation-delay: 15s;
}
.marquee-container b {
    padding-left: 10px;
}

@keyframes marquee {
    0% {
        left: 100%;
    }
    100% {
        left: -100%;
    }
}
@media only screen and (max-width: 991px) {
    .marquee-container .marquee {
        width: auto;
    }
    .marquee-container .marquee2 {
        animation-delay: 20s;
    }
}
@media only screen and (max-width: 680px) {
    .marquee-container .marquee2 {
        animation-delay: 35s;
    }
}