
/* Regular */
@font-face {
    font-family: 'Darwin Pro';
    src: local('Darwin Pro'), local('Los Andes Type Darwin Pro'),
        url('../fonts/Los\ Andes\ Type\ \ Darwin\ Pro\ Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}
/* Regular italic */
@font-face {
    font-family: 'Darwin Pro';
    src: local('Darwin Pro Italic'), local('Los Andes Type Darwin Pro Italic'),
        url('../fonts/Los\ Andes\ Type\ \ Darwin\ Pro\ Regular\ It.otf') format('opentype');
    font-weight: 400;
    font-style: italic;
}
/* Semibold */
@font-face {
    font-family: 'Darwin Pro';
    src: local('Darwin Pro Semibold'), local('Los Andes Type Darwin Pro Semibold'),
        url('../fonts/Los\ Andes\ Type\ \ Darwin\ Pro\ SemiBold.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
}
/* Semibold italic */
@font-face {
    font-family: 'Darwin Pro';
    src: local('Darwin Pro Semibold Italic'), local('Los Andes Type Darwin Pro Semibold Italic'),
        url('../fonts/Los\ Andes\ Type\ \ Darwin\ Pro\ SemiBold\ It.otf') format('opentype');
    font-weight: 500;
    font-style: italic;
}
/* Bold */
@font-face {
    font-family: 'Darwin Pro';
    src: local('Darwin Pro Bold'), local('Los Andes Type Darwin Pro Bold'),
        url('../fonts/Los\ Andes\ Type\ \ Darwin\ Pro\ Bold.otf') format('opentype');
    font-weight: 600;
    font-style: normal;
}
/* Bold italic */
@font-face {
    font-family: 'Darwin Pro';
    src: local('Darwin Pro Bold Italic'), local('Los Andes Type Darwin Pro Bold Italic'),
        url('../fonts/Los\ Andes\ Type\ \ Darwin\ Pro\ Bold\ It.otf') format('opentype');
    font-weight: 600;
    font-style: italic;
}

:root {

    --white                     :#FFFFFF;
    --offwhite                  :#F8F4F1;
    --lightbrown                :#DBC0A7;
    --brown                     :#947C5C;
    --darkbrown                 :#634D33;
    --orange                    :#BC703D;

    --font1                     :'Darwin Pro', sans-serif;
    --font2                     :'Montserrat', sans-serif;
    --font-text                 :'Montserrat', sans-serif;

    --font1-spacing             :0.04em;
    --text-lineheight           :1.6; /* oud: 1.8 */
}

body,
body *,
*::before,
*::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    position: relative;
}
body {
    font-family: var(--font-text);
    color: var(--darkbrown);
    font-weight: 400;
    background-color: var(--white);
    overflow-x: hidden;
}

a, a:active, a:visited, a:focus, a:hover {
    color: inherit;
    font-family: inherit;
    text-decoration: none;
}
.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; }

.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: 30px;
}
.btn-holder.center {
    justify-content: center;
    width: 100% !important;
}
.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-text);
        font-size: 16px;
        font-weight: 600;
        text-transform: uppercase;
        text-decoration: none;
        background-color: var(--brown);
        color: var(--white);
        cursor: pointer;
        padding: 10px 22px 10px 18px;
        border-radius: 100px;
        transition: all .3s ease;
    } .btn-holder a.btn::after {
            position: relative;
            content: "";
            height: 14px;
            width: 28px;
            margin-left: 18px;
            background-image: url(../images/arrow-white.svg);
            background-repeat: no-repeat;
            background-size: contain;
            background-position: center;
        }
        .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):after {
                background-image: url(../images/arrow.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>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;
    }
    .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(--darkbrown);
            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(--brown);
    background-image: url("../images/pattern.svg");
    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: 40px 10px;
	}
        .mobile-menu-inner ul {
            list-style-type: none;
            text-align: center;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            row-gap: 30px;
        }
            .mobile-menu-inner ul li {

            }
                .mobile-menu-inner ul li a {
                    color: var(--white);
                    font-size: 26px;
                    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-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 {

    }
        .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);
    overflow-x: hidden;
    transition: all 0.3s ease;
}
    .navbar.scrolled {
        height: 70px;
        transition: all 0.3s ease;
        box-shadow: 0px 0px 10px -6px black;
    }
    .navbar-inner {
        width: 100%;
        max-width: 1400px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        column-gap: 30px;
        padding: 0 15px;
    }
        .navbar-inner img.logo {
            height: 40px;
        }
        .nav {
            flex-grow: 1;
            display: flex;
            justify-content: flex-end;
            align-items: center;
            column-gap: 40px;
        }
            .nav a {
                font-size: 16px;
                font-weight: 400;
                text-transform: uppercase;
                color: var(--darkbrown);
            }
            .nav a.active {
                font-weight: bold;
            }
            .nav a.btn {
                display: flex;
                align-items: center;
                font-family: var(--font-text);
                font-size: 16px;
                font-weight: 600;
                text-transform: uppercase;
                text-decoration: none;
                background-color: var(--white);
                border: 1px solid var(--brown);
                color: var(--brown);
                cursor: pointer;
                padding: 10px 22px 10px 18px;
                margin-left: 20px;
                border-radius: 100px;
                transition: all .3s ease;
            } .nav a.btn::after {
                    position: relative;
                    content: "";
                    height: 14px;
                    width: 28px;
                    margin-left: 18px;
                    background-image: url(../images/arrow.svg);
                    background-repeat: no-repeat;
                    background-size: contain;
                    background-position: center;
                }
            
.page-header {
    z-index: 1;
    width: 100%;
    display: flex;
    justify-content: center;
}
    .page-header-inner {
        width: 100%;
        max-width: 1600px;
        height: 750px;
        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: rgba(41, 32, 22, 0.6);
            padding: 50px 15px;
        }
            .page-header h1.title {
                font-size: 40px;
                font-family: var(--font1);
                letter-spacing: var(--font1-spacing);
                text-transform: uppercase;
                text-align: center;
                color: var(--white);
                margin-bottom: 10px;
            }
            .page-header h2.title2 {
                font-size: 16px;
                font-weight: 600;
                text-transform: uppercase;
                text-align: center;
                color: var(--lightbrown);
                line-height: var(--text-lineheight);
            }
        .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;
        }


.footer {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 100px 15px 0;
    background-color: var(--darkbrown);
    background: -moz-linear-gradient(180deg, rgba(99,77,51,1) 0%, rgba(99,77,51,1) 35%, rgba(53,40,27,1) 100%);
    background: -webkit-linear-gradient(180deg, rgba(99,77,51,1) 0%, rgba(99,77,51,1) 35%, rgba(53,40,27,1) 100%);
    background: linear-gradient(180deg, rgba(99,77,51,1) 0%, rgba(99,77,51,1) 35%, rgba(53,40,27,1) 100%);
}
    .footer-inner {
        width: 100%;
        max-width: 1200px;
        display: flex;
        justify-content: space-between;
        gap: 120px;
    }
        .footer-left {
            max-width: 350px;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            row-gap: 30px;
        }
            .footer-left img.logo {
                width: 100%;
                max-width: 250px;
            }
            .footer-left .text {
                font-size: 16px;
                color: var(--offwhite);
                line-height: var(--text-lineheight);
            }
        .footer-right {
            flex-grow: 1;
            display: flex;
            column-gap: 30px;
            row-gap: 20px;
        }
            .footer-list {
                flex: 1 auto;
                display: flex;
                flex-direction: column;
                align-items: flex-start;
                font-size: 16px;
                row-gap: 10px;
            }
                .footer-list h2.title {
                    font-size: 26px;
                    font-family: var(--font1);
                    letter-spacing: var(--font1-spacing);
                    color: var(--white);
                    margin-bottom: 16px;
                }
              
                .footer-list a {
                    color: var(--offwhite);
                    font-size: inherit;
                    font-family: inherit;
                    text-decoration: none;
                    text-transform: uppercase;
                    display: inline-block; /* Ensure no width changes */
                }
                    .footer-list>a:hover,
                    .footer-list span:hover,
                    .signature-left span:hover {
                        color: #DBC0A7;
                    }
                    .footer-list>a::before {
                        position: relative;
                        content: "";
                        display: inline-block;
                        height: 15px;
                        width: 15px;
                        margin-right: 6px;
                        background-image: url(../images/arrow-small.svg);
                        background-repeat: no-repeat;
                        background-size: contain;
                        background-position: center;
                        filter: brightness(0) saturate(100%) invert(95%) sepia(4%) saturate(557%) hue-rotate(328deg) brightness(102%) contrast(90%);
                    }
                    .footer-list>a:hover::before,
                    .footer-list span:hover a img {
                        filter: brightness(0) saturate(100%) invert(89%) sepia(13%) saturate(749%) hue-rotate(332deg) brightness(89%) contrast(91%);
                    }
                .footer-list span {
                    color: var(--offwhite);
                    font-size: inherit;
                    font-family: inherit;
                    text-decoration: none;
                    text-transform: unset;
                }
                    .footer-list span a {
                        color: inherit;
                        font-size: inherit;
                        font-family: inherit;
                        text-decoration: none;
                        text-transform: inherit;
                    }
                    .footer-list span a img {
                        display: inline-block;
                        width: 18px;
                        height: 18px;
                        margin-right: 6px;
                        filter: brightness(0) saturate(100%) invert(95%) sepia(4%) saturate(557%) hue-rotate(328deg) brightness(102%) contrast(90%);
                    }
                    .footer-list>span>a>img, .footer-list>a::before {
                        top: 2px;
                    }
                .footer-right .socials {
                    display: flex;
                    column-gap: 20px;
                    margin-top: 20px;
                }
                    .footer-right a.social {
                        font-size: 24px;
                        color: var(--brown);
                    }
                    .footer-right 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%);
                    }


.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 {

        }
            .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(--offwhite);
}
    /* .content-block */
    .bg-pattern {
        background-color: var(--offwhite);
        background-image: url("../images/pattern.svg");
        background-size: cover;
        background-position: top center;
        background-repeat: no-repeat;       
    }
    .page-header + .content-block {
        margin-top: -80px;
        padding-top: 180px;
    }
    .content-block-inner {
        width: 100%;
        max-width: 1000px;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        column-gap: 120px;
    }
        .content-block .content {
            flex: 1;
        }
            .content-block .content h1.title {
                font-size: 16px;
                font-weight: 600;
                text-transform: uppercase;
                color: var(--brown);
                margin-bottom: 20px;
            }
                .content-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;
                }
            .content-block .content h2.title2 {
                font-size: 34px;
                font-family: var(--font1);
                letter-spacing: var(--font1-spacing);
                text-transform: uppercase;
                color: var(--darkbrown);
                margin-top: -16px;
            }
            .content-block .content .text {
                font-size: 16px;
                line-height: var(--text-lineheight);
                color: var(--darkbrown);
                margin-top: 40px;
            }
            .content-block .content .btn-holder {
                margin-top: 30px;
            }
            
            .content-block strong,
            .content-block b {
                font-weight: 600;
            }


.content-block.reverse .content-block-inner {
    flex-direction: row-reverse;
}
.content-block-inner.column {
    flex-direction: column;
    row-gap: 30px;
}

.content-block .image-holder {
    width: 100%;
    max-width: 300px;
}   .content-block .image-holder::after {
        content: "";
        position: absolute;
        top: -15px;
        left: -15px;
        width: calc(100% + 30px);
        height: calc(100% + 30px);
        background-image: url("../images/img-border.svg");
        background-size: contain;
        background-repeat: no-repeat;
    }
    .content-block .image-holder img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        aspect-ratio: 26 / 34;
        border-top-left-radius: 80px;
    }

    /* 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-block {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 50px 15px;
    background-color: var(--darkbrown);
}
    .full-block-inner {
        width: 100%;
        max-width: 1200px;
        display: flex;
        flex-direction: column;
    }
        .full-block .text {
            width: 100%;
            font-size: 26px;
            font-family: var(--font1);
            letter-spacing: var(--font1-spacing);
            text-align: center;
            color: var(--white);    
            line-height: var(--text-lineheight);
            margin-bottom: 10px;
        }
        .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 .btn-holder {
            justify-content: center;
        }
        .full-block.brown-bg {
            background-color: var(--brown);
        }
        .full-block.brown-bg .btn-holder a.btn {
            border: 1px solid var(--white);
        }


.projects-block {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 80px 15px;
    background-color: var(--white);
}
    .projects-block-inner {
        width: 100%;
        max-width: 1200px;
        display: flex;
        flex-direction: column;
    }
        .projects-block-inner>h1.title {
            font-size: 16px;
            font-weight: 600;
            text-transform: uppercase;
            color: var(--brown);
            margin-bottom: 20px;
        }
            .projects-block-inner>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;
            }
        .projects-block-inner>h2.title2 {
            font-size: 34px;
            font-family: var(--font1);
            letter-spacing: var(--font1-spacing);
            text-transform: uppercase;
            color: var(--darkbrown);
            margin-top: -16px;
            margin-bottom: 30px;
        }
        .projects-btns {
            width: 100%;
            display: flex;
            justify-content: flex-start;
            align-items: flex-start;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 0;
            margin-bottom: 30px;
        }
            .projects-btns a.btn {
                display: flex;
                align-items: center;
                font-family: var(--font-text);
                font-size: 16px;
                font-weight: 600;
                text-transform: uppercase;
                text-decoration: none;
                background-color: var(--brown);
                color: var(--white);
                cursor: pointer;
                padding: 6px 14px;
                border-radius: 100px;
                transition: all .3s ease;
            }
        .projects-row {
            width: 100%;
            display: flex;
            column-gap: 60px;
            row-gap: 50px;
            margin-top: 20px;
            margin: 0 auto;
            padding: 0;
        } .projects-row.no-slider {
                justify-content: center;
                flex-wrap: wrap;
            }
            .projects-row .item {
                width: 100%;
                max-width: 350px;
                display: flex;
                flex-direction: column;
                cursor: pointer;
            }   
                .projects-row .item .image-holder {
                    margin-top: 20px;
                    margin-bottom: 40px;
                }
                    .projects-row .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;
                    }
                    .projects-row .item img {
                        position: relative;
                        width: 100%;
                        aspect-ratio: 16 / 10.6;
                        object-fit: cover;
                    }
                .projects-row .item h1.title {
                    width: 100%;
                    font-size: 22px;
                    font-weight: 500;
                    font-family: var(--font1);
                    letter-spacing: var(--font1-spacing);
                    text-transform: uppercase;
                    text-align: center;
                    color: var(--darkbrown);
                    white-space: nowrap;
                    overflow: hidden;
                    text-overflow: ellipsis;
                }
                .projects-row .item .text {
                    width: 100%;
                    font-size: 16px;
                    text-align: center;
                    line-height: var(--text-lineheight);
                    color: var(--darkbrown);
                    margin-top: 20px;
                }
                    .projects-row .item .text>p {
                        font-size: inherit;
                        line-height: inherit;
                        color: inherit;
                    }
                .projects-row .item .btn-holder {
                    justify-content: center;
                    margin-top: 26px;
                    margin-bottom: 10px;
                }
                    .projects-row .item .btn-holder a.btn {
                        background-color: var(--white);
                        color: var(--brown);
                        border: 1px solid var(--brown);
                    }
                        .projects-row .item .btn-holder a.btn::after {
                            background-image: url("../images/arrow.svg");
                        }
            .projects-block .btn-holder {
                margin-top: 50px;
                justify-content: center;
            }

            .project-video {
                width: calc(100% - 30px);
                max-width: 970px;
                height: 500px;
                margin-top: 30px;
            }



.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;
    }


    
.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 h2.title2 {
            font-size: 34px;
            font-family: var(--font1);
            letter-spacing: var(--font1-spacing);
            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;
        }


        
.form {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    row-gap: 10px;
    margin-top: 50px;
}
    .form_row {
        width: 100%;
        display: flex;
        justify-content: space-between;
        flex-direction: column;
        align-items: baseline;
    }
        .form_row input, .form_row select, .form_row textarea {
            width: 100%; 
            padding: 10px 22px 10px 18px;
            font-family: var(--font-text);
            font-size: 16px;
            font-weight: 600;
            font-weight: normal;
            color: var(--darkbrown);
            outline: none;
            border: 1px solid var(--brown);
            border-radius: 20px;
        }
        .form_row input {
            max-width: 400px;
        }
        .form_row textarea {
            width: 100%;
            max-width: 100%;
            border-radius: 20px;
        }
        .form_row input::placeholder, .form_row select::placeholder, .form_row textarea::placeholder {
            color: var(--brown);
            padding-left: 4px;
            text-transform: uppercase;
        }
        .form_row select:required:invalid {
            color: rgb(82, 82, 82);
        }
            .form_row option[value=""][disabled] {
                display: none;
            }
            .form_row option {
                color: inherit;
            }
        .form_row textarea {
            resize: none;
        }
        #form_error {
            color: var(--orange);
        }
        #form_succes {
            color: #19d600;
        }

    .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;
                    color: var(--darkbrown);
                    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);
                            color: var(--darkbrown);
                            margin-bottom: 16px;
                        }

.prev-btn,
.next-btn {
    width: 75px;
    position: absolute;
    top: 150px;
    left: -20px;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--white);
    cursor: pointer;
    border-radius: 100px;
    box-shadow: 0px 0px 8px -5px black;
}
    .prev-btn img,
    .next-btn img {
        height: 42px;
        padding: 12px 18px;
    }
    .prev-btn img {
        transform: rotate(180deg);
    }
.next-btn {
    left: unset;
    right: -20px;
}



.vimeo-container {
    padding: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
}
.vimeo-container.small {
    position: relative;
}
    .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%); */
        width: 100%;
        height: 100%;
    }


    .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;
    }


@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){

    .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: 80px 15px 0;
    }
    .signature {
        padding: 80px 0 10px;
    }
    
    .content-block-inner.large-img {
        column-gap: 80px;
    }

    .nav {
        display: none;
    }
    #mobile-navbar {
        display: block;
    }

}

@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;
    }

    .footer-inner {
        gap: 30px;
    }
}

@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: 22px;
    }

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

}

@media only screen and (max-width: 950px) {
 
    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }
    .footer-right {
        column-gap: 80px;
    }

    .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;
        }

}

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

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

    .content-block .image-holder {
        max-width: 240px;
        margin-top: 20px;
    }
        .content-block .image-holder img {
            border-top-left-radius: 60px;
        }

    .content-block .content h2.title2,
    .projects-block-inner>h2.title2 {
        font-size: 28px;
    }

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

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

}

@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;    
    }

}

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

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

}

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

    .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;
    }

}

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

    .content-block .content h1.title {
        font-size: 14px;
    }
    .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);
    }

}

@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-right {
        flex-direction: column;
    }

}

@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;
    }

}

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

    .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;
    }
}


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

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

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

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

