footer{
    width: 100%;
    float: left;
    margin-top: 100px;
    padding: 30px 5%;
    justify-content: space-between;
    box-sizing: border-box;
    background-color: white;
}

footer .label{
    float: left;
    font-size: 14px;
    padding: 1.5px 0;
}

footer .other-links{
    float: right;
}

footer .other-links a{
    color: #757485;
    padding: 0 6px;
    font-size: 15px;
    text-decoration: none;
}

footer .other-links a:hover{
    color: #fb320e;
}

@media screen and (max-width: 800px) {
    footer{
        display: flex;
        flex-direction: column;
        margin-top: 50px;
        padding: 30px 30px;
    }
    
    footer .other-links{
        display: flex;
        flex-direction: column;
        padding: 10px 0 30px 0;
    }
    
    footer .other-links a{
        padding: 5px 0;
    }
}