.site-footer{
    box-shadow: var(--box-shadow-main);
    margin-top:40px;
}
.footer-content-wrapper{
    display:flex;
    flex-direction: column;
    align-items: space-between;
    justify-content: space-between;
}
.footer-content{
    display:flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap:1em;
}
.footer-content.content-top>.footer-navigation,.footer-content.content-top>.anpc-banner-container{
    flex:1;
}
.footer-content.content-bottom{
    align-self:center;
}
#footer-menu{
     display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1em;
    list-style:none;
}

@media screen and (max-width:768px){
    .footer-content,#footer-menu{
        flex-direction:column;
    }
}