
/* Darwin Pro */   
@font-face {
    font-family: 'Darwin Pro';
    src: local('Darwin Pro'), local('Darwin-pro'),
        url('../fonts/Los\ Andes\ Type\ \ Darwin\ Pro\ SemiBold.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}
/* Montserrat */   
@font-face {
    font-family: 'Montserrat';
    src: local('Montserrat'), local('Montserrat'),
        url('../fonts/Montserrat-Regular.ttf') format("truetype");
    font-weight: 400;
    font-style: normal;
}

:root {
    /* Colors */
    --orange                    :#ED9F00;
    /* --orange                    :#FEB101; */
    --grijs                     :#EEEEEE;
    --blue                      :#2A3C48;
    --darkblue                  :#1D2A33;

    /* Fonts */
    --font1                     :'Darwin Pro', sans-serif;
    --font-text                 :'Montserrat', sans-serif;
    /* Gradient */
    --header-gradient           :linear-gradient(90deg, rgba(29,42,51,0.55) 0%, rgba(29,42,51,0.55) 100%);
    --white-gradient            :linear-gradient(90deg,#ffffff 0%, #ffffff 55%, rgba(255, 255, 255, 0.86) 77%, rgba(0, 0, 0, 0) 100%);

    --img-radius                :20px;
    --img-radius-small          :10px;
    --btn-radius                :10px;
}

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

a, a:active, a:visited, a:focus, a:hover {
    color: inherit;
    font-family: inherit;
    text-decoration: none;
}
button {
    border: none;
}

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: normal; */
}
p, ul, li, ol {
    line-height: unset;
}
.btn-holder {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap; 
    column-gap: 40px;
    row-gap: 20px;
}
.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,
    .btn-holder button.btn {
        display: flex;
        align-items: center;
        font-family: var(--font-text);
        font-size: 14px;
        text-transform: uppercase;
        text-decoration: none;
        background-color: var(--orange);
        color: #ffffff;
        cursor: pointer;
        padding: 8px 12px;
        /* padding-right: 6px; */
        border-radius: var(--btn-radius) 0 0 var(--btn-radius);
        padding-right: 0px;
        transition: all .3s ease;
    }
        .content-block-inner>.content .btn-holder a.btn.transparent-btn,
        .content-block-inner>.content .btn-holder button.btn.transparent-btn {
            background-color: transparent;
            color: var(--darkblue);
        }
        
        .content-block-inner>.content .btn-holder a.btn.transparent-btn::before,
        .content-block-inner>.content .btn-holder button.btn.transparent-btn::before {
            background-color: transparent;
        }
        /* after */
        .content-block-inner>.content .btn-holder a.btn.transparent-btn::after,
        .content-block-inner>.content .btn-holder button.btn.transparent-btn::after {
            filter: brightness(0) saturate(100%) invert(13%) sepia(11%) saturate(1652%) hue-rotate(162deg) brightness(97%) contrast(91%);
        }

        .btn-holder a.btn:hover,
        .btn-holder button.btn:hover {
            text-decoration: none;
        }
        .btn-holder a.btn::after,
        .btn-holder button.btn::after {
            content: "";
            position: relative;
            width: 16px;
            height: 14px;
            background-image: url('../images/icons/arrow.svg');
            background-size: contain;
            background-position: center;
            background-repeat: no-repeat;
            margin-left: 8px;
        }

        .btn-holder a.btn::before,
        .btn-holder button.btn::before {
            content: '';
            position: absolute;
            top: 0;
            right: -14px;
            width: 14px;
            height: 100%;
            background-color: var(--orange);
            -webkit-mask: url('../images/btns/button-arrow2.svg');
            -webkit-mask-size: 15px 100%;
            -webkit-mask-repeat: no-repeat;
            -webkit-mask-position: right center;
            mask: url('../images/btns/button-arrow2.svg');
            mask-size: 15px 100%;
            mask-repeat: no-repeat;
            mask-position: right center;
            box-sizing: border-box;
        }


        .btn-holder a.btn::selection {
            color: inherit;
        }
        .btn-holder.transparent a.btn {
            background-color: transparent;
        }

        /* .btn-holder button.btn-lg{
            font-size: 16px;
            padding: 10px 14px;
        } */
        
    .btn-holder a.btn>i,.btn-holder button.btn>i {
        margin-right: 6px;
    }
    .btn-holder.end {
        justify-content: flex-end;
    }

    .content-block-inner>.content .btn-holder a.btn {
        background-color: var(--darkblue);
    }
    .content-block-inner>.content .btn-holder a.btn::before {
        background-color: var(--darkblue);
    }
    .content-block.blue-bg .content-block-inner>.content .btn-holder a.btn {
        background-color: var(--orange);
    }
    .content-block.blue-bg .content-block-inner>.content .btn-holder a.btn::before {
        background-color: var(--orange);
    }
    
.slick-dots {
    bottom: -45px;
}
.slick-dots li button:before {
    font-size: 10px;
}

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

.content .text a{
    text-decoration: underline !important;
    font-weight: bold !important;
}

.topbar {
    z-index: 2;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 38px;
    display: flex;
    justify-content: center;
    background-color: var(--blue);
}
    .topbar-inner {
        width: 100%;
        max-width: 1500px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        column-gap: 30px;
        padding: 10px 15px;
    }
    div.topbar-left{
        width: 100%;
        display: flex;
        justify-content: flex-start;
    }   
        div.topbar-left span{
            color: var(--orange);
        }
        div.topbar-left div.star-container{
            display: flex;
            gap: 4px;
            align-items: center;
            margin-left: 10px;
        }
            div.topbar-left div.star-container i{
                color: var(--orange);
            }
    div.topbar-right{
        width: 100%;
        display: flex;
        justify-content: flex-end;
        column-gap: 30px;
    }
    .topbar-inner a {
        display: flex;
        align-items: center;
        column-gap: 16px;
        font-family: var(--font-text);
        font-size: 12px;
        color: #ffffff;
        text-decoration: none;
    }
    .topbar-inner a img {
        width: 18px;
        object-fit: contain;
    }

.navbar.navbar-scrolled .navbar-inner .logo {
    height: 55px;
}

.navbar {
    z-index: 2;
    position: fixed;
    top: 38px;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--darkblue);
    /* overflow-x: hidden; */
}
    .navbar-inner {
        width: 100%;
        max-width: 1200px;
        display: flex;
        align-items: flex-end;
        padding: 20px 15px 20px 15px;
        overflow: visible;
    }
        .navbar-inner .logo {
            height: 80px;
            object-fit: contain;
            transition: height .3s ease;
        }
        .navbar-inner .nav {
            flex: 1;
            width: 100%;
            display: flex;
            justify-content: flex-end;
            column-gap: 40px;
        }
            .navbar-inner .nav .nav-item>a {
                color: #ffffff;
                font-family: var(--font1);
                font-size: 20px;
                cursor: pointer;
                text-decoration: none;
            }
                .navbar-inner .nav .nav-item>a:hover {
                    text-decoration: underline;
                }

.page-header {
    margin-top: 152px;
    width: 100%;
    display: flex;
    justify-content: center;
    background-color: var(--darkblue);
    background-size: cover;
    /* background-position: top center; */
    background-position: center;
    background-repeat: no-repeat;
}
    .page-header-inner {
        z-index: 1;
        width: 100%;
        height: 100%;
        max-width: 1200px;
        display: flex;
        flex-direction: column;
        row-gap: 20px;
        /* padding: 80px 15px 150px; */
        padding: 120px 15px 170px;
    }.page-header.header-small .page-header-inner {
            padding: 80px 15px;
            row-gap: 10px;
        }
        .page-header.header-medium .page-header-inner {
            padding: 80px 15px;
            row-gap: 20px;
        }
        .page-header.header-large .page-header-inner {
            padding: 140px 15px;
            row-gap: 30px;
        }
        .page-header-inner h2.title2 {
            max-width: 400px;
            font-size: 16px;
            font-weight: normal;
            font-family: var(--font-text);
            color: var(--orange);
        }
        .page-header-inner h1.title { 
            max-width: 650px;
            font-size: 34px;
            font-family: var(--font1);
            color: #ffffff;
        }


.intro-block {
    z-index: 1;
    width: 100%;
    display: flex;
    justify-content: center;
    background-color: var(--grijs);
}
    .intro-block-inner {
        width: 100%;
        max-width: 1300px;
        transform: translateY(-50%);
        display: flex;
        background-color: #ffffff;
        box-shadow: 0px 0px 4px -3px var(--darkblue);
        padding: 40px 60px;
        border-radius: 20px;
    }
        .intro-block-inner .intro-items {
            width: 100%;
            max-width: 1200px;
            display: flex;
            align-items: center;
            gap: 30px;
        }
        .intro-block-inner .item {
            flex: 1 auto;
            display: flex;
            align-items: center;
            column-gap: 30px;
        }
            .intro-block-inner .item>img {
                height: 50px;
                object-fit: contain;
            }
            .intro-block-inner .item>h2.title {
                color: var(--darkblue);
                font-size: 16px;
                font-family: var(--font-text);
                font-weight: normal;
                align-self: center;
                max-width: 220px;
            }

.intro-block + .content-block {
    padding-top: 30px;
}


.signature {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 15px;
    background-color: var(--darkblue);
}
    .signature-inner {
        width: 100%;
        max-width: 1920px;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        column-gap: 20px;
        row-gap: 10px;
    }
        .signature-inner span {
            font-family: var(--font-text);
            font-size: 14px;
            color: var(--orange);
            text-decoration: none;
        }
            .signature-inner span a {
                color: inherit;
                font-family: inherit;
                text-decoration: none;
            } 


.banner {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 350px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transition: height .3s ease;
}

.content-block .img {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: var(--img-radius);
}

.content-block {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 80px 15px;
    background-color: var(--grijs);
}
    .content-block-inner {
        width: 100%;
        max-width: 1200px;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        column-gap: 100px;
    }
        .content-block .image-holder {
            z-index: 1;
            width: 340px;
            height: 340px;
            display: flex;
            align-items: center;
        } .content-block .image-holder::after {
                content: '';
                position: absolute;
                top: 15px;
                bottom: 15px;
                left: -15px;
                right: -15px;
                width: calc(100% + 30px);
                height: calc(100% - 30px);
                background-color: var(--orange);
                z-index: -1;
                border-radius: var(--img-radius);
            }
            .content-block .image-holder .img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }
        .content-block .content {
            width: 100%;
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }
            /* .content-block .content h2.title2 {
                font-size: 16px;
                font-family: var(--font-text);
                color: var(--orange);
                text-transform: uppercase;
                font-weight: normal;
            } */
            .content-block .content h3.title2,
            .faq-block .content h3.title2 {
                width: 100%;
                font-size: 16px;
                font-family: var(--font-text);
                color: var(--orange);
                text-transform: uppercase;
                font-weight: normal;
            }
            .content-block .content h2.title,
            .faq-block .content h2.title {
                width: 100%;
                font-size: 32px;
                font-family: var(--font1);
                color: var(--darkblue);
                margin-bottom: 30px;
                line-height: 1.4em;
            }
            .content-block .content h1.title,
            .faq-block .content h1.title {
                font-size: 32px;
                font-family: var(--font1);
                /* color: var(--orange); */
                color: var(--darkblue);
                margin-bottom: 30px;
                line-height: 1em;
            }
            .content h2.title + h3.title2 {
                margin-bottom: 30px;
                margin-top: -20px;
            }
            /* .content h3.title2 + h2.title {
                margin-bottom: 30px;
            } */
            .content-block .content .text {
                font-size: 16px;
                font-family: var(--font-text);
                color: var(--darkblue);
                line-height: 1.6;
                width: 100%;
            }
            .content-block .content .btn-holder {
                margin-top: 30px;
            }

    .content-block ul>li {
        list-style: none;
        padding-left: 30px;
        background: url('../images/icons/bullet.svg') no-repeat left center;
        background-size: 16px 16px;
        margin-bottom: 6px;
    }
    .content-block ul li::marker {
        content: '';
    }
    .content-block ol {
        margin-left: 40px;
    }
    .content-block ol li {
        padding-left: 10px;
    }

    .content-block .content .text  {
        margin-top: 10px;
    }

    .usp-block .content ul {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
        list-style: none;
        padding: 0;
    }
    .content-block.usp-block ul>li {
        background: url('../images/icons/star.svg') no-repeat left 2px;
        background-size: 20px 20px;
    }

/* Smaller */
.content-block.small .content-block-inner {
    max-width: 1100px;
}
/* Reverse styling */
.content-block.reverse .content-block-inner {
    flex-direction: row-reverse;
}   
.content-block.reverse .content-block-inner .image-holder::after {
    background-color: var(--blue);
}
.content-block.reverse.blue-bg .content-block-inner .image-holder::after {
    background-color: var(--orange);
}
.content-block.reverse-text .image-holder + .content {
    text-align: right;
}
.content-block.reverse-text  .image-holder + .content .btn-holder {
    justify-content: flex-end;
}

/* Block colors */
.content-block.blue-bg {
    background-color: var(--blue);
}
.content-block.blue-bg .content .title {
    color: #ffffff;
}
.content-block.blue-bg .content .text{
    color: #ffffff;
}

.content-block.even {
    background-color: var(--blue);
}
    .content-block.even .content .title {
        color: #ffffff;
    }
    .content-block.even .content .text {
        color: #ffffff;
    }


.tiles {
    width: 100%;
    display: flex;
    justify-content: space-between;
    column-gap: 40px;
    row-gap: 30px;
}
    .tile {
        width: 100%;
        /* flex: 1; */
        display: flex;
        flex-direction: column;
        background-color: var(--grijs);
        border-radius: var(--img-radius);
        padding: 36px 34px;
    }
        .tile .tile-step {
            position: absolute;
            top: 24px;
            right: -14px;
            display: flex;
            align-items: center;
            font-family: var(--font-text);
            font-size: 14px;
            text-transform: uppercase;
            background-color: var(--orange);
            color: #ffffff;
            padding: 8px 12px;
            padding-left: 6px;
            border-radius: 0 var(--btn-radius) var(--btn-radius) 0;
        }
            .tile .tile-step::before {
                content: '';
                position: absolute;
                top: 0;
                left: -14px;
                right: unset;
                width: 14px;
                height: 100%;
                background-color: var(--orange);
                -webkit-mask: url('../images/btns/button-arrow-flipped2.svg');
                -webkit-mask-size: 15px 100%;
                -webkit-mask-repeat: no-repeat;
                -webkit-mask-position: left center;
                mask: url('../images/btns/button-arrow-flipped2.svg');
                mask-size: 15px 100%;
                mask-repeat: no-repeat;
                mask-position: left center;
                box-sizing: border-box;
            }

        .tile .tile-title {
            max-width: 200px;
            font-size: 32px;
            font-family: var(--font1);
            color: var(--darkblue);
            margin-bottom: 30px;
            line-height: 1.4em;
            color: var(--darkblue);
            margin: 0 0 20px 0;
        }
        .tile .tile-text {
            flex: 1;
            max-width: 220px;
            font-size: 16px;
            font-family: var(--font-text);
            color: var(--darkblue);
            line-height: 1.6;
        }
      

.page-container > .content-block:first-child,
.page-container > .full-block:first-child,
.page-container > .faq-block:first-child{
    margin-top: 152px;
}

.bg-pattern {
    background-image:
        var(--white-gradient),
        url('../images/icons/bg-pattern.svg'),
        url('../images/icons/bg-pattern.svg');
    background-repeat: no-repeat, repeat, repeat;
    background-size: cover, 70px 70px, 70px 70px;
    background-position: left top, 0 0, 35px 35px;
}

.faq-block {
    width: 100%;
    display: flex;
    justify-content: center;
    background-color: #ffffff;
    padding: 80px 15px;
}

.faq-block-inner {
    width: 100%;
    max-width: 1100px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.faq-block .content h2.title {
    margin-bottom: unset;
}
.faq-container {
    width: 100%;
    max-width: 1000px;
    display: flex;
    flex-direction: column;
    /* padding: 0 15px; */
    /* padding-bottom: 80px; */
}
    .faq-search {
        display: flex;
        margin-top: 30px;
    }
        .faq-search label {
            display: flex;
            align-items: center;
            padding: 8px 14px;
            padding-left: 44px;
            border-radius: 50px;
            outline: none;
            border: 2px solid var(--orange);
            cursor: text;
        } .faq-search label input {
                width: 250px;
                border: none;
                outline: none;
                color: var(--darkblue);
                font-family: var(--font-text);
                font-size: 16px;
                font-weight: normal;
                background-color: transparent;
            }
        .faq-search label input::placeholder {
            display: block;
            font-family: var(--font-text);
            font-size: 16px;
            color: var(--brown);
            text-transform: uppercase;
        }
        .faq-search label>i.fa-solid {
            display: block;
            position: absolute;
            left: 12px;
            font-size: 20px;
            color: var(--orange);
        }
        
    .faq-section {
        width: 100%;
        display: flex;
        flex-direction: column;
        margin-top: 50px;
    }
        /* .faq-section h1.title {
            font-size: 32px;
            font-family: var(--font1);
            color: var(--orange);
            margin-bottom: 30px;
            line-height: 1em;
        } */
        .faq-item {
            width: 100%;
            display: flex;
            flex-direction: column;
            border: 2px solid var(--grijs);
            border-radius: var(--btn-radius);
            padding: 20px 40px;
            margin-bottom: 12px;
            cursor: pointer;
            background-color: #ffffff;
        } .faq-item::after {
                position: absolute;
                right: 30px;
                content: "\f078";
                font-family: "FontAwesome";
                font-size: 20px;
                color: var(--orange);
                cursor: pointer;
            } .faq-item.opened::after { content: "\f068"; }
            .faq-item h2.title {
                font-size: 16px;
                font-family: var(--font1);
                color: var(--darkblue);
                text-transform: uppercase;
                letter-spacing: 0.6px;
            }
            .faq-item div.text {
                display: none;
                font-size: 16px;
                font-family: var(--font-text);  
                color: var(--darkblue);
                margin-top: 20px;
            }
            .faq-item div.text ul,
            .faq-item div.text ol {
                padding-left: 22px;
            }
            .faq-section .search-qry {
                color: var(--darkblue);
                margin-bottom: 14px;
            }

    .faq-container .btn-holder {
        margin-top: 34px;
    }


.full-block {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 80px 15px;
    background-color: #ffffff;
}
    .full-block-inner {
        width: 100%;
        max-width: 1200px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
        .full-block h2.title2 {
            font-size: 16px;
            font-family: var(--font-text);
            color: var(--darkblue);
            text-transform: uppercase;
            font-weight: normal;
            margin-bottom: 20px;
        }
        .full-block h3.title2 {
            font-size: 16px;
            font-family: var(--font-text);
            color: var(--orange);
            text-transform: uppercase;
            font-weight: normal;
            margin-bottom: 20px;
        }
        .full-block h1.title {
            max-width: 700px;
            font-size: 32px;
            font-family: var(--font1);
            color: var(--darkblue);
        }
        .full-block h2.title {
            max-width: 700px;
            font-size: 32px;
            font-family: var(--font1);
            color: var(--darkblue);
        }
        .full-block .text {
            font-size: 16px;
            font-family: var(--font-text);
            color: var(--darkblue);
        }
        .full-block .btn-holder {
            margin-top: 40px;
        }
    
.full-block.center {
    text-align: center;
}
.full-block.center .btn-holder {
    width: 100%;
    justify-content: center;
}




.projecten {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 80px 15px;
}
    .projecten-inner {
        width: 100%;
        max-width: 1200px;
        display: flex;
        flex-direction: column;
    }
        .projecten-top {
            width: 100%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            column-gap: 50px;
            flex-wrap: wrap;
            margin-bottom: 50px;
        }
            .projecten-list-header {
                display: flex;
                flex-direction: column;
            }
                .projecten-list-header .title2 {
                    font-size: 16px;
                    font-family: var(--font-text);
                    color: var(--darkblue);
                    text-transform: uppercase;
                    font-weight: normal;
                }
                .projecten-list-header .title {
                    font-size: 28px;
                    font-family: var(--font1);
                    text-transform: uppercase;
                    margin-bottom: 8px;
                }
            .projecten-list-header + .btn-holder {
                width: auto;
            }
        .projecten-list {
            width: 100%;
            display: flex;
            flex-wrap: wrap;
            gap: 50px;
        }   
            .projecten-list .project {
                flex: 1 0 calc(100% / 3 - 50px);
                width: 100%;
                max-width: calc(100% / 3 - (50px / 3 * 2));
                min-height: 420px;
                max-height: 420px;
                display: flex;
                flex-direction: column;
                justify-content: flex-end;
                padding: 60px 20px 60px 50px;
                background-size: cover;
                background-position: top center;
                background-repeat: no-repeat;
                cursor: pointer;
                border-radius: var(--img-radius);
            }
                .projecten-list .project .title2 {
                    width: 100%;
                    font-size: 16px;
                    font-family: var(--font-text);
                    font-weight: normal;
                    color: #ffffff;
                    text-shadow: 1px 1px rgba(0, 0, 0, 0.4);
                    white-space: nowrap;
                    overflow: hidden;
                    text-overflow: ellipsis;
                }
                .projecten-list .project .title {
                    width: 100%;
                    font-size: 24px;
                    font-family: var(--font1);
                    color: #ffffff;
                    text-shadow: 1px 1px rgba(0, 0, 0, 0.4);
                    white-space: nowrap;
                    overflow: hidden;
                    text-overflow: ellipsis;
                }
                .projecten-list .project .btn-holder {
                    margin-top: 20px;
                }

.project-container {
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 80px 15px;
    background-color: var(--grijs);
}
.projecten-header {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
}
    .projecten-header .title2 {
        font-size: 16px;
        font-family: var(--font-text);
        color: var(--orange);
        text-transform: uppercase;
        font-weight: normal;
    }
    .projecten-header .title {
        font-size: 28px;
        font-family: var(--font1);
        color: var(--orange);
        margin-bottom: 30px;
    }
    .projecten-header .text {
        font-size: 16px;
        font-family: var(--font-text);
        color: var(--darkblue);
    }

.project-images {
    width: 100%;
    display: flex;
    justify-content: center;
}
    .project-images .image-grid {
        width: 100%;
        max-width: 1200px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
        grid-gap: 30px;
        grid-row-gap: 40px;
        margin: 30px auto 0px auto;
    }
    .project-images .image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        overflow: hidden;
        border-radius: var(--img-radius);
        box-shadow: inset 0px 0px 1px -4px black;
    }
        .project-images .image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all .3s ease;
        }
    .project-images .image:hover img {
        transform: scale(1.03);
        transition: all .3s ease;
    }
    .project-images .medium {
        grid-row: span 2;
        grid-column: span 1;
    }
    .project-images .large {
        grid-row: span 2;
        grid-column: span 2;
    }

.form_total {
    display: flex;
    width: 100%;
    column-gap: 20px;
}
    .form_total .form_col {
        width: 50%;
        display: flex;
        flex-direction: column;
        row-gap: 16px;
    }
        .form_total .form_col .form_row{
            display: flex;
            flex-direction: column;
        }
        .form_total .form_col .form_row.fullheight {
            height: 100%;
        }
        .form_row label {
            z-index: 1;
            width: fit-content;
            margin-left: 5px;
            padding: 0px 15px;
            margin-bottom: -8px;
            border-radius: 6px;
            font-size: 14px;
            background-color: var(--orange);
        }
        .form_row input, .form_row textarea {
            font-family: var(--font-text);
            padding: 8px;
            border-bottom: 1px solid var(--orange);
            background-color: var(--grijs);
            border-radius: 6px;
            outline: none;
        }
        .form_row textarea {
            height: 100%;
            min-height: 200px;
        }
div#form_error {
    padding-top: 10px;
}

.footer {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 80px 15px;
    background-color: var(--grijs);
}
    .footer-inner {
        width: 100%;
        max-width: 1200px;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        column-gap: 120px;
        row-gap: 30px;
    }
    .footer-info {
        max-width: 400px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        row-gap: 30px;
    }
        .footer-info h3.title,
        .footer-list h3.title {
            font-size: 32px;
            font-family: var(--font1);
            color: var(--darkblue);
            margin-bottom: 20px;
            line-height: 1em;
        }
        .footer-info .text  {
            font-size: 16px;
            font-family: var(--font-text);
            color: var(--darkblue);
        }
        .footer-info .contact-info {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            row-gap: 20px;
        }
        .footer-info .contact-info a {
            display: flex;
            column-gap: 14px;
            align-items: center;
            color: var(--darkblue);
        }
            .footer-info .contact-info a img {
                width: 20px;
                object-fit: contain;
            }

    .footer-nav {
        flex: 1 auto;
        display: flex;
        flex-wrap: wrap;
        column-gap: 50px;
        row-gap: 50px;
    }
    .footer-list {
        /* flex: 1; */
        flex: 1 auto;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        row-gap: 30px;
    }
        .footer-list a {
            font-size: 16px;
            font-family: var(--font-text);
            color: var(--darkblue);
            text-decoration: none;
        }
        .footer-list a:hover {
            font-weight: bold;
        }

.sitemap {
    width: 100%;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    row-gap: 8px;
}
    .sitemap a {
        color: var(--darkblue);
        font-size: 16px;
    }
        .sitemap a:hover {
            text-decoration: underline;
        }
    .sitemap span.linebreak {
        height: 16px;   
    }

/*  MOBILE NAVBAR  */
#mobile-navbar {
    z-index: 999;
    display: flex;
    display: none;
    align-items: center;
}
    #mobile-navbar span {
        top: 3px;
        font-size: 24px;
        font-family: var(--font-text);
        font-weight: bold;
        color: var(--orange);
        margin-right: 20px;
    }
	#mobile-navbar .burger {
		position: relative;
        z-index: 20;
	} #mobile-navbar .burger:hover {
            cursor: pointer;
        }
		#mobile-navbar .menu-bar {
			background-color: var(--orange);
			width: 42px;
			height: 5px;
			display: block;
			margin-bottom: 8px;
            border-radius: 4px;
			opacity: 1;
		}
		#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 .bar3 {
            margin-bottom: 0;
        }
		#mobile-navbar .burger .bar1, #mobile-navbar .burger .bar2, #mobile-navbar .burger .bar3 {
			transform-origin: left;
			transition: all .6s ease;
		}
#mobile-menu {
	z-index: 10;
	width: 100%;
    max-width: 400px;
    height: 100vh;
	position: fixed;
	top: 0;
	right: -500px;
	display: flex;
    justify-content: center;
	background-color: var(--darkblue);
    transition: right .3s ease;
}
    .menu-exit,
    .menu-back {
        z-index: 11;
        position: absolute;
        right: 30px;
        top: 30px;
    }
        .menu-back {
            right: unset;
            left: 30px;
            top: 35px;
        }
        .menu-exit i.fa-solid,
        .menu-back i.fa-solid {
            cursor: pointer;
            color: var(--orange);
            font-size: 50px;
        }
        .menu-back i.fa-solid {
            font-size: 40px;
        }
    
	.mobile-menu-inner {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
	}
        .mobile-menu-inner .mobile-nav-item a {
            color: var(--orange);
            font-size: 20px;
            font-family: var(--font-text);
            text-align: center;
            text-decoration: none;
            cursor: pointer;
        }
            .mobile-menu-inner>a.active {
                color: var(--orange);
                font-weight: bold;
            }
            .open-mobile-subnav .fa-solid.fa-chevron-down {
                color: var(--orange);
                padding-left: 10px;
            }
	#mobile-menu.mobile-menu-open {
		right: 0;
		transition: right .6s ease;
	}

    .mobile-nav-items {
        position: absolute;
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        row-gap: 20px;
        padding: 140px 20px 0;
        overflow-y: scroll;
    }
        .mobile-nav-item {
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            column-gap: 10px;
        }

    .mobile-subnav-items {
        display: flex;
        display: none;
        flex-direction: column;
        row-gap: 20px;
    }
        .mobile-subnav-items,
        .mobile-subnav-items ul {
            list-style-type: none;
        }
        .mobile-subnav-item > a {
            color: var(--orange);
            font-size: 20px;
            font-family: var(--font-text);
            text-align: center;
            text-decoration: none;
            cursor: pointer;
        }
        .mobile-submenu {
            display: flex;
            flex-direction: column;
            row-gap: 8px;
            margin-top: 10px;
        }
            .mobile-submenu li a {
                color: var(--orange);
                font-size: 16px;
                font-family: var(--font-text);
                text-align: center;
                text-decoration: none;
            }


.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9;
}
    .whatsapp-btn a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 70px;
        height: 70px;
        background-color: #25D366;
        color: white;
        border-radius: 50%;
        box-shadow: 0 2px 5px rgba(0,0,0,0.3);
        transition: all 0.3s ease;
    }
        .whatsapp-btn a:hover {
            background-color: #128C7E;
            transform: scale(1.1);
            transition: all 0.3s ease;
        }
        .whatsapp-btn a i {
            font-size: 36px;
        }



.nav-item {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

i.open-dropdown {
    margin-left: 10px;
    cursor: pointer;
    color: var(--orange);
}

.subnav {
    z-index: 9999;
    position: absolute;
    top: 100%;
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    background-color: var(--blue);
}

.subnav-items,
.subnav-items ul {
    list-style: none;
}

.subnav-items {
    width: 100%;
    max-width: 1600px;
    display: flex;
    display: none;
    justify-content: center;
    column-gap: 20px;
}
    .subnav-items > .subnav-item {
        position: relative;
        height: 42px;
        display: flex;
        align-items: center;
    }
        .subnav-items > .subnav-item > a {
            display: block;
            padding: 12px 6px;
            font-size: 14px;
            text-decoration: none;
            cursor: pointer;
            color: #ffffff;
        }
            .subnav-items > .subnav-item:hover {
                background-color: var(--darkblue);
            }

.subnav-items:hover {
    display: block;
}

.submenu {
    z-index: 9999;
    width: 100%;
    max-width: 1100px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    display: none;
    position: absolute;
    top: 42px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #3e5463;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
}
    .submenu > li {
        display: none;
        position: relative;
    }
        .submenu > li > a {
            display: block;
            padding: 8px 12px;
            text-decoration: none;
            font-size: 14px;
            color: #ffffff;
        }
            .submenu > li > a:hover {
                background-color: var(--blue);
            }

    .submenu li ul {
        display: none;
        position: absolute;
        top: 0;
        right: 100%;
        background-color: var(--darkblue);
        min-width: 200px;
        z-index: 9999;
        box-shadow: -2px 2px 8px rgba(0, 0, 0, 0.2);
    }
        .submenu li:hover > ul {
            display: block;
        }

div.top-divider{
    margin-top: 132px;
}

.content-block .diensten .image-holder::after {
    content: unset;
}
.content-block.diensten-block .content-block-inner {
    max-width: 1100px;
}
.diensten {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 80px;
    row-gap: 60px;    
}
    .dienst {
        display: flex;
    }
        .dienst::before {
            content: "";
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 100%;
            height: calc(100% - 30px);
            background-color: var(--darkblue);
            border-radius: var(--img-radius-small);
        }
        .dienst .image-holder {
            width: 100%;
            max-width: 180px;
            height: 180px;
            border-radius: var(--img-radius-small);
            margin-left: 15px;
        }
        .dienst-content {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            padding: 35px 30px;
        }
        .content-block .content .dienst .btn-holder {
            width: 100%;
            margin-top: unset;
        }  
            .content-block .content-block-inner>.content .dienst .btn-holder a.btn {
                background-color: transparent;
                color: var(--orange);
            }
                .dienst .btn-holder a.btn::after {
                    background-image: url('../images/icons/arrow-orange.svg');
                }
                .dienst .btn-holder a.btn::before {
                    content: unset;
                }
            .dienst-content h3.title {
                font-size: 18px;
                font-family: var(--font1);
                color: var(--darkblue);
                letter-spacing: 0.6px;
            }


.reviews {
    width: 100%;
    max-height: 420px;
    display: flex;
    justify-content: center;
    background-color: var(--grijs);
}
    .reviews-inner {
        /* width: 100%; */
        max-width: 1100px;
        display: flex;
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 30px;
        overflow: hidden;
        padding: 30px 0;

        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }
    .card {
        width: 100%;
        max-width: 250px;
        height: 360px;
        display: flex;
        flex-direction: column;
        row-gap: 15px;
        padding: 10px;
        background-color: #ffffff;
        border-radius: 10px;
        transition: transform 0.1s linear;
        will-change: transform;
    }
        .card:nth-child(even) {
            top: -100px;
        }
        .card img {
            width: 100%;
            height: 140px;
            object-fit: cover;
            border-radius: 10px;
        }
        .card-content {
            flex: 1;
            font-size: 12px;
            font-family: var(--font-text);
            color: var(--darkblue);
            display: flex;
            flex-direction: column;
            row-gap: 15px;
            padding-bottom: 30px;
        }
        .card .tags {
            position: absolute;
            top: 10px;
            left: 10px;
            padding: 10px;
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }
            .card .tags .tag {
                background-color: #1616167c;
                color: #ffffff;
                font-family: var(--font-text);
                padding: 6px 10px;
                font-size: 10px;
                border-radius: 100px;
                text-transform: capitalize;
            }
            .card .review-text {
                display: -webkit-box;
                -webkit-box-orient: vertical;
                -webkit-line-clamp: 8;
                overflow: hidden;
            }
            .card .review-text::before,
            .card .review-text::after {
                content: "\"";
            }
            .card .reviewer {
                font-weight: bold;
            }
            .card-content .google-rating {  
                width: 100%;
                position: absolute;
                bottom: 0;
                left: 0;
                font-weight: bold;
                display: flex;
                align-items: center;
            }
                .card-content .google-rating div {
                    position: relative;
                    display: flex;
                    align-items: center;
                    column-gap: 4px;
                }
                    .card-content .google-rating div::before {
                        content: "";
                        background-image: url("../images/icons/google-icon.png");
                        background-size: contain;
                        background-repeat: no-repeat;
                        background-position: center;
                        width: 20px;
                        height: 20px;
                        display: flex;
                        align-items: center;
                    }



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

    .subnav-items {
        height: 31px;
        column-gap: 12px;
    }
        .subnav-items > .subnav-item {
            height: 100%;
        }
            .subnav-items > .subnav-item > a {
                font-size: 13px;
                padding: 8px 6px;
            }
    .submenu {
        top: 31px;
        max-width: 950px;
        margin: 0 10px;
        width: calc(100% - 20px);
    }
        .submenu > li > a {
            font-size: 13px;
        }

}

@media only screen and (max-width: 1400px){
    .subnav-items > .subnav-item > a {
        font-size: 12px;
    }
    .submenu > li > a {
        font-size: 12px;
    }
}


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

    .navbar-inner .nav .nav-item>a {
        font-size: 18px;
    }

    .projecten-list {
        gap: 20px;
    }
        .projecten-list .project {
            flex: 1 0 calc(100% / 3 - 20px);
            max-width: calc(100% / 3 - (20px / 3 * 2));
            min-height: 380px;
            max-height: 380px;
            padding: 40px 20px 40px 34px;
        }

}

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

    .page-header-inner {
        padding: 100px 15px 130px;
        min-height: 60vh;
    }

    .intro-block + .content-block {
        margin-top: -60px;
        padding-top: 80px;
    }

    .intro-block-inner {
        transform: translateY(-50px);
        padding: 40px 30px;
    }
        .intro-block-inner .intro-items {
            gap: 20px;
        }
            .intro-block-inner .item {
                column-gap: 10px;
            }
                .intro-block-inner .item>img {
                    height: 36px;
                    width: 80px;
                }

}

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

    .reviews-inner {
        grid-template-columns: repeat(3, 1fr);
    }
    .card,
    .card:nth-child(even) {
        top: 0;
    }
    .card:nth-child(3n+2) {
        top: -100px;
    }
}

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

    .navbar-inner {
        justify-content: space-between;
        align-items: center;
        padding: 14px 15px 14px 15px;
    }
    .navbar-inner .logo {
        height: 50px;
    }
    .navbar-inner .nav {
        display: none;
    }
    #mobile-navbar {
        display: flex;
    }
    .subnav {
        display: none;
    }

    .content-block,
    .full-block,
    .footer {
        padding: 80px 15px;
    }
        .content-block-inner {
            column-gap: 50px;
        }
            .content-block .content-block-inner>.image-holder {
                width: 260px;
                height: 260px;
                margin-top: 10px;
            }


    .content-block .content .btn-holder,
    .full-block .btn-holder {
        margin-top: 30px;
    }

    .banner {
        height: 380px;
    }

    .diensten {
        column-gap: 50px;
        row-gap: 40px;
    }


}

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

    .navbar-inner .logo {
        height: 60px;
    }

    .page-header,
    .page-container > .content-block:first-child,
    .page-container > .full-block:first-child,
    .page-container > .faq-block:first-child {
        margin-top: 132px;
    }

    .projecten-list {
        flex-wrap: wrap;
    }
        .projecten-list .project {
            flex: 1 0 calc(100% / 1 - 30px);
            max-width: calc(100% / 1 - (30px - (30px / 1)));
            padding: 40px 20px 40px 34px;
        }

}

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

    .page-header,
    .page-container > .content-block:first-child,
    .page-container > .full-block:first-child,
    .page-container > .faq-block:first-child {
        margin-top: 122px;
    }

    .intro-block-inner .item {
        flex: unset;
    }
    
    .faq-item {
        padding: 14px 10px;
        padding-right: 30px;
    }
    .faq-item::after {
        right: 10px;
    }
    
}

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

    .intro-block-inner .intro-items {
        flex-direction: column;
    }

    .tiles {
        flex-direction: column;
        align-items: center;
    }
        .tile {
            max-width: 600px;
        }
            .tile .tile-title,
            .tile .tile-text  {
                max-width: unset;
            }
}

@media only screen and (max-width: 850px){
    div.topbar-left > p{
        display: none;
    }
    div.topbar-left{
        width: max-content;
    }
    div.topbar-left div.star-container {
        margin-left: 0;
    }

    .diensten {
        grid-template-columns: repeat(1, 1fr);
    }
        .dienst {
            max-width: 500px;
        }
}

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

    .content-block-inner {
        flex-direction: column;
        justify-content: unset;
        row-gap: 30px;
    }
        .content-block.reverse .content-block-inner {
            flex-direction: column-reverse;
        }
        .content-block .content-block-inner>.image-holder {
            width: 340px;
            height: 340px;
            margin: 0 15px;
        }

    .content-block.reverse-text .image-holder + .content {
        text-align: unset;
    }
        .content-block.reverse-text .image-holder + .content  .btn-holder {
            justify-content: flex-start;
        }
    .project-images .image-grid {
        grid-auto-rows: 150px;
    }
    .reviews-inner {
        gap: 20px;
    }

}

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

    .navbar-inner .logo {
        height: 50px;
    }
    .navbar.navbar-scrolled .navbar-inner .logo {
        height: 40px;
    }
    

    .projecten-list-header {
        margin-bottom: 15px;
    }

}

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

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

    .reviews-inner {
        grid-template-columns: repeat(2, 1fr);
    }
    .card,
    .card:nth-child(even) {
        top: 0;
    }
    .card:nth-child(2n) {
        top: -100px;
    }

    .page-header-inner h1.title,
    .content-block .content h2.title, .faq-block .content h2.title {
        font-size: 26px;
    }

}

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

    .form_total {
        flex-wrap: wrap;
        row-gap: 16px;
    }
    .form_total .form_col {
        width: 100%;
    }

    .footer-nav {
        flex-direction: column;
    }
    .project-images .image-grid {
        grid-auto-rows: 80px;
    }
}

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

    .usp-block .content ul {
        grid-template-columns: unset;
    }

}

@media only screen and (max-width: 532px){
    .topbar-inner {
        column-gap: 20px;
    }
        .topbar-inner a span {
            display: none;
        }
}

@media only screen and (max-width: 500px){
    .tile .tile-title {
        max-width: 200px;
    }
    .tile .tile-text {
        max-width: 220px;
    }
}

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

    .intro-block + .content-block {
        padding-top: 60px;
    }

    .content-block,
    .full-block,
    .footer,
    .projecten {
        padding: 60px 15px;
    }
    
        .content-block .content-block-inner>.image-holder {
            width: calc(100% - 30px);
        } 

    .content-block .content h2.title2,
    .full-block h2.title2 { 
        font-size: 14px;
    }
    .content-block .content h1.title,
    .full-block h1.title,
    .faq-section h1.title {
        font-size: 28px;
    }
    .content-block .content .text,
    .full-block .text,
    .footer-info .text,
    .footer-info .text,
    .footer-info .contact-info a,
    .footer-list a,
    .tile .tile-text,
    .intro-block-inner .item>h2.title,
    .faq-item div.text {
        font-size: 14px;
    }

    .footer-list {
        row-gap: 20px;
    }
    .footer-info h1.title, .footer-list h1.title {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .btn-holder a.btn, .tile .tile-step {
        font-size: 12px;
    }
        .btn-holder a.btn::before, .btn-holder button.btn::before {
            right: -13px;
            width: 13px;
        }
        .tile .tile-step::before {
            width: 13px;
            left: -13px;
        }

    .banner {
        height: 260px;
    }

    .dienst .image-holder {
        max-width: 150px;
        height: 150px;
    }
    .dienst-content {
        padding: 28px 24px;
    }
    
}

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

    .intro-block-inner .item>img {
        width: 45px;
    }
    
    .content-block .content-block-inner>.image-holder {
        width: calc(100% - 30px);
        height: 280px;
    }

    .banner {
        height: 200px;
    }

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

    .dienst {
        flex-direction: column;
    }
    .content-block .content .dienst .btn-holder.end {
        justify-content: flex-start;
        margin-top: 10px;
    }

    .reviews-inner {
        grid-template-columns: repeat(1, 1fr);
    }
    .card,
    .card:nth-child(even) {
        top: 0;
    }
}


