
@-webkit-keyframes ticker {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    visibility: visible; }
  100% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); } }

@keyframes ticker {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    visibility: visible; }
  100% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); } }



.ticker-wrap {
  /*top: 0;

  height: 4rem;*/
}


a{
  color: black;
  text-decoration: none;
}
.ticker:hover{
  animation-play-state: paused;
}
.ticker {
    display: inline-block;
    height: auto;
    line-height: 16px;
    white-space: nowrap;
    padding-left: 750px;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    -webkit-animation-duration: 3s;
    animation-name: ticker;
    animation-duration: 40s;
}

@media only screen and (max-width: 600px) {
    .ticker {
        padding-left: 500px;
    }
}

  .ticker__item {
    display: inline-block;
    margin: 0px 10px;
    font-size: 16px;
 }


.fontsize20px {
  font-size:20px;
}

.textcenter{
    text-align:center;
}
