/* General styling */

@font-face {
    font-family: "ObjectSans";
    src: url("../fonts/ObjectSans-Bold.woff") format("woff"), /* Modern Browsers */
    url("../fonts/ObjectSans-Bold.woff2") format("woff2"); /* Modern Browsers */
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: "ObjectSans";
    src: url("../fonts/ObjectSans-Light.woff") format("woff"), /* Modern Browsers */
    url("../fonts/ObjectSans-Light.woff2") format("woff2"); /* Modern Browsers */
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: "ObjectSans";
    src: url("../fonts/ObjectSans-Regular.woff") format("woff"), /* Modern Browsers */
    url("../fonts/ObjectSans-Regular.woff2") format("woff2"); /* Modern Browsers */
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "Telegraf";
    src: url("../fonts/Telegraf-Regular.woff") format("woff"), /* Modern Browsers */
    url("../fonts/Telegraf-Regular.woff2") format("woff2"); /* Modern Browsers */
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "Telegraf";
    src: url("../fonts/Telegraf-UltraBold.woff") format("woff"), /* Modern Browsers */
    url("../fonts/Telegraf-UltraBold.woff2") format("woff2"); /* Modern Browsers */
    font-weight: 800;
    font-style: normal;
}

:root {
    --yellow: #FFD600;
    --black: #000000;
    --white: white;
    --grey: #EAEDEE;
    --breakpoint-xxl: 1400px;
    --breakpoint: var(--breakpoint-xxl);
    --indent: 50px;
    
}

h1, h3, h4, h5, h6 {
    font-family: 'Telegraf', sans-serif;
    font-weight: 800;
}

h2 {
    font-family: 'Telegraf', sans-serif;
    font-weight: 400;
}

h1 {
    font-size: 47px;
    line-height: 45px;
}

h2 {
    font-size: 42px;
    line-height: 45px;
}

h3 {
    font-size: 35px;
    line-height: 37px;
}

h4 {
    font-size: 23px;
    line-height: 24px;
}

h5 {
    font-size: 17px;
    line-height: 19px;
}

h6 {
    font-size: 15px;
    line-height: 17px;
}

p, a, u, span, select, section, td, th, option, form, input, b, strong, ul, ol, li, textarea, label, button, input, iframe, table {
    font-family: 'ObjectSans', sans-serif;
    font-weight: 300;
    font-size: 17px;
    line-height: 26px;
    color: #050505;
}

.wow {
    visibility: hidden;
}

/* NAVBAR */

#navigation {
    position: relative;
    display: flex;
    justify-content: center;
    z-index: 99;
}

.navbar.fix {
    position: absolute;
    padding: 36px 0;
}

.navbar-collapse {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.navbar-nav-small {
    display: none!important;
    padding-left: 0;
    margin-top: 30px;
}
.navbar-nav-small .footer-bottom-links {
    flex-direction: column;
}
.navbar-nav-small .footer-bottom-links .footerCredits {
    color: var(--black);
    margin-bottom: 6px;
}
.navbar-nav-small .footer-socials {
    margin-top: 30px;
}
.navbar-brand {
    padding: 0;
}
.navbar-brand img {
    transition: all .4s ease;
}
.logo-dark {
    position: absolute;
    left: 0;
    opacity: 0;
}
.navbar-toggler {
    display: none;
    margin-left: auto;
}
.navbar-toggler:focus {
    outline: none;
}
.bars {
    position: relative;
    height: auto;
    width: 20px;
}
.bar {
    width: 100%;
    height: 1px;
    background: var(--white);
    margin-bottom: 4px;

    -webkit-transition: all .25s linear;
    -moz-transition: all .25s linear;
    -o-transition: all .25s linear;
    transition: all .25s linear;
}
.menu-open .bars {
    margin-top: 5px;
}
.bar.bar-3 {
    margin-bottom: 0;
}
.menu-open .bars {
    margin: 0;
}
.menu-open .bar-1 {
    transform: rotate(45deg);
}
.menu-open .bar-3 {
    transform: rotate(-45deg);
    margin-top: -10px;
}
.menu-open .bar-2 {
    opacity: 0;
}
.menu-open .bars .bar {
    background-color: var(--black);
}
.menu-open .navbar-collapse {
    visibility: visible;
    opacity: 1;
}
.menu-open .logo {
    opacity: 0;
}
.menu-open .logo-dark {
    opacity: 1;
}
.nav-item {
    position: relative;
    margin-left: 30px;
}
.nav-item a {
    color: var(--white);
}
.nav-item a::after {
    position: absolute;
    content: '';
    height: 1px;
    background-color: var(--white);
    width: 100%;
    left: 0;
    bottom: .5rem;
    transform: scaleX(0);
    transform-origin: left;
    transition: .5s ease-out;
}
.nav-item:hover a::after {
    transform: scaleX(1);
}
.nav-item.active a {
    color: var(--yellow)!important;
}
.dropdown svg {
    transform: rotate(90deg);
    height: 10px;
    margin-left: 6px;
}
.dropdown svg path,
.dropdown svg line {
    stroke: var(--white);
}
.dropdown-menu {
    position: absolute!important;
    background-color: transparent;
    border: 0;
    display: block;
    visibility: hidden;
    top: 40px;
    opacity: 0;
    transition: all .4s ease;
}
.dropdown-item {
    padding-left: 0;
    padding-right: 0;
    font-size: 16px;
    line-height: 20px;
    transition: all .4s ease;
    font-weight: 400;
}
.dropdown-item:hover,
.dropdown-item:focus {
    background-color: transparent;
    color: var(--yellow)!important;
}
.dropdown-item::after {
    display: none;
}
.dropdown:hover .dropdown-menu {
    visibility: visible;
    opacity: 1;
}
body.lock-scroll {
    overflow: hidden;
}

/* PARAGRAPH */

.paragraph.--indent {
    padding-left: var(--indent);
    padding-right: var(--indent);
}
.paragraph.--indent-left {
    padding-left: var(--indent);
}
.paragraph.--indent-right {
    padding-right: var(--indent);
}
.paragraph h2 {
    margin-bottom: 45px;
}
.paragraph h2.text-right {
    margin-bottom: 0;
}
.paragraph h3 {
    margin-bottom: 25px;
}
.paragraph b {
    font-weight: 500;
}

/* HOME HEADER */

.home-header {
    position: relative;
    height: 100vh;
    overflow: hidden;
    background-color: var(--black);
}
.home-header:before {
    content: '';
    background: linear-gradient(180deg, black, transparent);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    opacity: 1;
    z-index: 1;
}
.home-header:after {
    content: '';
    background: radial-gradient(#FFD630 -40%, #FFD63000 60%);
    background-position: bottom;
    top: 0;
    left: -15%;
    width: 80%;
    height: 180%;
    position: absolute;
    opacity: 1;
    z-index: 1;
}
.home-header__image {
    position: absolute;
    height: 100%;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 0;
}
.home-header__inner {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 2;
}
.home-header__inner:after {
    position: absolute;
    content: '';
    width: calc(100% - 30px);
    height: 25px;
    background: var(--yellow);
    bottom: 0;
    left: 15px;
}
.home-header__content {
    position: relative;
    height: 100%;
    width: 50%;
    display: flex;
    align-items: flex-end;
    padding-bottom: 100px;
    padding-left: var(--indent);
    padding-right: var(--indent);
}
.home-header__content h1 {
    color: var(--white);
    z-index: 1;
}
.home-header__content h1 span {
    color: var(--white);
    z-index: 1;
    font-family: 'Telegraf', sans-serif;
    font-weight: 400;
    font-size: inherit;
    line-height: inherit;
}

h1 .yellow-cta,
h1 span.yellow-cta {
    color: var(--black) !important;
}

.yellow-cta {
    z-index: 1;
    background-color: var(--yellow);
    width: 100%;
    margin-left: 5px;
    padding: 11px 16px 10px 16px;
    border-radius: 3px;
    white-space: nowrap;
    top: -6px;
    position: relative;
}

h1 a.yellow-cta span {
    color: var(--black);
    font-size: 17px;
    font-family: 'Telegraf', sans-serif;
    font-weight: 800;
}

/* DISPLAY FLEX CONTAINERS */

.fl-container {
    position: relative;
    display: flex;
}
.fl-row {
    position: relative;
    flex-flow: row wrap;
}
.fl-col {
    position: relative;
    flex-flow: column wrap;
}
.plate--container,
.plate--container--fix {
    max-width: 1400px;
}
.plate--container--fix {
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
}
.plate--row {
    margin-right: -10px;
    margin-left: -10px;
}
.plate--column {
    padding-right: 10px;
    padding-left: 10px;
}
.nomargin {
    margin: 0;
}
.full-link-btn {
    position: absolute;
    height: 100%;
    width: 100%;
    display: block;
    z-index: 2;
    top: 0;
    left: 0;
}
.tussenruimte {
    position: relative;
}
.tussenruimte.space-border {
    border-bottom: 1px solid #EAEDEE;
}

/* POST HEADER */

.post-header {
    position: relative;
    height: 460px;
    overflow: hidden;
    background-color: var(--black);
}
.post-header__image {
    position: absolute;
    height: 100%;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 0;
}
.post-header:before {
    content: '';
    background: linear-gradient(180deg, black, transparent);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    opacity: 1;
    z-index: 1;
}
.post-header:after {
    content: '';
    background: radial-gradient(#FFD630 -40%, #FFD63000 60%);
    background-position: bottom;
    top: 0;
    left: -15%;
    width: 80%;
    height: 180%;
    position: absolute;
    opacity: 1;
    z-index: 1;
}
.post-header__inner {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 2;
}
.post-header__inner:after {
    position: absolute;
    content: '';
    width: calc(100% - 30px);
    height: 25px;
    background: var(--yellow);
    bottom: 0;
    left: 15px;
}
.post-header__content {
    position: relative;
    height: 100%;
    width: 50%;
    display: flex;
    align-items: flex-end;
    padding-bottom: 100px;
    padding-left: var(--indent);
    padding-right: var(--indent);
    z-index: 1;
}

.post-title {
    position: relative;
}
.post-title__subtitle {
    position: relative;
    margin-bottom: 14px;
}
.breadcrumbs {
    position: relative;
    color: rgba(255, 255, 255, .5);
}
.post-title__subtitle p,
.breadcrumbs a {
    font-size: 15px;
    line-height: 26px;
    font-weight: 400;
    margin-bottom: 0;
    color: rgba(255, 255, 255, .5);
    text-decoration: none;
}
.breadcrumbs a.last {
    color: var(--white);
}
.post-title__title {
    position: relative;
}
.post-title__title h1 {
    color: var(--white);
}

/* SECTION */

.section-container {
    position: relative;
    overflow: hidden;
}
.section-container.fullwidth .plate--container {
    padding-left: 0;
    padding-right: 0;
    max-width: unset;
    overflow: hidden;
}

/* SWIPER */

.swiper-container {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;
}

 .swiper-pagination {
    position: absolute;
    text-align: center;
    transition: 300ms opacity;
    transform: translate3d(0, 0, 0);
    display: inline-block;
}


.swiper-pagination-bullet {
    width: auto;
    height: unset;
    display: inline-block;
    opacity: 1;
    background: 0;
}

/* BUTTON */

.button {
    position: relative;
    height: 48px;
    border-radius: 32px;
    display: inline-flex;
    align-items: center;
    background-color: var(--yellow);
    transition: all .3s ease-in-out;
    &:hover {
        background-color: #f5ce00;
    }
}
.button a {
    padding: 10px 24px;
    color: var(--black);
    font-size: 12px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    transition: all .3s ease-in-out;
    text-wrap: nowrap;
}
.button svg {
    margin-left: 14px;
}
.button.black {
    background-color: var(--black);
}
.button.white {
    background-color: var(--white);
    &:hover {
        background-color: var(--black);
        a {
            color: white;
        }
    }
}
.button.black a {
    color: var(--white);
}

/* GEEL BLOK */
.plate--element__multi_block {
    height: 100%;
}
.yellow-block {
    position: relative;
    background-color: var(--yellow);
    border-radius: 3px 3px 3px 3px;
    height: 100%;
}
.yellow-block__inner {
    padding: 110px var(--indent);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.yellow-block.less-padding .yellow-block__inner {
    padding: var(--indent);
}
.yellow-block.less-padding .yellow-block__inner.contact-inset {
    padding: var(--indent) 90px 60px var(--indent)!important;
}
.yellow-block__inner.contact-inset {
    padding: 110px 90px 60px var(--indent)!important;
}
.yellow-block__inner.contact-inset .yellow-block__variation {
    margin-top: auto;
}
.yellow-block.left-corner {
    border-radius: 0px 0px 3px 33px;
}
.yellow-block .yellow-block__text h3 {
    margin-bottom: 28px;
}
.yellow-block .yellow-block__text p {
    line-height: 26px;
    font-weight: 300;
}
.yellow-block .yellow-block__text a {
    font-weight: 800;
    font-size: 18px;
    text-decoration: underline;
    line-height: 26px;
    color: var(--black);
}
.yellow-block .link {
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
}
.yellow-block .link::after {
    content: '';
    position: absolute;
    bottom: -1px;
    width: 100%;
    transform: scaleX(0);
    height: 1px;
    background-color: var(--black);
    transform-origin: left;
    transition: all .45s ease-out;
}
.yellow-block .link:hover::after {
    transform: scaleX(1);
}
.yellow-block .link:hover svg {
    transform: translateX(-10px);
}
.yellow-block .link a {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    position: relative;
}
.yellow-block .link svg {
    margin-left: auto;
    transform: translateX(0);
    transition: all .5s ease-out;
    will-change: transform;
}
.yellow-block .link svg path,
.yellow-block .link svg line {
    stroke: #050505;
}
.yellow-block .yellow-block__variation .link p,
.yellow-block .yellow-block__variation .link a {
    color: var(--black);
    font-family: 'ObjectSans', sans-serif;
    font-weight: 300;
    padding: 12px 0 8px;
    margin-bottom: 0;
}
.yellow-block .yellow-block__variation .yellow-block__contact {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}
.yellow-block .yellow-block__variation .whatsapp {
    margin-top: auto;
    margin-right: 10px;
}
.yellow-block .yellow-block__tabs {
    overflow: hidden;
}
.yellow-block .yellow-block__tabs .swiper-pagination {
    position: relative;
    bottom: 0;
    text-align: left;
    margin-bottom: 30px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
}
.yellow-block .yellow-block__tabs .swiper-pagination .swiper-pagination-bullet {
    position: relative;
    font-family: 'Telegraf', sans-serif;
    font-weight: 800;
    font-size: 24px;
    margin: 0 24px 0 0;
}
.yellow-block .yellow-block__tabs .swiper-pagination .swiper-pagination-bullet::before {
    content: '';
    height: 1px;
    background-color: black;
    position: absolute;
    bottom: -16px;
    width: 100%;
    transform: scaleX(0);

    transition: .5s ease-out;
}
.yellow-block .yellow-block__tabs .swiper-pagination .swiper-pagination-bullet:focus {
    outline: none;
}
.yellow-block .yellow-block__tabs .swiper-pagination .swiper-pagination-bullet-active::before {
    transform: scaleX(1);
}
.yellow-block.bg-white::after {
    content: '';
    background-color: #EAEDEE;
    background-position: bottom;
    bottom: 0;
    width: 100%;
    height: 12px;
    position: absolute;
    opacity: 1;
}

/* BIG IMAGE TEXT */

.big-image {
    position: relative;
    padding-top: 12%;
    padding-bottom: 5%;
}
.big-image__image {
    position: absolute;
    top: 0;
    width: 72vw;
    height: 100%;
}
.big-image__image img {
    position: relative;
    object-fit: cover;
    height: 100%;
    width: 100%;
    right: 0;
}
.big-image__text {
    position: relative;
    width: 50%;
    margin-left: auto;
    background-color: var(--yellow);
}
.big-image__text__inner {
    padding: var(--indent) 100px var(--indent) var(--indent);
}

/* CONTACT BLOCK */

.contact {
    position: relative;
}
.contact::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 12px;
    background-color: var(--yellow);
}

.contact .contact__inner {
    padding-left: var(--indent);
    padding-right: var(--indent);
    padding-bottom: 100px;
}
.contact .contact__inner .titel {
    margin-bottom: 40px;
}
.contact .contact__inner .titel h3 {
    margin-bottom: 0;
}

/* INDEX PROJECTS */

.project-index .post-header {
    background-image: none;
    height: 360px;
    background-color: var(--white);
}
.project-index .post-header::before,
.project-index .post-header::after,
.project-index .post-header__inner::after {
    display: none;
}
.project-index .nav-item a {
    color: var(--black);
}
.project-index .breadcrumbs a,
.project-index .post-title__title h1 {
    color: var(--black);
}
.project-index .footer-top-wrapper {
    padding-top: 120px;
}
.project-index .logo {
    opacity: 0;
}
.project-index .logo-dark {
    opacity: 1;
}
.project-index .bars .bar {
    background-color: var(--black);
}
.project-index .nav-item a::after {
    background-color: var(--black);
}
.project-index .dropdown svg path,
.project-index .dropdown svg line {
    stroke: var(--black);
}
.items-container {
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}
.items-container .project-item {
    width: calc(100% / 3);
}

/* PROJECT SHOW */

.project-show .post-header {
    height: 100vh;
}
.project-show .post-header .post-title__title span {
    display: block;
    font-size: inherit;
    line-height: inherit;
    color: inherit;
    font-family: inherit;
    font-weight: 400;
}

/* IMAGE SLIDER */

.image-slider {
    position: relative;
    padding-top: 55px;
}

.image-slider .slider-container {
    position: relative;
    width: 72vw;
    height: 650px;
    overflow: hidden;
}
.title-text {
    display: flex;
    flex-direction: column;
    gap: 48px;
    position: relative;
    z-index: 2;
}
.title-text h3 {
    margin-bottom: 0;
}
.title-text p:nth-last-child(1) {
    margin-bottom: 0;
}

.video-element {
    width: calc(100% + 64px);
    margin-left: -32px;
}
.image-slider:not(.has-content):not(.image-slider-has-titles) {
    padding-top: 0;
    margin-bottom: 35px;
    .swiper-pagination {
        position: absolute;
        bottom: 0;
        transform: translateY(100%);
        padding-top: 16px;
        .swiper-pagination-bullet {
            width: 6px;
            height: 6px;
            background-color: #050505;
            opacity: .16;
            border-radius: 0;
        }
        .swiper-pagination-bullet.swiper-pagination-bullet-active {
            opacity: 1;
        }
    }
    .swiper-slide:not(.swiper-slide-active) {
      opacity: 0.16 !important;
    }
    .slider-container {
        width: 100%;
        height: auto;
        overflow: visible;
    }
    .slider-buttons {
        top: 50%;
        transform: translateY(-50%) translateZ(-200px);
        right: unset;
        left: -10%;
        margin-right: 0;
        width: 120%;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        @media only screen and (max-width: 989px) {
            left: 16px;
            width: calc(100% - 32px);

        }
        .slider-button {
            margin-bottom: 0;
            margin-right: 0;
            margin-top: 0;
            margin-left: 0;
            background-color: #050505;
            transition: background-color .3s ease-in-out;
            svg {
                filter: brightness(0) invert(1);
            }
        }
        .slider-button:hover {
            background-color: #414141;
        }
        .slider-button.button-next {
            transform: translateX(50%);
        }
        
        .slider-button.button-prev {
            transform: translateX(-50%);
        }
    }
}
.image-slider-has-titles {
    display: flex;
    .tekstblok {
        width: calc(100% / 12 * 5);
        padding-right: 144px;
        z-index: 3;
        background-color: white;
        display: flex;
        flex-direction: column;
        justify-content: center;
        position: relative;
        gap: 48px;
        @media only screen and (max-width: 1024px) {
            width: 100%;
            padding-left: 0;
            padding-right: 0;
            padding-bottom: 64px;
            background-color: transparent;
        }
        &:after {
            content : "";
            right: 1px;
            top: -2px;
            width: 100vw;
            position: absolute;
            height: calc(100% + 4px);
            background-color: white;
            /* transform: translateX(-100%); */        
        }

    }
}


.image-slider.image-slider-has-titles {
    padding-top: 94px;
    padding-bottom: 94px;
    @media only screen and (max-width: 1024px) {
        flex-direction: column;
        padding-top: 0;
        padding-bottom: 32px;
    }
    .slider-container {
        width: calc(100% / 12 * 7);
        height: auto;
        overflow: visible;
        position: relative;
        @media only screen and (max-width: 1024px) {
            width: 100%;
            padding-left: 0;
        }
        &:after {
            content: '';
            left: 112px;
            top: -94px;
            height: calc(100% + 188px);
            width: 100vw;
            background: var(--grey);
            position: absolute; 
            
        }
    }
    .slider-buttons {
        position: relative;
        top: 0%;
        transform: none;
        right: unset;
        left: unset;
        margin-right: 0;
        width: auto;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        width: max-content;
        gap: 4px;
        .slider-button {
            margin-bottom: 0;
            margin-right: 0;
            margin-top: 0;
            margin-left: 0;
            background-color: #050505;
            transition: background-color .3s ease-in-out;
            svg {
                filter: brightness(0) invert(1);
            }
        }
        .slider-button:hover {
            background-color: #414141;
        }
        .slider-button.button-next {
            /* transform: translateX(50%); */
        }
        
        .slider-button.button-prev {
            /* transform: translateX(-50%); */
        }
    }
}

@media only screen and (max-width: 1024px) {
    .image-slider-has-titles .tekstblok::after {
        display: none;   
    }
    .image-slider.image-slider-has-titles .slider-container:after {
        height: calc(100% + 64px);
        top: -32px;
    }
}

.image-slider .swiper-slide img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.image-slider__border {
    position: absolute;
    top: 0;
    right: -1px;
    width: 40vw;
    height: 420px;
    z-index: 2;
    border: 1px solid var(--yellow);
    border-radius: 0 0 3px 33px;
}
.image-slider__border.yellow-bg {
    background-color: var(--yellow);
}
.image-slider__border__inner {
    position: relative;
    padding: 100px var(--indent);
}
.image-slider__content .link {
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
}
.image-slider__content .link p {
    padding: 12px 0 8px;
    margin-bottom: 0;
}
.image-slider .slider-buttons {
    flex-direction: column-reverse;
    position: absolute;
    right: calc((100vw - var(--breakpoint)) / 2 + 15px);
    margin-right: var(--indent);
    top: 55px;
}
.image-slider .slider-buttons .button-prev {
    margin-top: 10px;
}
.image-slider.has-content {
    padding-top: 120px;
}
.image-slider.has-content .image-slider__border {
    height: auto;
}
.image-slider.has-content .slider-buttons {
    top: unset;
    bottom: 0;
}

/*ACCORDION*/

.accordion__button {
    position: relative;
    height: auto;
    cursor: pointer;
    padding: 17px 40px 17px 0;
    width: 100%;
    text-align: left;
    outline: none;
    border: 0;
    background-color: transparent;
    border-bottom: 1px solid var(--grey);

    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -ms-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}

.accordion__button .intro {
    margin-bottom: 0;
    font-size: 21px;
    line-height: normal;
    letter-spacing: -0.21px;
    font-family: 'Telegraf', sans-serif;
    font-weight: 400;
    color: #050505;
}
.accordion__button:focus {
    outline: none;
}
.accordion__panel {
    padding: 0 65px 0 0;
    background-color: transparent;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    border: none;
}
.accordion__panel .accordion__panel__inner {
    padding: 24px 0 21px 0;
}
.accordion__panel .accordion__panel__inner p {
    margin-bottom: 0;
}
.accordion__button .open-close {
    position: absolute;
    right: 2px;
    height: 11px;
    width: 11px;
    top: 22px;
    transform: rotate(-45deg);
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -ms-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}
.accordion__button .open-close svg {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
}
.open-close svg path {
    fill: #374247;
}
.accordion__button.active .open-close {
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    transform: rotate(-90deg);
}
.accordion.indent {
    padding-left: var(--indent);
    padding-right: var(--indent);
}

/* VACATURE */

.vacature-container {
    position: relative;
    padding-top: 120px;
    padding-bottom: 60px;
}

/* Item card */

.item-card {
    position: relative;
    background-color: var(--yellow);
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
    margin-bottom: 30px;
}
.item-card.bg-white {
    background-color: var(--white);
}
.item-card.grey-before::before {
    content: '';
    position: absolute;
    top: -70px;
    right: 30%;
    width: 50vw;
    height: 140px;
    background: var(--grey);
    z-index: -1;
    border-radius: 3px;
}
.item-card.grey-after::after {
    content: '';
    position: absolute;
    bottom: -75px;
    left: 35%;
    width: 100%;
    height: 420px;
    background: var(--grey);
    z-index: -1;
    border-radius: 3px 3px 3px 33px;
}
.item-card.bg-white::after {
    content: '';
    background-color: #EAEDEE;
    background-position: bottom;
    bottom: 0;
    width: 100%;
    height: 12px;
    position: absolute;
    opacity: 1;
}
.item-card .item-card__image {
    height: 200px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
}
.item-card .item-card__content {
    position: relative;
    padding: 40px 100px 40px var(--indent);
}
.item-card .item-card__content__title h3 {
    margin-bottom: 20px;
}
.item-card .item-card__content__text p {
    margin-bottom: 40px;
    font-weight: 300;
    line-height: 26px;
    color: #050505;
}

.item-card:hover .text-button a::after {
    transform: scaleX(0);
}

.text-button {
    position: relative;
}
.text-button a {
    position: relative;
    color: var(--black);
    text-decoration: none;
    font-weight: 400;
}
.text-button a::after {
    position: absolute;
    content: '';
    height: 1px;
    background-color: var(--black);
    width: 100%;
    left: 0;
    bottom: -3px;
    transform: scaleX(1);
    transform-origin: left;
    transition: .5s ease-out;
}
.text-button:hover a::after {
    transform: scaleX(0);
}
.text-button.reverse a::after {
    transform: scaleX(0);
}
.text-button.reverse:hover a::after {
    transform: scaleX(1);
}

/* project slider */

.project-slider {
    position: relative;
    overflow: hidden;
}
.project-slider__top {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    margin: 0 auto 40px auto;
}
.project-slider__title {
    padding-left: var(--indent);
}
.project-slider__buttons {
    padding-right: var(--indent);
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-top: 10px;
}
.project-slider__buttons .index-link {
    margin-right: 30px;
}
.slider-buttons {
    display: flex;
    flex-direction: row;
    z-index: 3;
}
.slider-button {
    position: relative;
    height: 52px;
    width: 52px;
    margin-left: 10px;
    background-color: var(--grey);
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s ease-out;
    cursor: pointer;
}
.slider-button:focus {
    outline: none;
}
.slider-button:hover {
    background-color: var(--yellow);
}

/* project item */

.project-item {
    position: relative;
    height: 450px;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    cursor: pointer;
}
.project-item:hover::before {
    opacity: .2;
}
.project-item::before {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: var(--black);
    opacity: .7;
    mix-blend-mode: multiply;
    left: 0;
    top: 0;
    transition: .5s ease-out;
}
.project-item__inner {
    position: relative;
    height: 100%;
    padding: 70px 60px;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.project-item .project-item__place {
    margin-bottom: 10px;
}
.project-item .project-item__place p {
    margin-bottom: 0;
    color: var(--white);
}
.project-item .project-item__title h4 {
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0;
}

.cta-block {
    position: relative;
}
.cta-block__inner {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    
}
.cta-block__inner .block {
    width: calc(50% - 10px);
}
.cta-block .item-card {
    background-color: transparent;
}
.cta-block .yellow-block__inner {
    background-color: transparent;
    padding: var(--indent) 90px 60px var(--indent);
}

/* FORM STYLING */

.contact-form {
    position: relative;
}
.contact-form.indent {
    padding-left: var(--indent);
    padding-right: var(--indent);
}
.contact-form__title {
    margin-bottom: 40px;
}
.contact-form__title h3 {
    margin-bottom: 0;
}
.contact-form__fields {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}
.form-field-container {
    margin-bottom: 12px;
    width: 100%;
    
}
.form-field-container.half {
    width: calc(50% - 10px);
}
.form-field__input,
.form-field__textarea {
    width: 100%;
    height: 40px;
    border: 0;
    padding: 12px 0 8px 0;
    background-color: transparent;
    font-size: 17px;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
    color: #050505;
    transition: all .4s ease;
    border-radius: 0;
    &.invalid {
        border-bottom-color: rgb(208, 60, 60);
    }
}
.form-field__input:focus,
.form-field__textarea:focus {
    outline: none;
    border-bottom: 1px solid var(--yellow);
}
.form-field__textarea {
    min-height: 120px;
}
.form-field-file {
    display: flex;
    flex-direction: row;
    padding-top: 30px;
    padding-bottom: 30px;
}
.form-field__file {
    background-color: #EAEDEE;
    padding-left: 24px;
    padding-right: 24px;
    color: #050505;
    border-radius: 27px;
    padding-top: 14px;
    padding-bottom: 12px;
    width: 100%;
    cursor: pointer;
}
.form-field__file:focus {
    outline: 0;
}
.form-field__label__file {
    height: 52px;
    padding: 14px 24px 14px 24px;
    margin-right: 22px;
    margin-bottom: 0;
    cursor: pointer;
    background-color: var(--black);
    color: var(--white);
    border-radius: 27px;
    white-space: nowrap;
}
.form-field__label__file svg {
    height: 14px;
    margin-left: 14px;
    transform: rotate(-90deg);
    top: -2px;
}
.form-field__label__file svg path,
.form-field__label__file svg line {
    stroke: var(--yellow);
}
::-webkit-file-upload-button {
    display: none;
}
.form-field__label {
    display: none;
}

.form-field.radio,
.form-field.checkbox {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
}
.form-field.radio .form-field__label,
.form-field.checkbox .form-field__label {
  position: relative;
  left: unset;
  top: unset;
  padding: 0;
  width: 100%;
  margin-right: 2rem;
  margin-bottom: 1.4rem;
  display: block!important;
}

.form-field.radio .option-group .option,
.form-field.checkbox .option-group .option {
  margin-right: 2rem;
  margin-bottom: 1rem;
}

.form-field.radio .option-group .option label,
.form-field.checkbox .option-group .option label {
    margin-bottom: 0;
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    line-height: 26px;
    font-size: 17px;
}
.form-field.radio .option-group .option label input,
.form-field.checkbox .option-group .option label input {
  --input-width: 1rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  appearance: none;
  width: var(--input-width);
  height: var(--input-width);
  border: 0;
  border-radius: 0;
  background-color: transparent;
  margin-right: 1rem;
  flex-shrink: 0;
  border: 0.1rem solid rgba(0, 0, 0, .1);
  transition: border-color .5s ease;
  cursor: pointer;
  top: 2px;
}
.form-field.radio .option-group .option label input,
.form-field.radio .option-group .option label input::after {
  border-radius: 50% !important;
}
.form-field.radio .option-group .option label input::after,
.form-field.checkbox .option-group .option label input::after {
    content: "";
    position: absolute;
    width: .75rem;
    height: .75rem;
    background-color: var(--black);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity .5s ease;
}
.form-field.radio .option-group .option label input::after:hover,
.form-field.checkbox .option-group .option label input::after:hover {
  border-color: var(--yellow);
}
.form-field.radio .option-group .option label input:checked::after,
.form-field.checkbox .option-group .option label input:checked::after {
  opacity: 1;
}


  /* &.radio {
    input {
      border-radius: 50% !important;
      &::after {
        border-radius: 50% !important;
      }
    }
    &.invalid {
      input {
        border-color: var(--error-empty) !important;
      }
    }
  }
  &.checkbox {
    .option-group {
      .option {
        label {
          input {
            &::before {
            }
          }
        }
      }
    }
  } */

.contact-form__bottom {
    margin-top: 6px;
}
.contact-form__bottom.align-right {
    justify-content: flex-end;
}
.submit-form-btn {
    border: 0;
    padding: 0;
    cursor: pointer;
}
.submit-form-btn a {
    padding: 14px 22px 12px 22px;
}
.submit-form-btn:focus {
    outline: 0;
}
::-webkit-input-placeholder {
    color: #050505;
}
::-moz-placeholder {
    color: #050505;
}
:-ms-input-placeholder {
    color: #050505;
}
:-moz-placeholder {
    color: #050505;
}
.grecaptcha-badge {
    visibility: hidden;
}

/* Actie blok styling */

.left-white-block {
    width: 50%;
    margin-right: 12px;
}

.left-white-block:after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 16%;
    width: 50%;
    height: 357px;
    background: var(--grey);
    z-index: -1;
    border-radius: 0 0 3px 33px;
}

.content-wrapper-white {
    padding: 7% 7% 5%;
}

.right-yellow-block {
    width: 50%;
    margin-left: 10px;
    background-color: var(--yellow);
    /* padding: 40px 50px 50px; */
}

.content-wrapper-yellow {
    padding: 53px 260px 63px 40px;
}

.uitgelicht-link-right {
    background-color: black;
    border: none;
    color: white;
    border-radius: 27px;
    padding: 2% 4% 2% 4%;
    display: inline-block;
    margin-top: 28%;
}

.social-icon-whatsapp {
    margin-left: 9px;
    height: 27px;
}

/* Alleen blok styling */

.right-empty-block {
    width: 50%;
}

.alleen-blok-link {
    background-color: black;
    border: none;
    color: white;
    border-radius: 27px;
    padding: 2% 4% 2% 4%;
    display: inline-block;
    margin-top: 5%;
}

.content-wrapper-alleen {
    padding:  10% 0% 10% 40%;
}

.bottom-line:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--grey);
}

.alleen-block {
    position: relative;
    padding: 120px 50px;
    width: 37%;
}

.alleen-block:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 12px;
    background-color: var(--yellow);
}

/* Informatie blok styling */

.informatie-yellow-block {
    width: 50%;
    background-color: var(--yellow);
    padding: 40px 50px 50px;
    border-radius: 3px;
}

.informatie-white-block {
    width: 50%;
    padding: 82px 80px 110px;
    position: relative;
}

.informatie-wrapper-right:after {
    content: '';
    background-color: #EAEDEE;
    background-position: bottom;
    left: 20px;
    bottom: 0;
    width: calc(100% - 20px);
    height: 12px;
    position: absolute;
    opacity: 1;
}
    
.informatie-wrapper-left {
    padding: 7% 33% 0% 0%;
}

.arrow-icon {
    position: relative;
}
.arrow-icon.left {
    transform: rotate(180deg);
}
.arrow-icon.bottom {
    transform: rotate(90deg);
}

/* Info blok styling */

.info-block {
    position: relative;
}

.info-wrapper {
    position: relative;
    padding: 2% 37% 0% 4%;
}

.info-textarea {
    position: relative;
    margin-top: 20px;
}

/* Afbeelding blok styling */

.image-block {
    position: relative;
    width: 50%;
}

.left-image-block {
    position: relative;
    height: 100%;
    width: 100%;
    overflow: hidden;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.content-right-block {
    position: relative;
    width: 50%;
    background-color: var(--yellow);
}



/* Footer styling */

.footer-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 55px 0;
}

.footer-links-wrapper {
    flex-flow: column wrap;
    height: 115px;
}

.footerColumn.low .footer-links-wrapper {
    height: 75px;
}

.footerColumn {
    width: 40.333333%;;
    flex-flow: column;
}

.footerColumn:nth-child(2) {
    width: 19%;
}

.titleFooter {
    font-family: 'Telegraf', sans-serif;
    font-weight: 800;
    margin-right: 24px;
    margin-bottom: 20px;
}

.footerLinks {
    font-size: 16px;
    line-height: 27px;
    color: var(--black);
    font-weight: 300;
}

.footer-bottom-wrapper {
    position: relative;
    background-color: var(--black);
    width: 100%;
    height: 55px;
    align-content: center;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    justify-content: space-between;
    height: 100%;
}

.footer-bottom-links {
    align-self: center;
    display: flex;
}

.footer-bottom-links a {
    margin-right: 13px;
}

.footerCredits {
    color: var(--white);
    font-size: 11px;
    line-height: 14px;
    margin: auto 0;
}

.footer-top-wrapper {
    padding-top: 60px;
    display: flex;
    align-items: center;
}

.footer-icon {
    height: 40px;
    width: 50px;
    background-repeat: no-repeat;
    background-size: contain;
    margin-right: 30px;
}

.footer-socials {
    display: inline-flex;
    align-items: center;
}

.social-icon {
    margin-left: 24px;
}
.social-icon a path {
    transition: all .4s ease;
}
.social-icon:hover a path {
    fill: var(--yellow);
}

.yellow-cta-footer {
    background-color: var(--yellow);
    padding: 10px 17px 6px 17px;
    border-radius: 3px;
    white-space: nowrap;
    margin-left: auto;
}

.span-bold {
    font-family: 'Telegraf', sans-serif;
    font-weight: 800;
}

.certificates-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(4, 1fr);
    @media only screen and (max-width: 700px) {
        grid-template-columns: repeat(2, 1fr);
    }
}

.certificates-grid .certificate-item {
    aspect-ratio: 1 / .85;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    border: 1px solid var(--grey);
    background-color: var(--white);
}

.certificates-grid .certificate-item img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
}

@media only screen and (max-width: 1400px) {
    :root {
        --breakpoint: var(--breakpoint-xl);
    }
    .plate--container,
    .plate--container--fix {
        max-width: 1200px;
    }
    .home-header__content,
    .post-header__content {
        width: 60%;
    }
}
@media only screen and (max-width: 1200px) {
    :root {
        --breakpoint: var(--breakpoint-lg);
    }
    .plate--container,
    .plate--container--fix {
        max-width: 992px;
    }
    .home-header__content,
    .post-header__content {
        width: 70%;
    }
}
@media only screen and (max-width: 992px) {
    :root {
        --indent: 30px;
        --breakpoint: 100%;
    }
    h1 {
        font-size: 42px;
        line-height: 40px;
    }
    
    h2 {
        font-size: 36px;
        line-height: 40px;
    }
    
    h3 {
        font-size: 30px;
        line-height: 32px;
    }
    
    h4 {
        font-size: 20px;
        line-height: 21px;
    }
    
    h5 {
        font-size: 16px;
        line-height: 18px;
    }
    .navbar-toggler {
        display: block;
    }
    .navbar-collapse {
        position: fixed;
        width: 100%;
        height: 100vh;
        padding-top: 100px;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background-color: white;
        z-index: -1;
        opacity: 0;
        padding-left: var(--indent);
        padding-right: var(--indent);
        overflow-y: auto;
        align-items: flex-start;
        justify-content: flex-start;
        flex-direction: column;

        visibility: hidden;
        transition: visibility .6s ease, opacity .6s ease;
    }
    .navbar-collapse__inner {
        overflow-y: auto;
        padding-bottom: 120px;
        width: 100%;
    }
    .navbar-nav {
        flex-flow: column wrap;
    }
    .navbar-nav-small {
        display: block!important;
    }
    .nav-item {
        margin-left: 0;
    }
    .nav-item a {
        color: var(--black);
        font-size: 21px;
        line-height: 30px;
        font-weight: 700;
    }
    .nav-item a::after {
        display: none;
    }
    .dropdown svg {
        height: 20px;
        width: 17px;
        margin-left: 7px;
        padding: 3px;
        top: -1px;
        transition: transform .4s ease;
    }
    .dropdown svg path,
    .dropdown svg line {
        stroke: var(--black);
    }
    .dropdown-menu {
        position: relative!important;
        display: none;
        visibility: visible;
        top: 0;
        opacity: 1;
        padding-top: 0;
    }
    .dropdown-active .dropdown-menu {
        display: block;
    }
    .dropdown-active .arrow-icon {
        transform: rotate(-90deg);
    }
    .dropdown-item {
        color: var(--black)!important;
        font-size: 16px!important;
        line-height: normal!important;
        font-weight: 300!important;
    }
    .home-header__content,
    .post-header__content {
        width: 100%;
    }
    .plate--column {
        flex-basis: 100%;
        max-width: 100%;
    }
    .item-card .item-card__content {
        position: relative;
        padding: 40px var(--indent) 40px var(--indent);
    }
    .project-slider__title {
        width: 100%;
    }
    .project-slider__buttons {
        padding-right: unset;
        padding-left: var(--indent);
        flex-direction: row-reverse;
    }
    .slider-button {
        margin-left: 0;
        margin-right: 10px;
    }
    .project-slider__buttons .index-link {
        margin-right: 0;
        margin-left: 30px;
    }
    .cta-block__inner {
        flex-direction: column;
    }
    .cta-block__inner .block {
        width: 100%;
    }
    .yellow-block__inner {
        padding: 40px var(--indent);
    }
    .yellow-block.less-padding .yellow-block__inner.contact-inset {
        padding: 40px var(--indent) 40px var(--indent)!important;
    }
    .yellow-block.less-padding .yellow-block__inner {
        padding: 40px var(--indent);
    }
    .cta-block .yellow-block__inner {
        background-color: transparent;
        padding: var(--indent) var(--indent) 40px var(--indent);
    }
    .yellow-block__inner.contact-inset {
        padding: 110px var(--indent) 40px var(--indent)!important;
    }
    .footer-wrapper {
        padding: 35px 0 55px 0;
    }
    .footer-wrapper__inner {
        flex-flow: column wrap;
    }
    .footer-links-wrapper {
        height: auto!important;
    }
    .footerColumn {
        width: 100%!important;
        flex-flow: column;
        margin-bottom: 30px;
    }
    .titleFooter {
        margin-bottom: 15px;
    }
    .footer-top-wrapper {
        padding-top: 40px;
        flex-direction: column;
        align-items: flex-start;
    }
    .footer-icon {
        margin-bottom: 30px;
    }
    .item-card.grey-before::before {
        right: unset;
        left: -20px;
    }
    .paragraph .text-right {
        text-align: left!important;
    }
    .big-image {
        padding-top: 0;
        padding-bottom: 0;
    }
    .big-image__image {
        position: relative;
        width: 100vw;
    }
    .big-image__text {
        width: 100%;
        margin-top: -25%;
    }
    .big-image__text__inner {
        padding: var(--indent);
    }
    .project-item {
        height: 400px;
    }
    .items-container .project-item {
        width: calc(100% / 2);
    }
    .project-item__inner {
        padding: 40px 30px;
    }
    .image-slider {
        padding-top: 0!important;
    }
    .image-slider .slider-container {
        width: 100%;
        height: 350px;
    }
    .image-slider__border {
        position: relative;
        top: -40px;
        width: 72vw;
        margin-left: auto;
        height: 220px;
    }
    .image-slider.has-content .image-slider__border {
        height: auto;
    }
    .image-slider__border__inner {
        padding: 60px var(--indent);
    }
    .image-slider.has-content .slider-buttons {
        top: 374px;
        bottom: unset;
        right: unset;
        margin-left: var(--indent);
        margin-right: unset;
        left: 0;
    }
    .form-field-container.half {
        width: 100%;
    }
    .yellow-block .yellow-block__tabs .swiper-pagination .swiper-pagination-bullet {
        font-size: 20px;
    }
    .yellow-block .yellow-block__tabs .swiper-pagination .swiper-pagination-bullet::before {
        bottom: -14px;
    }
    .form-field-file {
        flex-direction: column;
        align-items: flex-start;
    }
    .form-field__label__file {
        margin-right: 22px;
        margin-bottom: 22px;
    }
    .footer-socials {
        flex-direction: row;
        flex-wrap: wrap;
        width: 100%;
    }
    .footer-socials .social-icon:nth-of-type(1) {
        margin-left: 0;
    }
    .footer-socials h5 {
        margin-bottom: 15px;
        width: 100%;
    }
    .navbar-brand .logo,
    .navbar-brand .logo-dark {
        width: 180px;
    }
    .yellow-cta {
        top: 0;
    }
}
@media only screen and (max-width: 767px) {
    :root {
        --indent: 24px;
    }
    
}
@media only screen and (max-width: 600px) {
    .items-container .project-item {
        width: 100%;
    }
}
