/* --------------------- Algemeen --------------------- */
/* marges  */
.container {
    max-width: 1600px;
    width: 90vw;
    margin: 0 auto;
}

/* --------------------- section 1 - Titel --------------------- */
.sectie1 {
    margin: var(--margin-sections);
    padding: var(--padding-sections);
    margin-top: 50px;
    min-height: 90vh;
    display: flex
;
    flex-direction: column;
    justify-content: center;
}

.sectie1 .split{
    gap: 32px;
    grid-template-columns: 0.6fr 1fr;
}

.sectie1 .content.cta{
    padding: 54px;
    background-color: var(--bg2);
    text-align: center;
}

.sectie1 .content.cta.model{
    padding: 0px;
    background-color: var(--bg1);
    text-align: center;
} 

.sectie1 .content.cta .btn{
    margin: 10px;
} 

.sectie1 .content.cta p{
    margin-bottom: 32px;
} 

.sectie1 .content.cta .overline{
    margin-bottom: 6px;
}

.sectie1 .container img {
    aspect-ratio: 24 / 12;
    margin-bottom: 32px;
    width: 100%;
    min-width: 300px;
    margin: AUTO;
    height: auto;
    object-fit: cover;
    max-width: 400px;
}


/* --------------------- form--------------------- */

.offerte-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 5px;
    text-align: left;
}

.form-group input::placeholder {
    font-weight: 400;
    color: white;  /* Je kan de kleur aanpassen naar wens */
    opacity: 1;  /* Zorgt ervoor dat de kleur niet transparant is */
}

.form-group input {
    padding: 15px 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background-color: var(--bg2);
    color: white;
}

.cta-button {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #0056b3;
}


/* --------------------- footer--------------------- */


/* --------------------- Laad scherm --------------------- */


/* --------------------- Fontchange scherm --------------------- */

/* --------------------- Mediaquerries --------------------- */


/* Tablet */
@media screen and (max-width: 1023px) {
}

/* Mobile */
@media screen and (max-width: 767px) {

    .hidden-mobile{
        display: none;
    }

    .sectie1 .split{
        gap: 32px;
        grid-template-columns: 1fr;
    }

    .sectie1 .container img {
        width: 50%;
    }

    .sectie1 {
        margin: var(--margin-sections);
        padding: var(--padding-sections);
        margin-top: 65px;
    }
}