@import url(base.css);
.footer{
    max-width: 1200px;
    margin: auto;
    padding: 40px;
    height: 350px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
}
.footerlogo{
    width: 150px;
    text-decoration: none;
    text-align: center;
}
.imgFooter{
    width: 100px;
    margin: auto;
}
.imgFooter img{
    width: 100%;
}
.footerqr{
    height: 150px;
    width: 150px;
}
.footerqr img{
    width: 100%;
    height: 100%;
}
.footer .educa, .footer .homes{
    font-size: 36px;
    letter-spacing: 5px;
}
.footer .educa{
    font-family: var(--kadwa);
    font-weight: bold;
}
.footer .homes{
    margin-top: -20px;
    font-weight: bold;
}
.redescuadros{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    align-content: center;
    gap: 25px;
    margin-bottom: 10px;
}
.redesbox{
    text-decoration: none;
    display: inline-block;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 2px var(--arena) solid;
    border-radius: 2px;
    width: 26px;
    height: 26px;
}
.fondofooter{
    display: inline-block;
    background: var(--negro);
    border-radius: 10px;
    transition: all 0.3s;
    font-weight: bold;
    width: 50px;
    height: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
	align-items: center;
}
.redesbox:hover{
    background-color: var(--arena);
}
.redesbox:hover i{
    color: var(--morado);
}
.redesbox i{
    font-size: 18px;
    transition: all 0.3s;
}
.redesletras{
    text-align: center;
}
.redesletras p{
    font-size: 24px;
    font-family: var(--kadwa);
}
@media only screen and (min-width: 0px) and (max-width: 1000px) {
    .footer{
        padding: 20px;
        height: auto;
        flex-direction: column;
        gap: 20px;
    }
    .footerlogo{
        height: 200px;
        width: 150px;
    }
    .footerqr{
        height: 150px;
        width: 150px;
    }
}