.footer_legal {
    width: 100%;
    /*border: solid 1px red;*/
}
.footer_legal_list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    padding: 0.9375rem 0;
    background-color: var(--secondary-background);
    /*border: solid 1px red;*/
}
.footer_legal_item {
    padding-left: 1.5rem;
    color: var(--primary-color);
    text-decoration: none;
    /*border: solid 1px black;*/
}
.footer_legal_item:hover {
    color: var(--white);
}
.footer_copyright {
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding: 0.375rem 0;
    background-color:  var(--tertiary-background);
    /*border: solid 1px red;*/
}

@media (min-width: 576px) {
}
@media (min-width: 768px) {
}
@media (min-width: 900px) {
    .footer_legal {
        position: fixed;
        left: 0;
        bottom: 0;
    }
}
@media (min-width: 992px) {
}
@media (min-width: 1200px) {
}