@charset "UTF-8";

/* NIKS AANPASSEN IN DIT BESTAND */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video
{margin:0; padding:0; border:0; font-size:100%; font:inherit; vertical-align:baseline; background:transparent;}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary
{display: block;}

audio, canvas, video {display: inline-block; *display:inline; *zoom:1;}

audio:not([controls]) {display:none; height:0;}

[hidden] {display:none;}

html {overflow-y:scroll; overflow-x:hidden; font-size:100%; -webkit-text-size-adjust:100%; -ms-text-size-adjust:100%;}    
    
body {line-height: 1;}

nav ul, nav ol {list-style: none; list-style-image:none;}    
ol, ul {list-style: none;}
    
blockquote, q {quotes: none;}
blockquote:before, blockquote:after, q:before, q:after {content: ''; content: none; font-size:75%}
abbr[title], dfn[title] {border-bottom:1px dotted; cursor:help;}    

sub, sup {font-size:75%; line-height:0; position:relative; vertical-align:baseline}
sub {bottom: -0.25em;}
sup {top: -0.5em;}

table {border-collapse: collapse; border-spacing: 0;}

a:link, a:visited, a:hover, a:active {text-decoration:none;}
a img, :link img, :visited img {border:none;}
a:focus {outline: thin dotted;}
a:active, a:hover {outline: 0;}

html, button, input, select, textarea {font-family: sans-serif;}
textarea {resize:none; vertical-align:top; font-size:100%; overflow:auto;}
textarea:focus {outline:none;}
input:focus {outline:none;}
button, input, select {vertical-align: baseline; *vertical-align: middle; font-size:100%; line-height:normal; margin:0;}
legend {white-space: normal; *margin-left:-7px;}
button, input[type="button"], input[type="reset"], input[type="submit"] {-webkit-appearance:button; cursor:pointer; *overflow: visible;}
button[disabled], input[disabled] {cursor: default;}
input[type="checkbox"], input[type="radio"] {box-sizing; border-box; *height: 13px; *width: 13px;}
input[type="search"] {-webkit-appearance: textfield; -moz-box-sizing: content-box; -webkit-box-sizing: content-box; box-sizing: content-box;}
input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration {-webkit-appearance:none;}
button::-moz-focus-inner, input::-moz-focus-inner {border:0; padding:0;}

img {-ms-interpolation-mode: bicubic;}
svg:not(:root) {overflow:hidden;}

strong, b {font-weight:bold}

tt {font-family: "Courier New", Courier, monospace}
code, kbd, pre, samp {font-family: monospace, serif; _font-family: 'courier new', monospace; font-size:16px;}
pre {white-space: pre; white-space:pre-wrap; word-wrap: break-word;}
hr {display:block; height:1px; border:0; border-top:1px solid #cccccc; margin:1em 0; padding:0;}
i {font-style:italic}
u {text-decoration:underline}
strike, del {text-decoration:line-through}
ins {text-decoration:none}
center {text-align:center}
dfn {font-style:italic}
mark {background: #ff0; color: #000;}

/* EXTERNE FONTS */

/* GEHOSTE FONTS */
@font-face {
    font-family: 'Stone Informal';
    src: url('/fonts/StoneInfMedium.eot');
    src: url('/fonts/StoneInfMedium.eot?#iefix') format('embedded-opentype'),
        url('/fonts/StoneInfMedium.woff2') format('woff2'),
        url('/fonts/StoneInfMedium.woff') format('woff'),
        url('/fonts/StoneInfMedium.ttf') format('truetype'),
        url('fonts/StoneInfMedium.svg#StoneInfMedium') format('svg');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

/* Set variables */

:root {
    --color-primary: #576b11;
    --color-secondary: #8da82d;
    --color-primary-black: #1d1d1b;
    --color-primary-grey: #606060;
    --color-secondary-grey: #969696;
    --color-primary-white: #fcfcf3;
    --color-bg: #f7f7f7;
    --font-primary: "Montserrat", sans-serif;
    --font-weight-normal: 300;
    --font-weight-medium: 400;
    --font-weight-bold: 700;
    --font-size-normal: 18px;
    --font-size-large: 22px;
    --font-size-small: 16px;
}

* {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

textarea:focus,
input:focus,
select:focus,
button:focus,
option:focus {
    outline: none;
}

input[type=text],
input[type=submit],
input[type=email],
input[type=tel],
input[type=url],
input[type=search],
textarea,
select,
option {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    border-radius: 0;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
}

html,
body {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: var(--font-primary);
    background-color: var(--color-bg);
    color: var(--color-primary-black);
    font-weight: var(--font-weight-normal);
}

#loading-indicator {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.8);
    color: var(--color-primary-black);
    font-size: 1.5em;
}

.iframeHolder {
    text-align: center;
}

.iframeHolder iframe {
    max-width: 900px !important;
    width: 100% !important;
    margin: 0 auto;
    display: block;
    height: 2000px;
}

/* KEYFRAMES */

.come-in {
    transform: translateY(150px);
    opacity: 0;
    animation: come-in 0.8s ease forwards;
}

.come-in:nth-child(odd) {
    animation-duration: 2s;
    /* So they look staggered */
}

@keyframes come-in {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media screen and (min-width: 800px) {
    .come-in-left {
        transform: translateX(-300px);
        opacity: 0;
        animation: come-in-left 0.8s ease forwards;
    }

    .come-in-left:nth-child(odd) {
        animation-duration: 2s;
        /* So they look staggered */
    }

    @keyframes come-in-left {
        to {
            transform: translateX(0);
            opacity: 1;
        }
    }

    .come-in-right {
        transform: translateX(300px);
        opacity: 0;
        animation: come-in-right 0.8s ease forwards;
    }

    .come-in-right:nth-child(odd) {
        animation-duration: 2s;
        /* So they look staggered */
    }

    @keyframes come-in-right {
        to {
            transform: translateX(0);
            opacity: 1;
        }
    }
}

/* EINDE KEYFRAMES */
/* Bevestiging */

.bevestiging_bg {
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    -ms-align-items: center;
    align-items: center;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.bevestiging {
    width: 100%;
    -webkit-box-shadow: 0px 0px 22px 0px rgba(82, 82, 82, 0.10);
    -moz-box-shadow: 0px 0px 22px 0px rgba(82, 82, 82, 0.10);
    box-shadow: 0px 0px 22px 0px rgba(82, 82, 82, 0.10);
    max-width: 700px;
    padding: 50px;
    background-color: white;
    display: flex;
    justify-content: center;
    -ms-align-items: center;
    align-items: center;
    flex-direction: column;
}

.bevestiging i {
    font-size: 35px;
    color: #353535;
    margin-bottom: 20px;
}

.bevestiging h2 {
    text-transform: uppercase;
    color: #353535;
    font-size: 15px;
    margin: 10px 0;
}

.bevestiging h1 {
	font-family: 'Stone Informal';
    font-weight: var(--font-weight-medium);
    font-size: 25px;
    text-align: center;
    color: #353535;
    margin-bottom: 10px;
}

.bevestiging p {
    line-height: 150%;
    color: #353535;
    font-size: 17px;
    text-align: center;
}

.bevestiging a {
    cursor: pointer;
    display: inline-block;
    padding: 0;
    padding: 7px 20px;
    background-color: var(--color-primary-grey);
    color: var(--color-primary-white);
    margin-top: 20px;
    border: 1px solid var(--color-primary-grey);
    transition: all 1s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bevestiging a:hover {
    background-color: transparent;
    color: var(--color-primary-grey);
}

/* Einde Bevestiging*/
/* Cookie Melding */

.plenso_cookies {
    position: fixed;
    z-index: 9999;
    left: 10px;
    bottom: 10px;
    background-color: white;
    border-radius: 5px;
    max-width: 400px;
    -webkit-box-shadow: 0px 0 45px -0 rgba(0, 29, 147, 0.15);
    -moz-box-shadow: 0px 0 45px -0 rgba(0, 29, 147, 0.15);
    box-shadow: 0px 0 45px -0 rgba(0, 29, 147, 0.15);
    display: flex;
    justify-content: flex-start;
    -ms-align-items: flex-start;
    align-items: flex-start;
    flex-direction: column;
    padding: 25px;
    transition: all .5s;
}

.plenso_cookies>img {
    width: 50px;
}

.plenso_cookies>div {
    color: #3e3e3e;
    padding: 25px 0px;
    line-height: 25px;
    text-align: justify;
    font-size: 16px;
}

.plenso_cookies>div a {
    color: #3e3e3e;
    text-decoration: underline;
}

.plenso_cookies>a {
    background-color: var(--color-primary-grey);
    color: white;
    font-size: 15px;
    font-weight: var(--font-weight-bold);
    white-space: nowrap;
    padding: 18px 30px;
    border-radius: 5px;
    display: inline-block;
    cursor: pointer;
    transition: all .3s;
}

.plenso_cookies>a:hover {
    transform: scale(1.1);
}

/* Einde cookiemelding */
/* Reservation Button */
.reservation-container, .reservation-link {
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-family: sans-serif;
    z-index: 9999;
}

.reservation-link {
    width: 175px;
    transition: transform 0.3s ease;
}

/* Rotate reservation link slightly to the right on hover (rotation) */
.reservation-link:hover {
    transform: rotate(5deg);    
}

.reservation-link img {
    width: 100%;
}

.reservation-container.open .icon-right i {
    transform: rotate(180deg);
}

/* The main button */
.reservation-button {
    background-color: var(--color-primary);
    color: var(--color-primary-white);
    cursor: pointer;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    transition: transform 0.3s ease;
    border-radius: 1rem;
    padding: 0 20px;
    gap: 15px;
    border: 2px solid var(--color-primary-white);
}

.reservation-button>div {
    display: flex;
    justify-content: center;
    align-items: center;
}

.reservation-button .reservation-text {
    padding: 10px 0;
}

.reservation-button .icon-left {
    padding: 0 15px 0 0;
    border-right: 1px solid var(--color-primary-white);
}

.reservation-button .icon-left img {
    width: 20px;
}

.reservation-button .icon-right i {
    transition: transform 0.3s ease;
}

.reservation-dropdown {
    width: 90%;
    margin: 0 auto;
    background-color: #fff;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease;
}

.open .reservation-dropdown {
    max-height: 500px;
}

/* Dropdown links */
.reservation-dropdown a {
    display: block;
    padding: 10px 14px;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #eee;
}

.reservation-dropdown a:last-child {
    border-bottom: none;
}

.reservation-dropdown a:hover {
    background-color: #f2f2f2;
}

/* Einde Reservation Button */
/* GDPR */

#content-container {
    width: 100%;
    max-width: 60%;
    margin: 0 auto;
    margin: auto;
}

#content-container h1 {
	font-family: 'Stone Informal';
    width: 100%;
    text-align: center;
    font-size: 2.5em;
    font-weight: var(--font-weight-bold);
    color: var(--color-primary-grey);
    margin-bottom: 20px;
    margin-top: 150px;
    font-family: 'Nanum Myeongjo', serif;
}

#content-container h2 {
    color: var(--color-primary-grey);
    font-size: 2em;
    font-weight: var(--font-weight-bold);
    margin-bottom: 1em;
    margin-top: 1em;
    cursor: pointer;
    padding-left: 15px;
    font-family: 'Nanum Myeongjo', serif;
}

#content-container h3 {
    background: var(--color-primary-grey);
    color: var(--color-primary-white);
    font-size: 1.2em;
    padding: 10px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    display: flex;
    justify-content: flex-start;
    -ms-align-items: center;
    align-items: center;
    margin-top: 20px;
    font-family: 'Nanum Myeongjo', serif;
}

#content-container h3 span {
    position: absolute;
    z-index: 1;
    background: transparent url("/images/cross_w.png") no-repeat;
    display: inline-block;
    width: 15px;
}

#content-container h4 {
    margin-left: 2em;
    font-size: 1.1em;
    font-weight: var(--font-weight-bold);
}

#content-container p {
    padding: 20px;
    line-height: 170%;
    color: #7e7e7e;
    font-size: 1.1em;
}

#content-container ul {
    margin-left: 3em;
    padding-left: 20px;
    line-height: 170%;
    color: #7e7e7e;
    list-style-type: disc;
}

#content-container table {
    width: 100%;
}

#content-container table thead {
    background-color: #A68A54;
    color: var(--color-primary-white);
}

#content-container table thead th {
    border: 1px solid #353535;
    padding: 10px;
}

#content-container table tbody td {
    border: 1px solid #353535;
    color: #7e7e7e;
    line-height: 150%;
    padding: 5px;
}

#content-container table tbody td p {
    padding: 0px;
}

#content-container a {
    color: #353535;
    font-weight: var(--font-weight-bold);
}

#gdpr-wrapper {
    min-height: 100%;
    position: relative;
}

/* Einde GDPR */
/* Instagram */
.band {
    padding: 100px 0;
}

.band .between-titel {
	font-family: 'Stone Informal';
    text-align: center;
    font-size: 2.5rem;
    color: var(--color-primary-grey);
    font-weight: var(--font-weight-bold);
    text-align: center;
    margin-bottom: 30px;
}

.instagram_feed {
    width: 96%;
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    -ms-align-items: center;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
}

.instagram_feed .instagram_post {
    width: calc(25% - 9px);
    position: relative;
    height: 350px;
    background-size: cover;
    overflow: hidden;
}

@media all and (max-width: 900px) {
    .instagram_feed .instagram_post {
        width: calc(50% - 6px);
    }
}

@media all and (max-width: 500px) {
    .instagram_feed .instagram_post {
        width: 100%;
    }
}

.instagram_feed .instagram_post i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 30px;
}

.instagram_feed .instagram_post img,
.instagram_feed .instagram_post video {
    width: 100%;
}

.instagram_feed .instagram_post .videoInstagram {
    width: 100%;
    height: 100%;
    position: absolute;
    object-fit: cover;
    z-index: 0;
}

.instagram_feed .instagram_post .overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    z-index: 1;
    background-color: rgba(0, 0, 0, .5);
    opacity: 0;
    display: flex;
    justify-content: center;
    -ms-align-items: center;
    align-items: center;
    color: white;
    font-size: 3em;
    transition: all .3s;
}

.instagram_feed .instagram_post:hover .overlay {
    opacity: 1;
}

/* Einde Instagram */
/* Curtaindrop */
.curtain-click {
    cursor: pointer;
    z-index: 10;
}

.curtain-click.title {
    padding: 10px 150px 10px 30px;
    padding-top: 7px;
    width: fit-content;
    margin-bottom: 15px;
    position: absolute;
    top: 0;
    right: 10%;
}

.curtain-click.title span {
    background: linear-gradient(90deg, var(--color-primary-white), var(--color-primary-white), var(--color-primary-white));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-repeat: no-repeat;
    background-size: 80%;
    animation: shine 5s linear infinite;
    position: relative;
    margin-left: 10px;
    font-weight: var(--font-weight-medium);
    font-size: 16px;
    text-transform: uppercase;
}

.curtain-click i {
    color: rgba(255, 255, 255, 0.37);
}

@keyframes shine {
    0% {
        background-position-x: -500%;
    }

    100% {
        background-position-x: 500%;
    }
}

.curtaindrop {
    width: 100%;
    z-index: 100;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    display: none;
    position: fixed;
}

.curtaindrop>video {
    position: absolute;
    left: 50%;
    top: 50%;
    min-height: 100%;
    min-width: 100%;
    z-index: 0;
    transform: translate(-50%, -50%);
}

.curtaindrop .overlay {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.678);
    opacity: 0.8;
}

.curtaindrop>div {
    display: block;
    width: 100%;
    height: 100%;
    z-index: 1;
    position: relative;
    background-position: center;
    background-size: cover;
    background-color: rgba(58, 58, 58, 1);
}

.curtaindrop>div>div:last-child {
    position: absolute;
    left: 50%;
    width: 90%;
    max-width: 1000px;
    color: var(--color-primary-white);
    z-index: 200;
    top: 50%;
    transform: translateY(-50%) translateX(-50%);
    -ms-transform: translateY(-50%) translateX(-50%);
    -webkit-transform: translateY(-50%) translateX(-50%);
    -moz-transform: translateY(-50%) translateX(-50%);
    -o-transform: translateY(-50%) translateX(-50%);
    text-align: center;
}

.curtaindrop .button {
    display: inline-block;
    padding: 10px 30px;
    background-color: transparent;
    cursor: pointer;
    font-weight: var(--font-weight-bold);
    letter-spacing: 1px;
    border-radius: 4px;
    font-size: 20px;
    color: var(--color-primary-white);
    border: 1px solid var(--color-primary-white);
    transition: all 0.8s ease;
    margin-top: 30px;
}

.curtaindrop .button:hover {
    background-color: var(--color-primary-white);
    color: var(--color-primary-grey);
}

.curtaindrop p {
    font-size: 1.4em;
    line-height: 1.6em;
}

.curtaindrop img {
    max-width: 1000px;
    width: 96%;
}

.curtaindrop h2 {
    font-weight: var(--font-weight-bold);
    font-size: 3em;
    margin: 0;
    margin-bottom: 15px;
    text-align: center;
}

.curtaindrop .line {
    background-color: white;
    width: 50px;
    height: 2px;
    margin: 20px auto;
}

.curtaindrop>span {
    position: absolute;
    left: -123px;
    top: 0;
    display: block;
    width: 0;
    height: 0;
    border-right: 18px solid transparent;
    border-top: 34px solid #b0d49b;
    border-left: 18px solid transparent;
}

.curtaindrop>span i {
    font-style: normal;
    position: absolute;
    right: 20px;
    cursor: pointer;
    color: #b0d49b;
    width: 300px;
    overflow: hidden;
    top: -34px;
    display: block;
    height: 34px;
    line-height: 34px;
    text-align: right;
}

.curtaindrop>span:before {
    position: absolute;
    top: -38px;
    cursor: pointer;
    left: -17px;
    height: 34px;
    line-height: 34px;
    color: var(--color-primary-white);
    font-weight: var(--font-weight-bold);
    font-size: 25px;
    width: 36px;
    display: block;
    text-align: center;
    content: '!';
}

.curtaindrop .curtain-close {
    position: absolute;
    right: 40px;
    top: 30px;
    font-size: 40px;
    cursor: pointer;
    color: var(--color-primary-white);
    z-index: 100000000;
}

/* Einde Curtaindrop */
/* NAVIGATIE DESKTOP */
/* Navigatie */

.navigatie {
    width: 80%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0 10px 25px 10px;
    z-index: 2;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.navigatie nav {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
    margin-top: 50px;
    gap: 10px;
}

.navigatie nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
}

.navigatie nav ul.bottom-nav li {
    padding: 10px 20px;
}

.logo {
    width: 180px;
    transform: translateY(-30px);
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo.small {
    transform: none;
}

.logo.diff {
    background-color: var(--color-primary-grey);
}

.logo img {
    width: 100%;
}

.language-dropdown {
    position: relative;
    display: inline-block;
}

.language-dropdown .dropbtn {
    color: white;
    padding: 10px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    background: transparent;
}

.language-dropdown:hover .dropbtn {
    background-color: var(--color-primary-grey);
}

.language-dropdown .dropdown-content {
    display: none;
    position: absolute;
    z-index: 1;
    left: 10px;
    right: 10px;
    background-color: #f9f9f9;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
}

.language-dropdown .dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.language-dropdown .dropdown-content a:hover {
    background-color: #f1f1f1;
}

.language-dropdown:hover .dropdown-content {
    display: block;
}

/* EINDE NAVIGATIE DESKTOP */
/* RESPONSIVE NAVIGATIE */

.menubtn {
    width: 40px;
    cursor: pointer;
    transition: all .3s;
    display: block;
    font-size: 40px;
    color: var(--color-primary-white);
    margin-left: 15px;
}

.menubtn:hover {
    transform: scale(1.05);
}

.menuoverlay {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    z-index: 5;
    background-color: rgba(0, 0, 0, .5);
}

.res-nav {
    width: 100%;
    max-width: 400px;
    height: 100%;
    position: fixed;
    right: -700px;
    top: 0;
    z-index: 10000;
    transition: all .6s;
    background-color:  var(--color-primary-white);
    padding-bottom: 100px;
}

.res-nav .res-logo {
    width: 100px;
    position: absolute;
    right: 30px;
    top: 30px;
}

.res-nav nav {
    flex-direction: column;
    -ms-align-items: flex-start;
    align-items: flex-start;
    overflow: auto;
    padding: 50px 30px;
    height: 100%;
    position: relative;
}

.res-nav nav .navitem {
    width: 100%;
    padding: 20px 0;
    text-align: right;
}

.res-nav nav .navitem div {
    display: flex;
    justify-content: space-between;
    -ms-align-items: center;
    align-items: center;
    width: 100%;
    cursor: pointer;
}

.res-nav nav .navitem div img {
    width: 20px;
    transition: all .5s;
    transform: rotate(0deg);
}

.res-nav nav .navitem div.rotateImg {
    transform: rotate(-180deg) !important;
}

.res-nav nav .navitem a {
    text-align: left;
    display: inline-block;
    color:  var(--color-primary-black);
    font-size: 20px;
    position: relative;
    transition: all .3s;
}

.res-nav nav .navitem a:hover {
    color: var(--color-primary);
}

.res-nav nav .navitem a.activelink {
    color: var(--color-primary);
    font-weight: bold;
}

.res-nav nav .navitem i {
    font-size: 25px;
    transition: all .3s;
}

.res-nav nav .navitem i.rotate {
    transform: rotate(90deg);
}

.res-nav nav .navitem ul {
    display: none;
    flex-direction: column;
    -ms-align-items: flex-start;
    align-items: flex-start;
    padding-top: 10px;
}

.res-nav nav .navitem ul li {
    display: flex;
    justify-content: flex-start;
    -ms-align-items: center;
    align-items: center;
    padding-left: 15px;
    border-left: 2px solid #eeeeee;
}

.res-nav nav .navitem ul li i {
    margin-left: -7px;
    color: #c8c8c8;
    font-size: .7em;
    margin-right: 20px;
}

.res-nav nav .navitem ul li a {
    font-size: 1em;
    color: #949494;
    padding: 7px 0;
    padding-left: 0;
}

.menuoverlay {
    position: absolute;
    z-index: 100;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: none;
    background-color: rgba(0, 0, 0, .4);
}

.overvisible {
    display: block;
}

.nav_top {
    position: absolute;
    top: 30px;
    left: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    right: 30px;
}

.closebtn {
    background-color: var(--color-primary-grey);
    width: 40px;
    height: 40px;
    cursor: pointer;
    position: absolute;
    z-index: 9999;
    left: -20px;
    top: 30px;
    padding: 8px;
}

.menu-block {
    overflow: hidden;
}

.menu-is-open {
    right: 0;
}

.navi_footer>div {
    color: #fafafa42;
    position: absolute;
    bottom: 10px;
    font-size: 13px;
    text-align: center;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
}

.navi_footer>div div {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    -ms-align-items: center;
}

.navi_footer>div p {
    width: 100%;
    text-align: center;
    padding: 5px;
    margin-bottom: 7px;
    color: #fafafa42;
    font-weight: var(--font-weight-medium);
    font-size: 17px;
    font-style: italic;
    z-index: 100;
}

.navi_footer>div a {
    color: #fafafa42;
    font-size: .9em;
}

.navi_footer img {
    width: 100%;
    position: absolute;
    bottom: 0;
}

.navi_footer img.logo {
    position: absolute;
    top: 30px;
    width: 100px;
    right: 30px;
}

.navi_footer span {
    margin: 0 10px;
}

#page_banner {
    width: 100%;
    position: relative;
    border-bottom-right-radius: 50px;
    border-bottom-left-radius: 50px;
    overflow: hidden;
}

#page_banner:after {
    content: '';
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

#page_banner img {
    width: 100%;
}

@media (max-width: 650px) {
    #page_banner img {
        display: none;
    }
}

#page_banner img.img_resp {
    display: none;
}

@media (max-width: 650px) {
    #page_banner img.img_resp {
        display: block;
    }
}

.home_banner {
    width: 100%;
    margin: auto;
}

.home_banner .slick-arrow {
    position: absolute;
    z-index: 2;
    right: 10px;
    top: 50%;
    width: 40px;
    height: 40px;
    background-color: var(--color-primary-grey);
    border-radius: 200px;
    color: var(--color-primary-white);
    font-size: 1em;
    border: none;
    transform: translateY(-50%);
}

.home_banner .slick-arrow.slick-next {
    position: absolute;
    right: 10px;
}

.home_banner .slick-arrow.slick-prev {
    position: absolute;
    left: 10px;
}

.home_banner article {
    position: relative;
    height: 100vh;
    background-position: center;
    background-size: cover;
}

.home_banner article>div {
    position: absolute;
    z-index: 4;
    left: 40px;
    right: 40px;
    bottom: 40px;
    display: flex;
    justify-content: flex-start;
    -ms-align-items: flex-start;
    align-items: flex-start;
    padding: 20px;
    flex-direction: column;
    gap: 10px;
}

.home_banner article>div h2 {
    font-weight: var(--font-weight-bold);
    font-size: 2.7em;
    color: var(--color-primary-white);
    text-shadow: 0px 0px 11px #000000;
}

.home_banner article>div h3 {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.1em;
    margin-bottom: 10px;
    color: var(--color-primary-grey);
    text-shadow: 0px 0px 11px #000000;
}

.home_banner article>div a {
    color: var(--color-secondary);
    font-size: 20px;
    background-color: transparent;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    -ms-align-items: flex-end;
    transition: all .3s;
    letter-spacing: 2px;
    border-bottom: 1px solid var(--color-secondary);
    padding-bottom: 4px;
    width: fit-content;
}

.home_banner article>div a i {
    transition: all 0.8s ease;
    margin-left: 10px;
}

.home_banner article>div a:hover i {
    transform: translateX(10px);
}

.home_banner article .overlay {
    position: absolute;
    z-index: 2;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #3a3a3a71;
    opacity: 1;
    transition: all 0.8s ease;
}

.page_header {
    padding: 60px 20px;
    text-align: center;
}

.page_header.thin {
    padding: 0 20px;
}

.page_header .line {
    background-color: var(--color-primary-grey);
    width: 30px;
    height: 2px;
    margin: 30px auto;
}

.page_header .c {
    line-height: 150%;
    font-size: var(--font-size-normal);
    color: #4C4C4C;
    width: 60%;
    margin: auto;
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
}

.page_header i {
    font-size: 25px;
    margin-bottom: 15px;
    color: #a66465;
}

.page_header h1 {
	font-family: 'Stone Informal';
    color: var(--color-primary-grey);
    font-size: 2.7em;
    font-weight: var(--font-weight-bold);
    margin-bottom: 15px;
    display: inline-block;
    width: 90%;
}

.page_header>h2 {
	font-family: 'Stone Informal';
    color: #4C4C4C;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 2px;
    font-size: 1.1em;
    font-weight: var(--font-weight-medium);
}

/* Trending */

.home_featured {
    width: 100%;
    margin-top: 40px;
    margin-bottom: 100px;
    margin-left: 10%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-content: flex-start;
    overflow: hidden;
}

.home_featured aside {
    width: 500px;
    position: relative;
    z-index: 2;
}

.home_featured aside h2 {
    font-size: 52px;
    font-family: 'Stone Informal';
    color: var(--color-primary-grey);
    margin-bottom: 20px;
}

.home_featured aside .c {
    margin-right: 80px;
    margin-bottom: 40px;
    line-height: 135%;
}

.home_featured aside a.button {
    padding: 10px 15px;
    background-color: #dddddd;
    color: #161616;
    display: block;
    width: 150px;
    text-align: center;
    font-size: 1.2em;
    text-transform: uppercase;
    font-weight: bold;
}

.home_featured aside a.underline {
    text-transform: uppercase;
    padding: 4px 0;
    border-bottom: 1px solid #707070;
    color: #707070;
    font-weight: bold;
}

.featured_products {
    width: calc(100% - 500px);
    display: flex;
    /*margin-top: 60px; */
}

.featured_products article {
    padding-left: 25px;
    padding-right: 25px;
    position: relative;
}

.featured_products article .img {
    position: relative;
}

.featured_arrows {
    margin-top: 40px;
    text-align: center;
    width: calc(90% - 500px);
    margin-left: 500px;
    font-size: 30px;
    color: #2e2e2e;
}

.featured_arrows button {
    background-color: transparent;
    border: none;
    cursor: pointer;
    padding: 15px 10px;
    text-align: center;
}

.featured_arrows button:first-child {
    margin-right: 30px;
}

.article_inner {
    position: relative;
}

.featured_products .article_inner img {
    width: 100%;
}

/* Home blokken */

.home_blokken {
    margin-top: 60px;
}

.home_blokken__inner {
	
    width: 96%;
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-content: flex-start;
    flex-wrap: wrap;
}

.home_blokken__item {
    width: 49%;
    margin-bottom: 2%;
    position: relative;
}

.home_blokken__item img {
    width: 100%;
    opacity: 0.7;
}

.home_blokken__item img.long {
    display: none;
}

.home_blokken__item:last-child {
    margin-bottom: 0;
    width: 100%;
}

.home_blokken__item .overlay {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    color: #fff;
    justify-content: center;
    align-items: center;
}

.home_blokken__item .overlay h2 {
    font-size: 4em;
    font-family: 'Stone Informal';
    text-shadow: 0px 0px 7px rgba(0, 0, 0, 0.7);
}

.home_blokken__item .overlay h3 {
    font-size: 1.3em;
    font-family: 'Poppins', sans-serif;
    text-shadow: 0px 0px 7px rgba(0, 0, 0, 0.7);
    margin-top: 15px;
}

.home_blokken__item .overlay2 {
    display: none;
    padding: 45px;
    background-color: rgba(255, 255, 255, 0.7);
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

.home_blokken__item .overlay2 h2 {
    font-size: 3em;
    font-family: 'Stone Informal';
    color: #707070;
    margin-bottom: 15px;
}

.home_blokken__item .c {
    font-size: 1.1em;
    line-height: 150%;
}

.home_blokken__item:hover .overlay2 {
    display: block;
}

.home_blokken__item:hover .overlay {
    display: none;
}

/* Blokken - Deprecated? */

.element {
    width: 100%;
    text-align: center;
    transform: translateY(-20px);
}

.element img {
    width: 100%;
    max-width: 80px;
}

.blokken {
    width: 96%;
    max-width: 1600px;
    margin: 60px auto;
}

.blokken article {
    display: flex;
    flex-direction: row;
    align-items: center;
    -ms-align-items: center;
}

.blokken article:nth-of-type(even) .img {
    order: 1;
}

.blokken article:nth-of-type(even) .content {
    order: 2;
}

.blokken article:nth-of-type(odd) .img {
    order: 2;
}

.blokken article:nth-of-type(odd) .content {
    order: 1;
}

.blokken article img {
    width: 100%;
    transition: all 1.2s ease;
}

.blokken article .img {
    width: 45%;
}

.blokken article .content {
    width: 55%;
    padding: 80px;
    display: flex;
    flex-direction: row;
    align-items: center;
    -ms-align-items: center;
}

.blokken article .content .count {
    color: var(--color-primary-grey);
    font-size: 40px;
    font-family: 'Nanum Myeongjo', serif;
    padding-right: 40px;
}

.blokken article .content .c {
    color: #353535;
    line-height: 130%;
    font-size: var(--font-size-normal);
    border-left: 1px solid #efefef;
    padding: 10px 0;
    padding-left: 40px;
}

.blokken article .content .c h2 {
    color: var(--color-primary-grey);
    font-weight: var(--font-weight-medium);
    margin-bottom: 10px;
    font-size: 25px;
    display: flex;
    flex-direction: row;
    align-items: center;
    -ms-align-items: center;
    padding: 0;
}

.blokken article .content .c h2 .lines {
    width: 40px;
    height: 10px;
    background-color: transparent;
    border-top: 1px solid var(--color-primary-grey);
    border-bottom: 1px solid var(--color-primary-grey);
    margin-right: 10px;
    margin-top: 3px;
}

.blokken article .content .c a {
    color: var(--color-primary-grey);
    display: block;
    margin-top: 20px;
    font-size: 17px;
    width: fit-content;
    width: -moz-max-content;
    width: -webkit-max-content;
    display: flex;
    align-items: center;
    -ms-align-items: center;
    font-weight: var(--font-weight-medium);
}

.blokken article .content .c a i {
    margin-left: 10px;
    transition: all 0.8s ease;
}

.blokken article .content .c a:hover i {
    transform: translateX(10px);
}

.troeven {
    background-color: #fafafa;
    width: 100%;
}

.troeven>div {
    width: 60%;
    margin: auto;
    padding: 100px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.troeven>div article {
    width: 48%;
    margin: 1%;
    padding: 40px;
}

.troeven>div article h2 {
    display: flex;
    flex-direction: row;
    align-items: center;
    -ms-align-items: center;
    font-weight: var(--font-weight-bold);
    font-size: 23px;
    color: var(--color-primary-grey);
    margin-bottom: 10px;
}

.troeven>div article h2 i {
    margin-right: 10px;
}

.troeven>div article .c {
    color: #4c4c4c;
    font-size: 22px;
    line-height: 130%;
}

.timelineholder {
    margin-top: 50px;
    position: relative;
    overflow: hidden;
}

.timelineholder::after {
    content: '';
    position: absolute;
    width: 10px;
    background-color: var(--color-primary-grey);
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
}

.timelineoverlayholder {
    width: 10px;
    position: absolute;
    transform: translateX(-50%);
    left: 50%;
    z-index: 9;
    overflow: hidden;
    top: 0;
    bottom: 0;
}

.timelineoverlayholder .timelineoverlay {
    background-color: var(--color-primary-grey);
    opacity: 0.8;
}

.timeline {
    position: relative;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding-bottom: 50px;
    margin-bottom: 50px;
}

.timeline h2 {
    color: var(--color-primary-grey);
    font-weight: var(--font-weight-bold);
    font-size: 30px;
    margin-bottom: 20px;
}

.timeline p {
    line-height: 150%;
    color: #a3a3a3;
    font-size: 18px;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 5px;
    background-color: #e1e1e1;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.timeline .timeline_quote {
    width: 100%;
    color: #252525;
    position: relative;
    padding: 45px;
    background-color: #f9f9f9;
    border-radius: 20px;
}

.timeline .timeline_quote i:first-of-type {
    color: var(--color-primary-grey);
    position: absolute;
    left: 15px;
    top: 15px;
    font-size: 25px;
    opacity: 0.5;
}

.timeline .timeline_quote i:last-of-type {
    position: absolute;
    right: 15px;
    bottom: 15px;
    font-size: 25px;
    color: var(--color-primary-grey);
    opacity: 0.5;
}

.timeline .timeline_container {
    padding: 30px 40px;
    position: relative;
    display: flex;
    justify-content: space-between;
    -ms-align-items: center;
    align-items: center;
    background-color: inherit;
    width: 100%;
}

.timeline .timeline_container::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    left: 50%;
    background-color: var(--color-primary-grey);
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.timeline .timeline_container .timeline_item_content {
    padding: 20px 0;
    background-color: white;
    position: relative;
    border-radius: 6px;
    width: 45%;
}

.timeline .timeline_container .timeline_item_content.left_time {
    margin-right: 5%;
}

.timeline .timeline_container .timeline_item_content.left_time h2 {
    text-align: right;
}

.timeline .timeline_container .timeline_item_content.left_time p {
    text-align: right;
}

.timeline .timeline_container .timeline_item_content.right_time {
    margin-left: 5%;
}

.timeline .timeline_container .timeline_other_content {
    width: 45%;
}

.timeline .timeline_container .timeline_other_content.imageleft {
    margin-left: 5%;
}

.timeline .timeline_container .timeline_other_content.imageright {
    margin-right: 5%;
}

.timeline .timeline_container .timeline_other_content img {
    width: 100%;
}

.timeline .conclusie {
    max-width: 600px;
    width: 96%;
    margin: 0 auto;
    margin-top: -5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    -ms-align-items: center;
    align-items: center;
    background-color: #8BCF97;
    margin-bottom: 50px;
    padding: 25px;
    position: relative;
    z-index: 1;
    border-radius: 3px;
    -webkit-box-shadow: 5px 6px 23px 0px rgba(82, 82, 82, 0.2);
    -moz-box-shadow: 5px 6px 23px 0px rgba(82, 82, 82, 0.2);
    box-shadow: 5px 6px 23px 0px rgba(82, 82, 82, 0.2);
}

.timeline .conclusie h2 {
    text-align: center;
    color: var(--color-primary-white);
    font-size: 1.8em;
    margin-bottom: 30px;
    margin-top: 10px;
}

.timeline .conclusie p {
    text-align: center;
    color: var(--color-primary-white);
    line-height: 150%;
}

.vid_container {
    position: relative;
    z-index: 1;
}

.vid_container.active {
    z-index: 1;
}

.vid_beeld {
    width: 100%;
    height: 80vh;
    z-index: 1;
    background-size: cover;
    background-position: center;
    filter: grayscale(0.8);
}

.vid_beeld>div {
    height: 100% !important;
}

.vid_beeld figure {
    margin: 0;
    position: relative;
    height: 100% !important;
}

.vid_beeld figure video {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

/* SFEERBEELDEN */

.in_beeld {
    width: 96%;
    max-width: 1600px;
    margin: auto;
    display: flex;
    justify-content: flex-start;
    -ms-align-items: flex-start;
    align-items: flex-start;
    margin-bottom: 60px;
}

.in_beeld article {
    width: 24%;
    margin: 0.5%;
    cursor: pointer;
    overflow: hidden;
}

.in_beeld article img {
    width: 100%;
    transition: all 0.5s;
}

.in_beeld article:hover img {
    transform: scale(1.1);
}

.in_beeld article .overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    opacity: 0;
    justify-content: center;
    -ms-align-items: center;
    align-items: center;
    color: white;
    font-size: 2em;
    transition: all 0.3s;
    z-index: 2;
}

.in_beeld article .overlay:hover {
    opacity: 1;
}

/* EINDE SFEERBEELDEN */
/* KAART */

.kaart_banner,
.suggesties {
    width: 70%;
    margin: auto;
    position: relative;
    background-color: #1d1d1d;
}

.kaart_banner .slick-arrow,
.suggesties .slick-arrow {
    position: absolute;
    z-index: 3;
    left: 50%;
    bottom: 40px;
    width: 30px;
    height: 30px;
    background-color: var(--color-primary-grey);
    border-radius: 200px;
    color: #1d1d1d;
    font-size: 1em;
    border: none;
    z-index: 2;
    transform: translateX(-25px);
}

.kaart_banner .slick-arrow.slick-next,
.suggesties .slick-arrow.slick-next {
    position: absolute;
    transform: translateX(15px);
}

.kaart_banner article,
.suggesties article {
    position: relative;
    background-color: #1d1d1d;
}

.kaart_banner article img,
.suggesties article img {
    width: 100%;
    transition: all 1.2s ease;
}

.kaart_banner article .overlay,
.suggesties article .overlay {
    position: absolute;
    z-index: 2;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #1d1d1d71;
    opacity: 1;
    transition: all 0.8s ease;
}

/* FILTER */
.filter {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    -ms-align-items: center;
    width: 100%;
    transform: translateY(-30px);
    padding: 25px 0 0 0;
}

.filter.thin {
    padding: 10px 0;
}

.filter h1 {
	font-family: 'Stone Informal';
    text-transform: uppercase;
    font-size: 2rem;
}

.filter button, .filter a {
    cursor: pointer;
    font-size: 16px;
    font-weight: var(--font-weight-medium);
    font-family: var(--font-primary);
    text-transform: uppercase;
    padding: 7px 20px;
    background-color: transparent;
    border: 1px solid var(--color-primary-grey);
    border-radius: 2rem;
    color: var(--color-primary-grey);
    display: flex;
    justify-content: center;
    align-items: center;
    -ms-align-items: center;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.filter button.active,
.filter button:hover, .filter a.active, .filter a:hover {
    background-color: var(--color-primary-grey);
    color: var(--color-primary-white);
    border: 1px solid var(--color-primary-grey);
}

.filter button i, .filter a i {
    margin-right: 10px;
    font-size: 15px;
}

.filter button:not(:last-of-type),
.filter a:not(:last-of-type) {
    margin-right: 10px;
}

.filter span {
    padding: 0 15px;
}

/* CARD HEADER */
.card-header div {
    line-height: 150%;
    font-size: 1.1em;
    color: #4C4C4C;
    width: 50%;
    border: 1px dotted #4c4c4c;
    margin: auto;
    text-align: center;
    display: none;
    margin-top: 50px;
    padding: 30px;
}

.card-header div.active {
    display: block;
}

/* CARD TITLE */
.card-title {
    display: none;
}

/* KAART INHOUD & SUGGESTIE INHOUD */
.kaart_inhoud,
.suggestie_inhoud {
    width: 85%;
    margin: auto;
}

.kaart_inhoud.menus,
.suggestie_inhoud.menus {
    box-shadow: none !important;
}

/* KAART & SUGGESTIE ITEMS */
.kaart,
.suggestie_items {
    width: 100%;
    margin: 0 auto;
    color: #000;
    padding-bottom: 50px;
    margin-bottom: 100px;
}

.kaart:not(.kaart),
.suggestie_items:not(.kaart) {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.kaart>div,
.suggestie_items>div {
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    align-items: center;
    -ms-align-items: center;
    gap: 10px;
}

.kaart .line,
.suggestie_items .line {
    background-color: var(--color-primary-grey);
    height: 1px;
    width: 50px;
    margin: 30px 0;
}

.kaart .line:last-of-type,
.suggestie_items .line:last-of-type {
    display: none;
}

.kaart h3,
.suggestie_items h3 {
    margin-bottom: 10px;
    width: 100%;
    line-height: 150%;
    font-size: 1.2em;
    font-family: var(--font-primary);
    font-style: normal !important;
}

.kaart .filter,
.suggestie_items .filter {
    color: var(--color-primary-grey);
    font-size: 30px;
}

.kaart .prijs1,
.suggestie_items .prijs1 {
    text-align: center !important;
    font-style: italic;
}

.kaart article,
.suggestie_items article {
    width: 48%;
    display: flex;
    justify-content: flex-start;
    -ms-align-items: flex-start;
    align-items: flex-start;
    flex-direction: column;
    padding: 30px 40px;
    margin: 1%;
}

.kaart article h2,
.suggestie_items article h2 {
    font-weight: var(--font-weight-medium);
    font-size: 1.4em;
    margin-bottom: 15px;
    border-bottom: 1px solid #000;
    padding-bottom: 15px;
    width: 100%;
    text-align: left;
    font-family: var(--font-primary);
}

.kaart article h2 i,
.suggestie_items article h2 i {
    display: none;
    transition: all 1s ease;
    width: 30px;
    height: 30px;
    background-color: var(--color-primary-grey);
    color: var(--color-primary-white);
    border-radius: 200px;
    justify-content: center;
    align-items: center;
    -ms-align-items: center;
    font-size: 15px;
}

.kaart article h2 i.rotate,
.suggestie_items article h2 i.rotate {
    transform: rotate(180deg);
}

.kaart article h3,
.suggestie_items article h3 {
    width: 100%;
    line-height: 150%;
    font-size: 1.2em;
    font-family: var(--font-primary);
    font-style: normal !important;
}

.kaart article .content,
.suggestie_items article .content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    -ms-align-items: flex-end;
    align-items: flex-end;
    width: 100%;
    font-style: italic;
    padding: 10px 0;
    border-bottom: 1px dotted #000;
}

.kaart article .content.hasLand,
.suggestie_items article .content.hasLand {
    flex-direction: column;
}

.kaart article .content.hasLand h3,
.suggestie_items article .content.hasLand h3 {
    margin-bottom: 0;
}

.kaart article .content.hasLand .prijs,
.suggestie_items article .content.hasLand .prijs {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    align-items: center;
}

.kaart article .content.hasLand .land,
.suggestie_items article .content.hasLand .land {
    font-weight: bold;
}

.kaart article .content .info,
.suggestie_items article .content .info {
    display: inline-flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    -ms-align-items: flex-start;
    width: 100%;
    line-height: 150%;
}

.kaart article .content .info p,
.suggestie_items article .content .info p {
    font-size: 0.9em;
}

.kaart article .items,
.suggestie_items article .items {
    width: 100%;
}

.kaart .extra_info,
.suggestie_items .extra_info {
    width: 100%;
    letter-spacing: 1px;
    line-height: 150%;
    font-size: 0.9em;
    font-style: italic;
    color: var(--color-primary-white);
    background-color: #353535;
    padding: 10px 20px !important;
}

.kaart .prijs1,
.suggestie_items .prijs1 {
    text-align: right;
    line-height: 150%;
    width: 120px;
    padding: 0 10px;
    font-family: var(--font-primary);
}

.kaart .prijs1 span,
.suggestie_items .prijs1 span {
    font-weight: var(--font-weight-medium);
    font-size: 1.2em;
}

.kaart .prijs2,
.suggestie_items .prijs2 {
    text-align: right;
    line-height: 150%;
    width: 120px;
    padding: 0 10px;
}

.kaart .prijs2 span,
.suggestie_items .prijs2 span {
    font-weight: var(--font-weight-medium);
    font-size: 1.2em;
}

.card-content h2 {
    font-weight: var(--font-weight-bold);
    font-size: 1.6em;
    margin-bottom: 15px;
    border-bottom: 1px solid white;
    padding-bottom: 15px;
    width: 100%;
    text-align: left;
    color: var(--color-primary-white);
}

.kaart.menus .suggestie_items>div {
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.233);
    width: 31%;
    margin: 1%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-self: stretch;
    justify-content: flex-start;
    position: relative;
}

.kaart.menus .suggestie_items>div h3 {
    color: #8f282b;
    font-weight: var(--font-weight-bold);
}

.kaart.menus .suggestie_items>div p {
    line-height: 140%;
    width: 100%;
    padding: 20px 0;
}

.kaart.menus .suggestie_items>div p:not(:last-of-type) {
    border-bottom: 1px solid #efefef;
}

.kaart.menus .suggestie_items>div p:last-of-type {
    padding-bottom: 60px;
}

.kaart.menus .suggestie_items>div .prijs {
    position: absolute;
    bottom: 20px;
}

/* EINDE KAART */
/* FAQ */

.vragensplit {
    padding: 50px 10px;
}

.vragensplit>div {
    display: flex;
    justify-content: space-between;
    -ms-align-items: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.vragen {
    width: 68%;
}

.vragen article {
    border: #f3f3f3 2px solid;
    background-color: white;
    padding: 25px;
    border-radius: 5px;
    margin-bottom: 10px;
}

.vragen article h2 {
	font-family: 'Stone Informal';
    font-weight: var(--font-weight-bold);
    display: flex;
    justify-content: space-between;
    -ms-align-items: center;
    font-size: 23px;
    color: #3A3A3A;
    align-items: center;
    cursor: pointer;
}

.vragen article h2 i {
    transition: all 0.3s;
}

.vragen article h2 i.arrowUp {
    transform: rotate(180deg);
}

.vragen article div {
    margin-top: 20px;
    color: #353535;
    font-size: 1.2em;
    line-height: 180%;
    letter-spacing: 0.5px;
}

.vragen article div a {
    color: #5C9090;
    font-weight: var(--font-weight-bold);
}

.vragen_form {
    padding: 25px;
    background-color: white;
    border-radius: 5px;
    border: #f3f3f3 2px solid;
    width: 30%;
    position: relative;
}

.vragen_form img {
    max-width: 100%;
}

.vragen_form .slick-arrow {
    position: absolute;
    left: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: var(--color-primary-white);
    border: none;
    padding: 0;
    z-index: 2;
    border-radius: 200px;
}

.vragen_form .slick-arrow.slick-next {
    right: 5px;
    left: initial;
}

.vragen_form .vragen_link>div {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.vragen_form .vragen_link>div .c {
    line-height: 150%;
}

.vragen_form .vragen_link>div .c a {
    color: var(--color-primary-black);
}


.vragen_form h2 {
    font-size: 25px;
    font-weight: var(--font-weight-bold);
    color: #CDA03A;
}

.vragen_form h2 a {
    font-size: 25px;
    font-weight: var(--font-weight-bold);
    color: #CDA03A;
}


.vragen_form input[type=text],
.vragen_form input[type=email],
.vragen_form textarea {
    padding: 10px;
    color: #818181;
    background-color: #F2F2F2;
    width: 100%;
    height: 50px;
    display: flex;
    -ms-align-items: center;
    border: none;
    margin-bottom: 10px;
    align-items: center;
    font-size: 1.2em;
}

input[type=text].textarea,
input[type=email].textarea,
textarea.textarea {
    min-height: 100px;
}

.vragen_form input[type=submit] {
    border: none;
    font-size: 20px;
    background-color: #F9F1DF;
    color: #CDA03A;
    border-radius: 4px;
    padding: 10px 35px;
}

.vragen_form input[type=submit]:disabled {
    color: #494949;
    background-color: #d7d7d7;
}

/* Einde FAQ */
/* CONTACT */

#openingsuren-btn {
    width: 100%;
    text-align: left;
}

#openingsuren-btn button {
    background-color: transparent;
    border: none;
    margin-top: 15px;
    padding: 0;
    color: var(--color-primary-grey);
    border-bottom: 1px solid var(--color-primary-grey);
    font-size: 20px;
    font-family: Poppins, sans-serif;
    cursor: pointer;
}

#openingsuren {
    margin-top: 15px;
    position: relative;
    border: 2px solid #efefef;
    border-radius: 4px;
    width: 100%;
    padding: 20px;
    position: relative;
    line-height: 150%;
}

#openingsuren table,
#openingsuren th,
#openingsuren td {
    border-collapse: collapse;
}

.contact_pagina {
    width: 100%;
    max-width: 1400px;
    display: flex;
    justify-content: space-between;
    -ms-align-items: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    margin: 0 auto;
    padding: 100px 10px 0px 10px;
}

.contact_gegevens {
    width: 35%;
}

.contact_gegevens h1 {
	font-family: 'Stone Informal';
    font-weight: var(--font-weight-medium);
    color: var(--color-primary-grey);
    margin-bottom: 20px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-end;
    -ms-align-items: flex-end;
    font-size: 2em;
}

.contact_gegevens h1 i {
    font-size: 22px;
    margin-right: 15px;
}

.contact_gegevens .line {
    display: none;
}

.contact_gegevens h2 {
    font-size: 20px;
    line-height: 130%;
    color: #353535;
}

.contact_gegevens p {
    padding-bottom: 10px;
}

.contact_gegevens>div {
    justify-content: center;
    -ms-align-items: center;
    align-items: center;
    margin-top: 20px;
}

.contact_gegevens>div a {
    display: flex;
    justify-content: center;
    -ms-align-items: center;
    align-items: center;
    flex-direction: column;
}

.contact_split {
    position: relative;
    z-index: 1;
}

.contact_info {
	background-color: var(--color-primary);
    color: var(--color-primary-white);
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    padding: 30px 30px;
    margin-top: 30px;
    width: 100%;
    position: relative;
}

.contact_info h2 {
	font-family: 'Stone Informal';
    font-weight: var(--font-weight-bold);
    color: var(--color-primary-white);
    font-size: 25px;
    margin-bottom: 25px;
    line-height: 130%;
}

.contact_info p {
    padding: 10px;
    padding-left: 50px;
    position: relative;
    color: var(--color-primary-white);
    font-size: 18px;
    letter-spacing: 2px;
    line-height: 120%;
}

.contact_info p i {
    position: absolute;
    left: 0;
    width: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 50%;
    color: var(--color-primary-white);
    transform: translateY(-50%);
    font-size: 18px;
}

.contact_info a {
    color: var(--color-primary-white);
}

.contact_split img {
    width: 200px;
    overflow: hidden;
    position: absolute;
    border-radius: 50%;
    top: -60px;
    right: -60px;
    border: 5px solid transparent;
    background-size: 100% 100%, 50% 50%, 50% 50%, 50% 50%, 50% 50%;
    background-repeat: no-repeat;
    background-image: linear-gradient(white, white), linear-gradient(0deg, transparent 0, #f4f4f4 0), linear-gradient(10deg, var(--color-primary-grey) 100%, #f4f4f4 60%), linear-gradient(10deg, transparent 0, #f4f4f4 0), linear-gradient(60deg, transparent 0, #f4f4f4 0);
    background-position: center center, left top, right top, left bottom, right bottom;
    background-origin: content-box, border-box, border-box, border-box, border-box;
    background-clip: content-box, border-box, border-box, border-box, border-box;
    filter: grayscale(0.6);
}

.contact_subject {
    color: #353535;
    font-size: 18px;
    margin-left: 10px;
    margin-bottom: 30px;
    padding: 7px 20px;
    border: 1px solid #A68A54;
}

.contact_subject span {
    font-weight: var(--font-weight-bold);
}

.contact_formulier {
    width: 55%;
    margin-top: 30px;
}

.contact_formulier #NaamInput {
    width: 48%;
}

.contact_formulier #EmailInput {
    width: 100%;
}

.contact_form {
    display: flex;
    justify-content: space-between;
    -ms-align-items: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
}

.contact_form .contact_label {
    width: 100%;
    font-size: 1.2em;
    color: #353535;
    display: inline-block;
    margin-bottom: 5px;
}

.contact_form input[type=text],
.contact_form input[type=email],
.contact_form #NaamInput input {
    width: 100%;
    outline: 0;
    font-size: 1rem;
    padding: 0.75rem 2rem;
    min-height: 37px;
    border-radius: 2rem;
    border: 2px solid var(--color-primary-grey);
    color: var(--color-primary-grey);
    font-weight: var(--font-weight-medium);
    background-color: #fff;
    transition: 0.25s ease-in-out;
    display: block;
    margin-bottom: 20px;
}

.contact_form input[type=text]::placeholder,
.contact_form input[type=email]::placeholder,
.contact_form #NaamInput input::placeholder {
    color: #a3a3a3;
}

.contact_form input[type=text]:focus,
.contact_form input[type=email]:focus,
.contact_form #NaamInput input:focus {
    border-bottom: 2px solid var(--color-primary-grey);
    font-weight: var(--font-weight-medium);
}

.contact_form input[type=text]:focus::placeholder,
.contact_form input[type=email]:focus::placeholder,
.contact_form #NaamInput input:focus::placeholder {
    color: var(--color-primary-grey);
}

.contact_form textarea {
    width: 100%;
    outline: 0;
    font-size: 1rem;
    padding: 0.75rem 2rem;
    min-height: 37px;
    border-radius: 2rem;
    border: 2px solid var(--color-primary-grey);
    color: var(--color-primary-grey);
    font-weight: var(--font-weight-medium);
    background-color: #fff;
    transition: 0.25s ease-in-out;
    display: block;
    height: 200px;
}

.contact_form textarea::placeholder {
    color: #a3a3a3;
}

.contact_form textarea:focus {
    border-bottom: 2px solid var(--color-primary-grey);
    font-weight: var(--font-weight-medium);
}

.contact_form textarea:focus::placeholder {
    color: var(--color-primary-grey);
}

.contact_form select {
    width: 100%;
    color: #353535;
    padding: 10px;
    border: none;
    border-bottom: 2px solid #f6f6f6;
    background-color: #F4F4F4;
    height: 50px;
    font-size: 0.9em;
    font-weight: var(--font-weight-bold);
    background-image: url(/images/select2.png);
    background-size: contain;
    background-position: center right;
    background-repeat: no-repeat;
}

.contact_form input[type=submit] {
    padding: 10px 30px;
    background: var(--color-primary-grey);
    border: 0;
    border-radius: 2rem;
    color: var(--color-primary-white);
    font-size: 1.2em;
    transition: all 0.8s ease;
}

.contact_form input[type=submit]:hover {
    background-color: #576B11;
    color: var(--color-primary-white);
}

#dasmap {
    width: 100%;
    margin: 0 auto;
    height: 600px;
    position: relative;
    z-index: 0;
    margin-top: -150px;
}

.PL_privacy {
    width: 100%;
    justify-content: space-between;
    margin-top: 10px;
    display: flex;
    align-items: center;
}

.PL_privacy .privcnt {
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    font-size: 1em !important;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    display: flex;
    flex-direction: row;
    -ms-align-items: center;
    align-items: center;
    color: #a3a3a3 !important;
}

.PL_privacy .privcnt div {
    display: flex;
    flex-wrap: wrap;
    margin-top: 2px;
}

.PL_privacy .privcnt .mob {
    display: none;
}

.PL_privacy .privcnt input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.PL_privacy .privcnt a {
    height: 100%;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    color: #353535;
    font-weight: var(--font-weight-bold);
    position: relative;
    z-index: 10;
}

.PL_privacy .privcnt .checkmarker {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #dedede;
}

.PL_privacy .privcnt .checkmarker:after {
    content: "";
    position: absolute;
    display: none;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.PL_privacy .privcnt .checkmarker:hover input~.checkmarker {
    background-color: #ccc;
}

.PL_privacy .privcnt input:checked~.checkmarker {
    background-color: #353535;
}

.PL_privacy .privcnt input:checked~.checkmarker:after {
    display: block;
}

#contact_team:after {
    content: '';
    position: absolute;
    background-color: var(--color-primary-black);
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0.2;
    z-index: 1;
}

#contact_team .slick-arrow {
    position: absolute;
    left: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: var(--color-primary-white);
    border: none;
    padding: 0;
    z-index: 2;
    border-radius: 200px;
}

#contact_team .slick-arrow.slick-next {
    right: 5px;
    left: initial;
}

/* EINDE CONTACT */
/* Blog*/

.sharing {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background-color: #f6f6f6;
}

.sharing>div {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
}

.sharing>div a {
    color: var(--color-primary-white);
    border-radius: 50%;
    margin: 0 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    width: 30px;
    height: 30px;
    transition: all .3s;
    font-weight: var(--font-weight-bold);
}

.sharing>div a:hover {
    transform: scale(1.15);
}

.sharing>div a i {
    font-size: 16px;
}

.sharing p {
    font-weight: var(--font-weight-bold);
    color: #353535;
    margin-right: 10px;
}

.sharing>a {
    display: inline-block;
    padding: 15px 20px;
    background-color: transparent;
    cursor: pointer;
    font-weight: var(--font-weight-bold);
    border-radius: 4px;
    color: white;
    background-image: linear-gradient(50deg, #E53323 30%, #ED7024 100%);
    transition: all 0.8s ease;
}

.blog-img img {
    width: 100%;
}

.blog-head {
    text-align: left;
    line-height: 180%;
    position: relative;
}

.blog-head .c {
    width: 100%;
    color: #505050;
}

.blog-content {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    margin-top: 30px;
}

.footermar-blog {
    padding-bottom: 50px;
}

.blog-item {
    position: relative;
}

.blog-item a {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
}

.blog-item .inhoud {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 1rem;
}

.blog-rows {
    margin-top: 1%;
}

.blog-rows .blog-main .blog-inhoud h2 {
    font-weight: var(--font-weight-bold);
    text-align: left;
    line-height: 125%;
    font-size: 1.4em;
}

.blog-rows .extra .blog-item {
    width: 48.979591836734693877551020408163%;
}

.blog-rows .extra .blog-item:not(:nth-child(2n)) {
    margin-right: 2.0408163265306122448979591836735%;
}

.blog-rows .extra .blog-item:nth-child(n+3) {
    margin-top: 2.0408163265306122448979591836735%;
}

.blog-rows .extra .blog-item .blog-inhoud h2 {
    font-size: 1.2em;
}

.blog-rows .type-b .row-block {
    margin: 0;
    width: 100%;
}

.blog-rows .type-c .combo-img {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    align-items: flex-start;
    align-content: flex-start;
}

.blog-rows .type-c .combo-img>* {
    width: 50%;
}

.blog-rows .type-c .combo-img .big img {
    width: 100%;
}

.blog-rows .type-c .combo-img .small {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    align-content: flex-start;
}

.blog-rows .type-c .combo-img .small img {
    width: 50%;
}

.blog-rows .type-c.reverse .combo-img .big {
    order: 2;
}

.blog-rows .row-block {
    display: flex !important;
    flex-wrap: wrap;
    margin-bottom: 1%;
}

.blog-rows .row-block:last-child {
    margin-bottom: 0;
}

.blog-rows .row-block .row-block {
    width: 49.5%;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}

.blog-rows .row-block .row-block:not(:nth-child(2n)) {
    margin-right: 1%;
}

.blog-rows .row-block .blog-item {
    width: 100%;
}

.blog-rows .row-block .blog-item .c {
    font-size: 1.1em;
    color: #4c4c4c;
    padding: 0 15px;
    line-height: 180%;
}

.blog-rows .row-block.reverse .row-block:first-child {
    order: 2;
    margin-left: 1%;
    margin-right: 0%;
}

.button-hold {
    margin-top: 40px;
    margin-bottom: 40px;
    text-align: center;
}

.button-hold:last-child {
    margin-bottom: 0px;
}

.button-hold a {
    display: inline-block;
    border: 2px solid var(--color-primary-grey);
    padding: 10px 20px;
    background-color: transparent;
    cursor: pointer;
    font-weight: var(--font-weight-bold);
    color: var(--color-primary-grey);
    transition: all 1s ease;
    border-radius: 2rem;
}

.button-hold a:hover {
    background-color: var(--color-primary-grey);
    color: var(--color-primary-white);
}


/**
    * Blog detail
**/

.blog-holder {
    display: flex;
    margin-top: 60px;
    justify-content: space-between;
    -ms-align-items: flex-start;
    align-items: flex-start;
    gap: 0;
}

.blog-holder .blog-aside {
    padding: 30px;
    width: 400px;
    border: 2px solid #f3f3f3;
}

.blog-holder .blog-aside h3 {
    font-weight: var(--font-weight-bold);
    color: var(--color-primary-grey);
    font-size: 1.5em;
    text-align: left;
    margin-bottom: 25px;
    width: 100%;
}

.blog-holder .blog-aside .blog-recent {
    display: none;
}

.blog-holder .blog-aside .blog-recent .blog-item {
    width: 45%;
    margin-bottom: 35px;
}

.blog-holder .blog-aside .blog-recent .blog-item h2 {
    font-size: 1.2em;
    margin-top: 10px;
    line-height: 150%;
    margin-bottom: 10px;
    color: #626572;
}

.blog-holder .blog-aside .blog-recent .blog-item .c {
    margin-bottom: 10px;
    line-height: 180%;
    color: #999999;
}

.blog-holder .blog-aside .blog-recent .blog-item .more {
    color: var(--color-primary-grey);
}

.blog-holder .blog-aside .blog-nav nav {
    border-top: 1px solid rgb(220, 220, 220);
}

.blog-holder .blog-aside .blog-nav nav a {
    line-height: 40px;
    width: 100%;
    display: block;
    border-bottom: 1px solid rgb(220, 220, 220);
    color: rgb(100, 100, 100);
    padding-left: 8px;
}

.blog-holder .blog-aside .blog-nav nav a:hover,
.blog-holder .blog-aside .blog-nav nav a.active {
    color: var(--color-primary-grey);
}

.blog-holder .blog-aside .blog-nav .blog-nav-btn {
    display: none;
    text-align: center;
    padding: 10px 0;
    font-size: 1.6em;
    color: var(--color-primary-grey);
    cursor: pointer;
}

.blog-holder .blog-main {
    padding: 10px;
    order: 2 !important;
    width: fit-content;
}

.blog-holder .blog-main .c {
    font-size: 1.3em;
    color: #4c4c4c;
    padding: 0;
    line-height: 180%;
}

.blog-holder .blog-main .blog-img {
    position: relative;
    width: 100%;
}

.blog-holder .blog-main .blog-img .h1 {
    position: relative;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: var(--font-weight-bold);
    line-height: 130%;
    color: var(--color-primary-grey);
    font-size: 2.1em;
}

.blog-overzicht {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    align-content: flex-start;
    column-gap: 48px;
    row-gap: 40px;
}

.blog-overzicht .blog-item {
    width: calc(33.333% - 32px);
}

.blog-overzicht .blog-item:hover {
    transform: scale(1.03);
}

.blog-overzicht .blog-item a {
    position: static;
}

.blog-overzicht .blog-item h2 {
    font-size: 1.3em;
    margin-top: 15px;
    color: #4c4c4c;
    font-weight: var(--font-weight-medium);
    min-height: 44px;
    line-height: 22px;
}

.blog-overzicht .blog-item .c {
    font-size: 1.1em;
    color: #4c4c4c;
    line-height: 180%;
}

.blog-overzicht .blog-item .btn-hold {
    padding: 15px 0;
    text-align: left;
}

.blog-overzicht .blog-item .btn-hold a {
    display: inline-block;
    background-color: transparent;
    color: var(--color-primary-grey);
    transition: all 1s ease;
    border-bottom: 1px solid var(--color-primary-grey);
}

.blog-content-row {
    margin-bottom: 30px;
}

.blog-content-row h2 {
    font-size: 1.2em;
    line-height: 150%;
    color: #626572;
}

.blog-content-row .c {
    width: 100%;
    margin: 0 auto;
}

.blog-content-row a {
    color: var(--color-primary-grey);
}

.blog-content-row .multi-img-holder {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    align-content: flex-start;
    justify-content: space-between;
}

.blog-content-row .multi-img-holder.two>* {
    width: 49%;
}

.blog-content-row .multi-img-holder.three>* {
    width: 32.33%;
}

.blog-content-row .multi-img-holder.four>* {
    width: 24%;
}

.blog-content-row .multi-img-holder.four>*:nth-child(-n+2) {
    margin-bottom: 2%;
}

.blog-content-row .multi-img-holder a img {
    width: 100%;
}

.blog-content-row .filmpje {
    max-width: 1000px;
    max-height: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
    text-align: center;
}

.blog-content-row .tekst-and-image {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    align-content: flex-start;
}

.blog-content-row .tekst-and-image>* {
    width: 50%;
}

.blog-content-row .tekst-and-image .c {
    padding: 0 20px;
}

.blog-content-row .tekst-and-image.reverse .img {
    order: 2;
    margin: 15px auto;
    max-width: 500px;
}

.title-hold {
    text-align: center;
    margin-bottom: 36px;
}

.title-hold h3 {
    margin-top: 30px;
    padding-top: 30px;
    color: #626572;
    border-top: 3px solid #ececec;
    font-size: 1.5em;
    font-weight: var(--font-weight-bold);
}


/* Einde Blog */
/* Reserveren */
.header {
    text-align: center;
    padding: 20px;
}

.tabs {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.tablinks {
    background-color: #f1f1f1;
    border: none;
    padding: 14px 20px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.tablinks:hover {
    background-color: #ddd;
}

.tablinks.active {
    background-color: #ccc;
}

.tabcontent {
    display: none;
    border-top: none;
}

/* /Reserveren */
/* Vacature Overzicht */

.vacature_overzicht {
    margin: 0 auto;
    width: 96%;
    max-width: 1400px;
    display: flex;
    justify-content: flex-start;
    -ms-align-items: flex-start;
    align-items: flex-start;
    margin: 0 auto;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.vacature_overzicht>h2,
.vacature_overzichth2 {
    width: 100%;
    font-weight: var(--font-weight-bold);
    font-size: 1.5em;
    padding: 25px;
    margin-top: 30px;
    text-align: center;
}

.vacature_overzicht>a {
    display: block;
    padding: 10px 0;
    color: #E94E1B;
    font-weight: var(--font-weight-bold);
    margin: 0 auto;
    border-bottom: 2px solid #E94E1B;
    margin-bottom: 50px;
    transition: all .3s;
}

.vacature_overzicht>a:hover {
    background-color: transparent;
    color: #E94E1B;
}

.vacature_overzicht article {
    width: 49.5%;
    margin-bottom: 1%;
    margin-right: 1%;
    display: flex;
    justify-content: space-between;
    position: relative;
}

.vacature_overzicht article:nth-child(even) {
    margin-right: 0%;
}

.spontaan_sol {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    -ms-align-items: center;
    align-items: center;
    position: relative;
}

.spontaan_sol img {
    opacity: 0;
}

.spontaan_content {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    -ms-align-items: center;
    align-items: center;
    flex-direction: column;
}

.spontaan_content h5 {
    font-size: 2em;
    font-weight: var(--font-weight-bold);
    color: var(--color-primary-white);
    margin-bottom: 10px;
    text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.44);
}

.spontaan_content button {
    border: none;
    background-color: #E64B2B;
    color: white;
    font-weight: var(--font-weight-bold);
    padding: 10px 25px;
}

.vacature_overzicht article>a {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    z-index: 1;
}

.vacature_overzicht article img {
    width: 50%;
}

.vacature_overzicht article>div {
    padding: 25px;
    display: flex;
    justify-content: center;
    -ms-align-items: flex-start;
    align-items: flex-start;
    flex-direction: column;
    position: relative;
    width: 50%;
}

.vacature_overzicht article h3 {
    color: #576C11;
    font-weight: var(--font-weight-bold);
    font-size: 20px;
    margin-bottom: 10px;
}

.vacature_overzicht article h2 {
    color: #576C11;
    line-height: 140%;
    font-weight: var(--font-weight-bold);
    font-size: 25px;
    margin-bottom: 25px;
    width: 100%;
}

.vacature_overzicht article h4 {
    font-size: 16px;
    line-height: 150%;

    color: #A3A3A3;
}

.vacature_overzicht article h4 i {
    margin-right: 5px;
}

.vacature_overzicht article div a {
    background-color: transparent;
    color: #576C11;
    font-weight: var(--font-weight-bold);
    padding: 10px 30px;
    margin-top: 20px;
    font-size: 1em;
    display: inline-block;
    z-index: 2;
    transition: all .3s;
    border: 2px solid #576C11;
}

.vacature_overzicht article div a:hover {
    background-color: #576C11;
    color: white;
}

.ak_videocall_vacature {
    width: 100%;
    max-width: 1400px;
    margin: 30px auto;
    position: relative;
}

.ak_videocall_vacature img {
    width: 100%;
}

.ak_videocall_vacature div {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    max-width: 600px;
}

.ak_videocall_vacature div h2 {
    font-size: 1.4em;
    font-weight: var(--font-weight-bold);
    line-height: 140%;
    color: white;
    max-width: 300px;
    text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.22);
}

.ak_videocall_vacature div a {
    display: inline-block;
    margin-top: 20px;
    padding: 15px 25px;
    font-size: 1.1em;
    font-weight: var(--font-weight-bold);
    color: var(--color-primary-white);
    background-color: #E93C1E;
}


/* Einde Vacature Overzicht */

.vacature_pagina {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    -ms-align-items: flex-start;
    align-items: flex-start;
    padding: 50px 10px;
}

.vacature_pagina .vacimg {
    position: relative;
}

.vacature_pagina .vacimg img {
    width: 100%;
}

.vacature_pagina .vacimg p {
    position: relative;
    font-size: 1em;
    font-weight: var(--font-weight-bold);
    color: white;
    padding: 10px 25px;
    background-color: #F25029;
    position: absolute;
    right: 10px;
    bottom: 10px;
    display: inline-block;
    border-radius: 200px;
}

.vacature_pagina .vacimg p i {
    font-size: 1.2em;
}

.vacature_pagina>div {
    width: 100%;
}

.vacature_pagina h1 {
	font-family: 'Stone Informal';
    font-size: 1.8em;
    font-weight: var(--font-weight-bold);
    color: #576C11;
    line-height: 150%;
}

.vacature_pagina>div>h2 {
    width: 100%;
    color: #252525;
    margin-top: 30px;
    font-weight: var(--font-weight-bold);
    margin-bottom: 10px;
}

.vacature_pagina>div>h1 {
    width: 100%;
    color: #000000;
    font-size: 2em;
    font-weight: var(--font-weight-bold);
    margin-bottom: 40px;
    display: flex;
    justify-content: space-between;
    -ms-align-items: center;
    align-items: center;
}

.vacature_pagina>div>h1 article {
    font-size: .6em;
    display: flex;
    justify-content: center;
    -ms-align-items: center;
    align-items: center;
}

.vacature_pagina>div>h1 article a {
    margin: 0 10px;
    color: #000;
}

.vacature_pagina>div div {
    line-height: 180%;
    color: #646464;

    font-size: 17px;
}

.vacature_pagina>div div ul {
    padding-left: 20px;
    list-style-type: disc;
}

.vacature_pagina>div h3 {
    font-weight: var(--font-weight-medium);
    font-size: 1.2em;
    margin-top: 30px;
    margin-bottom: 5px;
}

.vacature_pagina>div h3:first-of-type {
    margin-top: 0;
}

.vacature_pagina>div div a {
    color: #8A8A8A;
    font-weight: var(--font-weight-bold);
}

.vacature_pagina>div div strong {
    font-size: 1em;
    color: #3C3C3B !important;
    font-weight: var(--font-weight-bold);
    padding-bottom: 15px;
}

.vacature_pagina aside {
    max-width: 450px;
    width: 100%;
    margin-left: 50px;
    top: 120px;
    position: sticky;
}

.vacature_pagina aside form {
    padding: 35px 30px;
}

.vacature_pagina .contactpersoon-vacature {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
}

.vacature_pagina .contactpersoon-vacature img {
    width: 25%;
    object-fit: contain;
    align-self: flex-start;
}

.vacature_pagina .contactpersoon-vacature .details {
    width: 70%;
}

.vacature_pagina .contactpersoon-vacature .details h2 {
    font-weight: var(--font-weight-bold);
    color: #E94E1B;
    font-size: 1.2rem;
    margin-bottom: 0.4rem;
}

.vacature_form .vacaturelabel {
    font-size: 1.1em;
    font-weight: var(--font-weight-bold);
    margin-bottom: 10px;
    display: inline-block;
}

.vacature_form input[type=text],
.vacature_form input[type=email],
.vacature_form select,
.vacature_form textarea {
    width: 100%;
    border: none;
    background-color: #F8F8F8;
    padding: 12px;
    font-size: 16px;
    color: #353535;

    margin-bottom: 20px;
    height: initial;
    font-family: 'Poppins', sans-serif;
}

.vacature_form textarea {
    height: 150px;
}

.vacature_form select {
    background-image: url(/images/select.png);
    background-size: contain;
    background-position: center right;
    background-repeat: no-repeat;
}

.vacature_form input[type=submit] {
    width: 100%;
    background-color: #576C11;
    color: white;

    margin-top: 10px;
    letter-spacing: 0;
    text-transform: none;
    height: initial;
    font-size: 18px;
    font-family: 'Poppins', sans-serif;
    border: none;
    padding: 10px 20px;
}

.vacature_form>h2 {
    font-size: 1.5em;
    font-weight: var(--font-weight-medium);
    color: #576C11;
    margin-bottom: 15px;
}

.vacature_form .inputfile {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
}

.vacature_form .inputfile+label {
    font-size: 16px;
    text-align: center;
    font-weight: var(--font-weight-medium);
    height: initial;
    color: #353535;
    background-color: #F8F8F8;
    width: 100%;
    padding: 15px;
    display: inline-block;
    margin-bottom: 20px;
}

.vacature_form .inputfile:focus+label,
.vacature_form .inputfile+label:hover {
    background-color: #e8e8e8;
}

.vacature_form .inputfile+label {
    cursor: pointer;
    /* "hand" cursor */
}

.vacature_form .inputfile:focus+label {
    outline: 1px dotted #000;
    outline: -webkit-focus-ring-color auto 5px;
}

.vacature_form .inputfile+label * {
    pointer-events: none;
}

.vacature_ak {
    width: 100%;
    margin-top: 40px;
    position: relative;
}

.vacature_ak div {
    position: relative;
}

.vacature_ak a {
    position: absolute;
    z-index: 3;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
}

.vacature_ak div>div {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.30) 100%);
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.30) 100%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.30) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#21000000', GradientType=0);
}

.vacature_ak .mainimage {
    width: 100%;
}

.vacature_ak .triangle {
    position: absolute;
    left: 10px;
    width: 25px;
    bottom: 0;
    z-index: 2;
}

.vacature_ak {
    width: 100%;
}

.vacature_ak h3 {
    font-size: 1.2em;
    padding-left: 20px;
    padding-top: 15px;
    font-weight: var(--font-weight-bold);
    color: #E94E1B;
}

.vacature_ak h2 {
    font-size: 1.4em;
    font-weight: var(--font-weight-bold);
    padding-left: 20px;
    color: #3C3C3B;
    margin-top: 5px;
}

.service_manager {
    width: 100%;
    display: flex;
    justify-content: space-between;
    -ms-align-items: center;
    align-items: center;
    margin-top: 30px;
    border: 2px solid #F2F2F2;
}

.service_manager img {
    width: 30%;
}

.service_manager>div {
    width: 70%;
    display: flex;
    justify-content: flex-start;
    -ms-align-items: flex-start;
    align-items: flex-start;
    flex-direction: column;
    padding: 15px 30px;
}

.service_manager h2 {
    width: 100%;
    text-align: left;
    font-size: 1.4em;
    font-weight: var(--font-weight-bold);
    color: #F25029;
    margin-bottom: 10px;
}

.service_manager>div div {
    font-size: 1.1em;

    color: #9e9e9e;
    line-height: 170%;
}


.bevestiging_bg {
    width: 100%;
    min-height: 65vh;
    display: flex;
    justify-content: center;
    -ms-align-items: center;
    align-items: center;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.bevestiging {
    width: 100%;
    border-radius: 5px;
    border: 2px solid #EFEFEF;
    max-width: 700px;
    padding: 50px;
    background-color: white;
    display: flex;
    justify-content: center;
    -ms-align-items: center;
    align-items: center;
    flex-direction: column;
}

.bevestiging i {
    font-size: 3em;
    margin-bottom: 10px;
    color: #576C11;
}

.bevestiging h1 {
	font-family: 'Stone Informal';
    font-weight: var(--font-weight-bold);
    font-size: 2em;
    text-align: center;
    color: #576C11;
    margin-bottom: 10px;
}

.bevestiging p {
    line-height: 150%;
    color: #04243B;
    font-size: 17px;

    text-align: center;
}

.bevestiging a {
    cursor: pointer;
    display: inline-block;
    padding: 13px 30px;
    border: 2px solid #576C11;
    background-color: #576C11;

    color: white;
    margin-top: 20px;
}

.bevestiging a:hover {
    background-color: var(--color-primary-white);
    color: #576C11;
}

/* Einde Vacature Pagina */
/* Footer */

.innerfooter {
    background-color: white;
    width: 100%;
    padding: 50px 10px;
    border-top: 1px solid #EFEFEF;
    margin-top: 50px;
    position: relative;
    z-index: 10000;
}

.innerfooter ul {
    width: 96%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    -ms-align-items: start;
    align-items: start;
    flex-wrap: wrap;
}

.footer-logo {
    width: 150px;
    filter: grayscale(50%);
}

.footer-socials div {
    display: flex;
    justify-content: center;
    -ms-align-items: center;
    align-items: center;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    border-radius: 200px;
    display: flex;
    justify-content: center;
    -ms-align-items: center;
    align-items: center;
    background-color: #576B11;
    color: white;
    font-size: 1.1em;
    margin: 0 7px;
}

.footer-ref div {
    display: flex;
    justify-content: center;
    -ms-align-items: center;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
}

.footer-ref a {
    width: 120px;
}

.footer-ref a img {
    width: 100%;
}

.footer-geg>div {
    display: flex;
    justify-content: center;
    -ms-align-items: flex-start;
    align-items: flex-start;
    color: #576B11;
}

.footer-geg>div a {
    color: #576B11;
}

.footer-geg>div div:first-child {
    display: flex;
    flex-direction: column;
    justify-content: center;
    -ms-align-items: flex-start;
    align-items: flex-start;
}

.footer-geg>div div:last-child {
    display: flex;
    flex-direction: column;
    justify-content: center;
    -ms-align-items: flex-start;
    align-items: flex-start;
    padding-left: 20px;
}

.footer-geg>div div i:not(:last-child), .footer-geg>div div:last-child p:not(:last-child) {
    margin-bottom: 15px;
}

footer {
    background-color: #EFEFEF;
    display: flex;
    justify-content: center;
    -ms-align-items: center;
    align-items: center;
    padding: 15px;
    display: flex;
    justify-content: center;
    -ms-align-items: center;
    align-items: center;
    flex-direction: column;
    line-height: 150%;
    position: relative;
    z-index: 10000;
}

footer div:not(:last-child) {
    color: #717171;
    display: flex;
    justify-content: center;
    -ms-align-items: center;
    align-items: center;
    flex-wrap: wrap;
    font-size: .9em;
    margin-bottom: 7px;
}

footer div:not(:last-child) a {
    color: #717171;
    margin: 0 10px;
}

footer div:last-child a {
    color: #BEBEBE;
    font-size: .8em;
}

.slogan {
	font-family: 'Stone Informal';
    padding: 100px 20px;
    padding-bottom: 130px;
    width: 96%;
    max-width: 1400px;
    margin: auto;
    text-align: center;
    font-size: 3em;
    color: var(--color-secondary-grey);
    font-weight: var(--font-weight-bold);
    line-height: 130%;
}

.slogan strong,
.slogan b {
    color: var(--color-primary-black);
}


/* Einde footer */
/* Media Query's */

@media screen and (max-width: 1600px) {

    .blokken,
    .in_beeld {
        width: 90%;
    }

    .kaart_banner,
    .suggesties {
        width: 80%;
    }

    .curtain-click.title {
        right: 5%;
    }
}

@media screen and (max-width: 1500px) {
    #content-container {
        max-width: 70%;
    }
}

@media screen and (max-width: 1400px) {
    .page_header h1 {
        font-size: 2.5em;
    }

    .blokken article .content {
        padding: 50px;
    }

    .trending>div {
        width: 90%;
    }

    .troeven>div {
        width: 80%;
    }

    .blog-content h2 {
        font-size: 1.25rem;
    }

    .blog-main .blog-img {
        width: 90%;
    }

    .home_featured {
        margin-left: 7%;
    }

    .featured_arrows {
        width: calc(93% - 500px);
        margin-left: 500px;
    }
}

@media screen and (max-width: 1300px) {
    .blog-overzicht .blog-item {
        width: 100%;
    }

    .blog-overzicht .blog-item:hover {
        transform: none;
    }

    .home_blokken__item img.long {
        display: block;
    }

    .home_blokken__item img.short {
        display: none;
    }

    .home_blokken__item {
        width: 100%;
    }
}

@media screen and (max-width: 1250px) {
    .vacature_overzicht article {
        width: 100%;
    }
}

@media screen and (max-width: 1210px) {
    .blog-content h1 {
        font-size: 2.1rem;
    }

    .blog-content h2 {
        font-size: 1.15rem;
        width: 70%;
    }

    .blog-main .blog-img {
        width: 100%;
    }
}

@media screen and (max-width: 1200px) {
    .curtain-click.title {
        margin-right: 0;
    }

    .blokken,
    .in_beeld {
        width: 95%;
    }

    .kaart_banner,
    .suggesties {
        width: 90%;
    }

    .kaart_inhoud,
    .suggestie_inhoud {
        width: 96%;
    }

    .blokken {
        width: 90%;
    }

    .contact_pagina {
        padding-top: 55px;
    }

    .contact_info {
        outline: none;
        margin-top: 20px;
    }

    .contact_gegevens .line {
        display: block;
        background-color: var(--color-primary-grey);
        width: 30px;
        height: 2px;
        margin: 20px auto;
    }

    .contact_gegevens {
        margin-bottom: 20px;
        padding: 30px 10px;
    }

    .contact_gegevens h1 {
        justify-content: center;
        margin-bottom: 0;
    }

    .contact_gegevens,
    .contact_formulier {
        width: 100%;
        padding: 0 10px;
    }

    .contact_formulier {
        margin-top: 30px;
    }

    .contact_gegevens h1,
    .contact_gegevens h2 {
        text-align: center;
        line-height: 120%;
    }

    .contact_gegevens h1 {
        flex-direction: column;
        align-items: center;
        -ms-align-items: center;
    }

    .contact_gegevens>div {
        justify-content: center;
        -ms-align-items: center;
        align-items: center;
        margin-top: 20px;
    }

    .contact_split {
        margin-top: 10px;
    }

    .contact_split div {
        padding: 20px;
    }

    #dasmap {
        margin-top: 25px;
        height: 400px;
    }

    .contact_gegevens>div a {
        display: flex;
        justify-content: center;
        -ms-align-items: center;
        align-items: center;
        flex-direction: column;
    }

    .contact_split img {
        right: -10px;
    }

    .contact_split div:not(.contact_img) {
        justify-content: flex-start;
        align-items: flex-start;
        -ms-align-items: flex-start;
        padding: 40px;
    }

    .contact_img {
        padding: 0 !important;
    }

    .blog-overzicht .blog-item:nth-child(n+6) h2 {
        font-size: 1.6em;
    }

    .blog-content-row .tekst-and-image>* {
        width: 100%;
    }

    .blog-content-row .tekst-and-image .img {
        margin: 15px auto;
        max-width: 500px;
    }

    .curtain-click.title {
        right: 2.5%;
    }

    .logo {
        width: 160px;
    }

    .home_featured {
        margin-top: 45px;
        margin-bottom: 75px;
        margin-left: 5%;
    }

    .featured_arrows {
        width: calc(95% - 300px);
        margin-left: 300px;
    }

    .featured_products {
        width: calc(100% - 300px)
    }

    .home_featured aside {
        width: 300px;
    }

    .home_featured aside h2 {
        font-size: 40px;
    }
}

@media screen and (max-width: 1150px) {
    .page_header .c {
        width: 80%;
    }

    .page_header>h2 {
        font-size: 15px;
    }

    .contact_split img {
        top: -30px;
    }

    #openingsuren-btn {
        text-align: center;
        margin-left: 50%;
        transform: translateX(-50%);
    }
}

@media screen and (max-width: 1100px) {
    .vragen {
        width: 100%;
        margin-bottom: 50px;
    }

    .home_blokken__item .overlay {
        display: none;

    }

    .home_blokken__item .overlay2 {
        position: static;
        display: block;
    }
}

@media screen and (max-width:1050px) {
    .vacature_pagina {
        flex-wrap: wrap;
    }

    .vacature_pagina>div {
        width: 100%;
    }

    .vacature_pagina aside {
        margin-top: 20px;
        max-width: 100%;
        margin-left: 0;
        top: initial;
        position: relative;
    }

    .curtaindrop h2 {
        font-size: 2.5em;
    }

    .page_header h1 {
        font-size: 2.2em;
    }

    .home_banner .slick-arrow {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }

    .trending>div {
        padding: 60px 0;
    }

    .element {
        transform: unset;
        padding-top: 30px;
    }

    .element img {
        max-width: 60px;
    }

    .blokken {
        margin-top: 30px;
    }

    .blokken article {
        flex-direction: column;
    }

    .blokken article .img {
        order: 1 !important;
        width: 100%;
    }

    .blokken article .content {
        order: 2 !important;
        width: 100%;
    }

    .troeven>div {
        width: 90%;
    }

    .troeven>div article .c {
        font-size: 20px;
    }

    .vragen_form {
        width: 100%;
    }

}

@media screen and (max-width: 1000px) {
    .contact_split img {
        top: -30px;
    }

    .blog-overzicht {
        width: 100%;
    }

    .blog-content h1 {
        width: 100%;
        font-size: 1.9rem;
    }

    .blog-content h2 {
        font-size: 1.15rem;
    }

    .blog-main .blog-img {
        width: 100%;
    }

    .blog-nav nav {
        margin-bottom: 20px;
    }

    .blog-holder {
        margin-top: 30px;
        flex-wrap: wrap;
    }

    .blog-holder .blog-aside {
        margin: 0;
        width: 100%;
    }

    .blog-holder .blog-main {
        width: 100%;
    }

    .row-block .extra {
        padding: 10px;
    }

    .blog-aside h3 {
        width: 100%;
    }

    .blog-recent {
        display: none;
    }

    .blog-recent .blog-item {
        width: 45%;
    }

    .blog-aside {
        width: 100%;
        margin-right: 0;
    }

    .blog-nav {
        order: 1;
    }

    .blog-main {
        width: 100%;
        padding: 10px;
        order: 2 !important;
    }
}

@media screen and (max-width: 950px) {
    #content-container h1 {
        font-size: 2.5em;
        margin-bottom: 60px !important;
    }

    #content-container h2 {
        font-size: 1.8em;
    }

    .header_content>div img {
        width: 350px;
    }

    .in_beeld article {
        width: 32.33%;
    }

    .blog-main .c {
        font-size: 1.2em;
    }

    .footer-item:first-child {
        display: none;
    }
}

@media screen and (max-width: 920px) {
    .contact_split img {
        top: -30px;
    }

    .kaart article h2 {
        font-size: 1.2em;
    }

    .kaart article h3,
    .prijs1 span,
    .prijs span {
        font-size: 1em;
    }
}

@media screen and (max-width: 900px) {
    .blog-main .c {
        font-size: 1.2em;
    }

    .navigatie {
        width: 95%;
    }

    .home_featured {
        margin-top: 30px;
        margin-bottom: 60px;
        margin-left: 0;
        padding-left: 2%;
        padding-right: 2%;
    }

    .featured_arrows {
        width: calc(100% - 300px);
        margin-left: 300px;
    }

    .featured_products {
        width: calc(100% - 300px)
    }
}

@media screen and (max-width: 850px) {
    #content-container {
        max-width: 90%;
    }

    .page_header h1 {
        font-size: 2.1em;
    }

    .page_header .c {
        font-size: 20px;
    }

    .home_banner article>div {
        padding: 0;
        left: 20px;
        right: 20px;
        bottom: 20px;
    }

    .home_banner article h2 {
        font-size: 2.3em;
        width: 70%;
    }

    .trending>div {
        width: 95%;
    }

    .trending>div .slick-slide {
        margin: .5% !important;
    }

    .trending .slick-arrow {
        left: 5px;
    }

    .trending .slick-next {
        left: initial;
        right: 5px;
    }

    .trending>div article .content h3 {
        font-size: 14px;

    }

    .trending>div article .content h2 {
        font-size: 20px;
    }

    .blokken {
        margin-bottom: 0;
    }

    .blokken article .content {
        flex-direction: column;
        align-items: flex-start;
        -ms-align-items: flex-start;
        padding: 20px 0 50px 0;
    }

    .blokken article .content .count {
        padding: 0;
        padding-bottom: 5px;
        font-size: 30px;
    }

    .blokken article .content .c {
        padding: 0;
        border: none;
    }

    .troeven>div {
        width: 95%;
    }

    .troeven>div article .c {
        font-size: 20px;
    }

    .slogan {
        width: 100%;
        padding: 80px 30px;
        font-size: 40px;
    }

    .vid_beeld {
        height: 60vh;
    }
}

@media screen and (max-width: 840px) {
    .timeline_item_content {
        width: 100%;
        padding: 0;
        order: 1;
    }

    .timeline {
        overflow: auto;
    }

    .timeline_other_content {
        width: 100%;
        order: 2;
        text-align: left;
    }

    .timeline_other_content img {
        width: 100%;
        margin-top: 10px;
    }

    .left_time h2 {
        text-align: left;
    }

    .left_time p {
        text-align: left;
    }

    .timeline_container {
        width: 90%;
        float: right;
        flex-wrap: wrap;
        padding: 10px;
    }

    .timelineoverlayholder {
        left: 5%;
    }

    .timeline::after {
        left: 5%;
    }

    .timeline_container::after {
        left: -5.6%;
        width: 25px;
        height: 25px;
    }

    .timeline_quote {
        margin-top: 20px;
    }

    .right_time,
    .imageleft {
        margin-left: 0;
    }

    .imageright {
        margin-right: 0;
    }
}

@media screen and (max-width: 800px) {
    .menubtn {
        width: 40px;
    }

    .closebtn {
        width: 35px;
        height: 35px;
    }

    .curtaindrop p {
        font-size: 1.2em;
        line-height: 1.4em;
    }

    .curtaindrop h2 {
        font-weight: var(--font-weight-bold);
        font-size: 1.8em;
    }

    .curtain-close {
        font-size: 30px;
    }

    .curtaindrop .button {
        font-size: 17px;
        padding: 12px 30px;
    }

    .page_header.home {
        padding-top: 60px;
    }

    .slogan {
        font-size: 35px;
    }

    .blog-rows .blog-main .blog-inhoud h2 {
        font-size: 1.6em;
    }

    .blog-content-row .multi-img-holder.four>*,
    .blog-content-row .multi-img-holder.three>* {
        width: 49%;
    }

    .blog-content-row .multi-img-holder.four>*:last-child,
    .blog-content-row .multi-img-holder.three>*:last-child {
        display: none;
    }

    .blog-content-row .multi-img-holder.four>*:nth-child(-n+2),
    .blog-content-row .multi-img-holder.three>*:nth-child(-n+2) {
        margin-bottom: 2%;
    }

    .vacature_overzicht article {
        flex-direction: column;
    }

    .vacature_overzicht article div {
        width: 100%;
    }

    .vacature_overzicht article img {
        width: 100%;
    }

    .reservation-link {
        width: 125px;
        bottom: 10px;
        right: 10px;
    }

}

@media screen and (max-width: 750px) {

    .kaart_banner,
    .suggesties {
        width: 95%;
        display: none;
    }

    .kaart_inhoud,
    .suggestie_inhoud {
        width: 95%;
    }

    .filter {
        transform: unset;
        padding-top: 0;
        padding-bottom: 25px;
    }

    .filter.thin {
        padding-top: 10px;
    }

    .kaart,
    .suggestie_items {
        margin-bottom: 30px;
        width: 100%;
        flex-direction: column;
    }

    .kaart article {
        width: 100%;
        padding-bottom: 0;
        padding-top: 0;
    }

    .filter button {
        font-size: 14px;
        padding: 6px 18px;
    }

    .kaart article h2 {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        -ms-align-items: center;
        cursor: pointer;
    }

    .kaart article h2 i {
        display: inline-flex;
    }

    .vragen article h2 {
        font-size: 1em;
    }

    .vragen article div {
        font-size: .9em;
    }

    .blog-recent .blog-item {
        width: 100%;
    }

    .innerfooter ul {
        flex-wrap: wrap;
        flex-direction: column;
        justify-content: center;
        -ms-align-items: center;
        align-items: center;
    }

    .footer-item {
        text-align: center;
        width: 100%;
    }

    .footer-geg>div div:first-child {
        display: none;
    }

    .footer-geg>div div:last-child {
        padding-left: 0;
    }

    .footer-geg>div div i, .footer-geg>div div:last-child p {
        text-align: center;
        width: 100%;
    }

    .footer-socials {
        margin-top: 30px;
    }
}

@media screen and (max-width: 700px) {
    .home_blokken__item .overlay2 h2 {
        font-size: 2em;
    }

    .home_blokken__item .overlay2 {
        padding: 20px;
    }

    .element img {
        max-width: 50px;
    }

    .in_beeld article {
        width: 49%;
    }

    .privcnt .desk {
        display: none;
    }

    .privcnt .mob {
        display: flex;
    }

    .home_banner article h2 {
        font-size: 1.6em;
    }

    .blog-row .row-block,
    .blog-row.type-b .row-block {
        width: 100%;
        margin-bottom: 4.0816326530612244897959183673469%;
    }

    .blog-row .row-block:not(:nth-child(2n)),
    .blog-row.type-b .row-block:not(:nth-child(2n)) {
        margin-right: 0;
    }

    .blog-row {
        margin-bottom: 0;
    }

    .blog-row.reverse .row-block:first-child {
        margin-left: 0;
    }

    .home_featured aside {
        width: 100%;
        text-align: center;
    }

    .home_featured aside a.button {
        display: inline-block;
    }

    .home_featured aside .c {
        margin-bottom: 20px;
        margin-right: 0;
    }

    .featured_products {
        width: 100%;
        margin-top: 30px;
    }

    .featured_arrows {
        margin-left: 0;
        width: 100%;
        margin-top: 20px;
    }

    .featured_products article {
        padding-left: 10px;
        padding-right: 10px;
    }

    .innerfooter {
        padding-top: 35px;
        padding-bottom: 35px;
        margin-top: 25px;
    }
}

@media screen and (max-width: 680px) {
    .blog-main .blog-img .h1 {
        position: static;
        margin-top: 20px;
        margin-bottom: 10px;
        font-size: 1.4em;
    }
}

@media screen and (max-width: 650px) {
    #content-container h1 {
        font-size: 2em;
    }

    #content-container h1 {
        font-size: 2.1em;
    }

    #content-container h2 {
        font-size: 1.7em;
    }

    .curtaindrop>div>div:last-child {
        width: 95%;
    }

    .curtain-click.title {
        width: 100%;
        right: 0;
        border-radius: 0;
        text-align: center;
    }
    
    .curtain-click.title span {
        font-size: 14px;
    }
    
    .curtaindrop h2 {
        font-size: 1.5em;
    }
    
    .curtaindrop .button {
        font-size: 15px;
        padding: 10px 25px;
    }
    
    .logo {
        width: 160px;
        height: auto;
        transform: translateY(50px);
    }
    
    .logo.small {
        transform: translateY(50px);
    }
    
    .menubtn {
        width: 35px;
    }
    
    .closebtn {
        width: 30px;
        height: 30px;
    }
    
    .page_header h1,
    .contact_gegevens h1 {
        font-size: 1.9em;
    }
    
    .page_header .c {
        font-size: 18px;
    }
    
    .page_header .line {
        margin: 20px auto;
    }
    
    .blokken,
    .in_beeld {
        width: 96%;
    }
    
    .home_banner .slick-arrow {
        width: 30px;
        height: 30px;
        font-size: 16px;
        transform: translateY(-18px);
    }
    
    .home_banner .slick-arrow.slick-next {
        transform: translateY(18px);
    }
    
    .blokken article .content .count {
        font-size: 23px;
    }
    
    .blokken article .content .c {
        font-size: 18px;
    }
    
    .blokken article .content .c h2 {
        font-size: 23px;
    }
    
    .timeline h2 {
        font-size: 22px;
        margin-bottom: 10px;
    }
    
    .timeline p {
        font-size: 16px;
    }
    
    .timelineoverlayholder {
        width: 5px;
    }
    
    .timeline_container::after {
        left: -5.6%;
        width: 20px;
        height: 20px;
    }
    
    .trending > div {
        padding: 10px 0;
    }
    
    .trending > div article .content {
        width: 120px;
        height: 120px;
        padding: 10px;
    }
    
    .trending > div article .content h2 {
        font-size: 18px;
    }
    
    .trending > div article .content div {
        width: 105px;
        height: 105px;
    }
    
    .trending .slick-dots {
        bottom: 20px;
    }
    
    .troeven > div {
        flex-direction: column;
        padding: 30px 0;
    }
    
    .troeven > div article {
        width: 100%;
        padding: 20px;
    }
    
    .troeven > div article h2 {
        font-size: 20px;
    }
    
    .troeven > div article .c {
        font-size: 18px;
    }
    
    .contact_split img {
        top: -10px;
        width: 140px;
    }
    
    .contact_split div {
        justify-content: flex-start;
        align-items: flex-start;
        -ms-align-items: flex-start;
    }
    
    .contact_split h2 {
        font-size: 22px;
    }
    
    .contact_split p {
        font-size: 17px;
    }
    
    .slogan {
        font-size: 32px;
        padding: 50px 30px;
    }
    
    .vid_beeld {
        height: 40vh;
    }
    
    .suggestie_inhoud .filter {
        font-size: 25px;
    }
    
    .kaart_banner .slick-arrow,
    .suggesties .slick-arrow {
        bottom: 20px;
        width: 25px;
        height: 25px;
        font-size: 14px;
        transform: translateX(-20px);
    }
    
    .kaart_banner .slick-arrow.slick-next,
    .suggesties .slick-arrow.slick-next {
        transform: translateX(10px);
    }
    
    .siteby {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .siteby span {
        display: none;
    }    

    .socials {
        justify-content: flex-start;
    }

    .blog-content h1 {
        width: 100%;
        font-size: 1.8rem;
    }

    .blog-main .c {
        font-size: 1.1em;
    }

    .blog-main .blog-img {
        width: 100%;
    }
}

@media screen and (max-width: 600px) {
    .page_header h1,
    .contact_gegevens h1 {
        font-size: 1.7em;
    }

    .page_header .c {
        font-size: 18px;
        width: 95%;
    }

    .slogan {
        font-size: 30px;
        padding: 50px 20px;
    }

    .filter {
        flex-direction: column;
        gap: 10px
    }
    
    .filter button {
        width: 85%;
        margin: 0 !important;
    }  

    #openingsuren-btn button,
    #openingsuren th,
    td {
        font-size: 16px;
    }

    .blog-holder .blog-aside .blog-nav .blog-more-nav-btn {
        display: block;
    }

    .blog-more-nav {
        display: none;
    }
}

@media screen and (max-width: 550px) {
    #content-container {
        max-width: 95%;
    }

    .element img {
        max-width: 40px;
    }

    .blokken {
        width: 95%;
    }

    .PL_privacy {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        -ms-align-items: flex-start;
    }

    .privcnt {
        flex-wrap: wrap;
        height: initial !important;
        line-height: 120%;
    }
    
    .privcnt .desk {
        display: none;
    }
    
    .privcnt .mob {
        display: flex;
    }    

    .subm_button {
        width: 100%;
        display: flex;
        justify-content: flex-end;
        margin-top: 30px;
    }

    .contact_split img {
        border: none;
        width: 120px;
        top: -30px;
    }

    .contact_form input[type=submit] {
        font-size: 1em;
        padding: 4px 25px;
    }

    .contact_formulier #NaamInput {
        width: 100%;
    }

    .socials a {
        width: 30px;
        height: 30px;
        border: 1px solid #1d1d1d;
    }

    .socials {
        transform: translateY(-15px);
        margin-bottom: 0;
    }

    .socials i {
        font-size: 13px;
    }

    .home_banner article h2 {
        font-size: 1.2em;
        line-height: 130%;
    }

    .home_banner article a {
        font-size: 16px;
    }

    .contact_split div:not(.contact_img) {
        padding: 20px;
    }
    
    .contact_split div:not(.contact_img) p {
        font-size: 16px;
        text-align: left;
    }
    
    .contact_split div:not(.contact_img) p i {
        width: 40px;
        text-align: left;
        font-size: 16px;
        justify-content: flex-start;
        align-items: flex-start;
        -ms-align-items: flex-start;
    }    

    .suggestie_inhoud.menus .suggestie_items>div {
        width: 100%;
    }
}

@media screen and (max-width: 530px) {
    .home_banner .slick-arrow {
        transform: unset;
        top: unset;
        bottom: -15px;
        left: unset;
        right: 55px;
    }

    .home_banner .slick-arrow.slick-next {
        transform: unset;
        left: initial;
        right: 20px;
    }
}

@media screen and (max-width: 500px) {
    #content-container h1 {
        font-size: 1.8em;
    }

    .contact_split img {
        width: 120px;
        top: -30px;
        right: -12px;
    }

    .filter button {
        width: 85%;
    }

    .kaart article {
        padding: 0 30px;
    }

    .kaart article h2 i {
        width: 25px;
        height: 25px;
    }

    .suggestie_items {
        width: 90%;
    }

    .suggestie_items h3 {
        font-size: 1.1em;
    }
}

@media screen and (max-width: 450px) {
    .closebtn {
        left: 20px;
        top: 20px
    }

    .res-nav .res-logo {
        width: 80px;
    }

    .navitem a {
        font-size: 23px;
    }

    .plenso_cookies {
        right: 10px;
    }

    .page_header {
        padding: 40px 20px;
    }
    
    .page_header h1,
    .page_header .contact_gegevens h1 {
        font-size: 1.5em;
    }
    
    .page_header h2 {
        font-size: 14px;
    }
    
    .page_header .c {
        font-size: 17px;
    }
    
    .page_header .line {
        margin: 20px auto;
    }
    
    .contact_gegevens h2 {
        font-size: 18px;
    }
    
    .contact_gegevens > div {
        justify-content: flex-start;
        align-items: flex-start;
        text-align: center;
    }
    
    .contact_gegevens > div p {
        font-size: 16px;
        padding-left: 30px;
    }    

    .contact_split img {
        width: 150px;
    }

    .contact_form input[type=text],
    .contact_form input[type=email],
    .contact_form textarea,
    #NaamInput input {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .vid_beeld {
        height: 30vh;
    }

    .home_banner article h2 {
        font-size: 1em;
    }

    .home_banner article a {
        font-size: 14px;
    }

    .blokken article .content .c h2 {
        flex-direction: column;
    }
    
    .blokken article .content .c h2 .lines {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .blokken article .content .c {
        text-align: center;
    }
    
    .blokken article .content .c a {
        margin-left: 50%;
        transform: translateX(-50%);
    }    
}

@media screen and (max-width: 420px) {
    .navigatie {
        width: 100%;
        padding-left: 5px;
        padding-right: 5px;
    }
    
    .navigatie nav {
        margin-top: 20px;
    }
    
    .logo {
        width: 120px;
        transform: translateY(30px);
    }
    
    .logo.small {
        transform: translateY(30px);
    }
    
    .curtain-click.title {
        padding: 4px 10px;
    }
    
    .curtain-click.title span {
        font-size: 12px;
    }

    .menubtn {
        margin-left: 0;
        margin-right: 10px;
    }
}

@media screen and (max-width: 400px) {
    .res-nav {
        max-width: 100vw;
        right: -100vw;
    }
    
    .res-nav.menu-is-open {
        right: 0;
    }

    .contact_split img {
        width: 130px;
    }

    .blog-main .blog-img .h1 {
        font-size: 1.6em;
    }

    .blog_powertitel {
        display: none !important;
    }
}

@media screen and (max-width: 380px) {
    .navi_footer > div {
        display: flex;
        flex-direction: column;
        line-height: 130%;
    }
    
    .navi_footer > div span {
        display: none;
    }    
}

@media screen and (max-width: 350px) {
    .contact_split img {
        display: none;
    }
}