.partener-logo {
    --gap: 3em;
    display: flex;
    overflow: hidden;
    gap: var(--gap);
    white-space: nowrap;
}

.partener-logo-container {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: var(--gap);
    min-width: 100%;
    animation: scroll var(--speed) linear infinite;
}
.reverse .partener-logo-container {
    animation-direction: reverse !important;
}
.partener-logo-container img {
    width: 520px;
    height: auto;
	border-radius:5px!important;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}
