.footer{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    min-height: 200px;
    background-color: #1B3039;
    padding: 0 15px 0 15px;
    box-sizing: border-box;
    font-size: small;
}

/* FOOTER-CONTENT */


.footer > * {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    height: 200px;
    gap: 10px;
    cursor: pointer;
}
.footer > * >h3:hover{
    color: #05ADEA;
}

.footer .icon-socials{
    width: 50px;
}

/* Tema Claro */

.tema-claro .footer div .contact{
    color: white;
    fill: white;
}
.tema-claro .footer div .contact:hover{
    color: #05ADEA;
}


@media (max-width: 700px){
    .footer  *{
        font-size: 90%;
    }
    .footer .icon-socials{
        width: 50px;
    }
}

@media (max-width: 600px) {
    .footer  *{
        font-size: 80%;
    }
    .footer .icon-socials{
        width: 20px;
    }
}
@media (max-width: 450px) {
    .footer  *{
        font-size: 70%;
    }
    .footer .icon-socials{
        width: 10px;
    }
}
@media (max-width: 400px) {
    .footer  *{
        font-size: 60%;
    }
}