.ticker-wrap {
  display: flex;
  overflow-x: hidden;
}

.ticker {
  font-size: 70px;
  line-height: 1.3;
  padding: 0 20px;
  white-space: nowrap;
  display: inline-flex;
}

.ticker.first {
  animation: marquee1 20s infinite linear;
  animation-delay: -20s;
}
.ticker.first img {
  width: -moz-fit-content;
  width: fit-content;
  -o-object-fit: none;
     object-fit: none;
}

.ticker.second {
  animation: marquee2 20s infinite linear;
  animation-delay: -10s;
}
.ticker.second img {
  width: -moz-fit-content;
  width: fit-content;
  -o-object-fit: none;
     object-fit: none;
}

@keyframes marquee1 {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes marquee2 {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-200%);
  }
}/*# sourceMappingURL=vendor.css.map */