/* PALET */

@import url('https://fonts.googleapis.com/css2?family=Dongle:wght@300;400;700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:wght@300;400;500;700&display=swap');

:root {
    --roze: #e72061;
    --lichtroze: #f29695;
    --oranje: #f69f19;
    --groenfris: #bec631;
    --groengrauw: #4a594f;
    --groen: #518942;
    --lila: #9783bc;
}

.fonts {
    font-family: 'Dongle', sans-serif;
    font-family: 'Poppins', sans-serif;
    font-family: 'Roboto', sans-serif;
}

.Oranje-LichtRoze {
    background: rgb(246, 159, 25);
    background: linear-gradient(90deg, rgba(246, 159, 25, 1) 0%, rgba(242, 150, 149, 1) 100%);
}

.Oranje-FrisGroen {
    background: rgb(246, 159, 25);
    background: linear-gradient(90deg, rgba(246, 159, 25, 1) 0%, rgba(190, 198, 49, 1) 100%);
}

.Lila-Groen {
    background: rgb(151, 131, 188);
    background: linear-gradient(90deg, rgba(151, 131, 188, 1) 0%, rgba(81, 137, 66, 1) 100%);
}

.Roze-Groen {
    background: rgb(231, 32, 97);
    background: linear-gradient(90deg, rgba(231, 32, 97, 1) 0%, rgba(81, 137, 66, 1) 100%);
}

.Oranje-Lila {
    background: rgb(246, 159, 25);
    background: linear-gradient(90deg, rgba(246, 159, 25, 1) 0%, rgba(151, 131, 188, 1) 100%);
}

.Lila-Roze {
    background: rgb(151, 131, 188);
    background: linear-gradient(90deg, rgba(151, 131, 188, 1) 0%, rgba(231, 32, 97, 1) 100%);
}

.Oranje-Roze {
    background: rgb(246, 159, 25);
    background: linear-gradient(90deg, rgba(246, 159, 25, 1) 0%, rgba(231, 32, 97, 1) 100%);
}

/* NORMALIZE */

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

h1,
h2,
h3,
h4,
body,
figure,
dd,
dl,
dt,
.blog .fields-container,
ul:not(.content-main ul) {
    padding: 0;
    margin: 0;
}

li:not(.content-main li) {
    list-style: none;
}

a:not(.content-main a) {
    text-decoration: none;
}

.normal {
    font-weight: normal;
}

body {
    -webkit-text-size-adjust: 100%;
}

/* MAIN */

body {
    background-color: #dadada;
}

.main-container {
    width: 100%;
    max-width: 1920px;
    margin: auto;
    background-color: #fff;
    overflow: hidden;
    position: relative;
}

.top-container {
    width: 100%;
    max-width: 1920px;
    position: fixed;
    z-index: 12;
    padding: 25px 0;
}

.container {
    width: 100%;
    float: left;
    clear: left;
}

.content {
    width: 100%;
    max-width: 1280px;
    position: relative;
    margin: auto;
    z-index: 1;
    padding: 0 60px;
}

/* HEADER */
@keyframes dialog-popup {
    0% {
        opacity: 0;
        transform: scale(.1);
        animation-timing-function: ease-out;
    }

    70% {
        opacity: 1;
        transform: scale(1.1);
        animation-timing-function: ease-in;
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.dialog {
    background: #fff;
    width: 400px;
    position: absolute;
    top: 75px;
    right: 50px;
    height: 600px;
    -webkit-border-top-left-radius: 190px;
    -webkit-border-bottom-right-radius: 190px;
    -moz-border-radius-topleft: 190px;
    -moz-border-radius-bottomright: 190px;
    border-top-left-radius: 190px;
    border-bottom-right-radius: 190px;
    padding: 70px 50px;
    z-index: 1;
    overflow: hidden;
    transition: all .3s ease;
    animation-name: dialog-popup;
    animation-duration: .7s;
    animation-direction: alternate;
    animation-fill-mode: forwards;
    transform-origin: top right;
    animation-delay: .5s;
    opacity: 0;
}

.dialog::before {
    content: "";
    width: 280px;
    height: 280px;
    background-image: url(../images/element-star-color.svg);
    background-position: top right;
    background-repeat: no-repeat;
    background-size: 100%;
    position: absolute;
    bottom: -60px;
    right: -105px;
    z-index: -1;
}

@keyframes dialog-popup-shadow {
    0% {
        opacity: 0;
        top: 75px;
        right: 50px;
    }

    100% {
        opacity: 1;
        top: 90px;
        right: 35px;
    }
}

.dialog-shadow {
    width: 400px;
    position: absolute;
    top: 115px;
    right: 0px;
    height: 600px;
    -webkit-border-top-left-radius: 200px;
    -webkit-border-bottom-right-radius: 200px;
    -moz-border-radius-topleft: 200px;
    -moz-border-radius-bottomright: 200px;
    border-top-left-radius: 200px;
    border-bottom-right-radius: 200px;
    background: rgb(231, 32, 97);
    background: linear-gradient(90deg, rgba(231, 32, 97, 1) 0%, rgba(190, 198, 49, 1) 47%, rgba(81, 137, 66, 1) 100%);
    -webkit-box-shadow: 73px 100px 100px -45px rgba(0, 0, 0, 1);
    -moz-box-shadow: 73px 100px 100px -45px rgba(0, 0, 0, 1);
    box-shadow: 73px 100px 100px -45px rgba(0, 0, 0, 1);
    animation-name: dialog-popup-shadow;
    animation-duration: .3s;
    animation-direction: alternate;
    animation-fill-mode: forwards;
    animation-delay: 1.2s;
    animation-timing-function: ease;
    opacity: 0;
}

.dialog .logo {
    width: 220px;
    height: 130px;
    background-image: url(../images/logo-full.svg);
    background-position: top right;
    background-repeat: no-repeat;
    background-size: 100%;
    position: absolute;
    right: 5px;
    top: 5px;
}

.dialog .article h1 {
    font-size: 64px;
    font-family: 'Dongle', sans-serif;
    color: var(--roze);
    line-height: .6;
    margin-top: 80px;
    font-weight: normal;
}

.dialog .item-page {
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    color: #000;
    line-height: 2;
}

.dialog p {
    margin: 5px 0;
}

a.phone {
    font-size: 25px;
    font-family: 'Poppins', sans-serif;
    color: #fff;
    line-height: 1.7;
    font-weight: 500;
    margin: 15px 0;
    float: left;
    width: 100%;
}

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

.header.container-parallax {
    width: 100%;
    height: 100%;
    position: relative;
}

.wrapper-parallax,
header {
    height: 900px;
    max-height: 1060px;
}

.wrapper-parallax {
    float: left;
    width: 100%;
}

@keyframes bg {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

#parallax-bg1 img {
    opacity: 0;
    animation-name: bg;
    animation-duration: 2s;
    animation-direction: alternate;
    animation-fill-mode: forwards;
    animation-timing-function: ease;
    animation-delay: .5s;
}

#parallax-bg1,
#parallax-bg3 {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

#parallax-bg1 {
    z-index: 1;
}

#parallax-bg2 {
    z-index: 3;
    width: 100%;
    max-width: 1280px;
    position: relative;
    margin: auto;
}

#parallax-bg3 {
    z-index: 2;
}

header {
    position: relative;
    overflow: hidden;
    background-color: var(--groengrauw);
}

header .content {
    position: unset;
}

#parallax-bg1,
#parallax-bg2,
#parallax-bg3,
header {
    height: 750px;
}

a.mail,
a.facebook,
a.instagram {
    width: 25px;
    height: 25px;
    display: inline-block;
    background-repeat: no-repeat;
    background-position: left center;
    transition: all .3s ease;
    opacity: 1;
}

a.mail:hover,
a.facebook:hover,
a.instagram:hover {
    opacity: .6;
}

a.mail {
    background-image: url(../images/icon-mail-wit.svg);
    background-size: 110%;
}

a.facebook {
    background-image: url(../images/icon-fb-wit.svg);
    background-size: 80%;
}

a.instagram {
    background-image: url(../images/icon-ig-wit.svg);
    background-size: 100%;
}

.featured-bg,
.article-bg {
    position: relative;
}

.featured-bg .content {
    position: relative;
    z-index: 1;
}

.article-bg {
    margin: 30px 0 240px;
}

.featured-bg {
    padding-bottom: 150px;
}

.article-bg .bg {
    background-color: var(--groengrauw);
    mask-image: url(../images/element-bg5.svg);
    mask-size: 1921px;
    mask-repeat: no-repeat;
    mask-position: left top;
    -webkit-mask-image: url(../images/element-bg5.svg);
    -webkit-mask-size: 1921px;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: left top;
    height: 850px;
    position: absolute;
    width: 100%;
    z-index: 0;
    left: 0;
    top: -250px;
}

.article-bg .bg::before {
    content: "";
    width: 100%;
    height: 850px;
    background-color: var(--groengrauw);
    background-image: url(../images/bg-voorwie.jpg);
    background-size: 100%;
    background-position: left top;
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    bottom: 0;
}

.article-bg .bg::after {
    content: "";
    width: 100%;
    height: 850px;
    background-color: rgba(246, 159, 25, 1);
    background-image: linear-gradient(90deg, rgba(246, 159, 25, 1) 0%, rgba(74, 89, 79, 1) 53%, rgba(231, 32, 97, 1) 100%);
    position: absolute;
    left: 0;
    bottom: 0;
    opacity: .4;
}

.featured-bg .bg {
    background-color: var(--groengrauw);
    mask-image: url(../images/element-bg4.svg);
    mask-size: 1921px;
    mask-repeat: no-repeat;
    mask-position: left top;
    -webkit-mask-image: url(../images/element-bg4.svg);
    -webkit-mask-size: 1921px;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: left top;
    height: 650px;
    position: absolute;
    width: 100%;
    z-index: 0;
    left: 0;
    bottom: 0px;
}

.featured-bg .bg::before {
    content: "";
    width: 450px;
    height: 450px;
    background-color: var(--groengrauw);
    background-image: url(../images/element-star-black.svg);
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    opacity: .2;
    left: 50%;
    bottom: 0;
    margin-left: -225px;
}

footer {
    background-color: var(--groengrauw);
    mask-image: url(../images/element-bg2.svg);
    mask-size: 1921px;
    mask-repeat: no-repeat;
    mask-position: left top;
    -webkit-mask-image: url(../images/element-bg2.svg);
    -webkit-mask-size: 1921px;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: left top;
    padding: 150px 0 0 0;
    height: 350px;
    position: relative;
    margin-top: 300px;
}

footer::before {
    content: "";
    width: 450px;
    height: 450px;
    background-color: var(--groengrauw);
    background-image: url(../images/element-star-black.svg);
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    opacity: .2;
    left: 350px;
    top: 0;
}

#footer-bg {
    background-color: var(--groengrauw);
    mask-image: url(../images/element-bg3.svg);
    mask-size: 1921px;
    mask-repeat: no-repeat;
    mask-position: left top;
    -webkit-mask-image: url(../images/element-bg3.svg);
    -webkit-mask-size: 1921px;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: left top;
    height: 550px;
    position: absolute;
    width: 100%;
    bottom: 100px;
    left: 0;
}

#footer-bg::before {
    content: "";
    width: 100%;
    height: 550px;
    background-image: url(../images/bg-header2.jpg);
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    top: 0;
}

.header-bottom table.contact {
    margin: 20px auto;
}

.footer.card.footer-contact {
    width: 100%;
    float: left;
}

footer h3 {
    font-weight: 300;
    color: #fff;
    font-size: 40px;
    line-height: .7;
    font-family: 'Dongle', sans-serif;
    margin: 10px 0;
}

table.contact{
    border: 0px;
    width: 200px;
    color: #fff;
    font-size: 14px;
    line-height: 2;
    font-family: 'Poppins', sans-serif;
    margin: 20px 0;
    font-weight: 300;
}

footer table.contact{
    width: 400px;
}

table.contact td {
    background-size: 25px;
    background-position: center left;
    background-repeat: no-repeat;
    padding-left: 35px;
    text-align: left;
}

table.contact a {
    color: #fff;
    text-decoration: underline !important;
}

td.whatsapp {
    font-weight: 500;
    font-size: 18px;
    background-image: url(../images/icon-wp-wit.svg);
}

td.mail {
    background-image: url(../images/icon-mail-wit.svg);
}

td.instagram {
    background-image: url(../images/icon-ig-wit.svg);
}

td.facebook {
    background-image: url(../images/icon-fb-wit.svg);
}

#header-bottom {
    background-color: var(--groengrauw);
    mask-image: url(../images/element-bg.svg);
    mask-size: 1921px;
    mask-repeat: no-repeat;
    mask-position: left bottom;
    -webkit-mask-image: url(../images/element-bg.svg);
    -webkit-mask-size: 1921px;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: left bottom;
    padding: 70px 0 220px 0;
    position: relative;
}

#header-bottom::before {
    content: "";
    width: 450px;
    height: 450px;
    background-color: var(--groengrauw);
    background-image: url(../images/element-star-black.svg);
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    opacity: .2;
    left: 50%;
    margin-left: -225px;
    bottom: 0;
}

.main-container::before {
    content: ".................................................................................................................................................................................................................................................";
    width: 100%;
    position: absolute;
    top: 746px;
    left: 0px;
    z-index: 0;
    color: #fff;
    font-size: 40px;
    font-family: 'Dongle', sans-serif;
    line-height: 0;
    z-index: 9;
}

.block {
    float: left;
    clear: left;
}

.block#tags {
    width: 100%;
    text-align: center;
}

.block#article {
    width: 100%;
    text-align: center;
}

.block#coop {
    width: 100%;
}

.tag {
    width: 110px;
    height: 110px;
    display: inline-block;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    margin: 0 15px 15px 0;
    font-size: 0;
}

.label-icoon {
    width: 110px;
    height: 110px;
    float: left;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
    margin: 25px 0 0 0;
    font-size: 0;
}

#groen {
    background-image: url(../images/tag-groen-wit.svg);
}

#kleurrijk {
    background-image: url(../images/tag-kleurrijk-wit.svg);
}

#leven {
    background-image: url(../images/tag-leven-wit.svg);
}

#genieten {
    background-image: url(../images/tag-genieten-wit.svg);
}

#leren {
    background-image: url(../images/tag-leren-wit.svg);
}

#groeien {
    background-image: url(../images/tag-groeien-wit.svg);
}

.label-icoon.Groen {
    background-image: url(../images/tag-groen.svg);
}

.label-icoon.Kleurrijk {
    background-image: url(../images/tag-kleurrijk.svg);
}

.label-icoon.Leven {
    background-image: url(../images/tag-leven.svg);
}

.label-icoon.Genieten {
    background-image: url(../images/tag-genieten.svg);
}

.label-icoon.Leren {
    background-image: url(../images/tag-leren.svg);
}

.label-icoon.Groeien {
    background-image: url(../images/tag-groeien.svg);
}

#article h2 {
    font-weight: normal;
    color: #fff;
    font-size: 50px;
    line-height: .7;
    font-family: 'Dongle', sans-serif;
}

#article p {
    color: rgb(255 255 255 / 100%);
    font-size: 14px;
    line-height: 2;
    font-weight: 300;
    font-family: 'Poppins', sans-serif;
    margin-top: 5px;
}

#coop #booking {
    float: right;
    margin-right: 20px;
}

#booking a {
    background-color: #fff;
    background-image: url(../images/icon-book.svg);
    background-position: center left 10px;
    background-repeat: no-repeat;
    background-size: 30px;
    float: left;
    padding: 13px 20px 10px 40px;
    font-size: 30px;
    line-height: .7;
    font-family: 'Dongle', sans-serif;
    color: var(--groengrauw);
    -webkit-border-radius: 60px;
    -webkit-border-top-right-radius: 0;
    -moz-border-radius: 60px;
    -moz-border-radius-topright: 0;
    border-radius: 60px;
    border-top-right-radius: 0;
    transition: all .3s ease;
    margin-top: 10px;
}

.main-content-layout #booking a {
    background-color: var(--groengrauw);
    background-image: url(../images/icon-book-wit.svg);
    background-position: center left 10px;
    background-repeat: no-repeat;
    background-size: 30px;
    float: left;
    padding: 13px 20px 10px 40px;
    font-size: 30px;
    line-height: .7;
    font-family: 'Dongle', sans-serif;
    color: #fff;
    -webkit-border-radius: 60px;
    -webkit-border-top-right-radius: 0;
    -moz-border-radius: 60px;
    -moz-border-radius-topright: 0;
    border-radius: 60px;
    border-top-right-radius: 0;
    transition: all .3s ease;
    margin-top: 10px;
}

#booking a:hover {
    transform: scale(1.2);
}

.anchor-left {
    float: left;
    margin-left: -45px;
}

.anchor-right {
    float: right;
    margin-right: -45px;
    transform: scaleX(-1);
}

.anchor-right {
    float: right;
    margin-right: -45px;
    transform: scaleX(-1);
}

.anchor-right .anchor-title {
    transform: scaleX(-1);
    -webkit-border-radius: 60px;
    -webkit-border-top-right-radius: 0;
    -moz-border-radius: 60px;
    -moz-border-radius-topright: 0;
    border-radius: 60px;
    border-top-right-radius: 0;
}

.anchor-title {
    -webkit-border-radius: 60px;
    -webkit-border-top-left-radius: 0;
    -moz-border-radius: 60px;
    -moz-border-radius-topleft: 0;
    border-radius: 60px;
    border-top-left-radius: 0;
    background: var(--roze);
    float: left;
    padding: 13px 20px 10px 20px;
    color: #fff;
    font-size: 32px;
    line-height: .7;
    font-family: 'Dongle', sans-serif;
    font-weight: 400;
    margin-left: 45px;
}

.anchor-icon {
    width: 45px;
    height: 45px;
    background: var(--roze);
    background-image: url(../images/element-star-white.svg);
    background-position: center left 10px;
    background-repeat: no-repeat;
    background-size: 25px;
    -webkit-border-radius: 60px;
    -webkit-border-bottom-right-radius: 0;
    -moz-border-radius: 60px;
    -moz-border-radius-bottomright: 0;
    border-radius: 60px;
    border-bottom-right-radius: 0;
}

.main-articles.left,
.featured-articles {
    width: 100%;
    float: left;
    margin: 30px 0;
}

.main-content-layout {
    width: 100%;
    float: left;
    margin: 30px 0 100px 0;
}

.main-articles.right {
    width: 100%;
    float: right;
    margin: 30px 0;
    text-align: right;
    height: 200px;
}

.main-articles.right * {
    float: right;
}

.main-articles.bgimage * {
    color: #fff;
}

h2 {
    font-weight: normal;
    color: #000;
    font-size: 50px;
    line-height: .7;
    font-family: 'Dongle', sans-serif;
}

p {
    color: var(--groengrauw);
    font-size: 14px;
    line-height: 2;
    font-family: 'Poppins', sans-serif;
    margin: 20px 0;
}

ol li{
    color: var(--groengrauw);
    font-size: 14px;
    line-height: 2;
    font-family: 'Poppins', sans-serif;
    margin: 10px 0;
    list-style: decimal !important;
}

ol li::marker {
    color: var(--roze);
    font-weight: bold;
}

.main-articles .content-main {
    width: 50%;
}

.main-articles.white p,
.main-articles.white h2 {
    color: #fff;
}

.main-content-layout .mod-articlesnews__item {
    width: 100%;
    float: left;
}

.main-content-layout .fields-container li {
    font-size: 0; 
    float: left;
}

.main-content-layout {
    padding-bottom: 100px;
    position: relative;
}

.main-content-layout::after {
    content: ".................................................................................................................................................................................................................................................";
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0px;
    z-index: 0;
    color: var(--groengrauw);
    font-size: 40px;
    font-family: 'Dongle', sans-serif;
    line-height: 0;
    z-index: 9;
    overflow: hidden;
    height: 15px;
}

.context {
    width: 50%;
    float: left;
    padding-right: 50px;
}

.right .context {
    float: right;
    padding-left: 50px;
    padding-right: 0px;
}

.flower {
    width: 50%;
    max-width: 560px;
    margin-top: 50px;
}

.left .flower {
    float: right;
}

.right .flower {
    float: left;
}

.left #booking {
    float: left;
}

.right #booking {
    float: right;
}

.labels-toevoegen ul li {
    float: left;
    width: 100%;
}

.labels-toevoegen ul li>span:first-child {
    float: left;
    width: 110px;
}

.labels-toevoegen ul li>span:nth-child(2) {
    float: left;
    width: calc(100% - 110px);
    padding-left: 30px;
}

.right .labels-toevoegen ul li>span:first-child {
    float: right;
}

.right .labels-toevoegen ul li>span:nth-child(2) {
    padding-left: 0;
    padding-right: 30px;
}

@keyframes flower {
    0% {
        opacity: 0;
        transform: scale(.1);
        animation-timing-function: ease-out;
    }

    70% {
        opacity: 1;
        transform: scale(1.1);
        animation-timing-function: ease;
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.visible li.flower-afbeelding-1 {
    transform-origin: bottom right;
    animation-name: flower;
    animation-duration: .5s;
    animation-direction: alternate;
    animation-fill-mode: forwards;
    animation-delay: 0s;
    opacity: 0;
}

.visible li.flower-afbeelding-2 {
    transform-origin: bottom left;
    animation-name: flower;
    animation-duration: .5s;
    animation-direction: alternate;
    animation-fill-mode: forwards;
    animation-delay: .25s;
    opacity: 0;
}

.visible li.flower-afbeelding-3 {
    transform-origin: top right;
    animation-name: flower;
    animation-duration: .5s;
    animation-direction: alternate;
    animation-fill-mode: forwards;
    animation-delay: .50s;
    opacity: 0;
}

.visible li.flower-afbeelding-4 {
    transform-origin: top left;
    animation-name: flower;
    animation-duration: .5s;
    animation-direction: alternate;
    animation-fill-mode: forwards;
    animation-delay: .75s;
    opacity: 0;
}

li[class*='flower-afbeelding-'] img {
    width: 100%;
    height: auto;
    float: left;
    position: relative;
    z-index: 2;
}

li[class*='flower-afbeelding-'] span {
    float: left;
}

li[class*='flower-afbeelding-'] {
    float: left;
    width: 50%;
    height: 50%;
    position: relative;
    opacity: 0;
}

li.flower-afbeelding-1 img,
li.flower-afbeelding-1 span::after {
    -webkit-border-top-right-radius: 40%;
    -webkit-border-bottom-left-radius: 40%;
    -moz-border-radius-topright: 40%;
    -moz-border-radius-bottomleft: 40%;
    border-top-right-radius: 40%;
    border-bottom-left-radius: 40%;
}

li.flower-afbeelding-2 img,
li.flower-afbeelding-2 span::after {
    -webkit-border-top-left-radius: 40%;
    -webkit-border-bottom-right-radius: 40%;
    -moz-border-radius-topleft: 40%;
    -moz-border-radius-bottomright: 40%;
    border-top-left-radius: 40%;
    border-bottom-right-radius: 40%;
}

li.flower-afbeelding-3 img,
li.flower-afbeelding-3 span::after {
    -webkit-border-top-left-radius: 40%;
    -webkit-border-bottom-right-radius: 40%;
    -moz-border-radius-topleft: 40%;
    -moz-border-radius-bottomright: 40%;
    border-top-left-radius: 40%;
    border-bottom-right-radius: 40%;
}

li.flower-afbeelding-4 img,
li.flower-afbeelding-4 span::after {
    -webkit-border-top-right-radius: 40%;
    -webkit-border-bottom-left-radius: 40%;
    -moz-border-radius-topright: 40%;
    -moz-border-radius-bottomleft: 40%;
    border-top-right-radius: 40%;
    border-bottom-left-radius: 40%;
}

li.flower-afbeelding-1 span {
    padding: 7% 2% 2% 7%;
}

li.flower-afbeelding-2 span {
    padding: 7% 7% 2% 2%;
}

li.flower-afbeelding-3 span {
    padding: 2% 2% 7% 7%;
}

li.flower-afbeelding-4 span {
    padding: 2% 7% 7% 2%;
}

li[class*='flower-afbeelding-'] span::after {
    content: "";
    width: 90%;
    height: 90%;
    position: absolute;
    z-index: 1;
}

li.flower-afbeelding-1 span::after {
    left: 0;
    top: 0;
    background: rgb(151, 131, 188);
    background: linear-gradient(90deg, rgba(151, 131, 188, 1) 0%, rgba(81, 137, 66, 1) 100%);
}

li.flower-afbeelding-2 span::after {
    right: 0;
    top: 0;
    background: rgb(246, 159, 25);
    background: linear-gradient(90deg, rgba(151, 131, 188, 1) 0%, rgba(246, 159, 25, 1) 100%);
}

li.flower-afbeelding-3 span::after {
    left: 0;
    bottom: 0;
    background: rgb(246, 159, 25);
    background: linear-gradient(90deg, rgba(231, 32, 97, 1) 0%, rgba(246, 159, 25, 1) 100%);
    box-shadow: -1px 50px 74px -40px rgba(0, 0, 0, 0.75);
    -webkit-box-shadow: -1px 50px 74px -40px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: -1px 50px 74px -40px rgba(0, 0, 0, 0.75);
}

li.flower-afbeelding-4 span::after {
    right: 0;
    bottom: 0;
    background: rgb(246, 159, 25);
    background: linear-gradient(90deg, rgba(246, 159, 25, 1) 0%, rgba(190, 198, 49, 1) 100%);
    box-shadow: -1px 50px 74px -40px rgba(0, 0, 0, 0.75);
    -webkit-box-shadow: -1px 50px 74px -40px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: -1px 50px 74px -40px rgba(0, 0, 0, 0.75);
}

.logo:not(.dialog .logo) {
    width: 220px;
    height: 150px;
    background-image: url(../images/logo-full-stamp.svg);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center;
    float: left;
}

div#footer-logo {
    position: absolute;
    bottom: 220px;
    left: 0;
    z-index: 9999;
    height: 150px;
}

/* NAVIGATION */

.nav-desktop {
    display: block;
    float: right;
}

a.menu {
    width: 50px;
    height: 50px;
    padding: 25px;
    font-size: 0 !important;
    background: rgb(231 32 97 / 0%);
    -webkit-border-radius: 10px;
    -webkit-border-bottom-left-radius: 0;
    -moz-border-radius: 10px;
    -moz-border-radius-bottomleft: 0;
    border-radius: 10px;
    border-bottom-left-radius: 0;
    transition: all .3s ease !important;
    position: relative;
}

a.menu::before {
    content: "";
    width: 50px !important;
    height: 50px !important;
    background-image: url(../images/icon-menu.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    transition: all .3s ease !important;
    transform: scale(1);
    position: absolute;
    top: 0;
    left: 0;
}

.topfixed a.menu {
    background: rgb(231, 32, 97, 1);
    background: linear-gradient(90deg, rgba(246, 159, 25, 1) 0%, rgba(231, 32, 97, 1) 100%);
    -webkit-box-shadow: 0px 8px 15px 0px rgba(0, 0, 0, 0.47);
    -moz-box-shadow: 0px 8px 15px 0px rgba(0, 0, 0, 0.47);
    box-shadow: 0px 8px 15px 0px rgba(0, 0, 0, 0.47);
}

.topfixed a.menu::before {
    transform: scale(.7);
}


.nav-desktop ul:not(ul.mm-collapse) {
    padding: 0;
    margin: 0;
    float: left;
    display: table;
}

.nav-desktop ul li {
    float: left;
    position: relative;
}

.nav-desktop ul li.level-1.social {
    padding-right: 10px;
}

.nav-desktop ul li a {
    color: #000;
    font-weight: 400;
    font-size: 14px;
    float: left;
    line-height: 0.9;
}

.nav-desktop ul li.level-1>a::before {
    content: "";
    width: 10px;
    height: 10px;
    background-color: var(--accentcolor);
    margin-right: 10px;
    border-radius: 2px;
    float: left;
    transition: background-color .5s ease;
}

.nav-desktop ul li.level-1>a:hover::before {
    background-color: var(--maincolor);
}

.nav-desktop ul li.level-1.active>a::before {
    background-color: var(--maincolor);
}

.nav-mobile ul li.level-1>a:hover::before {
    background-color: var(--maincolor);
}

.nav-mobile ul li.level-1.active>a::before {
    background-color: var(--maincolor);
}

.nav-desktop ul.mm-collapse {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    z-index: 9;
    width: 320px;
    transition: all .3s ease-out;
    margin-top: 30px;
    right: 50px;
}

.nav-desktop ul.mm-collapse .wrapper {
    background: #fff;
    -webkit-box-shadow: 0px 8px 15px 0px rgba(0, 0, 0, 0.27);
    -moz-box-shadow: 0px 8px 15px 0px rgba(0, 0, 0, 0.27);
    box-shadow: 0px 8px 15px 0px rgba(0, 0, 0, 0.27);
    border-radius: 5px;
    padding: 30px;
    width: 100%;
    float: left;
    -webkit-border-radius: 40px;
    -webkit-border-top-right-radius: 0;
    -moz-border-radius: 40px;
    -moz-border-radius-topright: 0;
    border-radius: 40px;
    border-top-right-radius: 0;
}

.nav-desktop ul.mm-collapse .wrapper::before {
    content: "";
    width: 100%;
    height: 150px;
    background-image: url(../images/logo-full.svg);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center;
    float: left;
    margin-bottom: 10px;
}

.nav-desktop ul li.level-1 .mm-collapse.expand {
    padding: 20px 0 0 0;
    opacity: 1;
    visibility: visible;
}

a.menu {
    cursor: pointer;
}

.socialitem {
    width: 25px !important;
    clear: none !important;
}

.nav-desktop ul li.level-2.socialitem a::after {
    display: none;
}

.social {
    width: 25px;
    height: 25px;
    padding: 12.5px;
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center;
    font-size: 0;
}

.social.icon-fb {
    background-image: url(../images/icon-fb-groen.svg);
}

.social.icon-ig {
    background-image: url(../images/icon-ig-groen.svg);
}

.social.icon-email {
    background-image: url(../images/icon-mail-groen.svg);
}

.wrapper-socials {
    padding: 15px 0 15px 35px;
    float: left;
}

.nav-desktop ul.mm-collapse li a {
    font-family: 'Dongle', sans-serif;
    width: 100%;
    font-size: 26px !important;
    line-height: .5 !important;
}

.nav-desktop li.divider {
    width: 100%;
    padding: 10px 0;
    border-bottom: 1px solid #ededed;
    margin-bottom: 5px;
    color: var(--maincolor);
}

.nav-desktop li.divider:first-child {
    padding: 0 0 10px 0;
}

.nav-desktop ul.col-3 {
    width: 560px;
}

.nav-desktop ul.col-2 {
    width: 450px;
}

.nav-desktop ul.col-2 li:not(.divider) {
    width: 50%;
}

.nav-desktop ul.col-3 li:not(.divider) {
    width: 33.33333333333333%;
}

.nav-desktop ul li.level-2 a {
    font-size: 13px;
    transition: all .3s ease;
    padding: 10px 0 10px 50px;
    line-height: 1.3;
    transition: all .3s ease;
}

.nav-desktop ul li.level-2 a::before {
    content: "";
    width: 20px;
    height: 20px;
    -webkit-border-radius: 50px;
    -webkit-border-bottom-right-radius: 0;
    -moz-border-radius: 50px;
    -moz-border-radius-bottomright: 0;
    border-radius: 50px;
    border-bottom-right-radius: 0;
    background-size: 60%;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(../images/element-star-white.svg);
    background-color: var(--roze);
    background-color: #fff;
    position: absolute;
    left: 5px;
    top: 5px;
    transition: all .4s ease;
}

.nav-desktop ul li.level-2 a.mPS2id-highlight::before {
    background-color: var(--roze);
    transition: all .4s ease;
}

.nav-desktop ul li.level-2 a::after {
    content: "";
    width: 2px;
    height: 20px;
    background-color: var(--groengrauw);
    position: absolute;
    left: 35px;
    top: 5px;
}

a.social::before {
    display: none;
}

.nav-desktop ul li a.social {
    font-size: 0 !important;
    background-size: 20px;
    background-position: left center;
    background-repeat: no-repeat;
    width: 20px;
    height: 20px;
    margin: 0;
    transition: all .5s ease;
    opacity: 1;
}

.nav-desktop ul li a.social:hover {
    opacity: .5;
}

.mm-toggler {
    display: none;
}

.article-list {
    width: 100%;
    float: left;
    margin-top: 50px;
}

.article-list .mod-articlesnews__item {
    width: calc(100% / 4);
    float: left;
    padding: 20px;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.article-list .item-wrapper {
    -webkit-box-shadow: 8px 62px 67px -72px rgba(0, 0, 0, 1);
    -moz-box-shadow: 8px 62px 67px -72px rgba(0, 0, 0, 1);
    box-shadow: 8px 62px 67px -72px rgba(0, 0, 0, 1);
    -webkit-border-radius: 40px;
    -webkit-border-top-right-radius: 0;
    -moz-border-radius: 40px;
    -moz-border-radius-topright: 0;
    border-radius: 40px;
    border-top-right-radius: 0;
    overflow: hidden;
    position: relative;
}

.article-list .mod-articlesnews__item img {
    width: 100%;
    float: left;
    height: auto;
}

.article-list .mod-articlesnews.newsflash {
    width: calc(100% + 40px);
    float: left;
    margin-left: -20px;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.article-list .item-content {
    float: left;
    padding: 30px;
}

.article-list .item-content>* {
    float: left;
    width: 100%;
}

.article-list .item-content p {
    color: rgb(255 255 255 / 100%);
    font-size: 14px;
    line-height: 1.7;
    font-weight: 300;
    font-family: 'Poppins', sans-serif;
    margin: 5px 0 0;
}

.article-list figure.newsflash-image {
    width: 100%;
    height: 250px;
    float: left;
    overflow: hidden;
}

.article-list .item-wrapper::before {
    content: "";
    width: 50px;
    height: 50px;
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 0;
    background-image: url(../images/element-star-color.svg);
    background-color: #fff;
    background-repeat: no-repeat;
    background-size: 60%;
    background-position: center;
    -webkit-border-radius: 60px;
    -webkit-border-top-right-radius: 0;
    -moz-border-radius: 60px;
    -moz-border-radius-topright: 0;
    border-radius: 60px;
    border-top-right-radius: 0;
}

.article-list h3 {
    font-weight: 300;
    color: #fff;
    font-size: 40px;
    line-height: .7;
    float: left;
    font-family: 'Dongle', sans-serif;
}

.article-list .item-wrapper::after {
    content: "........................................................................";
    width: 100%;
    position: absolute;
    top: 246px;
    left: 0px;
    z-index: 0;
    color: #fff;
    font-size: 40px;
    font-family: 'Dongle', sans-serif;
    line-height: 0;
}


/*Navigation Mobile-----------------------------------------------------------------------------------------------------------------------------*/
.nav-mobile {
    display: none;
}

.nav-mobile #mob-menu {
    background-image: url(../images/icon-menu-black.svg);
    background-size: 80%;
    background-position: center;
    background-repeat: no-repeat;
    background-color: rgb(255 255 255 / 0%);
    border: 0;
    width: 30px;
    height: 30px;
    float: left;
    cursor: pointer;
}

.topfixed .nav-mobile #mob-menu {
    background-image: url(../images/icon-menu-white.svg);
}

.nav-mobile #mob-menu-close {
    background-image: url(../images/icon-close.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
    background-color: #fff;
    width: 15px;
    float: right;
    height: 15px;
    cursor: pointer;
    margin-bottom: 15px;
    border: 0px;
}

.nav-mobile ul li.level-1 {
    width: 100%;
    padding: 13px 0;
    border-bottom: 1px solid #ededed;
    float: left;
    position: relative;
}

.nav-mobile ul li.level-1 a {
    color: #000;
    font-size: 14px;
    line-height: 1;
    float: left;
}

.nav-mobile ul li.level-1:nth-child(2) {
    border-top: 1px solid #ededed;
}

.nav-mobile ul.mm-collapse {
    width: 100%;
    position: relative;
    max-height: 0px;
    overflow: hidden;
    padding-left: 22px;
    transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
}

.nav-mobile ul li.level-1:hover .mm-collapse {
    max-height: 900px;
    transition: max-height 1s ease-in-out;
}

.nav-mobile ul li.level-2 a {
    font-size: 12px;
    background-size: 15px;
    background-position: left center;
    background-repeat: no-repeat;
    padding: 5px 0 5px 20px;
    color: #000;
}

.nav-mobile ul.mod-menu:not(ul.mm-collapse) {
    display: block;
    position: fixed;
    width: 90%;
    background: #fff;
    height: 95%;
    -webkit-box-shadow: 0px 7px 15px -6px rgb(0 0 0 / 55%);
    -moz-box-shadow: 0px 7px 15px -6px rgb(0 0 0 / 55%);
    box-shadow: 0px 7px 15px -6px rgb(0 0 0 / 55%);
    border-radius: 5px;
    top: 10%;
    left: 5%;
    z-index: 9;
    padding: 30px;
    transition: all .3s ease-out;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
}

.nav-mobile.open ul.mod-menu:not(ul.mm-collapse) {
    opacity: 1;
    visibility: visible;
    top: 2.5%;
}

.nav-mobile::after {
    content: "";
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all .5s ease-out;
    background: #909fac;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 8;
}

.nav-mobile.open::after {
    opacity: .8;
    visibility: visible;
}

li.level-2 {
    float: left;
}

.nav-mobile ul.col-3 li:not(.divider) {
    width: 33.33333333333333%;
}

.nav-mobile ul.col-2 li:not(.divider) {
    width: 50%;
}

.nav-mobile ul.col-1 li:not(.divider) {
    width: 100%;
}

.nav-mobile li.divider {
    padding: 10px 0 5px 0;
    border-bottom: 0px solid #ededed;
    float: left;
    width: 100%;
    font-size: 12px;
    color: #909fac;
}

.nav-mobile ul li.level-1>a::before {
    content: "";
    width: 12px;
    height: 12px;
    background-color: var(--accentcolor);
    margin-right: 10px;
    border-radius: 3px;
    float: left;
    transition: background-color .5s ease;
}

.nav-mobile ul li.level-2 a {
    font-size: 12px;
    background-size: 15px;
    padding: 5px 0 5px 20px;
}

.nav-mobile ul li.level-1.deeper::after {
    content: "";
    width: 15px;
    height: 15px;
    border-radius: 3px;
    transition: background-color .5s ease;
    background-image: url(../images/icon-arrow-down.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 90%;
    transition: all .3s ease;
    position: absolute;
    right: 0;
    top: 12px;
}

.nav-mobile ul li.level-1.deeper:hover::after {
    transform: rotate(180deg);
}

a.social::before {
    display: none;
}

.nav-mobile ul li a.social {
    font-size: 0;
    background-size: 20px;
    background-position: left center;
    background-repeat: no-repeat;
    width: 20px;
    height: 20px;
    margin: 0;
}

.nav-mobile ul li.level-1.social {
    border: 0px;
    width: auto;
    padding: 20px 10px 0 0;
}

/* FEATURED ARTICLES */

.pretext,
.page-header {
    display: flex;
}

.title-label {
    background: var(--maincolor);
    color: #ffffff;
    font-size: 16px;
    padding: 5px 10px;
    line-height: 1.3;
    margin: 0 10px;
    border-radius: 50px;
    min-width: 30px;
    height: 30px;
}

.featured-articles .news {
    z-index: 1;
    position: relative;
}

.featured-articles .bg {
    background-color: #333;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 0;
}

.featured-articles .latestnews-items {
    padding: 0 0 40px 0;
    margin-left: -15px;
    margin-right: -15px;
}

.featured-articles ul.latestnews-items li:not(.slick-dots li) {
    height: 100%;
    padding: 0;
    position: relative;
    float: left;
}

.featured-articles .innerpicture img {
    width: 100%;
    height: auto;
    float: left;
    transition: all .5s ease;
}

.featured-articles .slide:hover .innerpicture img {
    opacity: .5;
}

.featured-articles .innerpicture {
    position: relative;
}

.featured-articles .newsinfo>*,
.featured-articles .latestnews-items li div {
    float: left;
    clear: left;
}

.featured-articles h2 a,
.featured-articles h2:not(.pretext h2) {
    font-weight: 300;
    color: #fff;
    font-size: 40px;
    line-height: .7;
    float: left;
    font-family: 'Dongle', sans-serif;
    width: 160px;
}

.featured-articles .newsintro {
    color: rgb(255 255 255 / 100%);
    font-size: 14px;
    line-height: 1.7;
    font-weight: 300;
    font-family: 'Poppins', sans-serif;
    margin-top: 5px;
}

.featured-articles .newsinfo {
    padding: 30px;
    position: relative;
}

.featured-articles .before_title span.detail.detail_date {
    clear: left;
    float: left;
    margin-top: 10px;
}

.featured-articles .after_title dd.newsextra>span {
    margin-right: 5px;
    float: left;
}

.featured-articles .after_text dd.newsextra>span {
    margin-right: 10px;
    float: left;
}

.featured-articles .newsinfo::before {
    content: "........................................................................";
    width: 100%;
    position: absolute;
    top: -4px;
    left: 0px;
    z-index: 0;
    color: #fff;
    font-size: 40px;
    font-family: 'Dongle', sans-serif;
    line-height: 0;
}

.featured-articles .newshead.picturetype::after {
    content: "";
    width: 50px;
    height: 50px;
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 0;
    background-image: url(../images/element-star-color.svg);
    background-color: #fff;
    background-repeat: no-repeat;
    background-size: 60%;
    background-position: center;
    -webkit-border-radius: 60px;
    -webkit-border-top-right-radius: 0;
    -moz-border-radius: 60px;
    -moz-border-radius-topright: 0;
    border-radius: 60px;
    border-top-right-radius: 0;
}

h2.newstitle,
.newsintro {
    position: relative;
    z-index: 1;
}

.newshead.picturetype {
    height: 220px;
    overflow: hidden;
}

.header-img img {
    width: 100%;
    float: left;
    height: auto;
}

.carrousel {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-bottom: 70px;
}

.slide {
    display: none;
    float: left;
    -webkit-border-radius: 40px;
    -webkit-border-top-right-radius: 0;
    -moz-border-radius: 40px;
    -moz-border-radius-topright: 0;
    border-radius: 40px;
    border-top-right-radius: 0;
    overflow: hidden;
    -webkit-box-shadow: 8px 62px 67px -72px rgba(0, 0, 0, 1);
    -moz-box-shadow: 8px 62px 67px -72px rgba(0, 0, 0, 1);
    box-shadow: 8px 62px 67px -72px rgba(0, 0, 0, 1);
    cursor: pointer;
}

.slide>div {
    height: 100%;
}

.initialized .slide {
    display: block;
}

button.arrow {
    position: absolute;
    bottom: 5px;
    width: 40px;
    height: 40px;
    z-index: 2;
    background-color: var(--maincolor);
    border: 0px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.5s ease;
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
}

.carrousel .prev {
    left: calc(50% - 40px);
    background-image: url(../images/icon-prev.svg);
}

.carrousel .next {
    left: calc(50% + 3px);
    background-image: url(../images/icon-next.svg);
}

.slide {
    margin: 0 25px;
}

button.disabled {
    opacity: .5;
    cursor: default;
}

button.arrow:hover:not(button.disabled:hover) {
    transform: scale(1.2);
}

.list.draggable {
    margin-left: -10px;
    width: calc(100% + 20px);
    overflow: hidden;
}

/* RESPONSIVE */

@media screen and (max-width: 1680px) {}

@media screen and (max-width: 1440px) {}

@media screen and (max-width: 1280px) {
    .nav-desktop {
        transform: scale(.8);
        transform-origin: top right;
    }

    @keyframes dialog-popup {
        0% {
            opacity: 0;
            transform: scale(.1);
            animation-timing-function: ease-out;
        }

        70% {
            opacity: 1;
            transform: scale(.9);
            animation-timing-function: ease-in;
        }

        100% {
            opacity: 1;
            transform: scale(.8);
        }
    }

    @keyframes dialog-popup-shadow {
        0% {
            opacity: 0;
            top: 70px;
            right: 50px;
        }

        100% {
            opacity: 1;
            top: 75px;
            right: 30px;
        }
    }

    .dialog-shadow {
        transform: scale(.8);
        transform-origin: top right;
    }

    .dialog {
        top: 65px;
        right: 40px;
    }

    #parallax-bg1,
    #parallax-bg2,
    #parallax-bg3,
    header {
        height: 620px;
    }

    .main-container::before {
        top: 616px;
        font-size: 30px;
    }

    .tag {
        width: 90px;
        height: 90px;
        margin: 0 10px 10px 0;
    }

    p:not(.dialog p),
    #article p {
        font-size: 12px;
        margin: 10px 0;
    }

    #logo-coop {
        width: 160px;
    }

    #booking a {
        font-size: 25px;
    }

    #article h2,
    h2 {
        font-size: 40px;
    }

    #header-bottom {
        padding: 40px 0 170px 0;
    }

    .anchor-title {
        padding: 10px 15px 7px 15px;
        font-size: 22px;
    }

    .anchor-icon {
        width: 30px;
        height: 30px;
        background-position: center left 5px;
        background-size: 20px;
        margin-left: 15px;
    }

    .featured-articles .newsintro {
        font-size: 12px;
    }

    .article-bg .bg {
        mask-size: 1400px;
        -webkit-mask-size: 1400px;
        top: -180px;
    }

    .featured-bg .bg {
        mask-position: left top 100px;
        -webkit-mask-position: left top 100px;
    }

    .track {
        padding-bottom: 50px;
    }

    .featured-articles .newsinfo::after {
        width: 40px;
        height: 40px;
    }

    .main-articles.left,
    .featured-articles {
        margin: 30px 0 0;
    }

    .article-bg {
        margin: 0 0 180px 0;
    }

    .article-list .mod-articlesnews__item {
        width: calc(100% / 3);
    }

    .article-list .item-content p {
        font-size: 12px;
    }

}

@media screen and (max-width: 1024px) {
    .header-img img {
        height: 110%;
        width: auto;
    }
}

@media screen and (max-width: 1023px) {

    .nav-mobile,
    #mob-menu,
    #mob-menu-close {
        display: block;
    }

    .content {
        padding: 0 40px;
    }

    .article-bg .bg::before {
        width: 1024px;
        height: 850px;
    }

    .article-list .mod-articlesnews__item {
        width: calc(100% / 2);
    }

}

@media screen and (max-width: 767px) {
    .featured-articles {
        margin-bottom: 20px;
    }

    .main-articles .content-main {
        width: 100%;
    }

    .context,
    .flower {
        width: 100%;
        padding-right: 0px;
        padding-left: 0px;
    }

    .labels-toevoegen ul li>span:first-child {
        width: 80px;
    }

    .label-icoon {
        width: 80px;
        height: 80px;
    }

    .labels-toevoegen ul li>span:nth-child(2) {
        width: calc(100% - 80px);
        padding-left: 20px;
    }

    .label-icoon {
        margin: 10px 0;
    }

    p {
        margin: 10px 0;
    }

    #header-bottom {
        padding: 40px 0 120px 0;
    }

    .article-bg .bg::before {
        margin-left: -300px;
        ;
    }

    .featured-bg {
        padding-bottom: 100px;
    }

    .article-bg .bg {
        top: -100px;
    }

    .article-bg {
        margin: 0 0 200px 0;
    }

    .top-container {
        padding: 20px 0;
    }

    .nav-desktop ul li.level-1>a::before {
        margin-right: 0;
    }

    .top-container .content {
        padding: 0 20px;
    }

    @keyframes dialog-popup {
        0% {
            opacity: 0;
            transform: scale(.1);
            animation-timing-function: ease-out;
        }

        70% {
            opacity: 1;
            transform: scale(.8);
            animation-timing-function: ease-in;
        }

        100% {
            opacity: 1;
            transform: scale(.7);
        }
    }

    @keyframes dialog-popup-shadow {
        0% {
            opacity: 0;
            top: 60px;
            right: 30px;
        }

        100% {
            opacity: 1;
            top: 70px;
            right: 10px;
        }
    }

    .dialog-shadow {
        transform: scale(.7);
    }

    .dialog {
        top: 60px;
        right: 20px;
    }

    .main-container::before {
        top: 576px;
    }

    #parallax-bg1,
    #parallax-bg2,
    #parallax-bg3,
    header {
        height: 580px;
    }

    .article-list .mod-articlesnews__item {
        width: calc(100% / 1);
    }

    .logo:not(.dialog .logo) {
        width: 150px;
        background-position: top center;
    }

    footer {
        padding: 100px 0 0 0;
        margin-top: 200px;
    }

    footer h3 {
        font-size: 30px;
    }

    footer tr, footer td {
        clear: left;
        float: left;
        width: 100%;
    }

    .right .context {
        padding-left: 0px;
    }

    .right .labels-toevoegen ul li>span:nth-child(2) {
        padding-right: 20px;
    }

    .main-content-layout {
        padding-bottom: 50px;
        margin: 30px 0 50px 0;
    }

    div#booking {
        transform: scale(.8);
        transform-origin: center left;
        margin-top: 50px;
    }

    .right #booking {
        transform-origin: center right;
    }

}

@media screen and (max-width: 420px) {
    .featured-articles .newsinfo::after {
        width: 40px;
        height: 40px;
    }

    .featured-articles h2 a {
        font-size: 30px;
    }

    .featured-articles h2 a {
        width: 120px;
    }

}