* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
:root {
    --menu-font-size: 112px;
    --nav-font-size: 12px;
}
body {
    font-family: "Switzer", "Switzer Placeholder", sans-serif;
}
.nav {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: transparent;
    height: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 50px;
    /* box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.1); */
    z-index: 1000;
}







/* /////home */

@font-face {
    font-family: "Geist Sans";
    src: url("https://assets.codepen.io/605876/GeistVF.ttf") format("truetype");
  }
  
  :root {
    --bg: hsl(0 0% 2%);
    --color: hsl(0 0% 100% / 0.1);
    --underline-width: 1lh;
    --underline-block-width: 200vmax;
    --underline-color: hsl(0 0% 50% / 0.15);
    --underline-color-hover: hsl(180 100% 50% / 1);
    --underline-transition: 5s;
    --finish-fill: hsl(0 0% 10%);
    --accent: hsl(0 0% 100%);
    --fill: hsl(0 0% 50%);
  }
  
  
  
  #webdesign p {
    resize: both;
    max-width: 90vw;
    overflow: hidden;
    padding: 5ch;
      margin: 0;
  }
  
  #webdesign p > span {
      outline-color: hsl(10 80% 50%);
      outline-offset: 1ch;
      font-size: clamp(3rem, 4vw + 1rem, 10rem);
    color: var(--color);
    text-decoration: none;
    background-image:
          /* First one is the highlight */
          linear-gradient(90deg, transparent calc(100% - 8ch), var(--accent) calc(100%  - 8ch)),
        linear-gradient(90deg, var(--fill), var(--fill)),
      linear-gradient(90deg, var(--underline-color), var(--underline-color));
    background-size:
        var(--underline-block-width) var(--underline-width),
        var(--underline-block-width) var(--underline-width),
      100% var(--underline-width);
    background-repeat: no-repeat;
    background-position-x: 0;
    background-position-y: 100%;
    background-clip: text;
    color: var(--finish-fill);
  }
  
  /*p > span {
    background-clip: unset;
    color: transparent;
    background-position-x: -200vmax, -200vmax, 0;
    animation: fill-up 4s infinite linear;
  }
  
  @keyframes fill-up {
    to { background-position-x: 0, 0, 0; }
  }*/
  
  #webdesign section {
    position: sticky;
    top: 0;
      height: 100vh;
      width: 100vw;
    display: grid;
    place-items: center;
  }
  
  
  @supports (animation-timeline: scroll()) {
    @media (prefers-reduced-motion: no-preference) {
      
      #webdesign p > span {
        background-position-x:
          calc(var(--underline-block-width) * -1),
          calc(var(--underline-block-width) * -1),
          0;
        color: transparent;
        animation-name: fill-up, color-in;
        animation-fill-mode: both;
        animation-timing-function: linear;
          animation-timeline: --section;
          animation-range: entry 100% cover 50%, cover 50% exit 0%;
      }
  
      @keyframes fill-up {
          to { background-position-x: 0, 0, 0; }
      }
  
      @keyframes color-in {
          to { color: var(--finish-fill); }
      }
    }
  }
  
  
  /* ////////end */

.logo {
    font-size: var(--nav-font-size);
    font-weight: bold;
}

.menu-toggle {
    font-size: var(--nav-font-size);
    cursor: pointer;
}

.fullscreen-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    display: none;
    justify-content: center;
    align-items: center;
    color: black;
    font-size: var(--menu-font-size);
    flex-direction: column;


}

.fullscreen-nav a {
    color: black;
    text-decoration: none;
    margin: 20px;
    flex-direction: column;
    font-family: Switzer;
    font-size: var(--menu-font-size);
    font-weight: 700;
    grid-area: auto;
    letter-spacing: -8px;
    line-height: 180px;
}

.fullscreen-nav.active {
    display: flex;
    z-index: 1;
}

/* Donkere modus stijlen */
body.dark-theme .nav {
    background-color: transparent;
    color: #ffffff;
}

body.dark-theme .menu-toggle {
    color: #ffffff;
}

body.dark-theme .fullscreen-nav {
    background-color: black;
    color: #ffffff;
}

body.dark-theme .fullscreen-nav a {
    color: #ffffff;
    background-color: #000000;
}

.theme-switch-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
.theme-switch-container {
    margin: 0 10px;
}
.theme-switch {
    display: none;
}

.theme-switch-slider {
    width: 30px;
    height: 15px;
    background-color: #000; /* Zwart als het lichte thema is geselecteerd */
    cursor: pointer;
    position: relative;
    border-radius: 15px;
    transition: background-color 0.2s;
}

.theme-switch:checked + .theme-switch-slider {
    background-color: #fff; /* Wit als het donkere thema is geselecteerd */
}

.theme-switch-slider::before {
    content: "";
    position: absolute;
    top: 1.5px;
    left: 1.5px;
    width: 12px;
    height: 12px;
    background-color: #fff; /* Wit als het lichte thema is geselecteerd */
    border-radius: 50%;
    transition: transform 0.2s, background-color 0.2s;
}

.theme-switch:checked + .theme-switch-slider::before {
    transform: translateX(15px);
    background-color: #000; /* Zwart als het donkere thema is geselecteerd */
}
.theme-label {
    font-size: var(--nav-font-size);
}


.logo, .menu-toggle, .theme-label, .fullscreen-nav a {
    transition: filter 0.3s;
}

.logo:hover, .menu-toggle:hover, .theme-label:hover, .fullscreen-nav a:hover {
    filter: blur(3px);
}


.section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 5em;
    height: fit-content;
}
.page * {
    font-size: 10px;
}
/* .section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 5em;
    height: fit-content;
} */
.one{
    height: 100vh;
    display: flex;
    flex-direction: column; /* Voeg deze regel toe */
    align-items: center;
    justify-content: center;
    font-size: 5em;
}

.sticky {
    position: sticky;
    top: 60px;
    margin: 0;
    padding: 0;
    z-index: 100;
    color: #ffffff
}


.container {
    display: flex;
}

.half {
    flex: 1;
    padding: 20px;
}
.half img {
    width: 90%;
    height: auto;
    object-fit: cover;
}
h6 {
    font-size: 0.3em;
}
body.dark-theme {
    background-color: #000000; /* Donkere achtergrondkleur */
    color: #ffffff; /* Lichte tekstkleur */
}

body {
    transition: background-color 0.3s, color 0.3s; /* Overgangseffect */
}
body.menu-active {
    overflow: hidden;
}


@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@200;300;400;600;700;900&display=swap');

p {
    text-align: left;
    font-size: 16px;
}

.page *,
.page *::before,
.page *::after {
    box-sizing: border-box;
}


.card-container {
    /* background-color: #171717; */
    /* padding: 2em; */
    min-height: 100vh;
    display: flex;
}

.icon {
    display: inline-block;
    width: 1em;
    height: 1em;
    stroke-width: 0;
    stroke: currentColor;
    fill: currentColor;
}

.center-image,
.card__background img {
    width: 100%;
    min-height: 100%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -o-object-fit: cover;
    object-fit: cover;
}

.slick-slide {
    padding: 2em 0.5em;
}

.card-slider {
    margin: auto;
    width: 100%;
}

.card {
    background: #fff;
    display: flex;
    padding: 2em;
    flex-direction: column;
    /*align-items: flex-start;*/
    justify-content: flex-end;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    height: 350px;
    /* box-shadow: 0 10px 50px -25px rgba(0, 0, 0, 0.25); */
    box-shadow: 0 8px 30px 0 rgba(0, 0, 0, 0.2);
}

.card>* {
    transition: opacity 350ms;
}

.card--opened>* {
    opacity: 0;
}

.card__background {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: hidden;
    z-index: -1;
    text-align: left;
}

.card__background::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(to top, #fff 0, rgba(255, 255, 255, 0) 70%);
}

.card__title {
    margin: 0.5em 0;
    color: #000;
    font-weight: bold;
    text-align: left !important;
    font-size: 28px;
}



h1.card__title {
    font-size: 25px;
    padding-left: 35px;
    padding-right: 35px;
}

.card__duration {
    color: darkgray;
    text-align: left;
}

.modal-wrapper,
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
}

.modal-wrapper {
    display: flex;
    z-index: 1000000;
}

.overlay {
    background: rgba(0, 0, 0, 0.5);
    transition: opacity 150ms ease;
}

.modal {
    overflow: hidden;
    position: relative;
    margin: auto;
    width: 90vw;
    height: 85vh;
    max-width: 500px;
    background: #fff;
    border-radius: 20px;
    z-index: 999999999999;
    
}

.modal__scroll-area {
    height: inherit;
    overflow: auto;
    border-radius: inherit;
    position: relative;
    z-index: 1;
}

.modal__close-button {
    background: trasparent;
    border: none;
    margin-bottom: auto;
    color: red;
    position: absolute;
    top: 0;
    right: 0;
    padding: 2em;
    z-index: 10000000;
}

.modal__header {
    text-align: center;
    position: relative;
    display: flex;
    padding: 0.5em;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    min-height: 300px;
    z-index: 1;
}

.modal__content {
    padding: 2em;
    color: #666;
    line-height: 1.5;
    text-align: right;
}
.modal__content p {
    text-align: center; /* Centreert de tekst */
    font-size: 20px; /* Grotere lettergrootte, pas aan naar wens */
    margin-top: 15px; /* Voegt wat ruimte boven de paragraaf toe */
}


[data-modal-state=closed] .modal-wrapper {
    pointer-events: none;
}

[data-modal-state=closed] .overlay {
    pointer-events: none;
}

[data-modal-state=closed] .modal {
    opacity: 0;
}

[data-modal-state=closed] .overlay {
    opacity: 0;
}

[data-modal-state=opening] .modal__header,
[data-modal-state=opening] .modal__content,
[data-modal-state=opening] .modal__close-button,
[data-modal-state=closing] .modal__header,
[data-modal-state=closing] .modal__content,
[data-modal-state=closing] .modal__close-button {
    opacity: 0;
}

[data-modal-state=opening] .overlay {
    transition: opacity 500ms ease;
}

[data-modal-state=closing] .overlay {
    opacity: 0;
    transition: opacity 500ms ease;
}

[data-modal-state=open] .modal__header,
[data-modal-state=open] .modal__content {
    transition: opacity 450ms;
}

.page {
    position: relative;
    min-height: 100vh;
    width: 100%;
    overflow: hidden;
}
body.dark-theme .card {
background: #333; /* Donkere achtergrond voor donkere modus */
color: #fff; /* Lichte tekst voor donkere modus */
/* Eventuele andere stijlaanpassingen voor donkere modus */
}




#infoForm {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


#icon-cross {
    fill: red; /* Verandert de kleur van het icoon naar rood */
    width: 50px; /* Stelt de breedte van het icoon in op 50 pixels */
    height: 50px; /* Stelt de hoogte van het icoon in op 50 pixels */
}




/*  Verzend form knop */
@keyframes loadingDots {
    0%, 20% {
      color: rgba(0,0,0,0);
      text-shadow:
        .25em 0 0 rgba(0,0,0,0),
        .5em 0 0 rgba(0,0,0,0);
    }
    40% {
      color: white;
      text-shadow:
        .25em 0 0 rgba(0,0,0,0),
        .5em 0 0 rgba(0,0,0,0);
    }
    60% {
      text-shadow:
        .25em 0 0 white,
        .5em 0 0 rgba(0,0,0,0);
    }
    80%, 100% {
      text-shadow:
        .25em 0 0 white,
        .5em 0 0 white;
    }
  }
  
  #loadingDots {
    text-align: left;
    margin-left: 10px;
    font-size: 1em;
    content: '.';
    animation: loadingDots 1s steps(5, end) infinite;
  }
#btn{
    width: 270px;
    height: 80px;
    border: none;
    outline: none;
    background: #2f2f2f;
    color: #fff;
    font-size: 22px;
    border-radius: 40px;
    text-align: center;
    box-shadow: 0 6px 20px -5px rgba(0,0,0,0.4);
    position: relative;
    overflow: hidden;
    cursor: pointer;
   
}
#btnText {
    margin-top: 0;
}
.check-box{
    width: 80px;
    height: 80px;
    border-radius: 40px;
    box-shadow: 0 0 12px -2px rgba(0,0,0,0.5);
    position: absolute;
    top: 0;
    right: -40px;
    opacity: 0;
}

.check-box svg{
    width: 40px;
    margin: 20px;
}

svg path{
    stroke-width: 3;
    stroke: #fff;
    stroke-dasharray: 34;
    stroke-dashoffset: 34;
    stroke-linecap: round;
}

.modal__content .active{
    background: Green !important;
    transition: 1s;
}

.modal__content .active .check-box{
    right: 0;
    opacity: 1;
    transition: 1s;
}

.modal__content .active p{
    margin-right: 125px;
    transition: 1s;
}

.modal__content .active svg path{
    stroke-dashoffset: 0;
    transition: 1s;
    transition-delay: 1s;
}
.dark-theme .modal {
    background-color: #000000;
    box-shadow: 0px 0px 10px 0px rgba(255,255,255,1);
}
.dark-theme .modal__content {
    
    color: #ffffff;
}


#infoForm input, #message {
    font-family: "Roboto", sans-serif;
    outline: 0;
    background: #f2f2f2;
    width: 100%;
    border: 0;
    margin: 0 0 15px;
    padding: 15px;
    box-sizing: border-box;
    font-size: 14px;
  }
/* toevoegen aan kaarten model as dark mode aan is */
/* box-shadow: 0px 0px 10px 0px rgba(255,255,255,1); */


#moreInfo, #modaloffertewebsite{
    width: 270px;
    height: 80px;
    border: none;
    outline: none;
    background: #2f2f2f;
    color: #fff;
    font-size: 22px;
    border-radius: 40px;
    text-align: center;
    box-shadow: 0 6px 20px -5px rgba(0,0,0,0.4);
    position: relative;
    overflow: hidden;
    cursor: pointer;
   
}

#modaloffertewebsite {
    width: 80%;
    max-width: 270px;
}
/* webdesign */
body {
    --light: #ffffff;
    --dark: #000000;
  }
  
  .trigger {
    width: 100vw;
    height: 150vh;
    overflow: hidden;
    background: var(--light);
  }
  
  .down, .up {
    position: absolute;
    display: block;
    text-align: center;
    font-size: 50px;
    z-index: 2;
    width: 40%;
    text-transform: uppercase;
    font-weight: 900;
    color: var(--light);
    top: calc(50vh - 56px);
  
    &.up {
      right: 0;
      margin-left: 5%;
        margin-right: 5%;
    }
  
    &.down {
      left: 0;
      margin-left: 5%;
      margin-right: 5%;
    }
  }
  
  .box {
    height: 1.2vh;
    width: 50vw;
    margin-bottom: -0.2vh;
    background: var(--dark);
    display: block;
  }
  .test {
    min-height: 100vh;
  }
  
  


  .dark-theme .sticky {
    z-index: 1;
     mix-blend-mode: difference;
    color: #ffffff !important; 
}

.sticky {
    z-index: 100;
    /* mix-blend-mode: difference; */
    color: #000000 !important; 
}


.fullscreen-nav.active {
    z-index: 9999999999;
}

@media only screen and (max-width: 900px) {
    .down, .up {
       
        font-size: 36px;
        
      }

    .img1,
    p {
        padding-left: 35px;
        padding-right: 35px;
    }

    .modal__content {
        padding: unset;
    }

    h1.card__title {
        font-size: 20px;
        padding-left: 35px;
        padding-right: 35px;
    }
    h1.sticky {
        font-size: 1.7em; /* Pas de grootte aan naar wat je wilt */
        text-align: center; /* Centreert de tekst */
    }
    h6 {
        font-size: 0.2em; /* Pas de grootte aan naar wat je wilt */
        text-align: center; /* Centreert de tekst */
    }

}
@media only screen and (max-width: 600px) {
    .fullscreen-nav a {
        font-size: 90px;
    }
    .down, .up {
       
        font-size: 36px;
        
      }

    .img1,
    p {
        padding-left: 35px;
        padding-right: 35px;
    }

    .modal__content {
        padding: unset;
    }

    h1.card__title {
        font-size: 20px;
        padding-left: 35px;
        padding-right: 35px;
    }
    h1.sticky {
        font-size: 0.8em; /* Pas de grootte aan naar wat je wilt */
        text-align: center; /* Centreert de tekst */
    }
    h6 {
        font-size: 0.2em; /* Pas de grootte aan naar wat je wilt */
        text-align: center; /* Centreert de tekst */
    }

}

.no-scroll {
    overflow: hidden;
}


.dark-theme .card__title {
    color: #ffffff;
}



.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.7);
    border: none;
    font-size: 3rem; /* Verhoog de font-size om de pijlen groter te maken */
    font-weight: bold; /* Voeg font-weight toe om de pijlen dikker te maken */
    cursor: pointer;
}

.slider-arrow--left {
    left: 30px !important;
}

.slider-arrow--right {
    right: 30px;
}
.slider-arrow--right span, .slider-arrow--left span {
    font-size: 30px;
}

 .dark-theme .slider-arrow {
     background-color: transparent;
 }
  .dark-theme .slider-arrow--right span,  .dark-theme  .slider-arrow--left span {
    color: #ffffff;
}