/*===============================================
HEADER MENU STARTS
===============================================*/
.headerFullWrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    transition: top 0.3s ease, transform 0.3s ease;
}

.headerFullWrapper.nav-up {
    transform: translateY(-200%);
}

.headerFullWrapper.nav-down {
    transform: translateY(0);
}
.headerFullWrapper.mobileVersion {
    display: none;
    z-index: 9999;
}
.headerFullWrapper .header-1 {
    background-color: #ffffff;
    box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.25);
}
.headerFullWrapper .header-1 .logos {
    width: 120px;
    position: absolute;
    box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.25);

}
.headerFullWrapper .header-1 .header-1-nav {
    padding: 5px 0 5px 135px;
}
.headerFullWrapper.mobileVersion .header-1 .header-1-nav {
    padding: 5px 20px 5px 120px;
}
.headerFullWrapper .header-1 .header-1-nav > ul {
    list-style: none;
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 0;
    align-items: center;
}
.headerFullWrapper .header-1 .header-1-nav > ul > li > a {
    font-size: 16px;
    text-decoration: none;
    padding: 10px 5px;
    color: #000000;
}
.headerFullWrapper .header-1 .header-1-nav > ul > li > a > i {
    color: var(--primary-color);
    margin-right: 5px;
}
.headerFullWrapper .header-1 .header-1-nav > ul > li > a:hover {
    text-decoration: underline;
}
.headerFullWrapper .header-1 .header-1-nav > ul > li .dropdown .dropdown-toggle {
    background-color: transparent;
    border: none;
    padding-right: 0;
}
.headerFullWrapper .header-1 .header-1-nav > ul > li .dropdown .dropdown-toggle img {
    width: 30px;
    height: 30px;
    object-fit: cover;
    border-radius: 100%;
}
.headerFullWrapper .header-1 .header-1-nav > ul > li .dropdown ul.dropdown-menu li a img {
    width: 25px;
    height: 25px;
    object-fit: cover;
    border-radius: 100%;
}
.headerFullWrapper .header-1 .header-1-nav > ul > li .dropdown ul.dropdown-menu li a {
    font-size: 19px;
    color: #000;
}
.dropdown-toggle::after {
    border: 2px solid #000000;
    width: 10px;
    height: 10px;
    transform: rotate(45deg);
    border-top-color: transparent;
    border-left-color: transparent;
}
.headerFullWrapper .header-2 .header-nav-2 {
    padding: 5px 0 5px 120px;
}
.headerFullWrapper .header-2 .header-nav-2 > ul {
    list-style: none;
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 0;
    align-items: center;
    padding-right: 15px;
}
.headerFullWrapper .header-2 .header-nav-2 > ul > li > a {
    font-size: 19px;
    text-decoration: none;
    padding: 15px 20px;
    color: #ffffff;
    line-height: 1;
    display: block;
    transition: 0.4s;
}
.sitemap li:hover a,
footer ul li.active a,
#headerFullWrapperMobile .menuBarfullWrapper ul li.active a,
.headerFullWrapper .header-1 .header-1-nav > ul > li.active > a,
.headerFullWrapper .header-2 .header-nav-2 > ul > li.active > a,
.headerFullWrapper .header-2 .header-nav-2 > ul > li > a:hover,
.headerFullWrapper .header-2 .header-nav-2 > ul > li > a:hover i {
    text-decoration: underline !important;
}
.headerFullWrapper .header-2 .header-nav-2 > ul > li > a > i {
    color: #ffffff;
    margin-right: 5px;
}
.headerFullWrapper .header-2 .header-nav-2 > ul > li.active > a > i {
    color: #5d73f5;
    margin-right: 5px;
}
@media all and (max-width: 992px){
    .headerFullWrapper.desktopVersion {
        display: none;
    }
    .headerFullWrapper.mobileVersion {
        display: block;
    }
    .headerFullWrapper.mobileVersion .logos {
        width: 80px;
        margin-left: 0;
    }
    #headerFullWrapperMobile .header-1 {
        background-color: var(--primary-color);
        position: relative;
        z-index: 9999;
    }
    #headerFullWrapperMobile {
        z-index: 15;
    }
    #headerFullWrapperMobile .header-1 ul li a {
        padding: 10px 0;
        display: block;
    }
    #headerFullWrapperMobile .header-1 ul li a i {
        font-size: 25px;
        color: #ffffff;
    }
    #headerFullWrapperMobile .menuBarfullWrapper {
        background-color: #FE8E39;
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100%;
        z-index: 999;
        transition: right 0.3s ease;
    }
    #headerFullWrapperMobile #menuBarfullWrapper.open {
        right: 0;
    }
    #headerFullWrapperMobile .menuBarfullWrapper ul {
        position: relative;
        top: 45%;
        transform: translateY(-50%);
        margin-top: 50px;
        overflow-y: scroll;
    }
    #headerFullWrapperMobile .menuBarfullWrapper ul,
    #headerFullWrapperMobile .menuBarfullWrapper ul li {
        width: 100%;
        list-style: none;
        padding-left: 0;
        text-align: center;
        transition: 0.4s;
    }
    #headerFullWrapperMobile .menuBarfullWrapper ul li a {
        text-align: center;
        font-size: 23px;
        padding: 10px 25px;
        display: inline-block;
        text-decoration: none;
        color: #ffffff;
        transition: 0.4s;
    }
    #headerFullWrapperMobile .menuBarfullWrapper ul li a i {
        font-size: 13px;
        margin-left: 10px;
        position: relative;
        top: -2px;
    }
    #headerFullWrapperMobile .menuBarfullWrapper ul li a:hover,
    #headerFullWrapperMobile .menuBarfullWrapper ul li.active a {
        transition: 0.4s;
        font-weight: bold;
    }
    #headerFullWrapperMobile .menuBarfullWrapper ul > li .dropdown .dropdown-toggle {
        background-color: transparent;
        border: none;
    }
    #headerFullWrapperMobile .menuBarfullWrapper ul > li .dropdown .dropdown-toggle img {
        width: 35px;
        height: 35px;
        object-fit: cover;
        border-radius: 100%;
    }
    #headerFullWrapperMobile .menuBarfullWrapper ul > li .dropdown ul.dropdown-menu li a img {
        width: 25px;
        height: 25px;
        object-fit: cover;
        border-radius: 100%;
    }
    #headerFullWrapperMobile .menuBarfullWrapper ul > li .dropdown ul.dropdown-menu li a {
        font-size: 14px;
        color: #000;
        padding: 10px;
    }
    .dropdown-toggle::after {
        border: 2px solid #000000;
        width: 10px;
        height: 10px;
        transform: rotate(45deg);
        border-top-color: transparent;
        border-left-color: transparent;
    }
}

@media all and (min-width: 1024px) {
    .slick-list {
        max-height: 845px !important;
    }
}

@media all and (max-width: 768px) {
    .headerFullWrapper.mobileVersion .logos {
        margin-left: 20px;
    }
}
/*===============================================
HEADER MENU ENDS
===============================================*/

/*===============================================
HERO SECTION STARTS
===============================================*/
.hero-slider {
    z-index: 2;
}
.heroSectionfullWrapper {
    height: auto;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    padding: 300px 0 200px 0;
    position: relative;
}
.heroSectionfullWrapper:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(32,32,32);
    background: linear-gradient(90deg, rgba(32,32,32,1) 0%, rgba(0,0,0,0.10) 50%);
}
.heroSectionfullWrapper h1 {
    font-size: 70px;
    line-height: 85px;
    font-weight: 700;
    color: #ffffff;
    position: relative;
    z-index: 2;
    margin-right: 50%;
}
@media all and (min-width: 1700px) {
    .heroSectionfullWrapper .container {
        max-width: 1600px;
    }
}
@media all and (max-width: 1200px) {
    .heroSectionfullWrapper h1 {
        font-size: 50px;
        line-height: 70px;
        margin-right: 0;
    }
}
@media all and (max-width: 992px){
    .heroSectionfullWrapper {
        padding: 150px 0;
    }
    .heroSectionfullWrapper h2 {
        font-size: 40px;
        line-height: 40px;
    }
    .heroSectionfullWrapper h1 {
        font-size: 45px;
        line-height: 60px;
        margin-right: 0;
    }
    .header-text {
        padding: 0 30px;
    }
}
.heroSectionfullWrapper a {
    position: relative;
    z-index: 2;
    margin-top: 25px;
}
/*===============================================
HERO SECTION ENDS
===============================================*/

/*===============================================
SERVICES SECTION STARTS
===============================================*/
.servicesSectionFullWrapper {
    position: relative;
    margin-top: -75px;
    padding-bottom: 200px;
    z-index: 2;
}
.serviceWrapper {
    width: 100%;
    padding: 65px 25px 10px 25px;
    background-color: #ffffff;
    position: relative;
    box-shadow: 0 0 15px #00000033;
    opacity: 0;
    height: 100%;
    animation: spawn 0.5s ease-out forwards;
}
.serviceContainer > div:hover {
    transition: transform 300ms ease-in-out;
    transform: scale(105%);
}
.serviceContainer > div:last-child .serviceWrapper .hertz-logo-wrapper {
    position: absolute;
    right: 10px;
    top: -10px;
    padding: 10px;
    background: var(--white-color);
}
.hertz-logo-wrapper {
    box-shadow: 0 0 15px #00000033;
}
.hertz-logo-wrapper img {
    width: 100px;
}

@media all and (min-width: 993px) {
    .serviceContainer > div:first-child {
        padding-left: 0 !important;
    }
    .serviceContainer > div:last-child {
        padding-right: 0 !important;
    }
}
.serviceContainer a {
    text-decoration: none;
}
.serviceWrapper:hover {
    background-color: var(--primary-color);
}
.serviceWrapper:hover .serviceWrapper-icon {
    background-color: var(--primary-color);
}
.serviceContainer > div:nth-child(1) .serviceWrapper {
    animation-delay: 0s;
}

.serviceContainer > div:nth-child(2) .serviceWrapper {
    animation-delay: 0.5s;
}

.serviceContainer > div:nth-child(3) .serviceWrapper {
    animation-delay: 1s;
}
@keyframes spawn {
    0% {
        opacity: 0;
        transform: translateY(-50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
.serviceWrapper .serviceWrapper-icon {
    position: absolute;
    top: -25px;
    left: 30px;
    width: 85px;
    height: 85px;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
}
.serviceWrapper .serviceWrapper-icon img {
    width: 50px;
    height: 50px;
}
.serviceWrapper:hover .serviceWrapper-icon img {
    filter: brightness(0) invert(1);
}
.serviceWrapper .serviceHeading {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
}
.serviceWrapper .serviceParagraph {
    font-size: 19px;
    color: #000000;
    margin-bottom: 0;
}
.serviceWrapper .serviceParagraph p:last-child {
    margin-bottom: 0;
}
.serviceWrapper .serviceParagraph div.btn {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: 600;
}
.serviceWrapper div.btn {
    color: var(--primary-color);
    font-size: 30px;
    padding: 0 !important;
}
.serviceWrapper:hover .serviceHeading,
.serviceWrapper:hover .serviceParagraph,
.serviceWrapper:hover .serviceParagraph div,
.serviceWrapper:hover div.btn {
    color: #ffffff;
}
@media all and (max-width: 767px){
    .servicesSectionFullWrapper {
        padding-bottom: 220px;
    }
}
/*===============================================
SERVICES SECTION ENDS
===============================================*/

/*===============================================
FACILITIES SECTION STARTS
===============================================*/
.facilitiesManagementWrapper {
    padding: 60px 0 80px 0;
    position: relative;
}
.facilitiesManagementWrapper.margin-bottom {
    margin-bottom: 150px;
}
@media all and (max-width: 992px) {
    .facilitiesManagementWrapper {
        padding-top: 300px;
    }
    .facilitiesManagementWrapper.margin-bottom {
        margin-bottom: 100px;
    }
    .facilitiesManagementWrapper .section-heading {
        line-height: 40px;
    }
    .facilitiesManagementWrapper .section-wrapper {
        padding: 0 30px;
    }
}
.facilitiesManagementWrapper img.sideImg {
    position: absolute;
    top: 50%;
    left: -300px;
    width: 700px;
    border: 20px solid #fff;
    border-radius: 100%;
    transform: translateY(-50%);
    z-index: 10;
}
.facilitiesManagementWrapper img.sideImg.right {
    left: inherit;
    right: -50px;
}
@media all and (min-width: 1600px) {
    .facilitiesManagementWrapper img.sideImg {
        width: 800px;
        left: -75px;
    }
}
@media all and (min-width: 2400px) {
    .facilitiesManagementWrapper img.sideImg {
        width: 800px;
        left: 275px;
    }
    .facilitiesManagementWrapper img.sideImg.right {
        right: 200px;
    }
}
@media all and (max-width: 1400px) {
    .facilitiesManagementWrapper img.sideImg.right {
        width: 600px;
        right: -100px;
    }
}
@media all and (max-width: 992px) {
    .facilitiesManagementWrapper img.sideImg {
        width: 400px;
        height: 400px;
        top: -145px;
        left: -75px;
        border: 10px solid #fff;
        transform: translateY(0);
    }
    .facilitiesManagementWrapper img.sideImg.right {
        top: -115px;
        width: 400px;
        right: -70px;
    }
}
.facilitiesManagementWrapper h2 {
    color: #ffffff;
    font-weight: 700;
    font-size: 40px;
    line-height: 55px;
    margin-bottom: 20px;
}
.facilitiesManagementWrapper p {
    color: #ffffff;
}
.facilitiesManagementWrapper .btn-style-2 {
    margin-top: 20px;
}
/*===============================================
FACILITIES SECTION ENDS
===============================================*/

/*===============================================
ruimteVoorEenTitelWrapper SECTION STARTS
===============================================*/
.ruimteVoorEenTitelWrapper {
    padding: 50px 0;
    position: relative;
    margin-bottom: 200px;
    margin-top: 100px;
}
.ruimteVoorEenTitelWrapper img.sideImg {
    position: absolute;
    top: 50%;
    right: 0;
    width: 700px;
    border: 10px solid #fff;
    border-radius: 100%;
    transform: translate(20%, -50%);
}
.ruimteVoorEenTitelWrapper h2 {
    color: #ffffff;
    font-weight: 700;
    font-size: 40px;
    line-height: 55px;
}
.ruimteVoorEenTitelWrapper p {
    color: #ffffff;
}
/*===============================================
ruimteVoorEenTitelWrapper SECTION ENDS
===============================================*/

/*===============================================
BLOCKS SECTION STARTS
===============================================*/
.blockFullWrapper {
    z-index: 1;
    position: relative;
}
.container.blockFullWrapper > div {
    box-shadow: 0 0 25px #00000029;
    padding-top: 40px !important;
}
.blockFullWrapper .block {
    padding: 10px 15px;
    text-align: center;
}
.blockFullWrapper .block .blockImg img {
    width: 70px;
    display: inline-block;
    margin-bottom: 20px;
}
.blockFullWrapper .block .blockHeading h4 {
    font-size: 19px;
    font-weight: 700;
    color: #000000;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.blockFullWrapper .block .blockParagraph p {
    font-size: 19px;
    color: #000000;
}
@media all and (max-width: 992px){
    .blockFullWrapper {
        max-width: 360px;
        margin: 80px auto;
        padding: 0;
    }
    .blockFullWrapper .block {
        padding: 30px 15px;
    }
    .blockFullWrapper .blockHeading h4 {
        font-size: 23px !important;
    }
    .blockFullWrapper .serviceBlock:not(:last-child) {
        flex: 0 0 100%;
        border-right: inherit;
    }
    .blockFullWrapper .serviceBlock {
        position: relative;
    }
    .blockFullWrapper .serviceBlock:not(:last-child)::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 10%;
        width: 80%;
        background-color: #a0a1a2;
        height: 1px;
    }
}

@media all and (max-width: 768px) {
    .blockFullWrapper .blockParagraph {
        display: none;
    }
}
.serviceBlock:not(:last-child) {
    border-right: 1px solid #efefef;
}
/*===============================================
BLOCKS SECTION ENDS
===============================================*/

/*===============================================
BREADCRUMBS SECTION STARTS
===============================================*/

.breadcrumbs {
    position: relative;
    padding: 80px 0;
}
.breadcrumbs::after {
    content: var(--remove-after, "");
    position: absolute;
    width: 1200px;
    height: 1200px;
    background-color: #FF89311A;
    border-radius: 50%;
    right: -475px;
    top: 40%;
    transform: translateY(-50%);
    pointer-events: none;
}
@media all and (max-width: 768px) {
    .breadcrumbs:after {
        width: 600px;
        height: 600px;
        right: -55%;
        top: 20%;
    }
}
.breadcrumbs .block2wrapper {
    margin-bottom: 50px;
}
.breadcrumbs .block2wrapper .block2Img {
    height: calc(100% - 30px);
    object-fit: cover;
    display: block;
    width: 90% !important;
    box-shadow: 15px 15px 0 var(--color);
}
.breadcrumbs .block2wrapper .block2Img.right {
    width: 90% !important;
    box-shadow: -15px 15px 0 var(--color);
}
.breadcrumbs .block2wrapper h2 {
    font-size: 40px;
    color: #000000;
    font-weight: 700;
    line-height: 55px;
    margin-top: 40px;
}
.breadcrumbs .block2wrapper p {
    font-size: 19px;
    color: #000000;
    margin-top: 20px;
}
.breadcrumb a {
    text-decoration: none;
    color: black;
}
.breadcrumb a:hover {
    text-decoration: underline;
}
.breadcrumb .link {
    margin-left: 5px;
    color: var(--primary-color)
}
@media all and (max-width: 767px){
    .breadcrumbs {
        padding: 40px 0 0 0;
    }
    .breadcrumbs .block2wrapper {
        padding: 0 20px;
    }
    .block2wrapper .section-heading {
        line-height: 45px;
    }
    #blockWrapper2-a0840ecb-5980-4ac5-91d1-4ba2c7366c54 .section-heading {
        margin-top: 40px;
    }
}
/*===============================================
BREADCRUMBS SECTION ENDS
===============================================*/

/*===============================================
BLOCK2 SECTION STARTS
===============================================*/
@media all and (min-width: 768px) {
    .blockFullWrapper2 {
        padding: 0 0 50px 0;
    }
}
.blockFullWrapper2 .block2wrapper {
    margin-bottom: 50px;
}
.blockFullWrapper2 .block2wrapper ul {
    padding: 20px 0 20px 30px;
}
.blockFullWrapper2 .block2wrapper .block2Img {
    height: calc(100% - 30px);
    object-fit: cover;
    display: block;
    width: 90% !important;
    box-shadow: 15px 15px 0 var(--color);
}
.blockFullWrapper2 .block2wrapper .block2Img.right {
    width: 90% !important;
    box-shadow: -15px 15px 0 var(--color);
}
.blockFullWrapper2 .block2wrapper h2 {
    font-size: 40px;
    color: #000000;
    font-weight: 700;
    line-height: 55px;
}
.blockFullWrapper2 .block2wrapper p {
    font-size: 19px;
    color: #000000;
    margin-top: 20px;
}
@media all and (max-width: 767px){
    .blockFullWrapper2 .block2wrapper {
        padding: 0 20px;
    }
    .blockFullWrapper2 .block2wrapper ul {
        margin-top: 20px;
    }
    .blockFullWrapper2 {
        margin-top: 0;
        padding: 0;
    }
    .blockFullWrapper2 .block2wrapper .block2Img {
        box-shadow: 10px 10px 0 var(--color);
    }
    .blockFullWrapper2 .block2wrapper .block2Img.right {
        margin-left: 10px;
        box-shadow: -10px 10px 0 var(--color);
    }
    .blockFullWrapper2 .block2wrapper h2 {
        line-height: 40px;
    }
}
/*===============================================
BLOCK2 SECTION ENDS
===============================================*/

/*===============================================
BLOCK2 SECTION STARTS
===============================================*/
.images_blocks_with_support {
    position: relative;
    z-index: 2;
}
.images_blocks_with_support .container {
    margin-top: -260px;
}
.images_blocks_with_support .text-block {
    padding: 75px 80px 80px 80px;
}
.text-block h2 {
    padding-bottom: 20px;
}
.text-block .cta-link {
    font-size: 19px;
    padding-top: 20px;
}
.text-block .cta-button {
    margin-top: 40px;
}
@media all and (min-width: 992px){
    .images_blocks_with_support {
        padding-bottom: 80px;
    }
}
@media all and (max-width: 992px){
    .images_blocks_with_support .container {
        margin-top: -50px;
    }
    .images_blocks_with_support .text-block {
        padding: 40px 20px;
    }
    .text-block h2 {
        font-size: 35px;
        line-height: 40px;
    }
}
/*===============================================
BLOCK2 SECTION ENDS
===============================================*/

/*===============================================
BLOCK3 SECTION STARTS
===============================================*/
.wat_kunnen_wij_voor {
    padding: 0 0 100px 0 !important;
    margin-top: -130px;
}

@media all and (max-width: 768px) {
    .wat_kunnen_wij_voor {
        margin-top: 40px;
        padding: 0 0 60px 0 !important;
    }
}
.block3wrapper {
    background-color: #ffffff;
}
.block3wrapper .block3Img {
    width: 100%;
    height: 200px;
}
.block3wrapper .block3Img img {
    height: 100%;
    object-fit: cover;
}
.block3wrapper .block3Icon {
    width: 75px;
    height: 75px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    border-radius: 100%;
    margin: -19px 0px 0 33px;
    position: relative;
    background: #fff;
}
.block3wrapper .block3Icon img {
    width: 40px;
    height: 40px;
    object-fit: cover;
}
.block3wrapper .block3Heading,
.block3wrapper .block3Paragraph {
    padding: 0 40px;
}
@media all and (max-width: 768px) {
    .block3wrapper .block3Heading,
    .block3wrapper .block3Paragraph {
        padding: 0 20px;
    }
}
.block3wrapper .block3Heading a {
    font-size: 19px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 20px;
    text-decoration: none;
}
.block3wrapper .block3Heading a h3 {
    font-weight: 700;
}
.block3wrapper .block3Paragraph p {
    font-size: 19px;
    font-weight: 300;
    margin-bottom: 0;
}
.block3wrapper:hover,
.block3wrapper:hover .block3Icon {
    background-color: var(--primary-color-dark);
}
.block3wrapper:hover .block3Icon img {
    filter: brightness(0) invert(1);
}
.block3wrapper:hover .block3Heading a,
.block3wrapper:hover .block3Paragraph p {
    color: #ffffff;
}
/*===============================================
BLOCK3 SECTION ENDS
===============================================*/

/*===============================================
BLOCK4 SECTION STARTS
===============================================*/
.blockFullWrapper4 {
    padding-bottom: 80px;
}
.blockFullWrapper4 h2 {
    font-size: 40px;
    font-weight: 700;
    line-height: 55px;
}
@media all and (max-width: 768px) {
    .blockFullWrapper4 h2 {
        line-height: 45px;
        margin-bottom: 20px;
    }
    .blockFullWrapper4 {
        padding-bottom: 40px;
    }
}
.blockFullWrapper4 .block4Img {
    margin: -30px -5px 0 0;
    z-index: 2;
    object-fit: cover;
}
.block4TextWrapper {
    padding: 40px 60px;
}
@media all and (max-width: 768px) {
    .block4TextWrapper {
        padding: 30px 31px 55px 31px;
    }
}
/*===============================================
BLOCK4 SECTION ENDS
===============================================*/

/*===============================================
BLOCK5 SECTION STARTS
===============================================*/
.blockFullWrapper5 h2 {
    font-size: 40px;
    font-weight: 700;
    line-height: 55px;
    position: relative;
    z-index: 5;
}
.block5wrapper .section-heading {
    padding-bottom: 20px;
}

@media all and (max-width: 578px) {
    .blockFullWrapper5 {
        padding-left: 20px;
        padding-right: 20px;
    }
}
/*===============================================
BLOCK5 SECTION ENDS
===============================================*/

/*===============================================
BLOCK6 SECTION STARTS
===============================================*/
.blockFullWrapper6 {
    padding-bottom: 80px;
}

@media all and (max-width: 992px) {
    .blockFullWrapper6 h2 {
        padding-top: 40px;
    }
}

@media all and (min-width: 769px) {
    .image-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .image-grid img:nth-child(3n - 2),
    .image-grid img:nth-child(3n - 1) {
        height: 400px;
    }

    .image-grid img:nth-child(3n) {
        grid-column: span 2;
        height: 400px;
    }
}

.image-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.image-grid img:hover {
    transform: scale(0.98);
    box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.25);
}

@media all and (max-width: 768px) {
    .image-grid {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 30px;
    }
    .image-grid img {
        height: 300px;
    }
}

/*===============================================
BLOCK5 SECTION ENDS
===============================================*/

/*===============================================
Klanten aan het woord SECTION STARTS
===============================================*/
.klanten_aan_het_woord h2 {
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
}
.klanten_aan_het_woord .slider-wrapper {
    width: 100%;
    background-color: #FFF1E6;
    box-shadow: 0 0 25px #00000027;
    padding: 60px 100px;
    margin: 15px 0;
    border-radius: 5px;
}
.klanten_aan_het_woord .slider-wrapper .review-name {
    font-weight: 700;
    font-size: 19px;
    padding-bottom: 20px;
}
.klanten_aan_het_woord .slider-wrapper .slick-arrow {
    background-color: var(--primary-color);
    color: #ffffff;
}
.klanten_aan_het_woord .slider-wrapper .slick-arrow {
    padding: 5px 25px;
    width: auto;
    height: auto;
}
.klanten_aan_het_woord .slider-wrapper .slick-arrow i {
    font-size: 30px;
    color: #ffffff;
}
.klanten_aan_het_woord .slider-wrapper .slick-arrow:before,
.klanten_aan_het_woord .slider-wrapper .slick-arrow:after {
    display: none;
}
.klanten_aan_het_woord .slider-wrapper .slick-dots {
    margin-top: 20px;
    transform: translateY(20px);
    left: 0;
}
.klanten_aan_het_woord .slider-wrapper .slick-dots li button {
    width: 15px;
    height: 15px;
    border-radius: 100%;
    background-color: #e3e3e3;
}
.klanten_aan_het_woord .slider-wrapper .slick-dots li.slick-active button {
    background-color: var(--primary-color);
}
@media all and (max-width: 767px){
    #klanten_aan_het_woord .slider-wrapper {
        width: 90%;
        margin: 0 auto;
        padding: 40px;
    }
    .klanten_aan_het_woord .slider-wrapper .slick-arrow {
        padding: 5px;
    }
}
/*===============================================
Klanten aan het woord SECTION ENDS
===============================================*/

/*===============================================
FOOTER SECTION STARTS
===============================================*/
footer {
    background-color: #000000;
    padding-top: 0 !important;
}
.footer-links {
    overflow: hidden;
    position: relative;
}
.footer-links::after {
    content: "";
    position: absolute;
    width: 1200px;
    height: 1200px;
    background-color: rgba(255, 255, 255, .1);
    border-radius: 50%;
    left: -40%;
    top: 0;
    transform: translateY(-50%);
}
.footer-widget {
    display: grid;
    justify-content: center;
}
.footer-widget img {
    margin-bottom: 20px;
}
footer .footer-widget p {
    font-size: 19px;
    line-height: 1.5;
    color: #ffffff;
    font-weight: 200;
}
footer .footer-widget h4 {
    font-size: 19px;
    margin-bottom: 10px;
    color: #ffffff;
    font-weight: 600;
}
footer .footer-widget ul {
    width: 100%;
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}
footer .footer-widget ul.sitemap li:not(:last-child) {
    padding-bottom: 15px;
}
footer .footer-widget .sitemap-wrapper {
    padding-left: 80px;
}
@media (max-width: 767px) {
    footer .footer-widget img {
        padding-bottom: 20px;
        margin-bottom: inherit;
    }
    .sitemap {
        display: flex;
        flex-wrap: wrap;
    }
    .sitemap li {
        width: 50%;
    }
    .footer-links .row {
        gap: 40px;
    }
    footer .footer-widget ul.sitemap {
        padding-bottom: 15px;
    }
}
footer .footer-widget ul li a {
    width: 100%;
    display: block;
    font-size: 19px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 200;
}
footer ul.footer-2-nav {
    width: 100%;
    list-style: none;
    padding-left: 0;
    display: flex;
    justify-content: space-between;
    margin-bottom: 0;
    align-items: center;
}
footer ul.footer-2-nav li p,
footer ul.footer-2-nav li a {
    width: 100%;
    display: block;
    font-size: 19px;
    color: #ffffff !important;
    text-decoration: none;
    font-weight: 200;
    margin-bottom: 0;
    padding: 10px 0;
}
footer ul.footer-2-nav li a:hover {
    color: var(--primary-color-dark) !important;
}
.footer-bar {
    padding: 10px 0;
}
@media all and (max-width: 767px){
    footer ul.footer-2-nav {
        flex-wrap: wrap;
        padding: 10px 0;
    }
    footer ul.footer-2-nav li {
        flex: 0 0 100%;
    }
    footer ul.footer-2-nav li a {
        text-align: center;
        padding: 0;
    }
    .footer-2-nav {
        gap: 5px;
    }
}
/*===============================================
FOOTER SECTION ENDS
===============================================*/

/*===============================================
FORM SECTION STARTS
===============================================*/
.form {
    margin: 0 10px;
    padding: 0 0 80px 0;
}

.form.support {
    margin: 0 auto;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
    flex: 1;
}
.support-form .wrapper {
    padding: 0 10px;
}

.support-form .wrapper .title {
    padding-left: 0;
}

.contact-form-details p,
.opening p {
    margin-bottom: inherit;
}

.contact-form-details p:has(strong) {
    margin: 20px 0;
}

.opening p:has(strong) {
    margin-bottom: 20px;
}

.contact-form-details p:has(strong):first-child {
    margin: 0 0 20px;
}
.contact-form-details p a,
.contact-form-link {
    color: var(--primary-color);
    text-decoration: underline;
}
.contact-form-details p a:hover,
.contact-form-link:hover {
    color: var(--primary-color-dark);
}

.maps {
    margin: 75px 0;
    width: 100%;
    height: 100%;
}
.maps iframe {
    width: 100%;
    height: 450px;
}

@media (max-width: 768px) {
    .form {
        padding: 30px 0;
    }
    .maps {
        margin: 0 0 75px 0;
        padding: 0;
        width: 100%;
        height: 100%;
    }
    .maps iframe {
        width: 100%;
        height: 300px;
    }
}

@media (max-width: 576px) {
    .items-end {
        align-items: start;
    }
    .support-form .wrapper .title {
        padding-left: 20px;
    }
    .contact-form h2 {
        padding: 0 30px;
    }
    .form {
        margin: 0;
        padding: 0 30px 40px;
    }
    .form.support {
        padding: 0 20px 40px;
    }
}

label {
    display: block;
    margin-bottom: 5px;
    font-size: 19px;
}

input[type="checkbox"] {
    display: none;
}

.checkbox-group label {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    font-family: Arial, sans-serif;
    font-size: 16px;
    position: relative;
    margin-bottom: 8px;
}

.checkbox-group label::before {
    content: '';
    display: inline-block;
    width: 25px;
    height: 25px;
    border: 1px solid rgba(255, 224, 201, 0.5);
    margin-right: 0.5em;
    background-color: #fdc59a30;
    box-sizing: border-box;
    transition: border-color 0.3s, background-color 0.3s;
}

input[type="checkbox"]:checked + label::before {
    border-color: rgba(253, 197, 154, 0.50);
    background-color: #fdc59a30;
}

input[type="checkbox"]:checked + label::after {
    content: '✔';
    position: absolute;
    top: -15px;
    left: 0;
    font-size: 35px;
    color: var(--primary-color);
}

label:hover::before {
    border-color: #0056b3;
}

.singleField, #errorField, textarea, select {
    position: relative;
    width: 100%;
    padding: 10px 20px;
    font-size: 19px;
    background-color: #F2F2F2;
    border: none;
    z-index: 2
}

.singleField::placeholder, #errorField, textarea::placeholder, select::placeholder {
    color: #212529;
}

textarea {
    resize: vertical;
    height: 100px;
}

fieldset {
    border: none;
    padding: 0;
}

.checkbox-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

@media all and (max-width: 768px) {
    .checkbox-group {
        grid-template-columns: 1fr;
    }
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 19px;
}

.select-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}

select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 100%;
    padding: 0.5em 2em 0.5em 0.75em;
    font-family: Arial, sans-serif;
    font-size: 16px;
    color: #002B57;
    border-radius: 5px;
    background: #fff;
    outline: none;
    box-sizing: border-box;
    position: relative;
}

.select-wrapper::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 1em;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 10px solid #002B57;
    transform: translateY(-50%);
    pointer-events: none;
}

select:hover {
    border-color: #0056b3;
}

select:focus {
    border-color: #0056b3;
    box-shadow: 0 0 3px rgba(0, 85, 179, 0.5);
}

input.error, textarea.error {
    border: 2px solid var(--primary-color) !important;
}

.error-message {
    color: var(--primary-color);
    font-size: 0.95em;
    display: none;
    margin-top: 5px;
    font-weight: 700;
}
.grecaptcha-badge {
    left: 10px !important;
    right: auto !important;
    width: 70px !important;
    overflow: hidden;
    transition: width 0.3s ease-in-out;
    z-index: 999;
}

.grecaptcha-badge:hover {
    width: 256px !important;
}

.fa-chevron-right {
    margin-left: 10px;
    font-size: 19px;
}

/*===============================================
FORM SECTION ENDS
===============================================*/

/*===============================================
FAQ SECTION STARTS
===============================================*/

.faq-wrapper {
    padding-bottom: 80px;
}

.faq-section {
    padding: 0;
}

.faq-section details {
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    padding: 1rem;
    border-radius: 8px;
    cursor: pointer;
    background: #f9f9f9;
}

.faq-section .content {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.4s ease;
}

.faq-section details.opening .content,
.faq-section details.open .content {
    opacity: 1;
}

.faq-section summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: bold;
    font-size: 1.1rem;
    list-style: none;
}

.faq-section summary::-webkit-details-marker {
    display: none;
}

.chevron {
    display: inline-block;
    transition: transform 0.3s ease;
    width: 1em;
    height: 1em;
    mask: url('data:image/svg+xml;utf8,<svg fill="black" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M12 15.5L5 8.5l1.41-1.41L12 12.67l5.59-5.58L19 8.5z"/></svg>') no-repeat center;
    mask-size: contain;
    background-color: #333;
}

details[open] .chevron {
    transform: rotate(180deg);
}

@media (max-width: 576px) {
    .faq-section {
        padding: 0 20px !important;
    }
}

/*===============================================
FAQ SECTION ENDS
===============================================*/

/*===============================================
COOKIE BANNER STARTS
===============================================*/
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #000000ba;
    color: white;
    padding: 15px;
    text-align: center;
    z-index: 1000;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
    display: none;
}

.cookie-text {
    display: inline-block;
    margin: 0 20px 10px;
}

.cookie-banner a {
    color: white;
    text-decoration: underline;
}

.cookie-banner .btn-style-2 {
    padding: 5px 15px;
}

.cookie-banner .btn-style-2:hover {
    background-color: #5d73f5;
    color: #ffffff;
    border: 2px solid #5d73f5;
}

.cookie-banner a:hover {
    color: var(--primary-color) !important;
}
/*===============================================
COOKIE BANNER ENDS
===============================================*/
