@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

@font-face {
  font-family: "CNRGN";
  src: url(/fonts/CNRGN-Micro.ttf);
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "CNRGN-Kolehiyo";
  src: url(/fonts/CNRGN-Kolehiyo.ttf);
  font-weight: 400;
  font-style: normal;
}

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

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

.Raleway {
  font-family: 'Raleway', sans-serif;
}
@keyframes slides {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.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;
}

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