footer {
    background-color: var(--hekkerij-brown);
    color: var(--white);

    font-family: var(--main-font), serif;
    font-size: 1.25rem;
}

.footer-top {
    background-color: var(--hekkerij-beige);
    text-align: center;
    font-family: var(--brand-font), serif;
}

.footer-mid {
    background-color: var(--hekkerij-brown-light);
    padding: 1rem 0;
}

.footer-bottom {
    background-color: var(--hekkerij-beige);
    padding: 1rem 0;
}

/* footer inside */
.footer-inner {
    display: flex;
    flex-direction: row;
    padding: 0 1rem;
}

.footer-col {
    width: 100%;
}

.footer-top {
    background-color: var(--hekkerij-beige);
    padding: 2rem 0;
    color: var(--white);
    font-size: 1.5rem;
}

.footer-top .footer-inner {
    justify-content: center;
    align-items: center;
}

.footer-top .footer-inner i {
    margin-right: 0.5rem;
}

/* footer list */
.footer-list {
    list-style-type: ">";
    list-style-position: inside;
    margin-bottom: 0;
    padding: 0;
}

.footer-list a {
    text-decoration: none;
    color: var(--text-negative);
}

.footer-list li {
    padding-left: 0.5rem
}

/* contact list */
.contact-section h1 {
    margin-bottom: 1rem;
}

.contact-list {
    list-style-type: none;
    margin: 0;
    padding: 0;
    font-weight: normal;
    font-size: 1.25rem;
}

.contact-list + .contact-list {
    margin-top: 1rem;
}

.contact-list li i {
    padding-right: 0.5rem;
}

.contact-list li + li {
    margin-top: 0.5rem;
}

/* sm screen */
@media only screen and (max-width: 768px) {
    .footer-inner {
        flex-direction: column;
    }

    .contact-list {
        font-size: 1rem;
    }
}