#footer {
    background: var(--clr-primary-dark); 
    padding: 40px 0 25px 0;
    .footer-sitemap {
        display: none;
    }
    .row.seo {
        display: flex;
        justify-content: space-between;
        align-items: center;
        @media (width < 769px) {
            flex-direction: column;
        }
        > .footer-1 {
            width: 25%;
            @media (width < 991px) {
                width: 35%;
            }
            @media (width < 769px) {
                width: 100%;
                max-width: 320px;
            }
        }
        > .footer-2 {
            width: 65%;
            max-width: 500px;
            ul.level_1 {
                justify-content: space-between;
                align-items: center;
                @media (width < 769px) {
                    flex-wrap: wrap;
                    li.level_1 {
                        flex: 1 1 33%;
                        a {
                            text-decoration: none;
                            margin-bottom: 0px;
                        }
                    }
                }
                
            }
        }
        .footer-3 {
            display: none;
        }
        .footer-4 {
            display: none;
        }
    }
}
div#privacy-policy {
   background: var(--clr-primary-dark); 
}