
/* Fixed Wrapper */
.hwrap { position:absolute; overflow:hidden; width:100%; margin-top:-168px; }

/* Moving Ticker Wrapper */
.hmove { 
    display:flex;
    -webkit-animation:tickerh linear 70s infinite;
    -moz-animation:tickerh linear 70s infinite;
    -o-animation:tickerh linear 70s infinite;
    animation:tickerh linear 70s infinite;
/* .hmove:hover { animation-play-state:paused; } */
}

/* Items - Into a long horizontal row */
.hitem {
  font-family:'Carkle', sans-serif; text-transform:uppercase; font-weight:700; font-size:200px; text-align:center; 
  color:#DCDCDC;
  flex-shrink:0; /* Space between words*/
  box-sizing:border-box;
  white-space:nowrap;
  z-index:10;
}

.hitem.dark { color:#D1D0D0; }

/* Animation - Move items from right to left */
/* Items -400%, Change this if you add/remove items */

@-webkit-keyframes tickerh {
  0% { transform:translateX(100%); }
  100% { transform:translateX(-230%); }
}

@-moz-keyframes tickerh {
  0% { transform:translateX(100%); }
  100% { transform:translateX(-230%); }
}

@-o-keyframes tickerh {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-230%); }
}

@keyframes tickerh {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-230%); }
}

