.flex_layout.tekst_afbeelding {
    position: relative;
    max-width: 100%;
    margin-bottom: 60px;
}

.tekst_afbeelding .text-image__section{
    position: relative;
}

.text-image__section .component__wrapper {
    grid-template-columns: repeat(12, 1fr);
    align-items: self-start;
    gap: 20px;
    padding: 0 20px;
}

.tekst_afbeelding .component__image{
    width: 100%;
    height: auto;
    margin: 0
}

.tekst_afbeelding .compontent-image__wrapper{
    width: 100%;
    height: 100%;
    margin-bottom: 32px;
}

.tekst_afbeelding .compontent-image__wrapper img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}



/* Content Right */
.tekst_afbeelding .component__content-right h2 {
    font-size: clamp(32px, 32px + (64 - 32) * ((100vw - 350px) / (1320 - 350)), 64px);
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 32px;
  }


.tekst_afbeelding .component__content-right .btn{
    margin-top: 32px;
}

.tekst_afbeelding .component__content-right{
    font-size: clamp(21px, 21px + (24 - 21) * ((100vw - 350px) / (1320 - 350)), 24px);
    font-weight: 500;
    line-height: 130%;
}

.tekst_afbeelding .component__content-right ul{
    margin-top:24px;
    padding: 0;
    list-style: none;
}
.tekst_afbeelding .component__content-right ul li {
    position: relative;
    display: flex;
    align-items: start;
    gap: 8px;
    margin-bottom: 16px;
    font-size: clamp(18px, 18px + (20 - 18) * ((100vw - 350px) / (1320 - 350)), 20px);
    font-weight: 400;
}

.tekst_afbeelding .component__content-right ul li::before{
    font-family: 'Material Symbols Rounded';
    content: "\e2e6";
    font-size: 20px;
    position: relative;
}
  
/* Responsive */
@media screen and (min-width:767px) {

    .tekst_afbeelding .component__wrapper {
        display: grid;
        align-items: center;
    }
    .tekst_afbeelding .component__wrapper.reverse{
        direction: rtl;
    }

    .tekst_afbeelding .component__wrapper.reverse > *{
        direction: ltr;
    }

    .tekst_afbeelding .compontent-image__wrapper {
        grid-column: 1 / 6;
        position: relative;
    }

    .tekst_afbeelding .component__image{
        width: 100%;
        height: 100%;
    }

    .tekst_afbeelding .component__content-right {
        display: block;
        grid-column: 7 / 13;
    }

    .tekst_afbeelding .component__content-right ul li {
        margin-bottom: 28px;
    }
   
}

@media screen and (min-width: 991px) {

    .flex_layout.tekst_afbeelding {
        margin-bottom: 120px;
    }

    .tekst_afbeelding .compontent-image__wrapper {
        grid-column: 2 / 7;
        position: relative;
    }

    .tekst_afbeelding .component__wrapper.reverse .component__content-right{
        padding-left: 0;
        padding-right: 40px;
    }
    .tekst_afbeelding .component__content-right {
        display: block;
        grid-column: 7 / 12;
        padding-left: 40px;
    }

}
  
@media screen and (min-width: 1199px) {
}