/* Footer banner */
.footer-banner {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 20vh 0;
    text-align: center;
    color: var(--w3-white);

    a {
        color: var(--w3-white);
        border: 1px solid var(--w3-white);
        text-decoration: none;
        padding: 10px 20px;
        transition: 0.2s;
    }

    a:hover {
        background-color: var(--w3-white);
        color: var(--w3-primary-color);
    }
}

/* Footer body */
footer.site-footer {
    background-color: var(--w3-light-beige);
    color: var(--w3-primary-color);
    padding: 3rem 0 1.5rem;
    font-weight: 300;
}

footer.site-footer a {
    color: var(--w3-primary-color);
    font-weight: 400;
    transition: 0.2s;
    line-height: 30px;
    text-decoration: none;
}

footer.site-footer a:hover {
    padding-left: 5px;
}

footer.site-footer .widget-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--w3-primary-color);
}

footer.site-footer .menu {
    padding: 0;
    margin: 0;
    list-style: none;
}

footer.site-footer .social-media .list-item a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--w3-secondary-color);
    border-radius: 10px;
    text-decoration: none;
    font-size: 1.25rem;
    padding: 0;
}

footer.site-footer .social-media .list-item a:hover {
    background-color: var(--w3-secondary-color);
    color: var(--w3-primary-color);
}

/* footer copyright */
footer .footer-copyright {
    margin-top: 4rem;
}

footer .footer-copyright .container {
    padding-top: 1rem;
    border-top: 1px solid var(--w3-secondary-color);
}

footer .footer-copyright .widget_nav_menu {
    margin: 0;
}
footer .footer-copyright .menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

footer .footer-copyright .menu .menu-item {
    padding: .5rem;
    position: relative;
}

footer .footer-copyright .menu .menu-item a {
    color: inherit;
    font-weight: 400;
}

@media (max-width: 578px) {
    footer .footer-copyright .menu {
        flex-flow: column;
        margin-left: 0;
    }

    footer .footer-copyright .menu .menu-item {
        padding: 0 .5rem;
    }
}
