.footer::before{
    position: absolute;
    display: block;
    width: 100%;
    height: 10%;
    box-sizing: border-box;
    top: 0;
    left: 0; 
}

.footer{
    height: 10%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: white;
    justify-content: space-around;
    margin-top: 3em;
    
}

.txt-footer{
    font-family: 'IBM Plex Sans', serif;
    font-size: 1em;
    color: #060A24;
    letter-spacing: 0;
    letter-spacing: 0.25em;
    padding-left: 1em;
    
 }

.icons-footer{
    /* width: 19.5em; */
    list-style: none;
    display: flex;
    flex-direction: row;
    padding-right: 3.3em;
}

.ico-footer{
    font-family: 'Font Awesome Free';
    font-size: 1.125em;
    color: #060A24;
    transition: all .2s ease-in-out;
    margin-left: 3.1em;
}

.ico-footer:hover{
    font-family: 'Font Awesome Free';
    font-size: 1.125em;
    color:#00F0B8;
    transform: scale(2.1);
    /* padding-left: 3em;   */
}

@media only screen and (min-width: 600px) {

    .footer{
        width: 100%;
        height: 10%;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        background-color: white;
    }
    
    .icons-footer{
        width: 19.5em;
        list-style: none;
        display: flex;
        flex-direction: row;
        justify-content: center;
        padding-right: 10.5em;
    }

    .icons-footer:hover{
        padding-right: 10.5em;
    }

}