.footer{
    width: 80%;
    margin-right: 10%;
    background-color: #222629;
    display: flex;
    font-family: B lotus;
}

.footer .col-footer{
    align-self: flex-start;
    width: 20%;
    margin-right: 2%;
    padding: 1vh;
    box-sizing: border-box;
}

.footer .col-footer:last-child{
    width: 30%;
}

.footer .col-footer h4, .footer .col-footer p{
    color: aliceblue;
}

.footer .col-footer a{
    display: block;
    text-decoration: none;
    color: aliceblue;
    margin-top: 1vh;
}

@media screen and (max-width:750px) {
    .footer{
        flex-direction: column;
        padding: 3vh;
        box-sizing: border-box;
    }
    .footer .col-footer{
        width: 100%;
        margin-right: 0;
       
    }
    .footer .col-footer:last-child{
        width: 100%;
        margin-right: 0;
    }
    .footer .col-footer:nth-child(3){
        display: none;
    }
}