.imageRow{
    display:flex;
}
.imageRow .imageRowBox{
    width:calc(100% / 3);
    height:100%;
    flex:1;
    position: relative;
}
.imageRow .imageRowBox div.imageHolder{
    border-radius: 0;
    z-index: 0;
    background-size: cover;
    /* background-size: calc(100dvw - 20%) cover; */
}
.imageRow .imageRowBox::after{
    z-index: 1;
    content:'';
    background: linear-gradient(0deg, rgb(0 0 0 / 84%) 0%, rgb(0 0 0 / 67%) 35%, rgb(0 0 0 / 23%) 100%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.imageRow .imageRowBox .imageRowBox-content{
    z-index: 2;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 3rem;
}
.greyBorderBottom{
    border-bottom: 1px solid var(--themeGreyDark);
}

.tagsHolder{
    display:flex;
    gap:15px;
}
.tagsHolder span{
    display: inline-flex;
    padding: 4px 15px;
    border-radius:20px;
    height: 40px;
    font-size: 14px;
    color:var(--themeBg);
    background-color: var(--themePrimary);
    align-items: center;
    justify-content: center;
    font-weight: 400;
}

.backgroundTheme .button-circle{}
.backgroundTheme .button-circle .button.circle{
    --bgColor: var(--themeYellowGray);
    color: #fff;
}

.breadcrumb{
	height:80px;
	border-bottom: var(--themeBorder);
	border-top: var(--themeBorder);
	margin: 0;
}
.breadcrumb a:not(:last-of-type){
    color: var(--themePrimary);
}
.breadcrumb a{
    color: white;
    display:inline-flex;
    align-items: center;
}
.breadcrumb .spacer{
    padding:0 10px;
}

@media screen and (min-width:769px){
    .headerAnimated{
        position:relative;
        overflow:hidden;
    }
    .headerAnimated .imageRowBox{
        transition: all .6s linear;
        position:relative;
    }
    .headerAnimated .imageRowBox .imageRowBox-content{
        width:calc(100dvw / 3);
    }
    .headerAnimated .imageRowBox{
        flex:none;
    }
    .headerAnimated:hover .imageRowBox:not(:hover){
        width:10%;
        z-index:0;
    }

    .headerAnimated:hover .imageRowBox:not(:hover) + .imageRowBox:not(:hover) + .imageRowBox,
    .headerAnimated:hover .imageRowBox:hover{
        width:80%;
        z-index:1;
    }
    .headerAnimated:hover .imageRowBox h1{
        display:inline-block;
        transform-origin: left center;
    }
    .headerAnimated:hover .imageRowBox:not(:hover) h1{
        animation:textRotateAnim 1s forwards;
        width:100%;
    }
    .headerAnimated:hover .imageRowBox:hover h1{
        /* animation:textRotateAnim 1s backwards; */
        width:100vw;
    }
    .headerAnimated:hover .imageRowBox:hover .imageRowBox-content{
        width:100%;
    }
}
.headerAnimated .imageRowBox .extraContent{
    opacity:0.0;
    position:absolute;
    bottom:3rem;
    right:2rem;
    display:flex;
    height:auto;
    width:50%;
    min-width:200px;
    flex-direction: column;
    gap:1rem;
    align-items: flex-end;
}
.headerAnimated:hover .imageRowBox:hover .extraContent{
    opacity:1.0;
}
.headerAnimated:hover .imageRowBox:hover .extraContent a{
    animation:showInAnim 1s forwards ease-in;
    display:inline-flex;
    border: 1px solid var(--themePrimary);
    background-color: var(--themePrimary);
    border-radius:40px;
    color: #000;
    height:40px;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    font-weight: 400;
    font-size: 12px;
}
@media screen and (max-width:769px){
    .headerAnimated .imageRowBox .extraContent a
        display:none;
    }
}

.fotoCollection{
    --columns: 4;
    --gap: 1rem;
    grid-gap: var(--gap);
}
.fotoCollection .collectionItem{
    aspect-ratio: 1;
}
.fotoCollection .collectionItem .imageHolder{}

.faqSection .faqItemHolder{}
.faqSection .faqItem{
    cursor:pointer;
}
.faqSection .faqItem .question{
    display: inline-flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    margin: 0px 0;
    font-size: 22px;
    font-weight: 400;
}
.faqSection .faqItem .answer{
    transition: all .2s ease-in-out;
    max-height:100dvh;
    overflow:auto;
}

.faqSection .faqItem .question button{
    transition: all .2s ease-in-out;
    transform: rotateZ(0deg);
}
.faqSection .faqItem:not(.shown) .question button{
    transform: rotateZ(90deg);
}
.faqSection .faqItem:not(.shown) .answer{
    max-height:0;
    overflow:hidden;
}
.faqSection .faqItem:not(.shown) button{
    --bgColor:transparent;
    --txtColor: #fff;
    --borderColor: #fff;
}

.omschrijvingSection p{
    color: #fff;
    font-size: 17px;
}

.mainContainer a{
    color:var(--themePrimary);
}

body .bottomImageSlider{
    --slideHeight: 50dvh;
    overflow: visible;
}
body .bottomImageSlider .carouselHolder{
    overflow: visible;
    transform: translateX(-100%);
}


@keyframes textRotateAnim {
    0%   {opacity:0.0;}
    20%  {
        opacity:0.0; transform:rotateZ(0deg);
    }
    50%  {
        opacity:0.0; transform:rotateZ(-90deg); white-space: nowrap;
    }
    80%  {opacity:1.0;transform:rotateZ(-90deg); white-space: nowrap;}
    100% {opacity:1.0;transform:rotateZ(-90deg); white-space: nowrap;}
}
@keyframes showInAnim {
    0%   {opacity:0.0;}
    80%  {opacity:1.0;}
    100% {opacity:1.0;}
}


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

    body .searchHolder{
        /* width: 100dvw !important; */
        flex: none !important;
    }
    body .overview-filterBar{
        display:flex;
        border: var(--themeBorder);
        width:100%;
        align-items: stretch;
        height: auto;
        padding: 0;
        flex-wrap: wrap;
        flex-direction: row;
        border-bottom: none;
    }
    body .overview-filterBar .filterItem{
        flex: 1 !important;
    }
    body .overview-filterBar .filterItem .filterItem-content {
        border-left: var(--themeBorder);
        border-bottom: var(--themeBorder);
    }
    body .overview-filterBar .filterItem .filterItem-content:first-of-type {
        border-left:0;
    }
    body .overview-filterBar .filterItem + .filterItem .filterItem-content {
        border-left:var(--themeBorder);
    }
    body .overview-filterBar .filterItem:nth-of-type(odd) .filterItem-content{
        border-left: 0;
    }
    body .fotoCollection{
        --columns: 2;
        --gap: 1rem;
        grid-gap: var(--gap);
    }
}
@media screen and (max-width:769px){
    .omschrijvingSection{
        padding-left:1.25rem;
        padding-right:1.25rem;
    }
    body .headerAnimated{
        display: block;
        margin-top: 0px !important;
        height: calc(100dvw + 50dvw);
    }
    body .headerAnimated.imageRow .imageRowBox::after {
        /* background: linear-gradient(0deg, rgb(0 0 0 / 45%) 0%, rgb(0 0 0 / 22%) 35%, rgb(0 0 0 / 23%) 100%); */
    }
    body .headerAnimated .imageRowBox{
        width: 100dvw;
        height: auto;
        flex: 0.5;
        position: relative;
        aspect-ratio: 1;
    }
    body .headerAnimated .imageRowBox:first-of-type ~ .imageRowBox{
        width: calc(50% - 5px);
        float: left;
        margin-top:10px;
    }
    body .headerAnimated .imageRowBox:last-of-type{
        margin-left:10px;
    }
    body .headerAnimated .imageRowBox .imageRowBox-content{
        padding: 1rem;
    }
    body .headerAnimated .imageRowBox .imageRowBox-content h1{
        /* font-size:25px; */
    }
    body .headerAnimated .imageRowBox:not(:first-of-type) .imageRowBox-content h1{
        font-size:20px;
    }
    body .headerAnimated .imageRowBox .imageRowBox-content .extraContent{}
    body .headerAnimated .imageRowBox .imageRowBox-content .extraContent a{
        display:none !important;
    }

    .faqSection .faqItem:not(.shown) .question button{
        --buttonCircleHeight: 35px;
    }
}