.clients__section {
    margin-bottom: 70px;
    width: 80%;
    margin-inline: auto;
}

.clientes {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 100px;
}

.clientes .cliente {
    position: relative;
    height: 250px;
}

.cliente img {
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease-in-out;
}

.cliente .img_second {
    position: absolute;
    opacity: 0;
    top: 0;
    left: 0;
}

.cliente:hover .img_second {
    opacity: 1;
}


@media screen and (max-width: 1024px) {
    .clientes {
        gap: 50px;
    }

    .clientes .cliente {
        height: 180px;
        max-width: 80%;
    }
    .clientes .cliente img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

