
.linkEspacios {
    display: block;
    color: var(--grisOscuro);
    text-align: justify;
    text-decoration: none;
    font-family: 'Open Sans';
    font-style: normal;
    font-size: 1rem;
    font-weight: 400;
    cursor: pointer;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.linkEspacios:hover{
    color: var(--negro);
    font-weight: 700; 
}

.linkEspacios.active{
    color: var(--negro);
    font-weight: 700;  
}

.contenedorImagenEspacios{
    width: 100%;
    height: 350px;
    padding-top: 10px;
    overflow: hidden;
}

.imagenEspacios{
    width: 100%; 
    height: 100%; 
    margin: 0; 
    object-fit:cover;
    transition: all .3s ease-in-out;
}

.imagenEspacios:hover{
    transform: scale(1.3);
}

.contenedorDescripcionEspacios{
    display: block;
    width: 100%;
    padding-top: 5px;
    position: relative;
}

.flechaNosotros{
    display: block;
    cursor: pointer; 
    text-decoration: none; 
    font-weight: 200; 
    position: absolute; 
    color: var(--grisOscuro);
    top: 5px;
    right: 0;
}

.contenedorThumbnails{
    width: 100%;
    min-height: 100px;
    padding-top: 15px;
    padding-bottom: 15px;
    display: inline-block;
    font-size: 0px;
}

.unidadThumbnails{
    width: 60px;
    height: 60px;
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 10px;
    
}

.imgUnidadThumbnails{
    width: 100%;
    height: 100%;  
    margin: 0; 
    object-fit:cover; 
    display: block;
    transition: all .3s ease-in-out;
    filter: gray; 
    -webkit-filter: grayscale(99%);
}

.imgUnidadThumbnails:hover{
    filter: none; 
    -webkit-filter: grayscale(0%);
}

/*CELULARES*/
/*$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$*/
/*$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$*/
/*$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$*/
@media only screen and (max-width: 899px) {

    .mobile{
        display: block;
    }
    
    .desktop{
        display: none;
    }

    .contenedorColumnaEspacios{
        height: auto; 
        width: 100%;  
        padding-top: 0; 
        padding-bottom: 0; 
        padding-left: 0; 
        padding-right: 0;
    }

    .linkEspacios {
        font-size: 1.2rem;
    }

}


/*DESKTOP*/
/*$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$*/
/*$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$*/
/*$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$*/
@media only screen and (min-width: 900px) {

    .mobile{
        display: none;
    }
    
    .desktop{
        display: block;
    }   

    .contenedorColumnaEspacios{
        height: 100%;   
        padding-top: 5%; 
        padding-bottom: 0px; 
        padding-left: 0px; 
        padding-right: 0px;
        align-items: flex-start;
    }

    .izq{
        width: 25%;
        padding-right: 100px;
    }

    .centro{
        width: 45%;
    }

    .der{
        width: 30%;
        padding-left: 25px;
        padding-right: 60px;
    }
}


/*DESKTOP EX*/
/*$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$*/
/*$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$*/
/*$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$$*/
@media only screen and (min-width: 1600px) {


}