footer {
    position: relative;
    margin-top: 50px;
    padding: 100px 0;

    background: var(--primary-color);
    color: var(--accent-color);
}

.footer-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 .714285rem;

    box-sizing: border-box;
}

footer .logo {
    position: absolute;
    width: 100%;
    height: 100px;
    top: -50px;

    display: flex;
    place-items: center;
}

footer .logo img {
    height: inherit;
    margin: auto;

    pointer-events: none;
    user-select: none;
}

footer .socialmedia {
    text-align: center;
    font-size: 1.25em;
    margin-bottom: 1.5rem;
}

@media (min-width: 544px) {
    footer .socialmedia {
        margin-bottom: 4rem;
    }
}

footer li {
	list-style: none;
}

footer .socialmedia li {
	display: inline-flex;
	align-items: center;
	list-style: none;
	height: 100%;
    margin-right: 5px;
    opacity: 50%;
}

footer .socialmedia li:last-of-type {
    margin-right: 0;
}

footer .socialmedia li:has([href=""]) {
	display: none;
}

footer .socialmedia a {
    margin: 0 2px;
    padding: 8px;
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    text-decoration: none;
}

footer .socialmedia a[href=""] {
	display: none;
}

footer .socialmedia i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.25em;
    height: 1.25em;
}

.footer-navigation {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    flex-wrap: wrap;
    width: 100%;
}

.footer-navigation a {
    font-style: inherit;
    text-decoration: none;
}

.footer-navigation .sub-menu {
    margin-top: .5rem;
}

.footer-navigation li {
    flex: 1;

    padding: 0 .714285rem;

    font-family: var(--secondary-font);
    font-weight: 900;
    line-height: 1.1;
    text-align: center;

    min-width: 100%;
    margin-bottom: 1rem;
}

@media (min-width: 544px) {
    .footer-navigation li {
        min-width: 33.3333333333%;
        text-align: left;
    }
}

@media (min-width: 992px) {
    .footer-navigation li {
        min-width: 12.5%;
    }
}

.footer-navigation .sub-menu li {
    padding: 0;

    font-size: 85.7%;
    font-family: var(--main-font);
    font-style: normal;
    font-weight: normal;
    line-height: 22px;
    margin-bottom: 0;
}

.footer-navigation .sub-menu a:hover,
.footer-navigation .sub-menu a:focus {
    text-decoration: underline;
}

footer .widget:first-of-type {
    margin-top: 0;
}

footer .footer-navigation+.widget {
    margin-top: 1.5rem;
}

footer .widget {
    margin-top: .75rem;
}

@media (min-width: 544px) {
    footer .footer-navigation+.widget {
        margin-top: 4rem;
    }
    
    footer .widget {
        margin-top: 2rem;
    }
}