.elementor-kit-5{--e-global-color-primary:#191D37;--e-global-color-secondary:#D6C9B4;--e-global-color-text:#1F1F1F;--e-global-color-accent:#A4B5C4;--e-global-typography-primary-font-family:"Cormorant";--e-global-typography-primary-font-size:25px;--e-global-typography-primary-font-weight:900;--e-global-typography-secondary-font-family:"Nunito Sans";--e-global-typography-secondary-font-size:20px;--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Nunito Sans";--e-global-typography-text-font-size:15px;--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Nunito Sans";--e-global-typography-accent-font-size:15px;--e-global-typography-accent-font-weight:600;color:#252525;font-family:"Nunito Sans", Sans-serif;font-size:15px;font-weight:400;}.elementor-kit-5 e-page-transition{background-color:#FFBC7D;}.elementor-kit-5 a{color:#B6A892;}.elementor-kit-5 h1{font-family:"Cormorant", Sans-serif;font-size:45px;font-weight:400;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}.site-header{padding-inline-end:0px;padding-inline-start:0px;}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS */.hover-block {
    position: relative;
    overflow: hidden;
}

.content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: gap 0.4s ease; /* optioneel */
}

/* De knop die moet inschuiven */
.iconlist-knop {
    opacity: 0;
    transform: translateY(20px);  /* lager beginnen */
    max-height: 0;
    overflow: hidden;
    transition:
        opacity 0.4s ease,
        transform 0.4s ease,
        max-height 0.4s ease;
    will-change: opacity, transform, max-height;
}

.hover-block:hover .iconlist-knop {
    opacity: 1;
    transform: translateY(0);

    /* Max-height extra groot zodat hij nooit 'knikt' */
    max-height: 200px;
}/* End custom CSS */