@import url("https://fonts.googleapis.com/css2?family=Alice&family=Instrument+Sans:ital,wght@0,400..700;1,400..700&display=swap");

.Alice {
  font-family: "Alice", sans-serif;
}

.Instrument-Sans {
  font-family: "Instrument Sans", sans-serif;
}

@media (max-width: 768px) {
  .logo-container {
    width: 116px;
    height: 40px;
  }
}

.logos {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

.logos:before, .logos:after {
  position: absolute;
  top: 0;
  content: '';
  width: 250px;
  height: 100%;
  z-index: 2;
}

.logo_items {
  display: inline-block;
  animation: 35s slides infinite linear;
  white-space: nowrap;
}

.logos:hover .logo_items {
  animation-play-state: paused;
}

.logo-container {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 40px;
  vertical-align: middle;
  background: white;
  width: 317px;
  height: 85px;
  border-radius: 8px;
}

.logo-container img {
  object-fit: contain;
}

* {
  scroll-behavior: smooth;
}

@keyframes carouselSlide {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}