
/* hero section */

#hero {
    position: relative;
    height: 100svh;
    width: 100%;
    overflow: hidden;
}

.hero__background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Of de kleur en transparantie naar keuze */
    z-index: 0;
}

.hero__content-wrapper {
    position: absolute;
    top: 20svh;  
    left: 7.5vw; 
    z-index: 1;
}

.hero__title {
    color: #ffffff;
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 15px !important;
    line-height: 130%;
    width: 85vw;
}

.hero__subtitle {
    border-left: 4px solid var(--primary-color);
    color: #ffffff;
    width: 80vw;
    font-weight: 300;
    font-size: 16px;
    padding-left: 10px;
    padding-block: 3px;
    margin-bottom: 30px;
    line-height: 135%;
}

.hero_cta-button-wrapper {
    display: flex;
}

.hero__cta-button {
    display: block;
    font-weight: 500;
    color: #000;
    background-color: var(--primary-color);
    padding: 20px 30px;
    border-radius: 30px;
    font-size: 16px;
    transition: transform .3s;
    text-decoration: none;
}

.hero__decoration-desktop {
    display: none;
}

.hero__social-icons-wrapper {
    display: none;
}

/* breakpoint from mobile to tablet */
@media only screen and (min-width: 600px) {
    .hero__content-wrapper {
        top: 20%;  
        left: 10%; 
    }

    .hero__title {
        font-size: 45px;
        margin-bottom: 30px !important;
        line-height: 140%;
        width: 80vw;
    }

    .hero__subtitle {
        border-left: 4px solid var(--primary-color);
        width: 50vw;
        font-size: 18px;
        line-height: 150%;
    }

    .hero__cta-button:hover {
        transform: scale(1.03);
    }

    .hero__social-icon {
        width: 45px;
        cursor: pointer;
    }  
}

@media only screen and (min-width: 1200px) {
    .hero__content-wrapper {
        top: 25%;   
    }

    .hero__title {
        width: 60vw;
    }

    .hero__subtitle {
        width: 30vw;
    }

    .hero__decoration-desktop {
        display: block;
        position: absolute;
        z-index: 1;
        bottom: 15%;
        right: 7.5vw;
        width: 4.5vw;
    }

    .hero__social-icons-wrapper {
        position: absolute;
        right: 7.5vw;
        bottom: 30px;
        display: flex;
        gap: 20px;
    }
}

@media only screen and (min-width: 1600px) {
    .hero__title {
        font-size: 60px;
    }

    .hero__subtitle {
        font-size: 20px;
    }

    .hero__cta-button {
        font-size: 18px;
    }

    .hero__social-icons-wrapper {
        gap: 25px;
    }

    .hero__social-icon {
        width: 55px;
    }  
}

/* End of hero section */


/*scroll-down indicator*/

.hero__scroll-down-indicator {
    display: flex;
    flex-direction: column;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 5svh;
}

.arrows-wrapper {
    display: flex;
    justify-content: center;
}

.arrows {
    width: 60px;
    height: 72px;
}
  
.arrows path {
    stroke: #ffffff;
    fill: transparent;
    stroke-width: 1px;  
    animation: arrow 3s infinite;
    -webkit-animation: arrow 3s infinite; 
}
  
@keyframes arrow {
    0% {opacity:0}
    40% {opacity:1}
    80% {opacity:0}
    100% {opacity:0}
}
  
@-webkit-keyframes arrow {
    0% {opacity:0}
    40% {opacity:1}
    80% {opacity:0}
    100% {opacity:0}
}
  
.arrows path.a1 {
    animation-delay:-1s;
    -webkit-animation-delay:-1s; 
}

.arrows path.a2 {
    animation-delay:-0.5s;
    -webkit-animation-delay:-0.5s;
}

.arrows path.a3 { 
    animation-delay:0s;
    -webkit-animation-delay:0s;
}

@media only screen and (min-width: 600px) {
    .hero__scroll-down-indicator {
        bottom: 30px;
    }
}

/* end of scroll-down indicator css */


/* Intro section */

#intro {
    position: relative;
    padding-top: 50px;
}

.intro__content-container {
    display: flex;
    position: relative;
    padding-inline: 7.5vw;
}

.intro__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}

.intro__title-wrapper {
    display: flex;
}

.intro__title {
    color: #000;
    font-size: 35px;
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 140%;
}

.intro__text {
    font-size: 17px;
    color: #000000;
    line-height: 155%;
    width: auto;
}

.intro__links-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    margin-top: 50px;
    gap: 30px;
    padding-bottom: 50px;
}

.intro__link {
    text-align: center;
    text-decoration: none;
    border-radius: 50px;
    padding: 25px 0;
    font-size: 18px;
    font-weight: 500;
}

.intro__contact-link {
    background-color: var(--main-black);
    border: 1px solid var(--main-black);
    color: #ffffff;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
}

.intro__realisaties-link {
    background: transparent;
    border: 1px solid var(--main-black);
    color: var(--main-black);
}

.intro__background-decoration {
    position: absolute;
    width: 80%;
    opacity: 0.05;
    z-index: -1;
}

.intro__background-decoration-top {
    top: 0;
    right: 0;
}

.intro__background-decoration-bottom--mobile {
    transform: rotate(180deg);
    bottom: 0;
    left: 0;
}

.section-divider-container--mobile {
    display: block;
}

.section-divider-container--desktop {
    display: none;
}

.section-divider-image--mobile {
    width: 100%;
    aspect-ratio: 3/2;
    display: block;
}

@media only screen and (min-width: 600px) {
    #intro {
        padding-top: 100px;
    }

    .intro__title {
        font-size: 50px;
        line-height: normal;
    }

    .intro__text {
        font-size: 18px;
        line-height: 155%;
        width: 80vw;
        margin-top: 20px;
    }

    .intro__links-wrapper {
        position: static;
        flex-direction: row;
        gap: 40px;
        padding-bottom: 0;
    }

    .intro__link {
        padding: 25px 50px;
        font-size: 18px;
        transition: transform .3s;
    }
    
    .intro__link:hover {
        transform: scale(1.03);
    }

    .intro__background-decoration {
        width: 500px;
    }
    
    .section-divider-container--mobile {
        display: none;
    }

    .section-divider-container--desktop {
        position: relative;
        display: flex;
        justify-content: flex-end;
        gap: 40px;
        z-index: -1;
        margin-top: 10svh;
    }

    .section-divider__background {
        position: absolute;
        top: 0;
        left: 0;
        display: flex;
        flex-direction: column;
        width: 100%;
        height: 100%;
    }
    
    .section-divider__background--top {
        height: 60%;
        position: relative;
        z-index: 0;
    }
    
    .divider__background--bottom {
        height: 40%;
        background-color: var(--main-black);
        z-index: 0;
    }
    
    .section-divider__items {
        display: flex;
        flex-direction: column;
        gap: 40px;
        z-index: 1;
    }
    
    .section-divider__items--first {
        justify-content: flex-end;
        padding-bottom: 40px;
        z-index: 1;
    }
    
    .section-divider__item--kaaskorf {
        text-align: right;
    }
    
    .intro-divider__image {
        border-radius: 10px;
    }
    
    .section-divider__image--1 {
        width: 25vw;
        border-radius: 10px;
    }
    
    .section-divider__image--2 {
        width: 50vw;
        border-radius: 10px;
    }
    
    .section-divider__image--3 {
        width: 30vw;
        border-top-left-radius: 10px;
        border-bottom-left-radius: 10px;
    }
    
    .years-experience {
        width: 200px;
        aspect-ratio: 1;
        background: var(--primary-color);
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: center;
        color: #ffffff;
        font-weight: 500;
        border-radius: 10px;
    }
    
    .years-experience__number {
        font-size: 70px;
        letter-spacing: 2px;
    }
    
    .years-experience__text {
        font-size: 20px;
    }

    .intro__background-decoration-bottom--mobile {
        display: none;
    }

    .intro__background-decoration-bottom--desktop {
        transform: rotate(180deg);
        bottom: 0;
        left: 0;
    }
}

@media only screen and (min-width: 1200px) {
    .intro__text {
        width: 60vw;
    }

    .section-divider-container--desktop {
        margin-top: 0;
    }
}

@media only screen and (min-width: 1600px) {
    .intro__title {
        font-size: 60px;
    }

    .intro__text {
        font-size: 19px;
        width: 50vw;
    }

    .years-experience__text {
        font-size: 22px;
    }

    .years-experience__number {
        font-size: 75px;
    }
}

/* Intro section end */

/* Diensten section */

#diensten {
    background: var(--main-black);
    padding-top: 50px;
    padding-bottom: 75px;
}

.diensten__content-container {
    display: flex;
    flex-direction: column;
    margin-inline: 7.5vw;
}

.diensten__title-wrapper {
    display: flex;
}

.diensten__title {
    color: #ffffff;
    font-size: 45px;
    font-weight: 500;
    margin-bottom: 20px;
}

.diensten__text-wrapper {
    margin-bottom: 40px;
}

.diensten__text {
    color: #ffffff;
    font-weight: 400;
    font-size: 17px;
    line-height: 150%;
}

.diensten__diensten-voorstelling-container {
    display: grid;
    grid-row-gap: 50px;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    width: 100%;
}

.diensten__dienst-voorstelling-container {
    position: relative;
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.diensten__dienst-voorstelling--image-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 3/2;
    border-radius: 10px;
}

.diensten__dienst-voorstelling--image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.diensten__dienst-voorstelling--titel-wrapper {
    color: #ffffff;
    margin-top: 20px;
}

.diensten__dienst-voorstelling--titel {
    font-weight: 500;
    font-size: 25px;
}

.diensten__dienst-voorstelling--text-wrapper {
    margin-top: 10px;
    color: var(--black-background-text-color);
}

.diensten__dienst-voorstelling--text {
    font-size: 17px;
    line-height: 155%;
}

.underline-wrapper {
    position: relative;
    width: 100%;
    height: 2px; /* Adjust the height of the line as needed */
    margin-top: 5px;
}

.background-line {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #b1b1b1;
}

.hover-line {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
}

.diensten__dienst-voorstelling--link-container {
    flex: 1 0 auto;
    display: flex;
    margin-top: 20px;
    color: #ffffff;
    align-items: end;
}

.diensten__dienst-voorstelling--link-wrapper {
    position: relative;
    font-weight: 500;
}

@media only screen and (min-width: 600px) {
    #diensten {
        padding-top: 100px;
        padding-bottom: 200px;
    }

    .diensten__title {
        font-size: 55px;
    }

    .diensten__text {
        font-size: 18px;
        width: 60vw;
    }

    .diensten__diensten-voorstelling-container {
        grid-column-gap: 40px;
        grid-row-gap: 40px;
        grid-template-columns: 1fr 1fr;
    }

    .diensten__dienst-voorstelling--image {
        transform: scale3d(1, 1, 1);
        transform-style: preserve-3d;
        transition: transform 0.3s ease-out; /* Animation duration and easing */
    }
    
    .diensten__dienst-voorstelling-container:hover .diensten__dienst-voorstelling--image {
        /* Final transformation */
        transform: scale3d(1.05, 1.05, 1);
        will-change: transform;
    }

    .hover-line {
        width: 0;
        transition: width 0.3s ease-out;
        background-color: #ffffff;
    }
    
    .diensten__dienst-voorstelling-container:hover .hover-line {
        width: 100%;
    }
}

@media only screen and (min-width: 1200px) {
    .diensten__text {
        width: 40vw;
    }

    .diensten__diensten-voorstelling-container {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
}

@media only screen and (min-width: 1600px) {
    .diensten__title {
        font-size: 60px;
    }

    .diensten__text {
        font-size: 19px;
    }

    .diensten__dienst-voorstelling--titel {
        font-size: 27px;
    }

    .diensten__dienst-voorstelling--link-wrapper {
        font-size: 17px;
    }
}

/* Diensten section end */

/* gevelrenovatie voor en na section*/

#gevelrenovatie-voor-na {
    position: relative;
}

.gevelrenovatie-voor-na__content-container {
    display: flex;
    flex-direction: column;
    position: relative;
    gap: 50px;
    margin-inline: 7.5vw;
    z-index: 1;
    padding-bottom: 50px;
}

.gevelrenovatie-voor-na__content {
    display: flex;
    position: relative;
}

.gevelrenovatie-voor-na__image-wrapper {
    width: 100%;
    aspect-ratio: 3/2;
}

.gevelrenovatie-voor-na__image {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.gevelrenovatie_image--voor {
    border-radius: 10px;
    display: block;
}

.gevelrenovatie_image--na {
    border-radius: 10px;
    display: block;
}

.gevelrenovatie-voor-na__voor--text-wrapper {
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 10px 20px;
    background: var(--primary-color);
    border-bottom-left-radius: 10px;
    border-top-right-radius: 10px;
}

.gevelrenovatie-voor-na__voor--text {
    font-size: 21px;
    color: #ffffff;
    font-weight: 600;
}

.gevelrenovatie-voor-na__na--content {
    position: relative;
}

.gevelrenovatie-voor-na__na--text-wrapper {
    position: absolute;
    right: 0;
    bottom: 0;
    padding: 10px 20px;
    background: var(--primary-color);
    border-bottom-right-radius: 10px;
    border-top-left-radius: 10px;
}

.gevelrenovatie-voor-na__na--text {
    font-size: 21px;
    font-weight: 600;
    color: #fff;
}

.gevelrenovatie-voor-na__link-wrapper {
    display: flex;
    justify-content: center;
}

.gevelrenovatie-voor-na__link {
    text-align: center;
    background-color: var(--primary-color);
    width: 100%;
    color: #000;
    text-decoration: none;
    padding-block: 25px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 500;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
}

.gevelrenovatie-voor-na__background {
    z-index: 0;
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
}

.gevelrenovatie-voor-na__background--top {
    flex-basis: 55%;
    background: var(--main-black);
}

.gevelrenovatie-voor-na__background-decoration {
    transform: scaleY(-1);
    position: absolute;
    width: 70%;
    opacity: 0.05;
    z-index: -1;
    bottom: 0;
    right: 0;
}

@media only screen and (min-width: 600px) {
    .gevelrenovatie-voor-na__voor--text-wrapper {
        padding: 15px 40px;
    }
        
    .gevelrenovatie-voor-na__na--text-wrapper {
        padding: 15px 40px;
    }

    .gevelrenovatie-voor-na__voor--text {
        font-size: 30px;
    }

    .gevelrenovatie-voor-na__na--text {
        font-size: 30px;
    }

    .gevelrenovatie-voor-na__link {
        width: 50%;
    }

    .gevelrenovatie-voor-na__background-decoration {
        display: none;
    }
}

@media only screen and (min-width: 1000px) {
    .gevelrenovatie-voor-na__content-container {
        gap: 0;
        margin-inline: 0;
        padding-bottom: 0;
    }

    .gevelrenovatie-voor-na__content {
        gap: 5%;
    }

    .gevelrenovatie-voor-na__image-wrapper {
        width: 47.5%;
        aspect-ratio: 800/550;
    }

    .gevelrenovatie_image--voor {
        border-top-right-radius: 15px;
        border-bottom-right-radius: 15px;
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
    }
    
    .gevelrenovatie_image--na {
        border-top-left-radius: 15px;
        border-bottom-left-radius: 15px;
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
    }

    .gevelrenovatie-voor-na__voor--text-wrapper {
        position: static;
        padding: 50px 0 0 0;
        background: none;
        border-radius: 0;
    }

    .gevelrenovatie-voor-na__voor--text {
        font-size: 60px;
        padding-left: 10px;
        font-weight: 500;
        border-left: 6px solid var(--primary-color);
        margin-bottom: 50px;
    }

    .gevelrenovatie-voor-na__na--content {
        justify-content: flex-end;
        top: -150px;
    }

    .gevelrenovatie-voor-na__na--text-wrapper {
        position: static;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        padding: 0;
        background: none;
        border-radius: 0;
    }

    .gevelrenovatie-voor-na__na--text {
        font-size: 60px;
        font-weight: 500;
        color: var(--main-black);
        margin-bottom: 50px;
        padding-right: 10px;
        border-right: 6px solid var(--primary-color);
    }

    .gevelrenovatie-voor-na__link {
        position: relative;
        width: auto;
        top: -75px;
        padding: 25px 50px;
        border-radius: 50px;
        font-size: 18px;
        transition: transform .3s;
    }
    
    .gevelrenovatie-voor-na__link:hover {
        transform: scale(1.03);
    }

    .gevelrenovatie-voor-na__background--top {
        flex-basis: 40%;
    }
}

@media only screen and (min-width: 1600px) {
    .gevelrenovatie-voor-na__voor--text {
        font-size: 75px;
        border-left: 6px solid var(--primary-color);
    }

    .gevelrenovatie-voor-na__na--text {
        font-size: 75px;
        border-right: 6px solid var(--primary-color);
    }

    .gevelrenovatie-voor-na__link {
        font-size: 19px;
    }
}

/* end gevelrenovatie voor en na section*/

/* isolatiepremies section */ 

#isolatiepremies {
    padding-top: 50px;
    background: var(--main-black);
}

.isolatiepremies__written-content-wrapper {
    z-index: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    margin-inline: 7.5vw;
    padding-bottom: 50px;
}

.isolatiepremies__title-wrapper {
    display: flex;
}

.isolatiepremies__title {
    color: #fff;
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 20px;
}

.isolatiepremies__text-wrapper {
    margin-bottom: 30px;
}

.isolatiepremies__text {
    color: #fff;
    font-weight: 400;
    font-size: 17px;
    line-height: 155%;
}

.isolatiepremies__link {
    text-decoration: none;
    color: #fff;
    position: relative;
    display: flex;
    flex-direction: column;
    font-weight: 500;
}

.isolatiepremies__link--background-line {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
}

.link-indicator-arrow {
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
}

.isolatiepremies__visual-content-mobile-image {
    width: 100%;
    aspect-ratio: 3/2;
    object-fit: cover;
}

.isolatiepremies__visual-content-container--mobile {
    display: block;
}

.isolatiepremies__visual-content-container--desktop {
    display: none;
}

.isolatiepremies__images-wrapper {
    display: flex;
    justify-content: flex-end;
    z-index: 1;
    position: relative;
    gap: 40px;
}

.center-align-wrapper {
    align-self: center;
}

.flex-end-wrapper {
    display: flex;
    justify-content: flex-end;
    padding-top: 20px;
}

.isolatiepremies__images-wrapper--1 {
    width: 27.5vw;
    aspect-ratio: 6/4;
}

.isolatiepremies__image--1 {
    margin-top: 30px;
    display: block;
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.isolatiepremies__images-wrapper--2 {
    width: 45%;
    aspect-ratio: 8/5;
}

.isolatiepremies__image--2 {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.isolatiepremies__background {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.isolatiepremies__background--top {
    height: 66%;
    position: relative;
}

.isolatiepremies__background--bottom {
    height: 35%;
    background-color: var(--main-black);
}

.isolatiepremies__background-decoration {
    position: absolute;
    width: 500px;
    opacity: 0.04;
}

.isolatiepremies__background-decoration-bottom {
    transform: rotate(180deg);
    bottom: 0;
    left: 0;
}

@media only screen and (min-width: 600px) {
    #isolatiepremies {
        background: #fff;
    }

    .isolatiepremies__written-content-wrapper {
        padding-bottom: 0;
    }

    .isolatiepremies__title {
        color: #000;
        font-size: 55px;
    }

    .isolatiepremies__text-wrapper {
        margin-bottom: 30px;
    }
    
    .isolatiepremies__text {
        color: #000000;
        font-size: 18px;
        line-height: 155%;
        width: 80vw;
    }

    .isolatiepremies__link {
        color: #000000;
    }

    .isolatiepremies__link--background-line {
        background-color: var(--main-black);
    }

    .isolatiepremies__visual-content-container--mobile {
        display: none;
    }

    .isolatiepremies__visual-content-container--desktop {
        display: block;
        position: relative;
        margin-top: 40px;
        z-index: 0;
    }
}

@media only screen and (min-width: 1100px) {
    .isolatiepremies__text {
        width: 55vw;
    }
}

@media only screen and (min-width: 1600px) {
    .isolatiepremies__title {
        font-size: 60px;
    }

    .isolatiepremies__text {
        font-size: 19px;
        width: 50vw;
    }

    .isolatiepremies__link {
        font-size: 17px;
    }
}

/* end isolatiepremies section*/

/* Werkwijze section */ 

#werkwijze {
    background: var(--main-black);
    padding-top: 50px;
}

.werkwijze__content-container {
    display: flex;
    flex-direction: column;
    margin-inline: 7.5vw;
    padding-bottom: 75px;
}

.werkwijze__title-wrapper {
    display: flex;
}

.werkwijze__title {
    color: #ffffff;
    font-size: 45px;
    font-weight: 500;
    margin-bottom: 20px;
}

.werkwijze__text-wrapper {
    margin-bottom: 40px;
}

.werkwijze__text {
    color: #ffffff;
    font-weight: 400;
    font-size: 17px;
    line-height: 150%;
}

.werkwijze__process-steps-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    grid-row: auto;
    gap: 75px;
    margin-top: 40px;
}

.werkwijze__process-step-wrapper {
    aspect-ratio: 1;
    background: #ffffff;
    position: relative;
    border-radius: 10px;
}

.werkwijze__process-step-wrapper:not(:last-of-type)::after {
    content: '';
    position: absolute;
    width: 7.5vw;
    height: 75px;
    background: #5B5B5B;
    right: 50%;
    transform: translateX(50%);
    bottom: -75px;
}

.werkwijze__process-step--number-wrapper {
    position: absolute;
    width: 25%;
    background: var(--primary-color);
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    top: -12.5%;
    left: 37.5%;
    border-radius: 10px;
}

.werkwijze__process-step--number {
    color: #ffffff;
    font-size: 35px;
    font-weight: 600;
}

.werkwijze__process-step--content-wrapper {
    padding: 22.5% 10% 10% 10%;
    display: flex;
    flex-direction: column;
    gap: 5%;
    height: 100%;
    width: 100%;
}

.werkwijze__process-step--icon-wrapper {
    display: flex;
    justify-content: center;
}

.werkwijze__process-step--icon {
    width: 17.5%;
    aspect-ratio: 1;
}

.werkwijze__process-step--name-wrapper {
    text-align: center;
    color: #000;
}

.werkwijze__process-step--name {
    font-weight: 500;
    font-size: 20px;
}

.werkwijze__process-step--text-wrapper {
    text-align: center;
    font-weight: 400;
}

.werkwijze__process-step--text {
    font-size: 16px;
    line-height: 150%;
}

.werkwijzen__visual-content-container-mobile {
    display: block;
}

.werkwijzen__visual-content-mobile {
    width: 100%;
    aspect-ratio: 3/2;
    object-fit: cover;
    display: block;
}

@media only screen and (min-width: 600px) {
    #werkwijze {
        padding: 100px 0 125px 0;
    }

    .werkwijze__content-container {
        padding-bottom: 0;
    }

    .werkwijze__title {
        font-size: 55px;
    }

    .werkwijze__text {
        color: #ffffff;
        font-weight: 400;
        font-size: 18px;
        line-height: 155%;
        width: 60vw;
    }

    .werkwijze__process-steps-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 7.5vw;
        margin-top: 40px;
    }

    .werkwijze__process-step-wrapper {
        border-radius: 15px;
    }

    .werkwijze__process-step-wrapper:not(:last-of-type)::after {
        display: none;
    }

    .werkwijze__process-step--number {
        font-size: 30px;
    }

    .werkwijze__process-step--text {
        font-size: 14px;
        line-height: 140%;
    }

    .werkwijzen__visual-content-container-mobile {
        display: none;
    }

    .werkwijze__process-step--name {
        font-size: 19px;
    }
}

@media only screen and (min-width: 750px) {
    .werkwijze__process-steps-wrapper {
        gap: 10vw;
    }
}

@media only screen and (min-width: 900px) {
    .werkwijze__process-step--text {
        font-size: 17px;
    }
}


@media only screen and (min-width: 1100px) {
    .werkwijze__text {
        width: 40vw;
    }
}

@media only screen and (min-width: 1300px) {
    .werkwijze__process-step-wrapper {
        aspect-ratio: 9/10;
    }

    .werkwijze__process-steps-wrapper {
        grid-template-columns: 1fr 1fr 1fr 1fr;
        gap: 3.5vw;
    }

    .werkwijze__process-step-wrapper:not(:last-of-type)::after {
        display: block;
        width: 3.5vw;
        height: 10%;
        right: -3.5vw;
        top: 45%;
        transform: none;
    }

    .werkwijze__process-step--text {
        font-size: 14px;
    }
}

@media only screen and (min-width: 1400px) {
    .werkwijze__process-step-wrapper {
        aspect-ratio: 1;
    }
}

@media only screen and (min-width: 1600px) {
    .werkwijze__process-step--name {
        font-size: 20px;
    }

    .werkwijze__process-step--text {
        font-size: 17px;
    }

    .werkwijze__title {
        font-size: 60px;
    }

    .werkwijze__text {
        font-size: 19px;
        width: 40vw;
    }

    .werkwijze__process-step--number {
        font-size: 35px;
    }
}

/* Werkwijze section end */ 

/* Contact section */ 
#contact {
    position: relative;
}

.contact__content-container {
    display: flex;
    position: relative;
    width: auto;
    padding-top: 50px;
    padding-bottom: 30px;
    margin-inline: 7.5vw;
}

.contact__content-wrapper {
    display: flex;
    flex-direction: column;
}

.contact__inner-wrapper {
    display: flex;
    flex-direction: column;
}

.contact__title {
    color: #000;
    font-size: 45px;
    font-weight: 500;
    margin-bottom: 20px;
}

.contact__text-wrapper {
    margin-bottom: 30px;
}

.contact__text {
    color: #000000;
    font-weight: 400;
    font-size: 17px;
    line-height: 150%;
}

.contact__section-divider {
    display: none;
}

.contact__info-section {
    position: static;
    width: auto;
    height: auto;
    display: flex;
}

.contact__image-container {
    display: none;
}

.contact__info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 50px;
    padding-left: 2.5vw;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 40px;
    flex-grow: 1;
}

.contact__info--link {
    display: flex;
    gap: 10px;
    text-decoration: none;
    color: #000000;
    font-style: normal;
    font-size: 18px;
}

.contact__info--icon {
    width: 30px;
    aspect-ratio: 1;
    display: block;
}

.contact__info--text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #000;
    font-weight: 400;
    font-size: 18px;
    gap: 5px;
}

.form-elements-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 40px;
}

.form-element-wrapper {
    display: flex;
    flex-direction: column;
    flex: 1;
    border-bottom: 1px solid var(--main-black);
    padding-bottom: 10px;
    gap: 20px;
}

.message-wrapper {
    padding-bottom: 0;
    border: none;
}

.form-elements-gap {
    gap: 20px;
    display: flex;
    flex-direction: column;
}

textarea {
    outline: none;
    border: 1px solid var(--main-black);
    height: 150px !important;
    width: 100% !important;
    background: transparent;
    padding: 15px;
    resize: none;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif !important;
    font-weight: 300;
    border-radius: 10px;
    font-size: 17px;
}

.form-label {
    font-size: 20px;
    color: #000;
    font-weight: 400;
}

.form-input {
    border: none;
    outline: none;
    background: transparent;
    min-height: 20px;
    padding-left: 2px;
    font-size: 18px;
    font-family: inherit;
    font-weight: 400;
    color: var(--main-black);
}

input::placeholder {
    color: #acacac !important;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif !important;
    font-size: 18px !important;
    font-weight: 300;
}

.dropdown {
    position: relative;
    user-select: none;
}

.dropdown-trigger {
    padding-left: 2px;
    display: block;
    cursor: pointer;
    outline: none;
}
  
.dropdown-menu {
    overflow: hidden; /* Hide the overflow content */
    transition: transform 0.4s ease-in-out, border-width 0.4s ease-in-out;
    transform-origin: top;
    position: absolute;
    top: calc(100% + 11px);
    left: 0;
    right: 0;
    background: #FBFBFB;
    padding-block: 10px;
    border-bottom: 0px solid var(--main-black);
    transform: scaleY(0);
    z-index: 1000;
}

.is-active .dropdown-menu {
    transform: scaleY(1); /* Adjust as needed for your content */
    border-width: 1px; /* Restore the border when the dropdown is active */
}
  
.dropdown-option {
    padding: 10px;
    cursor: pointer;
    outline: none;
}
  
.contact-form__dropdown-indicator-arrow {
    width: 13px;
    height: 13px;
    display: inline-block;
    position: relative;
    bottom: -5px;
    left: 0;
    transition: 0.4s ease;
    text-align: left;
    transform: rotate(0);
    float: right;
}

.contact-form__dropdown-indicator-arrow::before {
    content: "";
    background-color: transparent;
    width: 2px;
    height: 10px;
    display: inline-block;
    position: absolute;
    border-bottom: 12px solid var(--main-black);
    top: 0;
    left: 0;
    transform: rotate(-135deg);
    transition: 0.4s ease;
}

.contact-form__dropdown-indicator-arrow::after {
    content: "";
    background-color: transparent;
    width: 2px;
    height: 10px;
    display: inline-block;
    position: absolute;
    border-bottom: 12px solid var(--main-black);
    top: 0;
    left: 0;
    transform: rotate(135deg);
    transition: 0.4s ease;
}
    
.is-active .contact-form__dropdown-indicator-arrow {
    transform: translate(0, -6px);
}
  
.is-active .contact-form__dropdown-indicator-arrow::before {
    transform: rotate(-45deg);
}
  
.is-active .contact-form__dropdown-indicator-arrow::after {
    transform: rotate(45deg);
}

.selected-message-subject__text {
    color: #acacac;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    font-size: 18px;
    font-weight: 300;
}

.chose-a-subject .selected-message-subject__text {
    color: var(--main-black);
}

.submit-button-and-turnstile-verification-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.form-disclaimer-text {
    color: #000;
    font-size: 14px;
    font-weight: 400;
    line-height: 135%;
    margin-top: -10px;
}

.form-disclaimer-text a {
    color: #000;
}

.form-submit-button {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 20px 0;
    font-size: 18px;
    color: #000;
    outline: none;
    border: none;
    background-color: var(--primary-color);
    font-weight: 500;
    border-radius: 30px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
    transition: all 0.3s ease;
}

.submit-succes {
    color: #fff;
    background-color: #0AA937;
}

.submit-error {
    color: #fff;
    background-color: #DD1E31;
}

.loading-indicator-dots {
    display: none;
    margin-left: 10px;
    transform: translateY(14px);
}

.show-loading-indicator {
    display: flex !important;
}

@-webkit-keyframes load {
    0% {
        -webkit-transform: scale(0, 0);
        transform: scale(0, 0);
        opacity: 0;
    }
    50% {
        opacity: 1;
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }
    100% {
        -webkit-transform: scale(0, 0);
        transform: scale(0, 0);
        opacity: 0;
    }
}

@-moz-keyframes load {
    0% {
        -moz-transform: scale(0, 0);
        transform: scale(0, 0);
        opacity: 0;
    }
    50% {
        opacity: 1;
        -moz-transform: scale(1, 1);
        transform: scale(1, 1);
    }
    100% {
        -moz-transform: scale(0, 0);
        transform: scale(0, 0);
        opacity: 0;
    }
}

@-o-keyframes load {
    0% {
        -o-transform: scale(0, 0);
        transform: scale(0, 0);
        opacity: 0;
    }
    50% {
        opacity: 1;
        -o-transform: scale(1, 1);
        transform: scale(1, 1);
    }
    100% {
        -o-transform: scale(0, 0);
        transform: scale(0, 0);
        opacity: 0;
    }
}

@keyframes load {
    0% {
        -webkit-transform: scale(0, 0);
        -moz-transform: scale(0, 0);
        -o-transform: scale(0, 0);
        transform: scale(0, 0);
        opacity: 0;
    }
    50% {
        opacity: 1;
        -webkit-transform: scale(1, 1);
        -moz-transform: scale(1, 1);
        -o-transform: scale(1, 1);
        transform: scale(1, 1);
    }
    100% {
        -webkit-transform: scale(0, 0);
        -moz-transform: scale(0, 0);
        -o-transform: scale(0, 0);
        transform: scale(0, 0);
        opacity: 0;
    }
}

.loading-indicator-dots li {
    display: inline-block;
    width: 4px;
    height: 4px;
    margin-right: 6px;
    border-radius: 50%;
    margin-top: auto;
    margin-bottom: 9px;
    background: #000000;
    opacity: 0;
    -webkit-animation-name: load;
    -moz-animation-name: load;
    -o-animation-name: load;
    animation-name: load;
    -webkit-animation-duration: 3s;
    -moz-animation-duration: 3s;
    -o-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    -o-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

.loading-indicator-dots li:nth-child(2) {
    -webkit-animation-delay: 0.4s;
    -moz-animation-delay: 0.4s;
    -o-animation-delay: 0.4s;
    animation-delay: 0.4s;
}

.loading-indicator-dots li:nth-child(3) {
    -webkit-animation-delay: 0.8s;
    -moz-animation-delay: 0.8s;
    -o-animation-delay: 0.8s;
    animation-delay: 0.8s;
}

.contact__background-decoration {
    position: absolute;
    width: 80vw;
    opacity: 0.05;
    z-index: -1;
}

.contact__background-decoration-bottom-left {
    display: none;
}

.contact__background-decoration-bottom-right {
    transform: scaley(-1);
    bottom: 0;
    right: 0;
}

@media only screen and (min-width: 600px) {
    .contact__content-container {
        padding-bottom: 75px;
        justify-content: flex-end;
        width: 100%;
        padding-top: 0;
        margin-inline: 0;
    }

    .contact__content-wrapper {
        flex-basis: 100%;
    }

    .contact__inner-wrapper {
        padding: 50px 7.5vw 0 7.5vw;
    }

    .contact__title {
        font-size: 55px;
    }

    .contact__text-wrapper {
        margin-bottom: 40px;
    }

    .contact__text {
        font-size: 18px;
        width: 70vw;
    }

    .contact__info-wrapper {
        gap: 40px;
        padding-top: 0;
        padding-left: 0;
        padding-bottom: 50px;
        margin-bottom: 0;
    }

    .contact-form {
        gap: 40px;
    }

    .form-elements-wrapper {
        flex-direction: row;
        gap: 7.5vw;
    }

    .form-submit-button {
        padding: 20px 50px;
        font-size: 18px;
        width: auto;
    }
    
    .form-submit-button:hover {
        transform: scale(1.03);
    }

    .submit-button-and-turnstile-verification-wrapper {
        flex-direction: row;
        gap: 40px;
    }

    .contact__background-decoration {
        width: 40vw;
    }

    .contact__background-decoration-bottom-left {
        display: block;
        transform: rotate(180deg);
        bottom: 0;
        left: 0;
    }
}

@media only screen and (min-width: 1200px) {
    .contact__content-wrapper {
        flex-basis: 70%;
        width: 70%;
    }

    .contact__inner-wrapper {
        padding: 75px 7.5vw 0 7.5vw;
    }

    .contact__section-divider {
        display: block;
        height: 150px;
        background-color: var(--main-black);
    }

    .contact__text {
        width: 40vw;
    }

    .contact__info-section {
        position: absolute;
        top: 0;
        left: 0;
        width: 30%;
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    .contact__image-container {
        flex-grow: 1;
        display: flex;
        position: relative;
    }
    
    .contact__image-wrapper {
        position: relative;
        width: 100%;
        height: 100%;
        flex-grow: 1;
    }
    
    .contact__image-wrapper::after {
        content:'';
        position: absolute;
        width: 15px;
        height: 15px;
        background: var(--main-black);
        z-index: -1;
        right: 0;
        top: 0;
    }
    
    .contact__image {
        border-top-right-radius: 15px;
        border-bottom-right-radius: 15px;
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: absolute;
        top: 0;
        left: 0;
    }

    .contact__info-wrapper {
        gap: 40px;
        padding-top: 75px;
        padding-left: 7.5vw;
        padding-bottom: 100px;
        margin-bottom: 0;
    }

    .contact__background-decoration {
        width: 30vw;
    }
}

@media only screen and (min-width: 1600px) {
    .contact__title {
        font-size: 60px;
    }

    .contact__text {
        font-size: 19px;
    }

    .form-label {
        font-size: 21px;
    }

    .form-submit-button {
        font-size: 19px;
    }

    .contact__info--link {
        font-size: 19px;
        gap: 15px;
    }
    
    .contact__info--text {
        font-size: 19px;
    }

    .contact__info--icon {
        width: 35px;
    }

    .contact-form {
        gap: 50px;
    }
}

/* End Contact section */



