.technieken-section {
    width: 100%;
    height: fit-content;
    background-color: var(--background-color-2);
    padding-bottom: 2em;
}

.techniek-section-flex-area {
    display: flex;
    width: 100%;
    height: fit-content;
    margin-top: 2em;
    justify-content: center;
    gap: 5%;
}

.techniek-section-flex-area-section {
    width: 40%;
    height: fit-content;
    background-color: var(--background-color-3);
    padding: 0.4em;
    padding-top: 1em;
    padding-bottom: 2em;
    border-radius: 0.5em;
    box-shadow: 7px 3px 3px black;
}

.techniek-section-flex-area-section-above-title {
    margin-bottom: 0.4em;
    color: var(--main-brand-color);
    font-size: 1.2em;
    font-weight: 200;
    letter-spacing: 2px;
    margin-left: 1%;
}

.techniek-section-flex-area-section-title {
    font-size: 2em;
    font-weight: 300;
    color: var(--text-color-2);
    font-weight: 300;
}

.techniek-section-flex-area-section-description {
    display: flex;
    text-align: flex-start;
    width: 70%;
    margin-top: 0.6em;
    color: var(--text-color-2);
    padding-left: 0.5em;
    font-weight: 200;
}

.techniek-section-flex-area-section-image {
    display: flex;
    width: 70%;
    height: 40em;
    margin: 0 auto;
    margin-top: 2em;
    border-radius: 1em;
    box-shadow: 7px 3px 3px var(--background-color-2);
    object-fit: cover;
}


@media (max-width: 950px) {
    .techniek-section-flex-area {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2em;
    }

    .techniek-section-flex-area-section {
        width: 90%;
    }

    .techniek-section-flex-area-section-image {
        height: 25em;
        width: 80%;
    }
}