footer{
    width: 100%;
    height: 250px;
    background-color: tomato;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
}

/*FOOTER STYLES*/

.nav-footer{
    width: 35%;
    height: 50px;
    display: flex;
    margin-right: 0;
}
.ul-footer{
    width: 100%;
    height: 100%;
    color: white;
    font-size: 10px;
    font-weight: 400;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    list-style: none;
}
.a-footer{
    color: white;
}
.social-media{
    width: 20%;
    height: 50px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;    
    list-style: none;
}
.social-icons{
    width: 40px;
    height: 40px;
    background-color: white;
    border-radius: 50%;
    font-size: 20px;
    color: tomato;
    display: flex;
    justify-content: center;
    align-items: center;
}
.sign-footer{
    width: 100%;
    height: 50px;
    color: white;
    font-size: 12px;
    text-align: center;
}

/*FOOTER SOCIAL ICONS HOVERS*/

.social-icons:hover {
    color: white;
    background-color: tomato;
    transition-duration: 0.5s;
}

/*RESPONSIVE*/


@media screen and (max-width: 725px) {

    footer{
        height: 180px;
    }

    .nav-footer{
        display: none;
    }

    .social-media{
        width: 50%;
        margin-top: 30px;
    }

}