
@font-face {
    font-family: 'Fromage Medium';
    src: local('Fromage Medium'), local('Fromage-Medium'),
        url('../fonts/fromage-medium.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'Royal Hefana Regular';
    src: local('Royal Hefana Regular'), local('RoyalHefanaRegular'),
        url('../fonts/ROYALHefanaRegular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'Alice Regular';
    src: local('Alice Regular'), local('Alice-Regular'),
        url('../fonts/Alice-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

:root {

    --red                       :#611925;
    --purple                    :#411830;
    --offwhite                  :#EEE8EC;
    --lightbrown                :#E8DCCC;
    --yellow                    :#94660F;
    --orange                    :#964417;
    --black                     :#1A1A1A;

    --font1                     :'Fromage Medium', sans-serif;
    --font2                     :'Royal Hefana Regular', sans-serif;
    --font-title                :'Fromage Medium', sans-serif;
    --font-text                 :'Alice Regular', sans-serif;

    --text-size                 :16px;

    --max-width                 :1200px;
    --max-width-l               :1400px;
    --topbar-height             :52px;

    --border-shape              :59% 41% 51% 49% / 43% 63% 37% 57%;

    --padding-container-hor:  15px;
    --padding-container-vert: 60px;

    --review-item-padding-hor   :80px;
    --review-item-padding-vert  :80px;

    --border-curve-size         :80px;

}

body, html {
    height: 100%;
}
body,
body *,
*::before,
*::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    position: relative;
}
body {
    font-family: var(--font1);
    color: var(--black);
    background-color: #ffffff;
    overflow-x: hidden;
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
}

a, a:active, a:visited, a:focus, a:hover {
    color: inherit;
    font-family: inherit;
    text-decoration: 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-anim-zoom .img{
    transition: transform 200ms ease-in-out;
}
.bg-anim-zoom:hover:has(.img) .img{
    transform: scale(1.02);
}

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

/* wel of niet? */
img,
select,
input {
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
}

h1 {
    font-size: 36px;
    font-family: var(--font2);
    font-weight: normal;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 40px;
    /* text-shadow: -2px -2px 0 currentColor, 2px -2px 0 currentColor, -2px 2px 0 currentColor, 2px 2px 0 currentColor; */
}
h2 {
    font-size: 28px;
    font-family: var(--font2);
    font-weight: normal;
    color: var(--red);
    margin-bottom: 10px;
}
h3 {
    font-size: 24px;
    font-family: var(--font2);
    font-weight: normal;
    color: var(--red);
    margin-bottom: 10px;
}
h4 {
    font-size: 18px;
    font-family: var(--font2);
    font-weight: normal;
    color: var(--red);
    margin-bottom: 10px;
}

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

ul {
    padding-left: 1.2em;
}

button {
    outline: none;
    border: none;
    background: none;
}

.btn-holder {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    column-gap: 20px;
    row-gap: 15px;
}
.text + .btn-holder {
    margin-top: 30px;
}
.btn-holder.center {
    justify-content: center;
    width: 100% !important;
}
.d-none{
    display: none;
}
.btn-holder.col {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}
    .btn-holder button {
        display: flex;
        align-items: center;
        font-family: 'Montserrat', sans-serif;
        letter-spacing: .03em;
        font-size: 14px;
        font-weight: 600;
        text-decoration: none;
        background-color: var(--red);
        color: #ffffff;
        cursor: pointer;
        line-height: 1.2em;
        padding: 10px 20px;
        text-transform: uppercase;
        border: none;
        outline: none;
        border-radius: 20px;
        transition: all .3s ease;
    }
        .btn-holder button::selection {
            color: inherit;
        }
        .btn-holder.transparent button {
            background-color: transparent;
        }
    .btn-holder button:hover {
        transition: all .3s ease;
        filter: brightness(0.75);
    }
    .btn-holder button>i {
        margin-right: 6px;
    }
    .btn-holder.end {
        justify-content: flex-end;
    }

    .content-block.lightbrown-bg .content .btn-holder button.form-submit {
        background-color: var(--red);
    }
.text-align-right{
    text-align: right !important;
}
.page-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 197px;
}

.topbar {
    z-index: 10;
    width: 100%;
    height: var(--topbar-height);
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    background: #3E1D2C;
    background: -webkit-linear-gradient(105deg,rgba(62, 29, 44, 1) 0%, rgba(138, 38, 23, 1) 50%, rgba(146, 101, 24, 1) 100%);
    background: -moz-linear-gradient(105deg,rgba(62, 29, 44, 1) 0%, rgba(138, 38, 23, 1) 50%, rgba(146, 101, 24, 1) 100%);
    background: linear-gradient(105deg,rgba(62, 29, 44, 1) 0%, rgba(138, 38, 23, 1) 50%, rgba(146, 101, 24, 1) 100%);
}
    .topbar-inner {
        width: 100%;
        max-width: var(--max-width);
        display: flex;
        justify-content: flex-end;
        align-items: center;
        padding: 10px var(--padding-container-hor);
    }
        .topbar-inner .slogan {
            font-family: var(--font1);
            color: var(--red);
        }
        .topbar-inner a {
            display: flex;
            align-items: center;
            column-gap: 10px;
            font-size: 14px;
            font-family: var(--font1);
            color: var(--black);
        }
            .topbar-inner a i {
                top: 1px;
                font-size: 18px;
                color: var(--red);
            }

        .topbar-inner .topbar-right {
            display: flex;
            align-items: center;
            column-gap: 20px;
        }
        
        .search {
            position: relative;
        }
            .search input {
                position: relative;
                width: 250px;
                padding: 8px 14px 8px 32px;
                outline: none;
                border: none;
                border-radius: 150px;
            }
                .search .input-holder::before {
                    font-family: "Font Awesome 7 Free";
                    font-weight: 900;
                    content: "\f002";
                    font-size: 14px;
                    position: absolute;
                    left: 10px;
                    top: 50%;
                    transform: translateY(-50%);
                    color: var(--red);
                    z-index: 9;
                }
                .search input::placeholder {
                    font-family: var(--font1);
                    padding-left: 2px;
                    color: var(--grey);
                }
                .search input::-moz-placeholder,
                .search input::-webkit-input-placeholder {
                    font-family: var(--font1);
                    padding-left: 26px;
                    color: var(--grey);
                }
                
        .search_result {
            display: none;
            position: absolute;
            width: 300px;
            z-index: 11;
            overflow-y: scroll;
            margin-top: 10px;
            background:#FFF;
            padding: 0 .2em;
            border-radius: 0 0 20px 20px;
            box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.1);
        }
        .search_result::-webkit-scrollbar {
            display: none;
        }
            .search_result .search-image {
                height: 50px;
                width: 50px;
                display: flex;
                align-items: center;
            }
                .search_result .search-image img {
                    width: 100%;
                    height: 100%;
                    object-fit: contain;
                    border-radius: 12px;
                }
            .search_result .search-info {
                flex: 1;
            }
                .search_result h3 {
                    font-size: 14px;
                    font-family: var(--font1);
                    font-weight: bold;
                    margin-bottom: 4px;
                    color: var(--red);
                    display: -webkit-box;
                    -webkit-line-clamp: 2;
                    -webkit-box-orient: vertical;
                    overflow: hidden;
                    text-overflow: ellipsis;
                }
                .search_result p {
                    font-size: 12px;
                    font-family: var(--font1);
                    color: var(--black);
                }
                .search_result a:hover {
                    text-decoration: none !important;
                }
        .search-result-item {
            flex: 1;
            display: flex;
            column-gap: 16px;
            padding: 8px 10px;
            border-bottom: 1px solid #a7a7a724;
        }   .search_result>a:last-child .search-result-item {
                border-bottom: unset;
            }

        a.search-more-results {
            padding: 10px 10px;
            text-align: center;
            justify-content: center;
            width: 100%;
            color: var(--red);
        }

        .sidebar .search input {
            background-color: #f3f3f3;
        }

        .result-search-text {
            align-self: flex-start;
            margin-top: 8px;
        }

.toggle-sidebar-holder {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 10px;
    display: none;
    position: fixed;
    top: 157px;
    z-index: 1;
    background-color: #F3F3F3;
    padding: 16px 10px;
}
    .toggle-sidebar {
        display: flex;
        align-items: center;
        column-gap: 10px;
        color: var(--black);
        cursor: pointer;
    }
        .toggle-sidebar i {
            font-size: 28px;
        }


.navbar {
    z-index: 9;
    width: 100%;
    min-height: 80px;
    position: fixed;
    top: var(--topbar-height);
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    transition: all .3s ease;
}
    .navbar-inner {
        width: 100%;
        max-width: var(--max-width-l);
        display: flex;
        align-items: center;
        justify-content: space-between;
        column-gap: 20px;
        padding: 30px var(--padding-container-hor);
    }
        .navbar-inner .nav {
            display: flex;
            column-gap: 60px;
        }
        .navbar-inner .nav .nav-left,
        .navbar-inner .nav .nav-right {
            display: flex;
            align-items: center;
            column-gap: 36px;
            transition: column-gap .3s ease;
        }
            .navbar-inner .nav a {
                color: var(--red);
                font-size: 18px;
                font-family: var(--font1);
                text-transform: uppercase;
                transition: font-size .3s ease;
            }
                .navbar-inner .nav a:hover::after {
                    content: "";
                    width: 100%;
                    height: 2px;
                    position: absolute;
                    bottom: -4px;
                    left: 0;
                    right: 0;
                    background-color: var(--red);
                }

    .navbar-inner .left {
        display: flex;
        align-items: center;
        column-gap: 28px;
    }
    .navbar-inner .left img.logo {
        object-fit: contain;
        width: 100%;
        height: 80px;
        max-height: 120px;
    }

#videoContainer{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.page-header {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}
    .page-header-inner {
        width: 100%;
        display: flex;
        align-items: center;
    }
        .page-header-inner .content {
            flex: 1;
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            row-gap: 20px;
            background-color: var(--red);
            padding: var(--review-item-padding-vert) 0 var(--review-item-padding-hor) 0;
            border-bottom-right-radius: var(--border-curve-size);
        }
            .page-header-inner .content .content-inner {
                flex: 1;
                max-width: calc(1200px / 2);
                display: flex;
                flex-direction: column;
                padding: 0 var(--review-item-padding-hor) 0 var(--padding-container-hor);
            }
            .page-header-inner .content h4 {
                color: var(--yellow);
            }
            .page-header-inner .content h1 {
                color: #FFFFFF;
            }
            .page-header-inner .content .text {
                font-size: var(--text-size);
                font-family: var(--font-text);
                color: #FFFFFF;
                text-align: justify;
                line-height: 1.6em;
            }
            .page-header-inner .image-holder {
                flex: 1;
                width: 100%;
                height: 100%;
                border-bottom-left-radius: var(--border-curve-size);
                overflow: hidden;
            }
                .page-header-inner .img {
                    width: 100%;
                    height: 100%;
                    background-size: cover;
                    background-position: center;
                    background-repeat: no-repeat;
                }

            .page-header-inner .content .btn-holder button {
                background-color: var(--yellow);
            }

.page-background {
    flex: 1;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
    .page-background.offwhite {
        background-color: var(--offwhite);
    }
    .page-background.lightbrown {
        background-color: var(--lightbrown);
    }

.page-banner {
    width: 100%;
    display: flex;
    justify-content: center;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 150px var(--padding-container-hor);
}
    .page-banner-inner {
        width: 100%;
        max-width: var(--max-width);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
        .page-banner h1 {
            color: #ffffff;
            text-align: center;
            margin-bottom: 10px;
        }
        .page-banner .text {
            color: #ffffff;
            font-family: var(--font-text);
            text-align: center;
        }

.page-banner.slim {
    max-width: 900px;
    padding: calc(var(--padding-container-vert) + 40px) var(--padding-container-hor);
}
    .page-banner.slim h1 {
        margin-bottom: 10px;
    }

.page-banner.white-text .text,
.page-banner.white-text h1 {
    color: #FFFFFF !important;
}
.page-banner.white-text .btn-holder a button {
    background-color: var(--purple);
}
.page-banner.white-text .btn-holder a:first-child button {
    background-color: var(--orange);
}


.lightbrown .page-banner h1 {
    color: var(--red);
}
.lightbrown .page-banner .text {
    color: var(--purple);
}
.offwhite .page-banner h1 {
    color: var(--red);
}
.offwhite .page-banner .text {
    color: var(--purple);
}



.werkwijze-block {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}
    .werkwijze-block-inner {
        width: 100%;
        max-width: 1200px;
        display: flex;
        align-items: center;
    }
        .werkwijze-block-inner .content {
            flex: 1;
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            row-gap: 20px;
            background-color: #FFFFFF;
            padding: var(--review-item-padding-vert) 0 var(--review-item-padding-vert) 0;
            border-bottom-right-radius: var(--border-curve-size);
            text-align: right;
        }
            .werkwijze-block-inner .content .content-inner {
                flex: 1;
                display: flex;
                flex-direction: column;
                padding: 0 var(--review-item-padding-hor) 0 var(--review-item-padding-hor);
            }
            .werkwijze-block-inner .content h1 {
                color: var(--red);
                font-family: var(--font1);
                font-size: 24px;
                margin-bottom: 20px;
                text-transform: none;
            }
            .werkwijze-block-inner .content h2 {
                color: var(--orange);
                font-family: var(--font1);
                font-size: 24px;
                margin-bottom: 4px;
            }
            .werkwijze-block-inner .content .text {
                font-size: var(--text-size);
                font-family: var(--font-text);
                color: var(--purple);
                text-align: justify;
                line-height: 1.6em;
            }
            .werkwijze-block-inner .image-holder {
                flex: 1;
                width: 100%;
                max-width: 400px;
                height: 100%;
                border-bottom-left-radius: var(--border-curve-size);
                overflow: hidden;
            }
                .werkwijze-block-inner .img {
                    width: 100%;
                    height: 100%;
                    background-size: cover;
                    background-position: center;
                    background-repeat: no-repeat;
                    display: flex;
                }

                .werkwijze-block-inner span.number {
                    margin: auto;
                    font-size: 200px;
                    font-family: var(--font2);
                    color: #FFFFFF;
                    text-align: center;
                }

            .werkwijze-block-inner .content .btn-holder button {
                background-color: var(--yellow);
            }

        .werkwijze-block-inner.reverse {
            flex-direction: row-reverse;
        }
        .werkwijze-block-inner.reverse .content {
            border-bottom-right-radius: unset;
            border-bottom-left-radius: var(--border-curve-size);
            text-align: unset;
        }
        .werkwijze-block-inner.reverse .image-holder {
            border-bottom-left-radius: unset;
            border-bottom-right-radius: var(--border-curve-size);
        }
        .werkwijze-block + .werkwijze-block {
            margin-top: 30px;
        }
        .werkwijze-block:last-child {
            margin-bottom: 100px;
        }



.review-block {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}
    .review-block-inner {
        width: 100%;
        max-width: 1200px;
        display: flex;
        align-items: center;
    }
        .review-block-inner .content {
            flex: 1;
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            row-gap: 20px;
            background-color: #FFFFFF;
            padding: var(--review-item-padding-vert) 0 var(--review-item-padding-vert) 0;
            border-bottom-right-radius: var(--border-curve-size);
            text-align: right;
        }
            .review-block-inner .content .content-inner {
                flex: 1;
                display: flex;
                flex-direction: column;
                padding: 0 var(--review-item-padding-hor) 0 var(--review-item-padding-hor);
            }
            .review-block-inner .content h1 {
                color: var(--red);
                font-family: var(--font1);
                font-size: 24px;
                margin-bottom: 20px;
                text-transform: none;
            }
            .review-block-inner .content h2 {
                color: var(--orange);
                font-family: var(--font1);
                font-size: 24px;
                margin-bottom: 4px;
            }
            .review-block-inner .content .text {
                font-size: var(--text-size);
                font-family: var(--font-text);
                color: var(--purple);
                text-align: justify;
                line-height: 1.6em;
            }
            .review-block-inner .image-holder {
                flex: 1;
                width: 100%;
                max-width: 400px;
                height: 100%;
                border-bottom-left-radius: var(--border-curve-size);
                overflow: hidden;
            }
                .review-block-inner .img {
                    width: 100%;
                    height: 100%;
                    background-size: cover;
                    background-position: center;
                    background-repeat: no-repeat;
                    display: flex;
                }
                .review-block-inner span.number {
                    margin: auto;
                    font-size: 200px;
                    font-family: var(--font2);
                    color: #FFFFFF;
                    text-align: center;
                }

            .review-block-inner .content .btn-holder button {
                background-color: var(--yellow);
            }

        .review-block-inner.reverse {
            flex-direction: row-reverse;
        }
        .review-block-inner.reverse .content {
            border-bottom-right-radius: unset;
            border-bottom-left-radius: var(--border-curve-size);
            text-align: unset;
        }
        .review-block-inner.reverse .image-holder {
            border-bottom-left-radius: unset;
            border-bottom-right-radius: var(--border-curve-size);
        }
        .review-block + .review-block {
            margin-top: 30px;
        }
        .review-block:last-child {
            margin-bottom: 100px;
        }

        .review-block-inner.single .content {
            border-bottom-left-radius: unset;
            border-bottom-right-radius: unset;
        }

.review-block + .review-block {
    margin-top: 120px;
}

.profile {
    width: 100%;
    display: flex;
    align-items: center;
    column-gap: 30px;
    top: -120px;
    margin-bottom: -80px;
}
    .review-block-inner .content .profile h1 {
        font-size: 32px;
        color: var(--red);
        top: 40px;
        text-transform: uppercase;
    }
    .profile img {
        width: 200px;
        object-fit: cover;
        aspect-ratio: 1 / 1;
        border-radius: var(--border-shape);
    }

    .profile-name-no-img{
        margin-top: 1em;
    }

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

.review-block .content {
    text-align: unset;
}


@keyframes popup {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    60% {
        transform: scale(1.2);
        opacity: 1;
    }
    100% {
        transform: scale(1);
    }
}
.popup-animate {
    animation: popup 0.25s ease-out;
}


.pagination {
    display: flex;
    justify-content: center;
    margin-top: auto;
}
    .pagination a {
        margin: 0 5px;
        padding: 8px 12px;
        border: 1px solid #ccc;
        border-radius: 4px;
        text-decoration: none;
        color: var(--black);
        cursor: pointer;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }
        .pagination a.active {
            background-color: var(--red);
            color: white;
            border-color: var(--red);
        }
        .pagination a:active {
            transform: scale(0.95);
            box-shadow: 0 2px #7C000E;
        }
        
    .pagination-details {
        margin-top: 10px;
        font-size: 14px;
        color: var(--grey);
        text-align: center;
        display: flex;
        justify-content: center;
        column-gap: 4px;
        flex-wrap: wrap;
    }

.showcase {
    width: 100%;
    display: flex;
    justify-content: center;
    background-color: var(--red);
    padding: 30px 0 50px 0;
}
    .showcase-inner {
        width: 100%;
        max-width: 2000px;
        display: flex;
        align-items: center;
        flex-direction: column;
    }
        .showcase-inner h1 {
            color: #ffffff;
            text-align: center;
            margin-bottom: 30px;
        }
        .showcase-items {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            column-gap: 30px;
        }
            .showcase-items .product-card {
                width: 100%;
            }
            .showcase .slider {
                padding-left: 15px;
            }
            .showcase .slider-container {
                max-width: var(--max-width-l);
            }

.bg-img {
    z-index: -1;
    position: absolute;
    left: 50px;
    bottom: -120px;
    width: 300px;
    height: 300px; 
    background-size: contain;
    background-repeat: no-repeat;
}

.footer {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    background-color: var(--red);
    color: #ffffff;
    overflow: hidden;
}
    .footer-inner {
        width: 100%;
        max-width: 1200px;
        display: flex;
        /* flex-direction: column; */
        /* align-items: center; */
        justify-content: space-between;
        gap: 30px;
        padding: 80px var(--padding-container-hor);
    }
    .footer-nav {
        width: 100%;
        max-width: 1400px;
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        gap: 30px;
    }
        .footer-list {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            row-gap: 12px;
        }
            .footer-list h2 {
                color: #ffffff;
            }
            .footer-list>a, .footer-list>span {
                font-size: 16px;
                font-family: var(--font1);
                color: #ffffff;
            }
            .footer-list-icons {
                width: 100%;
                max-width: 100%;
                display: flex;
                gap: 10px;
                flex-wrap: wrap;
                margin-top: 20px;
            }
                .footer-list-icons img {
                    height: 30px;
                    object-fit: contain;
                }

    .footer-social {
        width: 100%;
        max-width: 1400px;
    }

    .footer-logo {
        width: 100%;
        max-width: 250px;
    }
        .footer-logo img {
            object-fit: contain;
            object-position: center;
        }


.insta-posts-container {
    width: 100%;
    display: flex;
    justify-content: center;
    background-color: var(--red);
}
    #insta-posts {
        width: 100%;
        max-width: 1450px;
        display: flex;
        flex-direction: column;
        row-gap: 20px;
        padding: 0px var(--padding-container-hor);
    }
        #insta-posts .posts-content {
            width: 100%;
            display: flex;
        }
        #insta-posts .post {
            flex: 1;
            margin: 0 5px;
            position: relative;
            display: block;
            text-decoration: none;
            cursor: pointer;
            border-radius: 12px;
        }
            #insta-posts .post img {
                width: 100%;
                aspect-ratio: 1/1;
                border-radius: 12px;
                object-fit: cover;
                transition: all .3s ease;
            }
            #insta-posts .post:hover img {
                filter: brightness(60%);
                transition: all .3s ease;
            }
    
            #insta-posts .post .post_stats {
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                width: 100%;
                display: flex;
                justify-content: center;
                align-items: center;
                column-gap: 24px;
                opacity: 0;
                transition: opacity .3s ease;
            }
                #insta-posts .post:hover .post_stats {
                    opacity: 1;
                    transition: opacity .3s ease;
                }
                #insta-posts .post .post_stats .comments,
                #insta-posts .post .post_stats .likes {
                    display: flex;
                    align-items: center;
                    column-gap: 6px;
                    font-size: 18px;
                    color: #ffffff;
                }
                #insta-posts .post .post_stats .icon {
                    font-size: 16px;
                }
            #insta-posts .post .post_type {
                position: absolute;
                top: 10px;
                right: 10px;
                font-size: 16px;
                color: #ffffff;
            }
    
            #insta-posts .posts-top {
                width: 100%;
                display: flex;
                justify-content: space-between;
                align-items: center;
            }
                #insta-posts .posts-top .handle {
                    column-gap: 16px;
                    font-size: 26px;
                    font-family: var(--font2);
                    color: #ffffff;
                }
                #insta-posts .posts-top .handle a {
                    display: flex;
                    align-items: center;
                    column-gap: 16px;
                }
                    #insta-posts .posts-top .handle i {
                        font-size: 38px;
                    }
                #insta-posts .posts-top .btn-holder {
                    width: unset;
                }

.signature {
    width: 100%;
    display: flex;
    justify-content: center;
    background-color: var(--purple);
    padding: 10px var(--padding-container-hor);
}
    .signature-inner {
        width: 100%;
        max-width: var(--max-width-l);
        display: flex;
        justify-content: space-between;
        color: #ffffff;
        font-size: 14px;
        font-family: var(--font-text);
    }

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

.sticky-sentinel {
    position: absolute;
}

/*  MOBILE NAVBAR  */
#mobile-navbar {
    z-index: 1;
    display: none;
}
#mobile-navbar .burger:hover {
	cursor: pointer;
}
	#mobile-navbar .burger {
		position: relative;
        display: flex;
        flex-direction: column;
        row-gap: 8px;
	}
		#mobile-navbar .menu-bar {
			background-color: var(--red);
            border-radius: 10px;
			width: 2.4em;
			height: 5px;
			display: block;
			opacity: 1;
		}
        #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 {
	z-index: 10;
	width: 100%;
	height: 100%;
	position: fixed;
	display: none;
    justify-content: center;
    align-items: center;
	opacity: 0;
	left: 0;
	top: 0;
	background-color: var(--lightbrown);
}
    .menu-cart {
        z-index: 11;
        position: absolute;
        bottom: 30px;
        left: 50%;
        transform: translateX(-50%);
    }
    .menu-cart i {
        font-size: 30px;
    }

    .menu-exit {
        z-index: 11;
        position: absolute;
        top: 1.5em;
        right: 1.5em;
        width: 2em;
        height: 2em;
        display: flex;
        justify-content: center;
        align-items: center;
    }
        .menu-exit i.fa-solid {
            font-size: 44px;
            color: var(--yellow);
            cursor: pointer;
        }
	.mobile-menu-inner {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
		padding: 20px 10px 100px;
        background-color: var(--red);
	}
        .menu-logo {
            width: 100%;
            max-width: 260px;
            height: 120px;
            margin-bottom: 60px;    
        }
            .menu-logo img {
                width: 100%;
                height: 100%;
                object-fit: contain;
            }
        .mobile-menu-inner ul {
            list-style-type: none;
            text-align: center;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            row-gap: 30px;
        }
            .mobile-menu-inner ul li a {
                color: var(--yellow);
                font-size: 24px;
                font-family: var(--font1);
                text-transform: uppercase;
                text-decoration: none;
            }

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

    .mobile-menu-inner .btn-holder button {
        font-size: 18px;
    }



.content-block {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: var(--padding-container-vert) var(--padding-container-hor);
}
    .content-block-inner {
        width: 100%;
        max-width: 1200px;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        column-gap: 100px;
        row-gap: 30px;
        background-color: var(--offwhite);
        padding: calc(var(--review-item-padding-vert) + 20px) calc(var(--review-item-padding-hor) + 20px);
    }
        .content-block .image-holder {
            display: flex;
            align-items: center;
            flex-grow: 1;
            flex-shrink: 0;
            width: 100%;
            max-width: 320px;
            height: 360px;
            border-radius: var(--border-shape);
            overflow: hidden;
        }
            .content-block .image-holder img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                object-position: top;
                aspect-ratio: 1/1;
            }
        .content-block .content {
            flex: 1 0;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }
            .content-block .content h1 {
                color: var(--orange);
            }
            .content-block.lightbrown-bg .content.contact-form h1 {
                color: var(--orange);
            }
            .content-block .content .text {
                color: var(--purple);
                font-family: var(--font-text);
                font-size: var(--text-size);
                font-weight: normal;
                line-height: 1.6em;
            }
            .content-block .content .btn-holder a button {
                background-color: var(--red);
            }
            .content-block .content .btn-holder a:first-child button {
                background-color: var(--orange);
            }


    .content-block.lightbrown-bg .content-block-inner {
        background-color: var(--lightbrown);
    }
        .content-block.lightbrown-bg .content h1 {
            color: var(--purple);
        }
        .content-block.lightbrown-bg .content .text {
            color: var(--red);
        }
        .content-block.lightbrown-bg .content .btn-holder button {
            background-color: var(--orange);
        }
        .content-block.lightbrown-bg .content .btn-holder a:first-child button {
            background-color: var(--red);
        }

        .page-banner.slim .btn-holder button {
            background-color: var(--orange);
        }
        .page-banner.slim .btn-holder a:first-child button {
            background-color: var(--red);
        }
        .page-banner .btn-holder button {
            background-color: var(--purple);
        }
        .content-block.lightbrown-bg a .btn-holder button {
            background-color: var(--orange);
        }
        .page-banner.slim .btn-holder a:first-child button {
            background-color: var(--red);
        }

        .content-block.offwhite-bg {
            background-color: var(--offwhite);
        }
        .content-block.offwhite-bg .content-block-inner {
            background-color: unset;
        }

.tarieven-block .content h1 {
    color: var(--purple);
}

.contact-form form {
    width: 100%;
    display: flex;
    flex-direction: column;
    row-gap: 12px;
}
    .contact-form form .form-row {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        column-gap: 15px;
        row-gap: 12px;
    }
    .contact-form input,
    .contact-form textarea {
        border-radius: 20px;
        outline: none;
        border: none;
        padding: 12px 20px;
        font-size: 16px;
        font-family: var(--font-text);
        color: var(--purple);
        background-color: #FFFFFF;
        resize: none;
    }
    .contact-form input::placeholder {
        color: var(--purple);
        font-family: inherit;
        font-size: inherit;
        padding: 0 1px;
    }
    .contact-form textarea {
        width: 100%;
    }
    .contact-form .btn-holder {
        width: 100%;
        justify-content: flex-end;
        margin-top: 50px;
    }


/* slider */
.slider-container {
    position: relative;
    width: 100%;
    max-width: var(--max-width);
    overflow-y: visible;
    overflow-x: hidden;
    height: auto;
}
.slider-container.has-dots {
    padding-bottom: 30px;
}
    .slider {
        width: 100%;
        display: inline-flex;
        overflow-x: scroll;
        overflow-y: hidden;
        scrollbar-width: none;
        cursor: grab;
    }
        .slider::-webkit-scrollbar {
            display: none;
        }
        .slider-container::before,
        .slider-container::after {
            z-index: 1;
            content: '';
            position: absolute;
            top: 0;
            height: 100%;
            width: 90px;
            pointer-events: none;
            opacity: 0;
        }
        .fade-left::before, .fade-right::after {
            opacity: 1;
            transition: opacity .5s ease;
        }
        
        .arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);            
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 36px;
            color: var(--red);
            background-color: #ffffff;
            text-align: center;
            align-content: center;
            cursor: pointer;
            border-radius: 50%;
            user-select: none;
            transition: opacity .3s ease;
        }
        .arrow>i {
            width: 100%;
            height: 100%;
        }
        .arrow-left { left: 10px; }
        .arrow-right { right: 10px; }
        .arrow:hover { transform: translateY(-50%) scale(1.1); }
        .arrow.disabled {
            opacity: 0.3;
            transition: opacity .3s ease;
        }
        .slider.centered {
            justify-content: center;
        }
        .slider.dots {
            margin-bottom: 30px;
        }
        .dots-container {
            position: absolute;
            bottom: 10px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            justify-content: center;
            gap: 8px;
            padding-top: 10px;
        }
            .dot {
                width: 10px;
                height: 10px;
                border-radius: 50%;
                background-color: #ccc;
                cursor: pointer;
                transition: background-color 0.3s;
            }
                .dot.active {
                    background-color: #333;
                }


div.bottom{
    width: 100%;
    padding: 0.6em 1.6em;
    background-color: #FFFFFF;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    color: var(--red);
}

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

}

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

}

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

}

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

}

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

    .navbar-inner .nav {
        column-gap: 40px;
    }

    .page-banner {
        padding: calc(var(--padding-container-vert) + 40px) var(--padding-container-hor);
    }

}


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

    .navbar-inner {
        align-items: center;
    }
    .navbar-inner .nav .nav-left, .navbar-inner .nav .nav-right {
        column-gap: 30px;
    }

}

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

    :root {
        --topbar-height: 30px;
    }
    .werkwijze-block-inner .image-holder {
        flex: 1;
        width: 100%;
        max-width: 360px;
    }

    .navbar-inner {
        column-gap: 10px;
        padding: 15px var(--padding-container-hor);
    }

    .navbar-inner .left img.logo {
        height: 70px;
    }

    .page-container {
        padding-top: 135px;
    }    
}

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

    .navbar-inner .nav {
        column-gap: 20px;
    }

    .content-block-inner {
        column-gap: 60px;
        padding: var(--review-item-padding-vert) var(--review-item-padding-hor);
    }

}

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

    :root {
        --review-item-padding-hor: 60px;
        --review-item-padding-vert: 60px;

        --border-curve-size: 60px;
    }

    .page-banner.slim {
        padding: calc(var(--padding-container-vert) + 0px) var(--padding-container-hor);
    }
}

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

    :root {
        --padding-container-vert: 60px;
    }

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

    .navbar-inner .left img.logo {
        max-width: 210px;
    }

    .footer .title {
        font-size: 24px;
    }

    .content-block .image-holder {
        max-width: 260px;
        height: 280px;
        /* align-self: center; */
    }
    h1 {
        margin-bottom: 20px;
    }
    .btn-holder button {
        font-size: 14px;
    }

    .review-block {
        margin-top: 40px;
    }

}

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

    .werkwijze-block-inner,
    .werkwijze-block-inner.reverse {
        flex-direction: column-reverse;
    }

    .werkwijze-block-inner .image-holder,
    .review-block-inner .image-holder {
        max-width: unset;
        min-height: 200px;
    }

    .review-block-inner .image-holder {
        min-height: 400px;
    }

    .werkwijze-block-inner .content {
        border-bottom-right-radius: unset;
        border-top-left-radius: var(--border-curve-size);
    }
    .werkwijze-block-inner.reverse .content {
        border-bottom-left-radius: unset;
        border-top-left-radius: unset;
        border-top-right-radius: var(--border-curve-size);
    }

    .review-block-inner.reverse .image-holder {
        border-bottom-right-radius: unset;
        border-top-left-radius: var(--border-curve-size);
    }

    .review-block-inner.reverse {
        flex-direction: column;
    }

}

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

}

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

    h1 {
        font-size: 32px;
    }

}

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



}

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

    :root {
        --review-item-padding-hor: 40px;
        --review-item-padding-vert: 40px;
    }

    .review-block {
        margin-top: 60px;
    }
    .profile {
        top: -100px;
        margin-bottom: -60px;
    }

}

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

    .footer-inner {
        flex-direction: column;
        gap: 40px;
        padding: var(--padding-container-vert) var(--padding-container-hor);
    }

    .footer-logo {
        align-self: center;
    }
    .page-header-inner {
        flex-direction: column;

    }
    .page-header-inner .content .content-inner {
        max-width: unset;
        padding: 0 var(--review-item-padding-hor) 0 var(--review-item-padding-hor);
    }

    .content-block-inner {
        flex-direction: column;
    }

    .content-block .image-holder {
        align-self: center;
    }
}

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

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

    .navbar-inner img.logo {
        height: 65px;
    }

    .btn-holder button {
        font-size: 14px;
    }

    h1 {
        font-size: 26px;
    }

    /* #insta-posts .posts-content {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
    #insta-posts .posts-content> *:nth-child(n+3) {
        display: none;
    }
    
    .footer-nav{
        padding: 0;
        grid-template-columns: repeat(1, 1fr);
    } 

    #insta-posts .posts-top{
        flex-direction: column;
        align-items: flex-start;
        gap: 1em;
    } */

}

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

    .signature-inner {
        flex-direction: column;
        justify-content: flex-start;
        row-gap: 6px;
    }
    .werkwijze-block-inner .img {
        padding: 20px 0;
    }
    .werkwijze-block-inner span.number {
        font-size: 150px;
    }

    .page-header-inner .content .text,
    .werkwijze-block-inner .content .text,
    .content-block-inner .content .text,
    .review-block-inner .content .text {
        text-align: left;
    }

    .werkwijze-block-inner .content h2 {
        font-size: 20px;
    }

    .werkwijze-block:last-child {
        margin-bottom: 60px;
    }

    .page-banner {
        padding: var(--padding-container-vert) var(--padding-container-hor);
    }

}

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

    .navbar-inner .nav .nav-left, .navbar-inner .nav .nav-right {
        column-gap: 20px;
    }
    .navbar-inner .search input {
        max-width: 160px;
    }

    .profile {
        flex-direction: column;
        margin-bottom: -80px;
    }
    .review-block-inner.reverse .profile {
        flex-direction: column;
    }
    .review-block-inner .content .profile h1 {
        font-size: 26px;
        top: unset;
        margin-top: 30px;
    }

    
    .content-block {
        padding: var(--padding-container-vert) 0;
    }

}

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

    .topbar-inner .topbar-right {
        width: 100%;
        justify-content: space-between;
        column-gap: 10px;
    }

    .review-block-inner .image-holder {
        min-height: 280px;
    }

}

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

    :root {
        --review-item-padding-hor: 15px;
        --review-item-padding-vert: 20px;

        --border-curve-size: 40px;
    }

    .topbar-right .nav-account span {
        display: none;
    }
    .topbar-inner a i {
        font-size: 22px;
    }

    .footer-nav {
        flex-direction: column;
        gap: 30px;
    }

    .page-header-inner .content {
        padding: calc(var(--review-item-padding-vert) + 20px) 0 calc(var(--review-item-padding-vert) + 20px) 0;
    }

    .profile img {
        width: 160px;
    }
    .review-block-inner .content .profile h1 {
        margin-top: 20px;
    }
    .profile {
        top: -80px;
    }

    .navbar-inner .left img.logo {
        max-width: 150px;
    }

}

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

    :root {
        --border-curve-size: 30px;
    }

    .contact-form input,
    .contact-form textarea {
        width: 100%;
    }

    .contact-form .btn-holder {
        margin-top: 20px;
    }

}

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

    .content-block .image-holder {
        max-width: 220px;
        height: 240px;
    }

}
