body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #6f6f6f;
}


.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    color: white;
    background: url('../images/header_comp_mobiel.jpg') no-repeat top center;
    background-size: cover;
    padding: 70px 200px;
}


@media (min-width: 768px) {
    .header {
        background: url('../images/header_comp.jpg') no-repeat top center;
    }

}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5); /* Donkere waas */
    z-index: 1;
}


.header * {
    position: relative;
    z-index: 2;
}

.logo {
    width: 275px; /* Vergroot het logo */
    margin-top:20px /* Zorgt ervoor dat het logo niet krimpt */
}

.header-text {
    margin-top:20px;
}

.header-buttons {
    margin-top: 70px;
}


@media (max-width: 768px) {
    .header {
        flex-direction: column; /* Op mobiel, items onder elkaar plaatsen */
        align-items: center;
        text-align: center; /* Tekst op mobiel gecentreerd uitlijnen */
        padding: 40px 100px;
    }

    .logo {
        order: -1;
        width: 180px;
        margin-top: 0px;
    }

    .header-text {
        margin-top: 10px; /* Verminder de ruimte boven de tekst */
    }


    .header-buttons {
        margin-top: 35px;
    }

    .header-buttons .btn {
        display: flex;
    }
}

@media (max-width: 1200px) {
    .header {
        padding: 40px 50px;
    }
}

.header h1, .header h2 {
    margin: 10px 0;
}

h1, h2{
    font-family: 'Libre Franklin', sans-serif;
    font-weight: 300;
    font-display: swap;
    src: local('Libre Franklin'), local('LibreFranklin'), url('https://fonts.googleapis.com/css2?family=Libre+Franklin:wght@100;200;300;400&display=swap') format('woff2');

}
h2{
    color: #a4a1a1;
    font-size: 1.3rem;
}

h3 {
    color: #a4a1a1;
    font-size: 1.3rem;
    margin: 20px 0;
    text-transform: uppercase;
}

h4{
    color: #a4a1a1;
    font-size: 1rem;
    font-weight: bold;
}

/*Buttons*/

.btn{
    display: inline-flex;
    font-size: 14px;
    letter-spacing: 0px;
    font-weight: 700;
    line-height: 16px;
    text-decoration: none !important;
    text-transform: uppercase;
    background-color: #ffffff;
    color: #584f4f !important;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    justify-content: center;
    padding: 16px 32px;
    text-align: center;
    white-space: nowrap;
    margin-top:20px;
}

.btn-primary {
    background-color: #008439;
    color: #ffffff !important;
}


/*Gallery*/
.gallery .image-container {
    display: flex;
    align-items: stretch; /* Zorgt ervoor dat alle items dezelfde hoogte hebben */
    height: 300px;
    cursor: pointer;
}

.gallery .image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.gallery-title{
    margin:20px 0;
}
small{
    font-size: 0.8rem !important;
}
/*Slider*/

.modal.show {
    display: block !important;
    align-items: center;
    justify-content: center;
}

.modal-dialog {
    width: 50%; /* Zorg voor een vaste breedte van de modal */
    max-width: none; /* Zorg ervoor dat max-width geen invloed heeft */
    margin: auto;
    transform: none !important;
}

.modal-content {
    width: 100%;
}

.modal-body {
    max-height: calc(100vh - 120px); /* Aanpassen als nodig, zorgt ervoor dat de inhoud niet uit het scherm loopt */
    overflow-y: auto; /* Scrollbaar maken indien nodig */
}

.modal-header {
    padding: 5px;
    border-bottom: none;
}

.modal-body {
    padding: 0 1rem 1rem 1rem;
}

.carousel-item img {
    max-height: calc(100vh - 180px);
    max-width: 100%; /* Zorgt ervoor dat de afbeeldingen altijd binnen de beschikbare ruimte passen */
    height: auto; /* Zorgt ervoor dat de afbeeldingen hun aspect ratio behouden */
    width: auto !important; /* Zorgt ervoor dat de afbeeldingen hun aspect ratio behouden */
    margin: auto;

}
.carousel-item p{
    text-align: center;
    color: #a4a1a1;
    text-transform: uppercase;
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
    background-color: #fff; /* Zet de achtergrondkleur op wit */
    background-size: 50%; /* Verklein de SVG om witruimte te creëren */
    background-repeat: no-repeat;
    background-position: center; /* Centreert de SVG in de knop */
    padding: 10px; /* Creëert extra ruimte rond de SVG */
    border-radius: 50%; /* Maakt de achtergrond rond */
}

.carousel-control-prev-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23008439' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E") !important;
   }
   
   .carousel-control-next-icon {
     background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23008439' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E") !important;
   }

   @media (max-width: 576px) {
    .modal-dialog {
        width: 90% !important;
    }
}
/*Contact*/
.contactbanner{
    background-color: #02833b;
    color:#ffffff;
    padding:50px 0;
}

.contactbanner li{
    text-align: center;
    list-style: none;
    padding: 3px;
}

.contactbanner ul{
    padding-left:0;
}
.contactbanner a{
    color: #ffffff;
}
i{
    font-size:0.8rem;
    padding-right:5px;
}


/*footer*/
footer {
    color: #343a40;
    font-size: 0.7rem;
}

footer ul {
    padding-left: 0;
    list-style: none;
}

footer a {
    color: #343a40;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}


.footermenu{
    text-align: right;
}

.footer-logo{
    padding:0;
}
.footer-logo img{
    width: 70%;
}
@media (max-width: 768px) {
    .footer-logo img{
    width: 100%;
    margin-top: 15px;
    margin-left: 10px;
}
}