



.outer{
  position:relative;
  margin-top:20px;
  margin-left:auto;
}

.inner1{
  position:static;
  margin-top:auto;
  margin-left:auto;
  border:0px;
  height:50px;
  line-height:auto;
  font-size:35px;
  text-transform:uppercase;
  overflow:hidden;
  display:;
}
.inner1 span{
  animation:animate 10s ease infinite;
  position:relative;
  color:#e58e26;
}
@keyframes animate{
  0%,100%{
    top:0;
  }
  20%{
    top:0px;
  }  
  25%{
    top:-50px;
  }
  45%{
    top:-50px;
  }
  50%{
    top:-100px;
  }
  70%{
    top:-100px;
  }
  75%{
    top:-150px;
  }
  95%{
    top:-150px;
  }
}
