.lato-bold {
    font-family: "Lato", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.lato-regular {
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.lato-light {
    font-family: "Lato", sans-serif;
    font-weight: 300;
    font-style: normal;
}

:root {
    --swiper-theme-color: #363636;
    --swiper-navigation-color: #363636;
    --swiper-pagination-color: #363636;

    --top-menu-height: 35px;
}


html {
    margin: 0;
    padding: 0;
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;

    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-style: normal;

    --padding: 15px;
}

body {
    margin: 0;
    background: #F9F8F2;
}

h1 {
    font-family: "Lora", serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
}

img {
    border: none;
}

header {
    text-align: center;
}

header > img {
    max-width: 300px;
    margin-top: 2em;
    margin-bottom: 1em;
}

.logo-wrapper {
    padding-bottom: 13em;
    text-align: left;
}

.logo-wrapper-inner {
    margin: 0 auto;
    max-width: 800px;
}

.logo-wrapper img {
    margin: 1em;
    max-width: 400px;
}

.nav-wrapper {
    background-color: #85947E;
    padding: 1em;
}

header nav {
    position: relative;

    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
    gap: 10px 30px;
    padding: 0.5em;

    margin: 0 auto;
    max-width: 800px;

    background-color: #EEE8D8;
    border-radius: 100px;

    box-sizing: border-box;
    min-height: var(--top-menu-height);
}

svg.hidden {
    display: none;
}

.logo-wrapper {
    background-image: url("/assets/images/bloem.jpg");
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position-y: -365px;
    background-size: 100%;
}


header nav a {
    color: #676767;
    text-decoration: none;
    text-transform: uppercase;
}

header nav a:hover, header nav a:active, header nav a.current {
    color: #000000;
}

footer {
    background-color: #85947E;
    padding: 1em;
}

footer .content {
    display: flex;
    flex-wrap: wrap;
    gap: 1em;
}

.content-wrapper {
}

.content {
    margin: 0 auto;
    max-width: 800px;

    padding: 1em;
}

.box {
    padding: 1em;
}

.box+.box {
    margin-top: 1em;
}

.bg-light {
    background: #F9F8F2;
}

.bg-green {
    background-color: #E2E0D3;
}

.content-pull-up {
    position: relative;
    top: -150px;
}

.columns-2 {
    display: flex;
    gap: 1em;
}

.column {

}

.images {
    display: flex;
    gap: 1em;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
}

.column.image {
    display: flex;
    align-items: flex-start;
    flex-shrink: 0;
}

.column.image img {
    max-width: 100%;
}

.column.images-vertical {
    display: flex;
    flex-direction: column;
    gap: 1em;
}

.column.images-vertical img {
    display: block;
}

.images img {
    max-width: 100%;
}

#menu-toggle {
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    width: var(--top-menu-height);
    height: var(--top-menu-height);
    background-color: transparent;
    border: none;
}

#menu-toggle:hover, #menu-toggle:active {
}

@media only screen and (max-width: 1100px) {
    .logo-wrapper {
        background-position-y: -128px;
    }
}

@media only screen and (max-width: 700px) {
    h1 {
        font-size: 1.5em;
    }

    .logo-wrapper {
        background-position-y: 0!important;
        background-position-x: center;
    }

    .logo-wrapper {
        text-align: center;
        padding-bottom: 6.5em;
    }

    .logo-wrapper-inner {
        padding: 1em;
    }

    .logo-wrapper img {
        max-width: 100%;
        margin: 0;
    }

    .columns-2 {
        flex-direction: column;
    }

    .column.image {
        align-self: center;
    }

    header nav {
        flex-direction: column;
        border-radius: calc(var(--top-menu-height) / 2);
    }

    #menu-toggle {
        display: block;
    }

    header nav:not(.open) a:not(.current) {
        display: none;
    }
}

.swiper {
    width: 100%;
    height: 400px;
    background-color: #EEE8D8;
}

.swiper-slide > div {
    width: 100%;
    /*height: 250px;*/
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.swiper img {
    flex-shrink: 0;
    max-width: 100%;
    max-height: 100%;
}

