.marquee-wrapper{
  background:#990000;
  text-align:center;
}
.marquee-wrapper .containers{
  overflow:hidden;
  margin:0 auto !important;
  text-align:center;
}
.marquee-inner span{
  height:50%;
}
.marquee-wrapper .marquee-block{
  width: 100%;
  height: 500px;
  overflow: hidden;
  box-sizing: border-box;
  position: relative;
  margin: 20px 0 20px 0px;
  background:#ffffff;
  padding: 30px 0;
  float:left;
}
.marquee-inner{
  display: block;
  width:100%;
  position: absolute;
  margin:20px 0 20px 0px;
}
.marquee-item p{
  font-weight: 600;
  font-size: 16px;
  padding:10px;
}
.marquee-inner.to-left{
  animation: marqueeTop 25s linear infinite;
}
.marquee-inner.to-right{
  animation: marqueeBottom 25s linear infinite;
}
.marquee-item{
  width: 100%;
  height: auto;
  display: block;
  margin:0px;
  transition: all .2s ease-out;
  background:#0C9852;
}
@keyframes marqueeTop{
  0% {
    top: 0;
  }
  100% {
    top: -100%;
  }
}
@keyframes marqueeBottom{
  0% { 
    top: -100%; 
  }
  100% {
   top: 0; 
  }
}