.flex_layout.afbeelding_content .afbeelding_content_wrapper{
    display: flex;
    gap: 100px;
}

.flex_layout.afbeelding_content .afbeelding_content_wrapper{
    z-index: 2;
    position: relative;
}

.flex_layout.afbeelding_content .afbeelding_content_wrapper > .image_wrapper > img{
    max-width: 550px;
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
}






.flex_layout.afbeelding_content .faq_container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 40px;
}

.flex_layout.afbeelding_content .faq_wrapper{
    border-bottom: 1px solid var(--wp--preset--color--fl-body-text);
}

.flex_layout.afbeelding_content .faq_head {
    padding: 20px 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    border-radius: 4px;
    border-radius: 0px;
}

.flex_layout.afbeelding_content .faq_head h5 {
    margin-bottom: 0;
    text-transform: none;
    font-size: 24px;
    font-weight: 600;
    padding-right: 0px;
}

.flex_layout.afbeelding_content .faq_head svg {
    fill: var(--wp--preset--color--fl-body-text);
    width: 1em;
    height: 1em;
    flex-shrink: 0;
}

.flex_layout.afbeelding_content .faq_head svg rect {
    transform-origin: center;
    transition: rotate 300ms ease-in-out;
}

.flex_layout.afbeelding_content .faq_inner {
    display: grid;
    grid-template-rows: 0fr;
    padding-inline: 0px;
    transition: grid-template-rows 300ms ease-in-out, padding-block 300ms ease-in-out;
    color: var(--wp--preset--color--fl-footer-text);
}

.flex_layout.afbeelding_content .faq_wrapper.open .faq_head svg rect:first-child {
    rotate: 90deg;
}

.flex_layout.afbeelding_content .faq_wrapper.open .faq_head svg rect:last-child {
    rotate: 180deg;
}

.flex_layout.afbeelding_content .faq_wrapper.open .faq_inner {
    padding-block: 0px;
    grid-template-rows: 1fr;
}

.flex_layout.afbeelding_content .faq_content {
    overflow: hidden;
    font-size: 18px;
}



@media screen and (max-width: 992px){
    .flex_layout.afbeelding_content .afbeelding_content_wrapper{
        gap: 50px;
    }
}


@media screen and (min-width: 768px){
    .flex_layout.afbeelding_content .afbeelding_content_wrapper{
        align-items: center;
    }
    
    .flex_layout.afbeelding_content .afbeelding_content_wrapper.image_right{
        flex-direction: row-reverse;
    }
    .flex_layout.afbeelding_content .afbeelding_content_wrapper.image_right .image_wrapper{
        text-align: right;
    }
    
    .flex_layout.afbeelding_content .afbeelding_content_wrapper > div{
        width: 50%;
    }
}
@media screen and (max-width: 767px){
    .flex_layout.afbeelding_content .afbeelding_content_wrapper{
        flex-direction: column;
        gap: 40px;
    }
    
    
    .flex_layout.afbeelding_content .afbeelding_content_wrapper > .image_wrapper > img{
        max-width: 100%;
        aspect-ratio: 1/1;
        object-fit: cover;
    }
}

/* Cirkel effect voor SKO pagina */
.image_with_circles {
  position: relative;
  display: inline-block; /* of block, afhankelijk van je layout */
  width: 100%;
}

.circle-effect-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: auto;
    
}

.circle-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 1;
  mix-blend-mode: multiply;
  transition: transform 1.3s ease;
  pointer-events: none;
}

/* Posities en groottes van de cirkels */
.circle-1 {
  width: 150px;
  height: 150px;
  top: 70%;
  left: 0%;
    
}

.circle-2 {
  width: 80px;
  height: 80px;
  top: 50%;
  left: 90%;
}

.circle-3 {
  width: 100px;
  height: 100px;
  bottom: 15%;
  right: 10%;
}

.flex_layout.afbeelding_content .afbeelding_content_wrapper {
	overflow: visible;
	/*margin-bottom: 50px;*/
}