/*:root {
    --pink: rgb(164,105,111);
    --pink-darker: rgb(168,87,103);
    --beige: rgb(208,175,161);
    --gray: rgb(92,92,92);
    --light-gray: rgb(214,214,214);
    --greenish:  rgb(116,107,76);
    --container-width:  2400px;
}*/

:root {
    --pink: rgb(167,99,105);
    --pink-darker: rgb(167,99,105);
    --beige: rgb(208,175,161);
    --gray: rgb(92,92,92);
    --light-gray: rgb(255 230 219);
    --greenish:  rgb(116,111,76);
    --container-width:  2400px;
}

::-webkit-scrollbar {
    width: 12px !important;
}

::-webkit-scrollbar-thumb {
    -webkit-border-radius: 10px !important;
    border-radius: 4px !important;
    background: var(--pink);
    transition: .5s;
    mix-blend-mode: difference;
}
::-webkit-scrollbar-track {
    border-radius: 0px !important;
    box-shadow: none;
    background: none !important;
}


@font-face{
    font-family:"audrey-bold";
    src:url("/fonts/Audrey-Bold.otf") format("woff"),
        url("/fonts/Audrey-Bold.otf") format("opentype"),
        url("/fonts/Audrey-Bold.otf") format("truetype");
}


/*Raleway Bold
font-family: raleway, sans-serif;
font-weight: 700;
font-style: normal;

Raleway Regular
font-family: raleway, sans-serif;
font-weight: 400;
font-style: normal;

Ruddy Bold
font-family: ruddy, sans-serif;
font-weight: 700;
font-style: normal;

Bookmania Bold
font-family: bookmania, serif;
font-weight: 700;
font-style: normal;

Bookmania Regular
font-family: bookmania, serif;
font-weight: 400;
font-style: normal;

*/

* {box-sizing: border-box; position: relative; }

.preload, .preload * {
    xxtransition: 0s !important;
}

.preload-long, .preload-long * {
    animation-duration: 0s !important;
    -webkit-animation-duration: 0s !important;
}

.preload .darken {
    transition: background 1s;
    background: var(--beige,beige);
}

.darken {
    transition: background 1s;
}

.preload .fly-in {
    transition: transform 1s, opacity .25s;
    transform: translateX(-100px);
    opacity: 0;
}

.preload .fly-in.fly-in-right {
    transform: translateY(100px);
}

.fly-in {
    transition: transform 1s, opacity .25s;
    transform: translateX(0px);
    opacity: 1;
}

textarea {
    font-family: inherit;
}


a {
    color: rgb(6,56,95);
}

html, body {
    padding:0px;
    margin: 0px;
    width: 100%;
    background: white;
    font-size: 14px;
    xxbackground: rgb(246,246,246);

    font-family: raleway, sans-serif;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 1px;
    overflow-x: hidden;
}

input[type="text"], input[type="number"], input[type="date"], input[type="password"], select, textarea {
    border: 1px solid #ccc;
    padding: 10px 12px;
    color: #000;
    border-radius: 7px;
    margin: 10px 0px;
}

pre {
    text-transform: initial;
    text-align: left;
}

.align-left { text-align: left;}
.max400 { width: 100%; max-width: 400px; }
.center { text-align: center; }
.left { text-align: left !important; }
.right { text-align: right !important; }
.white { color: white; }
.full {
    width: 100%;
    display: block;
}

.pointer {cursor: pointer;}
.margin-v {margin: 20px 0;}
.margin-v-l {margin: 5vh 0;}
.margin-top-v-l {margin: 5vh 0 0 0;}
.padding-top-v-l {padding: 5vh 0 0 0;}
.margin-top-v {margin: 20px 0 0 0;}
.margin-v-s {margin: 2.5px 0px;}
.margin-h {margin-left: 10px !important; margin-right: 10px !important;}
.margin-top{margin-top: 20px;}
.padding {padding: 20px 10px !important;}
.padding-xl {padding: 100px;}
.padding-v-xl {padding: 100px 0px;}
.padding-l {padding: 30px;}
.padding-m {padding: 20px 20px;}
.padding-s {padding: 5px;}
.padding-h {padding: 0px 10px;}

.align-center {
    align-items: center !important;
}

.cntr {
    text-align: center;
}

.space-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.flex-end {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.column {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    flex-direction: column;
    height: 100%;
}

.number_large {
    width: 100px;
    height: 100px;
    background: black;
    color: white;
    display: block;
    margin: 15px auto;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 100px;
    font-size: 54px;
    letter-spacing: 0;
    padding-bottom: 21px;
    padding-left: -5px;
}

.number_large em {
    font-style: normal;
    font-size: 33px;
    margin-bottom: -4px;
    margin-left: -1px;
}

.container {
    margin: 0px auto;
    width: calc(80vw + 200px);
    max-width: var(--container-width);
}

#hamburger {
    display: none;
}

#hamburger:after {
    content: '\203A';
    margin-left: 5px;
    font-size: 16px;
}

i {
    margin: 0px 5px;
}

.socials i {
    font-size: 18px;
}

.socials {
    margin-left: 15px;
}

.header-container {
    position: fixed;
    right:  10vw;
    top: 0px;
    width: 80vw;
    max-width: var(--container-width);
    z-index: 100;
}

header {
    width: 100%;
    padding: 25px 25px;
    animation-name: headerMoveBack;
    animation-duration: .75s;
    z-index: 1000;
    box-shadow: none;
}

@keyframes headerMove {
  0% {transform: translateY(0%); width:  100%; background: transparent;position: relative;}
  50% {transform: translateY(-125%); width:  100%; background: transparent;position: relative;}
  51% {transform: translateY(-125%); width:  100%; background: white; position: fixed;top: 0;left: 0;z-index: 1000;}
  100% {transform: translateY(0%); width:  100%;  background: white; position: fixed;top: 0;left: 0;z-index: 1000;}
}

@keyframes headerMoveBack {
  0% {transform: translateY(0%); width: 100%; background: white; position: fixed;top: 0;left: 0;z-index: 1000;}
  55% {transform: translateY(-125%); width: 100%;  background: white; position: fixed;top: 0;left: 0;z-index: 1000;}
  56% {transform: translateY(-125%); width:  100%; background: transparent;position: relative;}
  100% {transform: translateY(0%); width: 100%; background: transparent;position: relative;}
}

@keyframes animateLogo {
  0% {flex-direction: column; text-align: center;}
  50% {flex-direction: column; text-align: center;}
  51% {flex-direction: row; text-align: left;}
  100% {flex-direction: row; text-align: left;}
}

@keyframes animateLogoBack {
  0% {flex-direction: row; text-align: left;}
  50% {flex-direction: row; text-align: left;}
  51% {flex-direction: column; text-align: center;}
  100% {flex-direction: column; text-align: center;}
}



    header .top {
        font-weight: 300;  
        height: 53px;
        margin-top: 29px;
    }

    .headerSmall header .top {
        height: 13px;
    }

    header nav {
        margin: 15px 0px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

nav a, .dropdown>span {
    padding: 12px 12px;
    display: inline-block;
    vertical-align: middle;
    text-decoration: none;
    text-transform: uppercase;
        margin: 0px 5px;
    cursor: pointer;
    text-align: center;
    text-transform: lowercase;
    color: inherit;
}


.home:not(.headerSmall) header .dropdown:first-child {
    display: none;
} 

    header nav a, header .dropdown>span {
        color: var(--gray, gray);
        font-weight: 100;
        font-size: 18px;
    }

    .dropdown>span {
        padding-right: 30px;
    }

    .dropdown>span:after {
        content: '\203A';
        font-size: 18px;
        width: 30px;
        height: 30px;
        display: flex;
        position: absolute;
        right: 0px;
        top: 50%;
        transform: translateY(-50%) rotate(90deg);
        text-align: center;
        align-items: center;
        justify-content: center;
    }

    header nav a:hover, header .dropdown>span:hover {
        color: var(--pink);
    }

    .headerSmall header .dropdown:first-child {
        display: inline-block;
    }

    header .dropdown .dropdown-content {
        line-height: initial;
        display: none;
        position: absolute;
        top: 45px;
        left: 50%;
        transform: translateX(-50%);
        overflow: hidden;
        z-index: 300;
        xxpadding: 10px;
        max-height: 750px;
        overflow: auto;
        background: white;
        text-align: center;
        padding-top: 15px;
    }


    header .dropdown:hover .dropdown-content {
        display: block;
    }
    .dropdown:hover>span:after {
        transform: translateY(-50%) rotate(270deg);
    }

header nav>a:last-child{
    margin-right: 0px;
    padding-right: 0px;
}

.dropdown-content a {
    width: 100%;
    margin: 0px;
    color: var(--pink);
    padding: 20px;
}

.dropdown-content a:hover {
    background: var(--pink);
    color: white;
}

.btn {
    padding: 12px 25px;
    display: inline-block;
    vertical-align: middle;
    text-decoration: none;
    text-transform: uppercase;
    color: white;
    cursor: pointer;
    text-align: center;
    background: none;
    font-size: 12px;
    letter-spacing: 2px;
    line-height: 27px;
    outline: none;
    border: none;
    z-index: 0;
    transition: .25s;
    border: 1px solid transparent;
    overflow: hidden;
    background: var(--pink);
    xxborder-radius: 25px;
}

    .btn-round {
        padding: 4px 40px;
    }

    /*.btn.btn-black {
        color: white;
        background: black;
    }*/

        .btn:hover {
            color: var(--pink);
            transition: .25s;
            border: 1px solid var(--pink);
            background: transparent;
        }

       /* .btn.btn-black:hover {
            border: 1px solid black;
            color: black;
        }
*/

    .block-greenish .btn:hover {
        color: black;
        border: 1px solid black;
    }
    
    .btn:before, .btn:after {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        background: currentColor;
        left: 0%;
        top: 0%;
        z-index: -1;
        clip-path: polygon(0% 0%, 100% 100%, 0% 100%);
        transform-origin: 0% 0%;
        transition: .75s !important;
        color: var(--pink);
    }

        /*.btn.btn-black:before, .btn.btn-black:after {
            color: black;
        }
*/
        .btn:after {
            background: currentColor;
            clip-path: polygon(0% 0%, 100% 0%, 100% 100%);
            transform-origin: 100% 100%;
        }

            .btn:hover:before, .btn:hover:after {
                transform: rotate(90deg);
                transition: .75s !important;
            }

    .btn.btn-beige {
        background: var(--beige);
    }




form .btn {
    padding: 12px 40px;
}

#cntFrm label {

    width: 100%;
    text-align: center;
    display: block;
}

.animate-per-scroll {
    transition: .75s;
}

.block-beige .text-block {
    text-align: center;
}



#overlay {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 100%;
    max-width: 500px;
    background: #fff;
    text-align: center;
    padding: 20px;
    border-radius: 3px;
    -webkit-box-shadow: 0 2px 3px 0 rgb(60 64 67 / 30%), 0 6px 10px 4px rgb(60 64 67 / 15%);
    box-shadow: 0 2px 3px 0 rgb(60 64 67 / 30%), 0 6px 10px 4px rgb(60 64 67 / 15%);
    border-color: #0003;
    z-index: 9000;
    color: black;
}

    #overlay .dismiss {
        position: absolute;
        right: 0px;
        padding: 10px;
        cursor: pointer;
        font-size: 24px;
        top: 0px;
        z-index: 9500;
        line-height: 24px;
    }

.logo {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    text-decoration: none;
    font-size: 22px;    
    animation-name: animateLogoBack;
    animation-duration: .75s;
    -webkit-animation-fill-mode: forwards;
    transform-origin: 0% 50%;
}



    .logo img {
        height: 75px;
        margin-bottom: 10px;
    }

    .logo .name>div:first-child {
        color: var(--pink, pink);
        text-transform: uppercase;
        letter-spacing: 3px;
        font-family: 'audrey-bold', sans-serif;
    }

    .logo .name>div:last-child {
        color: var(--greenish, darkgreen);
        margin: 2.5px 0px;
        letter-spacing: 1px;
    }

    .headerSmall header .name>div:first-child {
        font-size: 18px;
    }

    .headerSmall header .name>div:last-child {
        font-size: 18px;
    }



#home-top-down .cmscnts .cms-grid>div:first-child {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    background: none;
}

#home-top-down .cmscnts .cms-grid>div:first-child>div {
    background: var(--beige);
}

#home-top-down .cms-grid>div:nth-child(4n+2) .text-block {
    background: white;
}

.home-img {
    width: 70%;
    min-height: 40vh;
   xxmax-height: calc(100vh - 230px);
    max-height: min(1200px, 60vh);
    height: 100%;
    max-width: 1200px;
    position: absolute; 
    left: 0px; 
    top: 0px;
}

.cmscnts img {
    width: 100%;
}

.menu-links .home-img {
    max-height: calc(100vh - 230px);
}

.home-img>img {
    position: absolute;
    left: 0px;
    top: 0px;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

#home-top-down>.slogan {
    background: white;
    padding: 20px;
    font-size: calc(15px + 1.5vw);
    max-width: calc(50px + 22vw);
}


#home-top-down>:not(.cmscnts) .slogan {
    background-color: white;
    font-size: calc(18px + 1.25vw);
    max-width: calc(40px + 24vw);
    padding: 1vw 2vw;
}

.err {
    color: #721c24;
    font-size: 10px;
    background: #f8d7da;
    padding: 0px 10px;
    border-radius: 3px;
    width: max-content;
}

.headerSmall header{
    width: 100%;
    padding-top: 0px;
    padding-bottom: 0px;
    background: white;
    animation-name: headerMove;
    animation-duration: 0.75s;
    -webkit-animation-fill-mode: forwards;
    box-shadow: 0px 1px 6px 3px rgb(0 0 0 / 5%);
}



.headerSmall header .logo {
    animation-duration: 0.75s;
    animation-name: animateLogo;
    -webkit-animation-fill-mode: forwards;
}

.left-menu, .inline-menu {
    background: var(--pink, pink);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    flex-direction: column;
    padding: 75px 0px;
    color: white;
}

.inline-menu {
    background: var(--light-gray);
    color: var(--pink);
}


.left-menu>div, .left-menu>a {
    margin: 10px 0px;
    font-size: 16px;
    font-weight: 300;
    padding: 20px 50px;
    text-decoration: none;
    color: inherit;
    line-height: 1.5;
}

.left-menu>div:nth-child(2){
    font-weight: 700;
}

.left-menu>div:after {
    position: absolute;
    bottom: 0px;
    left: 10%;
    width: 80%;
    content: '';
    height: 0px;
    border-bottom: 1px solid #ffffff5c;
}

.left-menu nav, .inline-menu nav {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
    width: 100%;
}

.left-menu nav {
    margin: 50px 0px;
}

.left-menu nav a {
    letter-spacing: 2px;
    font-size: 22px;
    font-size: calc(22px - (4px * var(--laag) ) );
    margin: 5px 0px;
    cursor: pointer;
    max-width: 300px;
    text-align: left;
    line-height: 1.25;
    padding: calc(12px - (3px * var(--laag)));
}

footer .outer {
    display: none;
}

.left-menu nav .prev, .left-menu nav span {
    display: none;
}

.left-menu nav>.outer>.inner>a.chosen {
    width: 100%;
    text-align: left;
}

.left-menu nav {
    padding-left: 25px;
}

.left-menu nav .outer {

    display: flex;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    align-items: center;
}

nav .outer.close {
    display: none;
}
    
.left-menu nav .inner {
    width: max-content;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    padding-left: calc(10px * var(--laag));
}

.left-menu nav a.chosen:before {
    content: '';
    position: absolute;
    left: 0px;
    bottom: 1px;
    width: 100%;
    height: 1px;
    background: rgba(255,255,255,0.6);
}

.cmscnts .text-block {
    text-align: left;
    word-break: break-word;
    max-width: calc(450px + 10vw);
}

#home-top-down .cmscnts {
    margin-top: 250px;
}
#home-top {
    height:  max-content;
    display: grid;
    justify-content: flex-start;
    align-items: stretch;
    grid-template-columns: calc(200px + 10vw) 1fr;
}

.block1  {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    transform: translateY(-150px);
}

.block1 .text-block {
    background: var(--beige);
    margin: 0px;
    padding: 5vw;
    max-width: calc(600px + 10vw);
}

.left-menu .buttons {
    display: flex;
    justify-content: stretch;
    align-items: stretch;
    row-gap: 10px;
    flex-direction: column;
    width: 100%;
}

.buttons a {
    color: white;
    padding: 12px;
    text-decoration: none;
    text-transform: lowercase;
}

    .buttons a:hover, .left-menu nav a:hover {
        background: white;
        color: var(--pink) !important;
    }

body>.left-menu, #home-top-down:not(.large)>.left-menu {
    display: none;
}

.buttons a>span {
    display: block;
}

.left-menu .buttons a:after {
    content: '\203A';
    font-size: 16px;
    position: absolute;
    right: 12px;
    top: 12px;
}


.lang-options>span {
    cursor: pointer;
}

.lang-options>span.chosen {
    font-weight: 900;
    color: var(--pink);
}

.block1 .slogan {
    text-align: left;
}

#home-top.large {
    min-height:  max(900px,75vh);
}

#home-top-sec {
    display: grid;
    grid-template-rows: 230px 1fr;
}

#home-top-down {

}

/*    #home-top img {
        margin-top: 250px;
        height: calc(80vh - 250px);
    }*/

.slogan {
    font-size: calc(18px + 2vw);
    color: var(--pink-darker);
    font-weight: 100;
    max-width: calc(50px + 25vw);
    text-align: center;
    margin: 0px auto;
    line-height: 1.25;
}

    .slogan.slogan-abs {
        position: absolute;
        right: 15px;
        top: 25%;
    }

    .slogan.slogan-bold {
        font-weight: 700;
    }

    .slogan.slogan-small {
        color: var(--gray,gray);
        font-size:  calc(13px + 1.1vw);
        line-height:  calc(18px + 1.7vw);
        font-weight: 700;
        max-width: calc(100px + 15vw);
    }

    .slogan.slogan-mega {
        font-weight: 100;
        max-width: none;
        text-align: left;
        font-size: calc(15px + 7.5vw);
    }

.grid-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: flex-start;

}

    .grid-split.min-content-right {
        grid-template-columns: auto min-content;
    }

.block-greenish {
    background: var(--greenish);
    color: white;
    background: rgba(116,107,76,0.85);
}

.block-greenish h2 {
    color: white;
}

.block-greenish.padding-v-xl {
    margin-top:  50px;
    margin-bottom:  50px; 
}

.text-block {
    max-width: 750px;
    margin: 0px auto;
    padding: 50px;
    line-height: 32px;
}
.text-block.text-block-small {
    max-width: 450px;
}

h2 {
    color:  var(--pink,pink);
    font-weight: 900;
}

h3, .headline.small {
    color: var(--gray,gray);
    font-size:  1.17em;;
}

.valign-center {
    align-items: center;
}

.block-gray {
    background: var(--light-gray,gray);
}

.pic>img {
    width: 100%;
    height: auto;
}

.block-beige {
    width: 80%;
    background: var(--beige,beige);
}

.block-beige.full {
    width: 100%;
}

.block-beige h2 {
    font-weight: 700;
    font-size: 2em ;
}

.animate-left {
    transform:  translate(-25px,-100px);
}

.animate {
    transform:  translate(25px,100px);
    opacity: 0;
}

.in-view {
    transform:  translate(0%,0%);
    opacity: 1;
}

.animate, .in-view {
    transition: opacity .25s, transform 1s;
}

.pasfoto {
    max-width: 500px;
}


.wild-grid {
    margin-top: 375px;
}


.wild-grid>div:nth-child(4n+1){
    background: var(--beige,beige);
    width: 80%;
}
.wild-grid>div:nth-child(4n+1) .pic {
    transform: translateY(-50%);
}

.wild-grid>div:nth-child(4n+1) .text-block {
    margin: 0px;
}

.wild-grid>div:nth-child(4n+1) .grid-split {
    grid-template-columns: max-content 1fr;
}


.wild-grid>div:nth-child(4n+2) .grid-split {
    display: grid;
    grid-template-columns: max-content max-content;
    width: 100%;
    justify-content: flex-end;
}

.wild-grid>div:nth-child(4n+2) .pic {
    grid-row: 1;
    grid-column: 2;
}

.wild-grid>div:nth-child(4n+2) .text-block {
    grid-row: 1;
    grid-column: 1;
}


.wild-grid>div:nth-child(4n+2) .pic {
    transform: translateY(-25%);
}

.wild-grid>div:nth-child(4n+3)  {
    margin-top: -300px;
}

.wild-grid>div:nth-child(4n+3) .text-block{
    background: var(--beige,beige);
}

.wild-grid>div:nth-child(4n+3) .grid-split{
    grid-template-columns: max-content max-content;
}

.wild-grid>div:nth-child(4n) {
    background: var(--light-gray);
    margin-bottom: 50px;
}

.wild-grid>div:nth-child(4n) .grid-split {
    display: grid;
    grid-template-columns: max-content max-content;
    width: 100%;
    justify-content: flex-end;
}

.wild-grid>div:nth-child(4n) .pic {
    transform: translateY(-25%);
    grid-row: 1;
    grid-column: 2;
}

.wild-grid>div:nth-child(4n) .text-block {
    grid-row: 1;
    grid-column: 1;
}


.breadcrumbs {
    /* margin: 15px 0px; */
    width: 100%;
    text-align: right;
    /*position: absolute;
    right: 0px;
    top: -25px;*/
}

.breadcrumbs a, .breadcrumbs span {
    color: var(--pink);
    text-decoration: none;
}

.breadcrumbs span {
    margin-left: 5px;
    margin-right: 5px;
}

.cms-grid {
    margin-top: 150px;
}

.cms-grid .pic {
    width: 100%;
    height: auto;
    max-width: 750px;
}

.cms-grid>div:not(.uitz):nth-child(4n+1){
    background: var(--beige,beige);
}

.cms-grid>div:not(.uitz):nth-child(4n+1) .pic {
    transform: translateY(-150px);
}

.cms-grid>div:nth-child(4n+2) .grid-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    align-items: center;
}

.cms-grid>div:nth-child(4n+2) .pic {
    grid-row: 1;
    grid-column: 2;
}

.cms-grid>div:nth-child(4n+2) .text-block {
    grid-row: 1;
    grid-column: 1;
}


.cms-grid>div:nth-child(4n+2) .pic {
    xxtransform: translateY(-25%);
}

.cms-grid>div:nth-child(4n+3) {
    background: var(--greenish);
    color: white;
}
.cms-grid>div:nth-child(4n+3) h2, .cms-grid>div:nth-child(4n+3) h3,.cms-grid>div:nth-child(4n+3) h4 {
    color: white;
}

#gmap {
    width: 100%;
    height: 500px;
}

#cntFrm {
    width: 100%;
    max-width: 500px;
    padding: 25px 0px;
}

#cntFrm input, #cntFrm textarea, #cntFrm select, #cntFrm .btn {
    width: 100%;
}

.left-menu-hor {
    padding: 0px;
}

.left-menu-hor nav {
    margin: 0px;
    flex-direction: row;
    justify-content: space-around;
    width: 100%;
}

.blockquotes>div {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    text-align: center;
}

.blockquotes#ervaringen {
    margin-top: -100px;
}

.blockquotes>div:nth-child(2n+1){
    flex-direction: row-reverse;
}

.blockquotes {
    padding-top: 150px;
}

blockquote {
    position: relative;
    margin: 40px 60px;
    padding: 1.6em 3.6em 0.7em 3.6em;
    background: rgb(167 99 105 / 43%);
    width: 100%;
    max-width: 750px;
}

.newsitem blockquote {
    padding: 75px;
      padding-left: 250px;
    max-width: 1000px;
}

.newsitem .pasfoto {
    margin-right: -250px;
    height: 350px;
    object-fit: cover;
    width: 100%;
}

.newsitem:nth-child(2n) .pasfoto{
    margin-right: 0px;
    margin-left: -250px;
}

.newsitem:nth-child(2n) blockquote{
    padding-left: 75px;
    padding-right: 250px;
}

.animate.in-view {
    opacity: 1;
    transform: translateY(0%);
    transition: .5s;
}

    .animate {
        opacity: 0;
        transform: translateY(20vh);
        transition: .5s;
    }

.ervaring blockquote::before {
    content: "❝";
    transform: rotate(180deg);
    width: 100%;
    display: flex;
    justify-content: center;
    text-align: center;
    color: var(--pink);
    font-size: 36px;
}

.ervaring blockquote::after {
    content: "❝";
    width: 100%;
    display: flex;
    justify-content: center;
    text-align: center;
    color: var(--pink);
    font-size: 36px;
}



blockquote h3 {
    font-size: 26px;
    margin: 5px 0px;
}

blockquote p {
    width: 100%;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 27px;
    font-size: 14px;
    margin: 50px 0px;
}

cite {
    display: block;
    margin-top: 30px;
    text-indent: 0;
    color: var(--pink);
    font-weight: bold;
}

.quote:nth-child(3n+1) blockquote{
    background: var(--light-gray);
}

.quote:nth-child(3n+2) blockquote {
    background: #746f4c78;
}



.alert {
    position: relative;
    padding: .75rem 1.25rem;
    margin: 1rem 0;
    border: 1px solid transparent;
    border-radius: .25rem;
    text-align: center;
}

     .alert-small {
        font-size: 11px;
    }

    .alert-primary {
        color: #004085;
        background-color: #cce5ff;
        border-color: #b8daff;
    }

    .alert-simple {
        color: #black;
        background-color: white;
        border-color: #eee;
    }

    .alert-success {
        color: #155724;
        background-color: #d4edda;
        border-color: #c3e6cb;
    }

    .alert-danger {
        color: #721c24;
        background-color: #f8d7da;
        border-color: #f5c6cb;
    }

    .alert-warning {
        color: #856404;
        background-color: #fff3cd;
        border-color: #ffeeba;
    }

    .alert.hidden { display: none; }

    .alert.large {
        padding: 2rem;
        font-size: 125%;
    }


footer {
    min-height: 300px;
    background: var(--light-gray);
}

header>.space-between {
    max-width: 2415px;
    margin: 0px auto;
}

.left-menu .inner .outer .inner a {
    color: rgba(255,255,255,0.6);
}

table {
    width: 100%;
    border: 1px solid var(--beige);
}

table td, table th {
    padding: 5px;
    font-size: 12px;
}

footer, footer nav a {
    color: var(--gray, gray);
}

footer>.space-between>div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

footer>.space-between>div div {
    margin: 5px 0px;
}

footer .btn {
    margin: 5px 0px;
    width: 100%;
    max-width: 300px;
}

.socials a {
    text-decoration: none;
}

.socials i {
    font-size: 22px;
    color: var(--pink);
}

.socials i:hover {
    color: var(--gray,gray);
}


header .socials i {
    color: var(--gray,gray);
}

header .socials i:hover {
    color: var(--pink);
}

#mainmenu a.chosen:after {
    content: '';
    width: 75%;
    height: 1px;
    background: var(--light-gray);
    position: absolute;
    bottom: 8px;
    left: 12.5%;
}

.dropdown-content .outer {
    display: none;
}

#mainmenu .outer span, #mainmenu .outer .prev {
    display: none;
}

#mainmenu>.inner {
    display: flex;
    justify-content: center;
    align-items: center;

}