/*
*Estilos para el pie
*/

.footer {
    background-color: var(--gris);
    padding-top: 40px;
    color: white;
    text-align: center;
}

.footer h2{
    margin-top: 0;
    font-size: 1em;
}

.footer p{
    font-size: .8em;
}

.bloque-footer {
    display: inline-block;
    width: 74%;
}

.col-footer {
    text-align: left;
    vertical-align: top;
}

.footer-info {
    width: 50%;
    float: left;
}

.redes {
    float: left;
    margin-left: 40px;
}

.fb {
    margin-bottom: 20px;
}

.redes img{
    width: 50px;
    height: 50px;
    vertical-align: middle;
}

.ubicacion {
    float: left;
    margin-left: 40px;
}

.copy {
    display: block;
    width: 100%;
    text-align: center;
    padding: 20px;
}

.copy p{
    text-align: center;
}

/*Sección de media queries y responsive cuadro principal de búsqueda*/

@media screen and (max-width: 1582px){
    .bloque-footer {
        display: inline-block;
        width: 96%;
    }
}

@media screen and (max-width: 768px){

    .redes,.ubicacion {
        margin-left: 10px;
    }
}

@media screen and (max-width: 667px){

    .redes,.ubicacion {
        margin-left: 0;
    }
}

@media screen and (max-width: 431px){

    .col-footer {
        width: 100%;
    }
}

