footer {
    background-color: var(--secondary-color);
    height: 60px;
    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 {
        height: 35px;
        width: auto;
    }
}