body {
    margin: 0;
    padding: 0;
    font-family: Verdana, Arial, sans-serif;
    background-color: rgb(254, 254, 254);
}

header {
    background-color: #333333;
    font-family: system-ui, sans-serif;
    color: white;
    padding: 10px; 
    display: flex;
    justify-content: space-between;
    align-items: center; 
}

.logo {
    max-width: 100%; 
    height: auto;
    max-height: 80px; 
    object-fit: contain; 
    margin-top: 2px;
    margin-left: 2px;
}

nav {
    display: flex;
    align-items: center;
    margin-right: 25px;
    font-size: 19px;
}

nav a {
    text-decoration: none;
    color: white;
    padding: 5px; 
    margin: 0 5px; 
    transition: background-color 0.3s;
}

nav a:hover {
    background-color: #555;
}


.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #333;
    padding: 5px;
    position: relative; /* Houdt de navbar in de normale stroom */
    z-index: 1000; /* Zorgt ervoor dat de navbar boven andere elementen komt */
}

.nav-list {
    list-style: none;
    display: flex; /* Zichtbaar op desktop */
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.nav-list li {
    margin: 0 5px; /* Ruimte tussen de menu-items */
}

.nav-list a {
    color: white;
    text-decoration: none;
    padding: 10px; /* Voeg padding toe voor een betere klikbaarheid */
}

/* Styling voor het hamburgermenu */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    height: 3px;
    width: 25px;
    background-color: white;
    margin: 2px 0;
}

/* Styling voor de terugknop */
.close-button {
    display: none;
    background: none; /* Geen achtergrondkleur */
    border: none; /* Geen rand */
    color: white; /* Witte tekst */
    font-size: 16px; /* Pas het lettertype aan */
    cursor: pointer; /* Handcursor bij hover */
    margin: 50px 0; /* Ruimte boven en onder de knop */
    font-size: 18px;
    font: monospace ;
    list-style-type: none;
    padding-left: 0px;
}

/* Optioneel: Hover-effect voor de terugknop */
.close-button:hover {
    text-decoration: underline; /* Onderstrepen bij hover */
}

/* Responsieve styling */
@media (max-width: 768px) {

    .nav-list {
        display: none; /* Verborgen op mobiele apparaten */
        flex-direction: column; /* Verticale lijst op mobiel */
        width: 100%;
        position: fixed; /* Gebruik fixed voor overlay effect */
        top: 0; /* Begin bovenaan het scherm */
        left: 100px;
        background-color: rgba(51, 51, 51, 0.8); /* Donkere achtergrond met transparantie */
        height: 100%; /* Vul het hele scherm */
        padding-top: 100px; /* Zorg ervoor dat het onder de navbar komt */
        z-index: 999; /* Zorg ervoor dat het boven de inhoud komt */
        list-style-type: disc;
        padding-left: 20px;
    }
    .nav-list li {
        margin: 10px ; /* 20px ruimte boven en onder de items */
    }

    /* Vergroot de klikbare zone van de links */
    .nav-list a {
        padding: 5px ; /* 15px padding boven en onder voor grotere klikbare zones */
        font-size: 18px;
    }

    .nav-list.active {
        display: flex; /* Toont het menu als actief */
    }

    .menu-toggle {
        display: flex; /* Toont het hamburgermenu op mobiel */

    }
    .close-button {
        list-style-type: none; /* Geen opsommingsteken bij de terugknop */
        margin-left: 0; /* Zorg dat de terugknop niet naar het midden verschuift */
        padding-left: 0; /* Verwijder eventuele extra padding aan de linkerkant */
        display: block;
        text-align: left; /* Zorg ervoor dat de knop links uitgelijnd blijft */
        position: absolute; /* Absoluut positioneren */
        left: 20px; /* Zet de knop 20px van de linkerkant */
        top: 10px; /* Plaats de knop wat lager vanaf de top */
        color: white; /* Kleur van de knop */
    }
}

footer {
    background-color: #333333;
    color: white;
    bottom: 0px;
    padding: 30px;
    justify-content: space-between;
    text-align: center;
    min-height: 10px;
}


.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;

}   

.copyright {
    position: absolute; /* Position the copyright text absolutely */
    top: 0; /* Position it at the top relative to the parent .footer-content */
    right: 0; /* Position it at the right relative to the parent .footer-content */
    font-size: smaller; /* Reduce the font size to make it smaller */
}

.contact-info, .address, .social-media {
    flex-basis: 30%;
}

.social-media img {
    width: 30px;
    height: auto;
    vertical-align: middle; /* Align images verticaal */
    margin-right: 10px;
}

.social-media a {
    color: white; /* hyperlink kleur veranderen */
    text-decoration: none; /* Remove underline */
}

.social-media a:hover {
    text-decoration: underline; /* Add underline bij hover */
}

.superscript {
    vertical-align: super; /* Align the superscript text */
}

main {
    background-color: rgb(254, 254, 254);
    min-height: calc(100vh - 150px);
}
.callToAction-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* aanpassingen voor mobiel scherm*/
@media screen and (max-width: 1020px) {
    .activities-left {
        text-align: left;
        margin-right: 25%;
        margin-bottom: 25px;
        padding: 0px;
        padding-left: 0px;
        color: black;
        background-color:rgba(235, 235, 235);
        border-radius: 0px 25px 25px 0px;
    }
    
    .activities-right{
        text-align: right;
        margin-left: 25%;
        margin-bottom: 25px;
        padding: 0px;
        padding-right: 0px;
        color: black;
        background-color:rgba(235, 235, 235);
        border-radius: 25px 0px 0px 25px;
    }
    
    
    .callToAction {
        display: none;
    }  
.quotes-overlay {
    position: absolute;
    top: 0;
    right: 25%;
    width: 50%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.quotes {
    
    margin-bottom: 20px;
    font-size: 2.2em;
    text-align: center;
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 20px;
    color: white;
    text-shadow: 3px 3px 4px rgba(0, 0, 0, 0.5);

}



.slideshow-container {
    position: relative;
    width: 100%; /* Set width to 100% */
    margin: 0; /* Remove margin */
    padding: 0; /* Remove padding */
}
  
.mySlides {
    display: none;
}

img {
    width: 100%;
    height: 700px; /* Vaste hoogte, pas aan zoals gewenst */
    object-fit: cover; /* Behoudt de verhoudingen van de afbeelding zonder deze uit te rekken */
    align-items: center;
}
}

.callToAction {

    text-align: left;
    padding-left: 20px;
    padding-bottom: 20px;
    padding-top: 20px;
    padding-right: 10px;
    border-radius: 0px 25px 25px 0px;
    text-align: left;
    color: rgb(240, 240, 240);
    background-color: rgba(51,51,51,0.95);
}
.callToAction h2 {
    font-size: 1.4em;
}
.callToAction p {
    font-size: 1.2em;
}
.callToAction_button{
    
    flex: 1; /* Take up 1/4 of the container */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    text-decoration: none;
    padding: 0;
    color: rgb(255, 255, 255);
    background:  rgba(0, 0, 0, 0.2);
    transition: background-color 1s ease;
    transition: font 0.5s ease;
    border-radius: 25px;
    cursor: pointer;
    font-size: 18px;
    white-space: nowrap; /* Prevent the button text from breaking into new lines */
    font-weight: bold
    
}

.callToAction_button:hover {
    text-decoration: none;
    background-color: rgba(0, 0, 0, 0.08);
    font-size: 19px;
  }

  @media screen and (min-width: 1020px) {
.quotes-overlay {
    position: absolute;
    top: 0;
    right: 5%;
    width: 50%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.quotes {
    
    margin-bottom: 20px;
    font-size: 2.2em;
    text-align: left;
    padding: 10px;
    border-radius: 10px;
    margin-bottom: 20px;
    color: white;
    text-shadow: 3px 3px 4px rgba(0, 0, 0, 0.5);

}



.slideshow-container {
    position: relative;
    width: 100%; /* Set width to 100% */
    margin: 0; /* Remove margin */
    padding: 0; /* Remove padding */
}
  
.mySlides {
    display: none;
}

img {
    width: 100%;
    height: 700px; /* Vaste hoogte, pas aan zoals gewenst */
    object-fit: cover; /* Behoudt de verhoudingen van de afbeelding zonder deze uit te rekken */
    align-items: center;
}
  }
.slideshow-overlay {
    background-color: rgba(0, 0, 0, 0.5); /* Translucent background */
    position: absolute;
    top: 0;
    left: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.scroll-down-arrow {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    cursor: pointer;
}

.scroll-down-arrow img {
    width: 40px;
    height: auto;
}


.prev:hover, .next:hover {
    background-color: #555;
}

.activities {
    margin-top: 50px;
    margin-bottom: 50px;
}

.activities-left {
    text-align: left;
    margin-right: 25%;
    margin-bottom: 25px;
    padding: 20px;
    padding-left: 40px;
    color: black;
    background-color:rgba(235, 235, 235);
    border-radius: 0px 25px 25px 0px;
}

.activities-right{
    text-align: right;
    margin-left: 25%;
    margin-bottom: 25px;
    padding: 20px;
    padding-right: 40px;
    color: black;
    background-color:rgba(235, 235, 235);
    border-radius: 25px 0px 0px 25px;
}
.activities h1 {
    color: black;
    text-align: center;
    font-style: italic;
}
.activities h2 {
    color: black;
}

.activities p {
    line-height: 1.6;

}

.about-description {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    text-align: justify;
    color: black;
}

.team-profile {
    display: flex;
    align-items: flex-start;
    margin-top: 100px;
    justify-content: space-around;
    margin-bottom: 25px;
}

.profile {
    flex: 1;
    max-width: 400px;
    text-align: left;
    display: flex;
    flex-direction: row;
}

.profile img {
    width: 150px;
    height: 150px; 
    margin-right: 25px;
    border-radius: 50%;
    margin-bottom: 2px;
}


.profile-info {
    text-align: left;
    color: black;
}

.contact-container {
    display: flex;
    flex-direction: row;
    flex: 1;
    align-items: center;
    justify-content: center;
}

.contact-container-image {
    flex: 1;
    margin-left: 20px;
    margin-bottom: 20px;
    margin-top: 20px;
}

.contact-container-image img {
    flex: 1;
    border-radius: 25px 0px 0px 25px;
    width: 100%;
    height: auto;
}

/*contact form */

#fcf-form {
    display:block;
}

.fcf-body {
    flex: 1;
    margin-right: 20px;
    font-family: -apple-system, Arial, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: left;
    background-color: #fff;
    padding: 20px;

    padding-bottom: 40px;
    height: fit-content;
    background-color:  rgba(0, 0, 0, 0.05);
    border-radius: 0px 25px 25px 0px;
    max-width: 100%;
}

.fcf-form-group {
    margin-bottom: 0.5rem;
}

.fcf-input-group {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: stretch;
    align-items: stretch;
    width: 100%;
}

.fcf-form-control {
    display: block;
    width: 100%;
    height: calc(1.5em  + 2px);
    padding: 0.375rem 0.375rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.4;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    outline: none;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.fcf-form-control:focus {
    border: 1px solid #313131;
}

select.fcf-form-control[size], select.fcf-form-control[multiple] {
    height: auto;
}

textarea.fcf-form-control {
    font-family: -apple-system, Arial, sans-serif;
    height: auto;
}

label.fcf-label {
    display: inline-block;
    margin-bottom: 0.5rem;
}

.fcf-btn {
    display: inline-block;
    font-weight: 400;
    color: #212529;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.25rem;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
    .fcf-btn {
        transition: none;
    }
}

.fcf-btn:hover {
    color: #212529;
    text-decoration: none;
}

.fcf-btn:focus, .fcf-btn.focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.fcf-btn-primary {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
}

.fcf-btn-primary:hover {
    color: #fff;
    background-color: #0069d9;
    border-color: #0062cc;
}

.fcf-btn-primary:focus, .fcf-btn-primary.focus {
    color: #fff;
    background-color: #0069d9;
    border-color: #0062cc;
    box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5);
}

.fcf-btn-lg, .fcf-btn-group-lg>.fcf-btn {
    padding: 0.5rem 1rem;
    font-size: 1.25rem;
    line-height: 1.5;
    border-radius: 0.3rem;
}

.fcf-btn-block {
    display: block;
    width: 100%;
}

.fcf-btn-block+.fcf-btn-block {
    margin-top: 0.5rem;
}

input[type="submit"].fcf-btn-block, input[type="reset"].fcf-btn-block, input[type="button"].fcf-btn-block {
    width: 100%;
}

.map-container {
    width: auto;
    height: 400px; /* Adjust height as needed */
    margin-bottom: 20px;
    padding: 20px;
}

.map-container iframe {
    border-radius: 25px;
}

.onze_projecten_title {
    text-align: center;
    border-radius: 25px;
    margin: 40px;
    color: black;
    margin-top: 50px;
    margin-bottom: 50px;
    background-color:rgba(0, 0, 0, 0.019);
}

.onze_projecten_title h1 {
    font-size: 30px;
    color: rgb(35, 35, 35);
}

.onze_projecten_title p {
    font-size: 18px;
    color: rgb(0, 0, 0)
}

.inspiratie_verwijzing {
    display: flex;
    height: 50px;
    justify-content: space-between;
    align-items: center;
    border-radius: 25px;
    margin: 40px;
    color: black;
    margin-top: 50px;
    margin-bottom: 50px;
    background-color:rgba(0, 0, 0, 0.019);
}


.inspiratie_verwijzing_tekst{
    flex: 3;
    display: flex;
    font-size: 18px;

    justify-content: center;
    color: rgb(0, 0, 0)
}

.inspiratie_verwijzing_button{
    
    flex: 1; /* Take up 1/4 of the container */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    text-decoration: none;
    padding: 0;
    color: rgb(0, 0, 0);
    background: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.08)); /* Van transparant naar donker */
    transition: background-color 1s ease;
    transition: font 0.5s ease;
    border-radius: 0px 25px 25px 0px;
    cursor: pointer;
    font-size: 18px;
    white-space: nowrap; /* Prevent the button text from breaking into new lines */
    font-weight: bold
    
}

.inspiratie_verwijzing_button:hover {
    text-decoration: none;
    background-color: rgba(0, 0, 0, 0.08);
    font-size: 19px;
  }

.activity {
    display: flex;
    flex-direction: row;
    flex: auto;
    margin: 40px;
}

.slideshow-container-project-left img {
    border-radius: 0px 25px 25px 0px;
    flex: 1;
    max-height: 600px;
}

.slideshow-container-project-left {
    flex: 1;
    width: 100%;
    position: relative;
}

.slideshow-container-project-right img {
    border-radius: 25px 0px 0px 25px;
    flex: 1;
    max-height: 600px;
}

.slideshow-container-project-right {
    flex: 1;
    width: 100%;
    position: relative;
}

.mySlides-project {
    flex: 1;
    margin: 0px;
}

.text-right {
    flex: 1;
    padding: 30px; /* Add padding here */
    text-align: center;
    background-color: rgb(235, 235, 235);
    border-radius: 0px 25px 25px 0px;
    padding-top: 5%;
}

.text-left {
    flex: 1;
    padding: 30px; /* Add padding here */
    text-align: center;
    background-color: rgb(235, 235, 235);
    border-radius:  25px 0px 0px 25px;
    padding-top: 5%;
}

.text-right, .text-left p {
    font-size: 20px;
    color:rgb(78, 78, 78);
    vertical-align: middle;
}

.text-left h2, .text-right h2 {
    text-decoration: underline;
    font-size: 40px;
    margin-top: 0;
    color: rgb(35, 35, 35);
    text-align: center;

}

.slideshow-container-project-left .prev,
.slideshow-container-project-left .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.slideshow-container-project-left .prev {
    left: 10px;
}

.slideshow-container-project-left .next {
    right: 10px;
}

.slideshow-container-project-right .prev,
.slideshow-container-project-right .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 10px;
}

.slideshow-container-project-right .prev {
    left: 10px;
}

.slideshow-container-project-right .next {
    right: 10px;
}

/* Stijl de pijltjes */
.prev, .next {
    font-size: 36px;
    color: rgb(255, 255, 255);
    padding: 5px;
    border-radius: 25%;
}

.prev:hover, .next:hover {
    background-color: rgba(255, 255, 255, 0.162);
}

.container {
    width: 80%;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.container h1 {
    text-align: center;
    color: #444;
}

.faq {
    margin-top: 20px;
}

.question {
    margin: 10px 0;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.question:hover {
    background-color: #f1f1f1;
}

.question h3 {
    margin: 0;
    font-size: 1.2em;
}

.answer {
    display: none;
    margin-top: 10px;
    font-size: 1em;
}

.answer.active {
    display: block;
}


.portfolio_tekst {
    text-align: center;
    border-radius: 25px;
    margin: 40px;
    color: black;
    margin-top: 5px;
    margin-bottom: 30px;
    background-color:rgba(0, 0, 0, 0.019);
}

.portfolio_tekst h1 {
    padding-top: 10px;
    font-size: 30px;
    color: rgb(35, 35, 35);


}

.portfolio_tekst p {
    font-size: 16px;
    font: verdena;
    color: rgba(0, 0, 0, 0.80)
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1em;
}

.photo {
    flex: 1 1 calc(25% - 2em);
    box-sizing: border-box;
}

.photo img {
    width: 100%;
    height: auto;
    display: block;
    border: 2px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s, box-shadow 0.2s;
}

.photo img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}



/* aanpassingen voor mobiel scherm*/
@media screen and (max-width: 1020px) {
    .team-profile {
        flex-direction: column;
        padding-left: 10px;
    } 
    .footer-content {
        flex-direction: column;
    }   
    header {
        flex-direction: column;
    }
    nav a {
        padding: auto; 
        margin: 0 0px; 
    }
    .logo {
        max-height: 60px; 
    }
    .activity {
        flex-direction: column;
    }
    .slideshow-container-project-left img {
        border-radius: 0px 0px 25px 25px;
        max-height: 40vh;
    } 
    .slideshow-container-project-left {
        width: auto;
    }
    .slideshow-container-project-right img {
        border-radius: 25px 25px 0px 0px;
        max-height: 40vh;
    }   
    .slideshow-container-project-right {
        width: auto;
    }     
    .text-right {
        border-radius: 0px 0px 25px 25px;
        max-height: 40vh;
        overflow-y: scroll;
        scrollbar-color: rgba(0,0,0,0);
    }
    .text-left {
        border-radius:  25px 25px 0px 0px;
        max-height: 40vh;
        overflow-y: scroll;
        scrollbar-color: rgba(0,0,0,0);
    }
    .text-right, .text-left p {
        font-size: 15px;
    }
    .text-left h2, .text-right h2 {
        font-size: 30px;
    }
    .activities {
        text-align: center;
        max-width: 750px;
        margin: 0 auto;
        color: black;
        margin-top: 50px;
        margin-bottom: 50px;
        padding: 0px;
    }
    .contact-container {
        flex-direction: column;
    }
    
    .contact-container-image {
        flex: 1;
        margin-left: 20px;
        margin-right: 20px;
        margin-bottom: 0px;
        margin-top: 20px;
    }


    .contact-container-image img {

        border-radius: 25px 25px 0px 0px;

    }
    

    
    .fcf-body {
        flex: 1;

        font-family: -apple-system, Arial, sans-serif;
        font-size: 1rem;
        font-weight: 400;
        line-height: 1.5;
        color: #212529;
        text-align: left;
        background-color: #fff;
        padding: 20px;
        padding-bottom: 40px;
        height: auto;
        background-color:  rgba(0, 0, 0, 0.05);
        border-radius: 0px 0px 25px 25px;
        width: calc(100vw - 80px);
        margin-left: 20px;
        margin-right: 20px;

    }



    .fcf-input-group {
        position: relative;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -ms-flex-align: stretch;
        align-items: stretch;
        width: auto;
    }
    
    .fcf-form-control {
        display: block;
        
        width: calc(100vw - 120px);
        height: calc(1.5em  + 2px);
        padding: 0.375rem ;
        font-size: 1rem;
        font-weight: 400;
        line-height: 1.4;
        color: #495057;
        background-color: #fff;
        background-clip: padding-box;
        border: 1px solid #ced4da;
        outline: none;
        border-radius: 0.25rem;
        transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    }

    
}









