body {
    margin: 0;
    font-family: 'Ink Free', sans-serif;
    font-size: larger;
}

h2, h3 {
    margin-bottom: 0;
}

ul {
    list-style-type: square;
    margin: 0;
    white-space: normal;
}

li {
    margin-top: 10px;
}

.filter-light {
    filter: invert(94%) sepia(18%) saturate(184%) hue-rotate(113deg) brightness(98%) contrast(93%);
}

.icon-inline {
    height: 16px;
}

a[href^="mailto:"]
{
    color: #333;
}

/* Header */

.header {
    position: sticky;
    top: 0;
    width: 100%;
    padding: 5px;
    box-sizing: border-box;
    background-color: #333;
    align-content: center;
    border-bottom-color: #009879;
    border-bottom-width: 25px;
    border-bottom-style: solid;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo {
    max-width: 180px;
}

.header-nav {
    display: flex;
}

.header-nav .icon {
    display: none;
    border-radius: 10px;
    color: #d7f1ec;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    text-decoration: none;
}

.header-nav .icon:hover {
    background-color: #009879;
}

.menu-button {
    display: block;
    color: #d7f1ec;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

.menu-button:hover {
    background-color: #111;
}

.menu-button.active {
    background-color: #009879;
}

@media screen and (max-width: 800px) {
    .menu-button {
        padding-left: 10px;
        padding-right: 10px;
    }
}

@media screen and (max-width: 670px) {
    .header {
        align-content: normal;
    }
    .header-nav {
        flex-direction: column;
        position: relative;
    }
    .header-nav a {
        display: none;
    }
    .header-nav a.icon {
        display: block;
    }

    .header-nav.responsive {
        position: relative;
    }
    .header-nav.responsive .icon {
        position: absolute;
        right: 0;
        top: 6px;
        text-align: center;
    }
    .header-nav.responsive a {
        display: block;
        text-align: left;
    }
}

/* Content */

.content {
    display: flex;
    flex-direction: column;
    background-color: #d7f1ec;
    color: #333;
}

.container {
    display: flex;
}

.container.is-contact {
    margin-bottom: 300px;
}

.column {
    flex: 1;
    align-content: center;
    margin: 15px;
    scroll-margin-top: 80px;
}

.img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    border-radius: 10px;
    width: 100%;
    height: auto;
}

.img.vertical {
    max-width: 280px;
}

.img.horizontal {
    max-width: 465px;
}

.contactgegevens {
    font-family: 'Segoe Print', sans-serif;
    font-size: medium;
    white-space: pre-line;
}

@media screen and (max-width: 670px) {
    .container.middle {
        flex-direction: column;
    }
}

@media screen and (max-width: 500px) {
    .img.horizontal {
        max-width: 280px;
    }
}

/* Footer */

.footer {
    background-color: #333;
    color: #d7f1ec;
    border-top-color: #009879;
    border-top-width: 10px;
    border-top-style: solid;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 1rem;
    white-space: pre-line;
    padding: 10px;
    font-family: 'Roboto Light', sans-serif;
    font-size: medium;
}

.footer-img {
    display: block;
    border-radius: 10px;
    width: 200px;
    height: 100px;
    margin: auto;
}

.footer-info__list {
    display: flex;
    flex-wrap: wrap;
}

.footer-info__item {
    display: flex;
    width: 50%;
}

.footer-info__item__title {
    display: block;
    width: 140px;
    text-align: right;
    margin-right: 10px;
}

.footer-info__item__subtitle {
    display: block;
}

.has-info-list{
    align-content: center
}

@media screen and (max-width: 1130px) {
    .footer-info__list {
        flex-direction: column;
    }
    .footer-info__item {
        width: 100%;
    }
}

@media screen and (max-width: 800px) {
    .footer {
        flex-wrap: wrap;
    }
    .footer-blok.has-info-list {
        width: 100%;
        order: 3;
    }
    .footer-info__item__title {
        width: 40%;
    }
    .footer-info__item__subtitle {
        width: 60%;
    }
}

@media screen and (max-width: 460px) {
    .footer {
        white-space: unset;
    }
}