
/* Regular */
@font-face {
    font-family: 'Dolce Regular';
    src: local('Dolce regular'), local('Dolce Regular'),
        url('../fonts/Dolce\ Regular.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Brother 1816 Bold';
    src: local('Brother 1816'), local('Brother 1816 Bold'),
        url('../fonts/Brother-1816-Bold.ttf') format('opentype');
    font-weight: bold;
    font-style: normal;
}

@font-face {
    font-family: 'Brother 1816';
    src: local('Brother 1816'), local('Brother 1816'),
        url('../fonts/Brother-1816-Regular.ttf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'connecticut';
    src: local('connecticut'), local('connecticut'),
        url('../fonts/connecticut.ttf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'SakkalMajalla';
    src: local('SakkalMajalla'), local('SakkalMajalla'),
        url('../fonts/majalla.ttf') format('opentype');
    font-weight: 400;
    font-style: normal;
}






:root {

    --white                     :#FFFFFF;
    --blue                      :#2f4b59;
    --biege                     :#f1f0eb;
    --lightblue                 :#09B1D8;
    --brown                     :#937b4a;
    --darkbrown                 :#f4ede3;
    --darkblue                  :#0B2933;  
    --bluefooter                :#2e5262;             

    --font-Dolce: 'Dolce Regular', sans-serif;
    --font-Brother-bold: 'Brother 1816 Bold', sans-serif;
    --font-Brother: 'Brother 1816', sans-serif;
    --font-Sakkal: 'SakkalMajalla', sans-serif;


}

body,
body *,
*::before,
*::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    position: relative;
}
body {

    color: var(--blue);
    font-weight: 400;
    background-color: var(--white);
    overflow-x: hidden;
    font-family: var(--font-Brother);
}

p , p:hover{
    font-family: inherit;
    text-decoration: none;
    color: inherit;
    font-size: 16px;
    
}

a, a:active, a:visited, a:focus, a:hover {
    font-family: inherit;
    text-decoration: none;
    color: inherit;
    
}
a:active{
    color: var(--lightblue);
    font-weight: bold;
}

ul{
    display: flex;
    flex-direction: column;
}
.text a {
    text-decoration: underline;
}

input::placeholder                  { font-size: inherit; color: inherit; opacity: 1; background-color: inherit; outline: none; border: none; border-radius: inherit; font-size: inherit; font-family: inherit; }
input::-moz-placeholder             { font-size: inherit; color: inherit; opacity: 1; background-color: inherit; outline: none; border: none; border-radius: inherit; font-size: inherit; font-family: inherit; }
input::-webkit-input-placeholder    { font-size: inherit; color: inherit; opacity: 1; background-color: inherit; outline: none; border: none; border-radius: inherit; font-size: inherit; font-family: inherit; }
input::-ms-placeholder              { font-size: inherit; color: inherit; opacity: 1; background-color: inherit; outline: none; border: none; border-radius: inherit; font-size: inherit; font-family: inherit; }
textarea::placeholder               { font-size: inherit; color: inherit; opacity: 1; background-color: inherit; outline: none; border: none; border-radius: inherit; font-size: inherit; font-family: inherit; resize: inherit; }
textarea::-moz-placeholder          { font-size: inherit; color: inherit; opacity: 1; background-color: inherit; outline: none; border: none; border-radius: inherit; font-size: inherit; font-family: inherit; resize: inherit; }
textarea::-webkit-input-placeholder { font-size: inherit; color: inherit; opacity: 1; background-color: inherit; outline: none; border: none; border-radius: inherit; font-size: inherit; font-family: inherit; resize: inherit; }
textarea::-ms-placeholder           { font-size: inherit; color: inherit; opacity: 1; background-color: inherit; outline: none; border: none; border-radius: inherit; font-size: inherit; font-family: inherit; resize: inherit; }

.lazy           { opacity: 0; transition: opacity 0.1s ease; }
.lazy.loaded    { opacity: 1; }
.lazy-bg        { opacity: 0; transition: opacity 0.1s ease; 
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;}
.lazy-bg.loaded { opacity: 1; }

.lazy.image-square {border-radius: unset;}

.bg {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

h1, h2, h3 {
    font-weight: 400;
}

p, ul, li, ol {
    line-height: unset;
}
div.text ul,
div.text ol {
    padding-left: 16px;
}

ul {
    padding-left: 1.2em;
}

.btn-holder {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap; 
    gap: 20px;
}
.btn-holder.start {
    justify-content: start;
    
}
.btn-holder.center {
    justify-content: center;
    
}

.btn-holder.end {
    justify-content: end;
    margin-top: 25px;
}
.btn-holder.center a.btn { margin-right: 46px; }
.btn-holder a.btn:last-child { margin-right: 0; }
.btn-holder.col {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}
    .btn-holder a.btn {
        display: flex;
        align-items: center;
        font-family: var(--font-Brother);
        font-size: 16px;
        text-transform: uppercase;
        text-decoration: none;
        background-color: var(--brown);
        color: var(--white);
        cursor: pointer;
        padding: 5px 22px 7px 18px;
        border-radius: 100px;
        transition: all .3s ease;
    } .btn-holder a.btn::before {
        position: relative;
        content: "";
        height: 14px;
        width: 18px;
        background-image: url(../images/SVG/pijl-button.svg);
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
        margin-right: 18px;
      }
        
        .btn-holder a.btn.no-arrow::after {
            content: unset;
        }
        .btn-holder a.btn:nth-child(2n) {
            background-color: var(--white);
            color: var(--brown);
        }
            .btn-holder a.btn:nth-child(2n)::before {
                background-image: url(../images/SVG/pijl-button-brown.svg);
            }
        
        .btn-holder a.btn::selection {
            color: inherit;
        }
        .btn-holder.transparent a.btn {
            background-color: transparent;
        }
    .btn-holder a.btn:hover {
        transition: all .3s ease;
        transform: scale(1.05);
    }
    .btn-holder a.btn:active {
        transition: all .3s ease;
        transform: scale(0.95);
    }
    .btn-holder a.btn>i {
        margin-right: 6px;
    }
    .btn-holder a.btn>span {
        height: 18px;
        width: 18px;
        mask-size: contain;
        mask-position: center;
        mask-repeat: no-repeat;
        background-color: var(--white); 
        margin-right: 8px;
        font-family: var(--font-Brother);
    }
    .btn-holder.end {
        justify-content: flex-end;
    }

.slick-track {
    width: 100%;
}
.slick-slide {
    margin: 0 30px;
}
.slick-list {
    width: 100%;
}

.page-container {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 75px;
}


/*  MOBILE NAVBAR  */
#mobile-navbar {
    z-index: 1;
}
#mobile-navbar .burger:hover {
	cursor: pointer;
}
	#mobile-navbar .burger {
		position: relative;
	}
		#mobile-navbar .menu-bar {
			background-color: var(--blue);
            border-radius: 10px;
			width: 42px;
			height: 5px;
			display: block;
			margin-bottom: 8px;
			opacity: 1;
		} #mobile-navbar .menu-bar.bar2 {
            width: 30px;
            margin: 0 0 8px auto;
        }
        #mobile-navbar.navbar-open {
            display: none;
            position: fixed;
            top: 105px;
            right: 20px;
            z-index: 20;
        }
		#mobile-navbar.navbar-open .bar1 {
			transform: translateY(-2px) rotate(45deg);
		}
		#mobile-navbar.navbar-open .bar2 {
			opacity: 0;
		}
		#mobile-navbar.navbar-open .bar3 {
			transform: translateY(2px) rotate(-45deg);
		}
		#mobile-navbar .burger .bar1, #mobile-navbar .burger .bar2, #mobile-navbar .burger .bar3 {
			transform-origin: left;
			transition: all .6s ease;
		}
#mobile-menu {
	width: 100%;
	height: 100%;
	position: fixed;
	display: none;
    justify-content: center;
    align-items: center;
	opacity: 0;
	left: 0;
	top: 0;
	background-color: var(--blue);
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
	z-index: 10;
}
    .menu-exit {
        position: absolute;
        right: 30px;
        top: 30px;
    }
        .menu-exit i.fa-solid {
            cursor: pointer;
            color: var(--white);
            font-size: 50px;
        }
	.mobile-menu-inner {
		padding: 10px 10px 40px 10px;
        text-align: center;
	}
        .mobile-menu-inner img {
            width: 100%;
            max-width: 100px;
            padding-bottom: 30px;
            
        }
        .mobile-menu-inner ul {
            list-style-type: none;
            text-align: center;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            row-gap: 17px;
            padding: 20px;
        }
            .mobile-menu-inner ul li p{
                color: var(--darkbrown);
                text-transform: uppercase;
                font-size: 20px;

            }
                .mobile-menu-inner ul li a {
                    color: var(--lightblue);
                    font-size: 12px;
                    font-family: var(--font1);
                    font-weight: 400;
                    text-transform: uppercase;
                    text-decoration: none;
                }
                .mobile-menu-inner ul li a.active {
                    font-weight: bold;
                    color: var(--darkbrown);
                }
        .mobile-dropdown {
            display: none;
        }

    .mobile-sub-menu {
        display: none;
        flex-direction: column;
        row-gap: 12px;
        padding: 14px 0 0;
    }
    .mobile-menu-inner ul li .mobile-sub-menu a {
        color: var(--black);
        font-size: 16px;
        font-weight: unset;
    }
    .mobile-sub-menu.open {
        display: flex;
        transition: all 0.3s ease-in-out;
    }


	#mobile-menu.mobile-menu-open {
		display: flex;
		opacity: 1;
		transition: opacity .6s ease;
	}
    #mobile-navbar.navbar-open .menu-bar { 
        background-color: var(--darkbrown);
    }
	#mobile-navbar {
		display: none;
	}


.topbar {
    width: 100%;
    height: 38px;
    display: flex;
    justify-content: center;
    background-color: var(--offwhite);
}
    .topbar-inner {
        width: 100%;
        max-width: 1920px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        column-gap: 30px;
        padding: 10px 15px;
    }

        .topbar-inner .left span {
            color: var(--orange);
            font-family: var(--font-text);
            font-size: 12px;
        }
    .topbar-inner .right {
        display: flex;
        column-gap: 30px;
    }
        .topbar-inner a {
            display: flex;
            align-items: center;
            column-gap: 16px;
            font-family: var(--font-text);
            font-size: 12px;
            color: var(--orange);
            text-decoration: none;
        }
        .topbar-inner a img {
            width: 18px;
            object-fit: contain;
        }

        .navbar {
            width: 100%;
            height: 88px;
            z-index: 10;
            position: fixed;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: var(--white);
            transition: all 0.3s ease;
        }
        
        .navbar.scrolled {
            height: 70px;
            transition: all 0.3s ease;
            box-shadow: 0px 0px 10px -6px black;
        }

         .navbar.scrolled .nav-label{
           padding: 18px 0;
         }
        
        .navbar-inner {
            width: 100%;
            max-width: 1400px;
            display: flex;
            justify-content: space-around;
            align-items: center;
            column-gap: 30px;
            padding: 0 15px;
        }
            .navbar-inner img.logo {
                height: 40px;
            }

        .navbar-inner h2.title2{
            font-size: 26px;
            font-family: var(--font-Dolce);
            width: 175px;
        }
            
        .nav {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            gap: 45px;
        }
        li.nav-item>span {
            
        }        
        .nav-label {
            position: relative;
            display: inline-block;
            cursor: pointer;
            padding: 28px 0;
            text-transform: uppercase;
            transition: background-color 0.2s;
            font-family: var(--font-Brother);
            border-bottom: 4px solid transparent;
            transition: all 0.3s ease;
        }

        .nav-label.active::after{
            content: "";
            position: absolute;
            left: 50%;
            bottom: -6px;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            border-bottom: 4px solid var(--lightblue);
            z-index: 99;
        }
        .active {
            font-weight: bold;
            color: var(--lightblue);
        }
        .dropdown-menu-container {
            width: 100%;
            top: 100%;
            position: absolute;
            padding-bottom: 20px;
        }       
        .dropdown {
            display: none;
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            list-style: none;
            padding: 0;
            margin: 0;
            background-color: #ffffffc4;
            border: 1px solid #ccc;
            z-index: 9;
            min-width: 200px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            border-radius: 10px;
            text-align: center;
            font-size: 14px;
            padding: 20px 0px;
            margin-top: 10px;
        }
        .dropdown_line {
            content: "";
            position: absolute;
            left: 50%;
            top: -13px;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            border-bottom: 4px solid var(--lightblue);
            z-index: 99;
        } 
        
        .dropdown li {
            padding: 10px;
            white-space: nowrap;
            cursor: pointer;
        }
        
        .dropdown li:hover {
            color: var(--brown);
        }
        
        .nav-item:hover .dropdown {
            display: block;
        }
            
.header_img{
    position: absolute;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
}            
.page-header {
    z-index: 1;
    width: 100%;
    display: flex;
    justify-content: center;
}
    .page-header-inner {
        width: 100%;
        height: 500px;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
        .page-header-inner img {
            position: absolute;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }
        /* .page-header-inner video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
        } */
        .page-header .content {
            z-index: 2;
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            background-color: var(--blue);
            padding: 50px 15px;
        }
        .page-header .header-img {
            z-index: 1;
            position: absolute;
            top: 0;
            left: 0;
            bottom: 0;
            right: 0;
            background-size: cover;
            background-repeat: no-repeat;
            background-position: top center;
        }
.text-page-header {
    z-index: 1;
    width: 100%;
    display: flex;
    justify-content: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;

}
    .text-page-header-inner {
        width: 100%;
        height: 500px;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

        .text-page-header .content {
            z-index: 2;
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 50px 15px;
            
        }

.footer {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 100px 15px;
    background-color: var(--darkblue);
    color: var(--white);
    font-family: var(--font-Brother);
}
.footer strong{
    display: contents;
    
}
    .footer-inner {
        width: 100%;
        max-width: 1200px;
        display: flex;
        justify-content: center;
        gap: 200px;
        flex-wrap: wrap;
    }
        .footer-left {
            width: 100%;
            max-width: 240px;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            row-gap: 30px;
            justify-content: center;
            height: 75px;
        }
            .footer-left img.lazy {
                width: 240px;
                height: 100%;
                
            }
            .footer-left .text {
                font-size: 16px;
                
            }

            .footer-right{
                width: 240px;
            }
        
    .footer-nav-wrapper {
        width: 100%;
        display: flex;
        justify-content: center;
        background-color: var(--bluefooter);
    }
        .footer-nav{
            width: 100%;
            max-width: 1800px;
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            color: var(--biege);
            padding: 100px;
            column-gap: 30px;
            row-gap: 30px;
        }
            .footer-nav .title{
                text-transform: uppercase;
                font-family: var(--font-Brother-bold);
                font-size: 16px;
            }
            .footer-nav .items{
                margin-top: 20px;
                text-decoration: none;
                padding: 10px, 0px;
                list-style: none;
            }


.signature {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 100px 15px 10px;
}
    .signature-inner {
        width: 100%;
        max-width: 1920px;
        display: flex;
        justify-content: flex-end;
        flex-wrap: wrap;
        row-gap: 10px;
    }
        .signature-left {
            display: flex;
            column-gap: 20px;
        }
            .signature-left span {
                color: var(--offwhite);
                font-size: 14px;
                font-style: italic;
                font-weight: normal;
            }
                .signature-left span a {
                    color: inherit;
                    font-style: inherit;
                    font-weight: inherit;
                    font-size: inherit;
                    font-family: inherit;
                }

            .signature-right span {
                font-family: var(--font-text);
                font-size: 14px;
                font-weight: 600;
                color: var(--brown);
                text-decoration: none;
            }
                .signature-right span a {
                    color: inherit;
                    font-family: inherit;
                    text-decoration: none;
                }

/* Parallax Section */
.banner {
    position: relative;
    width: 100%;
    height: 580px;
    overflow: hidden;
}
    .banner .lazy {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }


.content-block {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 80px 15px;
    background-color: var(--white);
    
    
}
    /* .content-block */   
    .page-header + .content-block {
        margin-top: -80px;
        padding-top: 180px;
    }
    .content-block-inner {
        width: 100%;
        max-width: 1300px;
        display: flex;
        justify-content: center;
        align-items: center;
        column-gap: 140px;
    }
        .content-block .content {
            flex: 1;
            max-width: 510px;
            /* padding-left: 170px; */
            margin-bottom: 10px;
        }

        .content-block .content.reverse {
            margin-left: 100px;
        }

        .content-block .content.text-center{
            display: flex;
            justify-content: center;
            flex-direction: column;
            width: 100%;
            max-width: 1350px;
        }
            .content-block .content .title-holder {
                display: flex;
                justify-content: center;
                margin-bottom: 20px;
            }

            .content-block .content h1.title {
                font-size: 23px;
                font-weight: 600;
                text-transform: uppercase;
                margin-bottom: 20px;
            }
                
            .content-block .content h2.title2 {
                font-size: 43px;
                font-family: var(--font-Dolce);
                margin-top: -16px;
            }
            .content-block .content .text {
                font-size: 16px;
                margin-top: 40px;
            }
            
            .content-block .content .text p {
                margin-bottom: 25px;
            }
            .content-block .content .btn-holder {
                margin-top: 40px;
            }
            
            .content-block strong,
            .content-block b {
                font-weight: 600;
            }

            .content-block .content .items{
                /* display: flex; */
                /* flex-direction: row; */
                /* justify-content: space-evenly; */
                /* height: 200px; */
                display: grid;
                grid-template-columns: repeat(4, 1fr);
                column-gap: 30px;
                row-gap: 30px;
                margin-top: 30px;
            }
            .content-block .content .item{
                display: flex;
                flex-direction: column;
                justify-content: center;
                color: white;
            }
            .content-block .content .items.Dingen .item h2.title2 {
                text-align: center;
            }
            .content-block .content .item .btn-holder{
                display: flex;
                justify-content: center;
                align-items: center;
                margin-top: 30px;
            }
            .content-block .content .item .btn-holder a.btn{
                background-color: var(--lightblue);
                padding: 10px 22px;
                display: flex;
        
            }
            .content-block .content .item .btn-holder a.btn::before{
                content: unset;
            }


.content-block.reverse .content-block-inner {
    flex-direction: row-reverse;
}


.content-block .image-holder {
    height: auto;
    width: auto;
    max-width: 376px;
    max-height: 376px;
    object-fit: contain;
    display: flex;
    justify-content: center;
} 
    .content-block .image-holder :not(img.lazy.full-image) {
        /* width: 376px; */
        /* height: 400px; */
        object-fit: cover;
        aspect-ratio: 1/1;
        display: flex;
        justify-content: center;
    }
    .content-block .image-holder-with-info{
        width: 376px;
        height: 140px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .content-block .image-holder-with-info b{
        text-align: center;
    }
    .content-block .image-holder-with-info .lazy-loaded-img-info{
        width: 376px;
    }
    .content-block .image-holder img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: top;
    }
    .content-block .image-holder img.lazy.full-image {
        width: auto;
        height: auto;
        object-fit: contain;
        object-position: top;
    }
    .content-block .image-holder img:not(.lazy.image-square) {
        border-radius: 50%;
    }

    .content-block .image-holder .img::before {
        /* content: "";
        position: absolute;
        top: -10px;
        left: -10px;
        width: calc(100% + 10px);
        height: calc(100% + 17px);
        background-image: url("../images/circle-text.svg");
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat; */
        /* transform:  translateZ(-1px); */
    }

    /* bredere afbeelding */
    .content-block-inner.large-img {
        max-width: 1100px;
    }
    .content-block .content-block-inner.large-img .image-holder {
        width: 100%;
        max-width: 450px;
    }
    .content-block .content-block-inner.large-img .image-holder::after {
        background-image: url("../images/img-border-large.svg");
    }
    .content-block .content-block-inner.large-img .image-holder img {
        aspect-ratio: 13 / 10;
        border-top-left-radius: unset;
        border-top-right-radius: 90px;
    }


.full-page-banner {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    
            /* justify-content: center; */
            align-items: center;
    padding: 5px 15px;
    
}

    .full-page-banner h1.title {
        font-size: 23px;
        font-weight: 600;
        text-transform: uppercase;
        margin-top: 15px;
    }
        
    .full-page-banner h2.title2 {
        font-size: 52px;
        font-family: var(--font-Dolce);
        margin-top: -8px;
    }

.full-block {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 130px 15px;
    
}
    .full-block .content.menu{
        display: flex;
        flex-direction: row;
    }
    .full-block .content .content-block {
        flex-direction: column;
        width: 70%;
    }
     .full-block .content .menu{
        width: 30%;
        height: 100%;
        padding: 80px 15px;
    }
        .full-block .content .menu h1.title {
            color: var(--blue);
            padding: unset;
            margin-bottom: 40px;
        }
             .full-block .content .menu h1.title::before {
                position: relative;
                content: "";
                display: inline-block; 
                height: 17px;
                width: 28px;
                background-image: url(../images/SVG/arrow.svg);
                background-repeat: no-repeat;
                background-size: contain;
                background-position: center;
                
             }
        .full-block .content .menu h2.title2 {
            color: var(--lightblue);
            padding: unset;
            line-height: 0.5;
        }

        .full-block .content .menu li{
            list-style: none;
        }

        .full-block .content .menu .active{
            color: var(--brown);
        }

        .full-block .content .menu a{
            font-size: 18px;

        }
        

    .content #player iframe{
        height: 600px;
    }
    .full-block .content .items{
        display: flex;
        flex-direction: row;
    }
        .full-block .content .item{
            display: flex;
            color: white; 
            gap: 20px;
        }
        .full-block .content .item .btn-holder{
            display: flex;
            /* justify-content: center; */
            align-items: center;
            margin-top: 30px;
            width: 295px;
        }
        .full-block .content .item .btn-holder a.btn{
            background-color: var(--lightblue);
            padding: 10px 22px;
            display: flex;

        }
        .full-block .content .item .btn-holder a.btn::before{
            content: unset;
        }
        .full-block .content .btn-holder{
            padding: 10px 50px;
        }
        
    .full-block-inner {
        width: 100%;
        max-width: 1450px;
        display: flex;
        flex-direction: column;
    }
        .full-block-inner h1.title {
            font-size: 23px;
            font-weight: 600;
            text-transform: uppercase;
            margin-bottom: 20px;
            font-family: var(--font-Brother-bold);


        }
        .full-block-inner h2.title2 {
            font-size: 43px;
            font-family: var(--font-Dolce);
        }
        .bg-blue .text {
            
            color: var(--white);  
        }
        .full-block-inner .content h1.title {
            padding: 10px 50px;
        }
        .full-block-inner .content h2.title2 {
            padding: 10px 50px;
        }
        .full-block .text {
            width: 100%;
            padding: 10px 50px;
            font-size: 16px;
            font-family: var(--font-Brother); 
            margin-bottom: 10px;
        }
        .full-block .text p {
            margin-bottom: 25px;
        }
        .full-block h1.title-btm {
            width: 100%;
            text-align: right;
            padding-right: 80px;
            font-size: 16px;
            font-weight: 600;
            text-transform: uppercase;
            color: var(--brown);
        }   .full-block h1.title-btm::before {
                content: "";
                position: relative;
                display: inline-block;
                width: 50px;
                height: 2px;
                background-color: var(--brown);
                border-radius: 10px;
                margin-right: 10px;
                top: -5px;
            }

        .full-block.brown-bg {
            background-color: var(--brown);
        }
        .full-block.brown-bg .btn-holder a.btn {
            border: 1px solid var(--white);
        }
        .full-block .table-container {
            max-height: 600px;      
            overflow-y: auto;        
        }

        .full-block table {
            width: 100%;
            border-collapse: collapse;
            background-color: var(--white);
          }


            .full-block table th, .full-block table td {
                padding: 10px;
                text-align: left;
                font-size: 16px;
                font-family: var(--font-Brother);
            }
            .full-block table thead th {
                position: sticky;
                top: 0;
                z-index: 1;
            }
        
            .full-block table th {
                background-color: var(--brown);
                color: var(--white);
                font-weight: 600;
            }

            .full-block table tr {
                background-color: #f9f9f9;
            }

            .full-block table td {
                white-space: nowrap;
              }

              .project-images {
                width: 100%;
                max-width: 1000px;
                display: flex;
                justify-content: center;
                padding: 30px 15px;
            }
                .project-images .image-grid {
                    display: grid;
                    grid-template-columns: repeat(6, 1fr);
                    grid-auto-rows: 280px;
                    grid-gap: 30px;
                    width: 100%;
                    box-sizing: border-box;
                }
                .project-images .image {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                    overflow: hidden;
                    box-shadow: inset 0px 0px 1px -4px black;
                }
                .project-images .image img {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                    transition: all 0.3s ease;
                }
                    .project-images .image:hover img {
                        transform: scale(1.05);
                        transition: all 0.3s ease;
                    }
                .project-images .standard {
                    grid-row: span 2;
                    grid-column: span 3;
                }
                .project-images .small {
                    grid-row: span 1;
                    grid-column: span 2;
                }
                .project-images .medium {
                    grid-row: span 1;
                    grid-column: span 4;
                }
                .project-images .large {
                    grid-row: span 2;
                    grid-column: span 6;
                }

    /* Kalender */
    .calendar {
        width: 100%;
        height: 100%;
        background-color: var(--white);
        border-radius: 10px;
        min-height: 707px;
        display: flex;
    }

    .calendar-menu{
        width: 100%;
        max-width: 310px;
        display: flex;
        display: none;
        flex-direction: column;
    }
        .calendar-menu i.closeButton {
            position: absolute;
            z-index: 2;
            top: 10px;
            left: 10px;
        }
        .opties {
            display: flex;
            align-items: center;
            padding: 10px 20px;
            height: 10%;
            gap: 10px;
        }

            .opties i{
                font-size: 20px;
            }
        
        .activiteiten {
            padding: 15px;
            padding-top: 25px;
            display: flex;
            justify-content: space-between;
            align-items: start;
            flex-direction: column;
        }
            .activiteiten h3 {
                margin-top: 0;
            }
            .activiteiten ul,.activiteiten li {
                width: 100%;
                margin: unset;
                padding: unset;
            }
            .activiteiten ul li {
                width: 100%;
                margin-bottom: 2px;
                padding: 8px;
                border-bottom: 2px solid #F3F3F3;
            }
    .kalender-title{
        display: flex;
        justify-content: space-evenly;
        font-size: 25px;
        align-items: center;
        margin-bottom: 15px;
    }

    .kalender-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
        max-width: 100%;
        height: 100%;
    }

    .kalender-container.expanded{
        max-width: 77%
    }

    .kalender {
        background: white;
        padding: 15px;
        border-radius: 8px;
        /* box-shadow: 0 0 8px rgba(0, 0, 0, 0.1); */
        width: 100%;
        box-sizing: border-box;
    }

    .dagen-rij, .dagen-container {
        display: grid;
        grid-template-columns: repeat(7, 1fr);
    }

    .dagen-rij div {
        font-weight: bold;
        padding: 8px 0;
        background-color: #e0e0e0;
        text-align: center;
    }

    .dagen-container div {
        padding: 10px 5px;
        border: 1px solid #ccc;
        position: relative;
        text-align: left;
        min-height: 97px;
        max-height: 97px;
        height: 100%;
    }

    .dagen-container div:hover {
        background-color: #dce8ef;
        cursor: pointer;
    }

    .dagen-container .bolletjes{
        display: flex;
        gap: 5px;
        border: none;
        height: 20px;
        max-height: 20px;
        min-height: unset;
        padding: unset;
        text-align: center;
        align-items: center;
    }

    .bolletjes p {
        width: 18px;
        height: 25px;
    }

    .vorige-maand {
        color: #aaa;
        background-color: #f9f9f9;
    }

    .aantal-activiteiten {
        font-size: 0.7em;
        background-color: #2f4b59;
        color: white;
        border-radius: 12px;
        padding: 2px 6px;
        position: absolute;
        bottom: 5px;
        left: 5px;
    }

    .drop_item_title {
        display: flex;
        flex-direction: row;
        text-align: center;
        align-content: center;
        align-items: baseline;
        gap: 10px;
    }

    .drop_item_info{
        display: none;
        padding: 1em;
        background-color: var(--white);
        line-height: 1.5;
        color: black;
    }

     .bg-pattern {
        background-image: url("../images/SVG/pattern-2.svg");
        background-size: 300px;
        background-repeat: repeat;    
        background-color: #DEE7EB;
    }

    .bg-pattern-verloop {
        background: linear-gradient(
            180deg,
            rgba(228, 237, 239, 1) 2%,
            rgba(255, 255, 255, 0) 60%
        ),
        url("../images/SVG/pattern-2.svg");
        background-size: 300px;
        background-repeat: repeat;    
        background-color: #DEE7EB;
    }

    

    .bg-pattern h1.title, .bg-pattern-verloop h1.title {
        color: var(--brown);
    }

    .bg-pattern h2.title2, .bg-pattern-verloop h2.title2 {
        color: var(--blue);
    }

    .bg-biege{
        background-color: var(--biege);
    }

    .bg-white{
        background-color: var(--white);
    }
    .bg-driekwart{
        background: linear-gradient(to right, 
                                    var(--biege) 74%, 
                                    var(--white) 74%);
    }
    .bg-driekwart-reverse{
        background: linear-gradient(to right, 
                                    var(--white) 26%, 
                                    var(--biege) 26%);
    }
    .bg-driekwart h1.title, .bg-driekwart-reverse h1.title {
        color: var(--brown);
    }

    .bg-driekwart h2.title2,.bg-driekwart-reverse h2.title2 {
        color: var(--brown);
    }
    .bg-blue{
       background-color: var(--blue);
       padding: 60px 15px;
    }
    .full-page-banner.bg-blue {
        padding: 15px 15px;
    }

    .bg-blue h2.title2 {
        color: var(--brown);
    }
    .bg-blue h1.title {
        color: var(--white);
    }

    .bg-blue a.btn{
       background-color: var(--lightblue);
        padding: 10px 22px;
        display: flex;
    }
    
    .bg-blue .btn-holder a.btn:nth-child(2n) {
            background-color: var(--white);
            color: var(--lightblue);
        }

    .bg-blue .btn-holder a.btn:nth-child(2n)::before {
        background-image: url(../images/SVG/pijl-button.svg);
    }

    .bg-brown{
        background-color: var(--darkbrown);
     }
 
     .bg-brown h2.title2 {
        color: var(--brown);
     }
     .bg-brown h1.title {
        color: var(--brown);
     }
.text-block {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 100px 15px 100px 15px;
}
    .text-block-inner {
        width: 100%;
        max-width: 1000px;
        background-color: var(--white);
        padding: 80px;
    }
    .text-block.offset-top {
        padding: 0 15px 100px 15px;
    }
        .text-block.offset-top .text-block-inner {
            margin-top: -100px;
        }
    /* .text-block .content {
        flex: 1;
    } */
        .text-block .content h1.title {
            font-size: 16px;
            font-weight: 600;
            text-transform: uppercase;
            color: var(--brown);
            margin-bottom: 20px;
        }
            .text-block .content h1.title::before {
                content: "";
                position: relative;
                top: -5px;
                display: inline-block;
                width: 50px;
                height: 2px;
                background-color: var(--brown);
                border-radius: 10px;
                margin-right: 10px;
            }
        .text-block .content {
            font-size: 34px;
            font-family: var(--font-Brother);
            text-transform: uppercase;
            color: var(--darkbrown);
            margin-top: -16px;
        }
        .text-block .content .text {
            font-size: 16px;
            line-height: var(--text-lineheight);
            color: var(--darkbrown);
            margin-top: 40px;
        }        
        .text-block strong,
        .text-block b {
            font-weight: 600;
        }
        .text-block .content .btn-holder {
            margin-top: 30px;
        }
        #colorbox:focus, #colorbox, #cboxLoadedContent, #cboxLoadedContent {
            outline: none;
            border: none;
            border-radius: 12px;
        }
        #cboxClose {
            display: none !important;
        }

        #cboxContent{
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
             border-radius: 12px;
        }

        #popup-content {
            background: #ffffff;
            padding: 30px;
            border-radius: 12px;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: #333;
            margin: 0 auto;
            height: 100%;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            border: 1px solid var(--biege);
            overflow-y: hidden;
        }

        #popup-content h2 {
            margin-top: 0;
            font-size: 40px;
            color: var(--brown);
            border-bottom: 1px solid #eee;
            font-family: var(--font-Dolce);
            padding-bottom: 10px;
            margin-bottom: 20px;
        }

        #popup-content p {
            font-size: 16px;
            line-height: 1.6;
        }


    /*.contact-info {
        display: flex;
        flex-wrap: wrap;
        column-gap: 50px;
        /* row-gap: 50px; */
        /*margin: 50px 0;
        padding: 0 15px;
    }*/
        /* .contact-item {
            display: flex;
            row-gap: 10px;
            flex-direction: column;
        }
            .contact-item .image-holder {
                width: 100%;
                max-width: 200px;
            }
            .contact-item .image-holder::after {
                content: "";
                position: absolute;
                top: -15px;
                left: -15px;
                width: calc(100% + 30px);
                height: calc(100% + 30px);
                background-image: url("../images/img-border2.svg");
                background-size: contain;
                background-repeat: no-repeat;
            }
            .contact-item .image-holder img {
                position: relative;
                width: 100%;
                aspect-ratio: 16 / 10.6;
                object-fit: cover;
            }
            .contact-list {
                display: flex;
                justify-content: center;
                flex-wrap: wrap;
                column-gap: 10px;
            }
                .contact-list h2.title2 {
                    font-size: 20px;
                    line-height: var(--text-lineheight);
                    font-weight: bold;
                    margin-bottom: 4px;
                    text-align: center;
                    width: 100%;
                }
                .contact-list img {
                    top: 3px;
                    display: inline-block;
                    width: 24px;
                    height: 24px;
                    margin-right: 4px;
                    filter: brightness(0) saturate(100%) invert(69%) sepia(26%) saturate(265%) hue-rotate(352deg) brightness(88%) contrast(85%);
                }
                .contact-list span {
                    font-size: 16px;
                    font-family: var(--font-text);
                    color: var(--darkbrown);
                    font-weight: 400;
                }
                .contact-socials {
                    display: flex;
                    column-gap: 20px;
                    margin-top: 20px;
                }
                    .contact-socials a.social {
                        font-size: 24px;
                        color: var(--brown);
                    }
                    .contact-socials a.social img {
                        width: 32px;
                        height: 32px;
                        object-fit: contain;
                        filter: brightness(0) saturate(100%) invert(69%) sepia(26%) saturate(265%) hue-rotate(352deg) brightness(88%) contrast(85%);
                    }
                    .contact-links {
                        width: 100%;
                        display: flex;
                        flex-direction: column;
                        row-gap: 10px;
                    }
                    .contact-links span {
                        color: var(--brown);
                        font-size: inherit;
                        font-family: inherit;
                        text-decoration: none;
                        text-transform: unset;
                    }
                        .contact-links img {
                            display: inline-block;
                            width: 20px;
                            height: 20px;
                            margin-right: 6px;
                            filter: brightness(0) saturate(100%) invert(69%) sepia(26%) saturate(265%) hue-rotate(352deg) brightness(88%) contrast(85%);
                        }
                        .contact-links img {
                            top: 2px;
                        }
                    
                    .contact-title {
                        width: 100%;
                        margin-top: 50px;
                    }
                        .contact-title h2.title2 {
                            width: 100%;
                            font-size: 26px;
                            font-family: var(--font1);
                            letter-spacing: var(--font1-spacing);
                            margin-bottom: 16px;
                        } */


.vimeo-container {
    padding: 0;
    width: 100%;
    height: 100%;
    /* overflow: hidden; */
    position: absolute;
    top: 0;
    left: 0;
}
    .vimeo-container .vimeo-overlay {
        z-index: 2;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
    }
    .vimeo-container iframe {
        z-index: 1;
        box-sizing: border-box;
        width: 177.77777778vh;
        height: 56.25vw;
        min-width: 100%;
        min-height: 100%;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }


    .scroll-down {
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        background: white;
        border: none;
        border-radius: 50%;
        width: 50px;
        height: 50px;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        transition: opacity 0.3s ease-in-out;
    }
    .scroll-down i {
        font-size: 24px;
        color: black;
    }
    .hidden {
        opacity: 0;
        pointer-events: none;
    }

.sidescroller{
    display: flex;
    flex-direction: row;
    width: 100%;
    max-width: 1000px;
    position: relative;
    justify-content: center;
    align-items: center;
    margin: 30px 0;
}
    .sidescroller .sidescroll_item{
        width: 100%;
        max-width: 800px;
        align-self: center;
        display: flex;
        padding: 50px;
        flex-direction: row;
        column-gap: 30px;
        row-gap: 20px;
        /* position: absolute; */
    }
        .sidescroller .sidescroll_item .text_holder{
            width: 100%;
            align-self: center;
            overflow-y: hidden;
            width: 100%;
            display: flex;
            flex-direction: column;
            row-gap: 6px;
            padding: 0 20px;
            scrollbar-gutter: stable;
            flex-grow: 1;
            align-items: center;
        }
        .sidescroller .sidescroll_item .text_holder .btn-holder{
            justify-content: center;
            margin-top: 10px;
        }
            .sidescroller .sidescroll_item .text_holder:hover{
                overflow-y: auto;
                width: 100%;
            }
            .sidescroller .sidescroll_item .text_holder .title{
                font-size: 23px;
                font-weight: 600;
                text-transform: uppercase;
                color: var(--brown);
            }
            .sidescroller .sidescroll_item .text_holder .subtitle{
                font-size: 43px;
                font-family: var(--font-Dolce);
                line-height: 0.8em;
                margin-top: -4px;
                color: var(--blue);
            }
            .sidescroller .sidescroll_item .text_holder .news_text{
            }
            .sidescroller .sidescroll_item .text_holder .news_datum{
                font-size: 18px;
                font-family: var(--font-Dolce);
                color: var(--bluefooter);
                position: absolute;
                top: 10px;
                right: 5px;
            }
            .scroller_image {
                width: 100%;
                max-width: 240px;
                height: 240px;
                flex-shrink: 0;
                border-radius: 10px;
                overflow: hidden;
            }
            .sidescroller .sidescroll_item .scroller_image + .text_holder {
                flex-grow: unset !important;
                align-items: unset !important;
            }
            .sidescroller .sidescroll_item .scroller_image + .text_holder .btn-holder {
                justify-content: flex-start;
            }
            .scroller_image img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                object-position: center;
            }
            #side-scroller-index {
                position: absolute;
                bottom: -10px;
                width: 100%;
                text-align: center;
            }

    .sidescroller .sidescroller_buttons{
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        pointer-events: none;
    }
        .sidescroller .sidescroller_buttons .arrow_previous,
        .sidescroller .sidescroller_buttons .arrow_next {
            display: flex;
            position: absolute;
            top: 50%;
            transform: translateY(-50%) scale(2);
            pointer-events: auto;
            background-color: transparent;
            border-color: transparent;
            cursor: pointer;
            transition: transform 0.1s ease;
        }

            .sidescroller .sidescroller_buttons .arrow_previous:hover,
            .sidescroller .sidescroller_buttons .arrow_next:hover {
                transform: translateY(-50%) scale(2.3);
                transition: transform 0.1s ease;
            }

            .sidescroller .sidescroller_buttons .arrow_previous:active,
            .sidescroller .sidescroller_buttons .arrow_next:active {
                transform: translateY(-50%) scale(1.9);
                transition: transform 0.1s ease;
            }

        .sidescroller .sidescroller_buttons .arrow_previous {
            left: 12px;
        }

        .sidescroller .sidescroller_buttons .arrow_next {
            right: 12px;
        }

.radio-holder{
    position: fixed;
    bottom:10px;
    right:10px;
    z-index:12;
    display: flex;
    flex-direction: row;
}
    .radio-holder #radio-iframe{
        transition: transform 0.1s ease;
        width:350px;
        height:180px;
        border-radius: 20px;
        margin-right: 5px;
        position: absolute;
        bottom: 0;
        right: 45px;
    }
    .radio-holder #openCloseRadio{
        height: 40px;
        width: 40px;
        background-color: rgba(128, 128, 128, 0.527);
        border-color: rgba(0, 0, 0, 0.589);
        border-radius: 5px;
        font-size: 20px;
        cursor: pointer;
        transform: scale(1);
        transition: transform 0.1s ease;
        position: absolute;
        bottom: 0;
        right: 5px;
    }
        .radio-holder #openCloseRadio:hover{
            transform: scale(1.1);
            transition: transform 0.1s ease;
        }
        .radio-holder #openCloseRadio:active{
            transform: scale(0.9);
            transition: transform 0.1s ease;
        }

i.clickable {
    transform: scale(1);
    transition: transform 0.1s ease;
    cursor: pointer;
}

    i.clickable:hover {
        transform: scale(1.3);
        transition: transform 0.1s ease;
    }

    i.clickable:active {
        transform: scale(0.9);
        transition: transform 0.1s ease;
    }

.clickable{
    cursor: pointer;
}

#menu{
    transition: display 0.1s ease, bottom 0.1s ease, top 0.1s ease;
}

#menu-legenda{
    margin-top: auto;
    padding: 10px;
    z-index: inherit;
    bottom: 0;
    height: min-content;
    display: block;
    /* position: absolute; */
    transition: position 0.1s ease, bottom 0.1s ease, top 0.1s ease;
}
    #menu-legenda #legenda-items{
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;
    }
        #menu-legenda #legenda-items .legend-item{
            width: 140px;
        }

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

    .banner {
        height: 420px;
    }

}

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

    .page-header-inner {
        height: 600px;
    }
    
    .nav {
        column-gap: 20px;
    }           
}


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

    .footer-nav {
        grid-template-columns: repeat(4, 1fr);
        padding: 80px 30px;
    }

}

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

    .navbar-inner img.logo {
        height: 35px;
    }
    .nav a.btn {
        margin-left: 0;
    }

}

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

    .footer-inner {
        gap: 60px;
    }
    .footer {
        padding: 50px 15px;
    }
    .signature {
        padding: 80px 0 10px;
    }
    
    .content-block-inner.large-img {
        column-gap: 80px;
    }

    .nav {
        display: none;
    }
    #mobile-navbar {
        display: block;
    }
    
    .navbar-inner {
        justify-content: space-between;
    }

    .full-block .content .content-block{
        width: 100%;
    }

    .full-block .content .menu{
        display: none;
    }
}

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

    .btn-holder a.btn,
    .nav a.btn {
        padding: 8px 16px 8px 14px;
        margin-left: unset;
    }
    .btn-holder a.btn::after,
    .nav a.btn::after {
        width: 24px;
        margin-left: 10px;
    }

    .content-block-inner {
        column-gap: 80px;
    }

}

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

    .banner {
        height: 280px;
    }

    .text-block.offset-top .text-block-inner {
        margin-top: -60px;
    }

    .full-block .text {
        font-size: 16px;
    }

    .projects-block,
    .content-block
    .projects-block {
        padding: 60px 15px;
    }
    .page-header + .content-block {
        padding-top: 140px;
    }

    
    .content-block .content .items.Dingen {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 80px;
    }

    
}

@media only screen and (max-width: 950px) {
    .content-block-inner {
        column-gap: 60px;
    }
    .content-block .content .text {
        margin-top: 30px;
    }
    
    .content-block-inner.large-img {
        flex-direction: column;
        row-gap: 50px;
    }
    .content-block .content-block-inner.large-img .image-holder {
        width: calc(100% - 40px);
        margin: 20px 20px 0;
    }
        .content-block .content-block-inner.large-img .image-holder img {
            aspect-ratio: 13.2 / 10;
        }

    .calendar{
        flex-direction: column;
    }

    .calendar-menu {
        max-width: 100% !important;
    }

    .kalender-container.expanded{
        max-width: unset;
    }

    .menu-header {
        height: 40px;
    }
}

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

    .content-block-inner {
        column-gap: 50px;
    }
    
    .content-block{
        padding: 80px 50px;
    }
    .content-block .image-holder {
        max-width: 240px;
        margin-top: 20px;
    }
        .content-block .image-holder img {
            min-width: 275px !important;
            height: 275px !important;
        
        }

    .content-block .content h2.title2,
    .projects-block-inner>h2.title2 {
        font-size: 40px;
        line-height: 35px;
    }

    .text-block-inner {
        padding: 50px;
        margin-top: -30px;
    }

    .projects-row.no-slider .item {
        max-width: 300px;
    }

    .content-block .content .items.Dingen{
        text-align: center;
    }    

}

@media only screen and (max-width: 850px){
    
    .project-video + .project-images {
        padding-top: 20px;
    }
    
    .project-images .image-grid  {        
        grid-auto-rows: 200px; 
        grid-gap: 20px;    
    }
   
    .full-block-inner .content h1.title {
        padding: 10px 50px;
    }
    .full-block-inner .content h2.title2 {
        padding: 10px 50px;
    }

    .full-block-inner .content .text {
        padding: 10px 50px;
    }

}

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

    .page-header h1.title {
        font-size: 28px;
    }


}

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

    .footer-left{
        max-width: unset;
        align-items: center;
    }

    .footer-middle{
        display: flex;
        justify-content: center;
        width: 40%;
    }
    .footer-right{
        display: flex;
        justify-content: center;
        width: 40%;
    }
}

@media only screen and (max-width: 750px){
    #popup-content{
        width: auto;
    }

    .page-header-inner {
        height: 480px;
    }
    .content-block-inner {
        flex-direction: column;
        row-gap: 50px;
    }
    .content-block .image-holder {
        width: calc(100% - 20px);
        margin: 10px 10px 0;
    }

    .project-video {
        height: 420px;
    }
    
    .projects-row.no-slider .item {
        max-width: 260px;
    }
    .content-block .content.reverse {
        margin-left: unset;
    }

    .bg-driekwart{
        background: unset;
        background-color: var(--biege);
    }

    .footer-nav {
        grid-template-columns: repeat(3, 1fr);
    }

}

@media only screen and (max-width: 700px){
    .full-block-inner .content h2.title {
        padding: 10px 50px;
    }
    .full-block-inner .content h2.title2 {
        padding: 10px 50px;
    }

    .full-block-inner .content .text {
        padding: 10px 50px;
    }
    .sidescroller .sidescroll_item {
        padding: 30px;
        flex-direction: column;
        align-items: center;
    }
}


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

    .content-block .content h1.title {
        font-size: 24px;
    }
    .content-block .content h1.title::before {
        width: 30px;
    }

    .text-block-inner {
        padding: 30px;
    }

    .footer-right {
        column-gap: 50px;
    }

    .project-images .image-grid  {        
        grid-auto-rows: 160px;
        grid-gap: 15px;
    }
    
    .project-video {
        height: 360px;
    }
    
    .projects-row.no-slider .item {
        width: 400px;
        max-width: calc(100% - 30px);
    }

        .full-block {
            padding: 30px 15px;
        }

        .content-block {
            padding: 40px 0px;
        }

    .footer-nav {
        grid-template-columns: repeat(2, 1fr);
    }
}


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

    .content-block .content-block-inner.large-img .image-holder {
        max-width: 400px;
    }
        .content-block .content-block-inner.large-img .image-holder img {
            border-top-right-radius: 80px;
        }

    .footer-nav {
        padding: 50px 15px;
    }

    .content-block .content {
        padding: 30px 15px;
    }

}


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

    .content-block .content-block-inner.large-img .image-holder {
        max-width: 350px;
    }
        .content-block .content-block-inner.large-img .image-holder img {
            border-top-right-radius: 70px;
        }

    .form_row input, .form_row select, .form_row textarea {
        font-size: 14px;
    }

    .project-video {
        height: 320px;
    }
    
    .footer-middle{
        width: 100%;

    
    }
    .footer-right{
        width: 100%;
    }

    .content-block .content .items.Dingen {
        grid-template-columns: repeat(1, 1fr);
    }

}

@media only screen and (max-width: 450px){
    .navbar-inner img.logo {
        width: 140px;
    }

    .text-block {
        padding-left: 0;
        padding-right: 0;
    }
        .text-block-inner {
            padding: 30px 15px;
        }

    .text-block.offset-top {
        padding: 0 0px 60px 0px;
    }
        .text-block.offset-top .text-block-inner {
            margin-top: -30px;
        }

    /* .content-block .content-block-inner.large-img .image-holder {
        max-width: 350px;
    } */
        .content-block .content-block-inner.large-img .image-holder img {
            border-top-right-radius: 60px; 
        }
        
    .project-images .image-grid  {        
        grid-auto-rows: 140px;
    }    

    .project-video {
        height: 260px;
    }
    .full-block-inner .content .text {
        padding: 10px 10px;
    }
    .full-block-inner .content h1.title {
        padding: 10px 10px;
    }

    .footer-middle{
        justify-content: flex-start;            
    }
    .footer-right{
        justify-content: flex-start;
    }

    .content-block .content {
        padding: 30px 10px;
    }
    
}

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

    .project-images .image-grid  {        
        grid-auto-rows: 100px;
    }  

    .full-block-inner .content .text {
            padding: 10px 10px;
        }
        .full-block-inner .content h1.title {
                padding: 10px 10px;
            }
    
    .footer-nav {
        grid-template-columns: repeat(1, 1fr);
    }

}

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

    .project-video {
        height: 220px;
    }
}