/* Footer */
footer{
    padding: 10px 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

footer .footer_img{
    width: 100%;
    text-align: center;
}

.footer_img img{
    max-width: 100%;
    height: 100px;
}
.footer{
    background:#000;
    padding:0 0px 30px 0;
    font-family: 'Play', sans-serif;
    text-align:center;
}
    
.footer .row{
    width:100%;
    margin:1% 0%;
    padding:0.6% 0%;
}
.biografia-redes i{
    font-size: 30px;
    color: #888;
    border-radius: 50%;
    padding: 10px;
    text-align: center;
    margin: 0 2px;
    transition: all .3s ease;
}

.biografia-redes i:hover{
    color: var(--color-marca-hover);
    box-shadow: 0 0 20px #8888;
    cursor: pointer;
    background-color: var(--color-marca-blanco);
}
    
.footer .row a{
    text-decoration:none;
    color:gray;
    transition:0.5s;
}
    
.footer .row a:hover{
    color:#fff;
}
    
.footer .row ul{
    width:100%;
}
    
.footer .row ul li{
    display:inline-block;
    margin:0px 30px;
}
    
.footer .row a i{
    font-size:2em;
    margin:0% 1%;
}

.footer .Copyright{
    font-size: .7em;
    color: #8885;
}

.footer_redes{
    margin-top: 0;
}

@media (max-width: 700px){
        /* Footer */

        footer{
            border-top: 1px solid #8B6220;
        }
    
        .footer .row ul{
            display: flex;
            justify-content: space-between;
            gap: 5px;
            padding: 0 5px;
            align-items: center;
        }
    
        .footer .row ul li{
            width: 20%;
            margin: 0;
            line-height: 8px;
        }
    
        .footer .row a{
            font-size: 10px;
        }
    
        .footer .Copyright{
            font-size: .5em;
            margin-top: 20px;
        }
}