.elementor-151 .elementor-element.elementor-element-1115bd0c{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:90px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-151 .elementor-element.elementor-element-704f9a0{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}body.elementor-page-151:not(.elementor-motion-effects-element-type-background), body.elementor-page-151 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#262A04;}/* Start custom CSS for html, class: .elementor-element-1892fd18 *//* ========================================= */
/* RECIRCULO LIGHT SPLIT HERO (Strakke 50/50)*/
/* ========================================= */

.re-hero-light-split-sectie {
    padding: 1.5vw; 
    width: 100%;
    display: flex;
    justify-content: center;
    box-sizing: border-box;
    font-family: 'Space Grotesk', sans-serif !important;
}

.re-hero-light-card {
    background-color: #f7f7f5; 
    width: 100%;
    max-width: 1800px;
    height: 70vh; /* Strakke maximale hoogte */
    min-height: 600px; /* Voorkomt dat het té plat wordt op kleine laptops */
    border-radius: 40px;
    display: flex;
    position: relative;
    /* Geen padding-top meer, content begint direct! */
}
.re-trust-bar{
    background-color:#16150B!important;
}

/* --- Linker Tekst Helft (Exact 50%) --- */
.re-hero-text-half {
    flex: 0 0 50%; /* Forceert exact de helft van de breedte */
    padding: 60px 80px; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.re-hero-text-half h1 {
    font-size: 3.8rem !important; /* Iets kleiner om mooi in de 70vh te passen */
    font-weight: 500 !important;
    line-height: 1.1 !important;
    letter-spacing: -0.02em !important;
    color: #000000 !important;
    margin-bottom: 24px !important;
}

.re-hero-text-half .re-highlight {
    background-color: #E2FF00 !important;
    color: #000000 !important;
    padding: 0 12px;
    border-radius: 8px;
    display: inline-block;
    box-shadow: 3px 3px 0px #000;
}
.re-hero-text-half .re-highlight .re-letter { color: #000 !important; }

.re-hero-text-half p {
    font-size: 1.05rem !important;
    line-height: 1.7 !important;
    color: #4a4a46 !important;
    margin-bottom: 40px !important;
    max-width: 550px;
}

/* Zwarte outline knop styling */
.re-hero-light-split-sectie .re-btn-outline {
    border-color: #000000 !important;
    color: #000000 !important;
}
.re-hero-light-split-sectie .re-btn-outline .re-btn-icon {
    background-color: #000000 !important;
    color: #E2FF00 !important;
}
.re-hero-light-split-sectie .re-btn-outline:hover {
    background-color: #000000 !important;
}
.re-hero-light-split-sectie .re-btn-outline:hover .re-roll-text {
    color: #E2FF00 !important;
}

/* --- Rechter Foto Helft (Exact 50%) --- */
.re-hero-img-half {
    flex: 0 0 50%; /* Forceert exact de helft van de breedte */
    padding: 20px 20px 20px 0px; /* Flink minder padding rondom de afbeelding! */
    display: flex;
}

.re-hero-img-inner {
    width: 100%;
    height: 100%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15); 
}

.re-hero-img-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* --- Het Vierkantje EXACT op de Breuklijn --- */
.re-scroll-square {
    position: absolute;
    left: 50%; /* Duwt hem precies naar het midden van de kaart */
    bottom: 40px; 
    transform: translateX(-50%); /* Trekt hem z'n eigen halve breedte terug, zodat hij EXACT op de lijn ligt */
    
    width: 54px; 
    height: 54px;
    background-color: #ffffff;
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    z-index: 10;
    overflow: hidden; 
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.re-scroll-square:hover {
    background-color: #E2FF00;
}

/* Animatie van het pijltje */
.re-scroll-arrow {
    font-size: 1rem;
    color: #000000;
    animation: re-scroll-loop 2s infinite cubic-bezier(0.76, 0, 0.24, 1);
}

@keyframes re-scroll-loop {
    0%   { transform: translateY(-150%); opacity: 0; }
    20%  { transform: translateY(0); opacity: 1; }
    60%  { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(150%); opacity: 0; }
}

/* --- Responsiveness --- */
@media (max-width: 1024px) {
    .re-hero-light-card {
        flex-direction: column;
        height: auto;
    }
    .re-hero-text-half, .re-hero-img-half {
        flex: none;
        width: 100%;
    }
    .re-hero-text-half {
        padding: 60px 40px;
    }
    .re-hero-img-half {
        padding: 0 20px 20px 20px;
        height: 400px;
    }
    .re-scroll-square {
        /* Op mobiel/tablet verplaatsen we hem naar de horizontale scheidslijn */
        bottom: auto;
        top: auto; 
        margin-top: -32px; /* Trekt hem omhoog over de foto heen */
        position: relative;
    }
}

@media (max-width: 768px) {
    .re-hero-light-split-sectie { padding: 0vw 3vw; } 
    .re-hero-light-card { border-radius: 24px; }
    .re-hero-text-half h1 { font-size: 2.5rem !important; }
}
.re-info-sectie { padding: 100px 0; }
        .re-info-container { max-width: 1600px; margin: 0 auto; padding: 0 40px; display: flex; justify-content: space-between; align-items: center; gap: 60px; }
        .re-info-links h2 { font-size: 2.5rem; font-weight: 500; line-height: 1.2; margin-bottom: 32px; letter-spacing: -0.02em; }
        .re-info-rechts { max-width: 500px; }
        .re-info-rechts p { font-size: 1rem; font-weight: 400; line-height: 1.7; color: #d1d1d1; }

        @media (max-width: 850px) {
            .re-info-sectie { padding: 60px 0; }
            .re-info-container { flex-direction: column; align-items: flex-start; gap: 30px; padding: 0 20px; }
            .re-info-links h2 { font-size: 2rem; }
        }
        
/
    max-width: 100%; 
    min-height: 80px; 
}


.re-light-section .re-logo-slider-section { 
    background-color: transparent; 
}

.re-light-section .re-logo-slider::before { 
    background: linear-gradient(to right, #f7f7f5 0%, rgba(247, 247, 245, 0) 100%); 
}

.re-light-section .re-logo-slider::after { 
    background: linear-gradient(to left, #f7f7f5 0%, rgba(247, 247, 245, 0) 100%); 
}

/* Maakt logos donkergrijs/zwart op een lichte achtergrond */
.re-light-section .re-logo-track img { 
    filter: grayscale(100%) brightness(0); 
    opacity: 0.3; 
} 

.re-light-section .re-logo-track img:hover { 
    filter: grayscale(0%) brightness(1); 
    opacity: 1; 
}

/* ========================================= */
/* RESPONSIVENESS                            */
/* ========================================= */

@media (max-width: 992px) {
    .re-logo-container { 
        flex-direction: column; 
        align-items: flex-start; 
        gap: 30px; 
        padding: 0 20px; 
    }
    .re-logo-text { 
        flex: 0 0 120px; 
        text-align: left; 
    }
    .re-logo-text p { 
        font-size: 2rem; 
        font-weight: 400; 
        color: #fff; 
        margin-bottom: 0px !important; 
    }
    .re-logo-slider::before, 
    .re-logo-slider::after { 
        width: 40px; 
    }
    .re-logo-track { 
        gap: 50px; 
        margin-bottom: 0px; 
        height: 80px;
    }
    .re-logo-track img { 
        height: 90px;
    }
    .re-logo-slider-section { 
        padding: 60px 0; 
    }
    .re-scroll-square{
        display:none;
    }
}
/* ========================================= */
/* USP TRUST BAR (80% BREED & #262A04 FADE)  */
/* ========================================= */
.re-trust-bar {
    background-color: transparent !important; 
    height: 120px; 
    padding: 0; 
    overflow: hidden;
    
    /* 80% breed en keurig in het midden gecentreerd */
    width: 80%;
    max-width: 1600px;
    margin: 0 auto;
    
    position: relative;
    display: flex;
    align-items: center; 

}

/* De fade-out in de specifieke kleur #262A04 */
.re-trust-bar::before,
.re-trust-bar::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px; /* Lekker breed op desktop */
    height: 100%;
    z-index: 2;
    pointer-events: none;
}
.re-trust-bar::before {
    left: 0;
    background: linear-gradient(to right, #262A04 0%, rgba(38, 42, 4, 0) 100%);
}
.re-trust-bar::after {
    right: 0;
    background: linear-gradient(to left, #262A04 0%, rgba(38, 42, 4, 0) 100%);
}

.re-trust-container {
    display: flex;
    flex-direction: row !important; /* Forceer horizontaal! */
    flex-wrap: nowrap !important; 
    align-items: center; 
    width: max-content !important;
    gap: 80px; 
    animation: scrollUsps 30s linear infinite;
}

.re-trust-container:hover {
    animation-play-state: paused;
}

.re-trust-item {
    display: flex;
    flex-direction: row !important; /* Icoon en tekst verplicht naast elkaar */
    align-items: center; 
    gap: 16px;
    color: #ffffff !important; 
    font-weight: 500;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap !important; 
    line-height: 1; 
    margin: 0;
}

.re-trust-icon {
    font-size: 1.4rem;
    color: #E2FF00 !important; 
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1; 
}
/* GLOBALE OUTLINE KNOP (Ook voor fake-knoppen) */
/* ========================================= */

.re-btn-outline {
    display: inline-flex !important; 
    align-items: center !important; 
    background-color: transparent !important; 
    color: #000000 !important; 
    text-decoration: none !important; 
    font-weight: 600 !important; 
    font-size: 0.95rem !important; 
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important; 
    padding: 8px 24px 8px 8px !important; 
    border-radius: 50px !important; 
    border: 1px solid #000000 !important; 
    transition: background-color 0.3s ease, transform 0.2s ease !important; 
    overflow: hidden !important;
}

/* Het zwarte icoontje met gele pijl */
.re-btn-outline .re-btn-icon {
    display: flex !important; 
    justify-content: center !important; 
    align-items: center !important; 
    background-color: #000000 !important; 
    color: #E2FF00 !important; 
    width: 32px !important; 
    height: 32px !important; 
    border-radius: 50% !important; 
    margin-right: 14px !important; 
    flex-shrink: 0 !important;
}

/* HOVER EFFECTEN 
   Werkt als je over de knop zélf hovert, óf als de <a>/wrapper eromheen gehoverd wordt! 
   Tip: Geef je klikbare kaart in Elementor de class "klikbare-container" om dit te activeren.
*/
.re-btn-outline:hover,
a:hover .re-btn-outline,
.klikbare-container:hover .re-btn-outline {
    background-color: #000000 !important;
    transform: translateY(-2px) !important;
}

.re-btn-outline:hover .re-roll-text,
a:hover .re-btn-outline .re-roll-text,
.klikbare-container:hover .re-btn-outline .re-roll-text {
    color: #E2FF00 !important; 
}

/* De Keyframe Animatie */
@keyframes scrollUsps {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 40px)); } 
}

/* ========================================= */
/* MOBIELE OPTIMALISATIE VOOR DE SLIDER      */
/* ========================================= */
@media (max-width: 768px) {
    .re-trust-bar { 
        height: 70px; /* Iets rankere balk op mobiel */
        width: 90%; /* Neemt weer de volle breedte op kleine schermen */
        margin-top: 30px;
    } 
    
    /* FIX: Fade effect veel kleiner maken, anders overschaduwt het de tekst! */
    .re-trust-bar::before,
    .re-trust-bar::after {
        width: 40px; 
    }
    
    .re-trust-container { 
        gap: 40px; 
    }
    
    .re-trust-item { 
        font-size: 0.85rem; /* Net iets kleiner zodat het niet propperig oogt */
        gap: 10px; 
    }
    
    .re-trust-icon {
        font-size: 1.1rem;
    }
    
    @keyframes scrollUsps {
        0% { transform: translateX(0); }
        100% { transform: translateX(calc(-50% - 20px)); } /* Exact de helft van de mobiele gap (40px) */
    }
}/* End custom CSS */
/* Start custom CSS for container, class: .elementor-element-1115bd0c */@media (max-width: 768px) {
    /* Haalt onnodige ruimte buiten de kaart weg */
    .re-hero-light-split-sectie {
        padding: 0px 10px !important; 
    }
    /* Forceert de exacte 40px boven/onder en 20px links/rechts binnenin */
    .re-hero-text-half {
        padding: 40px 20px !important; 
    }
    /* Zorgt dat de hoeken netjes blijven */
    .re-hero-light-card {
        border-radius: 24px !important;
        overflow: hidden !important;
    }
}/* End custom CSS */