@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: 'ChopinScript';
    src: url('/fonts/chopinscript-webfont.eot');
    src: url('/fonts/chopinscript-webfont.eot?#iefix') format('embedded-opentype'),
         url('/fonts/chopinscript-webfont.woff') format('woff'),
         url('/fonts/chopinscript-webfont.ttf') format('truetype'),
         url('/fonts/chopinscript-webfont.svg#ChopinScript') format('svg');
    font-weight: normal;
    font-style: normal;

}
* {
    -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: 'Arial Narrow', serif;
	font-weight: 600;
}

@keyframes grain {
    0%,
    100% {
        transform: translate(0, 0);
    }
    10% {
        transform: translate(-5%, -10%);
    }
    30% {
        transform: translate(3%, -15%);
    }
    50% {
        transform: translate(12%, 9%);
    }
    70% {
        transform: translate(9%, 4%);
    }
    90% {
        transform: translate(-1%, 7%);
    }
}

body {
    background-color: #e0d8c333;
}

.fal {
    background-color: transparent;
}


/* KEYFRAMES */

.come-in {
    transform: translateY(150px);
    animation: come-in 1.5s ease forwards;
}

.come-in:nth-child(odd) {
    animation-duration: 1.5s;
    /* So they look staggered */
}

@keyframes come-in {
    to {
        transform: translateY(0);
    }
}

@media screen and (min-width: 800px) {
    .come-in-left {
        transform: translateX(-300px);
        animation: come-in-left 0.8s ease forwards;
    }
    .come-in-left:nth-child(odd) {
        animation-duration: 1.5s;
        /* So they look staggered */
    }
}

@keyframes come-in-left {
    to {
        transform: translateX(0);
    }
}

@media screen and (min-width: 800px) {
    .come-in-right {
        transform: translateX(300px);
        animation: come-in-right 0.8s ease forwards;
    }
    .come-in-right:nth-child(odd) {
        animation-duration: 1.5s;
        /* So they look staggered */
    }
}

@keyframes come-in-right {
    to {
        transform: translateX(0);
    }
}

@keyframes zoom {
    0% {
        transform: scale(1.1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1.1);
    }
}

@keyframes pulse {
    0% {
        color: #e0d8c34b;
    }
    5% {
        color: #8bcf97
    }
    10% {
        color: #e0d8c34b;
    }
    20% {
        color: #8bcf97
    }
    21% {
        color: #e0d8c34b;
    }
    50% {
        color: #e0d8c34b;
    }
    100% {
        color: #e0d8c34b;
    }
}

@keyframes respulse {
    0% {
        color: #4b4b4b;
    }
    5% {
        color: #8bcf97
    }
    10% {
        color: #4b4b4b;
    }
    20% {
        color: #8bcf97
    }
    21% {
        color: #4b4b4b;
    }
    50% {
        color: #4b4b4b;
    }
    100% {
        color: #4b4b4b;
    }
}

@keyframes pulse2 {
    0% {
        color: #e0d8c36e;
    }
    5% {
        color: #ae9a63
    }
    10% {
        color: #e0d8c36e;
    }
    20% {
        color: #ae9a63
    }
    21% {
        color: #e0d8c36e;
    }
    50% {
        color: #e0d8c36e;
    }
    100% {
        color: #e0d8c36e;
    }
}

@keyframes pulse3 {
    0% {
        color: #e0d8c36e;
    }
    5% {
        color: #ae9a63
    }
    10% {
        color: #e0d8c36e;
    }
    20% {
        color: #ae9a63
    }
    21% {
        color: #e0d8c36e;
    }
    50% {
        color: #e0d8c36e;
    }
    100% {
        color: #e0d8c36e;
    }
}


/* 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%;
    border-radius: 5px;
    -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: 3em;
    color: #ae9a63;
    margin-bottom: 20px;
}

.bevestiging h2 {
    text-transform: uppercase;
    color: #ae9a63;
    font-size: 15px;
    margin: 10px 0;
}

.bevestiging h1 {
    font-weight: 400;
    font-size: 2em;
    text-align: center;
    color: #ae9a63;
    margin-bottom: 10px;
}

.bevestiging p {
    line-height: 150%;
    color: #ae9a63;
    font-size: 17px;
    font-weight: 200;
}

.bevestiging a {
    cursor: pointer;
    display: inline-block;
    padding: 13px 30px;
    background-color: #ae9a63;
    font-weight: 200;
    color: white;
    margin-top: 20px;
    border: 1px solid #ae9a63;
    transition: all 1s ease;
}

.bevestiging a:hover {
    background-color: transparent;
    color: #ae9a63;
}


/* 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: #AE9A63;
    color: white;
    font-size: 15px;
    font-weight: 900;
    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 */


/* GDPR */

#content-container {
    width: 100%;
    max-width: 95%;
    margin: 0 auto;
    margin: auto;
}

#content-container h1 {
    width: 100%;
    text-align: center;
    font-size: 3em;
    font-weight: 700;
    color: #AE9A63;
    margin-bottom: 20px;
    margin-top: 150px;
}

#content-container h2 {
    color: #AE9A63;
    font-size: 2.4em;
    font-weight: bold;
    margin-bottom: 1em;
    margin-top: 1em;
    cursor: pointer;
    padding-left: 15px;
}

#content-container h3 {
    background: #AE9A63;
    color: #fff;
    font-size: 1.3em;
    padding: 20px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    display: flex;
    justify-content: flex-start;
    -ms-align-items: center;
    align-items: center;
    margin-top: 20px;
}

#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: bold;
}

#content-container p {
    padding: 20px;
    line-height: 170%;
    color: #7e7e7e;
    font-size: 1.2em;
}

#content-container ul {
    margin-left: 3em;
}

#content-container table {
    width: 100%;
}

#content-container a {
    color: #AE9A63;
    font-weight: 700;
}

#gdpr-wrapper {
    min-height: 100%;
    position: relative;
}

#content-container thead {
    background-color: #4C4C4C;
    color: #fff;
}

#content-container thead th {
    border: 1px solid #353535;
    padding: 10px;
}

#content-container tbody td {
    border: 1px solid #353535;
    color: #7e7e7e;
    line-height: 150%;
    padding: 5px;
}

#content-container tbody td p {
    padding: 0px;
}

#content-container ul {
    padding-left: 20px;
    line-height: 170%;
    color: #7e7e7e;
    list-style-type: disc;
}


/* Einde GDPR */


/* Curtaindrop */

.curtain-click {
    cursor: pointer;
    color: #e0d8c36e;
    position: absolute;
    z-index: 30;
    left: 51%;
    top: 3px;
    display: flex;
    justify-content: center;
    align-items: center;
    -ms-align-items: center;
    font-size: 20px;
}

.curtain-click i {
    animation: pulse2 4s infinite;
    font-size: 30px;
    margin-right: 15px;
}

.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: black;
    opacity: 0.1;
}

.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: 95%;
    max-width: 1000px;
    color: #fff;
    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: 15px 40px;
    background-color: transparent;
    cursor: pointer;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 4px;
    font-size: 20px;
    color: #fff;
    background-color: #e0d8c36e;
    transition: all 0.8s ease;
    margin-top: 30px;
}

.curtaindrop .button:hover {
    transform: scale(1.1);
}

.curtaindrop p {
    font-size: 1.4em;
    line-height: 1.6em;
}

.curtaindrop img {
    max-width: 1000px;
    width: 96%;
}

.curtaindrop h2 {
    font-weight: 900;
    font-size: 3em;
    margin: 0;
    margin-bottom: 15px;
    text-align: center;
}

.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: #fff;
    font-weight: bold;
    font-size: 25px;
    width: 36px;
    display: block;
    text-align: center;
    content: '!';
}

.curtain-close {
    position: absolute;
    right: 40px;
    top: 30px;
    font-size: 60px;
    cursor: pointer;
    color: #fff;
    z-index: 100000000;
}


/* Einde Curtaindrop */


/* NAVIGATIE */

.logo {
    width: 220px;
    position: absolute;
    top: 30px;
    left: 30px;
}

.logo img {
    width: 100%;
}

.navigatie {
    position: absolute;
    top: 35px;
    right: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    -ms-align-items: center;
    z-index: 2;
}

.navigatie i.bullhorn {
    color: #ae9a63;
    font-size: 32px;
    margin-right: 30px;
}

.navigatie a {
    margin-right: 25px;
    background-color: transparent;
    border: 1px solid #ae9a63;
    color: #ae9a63;
    border-radius: 200px;
    font-weight: 500;
    display: block;
    letter-spacing: 1px;
    width: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    -ms-align-items: center;
    padding: 0;
    padding: 15px 25px;
    transition: all 1s ease;
}

.navigatie a:hover {
    background-color: #ae9a63;
    color: white;
}

.menubtn {
    transition: all .5s;
    color: #ae9a63;
    font-size: 3em;
    cursor: pointer;
}

.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: 50vw;
    height: 100%;
    position: fixed;
    right: -50vw;
    top: 0;
    z-index: 1000;
    overflow: auto;
    transition: all .6s;
    background-color: #fff;
    padding-bottom: 100px;
    background-image: url(/images/navbg.svg);
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: 60%;
    overflow-x: hidden;
}

.res-nav video {
    min-height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
    opacity: 0.2;
    filter: grayscale(1);
}

.res-nav .res-logo {
    width: 200px;
    position: absolute;
    right: 30px;
    top: 30px;
}

.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 {
    width: 60px;
    height: 60px;
    cursor: pointer;
}

.menu-block {
    overflow: hidden;
}

.menu-is-open {
    right: 0;
}

.res-nav nav {
    padding-top: 150px;
    display: flex;
    flex-direction: column;
    -ms-align-items: flex-start;
    align-items: flex-start;
    overflow: auto;
    padding-bottom: 50px;
    height: 100%;
    position: relative;
}

.navitem {
    width: 100%;
    padding: 20px 50px;
}

.navitem div {
    display: flex;
    justify-content: space-between;
    -ms-align-items: center;
    align-items: center;
    width: 100%;
    cursor: pointer;
}

.navitem div img {
    width: 20px;
    transition: all .5s;
    transform: rotate(0deg);
}

.rotateImg {
    transform: rotate(-180deg) !important;
}

.navitem a {
    text-align: left;
    display: inline-block;
    color: rgba(0, 0, 0, 0.74);
    font-size: 50px;
    font-weight: 600;
    position: relative;
    padding-left: 20px;
}

.navitem a,
.navitem a:after,
.navitem a:before {
    transition: all .5s;
}

.navitem a:hover {
    color: #ae9a63;
}

.navitem a:after {
    position: absolute;
    bottom: -5px;
    left: 2px;
    right: 2px;
    margin: auto;
    width: 0%;
    content: '.';
    color: transparent;
    background: #ae9a63;
    height: 2px;
}

.navitem a:hover:after {
    width: 100%;
}

.navitem i {
    font-size: 25px;
    transition: all .3s;
}

.navitem .rotate {
    transform: rotate(90deg);
}

.activelink {
    color: #ae9a63 !important;
}

.navitem ul {
    display: none;
    flex-direction: column;
    -ms-align-items: flex-start;
    align-items: flex-start;
    padding-top: 10px;
}

.navitem ul li {
    display: flex;
    justify-content: flex-start;
    -ms-align-items: center;
    align-items: center;
    padding-left: 15px;
    border-left: 2px solid #eeeeee;
}

.navitem ul li i {
    margin-left: -7px;
    color: #c8c8c8;
    font-size: .7em;
    margin-right: 20px;
}

.navitem ul a {
    font-size: 1.2em;
    color: #949494;
    padding: 7px 0;
    padding-left: 0;
}

.navi_footer>div {
    color: black;
}

.navi_footer img {
    width: 100%;
    position: absolute;
    bottom: 0;
}

.navi_footer img.logo {
    position: absolute;
    top: 30px;
    width: 100px;
    right: 30px;
}

.navi_footer>div {
    position: absolute;
    bottom: 10px;
    font-size: .9em;
    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: black;
    font-weight: 500;
    font-size: 17px;
    font-style: italic;
    z-index: 100;
}

.navi_footer span {
    margin: 0 10px;
}

.navi_footer a {
    color: black;
    font-size: .9em;
}


/* EINDE NAVIGATIE */


/* HOME */

.gototop {
    z-index: 100;
    width: 40px;
    height: 40px;
    border-radius: 200px;
    display: flex;
    justify-content: center;
    -ms-align-items: center;
    align-items: center;
    position: fixed;
    right: -100px;
    bottom: 40px;
    color: #373a3c93;
    font-size: 1em;
    opacity: .8;
    cursor: pointer;
    transition: all .3s;
    border-radius: 200;
    border: none;
    background-color: #fff !important;
    transition: all 1s ease;
    box-shadow: #373A3C 0px 5px 15px;
}

.gototop:hover {
    transform: translateY(-10px);
}


/* Header */

.home_header {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    -ms-align-items: center;
    align-items: center;
    background-color: #000;
    min-height: 100vh;
}

.header_img {
    width: 50vw !important;
    height: 100vh !important;
    position: relative;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    /*filter: grayscale(100%);*/
}

.header_img a {
	color: #AF9B63;
}

.banner {
    position: relative;
}

.header-frame {
    position: absolute;
    width: 60%;
    left: 20%;
    bottom: 200px;
    animation: zoom 5s infinite;
}

.header-frame img {
    width: 100%;
}

.header-frame .c {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    text-align: center;
}

.banner .c p {
    line-height: 150%;
    font-size: 1.3em;
    color: #fff;
}

.header_content {
    width: 50vw;
    overflow: hidden;
    height: 100vh;
    padding: 50px;
    position: relative;
	background-color: #6C4D2D;
}

.header_content video {
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    z-index: 1;
    opacity: 0.5;
    filter: grayscale(1);
}

.header_content>div:first-of-type {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.header_content>div.splashscroll,
.splashscroll1 {
    position: absolute;
    z-index: 3;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
    text-align: center;
}

.splashscroll1 {
    display: none !important;
}

.header_content>div.splashscroll p,
.splashscroll1 p {
    margin-bottom: 10px;
    transition: all 1s ease;
    color: #e0d8c36e;
    font-size: 30px;
}

.header_content>div.splashscroll p:hover {
    transform: scale(1.1);
}

.header_content>div.splashscroll i,
.splashscroll1 i {
    font-size: 50px;
    color: #e0d8c36e;
}

.header_content>div img {
    width: 500px;
}

.header_content>div h1 {
    margin-top: 25px;
    font-size: 1.8em;
    color: #e0d8c36e;
    letter-spacing: 2px;
}


/* Powertekst */

.page_header {
    padding-top: 90px;
    padding-bottom: 40px;
    text-align: center;
}

.page_header.page_kaart {
    position: relative;
    padding-bottom: 50px;
}

.home_image {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
}

.page_header:not(.page_header.home) {
    margin-top: 100px;
}

.page_header_element {
    width: 30px;
    padding-bottom: 20px;
}

.page_header h1 {
    color: #ae9a63;
    font-size: 2.7em;
    font-weight: bold;
    margin-bottom: 35px;
    display: inline-block;
    width: 90%;
}

.page_header>h2 {
    color: #4C4C4C;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 1px;
    margin-bottom: 5px;
    font-size: 1.5em;
}

.page_header .c {
    line-height: 150%;
    font-weight: 200;
    font-size: 25px;
    color: #4C4C4C;
    width: 60%;
    margin: auto;
    text-align: center;
}


/* Blokken */

.blokken {
    display: flex;
    justify-content: center;
    -ms-align-items: flex-start;
    align-items: flex-start;
    flex-direction: column;
    margin: 0 auto;
    width: 100%;
    margin-top: 50px;
}

.blokken article {
    display: flex;
    justify-content: space-between;
    -ms-align-items: center;
    align-items: center;
    flex-direction: row;
    width: 100%;
}

.blokken_img {
    width: 58%;
}

.blokken_img img {
    width: 100%;
}

.blokken_content {
    width: 42%;
    padding: 80px 100px;
    text-align: center;
}

.blokken_content h2 {
    font-weight: 500;
    font-size: 2em;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 30px;
}

.blokken_content h2::after {
    content: "";
    position: absolute;
    border-top: 1px solid black;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 60px;
    height: 0px;
}

.blokken_tekst {
    line-height: 180%;
    font-size: 1.5em;
    color: rgba(0, 0, 0, 0.795);
}

.blokken_content a {
    display: block;
    margin-top: 50px;
    color: rgba(0, 0, 0, 0.795);
    letter-spacing: 1px;
    transition: all 1s ease;
    font-size: 1.1em;
}

.blokken_content a:hover {
    transform: scale(1.1);
}


/* Parallax */

.home_ak {
    width: 100%;
    height: 90vh;
    position: relative;
    overflow: hidden;
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.dark_overlay {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .3);
}

.home_ak .content {
    position: absolute;
    left: 50%;
    top: 60%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 2;
}

.home_ak .content h2 {
    color: #fff;
    font-weight: 400;
    text-align: center;
    font-size: 100px;
    padding-bottom: 100px;
}

.home_ak .ak-links {
    position: absolute;
    bottom: 15px;
    display: flex;
    flex-direction: row;
    padding: 15px 10px;
    font-weight: 200;
    font-size: 22px;
    justify-content: space-between;
    width: 100%;
    padding-left: 40px;
    padding-right: 40px;
}

.home_ak .ak-links a {
    color: white;
    transition: all 1s ease;
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 20px;
}

.home_ak .ak-links a::after {
    content: "";
    position: absolute;
    border-top: 1px solid #fff;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 60px;
    height: 0px;
}

.home_ak .ak-links a:first-of-type {
    margin-right: 30px;
}

.home_ak .ak-links a:hover {
    transform: scale(1.1);
}


/* Troeven */

.troeven {
    padding: 80px 50px;
    width: 100%;
    margin-top: 60px;
}

.troeven>div:first-of-type {
    max-width: 80%;
    margin: auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    -ms-align-items: flex-start;
}

.troeven>div:first-of-type article {
    margin: 4%;
    position: relative;
    cursor: pointer;
}

.troeven .overlay {
    content: "";
    height: 60%;
    bottom: 0;
    z-index: 2;
    left: 0;
    right: 0;
    transition: all 2s;
    opacity: 1;
    top: auto;
    position: absolute;
    pointer-events: none;
    background-image: -webkit-linear-gradient(bottom, #19191b 0, rgba(25, 25, 27, 0) 100%);
    background-image: linear-gradient(to top, #19191b 0, rgba(25, 25, 27, 0) 100%);
    -webkit-transition: .2s cubic-bezier(.4, 0, .2, 1);
    transition: 2s cubic-bezier(.4, 0, .2, 1);
    will-change: transform;
}

.troeven article:hover .overlay {
    opacity: 0;
}

.troeven .troeven_img {
    position: relative;
}

.troeven .troeven_img img {
    width: 100%;
    transition: all 2s;
}

.troeven .troeven_content {
    position: absolute;
    top: -30px;
    background-color: #000;
    width: 80%;
    left: 10%;
    padding: 20px;
    text-align: center;
    min-height: 7em;
    display: flex;
    justify-content: center;
    align-items: center;
    -ms-align-items: center;
}

.troeven .troeven_content h2 {
    color: #fff;
    font-size: 1.3em;
    font-weight: 200;
    line-height: 150%;
    letter-spacing: 1px;
}


/* EINDE HOME */


/* KAART */

.filter {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    -ms-align-items: center;
    max-width: 80%;
    margin: auto;
}

.filter p {
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    -ms-align-items: flex-end;
    font-size: 1.3em;
}

.card-header div {
    line-height: 150%;
    font-weight: 200;
    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;
}

.filter span {
    padding: 0 15px;
}

.filter p.active {
    font-weight: 700;
}

.filter p i {
    display: none;
    font-size: 15px;
    padding-right: 10px;
}

.filter p.active i {
    display: inline-flex;
}

.kaart {
    width: 100%;
    margin: 0 auto;
    max-width: 1400px;
    color: #000;
    padding-bottom: 50px;
    margin-top: 80px;
    margin-bottom: 100px;
}

.card-title {
    display: none;
}

.kaart article {
    width: 50%;
    display: flex;
    justify-content: flex-start;
    -ms-align-items: flex-start;
    align-items: flex-start;
    flex-direction: column;
    padding: 30px;
}

.kaart article>div {
    display: flex;
    justify-content: space-between;
    -ms-align-items: center;
    align-items: center;
    width: 100%;
    padding: 10px 0;
    border-bottom: 2px dotted #000;
}

.kaart article>div>div {
    display: flex;
    justify-content: center;
    -ms-align-items: center;
    align-items: center;
}

.kaart article h2 {
    font-weight: 700;
    font-size: 1.6em;
    margin-bottom: 15px;
    border-bottom: 1px solid #000;
    padding-bottom: 15px;
    width: 100%;
    text-align: left;
    font-family: 'Playfair Display', serif;
}

.kaart article h3 {
    width: 100%;
    line-height: 150%;
    font-size: 1.2em;
    font-family: 'Playfair Display', serif;
    font-style: normal !important;
}

.kaart div.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 div.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 div.content .info p {
    font-weight: 200;
    font-size: .9em;
}

.extra_info {
    width: 100%;
    letter-spacing: 1px;
    line-height: 150%;
    font-size: .9em;
    font-style: italic;
    color: #fff;
    background-color: #353535;
    padding: 10px 20px !important;
}

.prijs1 {
    text-align: right;
    line-height: 150%;
    width: 120px;
    padding: 0 10px;
    font-family: 'Playfair Display', serif;
    font-weight: 200;
}

.prijs2 {
    text-align: right;
    line-height: 150%;
    width: 120px;
    padding: 0 10px;
}

.prijs1 span,
.prijs2 span {
    font-weight: 500;
    font-size: 1.2em;
}

.kaart .card-content h2 {
    font-weight: 700;
    font-size: 1.6em;
    margin-bottom: 15px;
    border-bottom: 1px solid white;
    padding-bottom: 15px;
    width: 100%;
    text-align: left;
    color: #fff;
}


/* EINDE KAART */


/* SUGGESTIES */

.suggesties {
    width: 100%;
    margin: auto;
    color: #000;
    padding-bottom: 50px;
    margin-top: 80px;
    margin-bottom: 100px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    -ms-align-items: flex-start;
}

.suggesties .items {
    width: 40%;
    padding: 0 80px;
}

.suggesties .extraf {
    width: 60%;
}

.suggesties .extraf img {
    width: 100%;
}

.suggesties .extraf .img {
    position: relative;
}

.suggesties .extraf .img div {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: #1d1d1d;
    color: #ae9a63;
    border-radius: 200px;
    padding: 10px 25px;
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    -ms-align-items: center;
}

.suggesties article {
    width: 100%;
    display: flex;
    justify-content: center;
    -ms-align-items: center;
    align-items: center;
    flex-direction: column;
    padding: 30px;
}

.suggesties article:nth-of-type(3n) {
    border: none !important;
}

.suggesties article>div:not(.c) {
    display: flex;
    justify-content: space-between;
    -ms-align-items: center;
    align-items: center;
    width: 100%;
    padding: 10px 0;
}

.suggesties article>div.c {
    margin-bottom: 20px;
    text-align: center;
    line-height: 140%;
    font-weight: 200;
    font-family: 'Nothing You Could Do', cursive;
    font-size: 18px;
}

.suggesties article>div>div {
    display: flex;
    justify-content: center;
    -ms-align-items: center;
    align-items: center;
}

.suggesties article h2 {
    font-weight: 700;
    font-size: 1.6em;
    margin-bottom: 15px;
    padding-bottom: 15px;
    width: 100%;
    font-family: 'Nothing You Could Do', cursive;
    text-align: center;
    background: url(https://www.andyhooke.co.uk/wp-content/uploads/2018/02/yellow-brushstroke.png);
    background-repeat: no-repeat;
    background-size: 45% 95%;
    background-position: center;
    padding: 8px 0;
    color: #000
}

.suggesties article h3 {
    width: 100%;
    line-height: 150%;
    font-family: 'Nothing You Could Do', cursive;
    font-size: 1.3em;
}

.suggesties article div.content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    -ms-align-items: center;
    align-items: center;
    width: 100%;
    padding: 10px 0;
    text-align: center;
}

.suggesties .krul {
    width: 50px;
    margin-top: 15px;
    margin-bottom: 15px;
}

.suggesties article div.content .info {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    -ms-align-items: center;
    width: 100%;
    line-height: 150%;
}

.suggesties article div.content .info h3 {
    font-weight: 700;
    font-size: 1.5em;
}

.suggesties article div.content .info p {
    font-weight: 200;
    font-size: 1em;
    text-align: center;
}

.suggesties i {
    position: absolute;
    top: 30px;
    right: 30px;
    color: #fff;
    z-index: 200;
    font-size: 20px;
}

.extra_info {
    width: 100%;
    letter-spacing: 1px;
    line-height: 150%;
    font-size: .9em;
    font-style: italic;
    color: #fff;
    background-color: #353535;
    padding: 10px 20px !important;
}

.prijs {
    margin-top: 10px;
    font-size: 1.1em;
}


/* EINDE SUGGESTIES */


/* SFEERBEELDEN */

.in_beeld {
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: flex-start;
    -ms-align-items: flex-start;
    align-items: flex-start;
    margin-bottom: 30px;
}

.in_beeld article {
    width: 24%;
    margin: .5%;
    cursor: pointer;
    overflow: hidden;
}

.in_beeld article .overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background-color: rgba(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 .3s;
    z-index: 2;
}

.in_beeld article:hover .overlay {
    opacity: 1;
}

.in_beeld article:hover img {
    transform: scale(1.1);
}

.in_beeld article img {
    width: 100%;
    transition: all .5s;
}


/* EINDE SFEERBEELDEN */


/* CONTACT */

.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 0 10px;
    margin-top: 100px;
}

.contact_info {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: #e0d8c3;
    padding: 80px 80px;
    margin-top: 20px;
    width: 100%;
}

.contact_info p {
    font-size: 20px;
    font-weight: 200;
    color: #252525;
}

.contact_gegevens {
    width: 35%;
}

.contact_gegevens h1 {
    font-weight: 900;
    color: #ae9a63;
    margin-bottom: 20px;
    font-size: 2em;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-end;
    -ms-align-items: flex-end;
}

.contact_gegevens h1 img {
    width: 22px;
    margin-right: 15px;
}

.contact_gegevens h2 {
    font-size: 18px;
    font-weight: 200;
    color: #353535;
    line-height: 150%;
}

.contact_gegevens p {
    padding-bottom: 10px;
}

.contact_split {
    margin-top: 60px;
    display: flex;
    justify-content: flex-start;
    -ms-align-items: center;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.contact_split h2 {
    font-weight: 700;
    color: #252525;
    font-size: 25px;
    margin-bottom: 25px;
    line-height: 130%;
}

.contact_split div {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    -ms-align-items: flex-start;
    align-items: flex-start;
    flex-direction: column;
}

.contact_split div p {
    padding: 10px;
    padding-left: 50px;
    position: relative;
    color: #252525;
}

.contact_split div p a {
    color: #252525;
}

.contact_split div p i {
    position: absolute;
    left: 0;
    width: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 50%;
    color: #ae9a63;
    transform: translateY(-50%);
}

.contact_split img {
    width: 200px;
    overflow: hidden;
    position: absolute;
    border-radius: 50%;
    top: -80px;
    right: -30px;
    border: 10px 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, #000 0), linear-gradient( 10deg, #ae9a63 100%, #000 60%), linear-gradient( 10deg, transparent 0, #000 0), linear-gradient( 60deg, transparent 0, #000 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;
}

.contact_formulier {
    width: 55%;
    margin-top: 70px;
}

.contact_form {
    display: flex;
    justify-content: space-between;
    -ms-align-items: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
}

.contact_label {
    width: 100%;
    font-size: 1.2em;
    font-weight: 200;
    color: #353535;
    display: inline-block;
    margin-bottom: 5px;
}

.contact_form input[type=text],
.contact_form input[type=email],
#NaamInput input {
    width: 100%;
    border: none;
    border-bottom: 2px solid #bebdbd;
    background-color: transparent;
    padding: 8px 0px;
    color: #ae9a63;
    font-size: 18px;
    font-weight: 200;
    margin-bottom: 40px;
    font-family: "Poppins", sans-serif;
    padding-left: 10px;
}

.contact_form input[type=text]::placeholder,
.contact_form input[type=email]::placeholder,
.contact_form textarea::placeholder {
    color: #4b4b4b;
}

.nieuwsbrief {
    margin-bottom: 120px;
}

.contact_form input[type=text]:focus,
.contact_form input[type=email]:focus,
#NaamInput input:focus {
    border-bottom: 2px solid #ae9a63;
    font-weight: 400;
}

.contact_form input[type=text]:focus::placeholder,
.contact_form input[type=email]:focus::placeholder,
#NaamInput input:focus::placeholder,
.contact_form textarea:focus::placeholder {
    color: #ae9a63;
}

.contact_form textarea {
    background-color: transparent;
    border: none;
    width: 100%;
    border-bottom: 2px solid #bebdbd;
    border-radius: 0px;
    padding: 10px 0px;
    color: #ae9a63;
    margin-bottom: 20px;
    font-weight: 200;
    font-size: 18px;
    font-family: "Poppins", sans-serif;
    height: 100px;
    padding-left: 10px;
}

.contact_form textarea:focus {
    border-bottom: 2px solid #ae9a63;
    font-weight: 400;
}

.contact_form select {
    width: 100%;
    color: #353535;
    padding: 10px;
    border: none;
    border-bottom: 2px solid #f6f6f6;
    background-color: #F4F4F4;
    height: 50px;
    font-size: .9em;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    background-image: url(/images/select2.png);
    background-size: contain;
    background-position: center right;
    background-repeat: no-repeat;
}

.contact_form input[type=submit] {
    border-radius: 4px;
    padding: 5px 30px;
    background: transparent;
    border: 2px solid #ae9a63;
    font-weight: 200;
    color: #ae9a63;
    font-size: 1.2em;
    font-weight: 200;
    font-family: "Poppins", sans-serif;
    transition: all .3s;
}

.contact_form input[type=submit]:hover {
    background-color: #ae9a63;
    color: #fff;
}

.contact_formulier #NaamInput {
    width: 100%;
}

.contact_formulier #EmailInput {
    width: 100%;
}

#dasmap {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    height: 600px;
    position: relative;
    z-index: 0;
    margin-top: -70px;
    margin-bottom: 80px;
}


/* EINDE CONTACT */


/* Photofeed */

.photofeed {
    width: 100%;
    margin: 0 auto;
    padding-top: 30px;
    height: 100%;
}

.photofeed h2 {
    position: relative;
    padding-bottom: 35px !important;
    margin-bottom: 50px !important;
}

.photofeed h2::after {
    content: "";
    position: absolute;
    border-top: 2px solid #ae9a6362;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 100px;
    height: 0px;
}

.photomix {
    margin-top: 20px;
    display: flex;
    justify-content: flex-start;
    -ms-align-items: center;
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
}

.photomix .photo,
.photomix .text {
    width: 25%;
    position: relative;
}

.photomix .photo::after,
.photomix .text::after {
    content: "";
    display: block;
    padding-bottom: 100%;
}

.photomix .photo img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.photomix .text {
    background-color: #6C4D2D;
    color: #fff;
    padding: 50px;
    position: relative;
}

.photomix .text.diff {
    background-color: #fff !important;
    color: #4b4b4b !important;
}

.photomix .text div {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    -ms-align-items: center;
    text-align: center;
}

.photomix .text div h3 {
    font-size: 1.5em;
    position: relative;
    padding-bottom: 25px;
}

.photomix .text div h3::after {
    content: "";
    position: absolute;
    border-top: 1px solid #fff;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 60px;
    height: 0;
}

.photomix .text.diff div h3::after {
    border-top: 1px solid #4b4b4b;
}

.photomix .text div p {
    padding-top: 30px;
    letter-spacing: 1px;
    line-height: 150%;
    font-size: 1.1em;
    color: #efefef;
    word-wrap: break-word;
}

.photomix .text.diff div p {
    color: #4b4b4b !important;
}

.photomix .photo video {
    width: 100%;
}

.photomix .photo .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;
}

.photofeed .photo:hover .overlay {
    opacity: 1;
}


/* Einde photofeed */


/* Footer */

.ticker {
    padding-top: 50px;
}

.footer_element {
    width: 30px;
    margin-left: 50%;
    transform: translateX(-50%);
}

.slogan,
.photofeed h2 {
    text-align: center;
    font-size: 4.5rem;
    font-weight: 600;
    color: #ae9a6362;
    padding: 40px 0;
    padding-bottom: 4rem;
    line-height: 120%;
    width: 80%;
    margin: auto;
}

.slogan strong {
    color: #ae9a63a9;
}

.disclaimer i {
    color: #4b4b4b;
    animation: pulse 4s infinite;
}

.navi_footer i {
    color: #4b4b4b;
    animation: respulse 4s infinite;
}

footer {
    width: 100%;
    background-color: #6C4D2D;
    padding: 30px 50px;
    padding-bottom: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

footer .gegevens {
    width: 100%;
    max-width: 50%;
    margin: auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    -ms-align-items: flex-start;
    padding-top: 30px;
    padding-bottom: 30px;
    border-bottom: .5px solid #e0d8c396;
}

footer .gegevens>div {
    display: inline-flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

footer .gegevens h2 {
    font-size: 1.4em;
    font-weight: 700;
    color: #e0d8c396;
    margin-bottom: 10px;
}

footer .gegevens a,
footer .gegevens p {
    font-size: 1em;
    font-weight: 200;
    color: #e0d8c396;
    line-height: 160%;
}

footer .gegevens a:hover,
.disclaimer a:hover {
    color: #e0d8c3b6;
}

.f-troeven {
    width: 100%;
    max-width: 90%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    -ms-align-items: flex-start;
    padding-top: 30px;
    color: #e0d8c3b6;
    position: relative;
    padding-bottom: 60px;
}

.f-troeven::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 50%;
    height: 0px;
}

.f-troeven>div {
    display: inline-flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    -ms-align-items: center;
    line-height: 160%;
}

.f-troeven img {
    width: 30px;
    margin: 0 10px;
}

.socials {
    padding-top: 30px;
    padding-bottom: 30px;
    display: flex;
    flex-direction: row;
}

.socials i {
    color: #000;
}

.socials a {
    color: #000;
    font-weight: 200;
    font-size: .9em;
    display: flex;
    justify-content: center;
    align-items: center;
    -ms-align-items: center;
    width: 30px;
    height: 30px;
    border-radius: 200px;
    background-color: #e0d8c396;
}

.socials a:first-of-type {
    margin-right: 15px;
}

.disclaimer {
    color: #e0d8c391;
    padding: 10px;
    padding-top: 0;
    font-weight: 200;
    font-size: .9em;
    display: flex;
    flex-direction: row;
}

.disclaimer span {
    margin: 0 10px;
}

.disclaimer a,
.disclaimer p {
    color: #e0d8c34b;
}

.disclaimer a:last-of-type,
.navi_footer a:last-of-type {
    display: inline-flex;
    flex-direction: row;
}


/* Einde footer */


/* Media Query's */

@media screen and (max-width: 1600px) {
    .suggesties .items {
        width: 50%;
    }
    .suggesties .extraf {
        width: 50%;
    }
}

@media screen and (max-width: 1400px) {
    .header-frame {
        width: 80%;
        left: 10%;
    }
    .troeven {
        padding: 50px 20px;
    }
    .troeven>div:first-of-type {
        max-width: 95%;
        margin: auto;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: flex-start;
        -ms-align-items: flex-start;
    }
    .troeven .troeven_content {
        padding: 10px;
    }
    .troeven .troeven_content h2 {
        font-size: 1.1em;
    }
    footer .gegevens {
        max-width: 70%;
    }
}

@media screen and (max-width: 1350px) {
    .suggesties {
        padding-top: 0;
    }
}

@media screen and (max-width: 1200px) {
    .header_content>div img {
        width: 400px;
    }
    .header_content>div h1 {
        font-size: 1.5em;
    }
    .home_ak .content {
        left: 0;
        transform: unset;
        transform: translateY(-50%);
        padding-left: 40px;
        padding-right: 40px;
    }
    .contact_pagina {
        padding: 25px 10px;
    }
    .contact_gegevens {
        margin-bottom: 20px;
        padding: 30px 10px;
    }
    .contact_gegevens h1 {
        justify-content: center;
    }
    .contact_gegevens,
    .contact_formulier {
        width: 100%;
        padding: 0 10px;
    }
    .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: 15px;
        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 {
        justify-content: center;
        -ms-align-items: center;
        align-items: center;
    }
    .photomix .text div h3 {
        font-size: 1.3em;
    }
    .photomix .text div p {
        font-size: 1em;
    }
    footer .gegevens {
        max-width: 80%;
    }
    .suggesties {
        flex-direction: column;
    }
    .page_header.page_sug {
        padding-bottom: 0 !important;
    }
    .suggesties .items {
        width: 100%;
    }
    .suggesties .extraf {
        width: 100%;
    }
}

@media screen and (max-width: 1150px) {
    .page_header .c {
        width: 80%;
        font-size: 20px;
    }
    .page_header>h2 {
        font-size: 1.3em;
    }
    .page_header h1 {
        font-size: 2.3em;
    }
    .blokken {
        margin-top: 0;
    }
    .blokken article {
        flex-direction: column;
    }
    .blokken_img {
        width: 95%;
        order: 1;
        margin: auto;
    }
    .blokken_content {
        width: 95%;
        order: 2;
        margin: auto;
    }
    .photomix .photo,
    .photomix .text {
        width: 33.333%;
    }
    .photomix div:nth-of-type(4),
    .photomix div:nth-of-type(8) {
        display: none;
    }
    .contact_split img {
        top: -10px;
    }
}

@media screen and (max-width: 1100px) {
    .card-header div {
        width: 70%;
    }
    .card-header {
        margin-bottom: 50px;
    }
    .troeven>div:first-of-type {
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .troeven>div:first-of-type article {
        width: 48%;
        margin: 0;
        margin-bottom: 60px;
    }
    .kaart,
    .suggesties {
        margin-bottom: 50px;
        margin-top: 30px;
    }
    .kaart article,
    .suggesties article {
        width: 100%;
        padding: 15px;
        margin-bottom: 30px;
        border: none !important;
    }
    .suggesties {
        max-width: 90%;
    }
    .slogan,
    .photofeed h2 {
        font-size: 4.2rem;
        padding: 6rem 1rem;
    }
    .suggesties {
        width: 99%;
        padding: 0;
    }
    .suggesties .items {
        flex-direction: column !important;
    }
    .suggesties .items article {
        width: 100%;
        padding: 60px 0;
        padding-bottom: 0px;
    }
}

@media screen and (max-width: 1050px) {
    .banner .c p {
        font-size: 1em;
    }
    .navitem a {
        font-size: 40px;
    }
    .closebtn {
        width: 50px;
        height: 50px;
    }
    .res-nav .res-logo {
        width: 180px;
    }
}

@media screen and (max-width: 1000px) {
    .home_ak .content h2 {
        font-size: 80px;
    }
    .slogan,
    .photofeed h2 {
        font-size: 3.5rem;
        padding: 6rem 2rem;
    }
    .contact_split img {
        width: 160px;
    }
}

@media screen and (max-width: 950px) {
    .photomix .photo,
    .photomix .text {
        width: 48%;
        margin: 1%;
    }
    .photomix .text div p {
        padding-top: 10px;
    }
    .photomix div:nth-of-type(3),
    .photomix div:nth-of-type(7) {
        display: none;
    }
    #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%;
    }
    footer .gegevens {
        max-width: 90%;
    }
    .logo {
        top: 45px;
    }
    .curtaindrop p {
        font-size: 1.2em;
        line-height: 1.4em;
    }
    .curtaindrop h2 {
        font-weight: 600;
        font-size: 1.8em;
    }
    .curtain-close {
        font-size: 30px;
    }
    .curtaindrop .button {
        font-size: 17px;
        padding: 12px 30px;
    }
    .curtain-click {
        width: 100%;
        background-color: #ae9a63;
        left: 0;
        top: 0;
        font-size: 16px;
        color: #000;
        justify-content: flex-start;
        padding-left: 15px;
    }
    .curtain-click i {
        font-size: 30px;
        animation: pulse3 4s infinite;
    }
    .logo {
        width: 180px;
    }
    .home_header {
        flex-direction: column;
    }
    .header_img {
        width: 100vw !important;
        height: 40vh !important;
        height: calc(1vh * 40) !important;
        z-index: 10;
    }
    .banner {
        order: 2;
    }
    .header-frame {
        display: none !important;
    }
    .header_content video {
        width: unset;
        min-height: 100%;
        overflow: hidden;
        position: absolute;
        top: unset;
        left: 0;
        right: 0;
        bottom: 0;
    }
    .header_content {
        width: 100vw !important;
        height: calc(1vh * 60) !important;
        padding: 20px;
        position: relative;
        order: 1;
        display: flex;
        flex-direction: column;
        border-bottom: 1px solid white;
    }
    .header_content>div:first-of-type {
        position: absolute;
        text-align: center;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    .header_content>div img {
        width: 250px;
    }
    .header_content>div h1 {
        font-size: 1.8em;
    }
    .header_content>div.splashscroll {
        display: none;
    }
    .splashscroll1 {
        display: block !important;
        bottom: 80px;
    }
    .splashscroll1 p,
    .splashscroll1 i {
        color: white;
    }
    .navigatie {
        top: 45px;
        right: 25px;
    }
    .navigatie a {
        padding: 10px 25px;
        margin-top: 0;
    }
}

@media screen and (max-width: 920px) {
    .menubtn {
        font-size: 2.5em;
    }
    .disclaimer {
        padding-left: 0;
        margin-top: 10px;
    }
}

@media screen and (max-width: 900px) {
    .header_content>div img {
        width: 300px;
    }
    .contact_split img {
        top: -10px;
    }
}

@media screen and (max-width: 850px) {
    .card-header div {
        width: 80%;
    }
    .suggesties {
        max-width: 100%;
    }
    .slogan,
    .photofeed h2 {
        font-size: 3.1rem;
        padding: 6rem 2rem;
    }
    .photoside div h3 {
        font-size: 1.1em;
    }
    .photoside div img {
        margin: 20px 0;
        width: 20px;
    }
    .photoside {
        padding: 30px;
    }
}

@media screen and (max-width: 800px) {
    .res-nav {
        max-width: 100vw;
        right: -100vw;
    }
    .menu-is-open {
        right: 0;
    }
    .page_header.home {
        padding-top: 60px;
    }
    .kaart {
        flex-direction: column;
        flex-wrap: unset;
    }
    .kaart .card-img {
        width: 95%;
        margin: auto;
        order: 2;
    }
    .kaart .card-content {
        width: 95%;
        margin: auto;
    }
    .kaart .card-content:nth-of-type(even) {
        order: 1;
    }
    .kaart .card-content:nth-of-type(odd) {
        order: 2;
    }
    .suggesties article {
        margin-bottom: 0;
    }
    .home_ak .ak-links {
        font-size: 18px;
    }
    .home_ak .ak-links a::after {
        width: 30px;
    }
    .slogan,
    .photofeed h2 {
        font-size: 2.8rem;
        padding: 4rem 1rem;
    }
}

@media screen and (max-width: 750px) {
    .card-header div {
        width: 90%;
    }
    .page_header h1 {
        font-size: 2em;
    }
    .page_header>h2 {
        font-size: 1.1em;
    }
    .page_header .c {
        font-size: 18px;
        width: 90%;
    }
    .blokken_content {
        padding: 50px 20px;
    }
    .filter p {
        font-size: 1.1em;
    }
    .filter p i {
        font-size: 13px;
    }
    .f-troeven {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        -ms-align-items: center;
    }
    .f-troeven img {
        margin: 10px 0;
    }
    .f-troeven>div {
        text-align: center;
    }
}

@media screen and (max-width: 700px) {
    .header_content>div img {
        width: 250px;
    }
    .home_ak .content h2 {
        font-size: 60px;
    }
    .in_beeld article {
        width: 49%;
    }
    .slogan,
    .photofeed h2 {
        padding: 1rem;
        padding-bottom: 3rem;
    }
    footer .gegevens {
        max-width: 95%;
    }
    .suggesties {
        margin-bottom: 0;
    }
}

@media screen and (max-width: 650px) {
    .photofeed h2 {
        padding-bottom: 20px !important;
    }
    .photofeed h2::after {
        width: 50px;
        border: 1px solid #ae9a6362;
    }
    .suggesties {
        margin-top: 20px;
    }
    .suggesties img.flame {
        display: none;
    }
    .suggesties .items {
        width: 100%;
    }
    .suggesties article div.content .info h3 {
        font-weight: 700;
        font-size: 1.2em;
    }
    .suggesties article div.content .info p {
        font-weight: 200;
        font-size: .9em;
        text-align: center;
    }
    .suggesties .items article {
        padding-bottom: 30px;
    }
    .suggesties .extraf .img div {
        bottom: 10px;
        left: 10px;
        padding: 7px 20px;
        font-size: 16px;
    }
    .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;
    }
    .photoside {
        display: none;
    }
    .photomix {
        width: 100%;
    }
    #content-container h1 {
        font-size: 2.1em;
    }
    #content-container h2 {
        font-size: 1.5em;
    }
    .slogan,
    .photofeed h2 {
        font-size: 2rem;
        padding: 30px 10px 50px 10px;
    }
    footer .gegevens {
        flex-direction: column;
        align-items: center;
        -ms-align-items: center;
    }
    footer .gegevens>div {
        justify-content: center;
        align-items: center;
        -ms-align-items: center;
        margin-bottom: 30px;
    }
    .filter {
        display: none;
    }
    .kaart {
        margin-bottom: 60px;
    }
    .card-header div {
        margin-top: 0;
    }
    .card-title {
        display: flex !important;
        flex-direction: row;
        align-items: center;
        -ms-align-items: center;
        justify-content: space-between;
        width: 95%;
        margin: auto;
        margin-bottom: 15px;
        padding: 15px;
        background-color: #ae9a6362;
        color: white;
        border-bottom-left-radius: 20px;
    }
    .card-title span i {
        text-align: center;
        width: 15px;
        margin-right: 15px;
    }
    .card-title i.fa-angle-down {
        float: right;
        transition: all 1s ease;
    }
    .arrowUp i.fa-angle-down {
        transform: rotate(180deg);
    }
    .kaart {
        margin-bottom: 60px;
    }
    .suggesties .items {
        padding: 0 30px;
    }
    .suggesties article h2 {
        font-size: 1.3em;
    }
    .suggesties .items article:not(:first-of-type) {
        padding-top: 30px;
    }
}

@media screen and (max-width: 600px) {
    .kaart article {
        font-size: .8em;
    }
    .logo {
        width: 160px;
    }
    .page_header:not(.page_header.home) {
        margin-top: 50px;
        padding-bottom: 0;
    }
    .menubtn {
        font-size: 2em;
    }
    .navigatie a {
        font-size: .9em;
        padding: 10px 15px;
    }
    .page_header h1 {
        font-size: 1.7em;
    }
    .page_header .c {
        font-size: 18px;
        width: 95%;
    }
    .troeven>div:first-of-type article {
        width: 100%;
    }
    .slogan,
    .photofeed h2 {
        font-size: 1.7rem;
    }
    .disclaimer,
    .socials a {
        font-size: .8em;
    }
    .disclaimer span {
        margin: 0 1px;
    }
    .photomix .text div h3 {
        font-size: 1.1em;
    }
    .photomix .text div h3::after {
        width: 30px;
    }
    .photomix .text div p {
        font-size: .9em;
    }
}

@media screen and (max-width: 550px) {
    .contact_split img {
        border: 7px solid transparent;
    }
    .curtain-click {
        justify-content: flex-start;
        padding-left: 15px;
    }
    .splashscroll2 {
        position: absolute;
        z-index: 3;
        bottom: 50px;
        left: 50%;
        transform: translateX(-50%);
        cursor: pointer;
        text-align: center;
    }
    .splashscroll2 {
        display: block !important;
    }
    .splashscroll2 p {
        margin-bottom: 10px;
        transition: all 1s ease;
        color: #e0d8c36e;
        font-size: 28px;
    }
    .splashscroll2 i {
        font-size: 30px;
        color: #e0d8c36e;
    }
    .banner {
        display: none !important;
    }
    .home_header {
        min-height: 100vh;
        min-height: -webkit-fill-available;
    }
    .header_content {
        width: 100% !important;
        height: 100% !important;
        border: none;
    }
    .header_content>div h1 {
        font-size: 1.3em;
    }
    .header_content>div h2 {
        font-size: 2em;
    }
    .navitem a {
        font-size: 30px;
    }
    .closebtn {
        width: 40px;
        height: 40px;
    }
    .res-nav .res-logo {
        width: 150px;
    }
    .blokken_content h2 {
        font-size: 1.5em;
    }
    .privcnt {
        flex-wrap: wrap;
        height: initial !important;
        line-height: 120%;
    }
    .contact_form input[type=submit] {
        font-size: 1em;
        padding: 4px 25px;
    }
    .suggesties .krul {
        width: 30px;
    }
    .suggesties article div.content .info h3 {
        font-size: 1.05em;
    }
}

@media screen and (max-width: 500px) {
    .header_content>div h1 {
        font-size: 1.3em;
    }
    .contact_split img {
        top: 0px;
        width: 120px;
    }
    header {
        background-color: #000;
    }
    #content-container h1 {
        font-size: 1.8em;
    }
    .home_ak .content h2 {
        font-size: 50px;
    }
    .home_ak .ak-links {
        font-size: 16px;
    }
    .page_header:not(.page_header.home) {
        margin-top: 50px;
    }
    .disclaimer {
        display: flex;
        flex-direction: column;
        align-items: center;
        -ms-align-items: center;
        line-height: 160%;
    }
    .socials {
        padding-bottom: 10px;
    }
    .disclaimer a:last-of-type {
        display: flex;
        align-items: center;
        -ms-align-items: center;
    }
    .disclaimer span {
        display: none;
    }
    .photomix .text div h3 {
        font-size: 1em;
        padding-bottom: 20px;
    }
    .photomix .text div p {
        width: 100%;
        overflow: hidden;
        padding-top: 5px;
    }
}

@media screen and (max-width: 450px) {
    .logo {
        width: 140px;
    }
    .plenso_cookies {
        right: 10px;
    }
    .home_ak .ak-links {
        flex-direction: column;
        padding: 0;
        padding-left: 15px;
        bottom: 0px;
    }
    .home_ak .ak-links a::after {
        width: 0;
    }
    .navi_footer span {
        margin: 0 5px;
    }
}

@media screen and (max-width: 400px) {
    .contact_gegevens h2 {
        font-size: 15px;
    }
    .contact_split div {
        justify-content: flex-start;
        align-items: flex-start;
        text-align: center;
    }
    .contact_split div p {
        font-size: 15px;
        padding-left: 30px;
    }
    .contact_form input[type=text],
    .contact_form input[type=email],
    .contact_form textarea,
    #NaamInput input {
        font-size: 16px;
        margin-bottom: 20px;
    }
    .privcnt {
        flex-wrap: wrap;
        height: initial !important;
        line-height: 120%;
    }
    .contact_form input[type=submit] {
        width: 100%;
        margin-top: 10px;
    }
    .navi_footer a {
        font-size: .8em;
    }
}