#pk_flex_content .flex_layout.sticky_cards{
    isolation: isolate;
    position: relative;
    max-width: unset;
    padding: 0;

}
.flex_layout.sticky_cards .flex_container{
    display: grid;
    grid-template-areas: "stack";
}
.flex_layout.sticky_cards .flex_container_inner{
    display: flex;
    grid-area: stack;
    max-width: var(--site-grid);
    margin-inline: auto;
}
.flex_layout.sticky_cards .flex_container::before{
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background-image: linear-gradient(-90deg, transparent, rgba(0,0,0,0.8));
}

.flex_layout.sticky_cards .image{
    position: sticky;
    height: 100vh; top: 0;
    grid-area: stack;
    z-index: -2;
}
.flex_layout.sticky_cards .image img{
    position: absolute;
    inset: 0;
    max-width: unset;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: -2;
}


.flex_layout.sticky_cards .subtitel{
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.flex_layout.sticky_cards .flex_container_inner .content_container{
    height: 100vh;
    position: sticky;
    top: 0;
    display: flex;
    flex-direction: column;
    width: 40%; margin-right: auto;
}

.flex_layout.sticky_cards .flex_container_inner .content_container .content_wrapper{
    margin-block: auto;
    height: fit-content;
}

#pk_flex_content .flex_layout.sticky_cards .content_container .heading{
    /* font-size: var(--heading-1); */
    line-height: 1;
    font-weight: var(--weight-regular);

}
.flex_layout.sticky_cards .card_container{
    display: flex;
    flex-direction: column;
    width: 40%;
    margin-right: 1rem;
}

#pk_flex_content .flex_layout.sticky_cards .card_container{
    margin-block: 10vh;
}
#pk_flex_content .flex_layout.sticky_cards .card_wrapper{
    display: flex;
    align-items: center;
    justify-content: center;
    /* height: 100vh; */
    /* height: 80vh; */
    margin: 50px 0px;
}
#pk_flex_content .flex_layout.sticky_cards .sticky_card{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background-color: var(--pure-white);
    padding: 3rem 4rem;
    border-radius: 1rem;
    color: var(--pure-black);
}

#pk_flex_content .flex_layout.sticky_cards .sticky_card img{
    max-width: 150px;
}

#pk_flex_content .flex_layout.sticky_cards .sticky_card h4,
#pk_flex_content .flex_layout.sticky_cards .sticky_card .content{
    color: inherit;
    margin-bottom: 0;
    color: var(--pure-black);
}

#pk_flex_content .flex_layout.sticky_cards .sticky_card h4 div{
    color: var(--pure-black);
}

#pk_flex_content .flex_layout.sticky_cards .sticky_card .counter{
    display: flex; flex-direction: row; gap: .5rem; align-items: center;
    color: var(--circuit-blue);
    font-size: var(--body-xl);
}

#pk_flex_content .flex_layout.sticky_cards .sticky_card .counter::before{
    content: '';
    background-color: currentColor;
    width: .25rem; height: .25rem;
    border-radius: 50%;
    order: 2;
    opacity: .5;
}
#pk_flex_content .flex_layout.sticky_cards .sticky_card .counter .total{
    opacity: .5;
    order: 3;
}

.flex_layout.sticky_cards .indicator_wrapper{
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: sticky;
    top: 0;
}

.flex_layout.sticky_cards .indicator{
    display: flex;
    flex-direction: column;
    gap: .5rem;
    height: fit-content;
}

.flex_layout.sticky_cards .indicator_dot{
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    border: 1px solid currentColor;
    transition: background-color 300ms ease-in-out;
}
.flex_layout.sticky_cards .indicator_dot.active{
    background-color: currentColor;
}

#pk_flex_content .flex_layout.sticky_cards .sec_knop > span{
    color: black;
}


@media only screen and (max-width: 1020px){
    .flex_layout.sticky_cards .flex_container_inner{
        padding-inline: 1rem;

    }
}

@media only screen and (max-width: 767px){
    .flex_layout.sticky_cards .flex_container_inner{
        flex-direction: column;
    }
    #pk_flex_content .flex_layout.sticky_cards .card_wrapper{
        /* height: 50vh; */
    }
    .flex_layout.sticky_cards .card_container{
        z-index: 2;
        margin-right: 0;
    }
    .flex_layout.sticky_cards .flex_container_inner .content_container{
        z-index: 1;
    }
    .flex_layout.sticky_cards .card_container,
    .flex_layout.sticky_cards .flex_container_inner .content_container{
        width: 100%;
    }
    .flex_layout.sticky_cards .flex_container_inner .content_container .content_wrapper{
        margin-top: 150px;
    }
    #pk_flex_content .flex_layout.sticky_cards .sticky_card{
        padding: 1.5rem 2rem;
    }
    .flex_layout.sticky_cards .indicator_wrapper{
        display: none;
    }
}