/* Footer body */

footer.site-footer {
    padding: 4rem 0 0;
}

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

footer .footer-logo {
	max-width: 290px;
	margin-inline: auto;
}

/* footer content */
footer .footer-content h1,
footer .footer-content h2 {
	font-weight: 400;
}

footer .footer-content ul {
	list-style: none;
	padding: 0;
    display: flex;
	flex-wrap: wrap;
	row-gap: 8px;
    justify-content: center;
}

footer .footer-content ul li:not(:last-child) {
	padding-right: 8px;
	margin-right: 8px;
	border-right: 1px solid var(--w3-black);
}

footer .footer-content a {
	font-weight: 600;
	color: var(--w3-black);
	text-decoration: none;
}

/* footer copyright */
footer .footer-copyright {
	background-color: var(--w3-blue);
	color: var(--w3-white);
	margin-top: 4rem;
}

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;
}

footer .footer-copyright .menu .menu-item:not(:last-child)::after {
    content: '';
    height: 20px;
    border-right: 1px solid ;
    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;
    }
}
