footer {
    background-color: var(--black);
    margin-top: 5rem;
    padding-top: 3rem;
    padding-bottom: 3rem;
    color: var(--white);
}

footer a {
    color: var(--white);
}

footer h4 {
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.foot-2-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    column-gap: 4rem;
}
#footer-grid {
    margin-bottom: 3rem;
}

#footer-inner-grid ul.foot-menu {
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 1rem;
    row-gap: 1rem;
}

#footer-inner-grid ul {
    list-style: none;
    padding: 0
}

#footer-inner-grid a {
    text-decoration: none;
}

#footer-inner-grid ul.sub-menu li {
    font-weight: 400;
    line-height: 1.6;
    font-size: 1rem;
}

#footer-inner-grid ul:not(.sub-menu) li.menu-item-has-children {
    font-weight: 700;
    line-height: 1.3;
    font-size: 1.3rem;
}

hr.footer-hr {
    border: none;
    border-bottom: 1px solid var(--white);
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

#footer-upper img {
    max-width: 100%;
}

#footer-upper img, #footer-upper p {
    margin: auto 0;
}

#donate-cont {
    display: flex;
    justify-content: space-between;
}

#sm-cont {
    display: flex;
    height: fit-content;
    margin: auto 0;
}

#sm-cont a {
    text-decoration: none;
    display: flex;
    height: fit-content;
    padding: 0.5em;
    background-color: var(--red);
    border-radius: 3px;
    margin-left: 1rem;
}

#donate-cont i {
    font-size: 1.75rem;
    line-height: 1;
}

#bottom-bar small {
    display: inline;
}

#bottom-bar small, #bottom-bar a {
    color: var(--grey) !important;
}

#bottom-bar small {
    padding-right: 1.5rem;
}

@media only screen and (max-width: 980px) {
    #footer-grid {
        grid-template-columns: 1fr;
        row-gap: 2rem;
    }
}

@media only screen and (max-width: 780px) {
    .foot-2-grid {
        grid-template-columns: 1fr;
        row-gap: 2rem;
    }

    #imprint {
        display: none;
    }
}

@media only screen and (max-width: 600px) {
    #dataprotec {
        display: none;
    }
}

@media only screen and (max-width: 500px) {
    #bottom-bar small {
        display: block;
        margin-bottom: 0.5rem;
    }

    #donate-cont {
        display: block;
    }

    #sm-cont a {
        margin-top: 1rem;
        margin-right: 1rem;
        margin-left: 0;
    }
}

@media only screen and (max-width: 360px) {
    #footer-inner-grid ul.foot-menu {
        grid-template-columns: 1fr;
        row-gap: 3rem;
    }
}