.header-logos {
  display: flex;
  align-items: center;
  gap: 15px;
}

.header-logos img {
  height: 45px;
  width: auto;
  object-fit: contain;
}

/* Responsive */
@media (max-width: 768px) {
  .header-logos {
    justify-content: center;
    margin-top: 10px;
  }

  .header-logos img {
    height: 35px;
  }
}

.timbre-marquee {
    width: 100%;
    overflow: hidden;
    background: #f5f5f5;
    border-bottom: 1px solid #ddd;
    white-space: nowrap;
}

.timbre-marquee-inner {
    display: inline-block;
    padding-left: 100%;
    animation: defilement-timbre 20s linear infinite;
    font-family: "Poppins", serif;
		font-weight: bold; 
    text-transform: uppercase;
    font-size: 18px;
		color: #000000;
}

.timbre-marquee:hover .timbre-marquee-inner {
  animation-play-state: paused;
}

@keyframes defilement-timbre {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}