/* Footer body */

footer.site-footer {
    background: var(--w3-blue-dark);
    color: var(--w3-blue-light);
}

footer.site-footer .container-fluid {
    padding: 0 2rem;
}

footer.site-footer section {
    margin: 0;
}

footer .footer-body {
    padding: 2rem 0;
}

/* Footer block */
footer .footer-block a  {
    color: var(--w3-blue-light);
    text-decoration: none;
}

footer .footer-block .icon {
    font-size: 30px;
    margin-right: 1rem;
}

footer .footer-block .title {
    color: var(--w3-white);
    font-size: 18px;
    font-weight: 500;
}
/* End Footer block */

/* footer copyright */
footer .footer-copyright {
    background-color: #000000;
    padding: 1.875rem 0;
}

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

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

footer .footer-copyright .menu .menu-item a {
    text-decoration: none;
    color: inherit;
    color: var(--w3-blue-light);
}

footer .footer-copyright .menu .menu-item a:hover {
    color: var(--w3-white);
}

footer .footer-copyright .menu .menu-item:not(:last-child)::after {
    content: '/';
    height: 20px;
    display: inline-block;
    position: absolute;
    right: -5px;
    top: 10px;
}

footer .footer-copyright .social-media {
    column-gap: 15px;
}

footer .footer-copyright .social-media .list-item {
    padding: 0.5rem 0;
}

footer .footer-copyright .social-media .list-item a {
    color: var(--w3-blue-light);
    font-size: 1.25rem;
}


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

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

    footer .footer-copyright .menu .menu-item:not(:last-child)::after {
        display: none;
    }
}

@media (min-width: 992px) {
    footer .footer-block .icon {
        font-size: 36px;
    }
}