/* Font Imports */
/* @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400&display=swap');

        @font-face {
            font-family: 'Forma DJR Deck';
            src: url('/ruta-a-tu-fuente/FormaDJRDeck.otf') format('opentype');
        } */

/* Animation for Logo Banner */
.logo-marquee {
  display: flex;
  width: max-content;
}

.logo-track {
  display: flex;
  gap: 2rem;
  animation: marquee 30s linear infinite;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.logo {
  height: auto;
  object-fit: contain;
}





