.client-logos {
display: flex;
justify-content: space-around;
animation: slideIn 2s ease-in-out;
}
@keyframes slideIn {
from {
transform: translateX(-100%);
}
to {
transform: translateX(0);
}
}
document.addEventListener("DOMContentLoaded", function() {
const logos = document.querySelector('.client-logos');
// Дополнительный JavaScript код при необходимости
});