/* +++++++++++++++++++++++++++++++ *\
            FOOTER
\* +++++++++++++++++++++++++++++++ */
footer {
    max-width: var(--max_width);
    margin-left: auto;
    margin-right: auto;
}
.footer_top_section {
    border-bottom: 1px solid rgba(0, 0, 0, .1);
    padding: 16px;
    margin-bottom: 1rem;
}
  
.footer_logo a{
    color: #222;
    text-decoration: none;
}
.footer_logo a:hover {
    color: var(--color_primary);
}
  
.legal_box {
    padding: 0;
}
.legal_box a {
    color: #054a91 !important;
    display: block;
    text-decoration: none !important;
}
.legal_box a:hover {
    text-decoration: underline;
}
  
.footer_bottom_section {
    margin-left: auto;
    margin-right: auto;
    max-width: 1000px;
    width: 100%;
    padding: 0 16px;
}
  
.footer_bottom_section p {
    font-size: .75rem !important;
    line-height: 1rem;
    text-align: center;
}
  
@media (min-width: 768px) {
    .legal_box a {
        display: inline-block;
        margin-right: 1rem;
    }
}
@media (min-width: 1280px) {
    .footer_top_section {
        display: flex;
        justify-content: flex-end;
    }
    .legal_box a {
        border-left: 1px solid #fe5722;
        margin-left: 1rem;
        margin-right: 0;
        padding: 0 1rem;
    }
    .legal_box a:first-child {
        border: none;
    }
}