#pk_flex_content .flex_layout.hero_home{
    max-width: 100%;
    margin-bottom: 60px;
}

#pk_flex_content .flex_layout.hero_home:has( + .flex_layout.producten_slider)
 {
    margin-bottom: 0;
}

#pk_flex_content .hero_home .hero-section{
    position: relative;
    width: 100%;
    max-height: 920px;
    height: 65vh;
}


#pk_flex_content .hero_home .hero-section .hero-inner__wrapper{
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
}

/* Content */
#pk_flex_content .hero_home .hero-content__wrapper {
    max-width: 100%;
    position: relative;
    padding: 0 20px;
    font-size: 18px;
    color: var(--white);
    z-index: 5;
}

#pk_flex_content .hero_home .hero-content__wrapper .hero-title{
    font-size: clamp(52px, 52px + (120 - 52) * ((100vw - 350px) / (1320 - 350)), 120px);
    font-weight: bold;
    color: var(--white);
    line-height: 1;
}

#pk_flex_content .hero_home .hero-content__wrapper .hero-text__content{
    max-width: 600px;
    margin-top: 16px;
    font-weight: 400;
    color: var(--white);
}

/* CTA */
#pk_flex_content .hero_home .hero-content__wrapper .hero-cta__wrapper{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 32px;
}

#pk_flex_content .hero_home .hero-cta__wrapper .hero-btn{
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--white);
    width: fit-content;
    padding: 10px 20px;
    background: var(--green);
    transition: background-color 0.3s;
}

#pk_flex_content .hero_home .hero-cta__wrapper .hero-btn__1:hover{
    background:rgba(130, 190, 66, 0.7) ;
}

#pk_flex_content .hero_home .hero-cta__wrapper .hero-btn__2{
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 0;
    background: transparent;
}

#pk_flex_content .hero_home .hero-cta__wrapper .hero-btn__2::after{
    position: relative;
    font-family: 'Material Symbols Outlined';
    font-weight: 400;
    font-size: 20px;
    content: '\e313';
    transition: transform 0.5s;
}

#pk_flex_content .hero_home .hero-cta__wrapper .hero-btn__2:hover::after {
    transform: translateY(5px);
}


/* Image */
#pk_flex_content .hero_home .hero-image__wrapper{
    position: absolute;
    inset: 0;
}
#pk_flex_content .hero_home .hero-image__wrapper img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}



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

    #pk_flex_content .hero_home .hero-section{
        height: 85vh;
    }

    #pk_flex_content .hero_home .hero-section .hero-inner__wrapper{
        display: grid;
        gap: 20px;
    }

    /* Content */
    #pk_flex_content .hero_home .hero-content__wrapper {
        grid-column: 1 / span 10;
        font-size: 30px;
    }

    #pk_flex_content .hero_home .hero-content__wrapper .hero-cta__wrapper{
        flex-wrap: nowrap;
        gap: 24px;
    }
}

@media screen and (min-width: 990px){
    #pk_flex_content .flex_layout.hero_home{
        margin-bottom: 120px;
    }
}

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

    #pk_flex_content .hero_home .hero-section{
        height: 95vh;
    }

    #pk_flex_content .hero_home .hero-content__wrapper {
        grid-column: 2 / span 8;
    }

}



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

@media screen and (max-width: 1400px){
}