@charset "utf-8";

.tcontainer {
  width: 100%;
  overflow: hidden; 
}
 

.ticker-wrap {
  width: 100%;
  padding-right: 100%; 
  background-color:  #ff5421;
}


@keyframes ticker {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-250%, 0, 0); }
}
.ticker-move {
  display: inline-block;
  white-space: nowrap;
  padding-right: 100%;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-name: ticker;
  animation-duration: 20s;
}
.ticker-move:hover{
  animation-play-state: paused; 
}


.ticker-item{
  display: inline-block; 
  padding: 0 1rem;
	font-size:25px;
	color: white;
	font-family: 'Rubik', sans-serif;
	text-decoration-color: #FFFFFF;
	
}
.ticker-item a{
	color: #FFFFFF;
	text-decoration: none;
}

