.footer{
    display: flex!important;
    width: 100%;
    height: 60vh;
    background-color: #000!important;
    color: #fff;
    font-size: 10pt;
    justify-content: space-between!important;
    flex-direction: column;
    gap:40px;
}

.footer img{
    height: 30px;
}

.footer img:hover{
    opacity: .7;
    transition: .2s;

}

.footer a{
    color: #fff;
    text-decoration: none;
}

.footer .icon{
    height: 20px;
    margin-bottom: 10px;
}


.footer .top{
    display: flex;
    width: 100%;
    flex-direction: column;
    height: auto;
    
    padding: 50px;
}
.footer .top a{
    
    color:#fff;
}

.footer .down{
    padding: 20px 50px;
}

.footer .down .d-flex{
    justify-content: space-between;
}

.top .d-flex{
    margin-top: 50px;
}

/*MEDIA QUERIES*/
@media screen and (max-width: 600px) {
    footer{
        height: auto;
        display: grid;
        align-items: center;
        text-align: center;
        grid-template-columns: 100%;
    }

    .footer .side-b {
        justify-content: center;
        text-align: center;
        flex-wrap: wrap;
        align-items: center;
        gap: 5px;
    }

    .footer .side-b .networks, footer .side-b .privacy{
        width: 100%;
    }

    .footer .side-b .networks{
        margin: 10px 0px;
        justify-content: center;
        text-align: center;
    }

    .footer .side-b .privacy{
        margin: 0;
        padding: 0;
    }
}