footer {
    background-color: #363a45;
    height: 70px;
    display: flex;
    align-items: center;
}

footer div.child {
    display: flex;
    justify-content: space-between;
    margin: 0 30px;
    gap: 30px;
    width: calc(100% - 60px);
}

footer div.links {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;

    a {
        color: #dfdfdf;
        font-weight: 400;
        font-size: 15px;
        text-decoration: none;
    }

    a:hover {
        text-decoration: underline;
        color: #fff;
    }
}

footer a.brand-logo {
    display: flex;
    align-items: center;

    svg,
    img {
        height: 35px;
        width: auto;
    }
}


/*@media only screen and (max-width: 870px) {*/
/*    footer div.links {*/
/*        flex-wrap: wrap;*/
/*    }*/
/*    footer div.links div {*/
/*        flex: auto;*/
/*        width: 50%;*/
/*    }*/
/*    footer div.links div:nth-child(3) {*/
/*        margin-top: 20px;*/
/*    }*/
/*    footer div.end div.inside {*/
/*        margin-bottom: 20px;*/
/*    }*/
/*}*/