@keyframes ticker-kf {
  0% {
    transform: translateX(0);
  }

  100% {
    /* 10rem for each logo x 6 logos total = -60rem */
    transform: translateX(-60rem);
  }
}

.img-ticker {
  display: flex;
  margin-left: -1rem;
  margin-right: -1rem;
  animation: ticker-kf 10s linear infinite;
}

.tickerlogo {
  width: 8rem;
  flex: none;
  margin: 0 1rem 0 1rem;
  align-self: flex-start;
  max-width: 100%;
  height: auto;
}
.social i {
  color: rgba(61, 177, 0, 1);
}
