@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: 'Playfair Display', serif;
}


/* 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 pulse {
    0% {
        color: #4C4C4C;
    }
    5% {
        color: #8bcf97
    }
    10% {
        color: #4C4C4C;
    }
    20% {
        color: #8bcf97
    }
    21% {
        color: #4C4C4C;
    }
    50% {
        color: #4C4C4C;
    }
    100% {
        color: #4C4C4C;
    }
}

@keyframes pulse2 {
    0% {
        color: #e0d8c36e;
    }
    5% {
        color: #4C4C4C
    }
    10% {
        color: #e0d8c36e;
    }
    20% {
        color: #4C4C4C
    }
    21% {
        color: #e0d8c36e;
    }
    50% {
        color: #e0d8c36e;
    }
    100% {
        color: #e0d8c36e;
    }
}

@keyframes pulse3 {
    0% {
        color: #e0d8c36e;
    }
    5% {
        color: #4C4C4C
    }
    10% {
        color: #e0d8c36e;
    }
    20% {
        color: #4C4C4C
    }
    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: #4C4C4C;
    margin-bottom: 20px;
}

.bevestiging h2 {
    text-transform: uppercase;
    color: #4C4C4C;
    font-size: 15px;
    margin: 10px 0;
}

.bevestiging h1 {
    font-weight: 400;
    font-size: 2em;
    text-align: center;
    color: #4C4C4C;
    margin-bottom: 10px;
}

.bevestiging p {
    line-height: 150%;
    color: #4C4C4C;
    font-size: 17px;
    font-weight: 200;
}

.bevestiging a {
    cursor: pointer;
    display: inline-block;
    padding: 13px 30px;
    background-color: #4C4C4C;
    font-weight: 200;
    color: white;
    margin-top: 20px;
    border: 1px solid #4C4C4C;
    transition: all 1s ease;
}

.bevestiging a:hover {
    background-color: transparent;
    color: #4C4C4C;
}


/* Einde Bevestiging*/


/* Cookie Melding */

.plenso_cookies {
    position: fixed;
    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: #4C4C4C;
    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: #4C4C4C;
    margin-bottom: 20px;
    margin-top: 150px;
}

#content-container h2 {
    color: #4C4C4C;
    font-size: 2.4em;
    font-weight: bold;
    margin-bottom: 1em;
    margin-top: 1em;
    cursor: pointer;
    padding-left: 15px;
}

#content-container h3 {
    background: #4C4C4C;
    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: #4C4C4C;
    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;
}

.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: 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: #b0d49b;
    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 DESKTOP */


/* Navigatie */

.topper {
    position: absolute;
    top: 0;
    right: 2.5%;
    background-color: #6089b97c;
    color: #4C4C4C;
    padding: 10px 20px 10px 50px;
    border-bottom-left-radius: 20px;
}

.topper a.contact-us {
    color: #4C4C4C;
}

.topper a.contact-us i {
    margin-right: 10px;
}

.topper span {
    margin: 0 10px;
}

.curtain-click {
    display: none;
}

.navigatie {
    width: 90%;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    -ms-align-items: center;
    align-items: center;
    padding: 50px 10px 20px 10px;
    z-index: 2;
    text-align: center;
}

.navigatie h1 {
    color: #000;
    font-size: 35px;
    margin-bottom: 20px;
    font-weight: 500;
}

.navigatie nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
}

.navigatie nav ul li {
    padding: 10px 20px;
}

.navigatie nav a {
    color: #252525;
    font-size: 18px;
    padding: 8px 0;
    border-bottom: 1px solid transparent;
    position: relative;
}

.navigatie nav a,
.navigatie nav a:after,
.navigatie nav a:before {
    transition: all .5s;
}

.navigatie nav a:after {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 0%;
    content: '.';
    color: transparent;
    background: #4C4C4C;
    height: 1px;
}

.navigatie nav a:hover:after {
    width: 100%;
}

.navigatie nav a:hover {
    color: #4C4C4C;
}

.navigatie nav .active a:after {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
    content: '.';
    color: transparent;
    background: #4C4C4C;
    height: 1px;
}

.navigatie nav .active a {
    color: #4C4C4C;
}

.logo {
    width: 60px;
    margin-left: 10px;
}


/* EINDE NAVIGATIE DESKTOP */


/* RESPONSIVE NAVIGATIE */

.menubtn {
    width: 50px;
    height: 50px;
    font-size: 30px;
    cursor: pointer;
    display: none !important;
    transition: all .3s;
    background-color: #4c4c4c;
    color: white;
    border-radius: 200px;
    justify-content: center;
    align-items: center;
    -ms-align-items: center;
}

.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: 50vw;
    height: 100%;
    position: fixed;
    right: -50vw;
    top: 0;
    z-index: 1000;
    overflow: auto;
    transition: all .6s;
    background-color: #fff;
    padding-bottom: 100px;
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: 60%;
}

.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;
}

.navitem a,
.navitem a:after,
.navitem a:before {
    transition: all .5s;
}

.navitem a:hover {
    color: #4C4C4C;
}

.navitem a:after {
    position: absolute;
    bottom: -5px;
    left: 2px;
    right: 2px;
    margin: auto;
    width: 0%;
    content: '.';
    color: transparent;
    background: #4C4C4C;
    height: 2px;
}

.navitem a:hover:after {
    width: 100%;
}

.navitem i {
    font-size: 25px;
    transition: all .3s;
}

.navitem .rotate {
    transform: rotate(90deg);
}

.activelink {
    color: #4C4C4C !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 RESPONSIVE 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);
}

.home_banner {
    width: 90%;
    margin: auto;
}

.home_banner .slick-arrow {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 40px;
    height: 40px;
    padding: 0;
    background-color: transparent;
    border-radius: 200px;
    color: white;
    display: flex;
    justify-content: center;
    -ms-align-items: center;
    align-items: center;
    font-size: 20px;
    border: none;
}

.home_banner .slick-next {
    right: 10px;
    left: initial;
}

.home_banner article {
    position: relative;
}

.home_banner article img {
    width: 100%;
}

.bigimage {
    display: block !important;
}

.medimage,
.smaimage {
    display: none !important;
}

.home_banner article>div {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: calc(100% - 140px);
    max-width: 1600px;
    display: flex;
    justify-content: flex-start;
    -ms-align-items: flex-start;
    align-items: flex-start;
}

.home_banner article>div div {
    max-width: 800px;
}

.home_banner article h2 {
    font-weight: 700;
    line-height: 150%;
    font-size: 3.1em;
    color: white;
    text-shadow: 0px 0px 11px #000000;
}

.home_banner article h3 {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.2em;
    margin-bottom: 10px;
    color: white;
    text-shadow: 0px 0px 11px #000000;
}

.home_banner article a {
    border-radius: 4px;
    margin-top: 20px;
    color: #CDA03A;
    font-size: 20px;
    padding: 12px 30px;
    background-color: #f9f1df;
    display: inline-block;
    transition: all .3s;
}

.home_banner article a:hover {
    background-color: #CDA03A;
    color: #fff;
}


/* Powertekst */

.page_header {
    padding: 60px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    -ms-align-items: center;
}

.page_header_element {
    width: 30px;
    padding-bottom: 20px;
}

.page_header i {
    font-size: 25px;
    margin-bottom: 15px;
    color: #4C4C4C;
}

.page_header img {
    width: 40px;
    margin: 15px 0;
}

.page_header h1 {
    color: #4C4C4C;
    font-size: 2.7em;
    font-weight: bold;
    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.2em;
}

.page_header .c {
    line-height: 150%;
    font-weight: 200;
    font-size: 22px;
    color: #4C4C4C;
    width: 60%;
    margin: auto;
    text-align: center;
}


/* Trending */

.trending {
    padding: 30px 10px;
    display: flex;
    justify-content: center;
    -ms-align-items: center;
    align-items: center;
    margin-top: 30px;
    width: 100%;
    background-color: #c9a9a913;
}

.trending .slick-dots,
.andere_todo_slider .slick-dots {
    display: flex;
    justify-content: center;
    -ms-align-items: center;
    align-items: center;
    width: 100%;
    padding: 20px 10px;
    flex-wrap: wrap;
}

.trending .slick-dots .slick-active,
.andere_todo_slider .slick-dots .slick-active {
    background-color: #353535;
}

.trending .slick-dots li,
.andere_todo_slider .slick-dots li {
    width: 10px;
    height: 10px;
    background-color: #c9c9c9;
    margin: 0 5px;
    border-radius: 200px;
    cursor: pointer;
}

.trending .slick-dots li button,
.andere_todo_slider .slick-dots li button {
    display: none;
}

.trending_slider {
    width: 100%;
    max-width: 80%;
}

.trending article {
    padding: 0;
    overflow: hidden;
    position: relative;
}

.trending article a {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    z-index: 2;
}

.trending article>div {
    position: relative;
}

.trending article>div img {
    width: 100%;
    transition: all 1s ease;
}

.trending article:hover>div img {
    transform: scale(1.1);
}

.trending_content {
    position: absolute;
    bottom: 0;
    display: flex;
    justify-content: space-between;
    -ms-align-items: center;
    align-items: center;
    flex-direction: row;
    width: 100%;
    z-index: 3;
    padding: 15px;
}

.trending_content div:first-of-type {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    -ms-align-items: flex-start;
    width: 90%;
}

.trending_content div:nth-of-type(2) {
    width: 10%;
    text-align: center;
}

.trending_content div:nth-of-type(2) i {
    color: #fff;
    font-size: 30px;
}

.trending_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;
}

.trending article h2 {
    font-size: 2em;
    font-weight: 700;
    color: white;
    text-shadow: 0px 0px 12px rgba(0, 0, 0, 0.17);
    text-align: left;
    margin-top: 5px;
    width: 100%;
}

.trending article h3 {
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    text-align: left;
    text-transform: uppercase;
    text-shadow: 0px 0px 12px rgba(0, 0, 0, 0.17);
    width: 100%;
}


/* Einde Trending */


/* Blokken */

.blokken {
    display: flex;
    justify-content: center;
    -ms-align-items: flex-start;
    align-items: flex-start;
    flex-direction: column;
    margin: 0 auto;
    width: 90%;
    margin-top: 50px;
}

.blokken article {
    display: flex;
    justify-content: space-between;
    -ms-align-items: center;
    align-items: center;
    flex-direction: row;
    width: 100%;
    margin-bottom: 30px;
}

.blokken_img {
    width: 45%;
}

.blokken_img img {
    width: 100%;
}

.blokken_content {
    width: 55%;
    padding: 80px;
    text-align: center;
}

.blokken_content h2 {
    font-weight: 500;
    font-size: 1.8em;
    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.2em;
}

.blokken_content a {
    display: block;
    margin-top: 20px;
    color: #000;
    letter-spacing: 1px;
    transition: all 1s ease;
    font-size: 1.1em;
    font-weight: 500;
}

.blokken_content a:hover {
    transform: scale(1.1);
}


/* Historiek */

.timelineholder {
    margin-top: 50px;
    position: relative;
    overflow: hidden;
}

.timelineholder::after {
    content: '';
    position: absolute;
    width: 10px;
    background-color: #dbdada;
    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;
}

.timelineoverlay {
    background-color: #4C4C4C;
    border-radius: 10px;
}

.timeline {
    position: relative;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding-bottom: 50px;
    margin-bottom: 50px;
}

.timeline h2 {
    color: #353535;
    font-weight: 700;
    font-size: 1.8em;
    margin-bottom: 20px;
}

.timeline p {
    line-height: 150%;
    color: #a3a3a3;
    font-weight: 200;
    font-size: 22px;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 10px;
    background-color: #a3a3a3;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 100px;
}

.timeline_quote {
    width: 100%;
    color: #4C4C4C;
    position: relative;
    padding: 45px;
    background-color: #F9F1DF;
    border-radius: 20px;
}

.timeline_quote i:first-of-type {
    color: #4C4C4C;
    position: absolute;
    left: 15px;
    top: 15px;
    font-size: 25px;
    opacity: .5;
}

.timeline_quote i:last-of-type {
    position: absolute;
    right: 15px;
    bottom: 15px;
    font-size: 25px;
    color: #a3a3a3;
    opacity: .5;
}

.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_container::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    left: 50%;
    background-color: #4C4C4C;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 1;
}

.timeline_item_content {
    padding: 20px 0;
    background-color: white;
    position: relative;
    border-radius: 6px;
    width: 45%;
}

.left_time {
    margin-right: 5%;
}

.right_time {
    margin-left: 5%;
}

.imageleft {
    margin-left: 5%;
}

.imageright {
    margin-right: 5%;
}

.timeline_other_content {
    width: 45%;
}

.timeline_other_content img {
    width: 100%;
}

.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: #000;
    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);
}

.conclusie h2 {
    text-align: center;
    color: #fff;
    font-size: 1.8em;
    margin-bottom: 30px;
    margin-top: 10px;
}

.left_time h2 {
    text-align: right;
}

.left_time p {
    text-align: right;
}

.conclusie p {
    text-align: center;
    color: #fff;
    line-height: 150%;
}


/* Einde historiek*/


/* Parallax */

.home_ak {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.videoContainer {
    position: relative;
    max-width: 100vw;
    max-height: 80vh;
    background-attachment: scroll;
    overflow: hidden;
}

.videoContainer video {
    min-width: 100%;
    max-width: 100%;
    min-height: 100%;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
}

.videoContainer .overlay {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 2;
    background: #000;
    opacity: 0.6;
}


/* 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 */


/* Wat te doen */

.select2 {
    position: relative;
    width: 50%;
    margin: 0 auto;
}

.todo_overzicht {
    max-width: 1400px;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    -ms-align-items: flex-start;
    align-items: flex-start;
    margin: 0 auto;
    flex-wrap: wrap;
    padding: 0;
    margin-bottom: 20px;
}

.todo_overzicht article {
    width: 33.33%;
    padding: 15px;
}

.reference {
    position: absolute;
    right: 10px;
    top: 10px;
    width: 30px !important;
}

.todo_overzicht article>div {
    width: 100%;
    position: relative;
    transition: .3s;
    -webkit-box-shadow: 0px 0px 22px 0px rgba(82, 82, 82, 0.15);
    -moz-box-shadow: 0px 0px 22px 0px rgba(82, 82, 82, 0.15);
    box-shadow: 0px 0px 22px 0px rgba(82, 82, 82, 0.15);
}

.todo_overzicht article>div:hover {
    transform: scale(1.05);
}

.todo_overzicht article img {
    width: 100%;
}

.todo_overzicht article a {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
}

.todo_overzicht_content {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    -ms-align-items: center;
    align-items: center;
}

.todo_overzicht_content i {
    font-size: 1.2em;
    color: #4C4C4C;
}

.todo_overzicht_content h2 {
    color: #4C4C4C;
    font-weight: 700;
    font-size: 1.2em;
}

.todo_overzicht_content h3 {
    color: #4c4c4c;
    font-weight: 200;
    font-size: .9em;
    margin-bottom: 2px;
}

.todo_filter {
    width: 100%;
    max-width: 1400px;
    padding: 15px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    -ms-align-items: center;
    align-items: center;
}

.todo_filter select {
    width: 33.33%;
    margin: 5px;
    background-color: #f6f6f6;
    padding: 15px;
    height: 50px;
    border: none;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: #333332;
    font-size: .9em;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center right;
    background-image: url(/images/select.png);
}

.todo_size_switch {
    height: 50px;
    display: flex;
    justify-content: center;
    -ms-align-items: center;
    align-items: center;
    padding-left: 10px;
}

.todo_size_switch>div {
    height: 100%;
    min-width: 50px;
    margin: 5px;
    font-size: 1.2em;
    text-transform: uppercase;
    font-weight: 700;
    color: #a2a2a2;
    cursor: pointer;
    background-color: #f6f6f6;
    display: flex;
    justify-content: center;
    -ms-align-items: center;
    align-items: center;
}

.todo_size_switch>div img {
    width: 20px;
    filter: grayscale(100%);
}

.todo_size_switch .active img {
    filter: grayscale(0);
}

.todo_size_switch .active {
    color: #E94E1B;
}

.realisatie_detail_page {
    width: 100%;
    max-width: 85%;
    margin: 0 auto;
    position: relative;
}

.realisatie_detail_page article {
    width: 100%;
}

.realisatie_map,
.realisatie_video {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    z-index: 2;
    display: none;
}

.realisatie_video>div {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    -ms-align-items: center;
    align-items: center;
}

.realisatie_video iframe {
    height: 100%;
    width: 65%;
}

.realisatie_video>div h2 {
    font-size: .9em;
    padding: 8px 15px;
    background-color: #4C4C4C;
    color: white;
    font-weight: 700;
    margin-bottom: 10px;
    border-radius: 200px;
}

.realisatie_video>div h1 {
    font-size: 2.5em;
    font-weight: 700;
    color: white;
    text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.83);
}

.realisatie_video>div>div {
    height: 100%;
    width: 35%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    -ms-align-items: flex-start;
    align-items: flex-start;
    padding: 15px;
    border-right: 10px solid white;
}

#realisatie_map {
    width: 100%;
    height: 100%;
}

.realisatie_detail_content {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    display: flex;
    justify-content: center;
    -ms-align-items: flex-start;
    align-items: flex-start;
    flex-direction: column;
    padding: 0 100px;
}

.realisatie_detail_page>img {
    width: 100%;
}

.respimage {
    display: none;
}

.realisatie_detail_content h1 {
    font-size: 2.9em;
    font-weight: 700;
    color: white;
    text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.83);
    font-family: 'Playfair Display', serif;
}

.realisatie_detail_content h2 {
    font-size: .9em;
    padding: 8px 15px;
    background-color: #FCB205;
    color: #000;
    font-weight: 700;
    margin-bottom: 10px;
    border-radius: 200px;
    font-family: 'Playfair Display', serif;
}

.realisatie_detail_content span {
    margin: 0 10px;
}

.realisatie_detail_content h2 i {
    margin-right: 5px;
}

.realisatie_controls {
    max-width: 85%;
    width: 100%;
    margin: 15px auto;
    display: flex;
    justify-content: space-between;
    -ms-align-items: center;
    align-items: center;
    border: 2px solid #EFEFEF;
    padding: 10px 0;
}

.realisatie_controls .control a {
    font-weight: 700;
    color: #000000;
    margin: 10px 0;
    padding: 0 25px;
    border-right: 2px solid #EFEFEF;
    display: flex;
    justify-content: center;
    -ms-align-items: center;
    align-items: center;
    cursor: pointer;
    transition: all .3s;
}

.realisatie_controls .control .active {
    color: #4C4C4C !important;
}

.realisatie_controls .control a:hover {
    transform: scale(1.1);
}

.realisatie_controls a i {
    margin-right: 15px;
    font-size: 1.3em;
}

.realisatie_controls .control {
    display: flex;
    justify-content: center;
    -ms-align-items: center;
    align-items: center;
}

.realisatie_controls .control a:last-child {
    border-right: none;
}

.realisatie_controls .social a {
    font-size: 1.1em;
    color: black;
    margin: 0 10px;
    cursor: pointer;
}

.realisatie_content {
    width: 100%;
    max-width: 85%;
    margin: 0 auto;
    padding: 0 15px;
    padding-bottom: 10px;
    display: flex;
    justify-content: space-between;
    -ms-align-items: flex-start;
    align-items: flex-start;
}

.realisatie_content>div {
    width: 100%;
}

.realisatie_content aside {
    width: 450px;
    border: 2px solid #EFEFEF;
    margin-left: 50px;
    padding: 0;
}

.realisatie_content aside h2 {
    font-size: 1.4em;
    color: #4C4C4C;
    font-weight: 700;
    margin-bottom: 10px;
}

.realisatie_content aside p {
    color: #777777;
    line-height: 180%;
    font-size: 1.1em;
}

.realisatie_content aside div {
    border-bottom: 2px dashed #EFEFEF;
    padding: 20px;
    padding-bottom: 10px;
}

.realisatie_content aside div:last-of-type {
    margin-bottom: 0;
}

.realisatie_content aside a.cont {
    border: none;
    margin-bottom: 0;
    padding-bottom: 0;
    background-color: #4C4C4C;
    border: 2px solid #4C4C4C;
    color: white;
    height: 100%;
    width: 100%;
    display: inline-flex;
    justify-content: center;
    color: white;
    padding: 20px;
    transition: all 0.8s ease;
}

.realisatie_content aside a.cont:hover {
    background-color: transparent;
    color: #4C4C4C;
}

.breadcrum {
    font-weight: 700;
    color: #4C4C4C;
    font-size: .9em;
    width: 85%;
    margin: auto;
    padding-bottom: 15px;
}

.breadcrum a {
    color: #4c4c4c56;
}

.breadcrum a strong {
    color: #4c4c4ca1;
    font-weight: 800;
}

.realisatie_tekst {
    line-height: 200%;
    font-size: 1.2em;
    color: #777777;
}

.realisatie_images {
    display: flex;
    justify-content: flex-start;
    -ms-align-items: flex-start;
    align-items: flex-start;
    padding: 15px 0;
    flex-wrap: wrap;
}

.realisatie_images article {
    width: 31.33%;
    margin-right: 2%;
    margin-bottom: 2%;
    position: relative;
}

.realisatie_images article div {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background-color: rgba(0, 0, 0, .6);
    display: flex;
    justify-content: center;
    -ms-align-items: center;
    align-items: center;
    font-size: 2em;
    color: white;
    transition: all .3s;
    opacity: 0;
    cursor: pointer;
}

.realisatie_images article:hover div {
    opacity: 1;
}

.realisatie_images article img {
    width: 100%;
}

.pswp__bg {
    background-color: white !important;
}

.pswp__top-bar,
.pswp__caption {
    background-color: white !important;
}

.pswp__top-bar *,
.pswp__caption * {
    color: white !important;
    background-color: black !important;
}

.andere_realisaties {
    width: 100%;
    padding: 80px 10px;
    margin-bottom: 50px;
    background-color: #EFEFEF;
}

.andere_todo {
    width: 100%;
    padding: 40px 10px;
    margin-bottom: 50px;
    background-color: #EFEFEF;
    margin-top: 50px;
}

.andere_realisaties>div {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-start;
    -ms-align-items: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
}

.andere_todo>div {
    width: 100%;
    max-width: 85%;
    margin: auto;
}

.andere_realisaties>div>h2,
.andere_todo>div>h2 {
    font-weight: 700;
    font-size: 1.5em;
    color: #262626;
    width: 100%;
    margin-bottom: 20px;
}

.andere_realisaties>div article {
    width: 31.83%;
    margin-right: 2%;
    position: relative;
    transition: all .3s;
}

.andere_todo>div article {
    transition: all .3s;
    position: relative;
}

.andere_realisaties>div article:hover {
    transform: scale(1.05);
}

.andere_todo>div article:hover {
    transform: scale(1.05);
}

.andere_realisaties>div article a,
.andere_todo>div article a {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

.andere_realisaties>div article img,
.andere_todo>div article img {
    width: 100%;
}

.andere_realisaties>div article:last-of-type,
{
    margin-right: 0;
}

.andere_realisaties .todo_overzicht_content,
.andere_todo .todo_overzicht_content {
    background-color: white;
}

.spinnerbox {
    width: 100%;
    display: flex;
    justify-content: center;
    -ms-align-items: center;
    align-items: center;
    padding: 20px;
}

.spinnerbox img {
    width: 100px;
}

.noprods {
    width: 100%;
    text-align: center;
    font-weight: 700;
    padding: 20px 0;
}

.vidoverlay {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    z-index: 101;
    background-color: rgba(0, 0, 0, 0.884);
}

.closevid {
    display: none;
    position: fixed;
    top: 60px;
    right: 60px;
    z-index: 105;
    width: 40px;
    cursor: pointer;
}

#vid,
#vidref {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
    width: 70%;
    height: 670px;
}


/* einde wat te doen */


/* 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;
    margin-bottom: 100px;
}

.contact_info {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: #e4ecf5;
    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: #4C4C4C;
    margin-bottom: 20px;
    font-size: 2em;
}

.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: #4C4C4C;
    transform: translateY(-50%);
}

.contact_split img {
    width: 100px;
    border-radius: 200px;
    margin-right: 20px;
}

.contact_formulier {
    width: 55%;
}

.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 #EEEEEE;
    padding: 8px 0px;
    color: #4C4C4C;
    font-size: 18px;
    font-weight: 200;
    margin-bottom: 40px;
    font-family: "Playfair Display", sans-serif;
}

.nieuwsbrief {
    margin-bottom: 120px;
}

.contact_form input[type=text]:focus,
.contact_form input[type=email]:focus,
#NaamInput input:focus {
    border-bottom: 2px solid #4C4C4C;
    font-weight: 400;
}

.contact_form textarea {
    border: none;
    width: 100%;
    border-bottom: 2px solid #EEEEEE;
    border-radius: 0px;
    padding: 10px 0px;
    color: #4C4C4C;
    margin-bottom: 20px;
    font-weight: 200;
    font-size: 18px;
    font-family: "Playfair Display", sans-serif;
    height: 100px;
}

.contact_form textarea:focus {
    border-bottom: 2px solid #4C4C4C;
    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: 'Playfair Display', 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 #4C4C4C;
    font-weight: 200;
    color: #4C4C4C;
    font-size: 1.2em;
    font-weight: 200;
    font-family: "Playfair Display", sans-serif;
    transition: all .3s;
}

.contact_form input[type=submit]:hover {
    background-color: #4C4C4C;
    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 */


/* DOMEINFICHES */

.domein_detail_page {
    width: 100%;
    max-width: 95%;
    margin: 0 auto;
    position: relative;
    margin-top: 20px;
}

.domein_detail_page article {
    width: 100%;
}

.domein_map,
.domein_video {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0px;
    z-index: 1;
    display: flex;
    justify-content: center;
    -ms-align-items: flex-start;
    align-items: flex-start;
    flex-direction: column;
    display: none;
}

.domein_video>div {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    -ms-align-items: center;
    align-items: center;
}

.domein_video iframe {
    height: 100%;
    width: 65%;
}

.domein_video>div h2 {
    font-size: .9em;
    padding: 8px 15px;
    background-color: #4C4C4C;
    color: white;
    font-weight: 700;
    margin-bottom: 10px;
    border-radius: 200px;
}

.domein_video>div h1 {
    font-size: 2.5em;
    font-weight: 700;
    color: white;
    text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.83);
}

.domein_video>div>div {
    height: 100%;
    width: 35%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    -ms-align-items: flex-start;
    align-items: flex-start;
    padding: 15px;
    border-right: 10px solid white;
}

#domein_map {
    width: 100%;
    height: 100%;
}

.domein_detail_content {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 30px;
    z-index: 1;
    display: flex;
    justify-content: center;
    -ms-align-items: flex-start;
    align-items: flex-start;
    flex-direction: column;
    padding: 0 100px;
}

.domein_detail_topper {
    position: absolute;
    top: 20px;
    right: 20px;
    left: 20px;
    z-index: 100;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    -ms-align-items: center;
    width: calc(100% - 40px);
}

.goBook-mob {
    background-color: #608ab9;
    color: white;
    border: none;
    border: 2px solid #608ab9;
    padding: 7px 20px;
    border-radius: 200px;
    font-family: 'Playfair Display', serif;
    transition: all 0.8s ease;
}

.goBook-mob:hover {
    background-color: white;
    color: #608ab9;
}

.gemeente {
    background-color: white;
    color: #608ab9;
    border: none;
    border: 2px solid white;
    padding: 7px 20px;
    border-radius: 200px;
    font-family: 'Playfair Display', serif;
    margin-right: 10px;
}

.gemeente i {
    margin-right: 10px;
}

.domein_detail_page>img {
    width: 100%;
}

.respimage {
    display: none;
}

.domein_detail_content h1 {
    font-size: 2.9em;
    font-weight: 700;
    color: white;
    text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.83);
}

.domein_detail_content h2 {
    font-size: .9em;
    padding: 8px 15px;
    background-color: #f1f3f5;
    color: #4c4c4c;
    font-weight: 500;
    margin-bottom: 10px;
    border-radius: 200px;
}

.domein_detail_content h2 i {
    margin-right: 5px;
}

.domein_controls {
    width: 86%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    -ms-align-items: center;
    align-items: center;
    border: 2px solid #f1f3f5;
    border-radius: 200px;
    padding: 10px 0;
    background-color: #f1f3f5;
    position: absolute;
    bottom: -30px;
    z-index: 10;
    left: 7%;
}

.domein_controls .control a {
    font-weight: 700;
    color: #4b4b4b;
    margin: 10px 0;
    padding: 0 25px;
    display: flex;
    justify-content: center;
    -ms-align-items: center;
    align-items: center;
    cursor: pointer;
    transition: all .3s;
}

.domein_controls .control .active {
    color: #4C4C4C !important;
}

.domein_controls .control a:hover {
    transform: scale(1.1);
}

.domein_controls a i {
    margin-right: 15px;
    font-size: 1.3em;
}

.domein_controls .control {
    display: flex;
    justify-content: center;
    -ms-align-items: center;
    align-items: center;
}

.domein_controls .control a:last-child {
    border-right: none;
}

.domein_controls .social {
    display: flex;
    flex-direction: row;
    padding-right: 20px;
}

.domein_controls .social a {
    font-size: 1.1em;
    background-color: #4b4b4b;
    color: #f1f3f5;
    margin: 0 10px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    -ms-align-items: center;
    padding: 15px;
    border-radius: 200px;
    width: 33px;
    height: 33px;
    z-index: 10;
    transition: all 1s ease;
}

.domein_controls .social a:hover {
    transform: scale(1.1);
}

.domein_controls .social a i {
    margin-right: 0;
    font-size: 16px;
}

.domein_content {
    width: 100%;
    max-width: 80%;
    margin: 0 auto;
    padding: 0 15px;
    padding-bottom: 60px;
    display: flex;
    justify-content: space-between;
    -ms-align-items: flex-start;
    align-items: flex-start;
    margin-top: 60px;
}

.domein_content>div {
    width: 100%;
}

.domein_content aside {
    width: 550px;
    margin-left: 50px;
    display: flex;
    flex-direction: column;
}

.domein_content aside article:not(.domeinen_ov article) {
    border: 2px solid #f1f3f5;
}

.domein_content aside h2 {
    font-size: 1.2em;
    color: #4C4C4C;
    font-weight: 700;
    margin-bottom: 10px;
}

.domein_content aside ul {
    list-style-type: disc;
    padding-left: 30px;
}

.domein_content aside p,
.domein_content aside li {
    color: #777777;
    line-height: 180%;
    font-size: 1.1em;
    font-weight: 500;
}

.domein_content aside article div:not(div.domeinen_ov_container) {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    -ms-align-items: center;
}

.domein_content aside article div i:not(i.ov) {
    background-color: #6089b9a1;
    color: #fff;
    width: 35px;
    height: 35px;
    padding: 10px;
    margin-right: 10px;
    border-radius: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    -ms-align-items: center;
    font-size: 14px;
}

.domein_content aside article div {
    border-bottom: 2px dashed #f1f3f5;
    padding: 10px 20px;
}

.domein_content aside article div:last-of-type {
    border: none;
}

.goBook {
    cursor: pointer;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.8s ease;
    border: 2px solid #608ab9;
    margin-top: 0px;
    background-color: #608ab9;
    color: white !important;
    padding: 10px 30px;
    width: 100%;
    margin: auto;
}

.goBook p {
    color: white !important;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    -ms-align-items: center;
}

.goBook i {
    background-color: transparent !important;
    margin-right: 10px;
    color: #fff !important;
}

.goBook:hover {
    background-color: transparent !important;
    color: #608ab9 !important;
}

.goBook:hover p,
.goBook:hover i {
    color: #608ab9 !important;
}

.domein_content .breadcrum {
    font-weight: 700;
    color: #E1E1E1;
    font-size: .8em;
    padding-bottom: 15px;
}

.domein_content .breadcrum a {
    color: #E1E1E1;
}

.domein_tekst {
    line-height: 200%;
    font-size: 1.2em;
    color: #777777;
}

.domein_tekst h1 {
    font-weight: 700;
    font-size: 1.3em;
}

.domein_tekst h2 {
    font-weight: 700;
    font-size: 18px;
    margin-top: 20px;
}

.domein_tekst h3 {
    text-decoration: underline;
}

h2.moreimg {
    font-weight: 700;
    font-size: 18px;
    margin-top: 20px;
    line-height: 200%;
    color: #777777;
}

.domein_tekst ul {
    list-style-type: disc;
    padding-left: 30px;
    font-size: 18px;
}

.domein_tekst table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.domein_tekst td {
    border: 1px solid #f1f3f5;
    padding: 10px;
}

.domein_images {
    display: flex;
    justify-content: flex-start;
    -ms-align-items: flex-start;
    align-items: flex-start;
    padding: 15px 0;
    flex-wrap: wrap;
}

.domein_images article {
    width: 31%;
    margin-right: 2%;
    margin-bottom: 2%;
    position: relative;
}

.domein_images article div {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background-color: rgba(0, 0, 0, .6);
    display: flex;
    justify-content: center;
    -ms-align-items: center;
    align-items: center;
    font-size: 2em;
    color: white;
    transition: all .3s;
    opacity: 0;
    cursor: pointer;
}

.domein_images article div.loc {
    top: 80%;
    transform: translateY(-20%);
    font-size: 16px;
    padding: 10px;
}

.domein_images article:hover div {
    opacity: 1;
}

.domein_images article img {
    width: 100%;
}

.domeinen_ov {
    margin-top: 50px;
}

.domeinen_ov .row {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    -ms-align-items: flex-start;
}

.domeinen_ov article {
    position: relative;
    margin: 20px 0;
}

.domeinen_ov article a {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    z-index: 20;
}

.domeinen_ov article>div {
    position: relative;
    padding: 0 !important;
    display: block !important;
}

.domeinen_ov article div:not(.domeinen_ov_content) {
    padding: 0 !important;
    display: block !important;
    border: none !important;
}

.domeinen_ov_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;
}

.domeinen_ov_content {
    position: absolute;
    bottom: 0;
    width: 100%;
    z-index: 3;
    padding: 15px !important;
    color: white !important;
    display: block !important;
    text-align: right;
}

.domeinen_ov_content h3 {
    display: flex;
    flex-direction: row;
    align-items: center;
    -ms-align-items: center;
    justify-content: flex-end;
}

.domeinen_ov_content i {
    margin-left: 10px;
}


/* RESERVEREN */

.backtodetail i {
    margin-right: 10px;
    transition: all 0.8s ease;
}

.backtodetail {
    margin-top: 15px;
    font-size: 15px;
    color: #4c4c4c;
    font-weight: 700;
    display: inline-block;
    border-bottom: 1px solid #4c4c4c;
    padding-bottom: 1px !important;
    padding-left: 10px !important;
    padding-right: 10px !important;
}

.backtodetail:hover i {
    transform: translateX(-10px);
}

.reservatie {
    width: 100%;
    max-width: 80%;
    margin: 0 auto;
    padding: 0 15px;
    padding-bottom: 60px;
    display: flex;
    justify-content: space-between;
    -ms-align-items: flex-start;
    align-items: flex-start;
    margin-top: 60px;
}

.reservatie-content-zone {
    width: 70%;
}

.banner,
.header {
    width: 85%;
    margin: auto;
}

.banner img {
    width: 100%;
}

.header.overschrijving {
    text-align: center;
}

.header.overschrijving h1 {
    margin-top: 30px;
}

.header.overschrijving .c {
    width: 50%;
    margin: auto;
    text-align: center;
    font-size: 1.2em;
}

.header.overschrijving .c p {
    margin-bottom: 15px;
    line-height: 160%;
}

.header.overschrijving a {
    cursor: pointer;
    display: inline-block;
    padding: 13px 30px;
    background-color: #4C4C4C;
    font-weight: 200;
    color: white;
    margin-top: 20px;
    border: 1px solid #4C4C4C;
    transition: all 1s ease;
}

.header.overschrijving a:hover {
    background-color: transparent;
    color: #4C4C4C;
}

.header.failed {
    text-align: center;
    background-color: #fafafa;
    margin: 100px auto;
    padding: 80px;
}

.header.failed i {
    font-size: 25px;
    margin-bottom: 15px;
}

.header.failed h1 {
    margin-top: 0px;
    font-size: 30px;
    margin-bottom: 15px;
}

.header.failed .c {
    width: 50%;
    margin: auto;
    text-align: center;
    font-size: 20px;
    line-height: 130%;
}

.header.failed .c p {
    margin-bottom: 15px;
    line-height: 160%;
}

.header.failed a {
    cursor: pointer;
    display: inline-block;
    padding: 13px 30px;
    background-color: #4C4C4C;
    font-weight: 200;
    color: white;
    margin-top: 20px;
    border: 1px solid #4C4C4C;
    transition: all 1s ease;
}

.header.failed a:hover {
    background-color: transparent;
    color: #4C4C4C;
}


/*Legende*/

.reservatie-legende {
    width: 30%;
    margin-right: 30px;
    position: relative
}

.reservatie-legende:before,
.reservatie-legende:after,
.reservatie-legende>:first-child:before,
.reservatie-legende>:first-child:after {
    position: absolute;
    content: ' ';
    width: 80px;
    height: 80px;
    border-color: #f1f3f5;
    /* or whatever colour */
    border-style: solid;
    /* or whatever style */
}

.reservatie-legende:before {
    top: 0;
    left: 0;
    border-width: 6px 0 0 6px
}

.reservatie-legende:after {
    top: 0;
    right: 0;
    border-width: 0 0 0 0
}

.reservatie-legende>:first-child:before {
    bottom: 0;
    right: 0;
    border-width: 0 0 0 0
}

.reservatie-legende>:first-child:after {
    bottom: 0;
    left: 0;
    border-width: 0 0 0 0
}

.reservatie-legende .cal-legend {
    background-color: #f1f3f5;
}

.reservatie-legende>* {
    padding: 0;
}

.reservatie-legende article {
    padding: 0 15px;
}

.info-reserv,
.cal-legend {
    padding: 15px;
}

.reservatie-legende>.reserv-holder {
    padding-bottom: 30px;
}

.reserv-holder .data {
    background-color: #f1f3f5;
    padding: 30px;
}

.reservatie-legende h2 {
    font-size: 1.2em;
    margin-bottom: 20px;
    color: #393939;
    letter-spacing: 3px;
    text-align: left;
    font-weight: 700;
    text-transform: uppercase;
}

.reservatie-legende .c p {
    color: rgb(80, 80, 80);
    line-height: 150%;
}

.legend-item {
    margin-bottom: 10px;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    justify-content: flex-start;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: .8em;
    color: #6B6B6B;
}

.legend-colour {
    height: 25px;
    width: 25px;
    margin-right: 10px;
    border-radius: 50%;
}

.legend-colour i {
    font-size: 25px;
}

.legend-description {
    line-height: 20px;
    margin-left: 8px;
    color: rgb(80, 80, 80);
}

.checkin-info .type {
    margin-bottom: 20px;
}

.checkin-info .legend-container {
    display: flex;
    flex-direction: column;
    justify-content: unset;
}

.checkin-info .h3 {
    margin-bottom: 10px;
    text-decoration: underline;
}

.checkin-info .type h3 {
    font-weight: 700;
    margin-bottom: 5px;
}

.checkin-info .type p {
    display: flex;
    flex-wrap: wrap;
    line-height: 140%;
}

.checkin-info .type p span {
    width: 25%;
}

.reserv-holder img {
    margin-bottom: 40px;
    max-width: 100%;
}

.flex-hold {
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 10px;
}

.reserv-holder .flex-hold {
    padding: 5px;
}

.totholder {
    padding: 15px !important;
}

.btn-kal {
    width: fit-content;
    padding: 10px 35px;
    text-align: center;
    font-weight: bold;
    font-family: 'Playfair Display', sans-serif;
    letter-spacing: 1px;
    color: #393939;
    border: 0;
    display: inline-block;
    transition: all 0.8s ease;
}

.btn-kal:hover {
    background-color: #393939;
    color: white !important;
}

.btn-kal:disabled {
    opacity: 0.5;
}

.btn-hold {
    margin-top: 50px;
    text-align: center;
}

.prevBtn {
    background-color: #C2C2C2;
    display: none;
    transition: all .3s;
    border-radius: 200px;
}

.prevBtn:hover {
    opacity: .8;
}

.nextBtn,
.submitBtn {
    background-color: transparent;
    color: #393939;
    border: 2px solid #393939;
    font-family: 'Playfair Display', serif;
    border-radius: 200px;
}

.wd100 {
    width: 100%;
}

.wd49 {
    width: 49%;
}

.wd59 {
    width: 59%;
}

.wd39 {
    width: 39%;
}

.form-step {
    padding: 30px;
}

.form-step input,
.form-step select {
    border: none;
    border-bottom: 2px solid #f1f3f5;
    background-color: transparent;
    padding: 8px 0px;
    color: #393939;
    font-size: 18px;
    font-weight: 200;
    margin-bottom: 40px;
    padding-left: 10px;
    font-family: 'Playfair Display', serif;
}

.form-step input::-webkit-input-placeholder,
.form-step input::-moz-placeholder,
.form-step input:-ms-input-placeholder,
.form-step input::placeholder {
    color: #393939;
    font-family: 'Playfair Display', serif;
}

.form-step .flex-hold {
    margin-bottom: 20px;
}

.form-step h2 {
    font-size: 1.5em;
    margin-bottom: 20px;
    font-weight: bold;
    text-transform: uppercase;
}

.form-step label {
    font-weight: bold;
    display: block;
    margin-bottom: 8px;
}

.form-step label.privcnt {
    font-weight: 400 !important;
}

.form-step label.privcnt a {
    font-weight: 700;
    color: #393939;
}


/* Kalender */

.fc-header-toolbar {
    padding: 20px;
    font-family: 'Playfair Display', serif;
}

.fc-header-toolbar h2 {
    font-weight: bold;
    text-transform: uppercase;
    line-height: 33.6px;
}

.fc-past.fc-day-top {
    opacity: .3;
}

.fc-day-top .fc-day-number {
    width: 20px;
    line-height: 20px;
    text-align: center;
    border-radius: 50%;
    margin-right: 2px;
    margin-top: 2px;
}

.fc-day-top.status-1 .fc-day-number,
.fc-day-top.status-9 .fc-day-number,
.fc-day-top.status-10 .fc-day-number,
.fc-day-top.status-910 .fc-day-number {
    background-color: #C0EEC2;
    color: #2B2B2B;
    padding: 5px;
    font-weight: 700;
}

.fc-day-top.status-9,
.fc-day-top.status-10,
.fc-day-top.status-910 {
    cursor: pointer;
}

.fc-day-top.status-2 .fc-day-number {
    background-color: #FF6F6F;
    color: #2B2B2B;
    padding: 5px;
    font-weight: 700;
}

.fc-day-top.status-3 .fc-day-number {
    background-color: #FF6F6F;
    color: #2B2B2B;
    padding: 5px;
    font-weight: 700;
}

.fc-day-top.status-4 .fc-day-number {
    background-color: #FF6F6F;
    color: #2B2B2B;
    padding: 5px;
    font-weight: 700;
}

.fc-day-top.status-6 .fc-day-number {
    background-color: orange;
    color: #2B2B2B;
    padding: 5px;
    font-weight: 700;
}

.fc-day-top.status-s1 .fc-day-number,
.fc-day-top.status-s2 .fc-day-number,
.fc-day-top.status-s0 .fc-day-number {
    background-color: #f0f049;
    color: #2B2B2B;
    padding: 5px;
    font-weight: 700;
}

.error-aantal {
    color: red;
}

.fc-scroller {
    overflow-x: visible !important;
}

.fc-toolbar button {
    border: 0;
}

.fc-day:hover {
    background: rgba(188, 232, 241, 0.3);
    cursor: pointer;
}

.fc-left {
    padding: 5px;
}

.fc-right {
    padding: 5px;
    font-family: 'Playfair Display', serif;
}

.fc-next-button,
.fc-prev-button {
    border-radius: 200px;
}

.fc-next-button {
    margin-left: 5px !important;
}

body .fc-state-default {
    background-color: #f1f3f5;
    color: rgb(80, 80, 80);
    text-shadow: none;
    background-image: none;
}

body .fc-state-active,
.fc-state-down {
    box-shadow: none;
}

body .fc-state-active,
body .fc-state-disabled,
body .fc-state-down,
body .fc-state-hover {
    color: rgb(80, 80, 80);
    background-color: #ccd5dd;
}

body .fc-state-hover {
    color: auto;
    text-decoration: none;
    background-position: center;
    -webkit-transition: background-position .0s linear;
    -moz-transition: background-position .0s linear;
    -o-transition: background-position .0s linear;
    transition: background-position .0s linear
}

.fc-header-toolbar h2 {
    line-height: 43.6px;
}

.checkinout {
    display: flex;
    align-items: center;
    -ms-align-items: center;
}

.checkinout i {
    margin-right: 5px;
}


/*Boeking-check*/

.header {
    margin-bottom: 60px;
}

.header h2 {
    text-align: center;
    font-size: 22px;
    text-transform: uppercase;
    margin-top: 30px;
    margin-bottom: 10px;
}

.header h1 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 50px;
}

.boeking-check {
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    justify-content: space-between;
    width: 100%;
}

.boeking-check>* {
    width: 49%;
    -webkit-box-shadow: 0px 0px 22px 0px rgba(90, 90, 90, 0.15);
    -moz-box-shadow: 0px 0px 22px 0px rgba(90, 90, 90, 0.15);
    box-shadow: 0px 0px 22px 0px rgba(90, 90, 90, 0.15);
    padding: 45px 30px;
}

.boeking-check h3 {
    text-transform: uppercase;
    font-weight: bold;
    font-size: 1.3em;
    letter-spacing: 3px;
    color: #393939;
    margin-bottom: 30px;
}

.boeking-check h3:not(:first-child) {
    margin-top: 45px;
}

.boeking-check .flex-hold {
    margin-bottom: 25px;
}

.gegens_check {
    display: flex;
    justify-content: flex-start;
    -ms-align-items: flex-start;
    align-items: flex-start;
    margin-bottom: 20px;
}

.gegens_check div:first-child {
    width: 150px;
    line-height: 200%;
}

.gegens_check div:last-child {
    line-height: 200%;
}

.specialRates {
    border: 2px solid #d92028;
    margin-left: auto;
    margin-right: auto;
    padding: 2rem;
    position: relative;
    box-sizing: border-box;
    width: 90%;
    margin: auto;
    margin-top: 60px;
    transition: all 0.8s ease;
}

.specialRates:hover {
    transform: scale(1.1);
}

.specialRates:hover i {
    display: none;
}

.specialRates h3 {
    color: #d92028;
    position: absolute;
    top: -1.7rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.3rem;
    background-color: #fff;
    padding: 1rem;
    text-align: center;
}

.specialRates .c {
    color: #777777;
    text-align: center;
    font-size: 1.2em;
}

.specialRates .c span {
    font-weight: 700;
}

.specialRates i {
    position: absolute;
    top: -23%;
    font-size: 25px;
    color: #d92028;
    transition: all 0.8s ease;
}

.specialRates i.left {
    left: -8%;
    transform: rotate(-45deg);
}

.specialRates i.right {
    right: -8%;
    transform: rotate(45deg);
}


/* EINDE RESERVEREN

/* EINDE DOMEINFICHES */


/* Instagram */

.insta_titel {
    padding: 60px 0;
    position: relative;
    text-align: center;
}

.insta_titel .line-hold {
    position: relative;
}

.insta_titel .line-hold h2 {
    font-size: 30px;
    text-transform: uppercase;
    text-align: center;
    display: block;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    background-color: #fff;
    color: #a08b56;
    display: inline-block;
    padding: 0 100px;
}

.band .insta_titel h3 {
    background-color: #f8eaf2;
}

.insta_titel .line-hold:after {
    display: block;
    height: 1px;
    background-color: #a08b56;
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 50%;
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    transform: translateY(-50%);
}

.small.insta_titel {
    padding: 30px 0;
}

.instagram_feed {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    -ms-align-items: center;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 25px;
    padding-top: 30px;
    background-color: white;
    margin-top: 0px;
    margin-bottom: 30px;
}

.instagram_feed .instagram_post {
    width: 300px;
    height: 300px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    position: relative;
    margin: 0 1%;
}

.instagram_feed .instagram_post img {
    width: 100%;
}

.instagram_feed .instagram_post video {
    width: 100%;
}

.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 */


/* Footer */

.footer_element {
    width: 30px;
    margin-left: 50%;
    transform: translateX(-50%);
}

.slogan {
    text-align: center;
    font-size: 4.5rem;
    font-weight: 600;
    color: #4c4c4c88;
    padding: 40px 0;
    padding-bottom: 4rem;
    line-height: 120%;
    width: 80%;
    margin: auto;
}

.slogan strong {
    color: #4C4C4Ca9;
}

.disclaimer i,
.navi_footer i {
    color: #4b4b4b;
    animation: pulse 4s infinite;
}

footer {
    width: 100%;
    background-color: #fff;
    padding: 10px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.socials {
    padding-top: 30px;
    padding-bottom: 30px;
    display: flex;
    flex-direction: row;
}

.socials i {
    color: #fff;
}

.socials a {
    color: #fff;
    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: #4b4b4b;
}

.socials a:first-of-type {
    margin-right: 15px;
}

.disclaimer {
    color: #4C4C4C;
    font-weight: 200;
    font-size: .9em;
}

.disclaimer span {
    margin: 0 10px;
}

.disclaimer a {
    color: #4C4C4C;
}

.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: 1650px) {
    .domein_controls {
        flex-wrap: wrap;
        border: none;
        margin-top: 0;
        background-color: #f5f5f5;
    }
    .domein_controls .control a {
        font-size: .8em;
        width: 25%;
        justify-content: flex-start;
    }
    .domein_controls .control {
        width: 100%;
        flex-wrap: wrap;
        display: flex;
        justify-content: flex-start;
        -ms-align-items: center;
        align-items: center;
    }
    .domein_controls {
        flex-wrap: wrap;
        border: none;
        margin-top: 0;
        background-color: #f5f5f5;
    }
    .domein_controls .control a {
        font-size: .8em;
        width: 25%;
        justify-content: flex-start;
    }
    .domein_controls .control {
        width: 100%;
        flex-wrap: wrap;
        display: flex;
        justify-content: flex-start;
        -ms-align-items: center;
        align-items: center;
        padding: 15px 0 0 0;
    }
    .domein_controls .social {
        position: absolute;
        top: -15px;
        left: 50%;
        transform: translateX(-50%);
        padding-right: 0;
    }
    .domein_controls .social a {
        width: 35px;
        height: 35px;
        margin: 0 5px;
    }
    .domein_controls .social a i {
        font-size: 16px;
    }
}

@media screen and (max-width: 1400px) {
    .instagram_feed .instagram_post {
        width: 270px;
        height: 270px;
    }
    footer .gegevens {
        max-width: 70%;
    }
    .domein_video>div>div {
        display: none;
    }
    .domein_video iframe {
        width: 100%;
    }
    .domein_images article div.loc {
        font-size: 14px;
    }
    .realisatie_video>div>div {
        display: none;
    }
    .realisatie_video iframe {
        width: 100%;
    }
    #vid,
    #vidref {
        width: 80%;
        height: 560px;
    }
    .closevid {
        top: 30px;
        right: 30px;
    }
    .header.overschrijving .c,
    .header.failed .c {
        width: 100%;
    }
    .domein_tekst {
        font-size: 1em;
    }
}

@media screen and (max-width: 1250px) {
    .instagram_feed .instagram_post {
        width: 260px;
        height: 260px;
    }
}

@media screen and (max-width: 1200px) {
    .topper {
        right: 2.5%;
    }
    .home_banner {
        width: 95%;
    }
    .todo_overzicht article {
        width: 50% !important;
    }
    .realisatie_tekst {
        font-size: 1em;
    }
    .realisatie_controls {
        flex-wrap: wrap;
        border: none;
        margin-top: 0;
        background-color: #f5f5f5;
    }
    .realisatie_controls .control a {
        font-size: .8em;
        width: 25%;
        justify-content: flex-start;
    }
    .realisatie_controls .control {
        width: 100%;
        flex-wrap: wrap;
        display: flex;
        justify-content: flex-start;
        -ms-align-items: center;
        align-items: center;
    }
    .realisatie_controls .social {
        display: none;
    }
    .reserv-holder {
        padding-top: 30px;
    }
    .reservatie {
        align-items: flex-start;
        align-content: flex-start;
        flex-wrap: wrap;
    }
    .reservatie>* {
        width: 100%;
    }
    .reservatie-legende {
        order: 1;
        margin-left: 0;
        padding-bottom: 20px;
        margin-right: 0;
        margin-top: 0;
    }
    .reservatie-content-zone {
        order: 2;
    }
    .legend-container {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    .reserv-holder>img:first-child {
        display: none;
    }
    .medimage {
        display: block !important;
    }
    .bigimage {
        display: none !important;
    }
    .navigatie {
        flex-direction: row;
    }
    .navigatie h1 {
        margin-bottom: 0;
        font-size: 28px;
    }
    .navigatie a {
        display: flex;
        flex-direction: row;
        align-items: flex-end;
        -ms-align-items: flex-end;
    }
    .logo {
        width: 50px;
        margin-right: 10px;
    }
    .menubtn {
        display: flex !important;
    }
    .tohide {
        display: none;
    }
    .home_ak .content {
        left: 0;
        transform: unset;
        transform: translateY(-50%);
        padding-left: 40px;
        padding-right: 40px;
    }
    .contact_pagina {
        padding: 25px 10px;
        margin-top: 0px;
    }
    .contact_gegevens {
        margin-bottom: 20px;
        padding: 30px 10px;
    }
    .contact_gegevens,
    .contact_formulier {
        width: 100%;
        padding: 0 10px;
    }
    .contact_gegevens h1,
    .contact_gegevens h2 {
        text-align: center;
        line-height: 120%;
    }
    .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 {
        display: none;
    }
    .contact_split div {
        justify-content: center;
        -ms-align-items: center;
        align-items: center;
    }
    .instagram_feed .instagram_post {
        width: 250px;
        height: 250px;
    }
    footer .gegevens {
        max-width: 80%;
    }
}

@media screen and (max-width: 1160px) {
    .instagram_feed .instagram_post {
        width: 220px;
        height: 220px;
    }
}

@media screen and (max-width: 1150px) {
    .page_header .c {
        width: 80%;
    }
    .page_header>h2 {
        font-size: 15px;
    }
    .blokken {
        margin-top: 0;
    }
    .blokken article {
        flex-direction: column;
    }
    .blokken_img {
        width: 95%;
        order: 1;
    }
    .blokken_content {
        width: 95%;
        order: 2;
    }
}

@media screen and (max-width: 1100px) {
    .timeline h2 {
        font-size: 1.5em;
    }
    .timeline p {
        font-size: 20px;
    }
    .slogan {
        font-size: 4.2rem;
        padding: 6rem 1rem;
    }
    .domein_content {
        flex-wrap: wrap;
        max-width: 95%;
    }
    .domein_content aside {
        width: 100%;
        order: 2;
        margin-left: 0;
        margin-bottom: 20px;
        padding: 20px 0;
        border: none;
        padding-top: 0;
    }
    .domein_content>div {
        order: 1;
    }
    .domein_controls .control a {
        width: 33.33%;
    }
    .domein_detail_content h2 {
        display: none;
    }
    .realisatie_content {
        flex-wrap: wrap;
    }
    .realisatie_content aside {
        width: 100%;
        order: 1;
        margin-left: 0;
        margin-bottom: 20px;
        padding: 20px 0;
        border: none;
    }
    .domein_content>div {
        order: 2;
    }
    .realisatie_controls .control a {
        width: 33.33%;
    }
    .andere_realisaties>div article {
        width: 48%;
        margin-bottom: 10px;
    }
    .domein_content aside article:not(.domeinen_ov article) {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        -ms-align-items: center;
    }
    .domein_content aside article div:not(div.domeinen_ov_container):not(div.domeinen_ov_overlay):not(div.domeinen_ov_content) {
        width: 50%;
    }
    .goBook {
        padding: 10px 50px;
    }
    .specialRates i.left {
        left: -4%;
    }
    .specialRates i.right {
        right: -4%;
    }
    .domeinen_ov .row {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .domeinen_ov img {
        width: 100%;
    }
    .domeinen_ov .row article {
        width: 49%;
    }
    #vid,
    #vidref {
        width: 90%;
        height: 560px;
    }
    .closevid {
        width: 30px;
    }
}

@media screen and (max-width: 1050px) {
    .navitem a {
        font-size: 40px;
    }
    .closebtn {
        width: 50px;
        height: 50px;
    }
    .res-nav .res-logo {
        width: 180px;
    }
    .instagram_feed .instagram_post {
        width: 200px;
        height: 200px;
    }
}

@media screen and (max-width: 1000px) {
    .todo_filter {
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .select2 {
        width: 32.33%;
        margin: 0;
    }
    .todo_size_switch {
        width: 100%;
        margin-top: 20px;
        display: none;
    }
    .todo_size_switch {
        width: 100%;
    }
    .home_ak .content h2 {
        font-size: 80px;
    }
    .slogan {
        font-size: 3.5rem;
        padding: 6rem 2rem;
    }
}

@media screen and (max-width: 950px) {
    #vid,
    #vidref {
        width: 90%;
        height: 500px;
    }
    #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%;
    }
    .instagram_feed {
        justify-content: center;
        max-width: 90%;
    }
    .instagram_feed .instagram_post {
        width: 300px;
        height: 300px;
        margin: 1%;
    }
    footer .gegevens {
        max-width: 90%;
    }
    .header h2 {
        font-size: 18px;
    }
    .header h1 {
        font-size: 30px;
    }
    .boeking-check {
        flex-direction: column;
    }
    .boeking-check>* {
        width: 100%;
    }
}

@media screen and (max-width: 920px) {
    .disclaimer {
        padding-left: 0;
        margin-top: 10px;
    }
}

@media screen and (max-width: 900px) {
    .domein_detail_content {
        padding: 0 30px;
    }
    .domein_detail_content h1 {
        font-size: 2em;
    }
    .realisatie_detail_content {
        padding: 0 30px;
    }
    .realisatie_detail_content h1 {
        font-size: 2em;
    }
}

@media screen and (max-width: 850px) {
    .home_banner article h2 {
        font-size: 2.5em;
        line-height: 130%;
    }
    .slogan {
        font-size: 3.1rem;
        padding: 6rem 2rem;
    }
    .textcontent h2 {
        font-size: 40px;
    }
    .realisatie_detail_page,
    .realisatie_controls,
    .realisatie_content,
    .andere_todo>div {
        max-width: 95%;
    }
    .breadcrum,
    .navigatie {
        width: 95%;
    }
    .andere_todo {
        margin-top: 0;
    }
    .header.failed {
        width: 100% !important;
    }
}

@media screen and (max-width: 840px) {
    .timeline_item_content {
        width: 100%;
        padding: 0;
        order: 1;
    }
    .timeline {
        overflow: auto;
    }
    .timeline p {
        font-size: 18px;
    }
    .timeline_other_content {
        width: 100%;
        order: 2;
        text-align: left;
    }
    .left_time h2 {
        text-align: left;
    }
    .left_time p {
        text-align: left;
    }
    .timeline_other_content img {
        width: 100%;
        margin-top: 10px;
    }
    .timeline_container {
        width: 90%;
        float: right;
        flex-wrap: wrap;
    }
    .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;
    }
    .timeline_container {
        padding: 10px;
    }
}

@media screen and (max-width: 800px) {
    .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;
    }
    .todo_slider article {
        padding: 10px;
    }
    .todo_overzicht article {
        font-size: .9em;
    }
    .reservatie {
        max-width: 95%;
    }
    .reservatie-legende {
        margin-right: 0;
    }
    .medimage {
        display: none !important;
    }
    .smaimage {
        display: block !important;
    }
    .res-nav {
        max-width: 100vw;
        right: -100vw;
    }
    .menu-is-open {
        right: 0;
    }
    .page_header.home {
        padding-top: 60px;
    }
    .trending {
        padding: 30px 10px;
    }
    .instagram_feed .instagram_post {
        width: 280px;
        height: 280px;
    }
    .suggesties article {
        margin-bottom: 0;
    }
    .slogan {
        font-size: 2.8rem;
        padding: 4rem 1rem;
    }
}

@media screen and (max-width: 750px) {
    .home_banner article h2 {
        font-size: 2em;
    }
    .home_banner article h3 {
        font-size: 1em;
    }
    .page_header h1 {
        font-size: 2em;
    }
    .page_header .c {
        font-size: 18px;
        width: 90%;
    }
    .blokken_content {
        padding: 50px 20px;
    }
    .instagram_feed .instagram_post {
        width: 260px;
        height: 260px;
    }
    .domein_detail_topper {
        top: 10px;
        right: 10px;
        left: 10px;
        font-size: 14px;
        justify-content: space-between;
        width: calc(100% - 20px);
    }
    .gemeente {
        font-size: 14px;
        padding: 5px 15px;
    }
    .goBook-mob {
        padding: 5px 15px;
        font-size: 14px;
    }
    .domein_controls {
        bottom: -100px;
        border-radius: 10px;
        width: 94%;
        left: 3%;
        background-color: #608ab9;
        color: white;
    }
    .domein_controls .control a {
        width: 50%;
        color: white;
    }
    .domein_content {
        transform: translateY(80px);
    }
    .domein_content aside h2 {
        font-size: 1.2em;
    }
    .domein_content aside p {
        font-size: .9em;
    }
    .reservatie {
        transform: translateY(120px);
    }
    .realisatie_controls .control a {
        width: 50%;
    }
    .realisatie_content aside h2 {
        font-size: 1.2em;
    }
    .realisatie_content aside p {
        font-size: .9em;
    }
    .fc-day-top .fc-day-number {
        width: 10px;
        line-height: 10px;
    }
    .fc td,
    .fc th {
        font-size: 12px;
    }
    .domein_controls .social a {
        background-color: white;
        border: 1px solid #608ab9;
        color: #608ab9;
    }
}

@media screen and (max-width: 700px) {
    .todo_overzicht article {
        font-size: .8em;
        padding: 5px;
    }
    .todo_overzicht article>div:hover {
        transform: scale(1);
    }
    .home_ak .content h2 {
        font-size: 60px;
    }
    .in_beeld article {
        width: 49%;
    }
    .slogan {
        padding: 1rem;
        padding-bottom: 3rem;
    }
    footer .gegevens {
        max-width: 95%;
    }
    .domein_detail_content {
        -ms-align-items: center;
        align-items: center;
    }
    .domein_detail_content h1 {
        font-size: 1.5em;
    }
    .domein_detail_content h2 {
        font-size: .7em;
    }
    .domein_images article {
        width: 48%;
    }
    .realisatie_detail_content {
        -ms-align-items: center;
        align-items: center;
    }
    .realisatie_detail_content h1 {
        font-size: 1.5em;
    }
    .realisatie_detail_content h2 {
        font-size: .7em;
    }
    .realisatie_images article {
        width: 48%;
    }
}

@media screen and (max-width: 680px) {
    .instagram_feed .instagram_post {
        width: 240px;
        height: 240px;
    }
}

@media screen and (max-width: 650px) {
    .fc-header-toolbar {
        padding: 20px 0px !important;
    }
    .home_banner article h2 {
        font-size: 1.5em;
    }
    .home_banner article h3 {
        font-size: .9em;
        font-weight: 500;
        margin-bottom: 0;
    }
    .wd49,
    .wd39,
    .wd59 {
        width: 100%;
    }
    .form-step {
        padding: 30px 0;
    }
    #content-container h1 {
        font-size: 2.1em;
    }
    #content-container h2 {
        font-size: 1.5em;
    }
    .trending {
        margin-top: 0;
        padding: 30px 0;
    }
    .trending_slider {
        max-width: 100%;
    }
    .instagram_feed {
        max-width: 100%;
        margin-bottom: 0;
    }
    .instagram_feed .instagram_post {
        width: 240px;
        height: 240px;
    }
    .slogan {
        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;
    }
    .domein_content aside>div:last-of-type a {
        font-size: 1.1em;
    }
    .domein_content aside>div:last-of-type i {
        font-size: 22px;
    }
    .domein_content aside.det article div {
        padding: 5px 10px;
    }
    .domein_content aside article div i:not(i.ov) {
        width: 25px;
        height: 25px;
        padding: 10px;
        font-size: 11px;
    }
    .header h2 {
        font-size: 16px;
    }
    .header h1 {
        font-size: 25px;
    }
    .header.failed i {
        font-size: 20px;
    }
    .header.failed h1 {
        font-size: 25px;
    }
    .header.failed .c {
        font-size: 18px;
    }
    .header.failed a {
        font-size: 15px;
        padding: 10px 25px;
    }
}

@media screen and (max-width: 600px) {
    .fc-toolbar .fc-right {
        float: left !important;
    }
    .todo_overzicht article {
        width: 100% !important;
    }
    .page_header h1 {
        font-size: 1.7em;
    }
    .page_header .c {
        font-size: 18px;
        width: 95%;
    }
    .instagram_feed .instagram_post {
        width: 220px;
        height: 220px;
    }
    .slogan {
        font-size: 1.7rem;
    }
    .disclaimer,
    .socials a {
        font-size: .8em;
    }
    .disclaimer span {
        margin: 0 1px;
    }
}

@media screen and (max-width: 550px) {
    .header.failed {
        padding: 60px 20px;
    }
    .reservatie-legende h2 {
        font-size: 1.1em;
    }
    .checkin-info .type p {
        font-size: 15px;
    }
    .checkin-info .type p span {
        width: 30%;
    }
    .topper {
        width: 95%;
        border-bottom-right-radius: 20px;
        text-align: center;
        padding: 10px;
    }
    .topper a {
        font-size: 15px;
    }
    .menubtn {
        font-size: 25px;
        width: 45px;
        height: 45px;
    }
    .navigatie {
        width: 95%;
    }
    .navigatie h1 {
        font-size: 22px;
    }
    .logo {
        width: 40px;
    }
    .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;
    }
    .home_ak {
        height: 50vh;
    }
    .videoContainer {
        height: 100%;
    }
    .textcontent h2 {
        font-size: 25px;
    }
    .andere_realisaties>div article {
        width: 98%;
    }
    .domein_content aside p {
        font-size: .8em;
    }
    .domein_images article:not(:nth-child(-n+4)) {
        display: none;
    }
    .domein_controls {
        bottom: unset;
        top: 90%;
    }
}

@media screen and (max-width: 530px) {
    .instagram_feed .instagram_post {
        width: 180px;
        height: 180px;
    }
    .domein_content aside article div:not(div.domeinen_ov_container):not(div.domeinen_ov_overlay):not(div.domeinen_ov_content) {
        width: 100%;
    }
    .specialRates {
        padding-left: 0;
        padding-right: 0;
        width: 95%;
    }
    .specialRates i {
        display: none;
    }
    .specialRates:hover i {
        transform: unset;
    }
}

@media screen and (max-width: 510px) {
    .fc .fc-toolbar>*>* {
        margin-left: 0 !important;
        margin-top: 10px !important;
    }
}

@media screen and (max-width: 500px) {
    .contact_gegevens h1 {
        font-size: 1.5em;
    }
    .contact_gegevens>div {
        margin-top: 0;
    }
    .contact_split h2 {
        font-size: 20px;
        margin-bottom: 15px;
    }
    .contact_info p {
        font-size: 16px;
        font-weight: 200;
        color: #252525;
    }
    .contact_split div {
        justify-content: flex-start;
        align-items: flex-start;
        -ms-align-items: flex-start;
    }
    .home_banner article h2 {
        font-size: 1.1em;
    }
    .home_banner article h3 {
        font-size: .7em;
        font-weight: 500;
        margin-bottom: 0;
    }
    #content-container h1 {
        font-size: 1.8em;
    }
    .home_ak .content h2 {
        font-size: 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;
    }
    .domeinen_ov .row article {
        width: 100%;
    }
    .navi_footer>div {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        -ms-align-items: center;
        line-height: 150%;
    }
    .navi_footer span {
        display: none;
    }
}

@media screen and (max-width: 450px) {
    .navigatie h1 {
        font-size: 20px;
    }
    .plenso_cookies {
        right: 10px;
    }
    .instagram_feed {
        justify-content: center;
    }
    .instagram_feed .instagram_post {
        width: 150px;
        height: 150px;
        margin: 5px;
    }
    .fc button {
        height: 2em !important;
    }
    .fc button,
    .fc table,
    body .fc {
        font-size: .9em !important;
    }
    .fc-toolbar,
    .fc-toolbar .fc-right {
        display: flex !important;
        flex-direction: column !important;
    }
}

@media screen and (max-width: 400px) {
    .domein_detail_topper {
        top: 5px;
        right: 5px;
        left: 5px;
        font-size: 14px;
        justify-content: space-between;
        width: calc(100% - 10px);
    }
    .gemeente {
        font-size: 12px;
        padding: 3px 10px;
    }
    .goBook-mob {
        padding: 3px 10px;
        font-size: 12px;
    }
    .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;
    }
}