/* Algemene styling */
body {
    font-family: "Montserrat", sans-serif;
    margin: 0;
    padding: 0;
}

/* Header styling */
.site-header {
    color: white;
}

.header-top {
    text-align: center;
    padding: 10px;
    font-size: 14px;
    background-color: #1c3f3a;
}

.header-main {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 20px;
    background-color: #ffff;
}

.logo img {
    max-height: 50px;
    max-width: 75px;
}

.main-navigation .nav-menu {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
}

.main-navigation .nav-menu li a {
    color: #000;
    text-decoration: none;
    padding: 5px 10px;
    font-weight: light;  
}

.quote-button {
    background-color: #F5F5F5;
    color: #333;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin-left: auto;
}



/* Responsive styling */
@media (max-width: 768px) {
    .header-main {
        flex-direction: column;
        text-align: center;
    }

    .main-navigation .nav-menu {
        flex-direction: column;
    }

    .quote-button {
        margin-top: 10px;
    }
}

.hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem;
    max-width: 1400px;
    margin: auto;
    gap: 2rem;
    margin-bottom: 7%;
}

.hero-content {
    flex: 1;
}

.subtitle {
    color: #1c3f3a;
    font-size: 1.2rem;
}

.title {
    font-size: 5rem;
    font-weight: regular;
    color: #000;
    margin: 0.5rem 0;
}

.description {
    color: #666;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cta-button {
    padding: 0.75rem 1rem;
    background-color: #1c3f3a;
    color: #fff;
    border: none;
    border-radius: 1.5rem;
    text-decoration: none;
    font-size: 1rem;
    font-family: Montserrat;
}

.review {
    display: flex;
    align-items: center;
    gap: 0.20rem;
    color: #333;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem;
}

@media (max-width: 768px) {
    .hero-section {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        margin-bottom: 2rem;
    }
}







.carousel {
    overflow: hidden;
    width: 100%;
    background-color: #F5F5F5;
    padding: 20px 0;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-track {
    display: flex;
    gap: 30px;
    animation: scroll 20s linear infinite; /* Maak het hier 20s of een andere tijd naar keuze */
}

.carousel-item {
    min-width: 150px;
    flex-shrink: 0;
}

.carousel-item img {
    max-width: 100%;
    height: auto;
}

/* Animatie voor constante scroll */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-150px * 5)); /* Aantal items x breedte */
    }
}

/* Algemeen voor de sectie */
.expertises-section {
    text-align: center;
    padding: 40px 20px;
    background-color: #f9f9f9; /* Achtergrondkleur */
}

.expertises-section h2 {
    font-size: 2em;
    margin-bottom: 10px;
    color: #333; /* Koptekst kleur */
}

.expertises-section p {
    font-size: 1.2em;
    color: #666; /* Subtekst kleur */
    margin-bottom: 7%;
}

/* Stijlen voor de expertise kaarten */
.expertise-cards {
    display: flex;
    justify-content: center; /* Centraal uitgelijnd */
    flex-wrap: wrap; /* Zorgt ervoor dat kaarten onder elkaar komen op kleine schermen */
    gap: 20px; /* Ruimte tussen kaarten */
}

.expertise-card {
    background-color: #ffffff; /* Grijze achtergrondkleur voor de kaarten */
    border-radius: 10px; /* Hoek afronding */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Schaduw effect */
    padding: 20px;
    width: calc(33% - 20px); /* 3 kaarten op desktop */
    max-width: 350px; /* Max breedte van kaarten */
    box-sizing: border-box;
    position: relative; /* Voor de knoppen */
    transition: transform 0.3s, border 0.3s; /* Voor hover effect */
}

.expertise-card:hover {
    transform: scale(1.05); /* Schaal effect bij hover */
    border: none; /* Geen rand bij hover */
}

.expertise-card .icon {
    margin-bottom: 15px;
}

/* Iconen stijl */
.expertise-card img {
    max-width: 50px; /* Zorgt ervoor dat iconen goed schaalt */
}



/* Responsive Styling */
@media (max-width: 768px) {
    .expertise-card {
        width: calc(100% - 20px); /* 1 kaart op mobiel */
        max-width: none; /* Geen max breedte op mobiel */
    }

    .expertises-section h2 {
        font-size: 1.5em; /* Kleinere koptekst op mobiel */
    }

    .expertises-section p {
        font-size: 1em; /* Kleinere subtekst op mobiel */
    }
}

/* Algemene styling voor de sectie */
.about-section {
    display: flex;
    align-items: stretch; /* Zorgt ervoor dat de sectie de hoogte van de grootste inhoud aanneemt */
    padding: 40px 20px;
    background-color: #f9f9f9; /* Achtergrondkleur */
}



.about-content {
    width: 100%;
    max-width: 1400px;

}

/* Algemene styling voor de sectie */
.about-section {
    display: flex;
    align-items: stretch; /* Zorgt ervoor dat de sectie de hoogte van de grootste inhoud aanneemt */
    padding: 40px 20px;
}

/* Introductie sectie */
.about-intro {
    flex: 1 1 33%; /* Groene sectie neemt 33% van de breedte in */
    padding: 20px; /* Extra padding */
    background-color: #0D3C31; /* Groene achtergrondkleur */
    color: white; /* Witte tekstkleur */
    position: relative; /* Voor overlay */
}

/* Overlay */
.about-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://via.placeholder.com/800'); /* Achtergrondafbeelding */
    background-size: cover; /* Zorgt ervoor dat de afbeelding de sectie bedekt */
    opacity: 0.5; /* Opacity van de overlay */
    z-index: 1; /* Onder de tekst */
}

.about-intro h2, .about-intro h3, .about-intro p {
    position: relative; /* Zet de tekst boven de overlay */
    z-index: 2; /* Zorgt ervoor dat de tekst boven de overlay staat */
}

/* Content sectie */
.about-content {
    flex: 2 1 66%; /* Grijze sectie neemt 66% van de breedte in */
    display: flex;
}

/* Styling voor de detailsectie */
.about-details {
    background-color: #0D3C31; /* Achtergrondkleur voor het detailgedeelte */
    color: white; /* Kleur van de tekst */
    border-radius: 10px; /* Hoek afronding */
    padding: 20px;
    margin-right: 20px; /* Ruimte tussen de tekst en de afbeelding */
}

.about-details h3 {
    margin-bottom: 10px;
}

.about-details p {
    margin-bottom: 10px; /* Ruimte tussen paragrafen */
}

.contact-link {
    color: #FFD700; /* Kleur van de contactlink */
    text-decoration: underline; /* Onderstreepte tekst */
    font-weight: bold; /* Vetgedrukt */
}

/* Biografie afbeelding stijl */
.biography-image {
    flex: 1; /* De afbeelding neemt de rest van de ruimte in */
}

.biography-image img {
    width: 100%; /* Zorgt ervoor dat de afbeelding de breedte aanneemt */
    border-radius: 10px; /* Hoek afronding */
}

/* Leer meer link */
.learn-more {
    margin-top: 30px;
    color: #0D3C31; /* Accent kleur */
    text-decoration: underline; /* Onderstreepte tekst */
}

/* Responsive Styling */
@media (max-width: 768px) {
    .about-section {
        flex-direction: column; /* Stapel de elementen op mobiel */
    }

    .about-intro h2, .about-intro h3 {
        font-size: 1.8em; /* Kleinere koptekst op mobiel */
    }

    .about-intro p {
        font-size: 1em; /* Kleinere subtekst op mobiel */
    }

    .contact-link {
        font-size: 1em; /* Kleinere tekstgrootte voor contactlink */
    }

    .about-content {
        flex-direction: column; /* Stapel de inhoud op mobiel */
    }

    .about-details {
        margin-right: 0; /* Verwijder de marge op mobiel */
        margin-bottom: 20px; /* Ruimte tussen secties op mobiel */
    }
}

:root {
    --default-font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
      Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC",
      "Hiragino Sans GB", "Microsoft Yahei UI", "Microsoft Yahei",
      "Source Han Sans CN", sans-serif;
  }
   
  .main-container {
    overflow: hidden;
  }
   
  .main-container,
  .main-container * {
    box-sizing: border-box;
  }
   
  input,
  select,
  textarea,
  button {
    outline: 0;
  }
   
  .main-container {
    position: relative;
    width: 1512px;
    height: 8257px;
    margin: 0 auto;
    background: #ffffff;
    overflow: hidden;
  }
  .rectangle {
    position: relative;
    width: 1512px;
    height: 49px;
    margin: 0 0 0 0;
    background: #1c3f3a;
  }
  .vuesax-linear-add {
    position: absolute;
    width: 33.941px;
    height: 33.941px;
    top: 7px;
    left: 1473px;
    background: url(./assets/images/bbf8bfbe-ea58-4666-88be-f8f69646c79f.png)
      no-repeat center;
    background-size: cover;
    z-index: 50;
  }
  .dash {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    position: absolute;
    height: 20px;
    top: 15px;
    left: 695.407px;
    color: #ffffff;
    font-family: Montserrat, var(--default-font-family);
    font-size: 16px;
    font-weight: 400;
    line-height: 19.504px;
    text-align: left;
    white-space: nowrap;
    z-index: 10;
  }
  .lorentzstraat {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    position: absolute;
    height: 20px;
    top: 15px;
    left: 538px;
    color: #ffffff;
    font-family: Montserrat, var(--default-font-family);
    font-size: 16px;
    font-weight: 400;
    line-height: 19.504px;
    text-align: left;
    white-space: nowrap;
    z-index: 9;
  }
  .ad-ede {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    position: absolute;
    height: 20px;
    top: 15px;
    left: 874px;
    color: #ffffff;
    font-family: Montserrat, var(--default-font-family);
    font-size: 16px;
    font-weight: 400;
    line-height: 19.504px;
    text-align: left;
    white-space: nowrap;
    z-index: 11;
  }
  .ellipse {
    position: absolute;
    width: 5px;
    height: 5px;
    top: 24px;
    left: 677px;
    background: url(./assets/images/dd3b8307-76c5-4a25-aa13-275352cc8ec1.png)
      no-repeat center;
    background-size: cover;
    z-index: 12;
    border-radius: 50%;
  }
  .ellipse-1 {
    position: absolute;
    width: 5px;
    height: 5px;
    top: 24px;
    left: 853px;
    background: url(./assets/images/57b1c4c5-51f1-43df-8e12-62551524752b.png)
      no-repeat center;
    background-size: cover;
    z-index: 13;
    border-radius: 50%;
  }
  .flex-row-fa {
    position: relative;
    width: 1245px;
    height: 50px;
    margin: 42px 0 0 129px;
    z-index: 263;
  }
  .button {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 10px;
    position: absolute;
    width: 186px;
    height: 50px;
    top: 0;
    left: 1059px;
    padding: 18px 32px 18px 32px;
    background: #f4f4f4;
    z-index: 1;
    border-radius: 30px;
  }
  .gratis-offerte {
    display: flex;
  }

