:root {

    /* COLOURS  */
    --white: #ffffff;
    --bodytext: #1C252F;
    --neonpurple: #6055E7;
    --neonpurpletransparant: rgba(96,85,255,0.85);
    --greyborder: #E1E1E1;
    --greytext: #707070;
    --greybuttons: #ECEDED;
    --greytextloweropacity: rgba(112,112,112,0.7);
    --greyfooter: #FAFAFA;
    --overonsbackgroundcolor: #F8F6F2;


    /* FONT WEIGHTS */
    --light: 300;
    --normal: 400;
    --medium: 500;   
}



/* RESET  */

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

* {
    margin: 0;
}
  
html, body {
    height: 100%;
}

html {
    scroll-behavior: smooth;
}

body {
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
  
img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
}

input, button, textarea, select {
    font: inherit;
}

  p, h1, h2, h3, h4, h5, h6 {
    overflow-wrap: break-word;
}

#root, #__next {
    isolation: isolate;
}

a {
    text-decoration: none;
}



body {
   font-family: halyard-display, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
   font-weight: var(--light);
   color: var(--bodytext);
}

h1, h2, h3 {
    font-weight: var(--normal);
}

a {
    color: var(--bodytext);
}



/* NAVIGATION  */


.main-navbar {
    z-index: 10;
    position: fixed;
    min-width: 100%;
    display: flex;
    border-bottom: 1px solid var(--greyborder);
    background-color: var(--white);
    /* justify-content: space-between; */
    align-items: center;
    min-height: 50px;
    padding: 0 14px;
    justify-content: center;
    transition: all 300ms ease-in-out;
}

.logo-nav {
    width: 56px;
}

.hamburger-nav {
    cursor: pointer;
    width: 22px;
}

/* SCROLL NAV */

.scroll-down .main-navbar {
    transform: translate3d(0, -100%, 0);
}

/* .scroll-up .main-navbar {
    filter: drop-shadow(0 -10px 20px rgb(170, 170, 170));
} */


@media (min-width: 1000px) {
    .main-navbar {
        min-height: 64px;
    }

    .logo-nav {
        width: 72px;
    }
}




.btn-nav-afspraak-container {
    width: 33.3%;
    display: flex;
    justify-content: end;
}

@media (min-width: 699px) {
    .phone-icon-container {
        display: none;
    }
    .btn-nav-afspraak-mobile {
        display: none;
    }
}
@media (max-width: 698px) {
    .afspraak-container-desktop {
        display: none;
    }
}

.btn-nav-afspraak-mobile {
    margin-top: 2rem;
    color: white;
}



/* HERO  */


.hero-image {
    background-image: url(/hero.jpg);
    min-height: 100svh;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.hero-text {
    color: var(--white);
    position: absolute;
    bottom: 2rem;
    text-align: center;
    width: 100%;
}

.hero-text a {
    color: var(--white);
}

.hero-image-container {
    position: relative;
}

@media (min-width:1000px) {
    .hero-image {
        background-image: url(/hero.jpg);
        min-height: 100vh;
        width: 100%;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center center;
    }


    .hero-header {
        font-size: 3.5rem;    
    }
    
}

/* USP SECTION  */

.usp-section {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.usp-icon {
    margin: 0 auto;
    height: 42px;
}

.usps {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    flex-basis: auto;
    flex-grow: 1;
    gap: 20px;
}

.usp-sub-section {
    max-width: 200px;
}

.last-usp-icon {
    padding-left: 0.5rem;
}

.usp-title {
    margin: 4rem 0;
}

.usp-sub-section h3 {
    font-size: 1.125rem;
}

.usp-sub-section p {
    font-size: 0.875rem;
}

.usp-paragraph {
    margin: 0.625rem 0 1.5rem 0;
}

.usp-icon {
    margin-bottom: 0.625rem;
}



@media (max-width: 450px) {
    .usp-sub-section {
        width: 45%;

    }
}

@media (max-width: 320px) {
    .usp-sub-section {
        width: 200px;

    }
}

@media (min-width: 1000px) {
    .usp-title {
        margin: 2rem 0 4rem;
    }

    .usp-sub-section h3 {
        font-size: 22px;
    }

    .usp-sub-section p {
        font-size: 1rem;
    }
}

@media (min-width: 1200px) {
    .usp-sub-section {
        max-width: 210px;
    }

    .usps {
        gap: 20px;
    }
    
}

@media (min-width: 1338px) {
    .usp-sub-section {
        max-width: 240px;
    }

    .usps {
        gap: 2rem;
    }
    
}



/* OOGZORG SECTION  */

.section-oogzorg-brillen-cta {
    padding: 1.125rem 15% 1.125rem 1rem;
}

.oogzorg-brillen-cta-title {
    margin-bottom: 0.825rem;
    font-size: 2rem;
}

.oogzorg-brillen-cta-paragraph {
    margin: 0 0 1rem 0;
}

.button-purple {
    border-radius: 7px;
    background-color: #222222;
    color: var(--white);
    border: none;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 8px 25px;
    cursor: pointer;
}


@media (min-width: 768px) {

    .section-oogzorg-brillen {
        display: flex;
        flex-direction: row;
        align-items: center;
    }

    .oogzorg-brillen-img-section, .section-oogzorg-brillen-cta {
        min-width: 50%;
    }

    .section-oogzorg-brillen-cta {
        padding: 0;
    }

    .section-oogzorg-cta {
        text-align: end;
        padding: 0 20px 0 15%;
    }

    .section-monturen-cta {
        padding: 0 15% 0 20px;
    }


    .button-maak-afspraak-oogzorg {
        margin-right: 0;
        margin-left: auto;
    }

    .section-brillen {
        flex-direction: row-reverse;
    }

}

@media (min-width: 1200px) {

    .section-oogzorg-cta {
        text-align: end;
        padding: 0 80px 0 20%;
    }

    .section-monturen-cta {
        padding: 0 20% 0 80px;
    }

    .oogzorg-brillen-cta-title {
        font-size: 3.125rem;
        margin-bottom: 1rem;
    }

    .oogzorg-brillen-cta-paragraph {
        margin: 0 0 3rem 0;
    }

}
.oogzorg-brillen-img-section, .section-oogzorg-brillen-cta {
    min-width: 50%;
}

/* FAQ  */


/* FAQ SECTION  */

.faq-container {
    display: flex;
    align-items: start;
    justify-content: center;
    margin-top: 9rem;
    padding: 0 11em;
}

.faq-question-container {
    width: 60%;
    margin-bottom: 9rem;
}

.faq-title-container {
    width: 40%;
}

.faq-title {
    font-size: 2.75rem;
    font-weight: var(--normal);
    line-height: 1.26;
}

.faq-question h3 {
    font-weight: var(--medium);
    font-size: 1.25rem;
}


.faq-question-and-answer {
    border-bottom: 1px solid var(--greyborder);
    padding: 1rem 0;
    cursor: pointer;
}



.faq-answer {
    display: none;
    margin-top: 1em;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.icon-up {
    display: none;
}

.icon-down-on-click {
    display: none;
}

.active-faq {
    display: block;
}



.icon-down, .icon-up {
    min-width: 24px;
}




@media (max-width: 768px) {


.faq-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 4rem;
    padding: 0 1.3125em;
}

.faq-question-container {
    width: 100%;
    margin-bottom: 6em;
}

.faq-title-container {
    width: 100%;
}

.faq-title {
    font-size: 2rem;
    margin-bottom: 4rem;
}

.faq-question h3 {
    font-weight: var(--medium);
    font-size: 1.125rem;
}


.faq-question-and-answer {
    padding: 1rem 0;
    cursor: pointer;
}

}

@media (min-width: 769px) and (max-width: 1200px) {
    
    .faq-container {
        padding: 0 4rem;
    }

} 



/* FOOTER  */

footer {
    background-color: var(--greyfooter);
}

.footer-text-container {
    color: var(--bodytext);
    padding: 2rem 0 0 1rem;
    min-height: 240px;
}

.footer-winkel-container {
    border-bottom: solid 1px var(--greyborder);
}

.footer-title, .footer-cta-openingstijden {
    font-weight: var(--medium);
}



.footer-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-text {
    max-width: 240px;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}

.footer-cta-openingstijden {
    font-size: 0.875rem;
    text-decoration: underline;
}


/* .footer-img-container {
    max-height: 400px;
    overflow: hidden;
} */

.footer-winkel-image {
    min-width: 100%;
    aspect-ratio: 5 / 4;
    object-fit: cover;
}


@media(min-width: 768px) {
    .footer-text-container {
        display: flex;
        padding: 0 0 0 80px;
        align-items: center;
    }

    .footer-title {
        font-size: 1.75rem;
    }


    .footer-text {
    max-width: 280px;
}

}

@media(min-width: 1000px) and (max-width: 1200px) {
    .footer-text-container {
        padding: 0 0 0 20px;
    }
}

@media (min-width: 1000px) {

    .footer-winkel-container {
        display: flex;
        flex-direction: row-reverse;
    }

    .footer-img-container, .footer-text-container {
        width: 50%;
    }

    .footer-winkel-image, .footer-text-container { 
        min-height: 400px;
        max-height: auto;
    }
    

}



/* LOGO SLIDER */

.logo-slider {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100px;
  padding: 10px;
}

.logo {
  max-width: 100%;
  height: auto;
}




/* FOOTER NAV */

#footer-nav-container {
    width: 100%;
}

.footer-nav-container {
    margin-top: 0;
}

ul {
    padding: 0;
}


li {
    list-style: none;
    margin-left: 0;
    padding: 0;
}

.bellen-span {
    margin-right: 20px;
}
.email-span {
    margin-right: 30px;
}
.maandag-span {
    margin-right: 20px;
}
.dinsdag-span {
    margin-right: 26px;
}
.woensdag-span {
    margin-right: 10px;
}
.donderdag-span {
    margin-right: 8px;
}
.koopavond-span {
    margin-right: 8px;
}
.vrijdag-span {
    margin-right: 37px;
}
.zaterdag-span {
    margin-right: 24px;
}


.footer-nav-container {
    display: flex;
    flex-direction: column;
}


.footer-nav-title {
    color: var(--neonpurple);
}

@media (min-width: 1000px) {
    .footer-nav-container {
        display: none;
    }
}


/* DESKTOP NAV */



.desktop-nav {
    display: flex;
    justify-content: space-between;
    padding: 0rem 20px 2rem 20px;
}

.desktop-nav h3 {
    color: #222222;
    margin-bottom: 1.125rem;
    font-weight: var(--medium);
    font-size: 1rem;
    margin-top: 2rem;
}

.desktop-nav a {
    transition: 0.3s;
}

.desktop-nav a:hover, .desktop-nav a:focus {
    color: darkblue;
}




.openingstijden-nav-desktop {
    margin-top: 2rem;
}

@media (min-width: 1200px) {
    .desktop-nav {
        padding: 0rem 80px 2rem 80px;
    }
}


@media (max-width: 600px) {
    .desktop-nav {
        flex-direction: column;
    }
}





/* SOCIAL ICONS  */

.social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 22px;
    min-height: 55px;
}

.social-icon {
    width: 14px;
}

@media (min-width: 1000px) {

    .social-icons {
        min-height: 74px;
    }

    .social-icons {
        margin: 0 20px;
    }

}

@media (min-width: 1200px) {
    .social-icons {
        margin: 0 80px;
    }
}

@media (min-width: 1000px) and (max-width: 1200px) {
    .social-icons {
        padding: 0 0rem;
    }
}
@media (max-width: 1000px) {
    .social-icons {
        padding: 0 4rem;
    }
}
@media (max-width: 768px) {
    .social-icons {
        padding: 0 1.3125em;
    }
}

.website-ontwikkeling-link {
    font-size: 14px;
}

@media (max-width: 500px) {
    .website-ontwikkeling-link {
        font-size: 10px;
    }
    
}

.social-icons {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--greyborder);
}

.social-icons-fb-insta {
    display: flex;
    gap: 0.5rem;
}








.sidenav {
    height: 100%; /* 100% Full-height */
    width: 0; /* 0 width - change this with JavaScript */
    position: fixed; /* Stay in place */
    z-index: 9999; /* Stay on top */
    top: 0; /* Stay at the top */
    left: 0;
    background-color: var(--white); /* Black*/
    overflow-x: hidden; /* Disable horizontal scroll */
    padding-top: 60px; /* Place content 60px from the top */
    transition: 0.5s; /* 0.5 second transition effect to slide in the sidenav */
  }

  .overlay {
    height: 100%;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background: rgba(0,0,0,.3);
    overflow-x: hidden; 
  }
  
  /* The navigation menu links */
  .sidenav h3, .sidenav a {
    text-decoration: none;
    color: var(--bodytext);
    display: block;
    transition: 0.3s;
  }

  .sidenav p {
    color: var(--bodytext);
    display: block;
    transition: 0.3s;
    font-size: 1.125rem;
    font-weight: var(--medium);
  }

  @media (min-width: 768px) {
    .sidenav p {
        font-size: 1.25rem;
      }
  }
  
  /* When you mouse over the navigation links, change their color */
  .sidenav h3:hover, .sidenav a:hover, .sidenav p:hover {
    color: var(--neonpurple);
  }
  
  /* Position and style the close button (top right corner) */
  .sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
  }
  
  /* Style page content - use this if you want to push the page content to the right when you open the side navigation */
  #main {
    transition: margin-left .5s;
    padding: 20px;
  }
  
  /* On smaller screens, where height is less than 450px, change the style of the sidenav (less padding and a smaller font size) */
  @media screen and (max-height: 450px) {
    .sidenav {padding-top: 15px;}
    .sidenav a {font-size: 18px;}
  }




  #top-nav-container {
    display: block;
  }

  .top-nav-container {
    padding: 0 20px 0 20px;
  }

  .top-nav-container-text {
    width: 100%;
  }

  

  /* SLIDER  */

  .slider-container {
    overflow: hidden;
    padding: 2rem;

  }

    .slider {
      animation: slidein 30s linear infinite;
      white-space: nowrap;
    }
    
    .logos {
        width: 100%;
        display: inline-block;
        margin: 0px 0px;
    }

    .fab {
        vertical-align:middle;
    }

    /* .fab-mobile {
        vertical-align: bottom;
    } */
    
    .fab {
          width: calc(100% / 5);
          animation: fade-in 0.5s 
            cubic-bezier(0.455, 0.03, 0.515, 0.955) forwards;
    }

    .fab-mobile {
          width: calc(100% / 3);
          animation: fade-in 0.5s 
            cubic-bezier(0.455, 0.03, 0.515, 0.955) forwards;
    }

    .logos-slider-img {
        width: 30%;
        min-width: 60px;

    }

    .logo-slider-img-mobile {
        width: 40%;
        min-width: 45px;

    }

    .slider-container-mobile {
        display: none;
    }

    @media (max-width: 768px) {
        .slider-container-desktop {
            display: none;
        }

        .slider-container-mobile {
            display: block;
        }
    }

    @media (min-width: 440px) and (max-width: 768px) {
        .logo-slider-img-mobile {
            width: 35%;
            min-width: 50px;
    
        }
    }

    @media (max-width: 320px) {
        .slider-container-mobile {
            display: none;
        }
    }
   
  @keyframes slidein {
    from {
      transform: translate3d(0, 0, 0);
    }
    to {
      transform: translate3d(-100%, 0, 0);
    }
  }
  
  @keyframes fade-in {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }







  /* TEMPLATE PAGE */


  .template-hero-container {
    padding: 9rem 1rem 0 1rem;
    min-height: 100svh;
    position: relative;
  }

  .template-main-container {
    padding: 2rem 1rem 9rem 1rem;
  }

  .template-title {
    font-size: 2rem; 
    margin-bottom: 1.125rem;
  }

  .template-h2 {
    font-size: 1.5rem;
    color: var(--neonpurple);
    margin-bottom: 2rem;
  }

  

  .template-button {
    margin-top: 2rem;
  }

  .btn-nav-maak-afspraak {
    margin-top: 0;
  }

  .template-ul {
    margin-top: 4rem;
  }

  /* .template-hero-container p, .template-main-container p {
    font-size: 0.875rem;
  } */

  .template-main-container div:not(:first-child) {
    margin-top: 2rem;
  }

  .li-nav-template {
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .li-nav-template p {
    font-size: 1rem;
    text-decoration: underline;
    color: var(--greytext);
    transition: color 0.3s;
    cursor: pointer;
  }

  .li-nav-template p:hover, .li-nav-template p:focus {
    color: var(--neonpurple);
  }

  .img-nav-template {
    width: 16px;
  }

 .background-image-glasses-container {
    position: absolute;
    bottom: -100px;
    z-index: -10;
    opacity: 5%;
    overflow: hidden;
 }

 .background-image-glasses-container img {
    min-width: 120%;
 }

 .achtergrond-bril {
    pointer-events: none;
 }



 @media (min-width: 768px) {
    .template-hero-container {
        padding-left: 20px;
    }

    .template-title {
        font-size: 3rem; 
      }

    .template-hero-container p, .template-main-container p {
        font-size: 1.125rem;
      }
    
    .li-nav-template p {
        font-size: 1.25rem;
      }

    .template-main-container {
        width: 50%;
        max-width: 600px;
        margin: 0 auto;
    }

    .template-h2 {
        font-size: 1.75rem;
        margin-bottom: 2rem;
      }

    .template-main-container div:not(:first-child) {
        margin-top: 4.5rem;
      }
 }


 @media (min-width: 768px) and (max-width: 1199px) {
    .template-hero-container {
        max-width: 75%;
    }

}

 @media (min-width: 1200px) {

    .template-hero-container {
        padding-left: 80px;
        width: 50%;
    }

    .background-image-glasses-container {
        bottom: -500px;
     }
 }

/* 
 TEMPLATE PAGE WITH IMAGE */


.template-hero-container-including-image {
    display: flex;
    flex-direction: column;
}

.template-hero-image-container {
    padding: 0;
    margin: 3rem 0 4rem 0;
}

.template-hero-text-container {
    padding: 0 1rem 0 0;
}

.template-hero-container-including-image {
    padding: 9rem 0rem 0 0rem;
}

.template-hero-text-container {
    padding-left: 1rem;
}

.template-hero-container-including-image {
    max-width: 100%;
}

@media (max-width: 400px) {
    .background-image-glasses-container-with-image {
        bottom: -600px;
    }
}

@media (max-width: 600px) {
    .background-image-glasses-container-with-image {
        bottom: -800px;
    }
}
@media (max-width: 768px) {
    .background-image-glasses-container-with-image {
        bottom: -800px;
    }
}

@media (min-width: 1000px) {
    .template-hero-text-container, .template-hero-image-container {
        width: 50%;
    }

    .template-hero-container-including-image {
        flex-direction: row;
        align-items: center;
    }

    .template-hero-image-container {
        padding: 0;
        margin: 0rem 0 4rem 0;
    }

    .hero-image-template {
        min-height: 100vh;
        object-fit: cover;
    }
    
    .template-hero-container-including-image {
        padding: 0rem 0rem 0 0rem;
    }

    .template-hero-text-container {
        padding-right: 5%;
    }

}

@media (min-width: 1200px) {

    .template-hero-text-container {
        padding-left: 80px;
    }

    .template-hero-container-including-image {
        width: 100%;
    }
}



/* TEMPLATE CLICKTHROUGH BRILLEN & MONTUREN */


.click-through {
    position: relative;
}


.click-through-top-text {
    color: var(--white); 
    position: absolute;
    top: 8px;
    left: 0;
    right: 0;
    text-align: center;
}

.link-click-through-container {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 0;
}

.click-through-bottom-text a {
    font-size: 1.125rem;
    color: var(--white); 
}
.click-through-bottom-text {
    font-size: 1.125rem;
    color: var(--white); 
}

@media (max-width: 500px) {
    .click-through-top-text {
        font-size: 0.6rem;
        line-height: 1;
    }

    .link-click-through-container {
        bottom: 1rem;
        left: 1rem;
    }

    .click-through-bottom-text {
        line-height: 1.25;
    }
}



.fa-arrow-right {
    font-size: 1.125rem;
    color: var(--white); 
}

.link-click-through-container {
    display: flex;
    align-items:end;
    flex-direction: row;
    gap: 1rem;
}


#click-through-container {
    display: grid;
    grid-template-columns: auto auto;
    grid-gap: 20px;
}

.click-through-container {
    padding-bottom: 6rem;
}

.border {
    border-bottom:1px solid var(--greyborder);
    margin: 1.5rem 1rem 1.125rem 1rem;
}

.template-hero-container-click-through {
    padding: 9rem 0rem 0 0rem;
}

.click-through-text-container {
    padding: 0rem 1rem 0 1rem;
}

@media (min-width: 768px) and (max-width: 1199px) {
    .template-hero-container-click-through {
        max-width: 100%;
    }

    .click-through-text-container {
        max-width: 75%;
    }
}


@media (min-width: 1200px) {

    .template-hero-container-click-through {
        width: 100%;
    }

     .click-through-text-container {
        padding-left: 80px;
        max-width: 50%;
     }

     #click-through-container {
        display: flex;
        gap: 20px;
        padding: 3rem 80px 6rem;
    }

    .border {
        margin: 2rem 80px 0 80px;
    }
 }

/* HOVER ANIMATION  */


.clickthroughimagecontainer {
    aspect-ratio: 1/1;
    overflow: hidden;
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
}


@media (min-width: 1000px) {


#clickthroughimagecontainer1 img{
    filter: url(#noise1);
    -webkit-filter: url(#noise1);
    -moz-filter: url(#noise1);
}
#clickthroughimagecontainer2 img{
    filter: url(#noise2);
}
#clickthroughimagecontainer3 img{
    filter: url(#noise3);
}
#clickthroughimagecontainer4 img{
    filter: url(#noise4);
}

#clickthroughimagecontainer1:hover > img,
#clickthroughimagecontainer2:hover > img,
#clickthroughimagecontainer3:hover > img,
#clickthroughimagecontainer4:hover > img {
    animation: pulse 1200ms ease-in-out;
    -webkit-animation: pulse 1200ms ease-in-out;
    -moz-animation: pulse 1200ms ease-in-out;
} 


@keyframes pulse {
    from, to {
        scale: 1;
    }

    50% {
        scale: 1.08;
    }

}

}


/* AANDOENINGEN PAGINA */

.aandoening-link {
    width: 100%;
    padding-top: 0.875rem;
    padding-bottom: 0.875rem;
}

.laatste-aandoening {
    padding-top: 0.875rem;
    padding-bottom: 0.875rem;
}

.aandoeningen-container {
    padding: 1rem;
}

.aandoeningen-container .aandoening {
    border: 2px solid var(--neonpurple);
    text-align: center;
    border-radius: 7px;
    margin-bottom: 10px;
}

.aandoeningen-container:last-child {
    margin-bottom: calc(3rem - 10px);
}

.laatste-aandoening {
    padding-inline: 5rem;
}

.laatste-aandoening h2 {
    margin-bottom: 0.75rem;
}

.laatste-aandoening div {
    max-width: 250px;
    text-align: center;
    margin: 0 auto;
}

.aandoening h2 {
    font-size: 1.125rem;
    font-weight: var(--normal);
}

.aandoening p {
    font-size: 1rem;
}

.aandoening-contact {
    color: var(--neonpurple);
    text-decoration: underline;
}

.aandoening {
    display: flex;
    align-items: center;
    justify-content: center;
}


@media (min-width: 768px) and (max-width: 1199px) {
    .aandoeningen-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.125rem;
    }

    .laatste-aandoening {
        grid-row-end: span 2;
        grid-column-end: span 2;
    }

    .aandoeningen-container .aandoening {
        margin-bottom: 0px;
    }
}

@media (min-width: 1200px) {
    .aandoeningen-container {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 1.125rem;
        padding: 4rem 80px 0;
    }

    .laatste-aandoening {
        grid-row-start: 3;
        grid-row-end: span 2;
        grid-column-start: 3;
    }

    .aandoeningen-container .aandoening {
        margin-bottom: 0px;
    }
}



/* Gradient Button  */

@media (min-width: 1000px) {



.eerste-aandoening, 
.aandoening2,
.aandoening3,
.aandoening4,
.aandoening5,
.aandoening6,
.aandoening7,
.aandoening8,
.aandoening9,
.aandoening10,
.laatste-aandoening {
    position: relative;
}

.eerste-aandoening:before, 
.aandoening2:before,
.aandoening3:before,
.aandoening4:before,
.aandoening5:before,
.aandoening6:before,
.aandoening7:before,
.aandoening8:before,
.aandoening9:before,
.aandoening10:before,
.laatste-aandoening:before {
    background: linear-gradient(
        130deg,
        transparent 0% 33%,
        #8EC5FC 66%,
        var(--neonpurple) 83.5%,
        var(--neonpurple) 100%
    );
    background-position: 0% 0%;
    background-size: 300% 300%;
    content: "";
    left: 0px;
    height: 100%;
    position: absolute;
    top: 0px;
    width: 100%;
    z-index: 1;
    transition: background-position 350ms ease;
}


.eerste-aandoening:hover:before, 
.aandoening2:hover:before,
.aandoening3:hover:before,
.aandoening4:hover:before,
.aandoening5:hover:before,
.aandoening6:hover:before,
.aandoening7:hover:before,
.aandoening8:hover:before,
.aandoening9:hover:before,
.aandoening10:hover:before,
.laatste-aandoening:hover:before {
    background-position: 100% 100%;
}

.eerste-aandoening:hover a, 
.aandoening2:hover a,
.aandoening3:hover a,
.aandoening4:hover a,
.aandoening5:hover a,
.aandoening6:hover a,
.aandoening7:hover a,
.aandoening8:hover a,
.aandoening9:hover a,
.aandoening10:hover a,
.laatste-aandoening:hover div {
    color: white;
    transition: 1 ease;
}

.laatste-aandoening:hover a {
    color: var(--white)
}


.aandoening h2 {
    z-index: 2;
    position: relative;
}

.laatste-aandoening div {
    z-index: 2;
    position: relative;
}

}





/* MERKEN PAGINA */

.merk-container {
    display: flex; 
    align-items: center;
    justify-content: center;
    background-color: black;

}

 #alle-merken-container {
    display: grid;
    grid-template-columns: auto auto;
    grid-gap: 20px;
}

.alle-merken-container {
    padding-bottom: 6rem;
}

.elle-logo {
    filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(49deg) brightness(103%) contrast(103%);
}


.merk-container img {
    width: 50%;
    max-width: 200px;
    pointer-events: none;
}

.yankees {
    max-height: 80px;
}

@media (max-width: 400px) {
    .yankees {
        max-height: 50px;
    }
}


@media (min-width: 1200px) {


    #alle-merken-container {
       display: grid;
       grid-template-columns: 1fr 1fr 1fr 1fr;
       padding: 3rem 80px 6rem;
   }



}



/* MERK-BESCRHIJVING  */

.merk-beschrijving p {
    color: white;
    font-size: 10px;
    font-weight: var(--normal);

}

.merk-beschrijving {
    background-color: var(--neonpurpletransparant);
    position: absolute;  
    top: 0;
    left: 0;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0rem 1.5rem;
    display: none;
    pointer-events: none;
}

.merk-en-bescrhrijving-container {
    position: relative;
}

.display-merk-beschrijving {
    display: flex;
}

#merk-container {
    transform: all 3s;
}



@media (max-width: 400px) {

    .merk-beschrijving p {
        font-size: 8px;
    }
    
}

@media (max-width: 325px) {

    .merk-beschrijving p {
        font-size: 6px;
    }
    
}

@media (max-width: 599px) {

    .merk-beschrijving {
        padding: 0rem 1rem;
    }
    
}

@media (min-width: 600px) {
    .merk-beschrijving p {
        font-size: 16px;
    }
}


@media (min-width: 1200px) and (max-width: 1350px ) {
    .merk-beschrijving p {
        font-size: 12px;
    }
}




/* CONTACT PAGINA */

.contact-page-section {
    padding: 7rem 1rem 6rem 1rem; 
}

.contact-page-section p, 
.contact-information-container a {
    color: var(--greytext);
    font-size: 1.125rem;
}

.contact-page-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.contact-image-container p {
    color: var(--greytextloweropacity);
    text-align: center;
    font-size: 0.75rem; 
    margin: 1rem auto 0;
    width: 80%;
    max-width: 450px;

}

.contact-information-container div:not(:last-child) {
    border-bottom: 1px solid var(--greyborder);
    padding-bottom: 2rem;
}


.social-icons-contact div {
    border: 1px solid var(--greyborder);
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.flex-contact {
    transition: background-color 2s;
}

.fa-facebook-f, .fa-instagram {
    transition: color 2s;
}

.flex-contact:hover {
    background-color: var(--neonpurple);
}

.flex-contact:hover .fa-facebook-f  {
    color: var(--white);
}

.flex-contact:hover .fa-instagram {
    color: var(--white);
}



.social-icons-contact {
    display: flex;
    gap: 10px;
}

.social-link-contact {
    height: 40px;
}

.flex-contact a {
    display: flex;
    justify-content: center;
    align-items: center;
}

.fa-facebook-f {
    color: var(--bodytext);
    font-size: 0.875rem;
}

.fa-instagram {
    color: var(--bodytext);
}


@media (min-width: 860px) {

    .contact-page-section {
        display: flex;
        align-items: center;
        padding: 7rem 20px 0;
    }

    .image-winkel-contact {
        width: 100%;
        max-width: 670px;
        margin: 0 auto;
    }

    .contact-image-container, 
    .contact-information-container {
        width: 50%;
    }

    .contact-information-container {
        padding-left: 7rem;
    }

    .contact-page-section h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
        margin-top: 2rem;
    }

    h2.title-contact-information {
        margin-top: 0;
    }

    .contact-page-section {
        min-height: 100vh;
    }

}


@media (min-width: 1200px) {

    .contact-page-section {
        padding: 7rem 80px 0 80px;
    }

}





/* OVER ONS PAGE */

.hero-over-ons-text-container {
    margin-top: 3.5rem;
}

.hero-over-ons-text-container {
    padding: 0 1rem 0;
}

.hero-over-ons-text-container p {
    font-size: 1.5rem;
    line-height: 1.66;
}

.hero-over-ons-text-container h2 {
    font-size: 1.875rem;
    margin-bottom: 1.75rem;
}

.section-goes-over-ons {
    padding-top: 8rem;
}

.goes-trots-container {
    margin-top: 4rem;
    margin-bottom: 4.5rem;
}

.trots-paragraph {
    padding: 0 1rem 0;
    font-size: 1.75rem;
}

.link-over-ons-route {
    margin-top: 2rem;
    margin-left: 1rem;
    font-size: 1.125rem;
    padding: 0.5rem 1rem;
    background-color: var(--greybuttons);
    border-radius: 42px;
    display: inline-block;
}


@media (max-width: 768px) {

    .winkel-images-container {
        position: relative;
    }

    .winkel1,
    .winkel2,
    .winkel3 {
        width: 49%;
    }

    .winkel2 {
        margin-top: 1.125rem;
    }


    .winkel3 {
        position: absolute;
        right: 0;
        bottom: 10%;
    }
}


.section-meer-dan-25-jaar {
    padding: 0 1rem 0;
    margin-top: 6.5rem;
}

.section-meer-dan-25-jaar h2 {
    font-size: 1.875rem;
    padding-right: 40%;
    margin-bottom: 2rem;
}

.section-meer-dan-25-jaar p {
    font-size: 1.5rem;
}



.team-vacatures-container {
    background-color: var(--overonsbackgroundcolor);
    margin-top: 6rem;
    padding: 3.25rem 1rem 6.5rem 1rem;
}

.team-vacatures-container h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.team-paragraph-text {
    font-size: 1.5rem;
}

.vacatures-paragraph {
    font-size: 1.125rem;
    line-height: 1.77;
}

.naam-functie-container {
    margin-top: 14px;
    margin-bottom: 1rem;
}

.naam-functie-container h3 {
    font-size: 1.125rem;
    font-weight: var(--medium);
}

.naam-functie-container p {
    font-size: 0.75rem;
    color: var(--neonpurple);
}

.team-fotos-container {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: auto auto;
    grid-gap: 11px;
}

.portret-name-container-1,
.portret-name-container-2,
.portret-name-container-3,
.portret-name-container-4 {
    position: relative;
    overflow: hidden;
} 

.name-container {
    color: var(--white);
    text-align: center;
    background-color: var(--neonpurple);
    position: absolute;
    top: -20px;
    left: -20px;
    height: 70px;
    width: 70px;
    border-radius: 50%;
}

.name-container p {
    font-weight: var(--medium);
    color: var(var(--white));
}

.name-letters {
    position: absolute;
    top: 5px;
    left: 14px;
    font-weight: var(--medium);
}

.name-letters p {
    line-height: 1;
    text-align: center;
    color: white;
}

.name-letters p:first-child {
    font-size: 16px;
}
.name-letters p:nth-child(2) {  
    font-size: 12px
}
.name-letters p:nth-child(3) {
    font-size: 6px;
}
.name-letters p:nth-child(4) {
    font-size: 4px;
}


@media (min-width: 1100px) {

.name-container {
    height: 100px;
    width: 100px;
}

.name-letters {
    top: 5px;
    left: 25px;
    font-weight: var(--medium);
}

.name-letters p {
    line-height: 1;
}

.name-letters p:first-child {
    font-size: 24px;
}
.name-letters p:nth-child(2) {  
    font-size: 18px
}
.name-letters p:nth-child(3) {
    font-size: 12px;
}
.name-letters p:nth-child(4) {
    font-size: 8px;
}

}

@media (min-width: 1600px) {

.name-container {
    height: 135px;
    width: 135px;
}

.name-letters {
    top: 10px;
    left: 38px;
    font-weight: var(--medium);
}

.name-letters p {
    line-height: 1;
}

.name-letters p:first-child {
    font-size: 36px;
}
.name-letters p:nth-child(2) {  
    font-size: 24px
}
.name-letters p:nth-child(3) {
    font-size: 16px;
}
.name-letters p:nth-child(4) {
    font-size: 12px;
}

}


.pixel-container {
    background-color: #FDFBF7;
    aspect-ratio: 4/5;
    display: flex;
    align-items: end;
    justify-content: center;
    
}

.pixel-team-member {
    width: 70%;
}


.vacatures-section {
    margin-top: 5rem;
}

.mail-ons-over-ons {
    margin-top: 2.5rem;
    font-size: 1.125rem;
    padding: 0.5rem 3rem;
    background-color: var(--greybuttons);
    border-radius: 42px;
    display: inline-block
}

@media (min-width: 769px) {

    .hero-image-over-ons {
        max-height: 80vh;
        width: 100%;
        object-fit: cover;
    }

    .hero-over-ons-text-container, 
    .section-meer-dan-25-jaar {
        display: block;
        margin: 6rem auto 0;
        padding: 0;
        max-width: 650px;
    }

    .line-art-goes {
        max-width: 811px;
        margin: 0 auto;
    }

    .goes-trots-container {
        margin-top: 8rem;
        margin-bottom: 4.5rem;
    }

    .trots-paragraph {
        padding: 0 80px 0;
        font-size: 2.1875rem;
        width: 60%;
        max-width: 800px;
    }
    
    .link-over-ons-route {
        margin-left: 80px;
        font-size: 1.125rem;
    }


    .winkel-images-container {
        display: flex;
        align-items: baseline;
        gap: 3rem;
    }

    .team-beschrijving-container {
        display: block;
        margin: 0 auto;
        padding: 0;
        max-width: 650px;
    }

    .team-fotos-container {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        grid-gap: 3rem;
        padding: 0 80px;
    }

    .vacatures-section {
        display: flex;
    }

    .vacatures-section div {
        width: 50%;
    }

    .vacatures-section h2 {
        text-align: right;
        margin-right: 15%;
        font-size: 3.375rem;

    }

    .vacatures-paragraph {
        padding-right: 80px;
        max-width: 600px;
        font-size: 1.5rem;

    }

    .section-meer-dan-25-jaar h2, 
    .hero-over-ons-text-container h2{
        font-size: 2.375rem;
    }

    .team-beschrijving-container h2 {
        font-size: 3rem
    }

    .team-beschrijving-container p {
        font-size: 2rem;
    }

}


.section-goes-over-ons svg path {
    stroke-dasharray: 0;
    stroke-dashoffset: 0;
    stroke-width: 1;
    stroke: #1c252f;
    stroke-width: 1;
    transition: stroke-dashoffset 1s;
}


.icons-container-faq img {
    pointer-events: none;
}



.button-purple-link {
    border-radius: 7px;
    background-color: #222222;
    color: var(--white);
    border: none;
    display: inline-block;
    padding: 8px 25px;
    cursor: pointer;
}

.button-purple-link div {
    display: flex;
    gap: 15px;
}



.margin-top-list {
    margin-top: 1.5rem;
}


.iframe-optometrie {
    margin-top: 2rem;
}


.section-404 {
    height: 75svh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.click-through-top-text {
    display: none;
}

.fa-arrow-footer-cta {
    color: var(--bodytext);
}

.logo-lensonline {
    max-width: 400px;
    width: 60%;
    margin-top: 6rem;
}


/* LOADER  */

/* .loader {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    background-color: var(--overonsbackgroundcolor);
    z-index: 100;
}

.loader-hidden {
    opacity: 0;
    visibility: hidden;
} */


.banner-lookbook {
    position: fixed;
    bottom: 40px;
    right: 0;
    width: 80%;
    max-width: 450px;
    animation: lookbookanimation 1s ease-out 3s 1 both;
}

.lookbook-img-container img {
    margin-left: auto;
}

.lookbook-img-container {
    position: relative;
}

.close-banner {
    font-size: 3rem;
    cursor: pointer;
}

.close-banner-container {
    position: absolute;
    top: -10%;
    left: 5%;
    color: var(--neonpurple)
}

/* .close-banner-container p {
    text-shadow: 0 0 10px white;
} */

@media (max-width: 500px) {
    .close-banner-container {
        top: -20%;
        left: 5%;
    }    
}

@keyframes lookbookanimation {
    0% {width: 0;}
    100% {width: 80%;}
}


 .section-afspraak-maken {
        padding-top: 8rem;
}





/* SPAARPLAN  */

.spaarplan-grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto;
    padding: 0 80px;
    gap: 16px;
}

@media (min-width: 1200px) {
    .spaarplan-grid-container {
        padding: 0 176px;
    }
}

@media (max-width: 768px) {
    .spaarplan-grid-container {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 1fr 1fr;
        padding: 0 21px;
    }
}

@media (min-width: 769px) and (max-width: 1200px) {
    .spaarplan-grid-container {
        padding: 0 4rem;
    }
}



.title-spaarplan {
    text-align: center;
}

.spaarplan-grid-container > div {
    box-shadow: 0 3px 6px rgba(28, 37, 47, 0.16);
}

.spaarplan-title-container {
    background-color: #fafafa;
    padding: 1.5rem 0 2rem 3rem;
    color: var(--neonpurple);
}

.spaarplan-title {
    font-size: 24px;
    font-weight: var(--medium);
}


.spaarplan-voorwaarden-container {
    padding: 4rem 0 4rem 3rem;
}

@media (max-width: 1000px) {
    .spaarplan-title {
        font-size: 20px;
        font-weight: var(--medium);
    }

    .spaarplan-title-container {
        padding: 1.5rem 0 2rem 2rem;
    }

    .spaarplan-voorwaarden-container {
        padding: 4rem 0 4rem 1.5rem;
    }
}



/* FORM SPAARPLAN  */

.aanvraag-spaarplan-main-container h2 {
    margin-bottom: 2rem;
    font-weight: var(--medium);
    font-size: 20px;
}


.spaarplan-display-none {
    display: none;
}

.aanvraag-spaarplan-main-container {
    background-color: #FAFAFA;
    width: 100%;
}

input#kinder-spaarplan,
input#lens-spaarplan {
    margin-left: 12px;
}

.keuze-spaarplan-label {
    font-weight: var(--medium);
    font-size: 12px!important;
    margin-bottom: 8px;
}

.label-keuze-spaarplan {
    font-weight: var(--light)!important;
    font-size: 16px!important;
    margin-left: 2px;
}
.container-maand-bedrag {
    margin-top: 1rem;
}

.aanvraag-spaarplan-main-container label {
    font-weight: var(--medium);
    font-size: 12px;
}

.form-styling-container input,
.input-maandbedrag {
    width: 100%;
    border: none;
    box-shadow: 0 1px 0 rgba(28, 37, 47, 0.16);
    display: block;
    min-height: 44px;
    margin-bottom: 10px;
    margin-top: 8px;
}

.form-styling-container {
    margin-top: 2rem;
}


.spaarplan-flex-container {
    min-height: 100svh;
  }

.spaarplan-flex-container > div:first-child {
    padding: 9rem 20px 0 20px;
}

.spaarplan-flex-container > div:nth-child(2) {
    padding-top: 7rem;
    padding-left: 4rem;
    padding-right: 2rem;
    padding-bottom: 2rem;
}

@media (max-width: 999px) {
    .spaarplan-flex-container > div:nth-child(2) {
        padding-top: 2rem;
        padding-left: 1rem;
        padding-right: 1rem;
        margin-top: 8rem;
    }

}

@media (min-width: 1000px) {
    .spaarplan-flex-container {
        display: flex;
    }

    .spaarplan-flex-container > div{
        width: 50%;
    }

    .form-styling-flex-container {
        display: flex;
        gap: 16px;
    }

    .form-styling-flex-container > div {
        width: 50%
    }
    
}


.akkoord-voorwaarden-label {
    font-weight: var(--light)!important;
    font-size: 16px!important;
    margin-left: 8px;
    max-width: 375px; 
    display: inline-block;
    margin-top: 2.5rem;
}

.fa-circle {
    color: var(--neonpurple);
    margin-right: 0.5rem;
    font-size: 0.9rem;
}

.section-zo-werkt-het {
    padding-right: 3rem;
    padding-left: 80px;
}

@media (max-width: 1200px) {
    .section-zo-werkt-het {
        padding-right: 3rem;
        padding-left: 20px;
    }
}

@media (min-width: 1201px) {
    .spaarplan-flex-container > div:first-child {
        padding: 9rem 10% 0 80px;
    }
}


.spaarplan-flex-container h1 {
    font-size: max(3vw, 32px);
    line-height: 1.1;
    margin-bottom: 3rem;
}

.spaarplannen-ul-section {
    margin: 160px 0;
}

@media (max-width: 1000px) {
    .spaarplannen-ul-section {
        margin: 80px 0;
    }
}

.spaarplan-zo-werkt-het-p {
    max-width: 600px;
}

.spaarplan-button {
    margin-top: 2rem;
}


.aanvraag-spaarplan-pop-up {
    position: absolute;
    display: flex;
    height: 100svh;
    width: 100%;
    align-items: center;
    justify-content: center;
}

.aanvraag-spaarplan-pop-up > div {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-radius: 8px;
    gap: 3rem;
    width: 80%;
    height: 50%;
    max-width: 300px;
    max-height: 300px;
    background-color: #fafafa;
    box-shadow: 0 3px 6px rgba(28, 37, 47, 0.16);
}

.popup-display-none {
    display: none;
}



.overlay-pop-up-display-none {
    display: none;
}

.overlay-pop-up {
    position: fixed;
    z-index: 50;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(28, 37, 47, 0.50);
}

.pop-up-stylist {
    background-color: #ffffff;
    z-index: 100;
    position: absolute;
    left: 50%;
    top: 50%;
    width: 80%;
    max-width: 550px;
    aspect-ratio: 1 / 0.6;
    transform: translate(-50%, -50%);
    border-radius: 1.5rem;
    padding: 1.5rem;
}

.pop-up-stylist h2 {
    text-align: center;
    font-size: 24px;
    margin-bottom: 2rem;
}

.pop-up-stylist p {
    font-size: 20px;
    line-height: 1.4;
    text-align: center;
}

.pop-up-sylist-flex-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    margin-bottom: 1rem;
}

.pop-up-sylist-flex-container img {
    max-width: 200px;
}

.overlay-pop-up-close {
    font-size: 40px;
    position: absolute;
    right: 1.5rem;
    top: 8px;
    opacity: 0.9;
    cursor: pointer;
}

.pop-up-stylist a {
    text-decoration: underline;
}

.pop-up-stylist {
    display: flex;
    flex-direction: column;
}

@media (max-width: 650px) {
    .pop-up-stylist {
        min-width: 85%;
        aspect-ratio: 1 / 1.5;
        max-height: 420px;
        transform: translate(-50%, -50%);
        border-radius: 1.5rem;
        padding: 1.5rem;
    }

    .pop-up-sylist-flex-container {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 350px) {
    .pop-up-stylist {
        min-width: 90%;
        max-width: 550px;
        aspect-ratio: 1 / 1.5;
        max-height: 400px;
        transform: translate(-50%, -50%);
        border-radius: 1.5rem;
        padding: 1.5rem;
    }

}

.black-svg {
    filter: invert(100%) sepia(87%) saturate(492%) hue-rotate(293deg) brightness(107%) contrast(92%);
    height: 10px;
}

.afspraak-maken-a-header {
    display: flex;
    gap: 6px;
}

.afspraak-text {
    color: white!important;
    font-weight: var(--normal)!important;
}



.main-navbar {
    display: flex;
    width: 100%;
    align-items: center;
}

.logo-header-nav a{
    font-family: "VT323", monospace;
    font-weight: 400;
    font-style: normal;
    font-size: 24px
}


.partners-container {
    padding-top: 6rem;
    padding-left: 100px;
}

.partners-container a {
    text-decoration: underline;
    text-underline-offset: 2px;
}