div#vdc-text-wrap {
    animation: move 1000s infinite;
    position:relative;
    height:100%;
    animation-timing-function: linear;
    width:612699px;
   	font-family: 'Termina';
    text-transform: uppercase;    
    
}
#vdc-info{
	overflow:hidden;
	width: 100%;
    padding: 75px;
    padding-bottom:30px;
    position:relative;
}

#vdc-sidebar-scroll{
	overflow:hidden;
	padding:40px;
    top: 0;
    height: 100px;
    width: 100%;
}

#vdc-info .vdc-white-line{
    display:none;
}
span.vdc-scrolling-item {
    color: black;
    font-family: 'termina';
    font-weight: 800;
    font-size:100px;
}
#vdc-info span.vdc-white-line{
	background-color:black;
}
#vdc-info span.vdc-scrolling-item{
	color:black;
    font-size:150px;
    font-family: 'Termina';
}

@keyframes move{
  0% {
    right: 39999px;
  }
  100% {
    right: 90000px;
  }
}