:root {
    --blauw-licht: rgb(231,240,253);
    --blauw-donker: rgb(27,114,232);
    --blauw-hover: rgb(0,68,144);
    --box-background: var(--blauw-licht);
    --box-border: var(--blauw-donker);
    --geel: rgb(255,255,133);
    --hamburger-color: var(--blauw-donker);
    --hamburger-color-hover: var(--blauw-donker);
    --hamburger-color--hover-sticky: var(--blauw-donker);
    --hamburger-color-sticky: var(--blauw-donker);
    --hamburger-color-hover: var(--blauw-donker);
}
@media screen and (max-width:1280px) {

}
:root {
    --col1: calc((100% / 12) * 1);
    --col2: calc((100% / 12) * 2);
    --col3: calc((100% / 12) * 3);
    --col4: calc((100% / 12) * 4);
    --col5: calc((100% / 12) * 5);
    --col6: calc((100% / 12) * 6);
    --col7: calc((100% / 12) * 7);
    --col8: calc((100% / 12) * 8);
    --col9: calc((100% / 12) * 9);
    --col10: calc((100% / 12) * 10);
    --col11: calc((100% / 12) * 11);
    --col12: calc((100% / 12) * 12);
    --col1px: calc((var(--wrapper-width) / 12) * 1);
    --col2px: calc((var(--wrapper-width) / 12) * 2);
    --col3px: calc((var(--wrapper-width) / 12) * 3);
    --col4px: calc((var(--wrapper-width) / 12) * 4);
    --col5px: calc((var(--wrapper-width) / 12) * 5);
    --col6px: calc((var(--wrapper-width) / 12) * 6);
    --col7px: calc((var(--wrapper-width) / 12) * 7);
    --col8px: calc((var(--wrapper-width) / 12) * 8);
    --col9px: calc((var(--wrapper-width) / 12) * 9);
    --col10px: calc((var(--wrapper-width) / 12) * 10);
    --col11px: calc((var(--wrapper-width) / 12) * 11);
    --col12px: calc((var(--wrapper-width) / 12) * 12);
}
section, header, footer{
    position:relative;
    width:100%;
}
.wrapper {
    position: relative;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    width: var(--wrapper-width);
}

.col1 {
    width: var(--col1);
}

.col2 {
    width: var(--col2);
}

.col3 {
    width: var(--col3);
}

.col4 {
    width: var(--col4);
}

.col5 {
    width: var(--col5);
}

.col6 {
    width: var(--col6);
}

.col7 {
    width: var(--col7);
}

.col8 {
    width: var(--col8);
}

.col9 {
    width: var(--col9);
}

.col10 {
    width: var(--col10);
}

.col11 {
    width: var(--col11);
}

.col12 {
    width: var(--col12);
}

.col1px {
    width: var(--col1px);
}

.col2px {
    width: var(--col2px);
}

.col3px {
    width: var(--col3px);
}

.col4px {
    width: var(--col4px);
}

.col5px {
    width: var(--col5px);
}

.col6px {
    width: var(--col6px);
}

.col7px {
    width: var(--col7px);
}

.col8px {
    width: var(--col8px);
}

.col9px {
    width: var(--col9px);
}

.col10px {
    width: var(--col10px);
}

.col11px {
    width: var(--col11px);
}

.col12px {
    width: var(--col12px);
}

.alignRight {
    text-align: right;
    justify-content: flex-end;
}

.colAlignRight {
    justify-content: flex-end;
    margin-left:auto !important;
}

.alignCenter {
    text-align: center;
    justify-content: center;
}

.colAlignCenter {
    display: flex !important;
    justify-content: center !important;
}

.pullRight {
    margin-left: auto;
}

fieldset {
    border: 0;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
}

label.error {
    display: none !important;
}
/*.select-hidden, select {
    display: none;
    visibility: hidden;
    padding-right: 10px;
}*/
form input.error, form textarea.error {
    background: #e78585 !important
}
/*
.select-hidden, select {
    display: none;
    visibility: hidden;
    padding-right: 10px;
}
.select {
    cursor: pointer;
    display: block;
    position: relative;
    font: var(--button-font);
    color: #FFF;
    height: 40px;
    width: 100%;
}

.select-styled {
    position: absolute;
    display: flex;
    align-items: center;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: var(--blauw);
    padding: 8px 15px;
    color: #FFF;
    -moz-transition: all 0.2s ease-in;
    -o-transition: all 0.2s ease-in;
    -webkit-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
    height: 50px;
    box-sizing: border-box;
}

    .select-styled:after {
        content: "\e917";
        width: 0;
        height: 0;
        position: absolute;
        top: 0;
        right: 40px;
        height: 100%;
        display: flex;
        align-content: center;
        align-items: center;
        font-size: 12px;
    }

    .select-styled.selected {
        color: #FFF;
    }

    .select-styled:active, .select-styled.active {
        border-end-start-radius: 0;
        border-end-end-radius: 0;
    }

        .select-styled:active:after, .select-styled.active:after {
            transform: translate(20px, 0) rotate(180deg);
        }

.select-options {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    z-index: 999;
    margin: 0;
    padding: 0;
    list-style: none;
    background: var(--blauw);
}

    .select-options li {
        margin: 0;
        font: var(--button-font);
        margin: 0 25px;
        padding: 0 10px;
        height: 40px;
        display: flex;
        align-items: center;
        line-height: 40px;
        color: #FFF;
        border-top: 0;
        -moz-transition: all 0.15s ease-in;
        -o-transition: all 0.15s ease-in;
        -webkit-transition: all 0.15s ease-in;
        transition: all 0.15s ease-in;
        border-bottom: 1px solid var(--bruin);
    }

        .select-options li:last-of-type {
            border: 0;
        }

        .select-options li:hover, .select-options li.is-selected {
            color: #FFF;
        }

        .select-options li[rel="hide"] {
            display: none;
        }*/
label.checkBoxContainer {
    display: block;
    position: relative;
    width: auto;
    margin: 0 20px 0 0 !important;
    height: auto !important;
    line-height: normal !important;
    padding: 0 0 0 25px;
    font: var(--default-tekst) !important;
    align-content: center !important;
    align-items: center !important;
    width: fit-content !important;
}

    label.checkBoxContainer a {
        text-decoration: underline;
    }

.checkBoxContainer .checkbox {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background: var(--box-background);
    box-sizing: border-box;
    background-color: none;
    transition: ease-in-out background-color .3s;
    bottom: 0;
    margin: auto;
}

    .checkmark:after {
        content: "";
        position: absolute;
        display: none
    }

.checkBoxContainer .checkbox:checked ~ .checkmark:after {
    display: flex;
    content: "x";
}

.checkBoxContainer .checkmark:after {
    left: 0;
    top: -3px;
    width: 100%;
    height: 100%;
    font-size: 18px;
    color: var(--zwart);
    justify-content: center;
    align-content: center;
    align-items: center;
}

form .contactRow {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    box-sizing: border-box;
    margin:0 0 10px 0;
}

    form .contactRow.firstRow {
        margin: 40px 0 10px;
    }

.formulier label, .zoekContainer label {
    width: 100%;
    font: var(--default-tekst);
    color: #fff
}

.formulier label {
    width: 100px;
    height: auto;
    line-height: normal;
    display: flex;
    align-content: flex-start;
    align-items: flex-start;
    margin: 0 10px 0 0;
    color: var(--zwart);
    font: var(--form-label);
    height: var(--height-input);
    line-height: var(--height-input);
}
.formulier.contact label{
    color: #000;
}
.formulier .box, .zoekVeldContainer .box, .prijs-velden .box, .km-velden .box {
    position: relative;
    box-sizing: border-box;
    padding: 0 15px;
    display: block;
    color: var(--zwart);
    height: var(--height-input);
    line-height: var(--height-input);
    border: 0;
    flex: 1;
    border: 1px solid var(--box-border);
    background: var(--box-background);
    margin: 0 0 20px;
    font: var(--default-tekst);
    width: calc(100% - 100px);
    box-sizing: border-box;
    margin: 0 0 0 0;
    border-radius: 30px;
}

.prijs-velden .box, .km-velden .box {
    margin: 0 0 10px;
    width: 100%;
    height: 40px;
    border-radius: 10px;
}

.formulier input[type="radio"].box {
    height: 25px;
    width: 25px;
    padding: 0;
    width: auto;
    flex: none;
    margin: 0 10px 0 0;
}

.radioButtons, .radioButtons label {
    display: flex;
    align-content: center;
    align-items: center;
}

    .radioButtons label {
        margin: 0 20px 0 0;
    }

.formulier .box.firstInput {
    margin: 55px 0 20px;
}

.zoekVeldContainer .box {
    background: #FFF;
    margin: 0 10px 0 0;
}

.search .box:hover {
    background: var(--blauw);
    color: var(--licht-grijs);
}

.formulier .box::placeholder, .search .box::placeholder {
    color: #CECECE;
}

.formulier .selectBoxContainer {
    width: calc(100% - var(--grid-gap));
}

.formulier textarea.box {
    height: 150px;
    width: 100%;
    font: var(--default-tekst);
    padding: 10px 15px;
    border: 0;
    outline: none;
    border: 1px solid var(--box-border);

}
.formulier .box.last {
    border-bottom:1px solid var(--box-border)
}
    .formulier .btnContainer {
    margin-top: 40px;
    margin-right: 10px;
    text-align: right;
}

label.radio {
    width: fit-content;
    display: inline-flex;
    align-content: center;
    align-items: center;
    height: auto;
    line-height: normal;
}

.has-error {
    border: 1px solid red;
    padding: 5px;
}

@media screen and (max-width:1600px) {
}

@media screen and (max-width:1250px) {
    .formulier label {
        line-height: normal;
    }
}

.hamburger--3dx .hamburger-box, .hamburger--3dx-r .hamburger-box, .hamburger--3dy .hamburger-box, .hamburger--3dy-r .hamburger-box {
    perspective: 80px
}

.hamburger {
    position: absolute;
    height: 30px;
    font: inherit;

    overflow: visible;
    margin: auto 0;
    padding: 0;
    cursor: pointer;
    transition-timing-function: linear;
    transition-duration: .15s;
    transition-property: opacity,filter;
    text-transform: none;
    color: inherit;
    border: 0;
    background-color: transparent;
    display:flex;
    align-content:center;
    align-items:center;
}

.hamburger--emphatic, .hamburger--emphatic-r {
    overflow: hidden
}

.hamburger:hover .hamburger-inner, .hamburger:hover .hamburger-inner:after, .hamburger:hover .hamburger-inner:before {
    background-color: var(--hamburger-color-hover);
}

.sticky .hamburger:hover .sticky .hamburger-inner, .sticky .hamburger:hover .sticky .hamburger-inner:after, .sticky .hamburger:hover .hamburger-inner:before,
.is-active .hamburger:hover .is-active .hamburger-inner, .is-active .hamburger:hover .is-active .hamburger-inner:after, .is-active .hamburger:hover .hamburger-inner:before {
    background-color: var(--hamburger-color--hover-sticky);
}

.hamburger-box {
    position: relative;
    display: inline-block;
    width: var(--hamburger-width);
    height: 30px;
    margin-left:0;
}

.hamburger-inner {
    top: 50%;
    display: block;
    margin-top: -2px
}

    .hamburger-inner, .hamburger-inner:after, .hamburger-inner:before {
        position: absolute;
        width: var(--hamburger-width);
        height: 5px;
        transition-timing-function: ease;
        transition-duration: .15s;
        transition-property: transform;
        border-radius: 0;
        background-color: var(--hamburger-color);
        transition:ease-in-out background-color 0.3s;
        border-radius:3px;
    }
.sticky .hamburger-inner, .sticky .hamburger-inner:after, .sticky .hamburger-inner:before,
.is-active .hamburger-inner, .is-active .hamburger-inner:after, .is-active .hamburger-inner:before {
    background-color: var(--hamburger-color-sticky);
}

        .hamburger-inner:after, .hamburger-inner:before {
            display: block;
            content: ""
        }

.hamburger-inner:before {
    top: -9px
}

        .hamburger-inner:after {
            bottom: -9px
        }

.hamburger--3dx .hamburger-inner {
    transition: transform .15s cubic-bezier(.645,.045,.355,1),background-color 0 cubic-bezier(.645,.045,.355,1) .1s
}

    .hamburger--3dx .hamburger-inner:after, .hamburger--3dx .hamburger-inner:before {
        transition: transform 0 cubic-bezier(.645,.045,.355,1) .1s
    }

.hamburger--3dx.is-active .hamburger-inner {
    transform: rotateY(180deg);
    background-color: transparent
}

    .hamburger--3dx.is-active .hamburger-inner:before {
        transform: translate3d(0,10px,0) rotate(45deg)
    }

    .hamburger--3dx.is-active .hamburger-inner:after {
        transform: translate3d(0,-10px,0) rotate(-45deg)
    }

.hamburger--3dx-r .hamburger-inner {
    transition: transform .15s cubic-bezier(.645,.045,.355,1),background-color 0 cubic-bezier(.645,.045,.355,1) .1s
}

    .hamburger--3dx-r .hamburger-inner:after, .hamburger--3dx-r .hamburger-inner:before {
        transition: transform 0 cubic-bezier(.645,.045,.355,1) .1s
    }

.hamburger--3dx-r.is-active .hamburger-inner {
    transform: rotateY(-180deg);
    background-color: transparent
}

    .hamburger--3dx-r.is-active .hamburger-inner:before {
        transform: translate3d(0,10px,0) rotate(45deg)
    }

    .hamburger--3dx-r.is-active .hamburger-inner:after {
        transform: translate3d(0,-10px,0) rotate(-45deg)
    }

.hamburger--3dy .hamburger-inner {
    transition: transform .15s cubic-bezier(.645,.045,.355,1),background-color 0 cubic-bezier(.645,.045,.355,1) .1s
}

    .hamburger--3dy .hamburger-inner:after, .hamburger--3dy .hamburger-inner:before {
        transition: transform 0 cubic-bezier(.645,.045,.355,1) .1s
    }

.hamburger--3dy.is-active .hamburger-inner {
    transform: rotateX(-180deg);
    background-color: transparent
}

    .hamburger--3dy.is-active .hamburger-inner:before {
        transform: translate3d(0,10px,0) rotate(45deg)
    }

    .hamburger--3dy.is-active .hamburger-inner:after {
        transform: translate3d(0,-10px,0) rotate(-45deg)
    }

.hamburger--3dy-r .hamburger-inner {
    transition: transform .15s cubic-bezier(.645,.045,.355,1),background-color 0 cubic-bezier(.645,.045,.355,1) .1s
}

    .hamburger--3dy-r .hamburger-inner:after, .hamburger--3dy-r .hamburger-inner:before {
        transition: transform 0 cubic-bezier(.645,.045,.355,1) .1s
    }

.hamburger--3dy-r.is-active .hamburger-inner {
    transform: rotateX(180deg);
    background-color: transparent
}

    .hamburger--3dy-r.is-active .hamburger-inner:before {
        transform: translate3d(0,10px,0) rotate(45deg)
    }

    .hamburger--3dy-r.is-active .hamburger-inner:after {
        transform: translate3d(0,-10px,0) rotate(-45deg)
    }

.hamburger--arrow.is-active .hamburger-inner:before {
    transform: translate3d(-8px,0,0) rotate(-45deg) scaleX(.7)
}

.hamburger--arrow.is-active .hamburger-inner:after {
    transform: translate3d(-8px,0,0) rotate(45deg) scaleX(.7)
}

.hamburger--arrow-r.is-active .hamburger-inner:before {
    transform: translate3d(8px,0,0) rotate(45deg) scaleX(.7)
}

.hamburger--arrow-r.is-active .hamburger-inner:after {
    transform: translate3d(8px,0,0) rotate(-45deg) scaleX(.7)
}

.hamburger--arrowalt .hamburger-inner:before {
    transition: top .1s ease .1s,transform .1s cubic-bezier(.165,.84,.44,1)
}

.hamburger--arrowalt .hamburger-inner:after {
    transition: bottom .1s ease .1s,transform .1s cubic-bezier(.165,.84,.44,1)
}

.hamburger--arrowalt.is-active .hamburger-inner:before {
    top: 0;
    transition: top .1s ease,transform .1s cubic-bezier(.895,.03,.685,.22) .1s;
    transform: translate3d(-8px,-10px,0) rotate(-45deg) scaleX(.7)
}

.hamburger--arrowalt.is-active .hamburger-inner:after {
    bottom: 0;
    transition: bottom .1s ease,transform .1s cubic-bezier(.895,.03,.685,.22) .1s;
    transform: translate3d(-8px,10px,0) rotate(45deg) scaleX(.7)
}

.hamburger--arrowalt-r .hamburger-inner:before {
    transition: top .1s ease .1s,transform .1s cubic-bezier(.165,.84,.44,1)
}

.hamburger--arrowalt-r .hamburger-inner:after {
    transition: bottom .1s ease .1s,transform .1s cubic-bezier(.165,.84,.44,1)
}

.hamburger--arrowalt-r.is-active .hamburger-inner:before {
    top: 0;
    transition: top .1s ease,transform .1s cubic-bezier(.895,.03,.685,.22) .1s;
    transform: translate3d(8px,-10px,0) rotate(45deg) scaleX(.7)
}

.hamburger--arrowalt-r.is-active .hamburger-inner:after {
    bottom: 0;
    transition: bottom .1s ease,transform .1s cubic-bezier(.895,.03,.685,.22) .1s;
    transform: translate3d(8px,10px,0) rotate(-45deg) scaleX(.7)
}

.hamburger--boring .hamburger-inner, .hamburger--boring .hamburger-inner:after, .hamburger--boring .hamburger-inner:before {
    transition-property: none
}

.hamburger--boring.is-active .hamburger-inner {
    transform: rotate(45deg)
}

    .hamburger--boring.is-active .hamburger-inner:before {
        top: 0;
        opacity: 0
    }

    .hamburger--boring.is-active .hamburger-inner:after {
        bottom: 0;
        transform: rotate(-90deg)
    }

.hamburger--collapse .hamburger-inner {
    top: auto;
    bottom: 0;
    transition-delay: .13s;
    transition-timing-function: cubic-bezier(.55,.055,.675,.19);
    transition-duration: .13s
}

    .hamburger--collapse .hamburger-inner:after {
        top: -20px;
        transition: top .2s cubic-bezier(.33333,.66667,.66667,1) .2s,opacity .1s linear
    }

    .hamburger--collapse .hamburger-inner:before {
        transition: top .12s cubic-bezier(.33333,.66667,.66667,1) .2s,transform .13s cubic-bezier(.55,.055,.675,.19)
    }

.hamburger--collapse.is-active .hamburger-inner {
    transition-delay: .22s;
    transition-timing-function: cubic-bezier(.215,.61,.355,1);
    transform: translate3d(0,-10px,0) rotate(-45deg)
}

    .hamburger--collapse.is-active .hamburger-inner:after {
        top: 0;
        transition: top .2s cubic-bezier(.33333,0,.66667,.33333),opacity .1s linear .22s;
        opacity: 0
    }

    .hamburger--collapse.is-active .hamburger-inner:before {
        top: 0;
        transition: top .1s cubic-bezier(.33333,0,.66667,.33333) .16s,transform .13s cubic-bezier(.215,.61,.355,1) .25s;
        transform: rotate(-90deg)
    }

.hamburger--collapse-r .hamburger-inner {
    top: auto;
    bottom: 0;
    transition-delay: .13s;
    transition-timing-function: cubic-bezier(.55,.055,.675,.19);
    transition-duration: .13s
}

    .hamburger--collapse-r .hamburger-inner:after {
        top: -20px;
        transition: top .2s cubic-bezier(.33333,.66667,.66667,1) .2s,opacity .1s linear
    }

    .hamburger--collapse-r .hamburger-inner:before {
        transition: top .12s cubic-bezier(.33333,.66667,.66667,1) .2s,transform .13s cubic-bezier(.55,.055,.675,.19)
    }

.hamburger--collapse-r.is-active .hamburger-inner {
    transition-delay: .22s;
    transition-timing-function: cubic-bezier(.215,.61,.355,1);
    transform: translate3d(0,-10px,0) rotate(45deg)
}

    .hamburger--collapse-r.is-active .hamburger-inner:after {
        top: 0;
        transition: top .2s cubic-bezier(.33333,0,.66667,.33333),opacity .1s linear .22s;
        opacity: 0
    }

    .hamburger--collapse-r.is-active .hamburger-inner:before {
        top: 0;
        transition: top .1s cubic-bezier(.33333,0,.66667,.33333) .16s,transform .13s cubic-bezier(.215,.61,.355,1) .25s;
        transform: rotate(90deg)
    }

.hamburger--elastic .hamburger-inner {
    top: 2px;
    transition-timing-function: cubic-bezier(.68,-.55,.265,1.55);
    transition-duration: .275s
}

    .hamburger--elastic .hamburger-inner:before {
        top: 10px;
        transition: opacity .125s ease .275s
    }

    .hamburger--elastic .hamburger-inner:after {
        top: 20px;
        transition: transform .275s cubic-bezier(.68,-.55,.265,1.55)
    }

.hamburger--elastic.is-active .hamburger-inner {
    transition-delay: 75ms;
    transform: translate3d(0,10px,0) rotate(135deg)
}

    .hamburger--elastic.is-active .hamburger-inner:before {
        transition-delay: 0;
        opacity: 0
    }

    .hamburger--elastic.is-active .hamburger-inner:after {
        transition-delay: 75ms;
        transform: translate3d(0,-20px,0) rotate(-270deg)
    }

.hamburger--elastic-r .hamburger-inner {
    top: 2px;
    transition-timing-function: cubic-bezier(.68,-.55,.265,1.55);
    transition-duration: .275s
}

    .hamburger--elastic-r .hamburger-inner:before {
        top: 10px;
        transition: opacity .125s ease .275s
    }

    .hamburger--elastic-r .hamburger-inner:after {
        top: 20px;
        transition: transform .275s cubic-bezier(.68,-.55,.265,1.55)
    }

.hamburger--elastic-r.is-active .hamburger-inner {
    transition-delay: 75ms;
    transform: translate3d(0,10px,0) rotate(-135deg)
}

    .hamburger--elastic-r.is-active .hamburger-inner:before {
        transition-delay: 0;
        opacity: 0
    }

    .hamburger--elastic-r.is-active .hamburger-inner:after {
        transition-delay: 75ms;
        transform: translate3d(0,-20px,0) rotate(270deg)
    }

.hamburger--emphatic .hamburger-inner {
    transition: background-color .125s ease-in .175s
}

    .hamburger--emphatic .hamburger-inner:before {
        left: 0;
        transition: transform .125s cubic-bezier(.6,.04,.98,.335),top .05s linear .125s,left .125s ease-in .175s
    }

    .hamburger--emphatic .hamburger-inner:after {
        top: 10px;
        right: 0;
        transition: transform .125s cubic-bezier(.6,.04,.98,.335),top .05s linear .125s,right .125s ease-in .175s
    }

.hamburger--emphatic.is-active .hamburger-inner {
    transition-delay: 0;
    transition-timing-function: ease-out;
    background-color: transparent
}

    .hamburger--emphatic.is-active .hamburger-inner:before {
        top: -80px;
        left: -80px;
        transition: left .125s ease-out,top .05s linear .125s,transform .125s cubic-bezier(.075,.82,.165,1) .175s;
        transform: translate3d(80px,80px,0) rotate(45deg)
    }

    .hamburger--emphatic.is-active .hamburger-inner:after {
        top: -80px;
        right: -80px;
        transition: right .125s ease-out,top .05s linear .125s,transform .125s cubic-bezier(.075,.82,.165,1) .175s;
        transform: translate3d(-80px,80px,0) rotate(-45deg)
    }

.hamburger--emphatic-r .hamburger-inner {
    transition: background-color .125s ease-in .175s
}

    .hamburger--emphatic-r .hamburger-inner:before {
        left: 0;
        transition: transform .125s cubic-bezier(.6,.04,.98,.335),top .05s linear .125s,left .125s ease-in .175s
    }

    .hamburger--emphatic-r .hamburger-inner:after {
        top: 10px;
        right: 0;
        transition: transform .125s cubic-bezier(.6,.04,.98,.335),top .05s linear .125s,right .125s ease-in .175s
    }

.hamburger--emphatic-r.is-active .hamburger-inner {
    transition-delay: 0;
    transition-timing-function: ease-out;
    background-color: transparent
}

    .hamburger--emphatic-r.is-active .hamburger-inner:before {
        top: 80px;
        left: -80px;
        transition: left .125s ease-out,top .05s linear .125s,transform .125s cubic-bezier(.075,.82,.165,1) .175s;
        transform: translate3d(80px,-80px,0) rotate(-45deg)
    }

    .hamburger--emphatic-r.is-active .hamburger-inner:after {
        top: 80px;
        right: -80px;
        transition: right .125s ease-out,top .05s linear .125s,transform .125s cubic-bezier(.075,.82,.165,1) .175s;
        transform: translate3d(-80px,-80px,0) rotate(45deg)
    }

.hamburger--slider .hamburger-inner:before, .hamburger--slider-r .hamburger-inner:before {
    transition-timing-function: ease;
    transition-duration: .15s;
    transition-property: transform,opacity
}

.hamburger--slider .hamburger-inner {
    top: 2px
}

    .hamburger--slider .hamburger-inner:before {
        top: 10px
    }

    .hamburger--slider .hamburger-inner:after {
        top: 20px
    }

.hamburger--slider.is-active .hamburger-inner {
    transform: translate3d(0,10px,0) rotate(45deg)
}

    .hamburger--slider.is-active .hamburger-inner:before {
        transform: rotate(-45deg) translate3d(-5.71px,-6px,0);
        opacity: 0
    }

    .hamburger--slider.is-active .hamburger-inner:after {
        transform: translate3d(0,-20px,0) rotate(-90deg)
    }

.hamburger--slider-r .hamburger-inner {
    top: 2px
}

    .hamburger--slider-r .hamburger-inner:before {
        top: 10px
    }

    .hamburger--slider-r .hamburger-inner:after {
        top: 20px
    }

.hamburger--slider-r.is-active .hamburger-inner {
    transform: translate3d(0,10px,0) rotate(-45deg)
}

    .hamburger--slider-r.is-active .hamburger-inner:before {
        transform: rotate(45deg) translate3d(5.71px,-6px,0);
        opacity: 0
    }

    .hamburger--slider-r.is-active .hamburger-inner:after {
        transform: translate3d(0,-20px,0) rotate(90deg)
    }

.hamburger--spring .hamburger-inner {
    top: 2px;
    transition: background-color 0 linear .13s
}

    .hamburger--spring .hamburger-inner:before {
        top: 10px;
        transition: top .1s cubic-bezier(.33333,.66667,.66667,1) .2s,transform .13s cubic-bezier(.55,.055,.675,.19)
    }

    .hamburger--spring .hamburger-inner:after {
        top: 20px;
        transition: top .2s cubic-bezier(.33333,.66667,.66667,1) .2s,transform .13s cubic-bezier(.55,.055,.675,.19)
    }

.hamburger--spring.is-active .hamburger-inner {
    transition-delay: .22s;
    background-color: transparent
}

    .hamburger--spring.is-active .hamburger-inner:before {
        top: 0;
        transition: top .1s cubic-bezier(.33333,0,.66667,.33333) .15s,transform .13s cubic-bezier(.215,.61,.355,1) .22s;
        transform: translate3d(0,10px,0) rotate(45deg)
    }

    .hamburger--spring.is-active .hamburger-inner:after {
        top: 0;
        transition: top .2s cubic-bezier(.33333,0,.66667,.33333),transform .13s cubic-bezier(.215,.61,.355,1) .22s;
        transform: translate3d(0,10px,0) rotate(-45deg)
    }

.hamburger--spring-r .hamburger-inner {
    top: auto;
    bottom: 0;
    transition-delay: 0;
    transition-timing-function: cubic-bezier(.55,.055,.675,.19);
    transition-duration: .13s
}

    .hamburger--spring-r .hamburger-inner:after {
        top: -20px;
        transition: top .2s cubic-bezier(.33333,.66667,.66667,1) .2s,opacity 0 linear
    }

    .hamburger--spring-r .hamburger-inner:before {
        transition: top .1s cubic-bezier(.33333,.66667,.66667,1) .2s,transform .13s cubic-bezier(.55,.055,.675,.19)
    }

.hamburger--spring-r.is-active .hamburger-inner {
    transition-delay: .22s;
    transition-timing-function: cubic-bezier(.215,.61,.355,1);
    transform: translate3d(0,-10px,0) rotate(-45deg)
}

    .hamburger--spring-r.is-active .hamburger-inner:after {
        top: 0;
        transition: top .2s cubic-bezier(.33333,0,.66667,.33333),opacity 0 linear .22s;
        opacity: 0
    }

    .hamburger--spring-r.is-active .hamburger-inner:before {
        top: 0;
        transition: top .1s cubic-bezier(.33333,0,.66667,.33333) .15s,transform .13s cubic-bezier(.215,.61,.355,1) .22s;
        transform: rotate(90deg)
    }

.hamburger--stand .hamburger-inner {
    transition: transform 75ms cubic-bezier(.55,.055,.675,.19) .15s,background-color 0 linear 75ms
}

    .hamburger--stand .hamburger-inner:before {
        transition: top 75ms ease-in 75ms,transform 75ms cubic-bezier(.55,.055,.675,.19) 0
    }

    .hamburger--stand .hamburger-inner:after {
        transition: bottom 75ms ease-in 75ms,transform 75ms cubic-bezier(.55,.055,.675,.19) 0
    }

.hamburger--stand.is-active .hamburger-inner {
    transition: transform 75ms cubic-bezier(.215,.61,.355,1) 0s,background-color 0 linear .15s;
    transform: rotate(90deg);
    background-color: transparent
}

    .hamburger--stand.is-active .hamburger-inner:before {
        top: 0;
        transition: top 75ms ease-out .1s,transform 75ms cubic-bezier(.215,.61,.355,1) .15s;
        transform: rotate(-45deg)
    }

    .hamburger--stand.is-active .hamburger-inner:after {
        bottom: 0;
        transition: bottom 75ms ease-out .1s,transform 75ms cubic-bezier(.215,.61,.355,1) .15s;
        transform: rotate(45deg)
    }

.hamburger--stand-r .hamburger-inner {
    transition: transform 75ms cubic-bezier(.55,.055,.675,.19) .15s,background-color 0 linear 75ms
}

    .hamburger--stand-r .hamburger-inner:before {
        transition: top 75ms ease-in 75ms,transform 75ms cubic-bezier(.55,.055,.675,.19) 0
    }

    .hamburger--stand-r .hamburger-inner:after {
        transition: bottom 75ms ease-in 75ms,transform 75ms cubic-bezier(.55,.055,.675,.19) 0
    }

.hamburger--stand-r.is-active .hamburger-inner {
    transition: transform 75ms cubic-bezier(.215,.61,.355,1) 0s,background-color 0 linear .15s;
    transform: rotate(-90deg);
    background-color: transparent
}

    .hamburger--stand-r.is-active .hamburger-inner:before {
        top: 0;
        transition: top 75ms ease-out .1s,transform 75ms cubic-bezier(.215,.61,.355,1) .15s;
        transform: rotate(-45deg)
    }

    .hamburger--stand-r.is-active .hamburger-inner:after {
        bottom: 0;
        transition: bottom 75ms ease-out .1s,transform 75ms cubic-bezier(.215,.61,.355,1) .15s;
        transform: rotate(45deg)
    }

.hamburger--spin .hamburger-inner {
    transition-timing-function: cubic-bezier(.55,.055,.675,.19);
    transition-duration: .22s
}

    .hamburger--spin .hamburger-inner:before {
        transition: top .1s ease-in .25s,opacity .1s ease-in
    }

    .hamburger--spin .hamburger-inner:after {
        transition: bottom .1s ease-in .25s,transform .22s cubic-bezier(.55,.055,.675,.19)
    }

.hamburger--spin.is-active .hamburger-inner {
    transition-delay: .12s;
    transition-timing-function: cubic-bezier(.215,.61,.355,1);
    transform: rotate(225deg)
}

    .hamburger--spin.is-active .hamburger-inner:before {
        top: 0;
        transition: top .1s ease-out,opacity .1s ease-out .12s;
        opacity: 0
    }

    .hamburger--spin.is-active .hamburger-inner:after {
        bottom: 0;
        transition: bottom .1s ease-out,transform .22s cubic-bezier(.215,.61,.355,1) .12s;
        transform: rotate(-90deg)
    }

.hamburger--spin-r .hamburger-inner {
    transition-timing-function: cubic-bezier(.55,.055,.675,.19);
    transition-duration: .22s
}

    .hamburger--spin-r .hamburger-inner:before {
        transition: top .1s ease-in .25s,opacity .1s ease-in
    }

    .hamburger--spin-r .hamburger-inner:after {
        transition: bottom .1s ease-in .25s,transform .22s cubic-bezier(.55,.055,.675,.19)
    }

.hamburger--spin-r.is-active .hamburger-inner {
    transition-delay: .12s;
    transition-timing-function: cubic-bezier(.215,.61,.355,1);
    transform: rotate(-225deg)
}

    .hamburger--spin-r.is-active .hamburger-inner:before {
        top: 0;
        transition: top .1s ease-out,opacity .1s ease-out .12s;
        opacity: 0
    }

    .hamburger--spin-r.is-active .hamburger-inner:after {
        bottom: 0;
        transition: bottom .1s ease-out,transform .22s cubic-bezier(.215,.61,.355,1) .12s;
        transform: rotate(90deg)
    }

.hamburger--squeeze .hamburger-inner {
    transition-timing-function: cubic-bezier(.55,.055,.675,.19);
    transition-duration: 75ms
}

    .hamburger--squeeze .hamburger-inner:before {
        transition: top 75ms ease .12s,opacity 75ms ease
    }

    .hamburger--squeeze .hamburger-inner:after {
        transition: bottom 75ms ease .12s,transform 75ms cubic-bezier(.55,.055,.675,.19)
    }

.hamburger--squeeze.is-active .hamburger-inner {
    transition-delay: .12s;
    transition-timing-function: cubic-bezier(.215,.61,.355,1);
    transform: rotate(45deg)
}

    .hamburger--squeeze.is-active .hamburger-inner:before {
        top: 0;
        transition: top 75ms ease,opacity 75ms ease .12s;
        opacity: 0
    }

    .hamburger--squeeze.is-active .hamburger-inner:after {
        bottom: 0;
        transition: bottom 75ms ease,transform 75ms cubic-bezier(.215,.61,.355,1) .12s;
        transform: rotate(-90deg)
    }

.hamburger--vortex .hamburger-inner {
    transition-timing-function: cubic-bezier(.19,1,.22,1);
    transition-duration: .2s
}

    .hamburger--vortex .hamburger-inner:after, .hamburger--vortex .hamburger-inner:before {
        transition-delay: .1s;
        transition-timing-function: linear;
        transition-duration: 0
    }

    .hamburger--vortex .hamburger-inner:before {
        transition-property: top,opacity
    }

    .hamburger--vortex .hamburger-inner:after {
        transition-property: bottom,transform
    }

.hamburger--vortex.is-active .hamburger-inner {
    transition-timing-function: cubic-bezier(.19,1,.22,1);
    transform: rotate(765deg)
}

    .hamburger--vortex.is-active .hamburger-inner:after, .hamburger--vortex.is-active .hamburger-inner:before {
        transition-delay: 0
    }

    .hamburger--vortex.is-active .hamburger-inner:before {
        top: 0;
        opacity: 0
    }

    .hamburger--vortex.is-active .hamburger-inner:after {
        bottom: 0;
        transform: rotate(90deg)
    }

.hamburger--vortex-r .hamburger-inner {
    transition-timing-function: cubic-bezier(.19,1,.22,1);
    transition-duration: .2s
}

    .hamburger--vortex-r .hamburger-inner:after, .hamburger--vortex-r .hamburger-inner:before {
        transition-delay: .1s;
        transition-timing-function: linear;
        transition-duration: 0
    }

    .hamburger--vortex-r .hamburger-inner:before {
        transition-property: top,opacity
    }

    .hamburger--vortex-r .hamburger-inner:after {
        transition-property: bottom,transform
    }

.hamburger--vortex-r.is-active .hamburger-inner {
    transition-timing-function: cubic-bezier(.19,1,.22,1);
    transform: rotate(-765deg)
}

    .hamburger--vortex-r.is-active .hamburger-inner:after, .hamburger--vortex-r.is-active .hamburger-inner:before {
        transition-delay: 0
    }

    .hamburger--vortex-r.is-active .hamburger-inner:before {
        top: 0;
        opacity: 0
    }

    .hamburger--vortex-r.is-active .hamburger-inner:after {
        bottom: 0;
        transform: rotate(-90deg)
    }

body {
    margin: 0;
    padding: 0;
    font: var(--default-tekst);
    color: #000;
}

.hamburger {
    top: 50px;
    right: 50px;
    z-index: 99999;
}

.lijnBackground {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: calc(100% - var(--default-side-margin));
    height: calc((var(--background-lijn-height) * 5) + (5 * 16px))
}

    .lijnBackground.vertical {
        position: absolute;
        top: 0;
        bottom: 0;
        left: var(--default-side-margin);
        height: 100%;
        width: calc((var(--background-lijn-height) * 5) + (5 * 16px));
        display: flex;
        align-items: flex-end;
        margin: 0;
    }

    .lijnBackground .lijn {
        height: 92px;
        border-radius: 50px;
        width: 100%;
        background: var(--blauw-licht);
        margin: 8px 0;
    }

        .lijnBackground .lijn:nth-of-type(1) {
            width: 70%;
        }

        .lijnBackground .lijn:nth-of-type(2) {
            width: 60%;
        }

        .lijnBackground .lijn:nth-of-type(3) {
            width: 80%;
        }

        .lijnBackground .lijn:nth-of-type(4) {
            width: 80%;
        }

        .lijnBackground .lijn:nth-of-type(5) {
            width: 100%;
        }

    .lijnBackground.vertical .lijn {
        height: 100%;
        border-radius: 50px;
        width: 92px;
        background: var(--blauw-licht);
        margin: 0 8px;
    }

        .lijnBackground.vertical .lijn:nth-of-type(1) {
            height: 70%;
        }

        .lijnBackground.vertical .lijn:nth-of-type(2) {
            height: 60%;
        }

        .lijnBackground.vertical .lijn:nth-of-type(3) {
            height: 80%;
        }

        .lijnBackground.vertical .lijn:nth-of-type(4) {
            height: 80%;
        }

        .lijnBackground.vertical .lijn:nth-of-type(5) {
            height: 100%;
        }

.topBar {
    display: flex;
    align-items: center;
    align-content: center;
    padding: 20px 0px 0 20px;
    box-sizing: border-box;
}

    .topBar .logo {
        display: block;
        width: var(--logo-width);
        height: var(--logo-height);
    }

    .topBar .snelNaar {
        margin: 0 auto;
    }

        .topBar .snelNaar a {
            margin: 0 10px;
        }

.btn {
    position: relative;
    display: inline-flex;
    align-content: center;
    align-items: center;
    height: var(--button-height);
    padding: 0 var(--button-padding);
    box-sizing: border-box;
    font: var(--button) !important;
    text-decoration: none;
    transition: ease-in-out all 0.3s;
    border-radius: calc(var(--button-height) / 2);
}

    .btn.icon-right {
        padding-right: 40px;
    }

        .btn.icon-right:before {
            position: absolute;
            right: 20px;
            font-size: 11px;
        }

    .btn.transparant {
        padding: 0;
        color: var(--blauw-donker);
    }

        .btn.transparant:hover {
            color: var(--blauw-hover);
        }

        .btn.transparant.icon-right:before {
            right: -20px;
        }

    .btn.zwart {
        background: #000;
        color: #FFF;
    }

        .btn.zwart:hover {
            background: var(--blauw-hover);
            color: #FFF;
        }

    .btn.blauw {
        background: var(--blauw-donker);
        color: #FFF;
    }

        .btn.blauw:hover {
            background: var(--blauw-hover);
            color: #FFF;
        }

    .btn.wit {
        background: #FFF;
        color: #000;
    }

        .btn.wit:hover {
            background: var(--blauw-hover);
            color: #FFF;
        }

nav {
    position: fixed;
    top: 0;
    left: 0;
    height: auto;
    max-height: 0;
    width: 100%;
    overflow: hidden;
    box-sizing: border-box;
    z-index: 9999;
    background: var(--blauw-donker);
    transition: max-height 0.3s ease;
}

.hamburger.is-active {
    --hamburger-color: #FFF;
    --hamburger-color-hover: #FFF;
    --hamburger-color--hover-sticky: #FFF;
    --hamburger-color-sticky: #FFF;
    --hamburger-color-hover: #FFF;
}

nav.is-active {
    transition: ease-in all 0.5s;
    max-height: 100vh;
}

nav img {
    margin: 20px 0 0 20px;
    display: block;
    width: var(--logo-width);
    height: var(--logo-height);
}

nav ul {
    list-style: none;
    width: var(--col8px);
    margin: 0 auto 130px;
}

    nav ul li {
        margin: 8px 0;
        width: 50%;
        min-width: fit-content;
        transition-delay: 0.2s;
        transition: ease-in all 0.5s;
    }

        nav ul li a {
            color: #000;
            text-decoration: none;
            background: var(--blauw-licht);
            padding: 0 30px;
            border-radius: 25px;
            height: 50px;
            display: inline-flex;
            align-content: center;
            align-items: center;
            font: var(--nav);
            width: 100%;
        }

        nav ul li:hover {
            width: 100% !important;
        }

nav .is-active ul li:nth-child(1) {
    width: 80%;
}

nav.is-active ul li:nth-child(2) {
    width: 70%;
}

nav.is-active ul li:nth-child(3) {
    width: 90%;
}

nav.is-active ul li:nth-child(4) {
    width: 95%;
}

nav.is-active ul li:nth-child(5) {
    width: 50%;
}

nav.is-active ul li:nth-child(6) {
    width: 70%;
}

nav.is-active ul li:nth-child(7) {
    width: 60%;
}

h1, h2, h3, h4 {
    margin: 0 0 50px;
    padding: 0;
    font: var(--h1);
}

h2 {
    font: var(--h2);
    margin: 0 0 20px;
}

.tekstGecentreerdBlok h2, .socialShare h2 {
    font: var(--h4);
    margin: 20px 0 0;
}

h3 {
    font: var(--h3);
}

h4 {
    font: var(--h4);
}

header {
    margin: 180px 0 0;
}

    header .foto {
        display: block;
        padding: 40px 0 0 50px;
        box-sizing: border-box;
    }

        header .foto img {
            width: 100%;
            aspect-ratio: 1;
        }

    header .tekst strong {
        position: relative;
        font-weight: normal;
        display: inline-block;
    }

    header .tekst .btnContainer {
        display: flex;
        margin: 50px 0 0;
    }

        header .tekst .btnContainer .buttonContainer {
            margin: 0 20px 0 10px;
        }

            header .tekst .btnContainer .buttonContainer .hoofdIcoon {
                font-size: 60px;
                color: var(--blauw-donker);
                display: block;
                margin: 0 0 10px 15px;
            }

    header.backgroundColor:before {
        position: absolute;
        top: -100px;
        right: 15px;
        width: calc(var(--wrapper-width) + var(--default-side-margin) + (var(--default-side-margin) / 2));
        height: 460px;
        background: var(--blauw-licht);
        content: '';
        border-radius: 50px;
        z-index: -2;
    }

    header .svgContainer {
        position: absolute;
        bottom: -120px;
        right: 60px;
        width: calc(var(--col2px) + var(--default-side-margin));
        z-index: -1;
    }

    header .tekst strong:after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 3px;
        width: 100%;
        height: 14px;
        background: var(--geel);
        border-radius: 7px;
        z-index: -1;
    }

.logoContainer {
    margin: 120px 0;
}

    .logoContainer .logoSlider {
        display: grid;
        grid-template-columns: repeat(7, 1fr);
        gap: 20px;
        align-items: center;
    }

        .logoContainer .logoSlider img {
            width: 100%;
            height: auto;
            object-fit: contain;
            max-height: 80px;
        }

.col3Container {
    margin: 150px 0 0;
}

    .col3Container .wrapper, .kolom3Grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

        .col3Container .wrapper .col, .kolom3Grid .col {
            font: var(--default-tekst-klein);
            padding: 60px 40px 60px 70px;
            background: var(--blauw-licht);
        }

            .col3Container .wrapper .col h2 {
                font: var(--h4);
            }

            .col3Container .wrapper .col .btnContainer {
                margin: 70px 0 0;
            }

.herkenning {
    margin: 170px 0 0;
}

    .herkenning .getallenContainer {
        width: calc(100% - var(--default-side-margin) - 20px);
        position: relative;
        top: 0;
        margin-left: auto;
        margin-right: 20px;
        background: var(--blauw-donker);
        color: rgba(255, 255, 255, 0.07);
        font: var(--getallen);
        border-radius: 45px;
        padding: 0 0 0 40%;
        box-sizing: border-box;
        overflow: hidden;
    }

    .herkenning .wrapper {
        position: absolute;
        height: 100%;
        top: 0;
        left: 0;
        right: 0;
        justify-content: center;
        align-content: center;
        align-items: center;
        color: #FFF;
    }

        .herkenning .wrapper strong {
            font: var(--default-tekst-strong);
        }

.tekstFotoBlok {
    margin: 120px 0 0;
}

    .tekstFotoBlok .tekst {
        margin: 40px 0 0;
        padding: 0 var(--col1) 0 0;
        box-sizing: border-box;
    }

        .tekstFotoBlok .tekst h2 {
            font: var(--h3);
        }

    .tekstFotoBlok .foto {
        position: relative;
        padding: 0 var(--col1) 0 0;
        margin-left: calc(1px - (var(--col1) / 2));
        box-sizing: border-box;
    }

        .circleContainer {
            position: relative;
            width: 100%;
            border-radius: 100%;
            aspect-ratio: 1;
        }

            .circleContainer .lijn{
                position: absolute;
                top: calc(50% - 12px);
                left: 50%;
                width: 50%;
                height: 24px;
                background: #FFFFFF;
                z-index: 9999;
                transition: ease-in-out all 0.5s;
                transform-origin: left;
                transform: rotate(-90deg);
            }
            .circleContainer.active .lijn2 {
                transform: rotate(-35deg);
            }
            .circleContainer.active .lijn3 {
                transform: rotate(245deg);
            }
            .circleContainer.active .lijn4 {
                transform: rotate(0deg);
            }
            .circleContainer.active .lijn5 {
                transform: rotate(45deg);
            }
            .circleContainer.active .lijn6 {
                transform: rotate(105deg);
            }
            .circleContainer.active .lijn7 {
                transform: rotate(185deg);
            }
.col2Container .circleContainer{
    height:405px;
    aspect-ratio:1;
    width:auto;
}
    .col2Container .circleContainer .lijn {
        height: 6px;
        top: calc(50% - 3px);
    }
    .tekstFotoBlok .foto img, .col2Container .circleContainer img {
    width: 100%;
    border-radius: 100%;
    aspect-ratio: 1;
    display: block;
}

    .tekstFotoBlok.gespiegeld .tekst {
        margin: 40px 0 0;
        padding: 0 0 0 var(--col1);
        box-sizing: border-box;
        order: 1;
    }

    .tekstFotoBlok .foto {
        padding: 0 0 0 var(--col1);
        margin-right: calc(1px - (var(--col1) / 2));
        box-sizing: border-box;
        order: 0;
    }

.overInveneo {
    margin:150px 0 0;
    padding: 140px 0;
}

    .overInveneo.overOnsPagina {
        margin: 150px 0 0;
    }

    .overInveneo:after {
        position: absolute;
        top: 0;
        left: calc(var(--default-side-margin-viewport) / 2);
        width: calc(50% - (var(--col1) / 2));
        content: "";
        height: 100%;
        background: var(--blauw-licht);
        border-radius: 45px;
        z-index: -1;
    }

.kolom3Grid {
    margin: 50px auto 0;
}

.overInveneo h2 {
    font: var(--h3);
}

.kolom3Grid h3 {
    font: var(--h4);
    margin: 0 0 20px;
}

.kolom3Grid .col {
    background: none;
    border: 1px solid var(--blauw-donker);
}

    .kolom3Grid .col span {
        font-size: 70px;
        display: block;
        text-align: center;
        width: 100%;
        margin: 0 0 40px;
    }

.overInveneo .col4 {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.blogOverzicht {
    margin: 140px 0 0;
    padding: 160px 0 0;
}

    .blogOverzicht h2 {
        position: absolute;
        text-align: center;
        width: 100%;
        top: 200px;
        font-size: 460px;
        color: var(--blauw-licht);
        z-index: -1;
    }

    .blogOverzicht .wrapper {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: var(--col1px);
        padding: 0 80px;
        box-sizing: border-box;
    }

footer {
    margin: 100px auto 0;
    background: var(--blauw-donker);
    color: #FFF;
    padding: 100px 0 120px;
    width: calc(100% - 60px);
    border-radius: 50px;
}

    footer img {
        height: var(--logo-footer-height);
        width: var(--logo-footer-width);
        margin-left: -74px;
    }

    footer .col10 {
        padding: 0 var(--col3) 0 0;
        box-sizing: border-box;
    }

    footer .footerTekst {
        width: 100%;
    }

    footer .footerCols {
        font: var(--default-tekst-klein);
        margin: 100px 0 0;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 100px;
        width: 100%;
    }

        footer .footerCols .btn {
            margin: 40px 0 0;
        }

    footer .socials {
    }

        footer .socials h4 {
            font: var(--default-tekst-klein-strong);
        }

    footer .col2 {
        margin-top: auto;
    }

    footer .voorwaarden, footer .adresGegevens {
        font: var(--default-tekst-klein);
        margin: 100px 0 0;
    }

        footer .voorwaarden a, footer .adresGegevens a {
            color: #FFF;
            text-decoration: underline;
            text-decoration-color: transparent;
            transition: ease-in-out all 0.5s;
        }

            footer .voorwaarden a:hover, footer .adresGegevens a:hover {
                text-decoration: underline;
                text-decoration-color: #FFF;
            }

        footer .adresGegevens .btnContainer {
            margin: 50px 0 0;
        }

.realisatie {
    padding: 15px 0;
    font: var(--credits);
}

.centerBlok, .quoteContainer {
    margin: 170px 0 0;
}

    .centerBlok.metIcoon .icon {
        font-size: var(--icon-size);
    }

.quoteContainer {
    display: flex;
    align-content: center;
    align-items: center;
    font: var(--quote);
    color: var(--blauw-donker);
    min-height: calc((var(--background-lijn-height) * 5) + 100px)
}

    .quoteContainer .quotes {
        display: block;
    }

    .quoteContainer span.naam {
        color: #000;
        font: var(--default-tekst);
        margin-top: 10px;
        display: block;
    }

.col2Container .wrapper {
    margin: 150px auto 0;
    gap: 100px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding: 0 0 120px;
}

    .col2Container .wrapper .col {
        padding: 0 40px;
    }

.col2Container:before {
    position: absolute;
    top: 240px;
    right: 15px;
    width: calc(var(--wrapper-width) + var(--default-side-margin));
    height: calc(100% - 240px);
    background: var(--blauw-licht);
    content: '';
    border-radius: 50px;
    z-index: -2;
}
.col2Container .svgContainer{
    margin:0 0 50px;
}
.ctaContainer {
    margin: 150px 0 0;
    padding: 130px 0 170px;
    color: #FFF;
}

    .ctaContainer:before {
        position: absolute;
        top: 0;
        left: 15px;
        width: calc(var(--wrapper-width) + var(--default-side-margin));
        height: 100%;
        background: var(--blauw-donker);
        content: '';
        border-radius: 50px;
        z-index: -2;
    }

    .ctaContainer .backgroundTekst {
        position: absolute;
        top: 0;
        height: 100%;
        display: flex;
        align-content: center;
        align-items: center;
        width: 100%;
        justify-content: center;
        font: 400px "CocoSharpXL-Extrabold", sans-serif;
        color: rgba(255, 255, 255, 0.07);
    }

    .ctaContainer .col4 {
        padding: 0 0 0 var(--col2);
        box-sizing: border-box;
        font-size: 170px !important;
    }

    .ctaContainer .icon-raket {
        display: inline-block;
        animation: launch 3s linear infinite;
        will-change: transform, opacity;
    }

    .ctaContainer .col8 {
        padding: 0 var(--col2) 0 0;
        box-sizing: border-box;
    }

        .ctaContainer .col8 .btnContainer {
            margin: 50px 0 0;
        }

.blogOverzicht.blogPagina {
    margin: 140px 0 140px;
    padding: 0;
}

.blogOverzicht .blogItem .btnContainer {
    margin: 20px 0 0;
}

.blogOverzicht .wrapper {
    margin-top: 30px;
    padding: 50px 70px;
    box-sizing: border-box
}

    .blogOverzicht .wrapper:nth-of-type(even):before {
        position: absolute;
        top: 0;
        right: calc(1px - 1px - var(--default-side-margin-viewport) + 15px);
        width: calc(var(--wrapper-width) + var(--default-side-margin-viewport));
        height: 100%;
        background: var(--blauw-licht);
        content: '';
        border-radius: 50px;
        z-index: -2;
    }

@keyframes launch {
    0% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 1;
    }
    /* shake + start */
    10% {
        transform: translate(-3px, -20px) rotate(-2deg);
    }

    20% {
        transform: translate(3px, -60px) rotate(2deg);
    }
    /* versnellen */
    40% {
        transform: translate(-2px, -180px) rotate(-1deg);
    }

    60% {
        transform: translate(0, -350px) rotate(0deg);
    }
    /* uit beeld + verdwijnen */
    90% {
        transform: translate(0, -700px);
        opacity: 0;
    }
    /* reset (onzichtbaar terug naar start) */
    100% {
        transform: translate(0, 0);
        opacity: 0;
    }
}

.tekstGecentreerdBlok {
    margin: 200px 0 0;
}

    .tekstGecentreerdBlok .btnContainer {
        margin: 50px 0 0;
    }

        .tekstGecentreerdBlok .btnContainer .col12 {
            margin: 0 0 20px;
        }

.fotoBlok {
    margin: 50px 0;
    padding: 100px 0;
}

    .fotoBlok:before {
        position: absolute;
        top: 0;
        right: 15px;
        width: calc(var(--wrapper-width) + var(--default-side-margin-viewport) - var(--col1));
        height: 100%;
        background: var(--blauw-licht);
        content: '';
        border-radius: 50px;
        z-index: -2;
    }

    .fotoBlok img {
        width: 100%;
        display: block;
        margin: 0 0 20px;
    }

.socialShare {
    margin: 100px 0 0;
}

    .socialShare .col7 {
        display: flex;
        align-content: center;
        align-items: center;
    }

    .socialShare h2 {
        margin: 0 30px 0 0;
    }

.socialIcon {
    font-size: 20px;
    color: #FFF;
    height: 42px;
    aspect-ratio: 1;
    background: #000;
    display: inline-flex;
    align-content: center;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    text-decoration: none;
    margin: 0 10px 0 0;
    transition: ease-in-out all 0.5s;
}

    .socialIcon:hover {
        background: var(--blauw-hover);
    }

.formContainer {
    margin: 200px 0 0;
}

.formulier label {
    width: var(--col2);
}

.adresGegevens {
    padding: 0 var(--col1);
    box-sizing: border-box;
    font: var(--default-tekst-klein);
}
img.animatedImage {
    border-radius: 0;
    object-fit:cover;
    width:100%;
    height:100%;
}
.animatedPathVertical path {
    animation: graph 8s infinite ease-in-out;
}
.animatedPathHorizontal path {
    animation: graphHorizontal 8s infinite ease-in-out;
}
@keyframes graphHorizontal {
    0%, 10% {
        d: path("M353.251,154.4c12.087,0,21.885,9.798,21.885,21.885h0c0,12.087-9.798,21.885-21.885,21.885H22.297c-12.087,0-21.885-9.798-21.885-21.885H.412c0-12.087,9.798-21.885,21.885-21.885h330.954ZM521.591,227.968h0c0-12.087-9.798-21.885-21.885-21.885H22.297c-12.087,0-21.885,9.798-21.885,21.885H.412c0,12.087,9.798,21.885,21.885,21.885h477.409c12.087,0,21.885-9.798,21.885-21.885ZM508.491,279.652h0c0-12.087-9.798-21.885-21.885-21.885H22.297c-12.087,0-21.885,9.798-21.885,21.885H.412c0,12.087,9.798,21.885,21.885,21.885h464.309c12.087,0,21.885-9.798,21.885-21.885ZM414.584.096c12.087,0,21.885,9.798,21.885,21.885h0c0,12.087-9.798,21.885-21.885,21.885H22.297c-12.087,0-21.885-9.798-21.885-21.885H.412c0-12.087,9.798-21.885,21.885-21.885h392.287ZM490.679,73.664h0c0-12.087-9.798-21.885-21.885-21.885H22.297c-12.087,0-21.885,9.798-21.885,21.885H.412c0,12.087,9.798,21.885,21.885,21.885h446.496c12.087,0,21.885-9.798,21.885-21.885ZM477.579,125.348h0c0-12.087-9.798-21.885-21.885-21.885H22.297c-12.087,0-21.885,9.798-21.885,21.885H.412c0,12.087,9.798,21.885,21.885,21.885h433.396c12.087,0,21.885-9.798,21.885-21.885ZM534.408,331.336h0c0-12.087-9.798-21.885-21.885-21.885H22.297c-12.087,0-21.885,9.798-21.885,21.885H.412c0,12.087,9.798,21.885,21.885,21.885h490.226c12.087,0,21.885-9.798,21.885-21.885ZM549.588,383.019h0c0-12.087-9.798-21.885-21.885-21.885H22.297c-12.087,0-21.885,9.798-21.885,21.885H.412c0,12.087,9.798,21.885,21.885,21.885h505.405c12.087,0,21.885-9.798,21.885-21.885Z");
    }

    25%, 35% {
        d: path("M433.282,154.4c12.087,0,21.885,9.798,21.885,21.885h0c0,12.087-9.798,21.885-21.885,21.885H22.297c-12.087,0-21.885-9.798-21.885-21.885H.412c0-12.087,9.798-21.885,21.885-21.885h410.984ZM410,227.968h0c0-12.087-9.798-21.885-21.885-21.885H22.297c-12.087,0-21.885,9.798-21.885,21.885H.412c0,12.087,9.798,21.885,21.885,21.885h365.818c12.087,0,21.885-9.798,21.885-21.885ZM410,279.652h0c0-12.087-9.798-21.885-21.885-21.885H22.297c-12.087,0-21.885,9.798-21.885,21.885H.412c0,12.087,9.798,21.885,21.885,21.885h365.818c12.087,0,21.885-9.798,21.885-21.885ZM261.002.096c12.087,0,21.885,9.798,21.885,21.885h0c0,12.087-9.798,21.885-21.885,21.885H22.297c-12.087,0-21.885-9.798-21.885-21.885H.412c0-12.087,9.798-21.885,21.885-21.885h238.704ZM375.136,73.664h0c0-12.087-9.798-21.885-21.885-21.885H22.297c-12.087,0-21.885,9.798-21.885,21.885H.412c0,12.087,9.798,21.885,21.885,21.885h330.954c12.087,0,21.885-9.798,21.885-21.885ZM515.833,125.348h0c0-12.087-9.798-21.885-21.885-21.885H22.297c-12.087,0-21.885,9.798-21.885,21.885H.412c0,12.087,9.798,21.885,21.885,21.885h471.651c12.087,0,21.885-9.798,21.885-21.885ZM463,331.336h0c0-12.087-9.798-21.885-21.885-21.885H22.297c-12.087,0-21.885,9.798-21.885,21.885H.412c0,12.087,9.798,21.885,21.885,21.885h418.818c12.087,0,21.885-9.798,21.885-21.885ZM380,383.019h0c0-12.087-9.798-21.885-21.885-21.885H22.297c-12.087,0-21.885,9.798-21.885,21.885H.412c0,12.087,9.798,21.885,21.885,21.885h335.818c12.087,0,21.885-9.798,21.885-21.885Z");
    }

    50%, 60% {
        d: path("M314.448,154.4c12.087,0,21.885,9.798,21.885,21.885h0c0,12.087-9.798,21.885-21.885,21.885H22.297c-12.087,0-21.885-9.798-21.885-21.885H.412c0-12.087,9.798-21.885,21.885-21.885h292.151ZM466.833,227.968h0c0-12.087-9.798-21.885-21.885-21.885H22.297c-12.087,0-21.885,9.798-21.885,21.885H.412c0,12.087,9.798,21.885,21.885,21.885h422.651c12.087,0,21.885-9.798,21.885-21.885ZM512.333,279.652h0c0-12.087-9.798-21.885-21.885-21.885H22.297c-12.087,0-21.885,9.798-21.885,21.885H.412c0,12.087,9.798,21.885,21.885,21.885h468.151c12.087,0,21.885-9.798,21.885-21.885ZM187.774.096c12.087,0,21.885,9.798,21.885,21.885h0c0,12.087-9.798,21.885-21.885,21.885H22.297c-12.087,0-21.885-9.798-21.885-21.885H.412c0-12.087,9.798-21.885,21.885-21.885h165.477ZM143.333,73.664h0c0-12.087-9.798-21.885-21.885-21.885H22.297c-12.087,0-21.885,9.798-21.885,21.885H.412c0,12.087,9.798,21.885,21.885,21.885h99.151c12.087,0,21.885-9.798,21.885-21.885ZM269.065,125.348h0c0-12.087-9.798-21.885-21.885-21.885H22.297c-12.087,0-21.885,9.798-21.885,21.885H.412c0,12.087,9.798,21.885,21.885,21.885h224.883c12.087,0,21.885-9.798,21.885-21.885ZM512.333,331.336h0c0-12.087-9.798-21.885-21.885-21.885H22.297c-12.087,0-21.885,9.798-21.885,21.885H.412c0,12.087,9.798,21.885,21.885,21.885h468.151c12.087,0,21.885-9.798,21.885-21.885ZM466.833,383.019h0c0-12.087-9.798-21.885-21.885-21.885H22.297c-12.087,0-21.885,9.798-21.885,21.885H.412c0,12.087,9.798,21.885,21.885,21.885h422.651c12.087,0,21.885-9.798,21.885-21.885Z");
    }

    75%, 85% {
        d: path("M474.115,154.4c12.087,0,21.885,9.798,21.885,21.885h0c0,12.087-9.798,21.885-21.885,21.885H22.297c-12.087,0-21.885-9.798-21.885-21.885H.412c0-12.087,9.798-21.885,21.885-21.885h451.818ZM401.5,227.968h0c0-12.087-9.798-21.885-21.885-21.885H22.297c-12.087,0-21.885,9.798-21.885,21.885H.412c0,12.087,9.798,21.885,21.885,21.885h357.318c12.087,0,21.885-9.798,21.885-21.885ZM368.5,279.652h0c0-12.087-9.798-21.885-21.885-21.885H22.297c-12.087,0-21.885,9.798-21.885,21.885H.412c0,12.087,9.798,21.885,21.885,21.885h324.318c12.087,0,21.885-9.798,21.885-21.885ZM379.615.096c12.087,0,21.885,9.798,21.885,21.885h0c0,12.087-9.798,21.885-21.885,21.885H22.297c-12.087,0-21.885-9.798-21.885-21.885H.412c0-12.087,9.798-21.885,21.885-21.885h357.318ZM445,73.664h0c0-12.087-9.798-21.885-21.885-21.885H22.297c-12.087,0-21.885,9.798-21.885,21.885H.412c0,12.087,9.798,21.885,21.885,21.885h400.818c12.087,0,21.885-9.798,21.885-21.885ZM445,125.348h0c0-12.087-9.798-21.885-21.885-21.885H22.297c-12.087,0-21.885,9.798-21.885,21.885H.412c0,12.087,9.798,21.885,21.885,21.885h400.818c12.087,0,21.885-9.798,21.885-21.885ZM428.5,331.336h0c0-12.087-9.798-21.885-21.885-21.885H22.297c-12.087,0-21.885,9.798-21.885,21.885H.412c0,12.087,9.798,21.885,21.885,21.885h384.318c12.087,0,21.885-9.798,21.885-21.885ZM474.167,383.019h0c0-12.087-9.798-21.885-21.885-21.885H22.297c-12.087,0-21.885,9.798-21.885,21.885H.412c0,12.087,9.798,21.885,21.885,21.885h429.984c12.087,0,21.885-9.798,21.885-21.885Z");
    }

    100% {
        d: path("M353.251,154.4c12.087,0,21.885,9.798,21.885,21.885h0c0,12.087-9.798,21.885-21.885,21.885H22.297c-12.087,0-21.885-9.798-21.885-21.885H.412c0-12.087,9.798-21.885,21.885-21.885h330.954ZM521.591,227.968h0c0-12.087-9.798-21.885-21.885-21.885H22.297c-12.087,0-21.885,9.798-21.885,21.885H.412c0,12.087,9.798,21.885,21.885,21.885h477.409c12.087,0,21.885-9.798,21.885-21.885ZM508.491,279.652h0c0-12.087-9.798-21.885-21.885-21.885H22.297c-12.087,0-21.885,9.798-21.885,21.885H.412c0,12.087,9.798,21.885,21.885,21.885h464.309c12.087,0,21.885-9.798,21.885-21.885ZM414.584.096c12.087,0,21.885,9.798,21.885,21.885h0c0,12.087-9.798,21.885-21.885,21.885H22.297c-12.087,0-21.885-9.798-21.885-21.885H.412c0-12.087,9.798-21.885,21.885-21.885h392.287ZM490.679,73.664h0c0-12.087-9.798-21.885-21.885-21.885H22.297c-12.087,0-21.885,9.798-21.885,21.885H.412c0,12.087,9.798,21.885,21.885,21.885h446.496c12.087,0,21.885-9.798,21.885-21.885ZM477.579,125.348h0c0-12.087-9.798-21.885-21.885-21.885H22.297c-12.087,0-21.885,9.798-21.885,21.885H.412c0,12.087,9.798,21.885,21.885,21.885h433.396c12.087,0,21.885-9.798,21.885-21.885ZM534.408,331.336h0c0-12.087-9.798-21.885-21.885-21.885H22.297c-12.087,0-21.885,9.798-21.885,21.885H.412c0,12.087,9.798,21.885,21.885,21.885h490.226c12.087,0,21.885-9.798,21.885-21.885ZM549.588,383.019h0c0-12.087-9.798-21.885-21.885-21.885H22.297c-12.087,0-21.885,9.798-21.885,21.885H.412c0,12.087,9.798,21.885,21.885,21.885h505.405c12.087,0,21.885-9.798,21.885-21.885Z");
    }
}
@keyframes graph {
    0%, 10% {
        d: path("M92.73,286.039v220.621c0,25.48-20.655,46.135-46.135,46.135h0c-25.48,0-46.135-20.655-46.135-46.135v-220.621c0-25.48,20.655-46.135,46.135-46.135h0c25.48,0,46.135,20.655,46.135,46.135ZM155.548,62.18h0c-25.48,0-46.135,20.655-46.135,46.135v398.346c0,25.48,20.655,46.135,46.135,46.135h0c25.48,0,46.135-20.655,46.135-46.135V108.315c0-25.48-20.655-46.135-46.135-46.135ZM264.5,89.795h0c-25.48,0-46.135,20.655-46.135,46.135v370.73c0,25.48,20.655,46.135,46.135,46.135h0c25.48,0,46.135-20.655,46.135-46.135V135.931c0-25.48-20.655-46.135-46.135-46.135ZM373.452,35.161h0c-25.48,0-46.135,20.655-46.135,46.135v425.365c0,25.48,20.655,46.135,46.135,46.135h0c25.48,0,46.135-20.655,46.135-46.135V81.296c0-25.48-20.655-46.135-46.135-46.135ZM482.405,3.161h0c-25.48,0-46.135,20.655-46.135,46.135v457.365c0,25.48,20.655,46.135,46.135,46.135h0c25.48,0,46.135-20.655,46.135-46.135V49.296c0-25.48-20.655-46.135-46.135-46.135Z");
    }

    25%, 35% {
        d: path("M92.73,70.394v436.267c0,25.48-20.655,46.135-46.135,46.135h0c-25.48,0-46.135-20.655-46.135-46.135V70.394c0-25.48,20.655-46.135,46.135-46.135h0c25.48,0,46.135,20.655,46.135,46.135ZM155.548,120.564h0c-25.48,0-46.135,20.655-46.135,46.135v339.961c0,25.48,20.655,46.135,46.135,46.135h0c25.48,0,46.135-20.655,46.135-46.135V166.699c0-25.48-20.655-46.135-46.135-46.135ZM264.5,213.564h0c-25.48,0-46.135,20.655-46.135,46.135v246.961c0,25.48,20.655,46.135,46.135,46.135h0c25.48,0,46.135-20.655,46.135-46.135v-246.961c0-25.48-20.655-46.135-46.135-46.135ZM373.452,149.064h0c-25.48,0-46.135,20.655-46.135,46.135v311.461c0,25.48,20.655,46.135,46.135,46.135h0c25.48,0,46.135-20.655,46.135-46.135V195.199c0-25.48-20.655-46.135-46.135-46.135ZM482.405,97.496h0c-25.48,0-46.135,20.655-46.135,46.135v363.029c0,25.48,20.655,46.135,46.135,46.135h0c25.48,0,46.135-20.655,46.135-46.135V143.632c0-25.48-20.655-46.135-46.135-46.135Z");
    }

    50%, 60% {
        d: path("M92.73,259.699v246.961c0,25.48-20.655,46.135-46.135,46.135h0c-25.48,0-46.135-20.655-46.135-46.135v-246.961c0-25.48,20.655-46.135,46.135-46.135h0c25.48,0,46.135,20.655,46.135,46.135ZM155.548,149.064h0c-25.48,0-46.135,20.655-46.135,46.135v311.461c0,25.48,20.655,46.135,46.135,46.135h0c25.48,0,46.135-20.655,46.135-46.135V195.199c0-25.48-20.655-46.135-46.135-46.135ZM264.5,51.361h0c-25.48,0-46.135,20.655-46.135,46.135v409.164c0,25.48,20.655,46.135,46.135,46.135h0c25.48,0,46.135-20.655,46.135-46.135V97.496c0-25.48-20.655-46.135-46.135-46.135ZM373.452,16.044h0c-25.48,0-46.135,20.655-46.135,46.135v444.481c0,25.48,20.655,46.135,46.135,46.135h0c25.48,0,46.135-20.655,46.135-46.135V62.18c0-25.48-20.655-46.135-46.135-46.135ZM482.405,16.044h0c-25.48,0-46.135,20.655-46.135,46.135v444.481c0,25.48,20.655,46.135,46.135,46.135h0c25.48,0,46.135-20.655,46.135-46.135V62.18c0-25.48-20.655-46.135-46.135-46.135Z");
    }

    75%, 85% {
        d: path("M92.73,129.699v376.961c0,25.48-20.655,46.135-46.135,46.135h0c-25.48,0-46.135-20.655-46.135-46.135V129.699c0-25.48,20.655-46.135,46.135-46.135h0c25.48,0,46.135,20.655,46.135,46.135ZM155.548,304.795h0c-25.48,0-46.135,20.655-46.135,46.135v155.731c0,25.48,20.655,46.135,46.135,46.135h0c25.48,0,46.135-20.655,46.135-46.135v-155.731c0-25.48-20.655-46.135-46.135-46.135ZM264.5,167.429h0c-25.48,0-46.135,20.655-46.135,46.135v293.097c0,25.48,20.655,46.135,46.135,46.135h0c25.48,0,46.135-20.655,46.135-46.135V213.564c0-25.48-20.655-46.135-46.135-46.135ZM373.452,213.564h0c-25.48,0-46.135,20.655-46.135,46.135v246.961c0,25.48,20.655,46.135,46.135,46.135h0c25.48,0,46.135-20.655,46.135-46.135v-246.961c0-25.48-20.655-46.135-46.135-46.135ZM482.405,116.564h0c-25.48,0-46.135,20.655-46.135,46.135v343.961c0,25.48,20.655,46.135,46.135,46.135h0c25.48,0,46.135-20.655,46.135-46.135V162.699c0-25.48-20.655-46.135-46.135-46.135Z");
    }

    100% {
        d: path("M92.73,286.039v220.621c0,25.48-20.655,46.135-46.135,46.135h0c-25.48,0-46.135-20.655-46.135-46.135v-220.621c0-25.48,20.655-46.135,46.135-46.135h0c25.48,0,46.135,20.655,46.135,46.135ZM155.548,62.18h0c-25.48,0-46.135,20.655-46.135,46.135v398.346c0,25.48,20.655,46.135,46.135,46.135h0c25.48,0,46.135-20.655,46.135-46.135V108.315c0-25.48-20.655-46.135-46.135-46.135ZM264.5,89.795h0c-25.48,0-46.135,20.655-46.135,46.135v370.73c0,25.48,20.655,46.135,46.135,46.135h0c25.48,0,46.135-20.655,46.135-46.135V135.931c0-25.48-20.655-46.135-46.135-46.135ZM373.452,35.161h0c-25.48,0-46.135,20.655-46.135,46.135v425.365c0,25.48,20.655,46.135,46.135,46.135h0c25.48,0,46.135-20.655,46.135-46.135V81.296c0-25.48-20.655-46.135-46.135-46.135ZM482.405,3.161h0c-25.48,0-46.135,20.655-46.135,46.135v457.365c0,25.48,20.655,46.135,46.135,46.135h0c25.48,0,46.135-20.655,46.135-46.135V49.296c0-25.48-20.655-46.135-46.135-46.135Z");
    }
}
@font-face {
    font-family: 'CocoSharpXL-Regular';
    src: url('fonts/CocoSharpXL-Regular.eot');
    src: url('fonts/CocoSharpXL-Regular.eot?#iefix') format('embedded-opentype'), url('fonts/CocoSharpXL-Regular.woff') format('woff'), url('fonts/CocoSharpXL-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'CocoSharpXL-Bold';
    src: url('fonts/CocoSharpXL-Bold.eot');
    src: url('fonts/CocoSharpXL-Bold.eot?#iefix') format('embedded-opentype'), url('fonts/CocoSharpXL-Bold.woff') format('woff'), url('fonts/CocoSharpXL-Bold.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'CocoSharpXL-Extrabold';
    src: url('fonts/CocoSharpXL-Extrabold.eot');
    src: url('fonts/CocoSharpXL-Extrabold.eot?#iefix') format('embedded-opentype'), url('fonts/CocoSharpXL-Extrabold.woff') format('woff'), url('fonts/CocoSharpXL-Extrabold.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'CocoSharpXL-Italic';
    src: url('fonts/CocoSharpXL-Italic.eot');
    src: url('fonts/CocoSharpXL-Italic.eot?#iefix') format('embedded-opentype'), url('fonts/CocoSharpXL-Italic.woff') format('woff'), url('fonts/CocoSharpXL-Italic.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'CocoSharpXL-BoldItalic';
    src: url('fonts/CocoSharpXL-BoldItalic.eot');
    src: url('fonts/CocoSharpXL-BoldItalic.eot?#iefix') format('embedded-opentype'), url('fonts/CocoSharpXL-BoldItalic.woff') format('woff'), url('fonts/CocoSharpXL-BoldItalic.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'icomoon';
    src: url('fonts/icomoon.eot?c4a639');
    src: url('fonts/icomoon.eot?c4a639#iefix') format('embedded-opentype'), url('fonts/icomoon.ttf?c4a639') format('truetype'), url('fonts/icomoon.woff?c4a639') format('woff'), url('fonts/icomoon.svg?c4a639#icomoon') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: block;
}

[class^="icon-"]:before, [class*=" icon-"]:before,
.socials a:before{
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: 'icomoon' !important;
    speak: never;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.icon-check:before {
    content: "\e900";
    color: #1b72e8;
}

.icon-contact:before {
    content: "\e901";
    color: #1b72e8;
}

.icon-facebook:before {
    content: "\e902";
}

.icon-instagram:before {
    content: "\e903";
}

.icon-linkedin:before {
    content: "\e906";
}
.icon-groei:before {
    content: "\e904";
    color: #1b72e8;
}

.icon-in:before {
    content: "\e905";
    color: #1b72e8;
}



.icon-mail:before {
    content: "\e90e";
    color: #1b72e8;
}

.icon-pook:before {
    content: "\e90f";
    color: #1b72e8;
}

.icon-raket:before {
    content: "\e910";
    color: #fff;
}

.icon-right:before {
    content: "\e911";
}

.icon-stuur:before {
    content: "\e912";
    color: #1b72e8;
}

.icon-team:before {
    content: "\e913";
    color: #1b72e8;
}

.icon-telefoon:before {
    content: "\e914";
    color: #1b72e8;
}

.icon-toerenteller:before {
    content: "\e915";
    color: #1b72e8;
}

/*
    Light 300
    Regular 400
    Medium 500
SemiBold 600
Bold 700
ExtraBold 800*/

:root {
    --nav: 35px/55px "CocoSharpXL-Extrabold", sans-serif;
    --links: 17px/26px "CocoSharpXL-Bold", sans-serif;
    --default-tekst: 24px/37px "CocoSharpXL-Regular", sans-serif;
    --default-tekst-strong: 24px/37px "CocoSharpXL-Extrabold", sans-serif;
    --default-tekst-klein: 16px/25px "CocoSharpXL-Regular", sans-serif;
    --default-tekst-klein-strong: 16px/25px "CocoSharpXL-Extrabold", sans-serif;
    --form-label: var(--default-tekst-klein-strong);
    --credits: 14px/22px "CocoSharpXL-Regular", sans-serif;
    --intro-tekst-groot: 32px/50px "CocoSharpXL-Regular", sans-serif;
    --h1: 64px/77px "CocoSharpXL-Extrabold", sans-serif;
    --h2: 52px/62px "CocoSharpXL-Extrabold", sans-serif;
    --h3: 44px/53px "CocoSharpXL-Extrabold", sans-serif;
    --h4: 30px/36px "CocoSharpXL-Extrabold", sans-serif;
    --button: 17px/45px "CocoSharpXL-Extrabold", sans-serif;
    --quote: 80px/96px "CocoSharpXL-Extrabold", sans-serif;
    --getallen: 128px/150px "CocoSharpXL-Extrabold", sans-serif;
    --icon-size: 70px;
}
@media screen and (max-width: 1900px) {

}
    @media screen and (max-width: 1600px) {
        :root {

        }
    }

    @media screen and (max-width:1280px) {
        :root {
        }
    }

    @media screen and (max-width:760px) {
        :root {

        }
    }

:root {
    --wrapper-width: 1400px;
    --default-side-margin: calc((100% - var(--wrapper-width)) /2);
    --default-side-margin-viewport: calc((100vw - var(--wrapper-width)) /2);
    --default-padding: 45px;
    --default-wrapper-padding: 25px;
    --button-height: 45px;
    --button-padding: 22px;
    --logo-height: 95px;
    --logo-width: 200px;
    --height-input: 50px;
    --hamburger-width: 40px;
    --logo-footer-height: 145px;
    --logo-footer-width: 470px;
    --background-lijn-height:92px;
}

@media screen and (max-width:1900px) {
    :root {
        --wrapper-width: 1200px;
        --logo-height: 50px;
        --logo-width: 220px;
    }
}

@media screen and (max-width:1400px) {
    :root {
        --wrapper-width: 980px;
    }
}

@media screen and (max-width:1280px) {
    :root {
        --wrapper-width: calc(100% - var(--default-padding) - var(--default-padding));
        --default-padding: 30px;
    }
}

@media screen and (max-width:760px) {
    :root {
        --default-padding: 15px;
        --button-height:40px;
    }
}

