#clientesContenido {
width: 100vw; height: 520px;
padding-left: 15%;
padding-right: 15%;
position: absolute;
display: flex;
flex-direction: column;
justify-content: start;
align-items: center;
z-index: 15;
}
.textoTituloColor{
font-weight: 300;
font-size: 2em;
color: rgb(255, 255, 255);
margin-bottom: 1em;
}
.masonry{

width: 100%; height: 60vh;
display: grid;
grid-template-columns: repeat(auto-fill, var(--card_width));
justify-content: center;
gap: 20px;
/* padding-bottom: 10%;
margin: 0 auto; */
}
#contenidoServicioImagenes{width: 100%; height: 100%; overflow: hidden;}
.js-tilt-glare,
.masonry .miniClientes{
border-radius: 10px;
}
.miniClientes{
width: var(--card_width); height: 220px;
display: flex;
align-items: center; justify-content: center;
transform-style: preserve-3d;
perspective: 400px;
transition: all 4s;
}

.miniClientes:hover{
    transform: scale(1.2);
box-shadow: rgba(255, 255, 255, 0.562) 0px 0px 20px -5px;
transition: all 0.3s;
}
.tituloMiniaturaClientes{
color: whitesmoke;
transform: translateZ(120px);
padding: 0.5rem;
background-color: black;
width: 100%;
}
#clientesDescriptivo{
display: flex;
flex-direction: column;
align-items: center;
justify-content: initial;
width: 100%; height: min-content; 
}
@media screen and (max-aspect-ratio: 1/1) {
    #clientesContenido {
        width: 100vw; height: 550px;
        padding-left: 2%;
        padding-right: 2%;
        padding-bottom: 5%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    #clientesDescriptivo{
        padding-left: 0%;
        padding-right: 0%;
        width: 100%; height: 20%; 
    }
    .masonry{
        padding-top: 0;
        padding-bottom: 50%;
        width: 100%; height: 60vh;
        display: grid;
        grid-template-columns: 160px 160px;
        gap: 20px;
        }
        .miniClientes{
            width: var(--card_width); height: 220px;
            display: flex;
            align-items: center; justify-content: center;
            transform-style: preserve-3d;
            perspective: 400px;
            transition: all 4s;
            }
}