.marquee {
  overflow: hidden;

  .slider {
    animation: slidein 30s linear infinite;
    white-space: nowrap;

    .logos {
      width: calc(100% / 5);
      display: inline-block;
      margin: 0;
      text-align: center;

      .fab {
        width: 100%;
        animation: fade-in 0.5s cubic-bezier(0.455, 0.03, 0.515, 0.955) forwards;
      }

      img {
        width: 100%;
      }
    }
  }
}

.counter-count {
  font-family: "Inter var", sans-serif;
  font-size: 44px;
  font-weight: 800;
  line-height: 1;
  position: relative;
  color: #106eea;
  text-align: center;
  display: inline-block;
}

.stat-type {
  font-size: 20px;
  font-weight: 500;
  margin-top: -6px;
}

@keyframes slidein {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
