.localesSection {
    width: 100%;
    background-color: #565151;
    color: white;
    font-size: 1.5rem;
    padding: 0 1rem;
 }

 .navegacionSitio {
    width: 100%;
    height: 20vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.9rem;
 }

 .col {
    width: 15%;
    width: 20%;
    height: 20vh;
    display: flex;
    flex-direction: column;
 }
 
 .imgCol {
    background-image: url("../img/logo/LogoHumaya100x100.png");
    background-repeat: no-repeat;
    background-position:top
 }
 
.tituloCol {
    text-transform: uppercase;
    color: #bca177;
    text-align:start;
    height: 5vh;
    font-size: 1.2rem;
}

.listaCol { 
    list-style: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    margin: 0;
    padding: 0;
}

.listaCol-Item {
    text-transform: capitalize;
}

.listaCol-Link {
    text-decoration: none;
    color: white;
}

.col-redes .redes-Link .iconoRed{
    display: flex;
    align-items: flex-start;
    filter: invert(1); 
    width: 10%;
    object-fit: cover;
    margin: 0.25rem;
} 

@media only screen and (max-width: 768px) {
    .imgCol, .col-menu, .col-sitio, .tituloCol, .col-ubicacion{
        display: none;
        width: 0;
    }

    .navegacionSitio {
        flex-direction: column;
        height: 10vh;
    }

    .col-redes{ 
        width: 100%;
    }

    .col-redes{
        display: flex;
        flex-direction: row;
        height: 10vh;
        justify-content: center;
        align-items: center;
    }
    
    .col-redes .redes-Link{
        width: 30%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .col-redes .redes-Link .iconoRed {
        width: 40%;
    }
}


