/* Document
========================================================================== */
/**
* 1. Correct the line height in all browsers.
* 2. Prevent adjustments of font size after orientation changes in iOS.
*/
html {
    line-height: 1.15; /* 1 */
    -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
========================================================================== */
/**
* Remove the margin in all browsers.
*/
body {
    margin: 0;
    font-family: "Alexandria", Arial, serif;
    font-weight: normal;
    font-style: normal;
    overflow-x: hidden;
    color: #000;
}

p {
    font-weight: 300;
    color: #000;
}

.ml-3 { margin-left: 15px; }

/**
* Render the `main` element consistently in IE.
*/
main {
    display: block;
    padding-top: 100px;
}

img {
    border-style: none;
    max-width: 100%;
    height: auto;
}

a { text-decoration: none; }


#lottie-animation { width: calc(100% + 1px) !important; }

/**
* Correct the font size and margin on `h1` elements within `section` and
* `article` contexts in Chrome, Firefox, and Safari.
*/
/* Headings (Desktop) */
h1 {
    font-size: 45px;
    line-height: 100%;
    font-weight: 400;
}

h2 {
    font-size: 40px;
    line-height: 100%;
    font-weight: 400;
}

h3 {
    font-size: 30px;
    line-height: 100%;
    font-weight: 400;
}

h4 {
    font-size: 25px;
    line-height: 30px;
    line-height: 100%;
    font-weight: 400;
}

ol, ol li, ul, ul li { font-weight: 300; }
/* Text (Desktop) */
.text-lg {
    font-size: 20px;
    line-height: 160%;
    font-weight: normal;
}

.text-md {
    font-size: 16px;
    line-height: 160%;
    font-weight: normal;
}

.text-sm {
    font-size: 13px;
    line-height: 160%;
    font-weight: normal;
}

/* Quote */
.quote {
    font-size: 22px;
    line-height: 160%;
    font-weight: normal;
}

/* Button text */
button {
    font-size: 16px;
    line-height: 100%;
    font-weight: normal;
}

.btn {
    border-radius: 100px !important;
    padding: 12px 15px 12px 15px;
    display: flex;
    flex-direction: row;
    gap: 15px;
    align-items: center;
    justify-content: flex-start;
    flex-shrink: 0;
    font-size: 16px;
    line-height: 100%;
    font-weight: normal;
    background-color: transparent;
}
.btn.btn-primary {
    background: #000;
    color: #ffffff;
    border: 0;
    display: inline-block;
}
.btn.arrow::after, .btn.arrow2::after {
    content: '';
    display: inline-block;
    width: 25px;
    height: 13px;
    background-image: url('../images/icons/arrow-right.svg');
    background-size: contain;
    background-repeat: no-repeat;
    margin-left: 10px;
    vertical-align: middle;
}
.btn.arrow2::after {
    background-image: url('../images/icons/arrow-right-black.svg');
}
.btnback { 
    font-weight: 500;
    margin-bottom: 40px;
    display: block;
    color: #000;
}
.btnback.arrow::before, .btnback.arrow2::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 24px;
    background-image: url('../images/icons/arrow-left.svg');
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 14px;
    vertical-align: middle;
}
.btn.btn-primary:hover {
    background: #000;
    color: #ffffff;
}
.btn.btn-primary.disabled {
    background-color: #ebebeb;
    color: #4d4d4d;
    cursor: not-allowed;
}
.btn img { margin-left: 10px; }
.btn.btn-secondary {
    background: #fff;
    color: #000;
}
.btn.btn-secondary:hover {
    background: #fff;
    color: #000;
}
.btn.btn-secondary.disabled {
    background-color: #ebebeb;
    color: #4d4d4d;
    cursor: not-allowed;
}
.btn.btn-basic {
    border-color: #000;
    color: #000;
    border-style: solid;
    border-width: 1px;
}
.btn.btn-basic:hover {
    border-color: #000;
    color: #000;
}
.btn.btn-basic.disabled {
    background-color: #ebebeb;
    color: #4d4d4d;
    cursor: not-allowed;
}
.btn.btn-outline {
    border-style: solid;
    border-color: #fff;
    border-width: 1px;
    color: #fff;
    flex: none;
}
.btn.btn-outline:hover {
    border-color: #fff;
    color: #ffffff;
}
.btn.btn-outline.disabled {
    background-color: #ebebeb;
    color: #4d4d4d;
    cursor: not-allowed;
}
.btn.btn-link {
    border-color: transparent;
    border-style: solid;
    border-width: 1px;
    color: #000;
}
.btn.btn-link:hover {
    border-color: transparent;
    border-style: solid;
    border-width: 1px;
    color: #000;
}
.btn.btn-link.disabled {
    background-color: #ebebeb;
    color: #4d4d4d;
    cursor: not-allowed;
}
.btn.btn-link-dark {
    border-color: transparent;
    border-style: solid;
    border-width: 1px;
    color: #fff;
}
.btn.btn-link-dark:hover {
    border-color: transparent;
    border-style: solid;
    border-width: 1px;
    color: #fff;
}
.btn.btn-link-dark.disabled {
    background-color: #ebebeb;
    color: #4d4d4d;
    cursor: not-allowed;
}
.btn:hover {
    opacity: 1 !important;
}

/* Small text */
.text-link {
    font-size: 16px;
    line-height: 100%;
    font-weight: normal;
}

/* Mobile styles */
@media (max-width: 767px) {
    h1 {
        font-size: 32px;
    }
    h2 {
        font-size: 28px;
    }
    h3 {
        font-size: 22px;
    }
    h4 {
        font-size: 18px;
    }
    .text-lg {
        font-size: 16px;
    }
    .text-md {
        font-size: 14px;
    }
    .text-sm {
        font-size: 11px;
    }
    .quote {
        font-size: 20px;
    }
    button {
        font-size: 14px;
    }
    .text-link {
        font-size: 14px;
    }
}
/* Additional styling for alignment and spacing */
.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-left {
    text-align: left;
}

@media (min-width: 1400px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1362px;
    }
}
/* Grouping content
========================================================================== */
/**
* 1. Add the correct box sizing in Firefox.
* 2. Show the overflow in Edge and IE.
*/
hr {
    box-sizing: content-box; /* 1 */
    height: 0; /* 1 */
    overflow: visible; /* 2 */
}

/**
* 1. Correct the inheritance and scaling of font size in all browsers.
* 2. Correct the odd `em` font sizing in all browsers.
*/
pre {
    font-family: monospace, monospace; /* 1 */
    font-size: 1em; /* 2 */
}

/* Text-level semantics
========================================================================== */
/**
* Remove the gray background on active links in IE 10.
*/
a {
    background-color: transparent;
}

/**
* 1. Remove the bottom border in Chrome 57-
* 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
*/
abbr[title] {
    border-bottom: none; /* 1 */
    text-decoration: underline; /* 2 */
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted; /* 2 */
}

/**
* Add the correct font weight in Chrome, Edge, and Safari.
*/
b,
strong {
    font-weight: bolder;
}

/**
* 1. Correct the inheritance and scaling of font size in all browsers.
* 2. Correct the odd `em` font sizing in all browsers.
*/
code,
kbd,
samp {
    font-family: monospace, monospace; /* 1 */
    font-size: 1em; /* 2 */
}

/**
* Add the correct font size in all browsers.
*/
small {
    font-size: 80%;
}

/**
* Prevent `sub` and `sup` elements from affecting the line height in
* all browsers.
*/
sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}

/* Embedded content
========================================================================== */
/**
* Remove the border on images inside links in IE 10.
*/
img {
    border-style: none;
}

/* Forms
========================================================================== */
/**
* 1. Change the font styles in all browsers.
* 2. Remove the margin in Firefox and Safari.
*/
button,
input,
optgroup,
select,
textarea {
    font-family: inherit; /* 1 */
    font-size: 100%; /* 1 */
    line-height: 1.15; /* 1 */
    margin: 0; /* 2 */
}

/**
* Show the overflow in IE.
* 1. Show the overflow in Edge.
*/
button,
input {
    /* 1 */
    overflow: visible;
}

/**
* Remove the inheritance of text transform in Edge, Firefox, and IE.
* 1. Remove the inheritance of text transform in Firefox.
*/
button,
select {
    /* 1 */
    text-transform: none;
}

a:hover {
    opacity: 1 !important;
}

.tekstblok a, .informatie:not(.inner-page) p a { 
    color: #687a58;
}

p a:hover, ul li a:hover, .navbar ul.sub-menu li a:hover { text-decoration: underline; }
.navbar li a:hover { text-decoration: none; }

/**
* Correct the inability to style clickable types in iOS and Safari.
*/
button,
[type=button],
[type=reset],
[type=submit] {
    -webkit-appearance: button;
}

/**
* Remove the inner border and padding in Firefox.
*/
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
    border-style: none;
    padding: 0;
}

/**
* Restore the focus styles unset by the previous rule.
*/
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
    outline: 1px dotted ButtonText;
}

/**
* Correct the padding in Firefox.
*/
fieldset {
    padding: 0.35em 0.75em 0.625em;
}

/**
* 1. Correct the text wrapping in Edge and IE.
* 2. Correct the color inheritance from `fieldset` elements in IE.
* 3. Remove the padding so developers are not caught out when they zero out
*    `fieldset` elements in all browsers.
*/
legend {
    box-sizing: border-box; /* 1 */
    color: inherit; /* 2 */
    display: table; /* 1 */
    max-width: 100%; /* 1 */
    padding: 0; /* 3 */
    white-space: normal; /* 1 */
}

/**
* Add the correct vertical alignment in Chrome, Firefox, and Opera.
*/
progress {
    vertical-align: baseline;
}

/**
* Remove the default vertical scrollbar in IE 10+.
*/
textarea {
    overflow: auto;
}

/**
* 1. Add the correct box sizing in IE 10.
* 2. Remove the padding in IE 10.
*/
[type=checkbox],
[type=radio] {
    box-sizing: border-box; /* 1 */
    padding: 0; /* 2 */
}

/**
* Correct the cursor style of increment and decrement buttons in Chrome.
*/
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
    height: auto;
}

/**
* 1. Correct the odd appearance in Chrome and Safari.
* 2. Correct the outline style in Safari.
*/
[type=search] {
    -webkit-appearance: textfield; /* 1 */
    outline-offset: -2px; /* 2 */
}

/**
* Remove the inner padding in Chrome and Safari on macOS.
*/
[type=search]::-webkit-search-decoration {
    -webkit-appearance: none;
}

.search input[type=text]::placeholder { color: #222; }

/**
* 1. Correct the inability to style clickable types in iOS and Safari.
* 2. Change font properties to `inherit` in Safari.
*/
::-webkit-file-upload-button {
    -webkit-appearance: button; /* 1 */
    font: inherit; /* 2 */
}

/* Interactive
========================================================================== */
/*
* Add the correct display in Edge, IE 10+, and Firefox.
*/
details {
    display: block;
}

/*
* Add the correct display in all browsers.
*/
summary {
    display: list-item;
}

/* Misc
========================================================================== */
/**
* Add the correct display in IE 10+.
*/
template {
    display: none;
}

/**
* Add the correct display in IE 10.
*/
[hidden] {
    display: none;
}

/* -------------------------------------------------------------------------- */
/*                              // Header & Menu                              */
/* -------------------------------------------------------------------------- */
header {
    padding: 20px 0;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: white;
    z-index: 1000;
    transition: top 0.3s ease-in-out;
}

.sticky {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

a.navbar-brand {
    margin: 0;
    padding: 0;
    height: 60px;
}

a.navbar-brand img, .subgemeente-logo { height: 60px; width: auto; }

.navbar-expand-lg {
    padding: 0;
}

.navbar-expand-lg .navbar-nav .nav-link {
    color: #000000;
    text-align: left;
    font-family: "Alexandria", sans-serif;
    font-size: 16px;
    line-height: 160%;
    letter-spacing: -0.02em;
    font-weight: 300;
    position: relative;
    padding: 20px 20px 0px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
    color: #687a58;
}
.navbar-nav .nav-link:after,
.navbar-nav .nav-link.active:after,
.navbar-nav .nav-link.show:after {
    content: "";
    width: 100%;
    height: 1px;
    display: block;
    position: relative;
    bottom: -4px;
}
.navbar-nav .nav-link:hover:after,
.navbar-nav .nav-link.active:after,
.navbar-nav .nav-link.show:after {
    background-color: #687a58;
}

ul.sub-menu {
    padding: 0;
    margin: 0;
    display: none;
    list-style: none;
}
ul.sub-menu li a {
    font-size: 14px;
    text-decoration: none;
    padding: 20px;
    display: block;
    color: #000;
    font-weight: 300;
}
ul.sub-menu li a.text-sm-2 {
    font-size: 18px;
    font-weight: 400;
}

@media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav {
        margin-left: auto;
    }
}
/* -------------------------------------------------------------------------- */
/*                                   Banner                                   */
/* -------------------------------------------------------------------------- */
section.banner {
    background: rgb(205, 221, 191);
    padding-bottom: 42px;
    margin-bottom: 120px;
    position: relative;
    z-index: 10;
}

banner {
    display: block;
    position: relative;
    z-index: 1;
}
banner svg.overlay {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    overflow: hidden;
}
banner form {
    margin-top: 50px;
}
banner rect {
    fill: #cdddbf;
}

.caption {
    background: var(--primary-colors-green, #cdddbf);
    height: 420px;
    position: absolute;
    left: 0;
    bottom: 0;
    max-width: 48%;
    padding: 80px 0 50px 0;
    z-index: 2;
}
.caption .inner-caption {
    max-width: 100%;
}

.caption .inner-caption h1, .caption .inner-caption p { max-width: 80%; }

.search {
    position: relative;
}
.search input[type=text] {
    border: 0;
    background: 0;
    border-bottom: 1px solid #4d4d4d;
    color: #4d4d4d;
    font-size: 16px;
    line-height: 160%;
    letter-spacing: -0.02em;
    font-weight: 300;
    min-width: 293px;
    outline: 0;
    border-radius: 0;
    padding: 0 10px 10px 30px;
}
.search img {
    position: absolute;
    left: 0;
    top: 0;
}

.select-dropdown {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    justify-content: flex-start;
    flex-shrink: 0;
    position: relative;
}
.select-dropdown .dropdown-toggle {
    border-style: solid;
    border-color: #000;
    border-width: 1px;
    padding: 7px 30px 7px 15px;
    background: none;
    border-radius: 0;
    color: #4d4d4d;
    font-size: 13px;
    line-height: 160%;
    letter-spacing: -0.02em;
    font-weight: 300;
}
.select-dropdown .dropdown-toggle::after {
    display: none;
}
.select-dropdown a.dropdown-item {
    font-size: 14px;
}
.select-dropdown a.dropdown-item:hover {
    background: #cdddbf;
}
.select-dropdown .dropdown-menu.show {
    display: block;
    border-color: #000;
    border-radius: 0;
}

.select-dropdown .dropdown-menu.show li:first-child {
    display: none !important;
}
.select-dropdown .arrow {
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    position: absolute;
    overflow: visible;
    right: 17px;
    top: 6px;
}

.input-group {
    gap: 30px;
    margin-bottom: 30px;
}

#htmlSelect {
    display: none;
}

.btn-group-wrap {
    background: var(--primary-colors-dark-blue, #002143);
    width: 52%;
    position: absolute;
    right: 0;
    z-index: 2;
    left: auto;
    padding: 32px 33px;
    bottom: -94px;
}

.img-wrap2 .btn-group-wrap {
    width: 100%;
}

.mtop100 { margin-top: 100px; }

.btn-group {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
    justify-content: flex-start;
}

section.categorie-kolom {
    padding: 0 0 20px;
    height: 100vh;
    background-color: #fff;
    z-index: 0;
    position: relative;
}

.categorie-kolom {
    position: relative;
    overflow: hidden;
}

.fix-row {
    display: flex;
    align-items: flex-end;
}
.categorie-kolom .fix-row { 
    align-items: flex-start;
}
.fix-row .col-left {
    flex: 0 0 48%;
}
.fix-row .col-left h2 { max-width: 320px; margin-bottom: 20px; }
.fix-row .col-right {
    flex: 1;
    /* padding-right: 223px; */
    max-width: 47%;
    overflow: auto;
    max-height: 100vh;
    overflow-y: hidden;
}

.list-vertical-scroll {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Zoekfilter */
.mm_content { margin: 30px auto 70px; }

.spacer { height: 40px; display: block; }

@media (min-width: 992px) {
    .list-item {
        display: flex !important;
    }
    button#loadMoreButton {
        display: none;
    }
}
.list-item {
    display: flex;
}
.list-item .icon {
    min-width: 163px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #cdddbf;
    min-height: 163px;
}
.list-item .description {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    padding-left: 35px;
    padding-right: 35px;
    width: 100%;
    /*    width: calc(100% - 163px);*/
}
.list-item .description p {
    margin: 0;
}
.list-item .description .arrow {
    background: #fff;
    padding: 5px;
    position: absolute;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
}
.list-item:hover {
    cursor: pointer;
}
.list-item:hover .description {
    background-color: #002143;
}
.list-item:hover .description * {
    color: #fff;
}
.list-item:hover .description .arrow {
    display: inline-block;
}

/* -------------------------------------------------------------------------- */
/*                                  Section3                                  */
/* -------------------------------------------------------------------------- */
section.recent-slider {
    background: #cdddbf;
    padding: 100px 0;
}
section.recent-slider h3 {
    margin-bottom: 35px;
}

.post-slider {
    margin: 0 -9px;
}

section.recent-slider .slick-track {
    display: flex !important;
    align-items: stretch; /* Zorgt dat alle items dezelfde hoogte krijgen */
}
section.recent-slider .slick-slide { height: auto; }
.post-item {
    flex: 1 1 auto; /* Laat de items uitbreiden of krimpen om gelijke hoogte te hebben */
    display: flex;
    flex-direction: column; /* Zorgt dat de inhoud netjes blijft */
    background: #002143;
}
.post-header {
    padding: 32px;
}
.post-header ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin-bottom: 10px;
    gap: 10px;
}
.post-header ul li {
    color: #fff;
    font-size: var(--desktop-text-small-font-size, 13px);
    line-height: var(--desktop-text-small-line-height, 160%);
    font-weight: var(--desktop-text-small-font-weight, 300);
    text-decoration: none;
}
.post-header ul li:not(:last-child):after {
    margin-left: 10px;
    content: "|";
    display: inline-block;
    color: #fff;
    font-size: var(--desktop-text-small-font-size, 13px);
    line-height: var(--desktop-text-small-line-height, 160%);
    font-weight: var(--desktop-text-small-font-weight, 300);
}
.post-header h4 {
    margin: 0;
    color: #fff;
    min-height: 80px;
}

.post-item {
    margin: 0 9px;
}
.post-card:hover img.hovr {
    opacity: 1;
}

.post-body {
    position: relative;
}
.post-body img {
    width: 100%;
}
.post-body img.hovr {
    position: absolute;
    left: 0;
    top: -1px;
    bottom: -1px;
    right: 0;
    opacity: 0;
    transition: all 0.2s ease 0.3s;
}

/* -------------------------------------------------------------------------- */
/*                                  Section4                                  */
/* -------------------------------------------------------------------------- */
.img-wrap {
    position: relative;
    overflow: hidden;
    max-width: 536px;
}
.img-wrap img {
    position: relative;
    /*    width: 536px;*/
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    /*    height: 588px;*/
}
.img-wrap svg {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
}

section.informatie {
    padding: 120px 0;
}
section.informatie h3 {
    font-size: 28px;
}
section.informatie .text-wrap {
    white-space: normal !important;
    max-width: 80%;
    padding: 60px 0 0 60px;
}

section.informatie .text-wrap .btn { margin-top: 20px; }

/* -------------------------------------------------------------------------- */
/*                                  Section6                                  */
/* -------------------------------------------------------------------------- */
section.aangesloten-org {
    border-top: 1px solid #001317;
    border-bottom: 1px solid #001317;
    max-width: 100%;
    overflow: hidden;
    margin-bottom: 80px;
}
section.aangesloten-org .inline-wrap {
    display: flex;
    align-items: center;
}
section.aangesloten-org h4 {
    padding: 52px 64px 52px 0;
    border-right: 1px solid #000;
    margin: 0;
}
section.aangesloten-org ul {
    padding-left: 62px;
    list-style: none;
}
section.aangesloten-org .slick-track {
    display: flex;
    gap: 60px;
}

/* -------------------------------------------------------------------------- */
/*                                   Footer                                   */
/* -------------------------------------------------------------------------- */
.footer-top {
    background: var(--primary-colors-dark-blue, #002143);
    padding: 100px 0;
}
.footer-top h4 {
    margin-bottom: 20px;
    color: #fff;
}
.footer-top ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    gap: 20px;
    flex-direction: column;
}
.footer-top ul li a {
    color: #fff;
    text-decoration: none;
    font-size: var(--desktop-text-md-font-size, 16px);
    line-height: var(--desktop-text-md-line-height, 160%);
    letter-spacing: var(--desktop-text-md-letter-spacing, -0.02em);
    font-weight: var(--desktop-text-md-font-weight, 300);
}
.footer-top ul li a:hover, .footer-top ul li.current-menu-item a, .footer-top ul li a.active { color: #fff; text-decoration: underline; }

a.footer-logo {
    padding: 23px 32px;
    display: inline-block;
    background: #cdddbf;
    position: absolute;
    left: 0;
    bottom: -165px;
}
a.footer-logo img {
    width: 219px;
}

.footer-bottom {
    background: var(--primary-colors-green, #cdddbf);
    padding: 20px 0;
}
.footer-bottom ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 40px;
    list-style: none;
    margin-bottom: 0;
}
.footer-bottom ul li a {
    text-decoration: none;
    color: #000;
    font-size: var(--desktop-text-md-font-size, 16px);
    line-height: var(--desktop-text-md-line-height, 160%);
    letter-spacing: var(--desktop-text-md-letter-spacing, -0.02em);
    font-weight: var(--desktop-text-md-font-weight, 300);
}

.footer-bottom ul li a:hover { color: #000; text-decoration: underline; }

/* -------------------------------------------------------------------------- */
/*                                    Modal                                   */
/* -------------------------------------------------------------------------- */
body.pop-open {
    overflow: hidden;
}

.overlay-element {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    display: flex;
    background: rgba(0, 0, 0, 0); /* Start volledig transparant */
    opacity: 0; /* Onzichtbaar */
    visibility: hidden; /* Voorkomt interactie */
    justify-content: flex-end;
    z-index: 9999;
    transform: translateX(100%); /* Start buiten beeld */
    transition: transform 0.4s ease-in-out, opacity 0.8s ease-in-out, background 2.0s ease-in-out;
}
.overlay-element.show {
    right: 0; /* Schuift in beeld */
    background: rgba(0, 0, 0, 0.5); /* Fade in achtergrond */
    opacity: 1; /* Volledig zichtbaar */
    visibility: visible; /* Interactie mogelijk */
    transform: translateX(0); /* Schuift content in */
}
.overlay-element .overlay-content {
    flex: 0 0 60%;
    background: #cdddbf;
    padding: 133px 140px;
    position: relative;
    overflow-y: auto;
}
.overlay-element .overlay-content svg.pop-overlay {
    position: fixed;
    right: calc(60% - 1px);
    top: 0;
    bottom: 0;
    width: 210px;
}
.overlay-element sapn.close {
    background: #000;
    border-radius: 50%;
    width: 55px;
    height: 55px;
    position: fixed;
    right: 50px;
    top: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.overlay-inner-content > img {
    margin-bottom: 20px;
}

.overlay-inner-content {
    max-width: 500px;
}

/* -------------------------------------------------------------------------- */
/*                                  Page2 S1                                  */
/* -------------------------------------------------------------------------- */
.img-wrap2 {
    display: inline-block;
    position: relative;
}
.img-wrap2 svg {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
}

section.col-two-inline {
    background: #cdddbf;
    padding-top: 53px;
}

section.tekstblok {
    padding: 120px 0;
}

section.informatie.inner-page {
    background: #cdddbf;
}
section.informatie.inner-page .img-wrap {
    margin-left: auto;
}

.text-block {
    max-width: 90%;
    border-bottom: 1px solid #000000;
    padding-bottom: 40px;
    margin-bottom: 50px;
}

.text-block p, .text-block a { color: #000; }
.text-block a.btn { display: inline-flex; margin-right: 10px; margin-bottom: 15px; }

.container-inner {
    max-width: 1026px;
    margin: 0 auto;
}

@media (max-width: 1200px) {
    .list-item .icon {
        min-width: 100px;
        min-height: 100px;
        width: 100px;
        height: 100px;
    }
    .list-item .icon img {
        max-width: 30px;
    }
    .list-item .description { padding: 15px 35px 15px 20px; }
    .fix-row .col-right { max-width: 51%; }
}

@media (max-width: 991px) {
    .navbar-expand-lg .navbar-nav .nav-link {
        font-size: 28px;
        display: inline-block;
        padding: 18px 15px;
        font-weight: normal;
    }
    button.navbar-toggler {
        background: #000000;
        width: 40px;
        height: 40px;
        padding: 0;
        border-radius: 50%;
        position: relative;
        z-index: 16;
    }
    button.navbar-toggler svg.mb-open {
        display: none;
    }
    button.navbar-toggler.collapsed svg.mb-close {
        display: none;
    }
    button.navbar-toggler.collapsed svg.mb-open {
        display: inline-block;
    }
    .navbar-expand-lg .navbar-nav .nav-link {
        font-size: 28px;
    }
    .navbar-collapse {
        flex-basis: 100%;
        flex-grow: 1;
        align-items: center;
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        top: 99px;
        background: #fff;
        z-index: 14;
        /* display: flex; */
        /* align-items: center; */
        padding-top: 5%;
        padding-left: 20px;
    }
    .container,
    .container-md,
    .container-sm {
        max-width: 100%;
    }
    .caption .inner-caption h1, .caption .inner-caption p { max-width: 100%; }
    .caption {
        background: var(--primary-colors-green, #cdddbf);
        height: auto;
        position: relative;
        left: 0;
        bottom: 0;
        max-width: 95%;
        padding: 33px 0 0 0;
        margin-top: -59px;
    }
    .list-item { display: none; }
    .list-item:nth-child(1), .list-item:nth-child(2), .list-item:nth-child(3) { display: flex; }
    .input-group {
        flex-direction: column;
    }
    .search input[type=text] {
        width: 100%;
    }
    .select-dropdown {
        width: 100%;
    }
    .select-dropdown .dropdown-toggle {
        width: 100%;
    }
    .select-dropdown .dropdown-menu.show {
        width: 100%;
    }
    .mtop100 { margin-top: 0px; }
    .pin-spacer {
        bottom: -84px !important;
        top: auto !important;
        height: auto !important;
        padding: 0 !important;
        left: 0 !important;
    }
    .navbar-nav .nav-link:after, .navbar-nav .nav-link.active:after, .navbar-nav .nav-link.show:after { bottom: 0; }
    body.page-template-page-tpl-zoeken .pin-spacer {
        top: 45px !important;
    }
    .btn-group-wrap {
        width: 100%;
        padding: 13px 12px;
        bottom: 0 !important;
        top: unset !important;
        position: static !important;
        transform: translate(0, 0) !important;
        overflow: scroll;
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE en Edge */
    }

    .element::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Opera */
    }
    section.banner { margin-bottom: 20px; }
    .fix-row {
        display: flex;
        align-items: flex-start;
        flex-direction: column;
        gap: 50px;
    }
    .fix-row .col-left {
        flex: 0 0 100%;
    }
    .fix-row .col-left h2 {
        font-size: 28px;
    }
    .fix-row .col-left h2 br {
        display: none;
    }
    .fix-row .col-right {
        flex: 1;
        max-width: 100%;
        max-height: 500px;
    }
    .list-item .icon {
        min-width: 120px;
        min-height: 120px;
        width: 120px;
        height: 120px;
    }
    .list-item .icon img {
        max-width: 40px;
    }
    section.categorie-kolom {
        padding: 90px 0 60px;
        height: 90vh;
        background-color: #fff;
        z-index: 0;
        position: relative;
    }
    section.recent-slider {
        background: #cdddbf;
        padding: 60px 0;
    }
    section.informatie .text-wrap {
        max-width: 95%;
        padding-left: 0;
    }
    section.aangesloten-org h4 {
        padding: 30px 25px 30px 0;
    }
    section.aangesloten-org ul {
        gap: 26px;
        padding-left: 16px;
        margin: 0;
    }
    section.informatie {
        padding: 60px 0;
    }
    .footer-top ul {
        margin-bottom: 30px;
    }
    a.footer-logo {
        padding: 18px 20px;
        position: relative;
        left: 0;
        bottom: -60px;
    }
    .footer-top {
        background: var(--primary-colors-dark-blue, #002143);
        padding: 60px 0;
    }
    .footer-bottom ul {
        gap: 25px;
        flex-wrap: wrap;
        justify-content: flex-start;
    }
    .img-wrap { margin: 0 auto; }
    .img-wrap img {
        position: relative;
        max-width: 100%;
        -o-object-fit: cover;
        object-fit: cover;
        -o-object-position: center;
        object-position: center;
        margin: 0 auto;
        /*        height: 359px;*/
    }
    .img-wrap2 { float: right; position: relative; right: calc(var(--bs-gutter-x) * -.5); }
    ul.sub-menu {
        display: block;
    }
    a.navbar-brand {
        margin: 0;
        padding: 0;
        position: relative;
        z-index: 16;
    }
    section.tekstblok {
        padding: 60px 0;
    }
    header.sticky {
        padding: 20px 0;
        position: fixed;
        left: 0;
        top: 0;
        right: 0;
        z-index: 15;
        background: #fff;
        animation: slideDown 0.45s ease-out;
    }
    @keyframes slideDown {
        from {
            transform: translateY(-100%);
        }
        to {
            transform: translateY(0);
        }
    }
    .overlay-element .overlay-content {
        flex: 0 0 100%;
        padding: 105px 38px;
    }
    .overlay-inner-content { max-width: inherit; }
    .overlay-element .overlay-content svg.pop-overlay { display: none; }
    section.categorie-kolom {
        height: auto;
        padding-bottom: 40px;
    }
    .fix-row .col-right {
        max-height: none;
        overflow: visible;
    }
    button#loadMoreButton {
        margin-top: 30px;
    }
    .list-item .description {
        padding: 15px 35px 15px 20px; }
    width: calc(100% - 120px);
}
}
@media (max-width: 767px) {
    section.categorie-kolom {
        height: auto;
    }
    .fix-row .col-right {
        max-height: none;
        overflow: visible;
    }
    button#loadMoreButton {
        margin-top: 30px;
    }
    .post-header { padding: 18px; }
    .post-header h4 { line-height: 24px; font-size: 16px; }
    section.tekstblok h2 br { display: none; }
}/*# sourceMappingURL=style.css.map */