@-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 {
  box-sizing: content-box;

  /*width: 100%;*/
  z-index: 1;
  overflow: hidden;
  height: 3rem;
  background-color: rgba(17,157,164,0.8); 
  padding-left: 100%; 
  box-sizing: content-box;
}
  .ticker {

    display: inline-block;
    height: 3rem;
    line-height: 3rem;  
    white-space: nowrap;
    padding-right: 100%;
  box-sizing: content-box;

    -webkit-animation-iteration-count: infinite; 
            animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
            animation-timing-function: linear;
   -webkit-animation-name: ticker;
           animation-name: ticker;
    -webkit-animation-duration: 50s;
            animation-duration: 50s;
}
    .ticker__item {
      display: inline-block;

      padding: 0 1rem;
      color: white;    

    }

    .ticker-logo {
  padding: 0;
}  