:root {

    /* COLOURS  */
    --white: #ffffff;
    --black: #000000;

    --lightgrey-fafafa: #FAFAFA;
    --lightgrey-e9ebec: #E9EBEC;
    --lightgrey-dee2e4: #DEE2E4;
    --lightgrey-c2c6ca: #C2C6CA;
    --grey: #9B9FA5;
    --darkgrey-c2c6ca: #878B92;
    --darkgrey-5e5636a: #5E636A;
    --darkgrey-3d444e: #3D444E;
    --darkgrey-222222: #222222;

    --blackfocus: rgba(34, 34, 34, 0.6);

    --purple: #C9A7E8;
    --green: #9BE8B7;
    --lightpink: #E8C0BE;
    --pink: #E9B4E2;



    /* FONT WEIGHTS */
    --regular: 400;
    --medium: 500; 
    --bold: 700; 


    /* ANIMATION  */

    --easeInOutQuart: cubic-bezier(0.76, 0, 0.24, 1);
    --easeOutQuad: cubic-bezier(0.5, 1, 0.89, 1);

}


@font-face {
    font-family: "aeonik";
    src: url("../fonts/NPjICx6DxL5H.woff") format("woff");
    font-weight: 400;
}

@font-face {
    font-family: "aeonik";
    src: url("../fonts/dcHMDPcePSn9.woff") format("woff");
    font-weight: 500;
}
@font-face {
    font-family: "aeonik";
    src: url("../fonts/YdF1NX8YY0TR.woff") format("woff");
    font-weight: 700;
}



/* 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;
}

ul {
    list-style-type: none;
}

::selection {
        background: var(--purple);
    }


html {
        max-width: 100%;
        overflow-x: hidden;
    }

body {
    background-color: var(--lightgrey-fafafa);
    color: var(--darkgrey-5e5636);
    font-family: "aeonik", Helvetica, sans-serif;
    overflow-x: hidden;
}


a {
    color: var(--darkgrey-222222);
}

.underline-btn {

	position: relative;
	&:before,
	&:after{
		content: '';
    	display: block;
    	position: absolute;
    	height: 2px;
    	width: 0;

	}
	&:before{
		left: 0;
		right: 0;
    	bottom: -2px;
	}
	&:after{
		right: 2.2%;
    	bottom: -2px;
    	background: var(--darkgrey-222222);
		transition: width .4s ease;
	}
	
	&:hover{
		&:before{
			width: 97.8%;
			background: var(--darkgrey-222222);
    		transition: width .4s ease;
		}
		&:after{
			width: 97.8%;
    		background: 0 0;
			transition: all 0s ease;
		}
	}
}

@media (min-width: 768px) {

  .underline-btn-connect {
  
    position: relative;
    &:before,
    &:after{
      content: '';
        display: block;
        position: absolute;
        height: 2px;
        width: 0;
  
    }
    &:before{
      left: 0;
      right: 0;
        bottom: -2px;
    }
    &:after{
      right: 0%;
        bottom: -2px;
        background: var(--darkgrey-222222);
      transition: width .4s ease;
    }
    
    &:hover{
      color: var(--darkgrey-222222);
      &:before{
        width: 100%;
        background: var(--darkgrey-222222);
          transition: width .4s ease;
      }
      &:after{
        width: 100%;
          background: 0 0;
        transition: all 0s ease;
      }
    }
  }
}

.lets-connect-btn {
  text-decoration: underline #dddddd;
  -webkit-text-decoration: underline #dddddd;
  color: #dddddd;
  mix-blend-mode: difference;
}


.even-columns {
    padding: 0 40px;
}

header {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    margin-top: 40px;
    color: var(--darkgrey-222222);
    font-size: 1.375rem;
    width: 100%;
}

.hero-nav {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0%);
}


@media (min-width: 768px) {
  header {
      position:static;
  }
}

.hero-section {
    height: 100svh;
    position: relative;
}


.navigation {
    display: flex;
    gap: 1.5rem;
}

.navigation li {
  cursor: pointer;
}

.logo-hero {
    letter-spacing: -0.05rem;
}

ul {
  padding-left: 0!important;
}

.lets-connect-btn {
    font-size: 1.375rem;
    -webkit-text-underline-offset: 8px;
    text-underline-offset: 8px;
    cursor: pointer;
    z-index: 100;
    position: absolute;
    right: 40px;
    top: 20px;
}






@media (max-width: 768px) {
    .hero-nav {
        display: none;
    }
    .even-columns {
        padding: 0 1rem;
    }

    header {
      margin-top: 20px;
  }


}




.slide-up-animation {
    animation: slide-up 1s cubic-bezier(0.45,0.64,0.12,1) 1 both;
  }

  .slide-up-animation2 {
    animation: slide-up 0.8s cubic-bezier(0.45,0.64,0.12,1) 0.3s both;
  }
  .slide-up-animation3 {
    animation: slide-up 0.7s cubic-bezier(0.45,0.64,0.12,1) 0.6s both;
  }
  .slide-up-animation4 {
    animation: slide-up 1.4s cubic-bezier(0.45,0.64,0.12,1) 0.8s both;
  } 

    
  @keyframes slide-up {
    0% {transform: translateY(100%)}
    100%  {transform: translateY(0)}
  }
  
  
  .text-wrapper > div {
    overflow: hidden;
  }

  
  .text-wrapper > div > p {
    width: max-content;
    white-space: nowrap;
    margin: 0;
    line-height: 0.84;
    font-size: 15vw;
    color: var(--darkgrey-222222);
  }



  @media (max-width: 375px) {
    header,
    .lets-connect-btn {
      font-size: 1.25rem;
  }

  }

  @media (max-width: 350px) {
    .text-wrapper > div > p {
      font-size: 14vw;
    }
    header,
    .lets-connect-btn {
      font-size: 1.1rem;
  }
  }

  .glyph-hero-title {
    width: 10.3vw;
    display: inline;
  }

  .hero-main-container {
    margin-top: 4rem;
    /* flex-direction: column;
    display: flex;
    width: 100vw;
    height: 100vh;
    overflow: hidden; */
  }

  @media (max-width: 768px) {
    .hero-main-container {
      margin-top: 0rem;
      padding-top: 4rem;
      position: relative;
      height: 100svh;
    }

  }

  .chantal-container {
    position: absolute;
    bottom: 0;
    width: calc(100% - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  
  .chantal-container > .img-wrapper {
    overflow: hidden;
  }

  .img-chantal {
    height: 70vh;
    object-fit: cover;
    pointer-events: none;
  }

  @media (max-width: 1100px) {
    .chantal-container {
      width: calc(100%);
    }
}
  @media (max-width: 768px) {
    .chantal-container {
      width: calc(100%);
    }

    .img-chantal {
      height: 50vh;
      object-fit: cover;
    }

    .text-wrapper {
      margin-top: 2rem;
    }

    .lets-connect-btn {
      position: fixed;
      top: 20px;
      right: 1rem;
    }
}


  .bloem1, .bloem2, .pijl  {
    position: absolute;
  }

  .bloem1 {
    right: 10%;
    bottom: 100px;
    width: 105px;
  }

  .bloem2 {
    left: 10%;
    bottom: -50px;
    width: 105px;
  }

  .pijl {
    right: 40px;
    bottom: 4rem;
    width: 60px;
    cursor: pointer;
    z-index: 2;
  }

  @media (max-width: 768px) {
    .pijl {
      left: 1rem;
      bottom: 40px;
      width: 40px;
    }

    .bloem1 {
      right: 10%;
      top: 360px;
      width: 72px;
    }
  
    .bloem2 {
      left: 10%;
      top: 100px;
      width: 72px;
    }

    .hero-main-container {
      padding-top: 10rem;
    }
}




  /* FIRST SECTION  */

  .first-section {
    padding-top: 192px;
    padding-bottom: 192px;
    position: relative;
  }

  @media (min-width: 768px) {
    .first-section {
      padding-top: 192px;
      padding-bottom: 256px;
    }
  }

  .first-section h1 {
    font-size: 36px;
    line-height: 1;
    font-weight: var(--regular);
    margin-bottom: 4rem;
    color: var(--darkgrey-222222);
  }

  .first-section p {
    font-size: 20px;
    color: var(--darkgrey-5e5636a);
  }

  .numbering-1 {
    margin-bottom: 2rem;
  }

  .numbering {
    width: 40px;
    height: 40px;
  }
  
  .first-section-left {
    position: relative;
}
  .bloem3 {
    position: absolute;
    width: 100px;
    bottom: 0;
    left: 50%;
    transform: translate(-50%);
  }




  @media (min-width: 769px) {
    .first-section {
        display: flex;
    }

    .first-section-right {
        width: 63.1%;
    }
    .first-section-left {
        width: 37.9%;
    }
  }

  @media (min-width: 1000px) {
    .first-section h1 {
        font-size: max(3.2vw, 50px);
        max-width: 800px;
      }
    
      .first-section p {
        font-size: max(1.4vw, 20px);
      }
  }


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


/* PARRALAX */



  @media (min-width: 768px) {
    .parralax-wrapper {
      height: 100vh;
      overflow-y: auto;
      overflow-x: hidden;
      perspective: 10px;
    }
  
    .hero-section {
      position: relative;
      transform-style: preserve-3d;
      z-index: -1;
      transform: translateZ(-10px) scale(2);
    }
  
    .second-section-parralax {
      background-color: var(--lightgrey-fafafa);
      height: 120vh;
    }
  }


  /* .logo-slider img {
    width: clamp(60px, 7vw, 100px)
  } */
  .logo-slider img {
    height: 40px;
    max-width: 80px;
    object-fit: contain;
  }

  @keyframes footer-animation {
    from {left: 0px}
    to {left: -2000px}
}

/* WebKit (Safari, older versions of Chrome) */
@-webkit-keyframes footer-animation {
  from { left: 0px; }
  to { left: -2000px; }
}

/* Mozilla Firefox */
@-moz-keyframes footer-animation {
  from { left: 0px; }
  to { left: -2000px; }
}

/* Opera */
@-o-keyframes footer-animation {
  from { left: 0px; }
  to { left: -2000px; }
}

/* Microsoft Internet Explorer */
@-ms-keyframes footer-animation {
  from { left: 0px; }
  to { left: -2000px; }
}



  .logo-slider {
      position: absolute;
      left: 0;
      bottom: 0;
      padding: 0rem 2rem 0rem 2rem;
      display: flex;
      gap: 9rem;
      align-items: center;
      overflow-x: hidden;
      white-space: nowrap;
      animation: footer-animation 30s linear infinite;
      -webkit-animation: footer-animation 30s infinite linear;
      -moz-animation: footer-animation 30s infinite linear; 
      -o-animation: footer-animation 30s infinite linear; 
      -ms-animation: footer-animation 30s infinite linear; 
  }




  /* SECOND SECTION  */

  .second-section {
    margin-top: 192px;
  }
  
  .second-section-header {
    font-size: 60px;
    font-weight: var(--medium);
    line-height: 1;
    text-transform: uppercase;
    margin-bottom: 96px;
  }

  @media (max-width: 768px) {
    .second-section-header {
      margin-top: 2rem;
    }
  }

  @media (min-width: 769px) {
    .flex-box {
      display: flex;
      align-items: baseline;
      flex-direction: row-reverse;
    }

    .flex-box-child:nth-child(1) {
      width: 45%;
    }
    .flex-box-child:nth-child(2) {
      width: 55%;
    }

    .numbering-2-container {
      display: flex;
      justify-content: end;
    }

}

@media (min-width: 1200px) {
  .second-section-header {
    font-size: 80px;
}

@media (min-width: 1500px) {
  .flex-box-child:nth-child(1) {
    width: 50%;
  }
  .flex-box-child:nth-child(2) {
    width: 50%;
  }
}
}
  .card-container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .card {
    position: sticky;
    top: 100px;
    margin-bottom: 1rem;
    padding: 1rem 6px 0;
    text-align: center;
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 4px 5px 0 var(--darkgrey-222222);
  }

  @media (min-width: 1200px) {
    .card {
      box-shadow: 8px 9px 0 var(--darkgrey-222222);

    }
}

  .card {
    min-width: 223px;
    min-height: 260px;
    width: 50%;
    max-width: 450px;
    max-height: 524px;
    aspect-ratio: 1/1.16;
    border-radius: 20px;
  }

  .card > div > img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
  }

  .img-text-reveal1 {
    object-position: 50% 20%;
  }

  .img-container-text-reveal {
    height: 70%;
    width: 100%;
  }

  .text-reveal {
    height: 70%;
  }

  .card > h3 {
    font-size: 40px;
    font-weight: var(--bold);
  }

  .card h4 {
    font-size: 16px;
    line-height: 1;
    font-weight: var(--medium);
    margin-bottom: 2px;
  }

  .lees-meer {
    cursor: pointer;
    font-size: 12px;
    text-decoration: underline var(--white);
    -webkit-text-decoration: underline var(--white);
    -webkit-text-underline-offset: 4px;
    text-underline-offset: 4px;
    margin-bottom: 1rem;
  }

  @media (max-width: 1000px) {
    .card > h3 {
      font-size: 36px;
    }

    .card {
      padding: 0.5rem 6px 0;
    }
  }

  @media (max-width: 768px) {

    .card > h3 {
      font-size: 24px;
    }
    .card h4 {
      font-size: 12px;
      line-height: 1;
      font-weight: var(--medium);
      margin-bottom: 2px;
    }


    .lees-meer {
    font-size: 10px;
    text-decoration: underline var(--white);
    -webkit-text-decoration: underline var(--white);
    -webkit-text-underline-offset: 3px;
    text-underline-offset: 3px;
    margin-bottom: 0.6rem;
  }

  }

  @media (max-width: 600px) {
    .card {
      width: 80%;
    }

    .card h4 {
      margin-bottom: 0px;
    }
  }

  
  #card1 {
    background-color: var(--purple);
    transform: rotate(-10deg);
  }
  #card2 {
    background-color: var(--green);
    transform: rotate(5deg);
  }
  #card3 {
    background-color: var(--lightpink);
    transform: rotate(-7deg);
  
  }
  #card4 {
    background-color: var(--pink);
    transform: rotate(10deg);
  }

  /* title styles */
.text-reveal span{
  position: relative;
  overflow: hidden;
  display: block;
  line-height: 1.2;
}

.text-reveal span::after{
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: white;
  animation: a-ltr-after 2s cubic-bezier(.77,0,.18,1) forwards;
  transform: translateX(-101%);
}

.text-reveal span::before{
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  animation: a-ltr-before 2s cubic-bezier(.77,0,.18,1) forwards;
  transform: translateX(0);
}

.text-reveal-purple span::before{
  background: var(--purple);
}
.text-reveal-green span::before{
  background: var(--green);
}
.text-reveal-lpink span::before{
  background: var(--lightpink);
}
.text-reveal-pink span::before{
  background: var(--pink);
}

.text-reveal span:nth-of-type(1)::before,
.text-reveal span:nth-of-type(1)::after{
  animation-delay: 0s;
}

.text-reveal span:nth-of-type(2)::before,
.text-reveal span:nth-of-type(2)::after{
  animation-delay: 0.5s;
}
.text-reveal span:nth-of-type(3)::before,
.text-reveal span:nth-of-type(3)::after{
  animation-delay: 1s;
}
.text-reveal span:nth-of-type(4)::before,
.text-reveal span:nth-of-type(4)::after{
  animation-delay: 1.2s;
}
.text-reveal span:nth-of-type(5)::before,
.text-reveal span:nth-of-type(5)::after{
  animation-delay: 1.4s;
}
.text-reveal span:nth-of-type(6)::before,
.text-reveal span:nth-of-type(6)::after{
  animation-delay: 1.6s;
}
.text-reveal span:nth-of-type(7)::before,
.text-reveal span:nth-of-type(7)::after{
  animation-delay: 1.8s;
}

@keyframes a-ltr-after{
  0% {transform: translateX(-100%)}
  100% {transform: translateX(101%)}
}

@keyframes a-ltr-before{
  0% {transform: translateX(0)}
  100% {transform: translateX(200%)}
}

@media (min-width: 768px) {
  .text-reveal {
    font-size: 20px;
    line-height: 1.5;
  }
}

.display-none-text-reveal {
  display: none;
}

  .second-section {
    position: relative;
  }
  

  .bloem1-projecten, 
  .bloem2-projecten,
  .bloem3-projecten {
    position: sticky;
    top: 100px;
  }

  .bloem1-projecten {
    width: 72px;
    transform: translate(-35vw);
  }

  .bloem2-projecten {
    width: 105px;
    transform: translate(35vw);
    top: 400px
  }
  
  .bloem3-projecten {
    width: 105px;
    transform: translate(-35vw, 10vh);
    top: 600px
  }
  

  @media(max-width: 768px) {
    .bloem1-projecten {
      width: 64px;
      top: 50px
    }
  
    .bloem2-projecten {
      width: 72px;
      top: 400px
    }
    
    .bloem3-projecten {
      display: none;
    }
  }

  


  /* REVIEW SECTION */

  .third-section {
    margin-top: 192px;
    margin-bottom: 384px;
  }

  .third-section h2 {
    font-size: 36px;
    font-weight: var(--medium);
    color: var(--darkgrey-222222);
  }


  .review-container {
    border: 1px solid var(--darkgrey-222222);
    box-shadow: 2px 4px 0 var(--darkgrey-222222);
    padding: 1rem 22px;
    border-radius: 10px;
    cursor: pointer;
  }

  .review-titel h3 {
    font-size: 20px;
    line-height: 1.2;
    font-weight: var(--medium);
    color: var(--darkgrey-222222);
    margin-right: 10px;
  }

  .review-titel {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .pijl-review {
    min-height: 2rem;
    min-width: 17px;
    cursor: pointer;
    object-fit: contain;
  }

  .review-tekst {
    margin: 2rem 0 1rem 0;
  }
  .informatie-reviewer-container {
    display: flex;
    gap: 12px;
    align-items: center;
  }

  .informatie-reviewer-container img {
    height: 32px;
    width: 32px;
    border-radius: 50%;
    box-shadow: 2px 2px 0 var(--pink);
  }

  .naam-reviewer {
    font-size: 14px;
    font-weight: var(--regular);
    color: var(--darkgrey-222222);
    line-height: 1;
    margin-bottom: 2px;
  }
  
  .functie-reviewer {
    font-size: 8px;
    font-weight: var(--regular);
    color: var(--darkgrey-5e5636a);
    max-width: 450px;
  }

  .review-tekst-p {
    font-weight: 1rem;
    color: var(--darkgrey-3d444e);
    line-height: 1.5;
    margin-top: 1.5rem;
  }

  .review-container:nth-child(1),
  .review-container:nth-child(2),
  .review-container:nth-child(3) {
    margin-bottom: 1rem;
  }

  .display-none {
    display: none;
  }

  .bloem-review {
    display: none;
  }


  @media (max-width: 768px) {
    .third-section h2 {
      margin-bottom: 4rem;
    }
  }
  @media (max-width: 1000px) {
    .third-section {
      margin-bottom: 192px;
    }
  }

  @media (min-width: 769px) {
    .third-section {
      display: flex;
      align-items: baseline;
    }

    .third-section > div:first-child {
      width: 37.9%;
    }

    .third-section > div:nth-child(2) {
      width: 63.1%;
    }

    .third-section {
      margin-top: 256px;
    }

    .third-section h2 {
      font-size: 48px;
    }

    .review-titel h3 {
      font-size: clamp(20px, 3vw, 36px);
    }

    .review-titel > div:first-child {
      width: 70%;
      max-width: 500px;
    }

    .review-container {
      box-shadow: 3px 6px 0 var(--darkgrey-222222);
      padding: 20px 40px;
      border-radius: 10px;
      border: 2px solid var(--darkgrey-222222);
    }
  

    .review-tekst-p {
      font-weight: 20px;
      margin-top: 1rem;
    }

    .functie-reviewer {
      font-size: 12px;
    }

    .naam-reviewer {
      font-size: 20px;
      margin-bottom: 4px;
    }

    .informatie-reviewer-container img {
      height: 48px;
      width: 48px;
    }

    .informatie-reviewer-container {
      gap: 20px;
      margin-top: 1rem;
    }

    .pijl-review {
      height: 3rem;
      cursor: pointer;
    }

    .review-header-container {
      position: relative;
    }

    .bloem-review {
      display: block;
      position: absolute;
      width: 105px;
      height: 105px;
      bottom: 0;
      left: 50%;
      transform: translate(-50%, 300%);
    }
  }




  /* FOURTH SECTION  */

  .fourth-section {
    padding-bottom: 0px;
    position: relative;
  }

  .fourth-section p {
    color: var(--darkgrey-5e5636a);

  }

  .fourth-section-left h2 {
    font-size: 3rem;
    font-weight: var(--medium);
    color: var(--darkgrey-222222);
    line-height: 1;
    margin-bottom: 3rem;
  }

  .fourth-section-left p {
    font-size: 20px
  }
  .fourth-section-right p {
    font-size: 18px
  }

  .about-algemeen-p {
    margin-bottom: 192px;
  }

  .fourth-section-right > div > p {
    margin-top: 2rem;
    margin-bottom: 24px;
  }

  .bloem-about {
    width: 48px;
    height: 48px;
    margin-left: auto;
    margin-bottom: 3rem;
  }

  .click-me-container img {
    height: 100px;
  }

  .click-me-container {
    position: absolute;
    top: 0;
    left: 40%;
    transform: translate(-60%, -110px);
  }

  .first-reveal-box {
    position: relative
  }


  @media(min-width: 769px) {
    .fourth-section-left h2 {
      font-size: 60px;
      margin-bottom: 3rem;
    }

    .fourth-section-right p {
      font-size: 20px
    }
  }

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

    .fourth-section-right, 
    .fourth-section-left {
      width: 50%;
    }

    .fourth-section-left {
      height: 100vh;
      top: 4rem;
      left: 0;
      position: sticky;
    }

    .about-algemeen-container {
      max-width: 400px;
      margin: 4rem auto 0;    
      width: 85%;
    }

    .bloem-about {
      width: 64px;
      height: 64px;
      margin-right: 1.5rem;
    }

    .click-me-container img {
      height: 160px;
    }
  
    .click-me-container {
      position: absolute;
      top: 0;
      left: 40%;
      transform: translate(-60%, -170px);
    }

    .fourth-section {
      padding-bottom: 100px;
    }
  
  }


@media(max-width: 1000px) {
  .numbering-3 {
    margin-bottom: 2rem;
  }
}

  


  /* Stijlen voor .reveal-box */
.reveal-box {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  position: relative;
  /* height: calc(100vh - 48px); */
  /* max-height: 480px; */
  /* width: calc((100vh - 48px) * 0.66); */
  /* max-width: 320px; */
  width: 100%;
  overflow: hidden;
  border-radius: 30px;
  aspect-ratio: 1/1;
  cursor: pointer;
}



.reveal-box > div {
  grid-area: 1 / 1 / 2 / 2;
  border-radius: 30px;
}

.foto {
  border-radius: 33px;
}


.reveal-box__inner {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.foto {
  width: 100%;
  height: 100%;
  object-fit: cover;
  
}


.hidden {
  display: none;
}

.reveal-box__inner::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--lightgrey-e9ebec);
}

.reveal-box__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Animatieklassen */
.enter .reveal-box__inner {
  animation: slide-in-right 0.9s var(--easeInOutQuart) 0s both paused;
}

.enter .reveal-box__inner::after {
  animation: slide-out-right 0.9s var(--easeInOutQuart) 0.6s both paused;
}

.enter .reveal-box__image {
  animation: scale-in-down 1.5s var(--easeInOutQuart) 0.3s both paused;
}




.leave .reveal-box__inner {
  animation: slide-out-right 0.9s var(--easeInOutQuart) 0s both paused;
}

.leave .reveal-box__inner::after {
  animation: slide-in-left 0.9s var(--easeInOutQuart) 0s both paused;
}

.leave .reveal-box__image {
  animation: slide-out-left 0.9s var(--easeInOutQuart) 0s both paused;
}

.animate .reveal-box__inner,
.animate .reveal-box__inner::after,
.animate .reveal-box__image {
  animation-play-state: running;
}

/* Keyframe-animaties */
@keyframes slide-in-right {
  0% {
    transform: translate3D(-100%, 0, 0);
  }
  100% {
    transform: translate3D(0, 0, 0);
  }
}

@keyframes slide-out-right {
  0% {
    transform: translate3D(0, 0, 0);
  }
  100% {
    transform: translate3D(100%, 0, 0);
  }
}

@keyframes slide-in-left {
  0% {
    transform: translate3D(100%, 0, 0);
  }
  100% {
    transform: translate3D(0, 0, 0);
  }
}

@keyframes slide-out-left {
  0% {
    transform: translate3D(0, 0, 0);
  }
  100% {
    transform: translate3D(-100%, 0, 0);
  }
}

@keyframes scale-in-down {
  0% {
    transform: scale(1.3);
  }
  100% {
    transform: scale(1);
  }
}


/* Vendor Prefixes toegevoegd */
@-webkit-keyframes slide-in-right {
  0% {
    -webkit-transform: translate3D(-100%, 0, 0);
  }
  100% {
    -webkit-transform: translate3D(0, 0, 0);
  }
}

@-webkit-keyframes slide-out-right {
  0% {
    -webkit-transform: translate3D(0, 0, 0);
  }
  100% {
    -webkit-transform: translate3D(100%, 0, 0);
  }
}

@-webkit-keyframes slide-in-left {
  0% {
    -webkit-transform: translate3D(100%, 0, 0);
  }
  100% {
    -webkit-transform: translate3D(0, 0, 0);
  }
}

@-webkit-keyframes slide-out-left {
  0% {
    -webkit-transform: translate3D(0, 0, 0);
  }
  100% {
    -webkit-transform: translate3D(-100%, 0, 0);
  }
}

@-webkit-keyframes scale-in-down {
  0% {
    -webkit-transform: scale(1.3);
  }
  100% {
    -webkit-transform: scale(1);
  }
}




/* FIFTH SECTION  */


@keyframes samenwerken-slider-left {
  from {left: 0px}
  to {left: -2000px}
}

/* WebKit (Safari, older versions of Chrome) */
@-webkit-keyframes samenwerken-slider-left {
from { left: 0px; }
to { left: -2000px; }
}

/* Mozilla Firefox */
@-moz-keyframes samenwerken-slider-left {
from { left: 0px; }
to { left: -2000px; }
}

/* Opera */
@-o-keyframes samenwerken-slider-left {
from { left: 0px; }
to { left: -2000px; }
}

/* Microsoft Internet Explorer */
@-ms-keyframes samenwerken-slider-left {
from { left: 0px; }
to { left: -2000px; }
}


@keyframes samenwerken-slider-right {
  from {
    transform: translateX(-6%);
}
to {
    transform: translateX(0%);
}
}


/* WebKit (Safari, older versions of Chrome) */
@-webkit-keyframes samenwerken-slider-right {
    from {
    transform: translateX(-6%);
}
to {
    transform: translateX(0%);
}
  }
  
  /* Mozilla Firefox */
  @-moz-keyframes samenwerken-slider-right {
    from {
    transform: translateX(-6%);
}
to {
    transform: translateX(0%);
}
  }
  
  /* Opera */
  @-o-keyframes samenwerken-slider-right {
    from {
    transform: translateX(-6%);
}
to {
    transform: translateX(0%);
}
  }
  
  /* Microsoft Internet Explorer */
  @-ms-keyframes samenwerken-slider-right {
    from {
    transform: translateX(-6%);
}
to {
    transform: translateX(0%);
}
  }

.samenwerken-slider p {
  color: var(--darkgrey-222222);
  margin-left: 10px;
}

.samenwerking-slider-container {
  position: absolute;
  bottom: 0;
  left: 0;
}

.samenwerking-slider-relative-container {
  height: 228px;
  position: relative;
}
.samenwerken-slider {
  font-size: 72px;
  font-weight: var(--medium);
  color: var(--darkgrey-222222);
}

.samenwerken-slider-left {
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 0rem 2rem 0rem 2rem;
    display: flex;
    gap: 0rem;
    align-items: center;
    overflow-x: hidden;
    white-space: nowrap;
    animation: samenwerken-slider-left 30s linear infinite;
    -webkit-animation: samenwerken-slider-left 30s infinite linear;
    -moz-animation: samenwerken-slider-left 30s infinite linear; 
    -o-animation: samenwerken-slider-left 30s infinite linear; 
    -ms-animation: samenwerken-slider-left 30s infinite linear; 
}

.samenwerken-slider-right {
    position: absolute;
    left: 0;
    bottom: -60px;
    padding: 0rem 2rem 0rem 2rem;
    display: flex;
    gap: 0rem;
    align-items: center;
    overflow-x: hidden;
    white-space: nowrap;
    animation: samenwerken-slider-right 30s linear infinite;
    -webkit-animation: samenwerken-slider-right 30s infinite linear;
    -moz-animation: samenwerken-slider-right 30s infinite linear; 
    -o-animation: samenwerken-slider-right 30s infinite linear; 
    -ms-animation: samenwerken-slider-right 30s infinite linear; 
}

.glyph-samenwerken {
  display: inline;
  height: 54px;
  margin-left: 2rem;
  margin-right: 1rem;
}

.glyph-samenwerken-top {
  transform: translateY(2px)
}
.glyph-samenwerken-bottom {
  transform: translateY(5px)
}

@media (min-width: 1000px) {
  .samenwerken-slider p {
    font-size: 154px;
  }

  .glyph-samenwerken {
    display: inline;
    height: 105px;
    margin-left: 2rem;
    margin-right: 1rem;
  }

  .glyph-samenwerken-top {
    transform: translateY(5px)
  }
  .glyph-samenwerken-bottom {
    transform: translateY(10px)
  }
  

  .samenwerken-slider-right {
    bottom: -120px;
}

}


/* CONTACT SECTION  */

.contact-container-mobile  {
  margin-top: 92px;
}

.contact-container-mobile > a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 192px;
  border-radius: 5px;
  border: 1px solid var(--darkgrey-222222);
  box-shadow: 2px 4px 0 var(--darkgrey-222222);
}

.contact-container-mobile > a:first-child {
  background-color: var(--purple);
  margin-bottom: 12px;
}
.contact-container-mobile > a:nth-child(2) {
  background-color: var(--green);
  margin-bottom: 12px;

}
.contact-container-mobile > a:nth-child(3) {
  background-color: var(--pink);
}

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



.contact-container-desktop {
  margin-top: 192px;
}

form {
  display: flex;
  padding: 3rem 3rem 3rem 4rem;
  border: 1px solid var(--darkgrey-222222);
  border-radius: 32px;
  box-shadow: 4px 8px 0 var(--darkgrey-222222);
}


form > div:first-child {
  width: 63.1%;
  border-right: 1px solid var(--lightgrey-c2c6ca);
}
form > div:nth-child(2){
  width: 37.9%;
}

input {
  display: block;
}

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

.label-text {
  color: var(--grey);
  font-size: 18px;
  line-height: 1;
  margin-bottom: 1.5rem;
  display: block;
}

#bericht {
  width: 90%;
  height: 100%;
  resize: none;
  border: none;
  background-color: var(--lightgrey-fafafa);
  font-size: 24px;
  color: var(--darkgrey-222222);
}

#bericht:active, 
#bericht:focus{
  outline: none;
}

.postzegel {
  width: 118px;
  margin-left: auto;
}

.email-text-form {
  font-size: 1.5rem;
  font-weight: var(--medium);
  line-height: 1;
  margin-bottom: 3rem;
  color: var(--darkgrey-222222);
}

.input-contact-gegevens {
  width: 100%;
  border-bottom: 1px solid var(--grey);
  border-top: none;
  border-left: none;
  border-right: none;
  background-color: transparent;
  margin-bottom: 3rem;
  font-size: 20px;
  color: var(--darkgrey-222222);
}

.input-contact-gegevens:focus {
  outline: none;
}


.shadow {
  filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
}

.form-submit-btn {
  background-color: var(--lightgrey-fafafa);
  box-shadow: 2px 2px 0 var(--darkgrey-222222);
  color: var(--darkgrey-222222);
  font-size: 17px;
  border: 1px solid var(--darkgrey-222222); 
  border-radius: 15px;
  padding: 10px 46px;
  max-width: 160px;
  cursor: pointer;
}

.form-submit-btn:hover {
  box-shadow: 4px 4px 0 var(--darkgrey-222222);
  transform: translate(-5px, -2px);
}

.flex-box-contact {
  display: flex;
  flex-direction: column;
  justify-content: end;
  height: 100%;
}
.contact-information-container {
  position: relative;
}
.postzegel-container {
  position: absolute;
  top: 0;
  right: 0;
}

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





@media (max-width: 1200px) {
  form {
    min-height: 650px;
    padding: 3rem 2rem 3rem 2rem;
  }

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

@media (min-width: 1200px) {
  form {
    aspect-ratio: 1.81 / 1;
    max-height: 80vh;
    margin: 0 auto;
  }
}



.message-sent-container {
    max-width: 1000px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 80%;
    width: 60vw;
    background-color: var(--lightgrey-fafafa);
    box-shadow: 4px 8px 0 var(--darkgrey-222222);
    border: 2px solid var(--darkgrey-222222);
    z-index: 1;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 2rem;
  }

  .image-container-msg-sent {
    width: 50px;
  }

  .message-sent-container > button {
    background-color: var(--lightgrey-fafafa);
    box-shadow: 2px 2px 0 var(--darkgrey-222222);
    color: var(--darkgrey-222222);
    font-size: 17px;
    border: 1px solid var(--darkgrey-222222); 
    border-radius: 15px;
    padding: 10px 46px;
    max-width: 160px;
    cursor: pointer;
  }

  .message-sent-container > button:hover {
    box-shadow: 4px 4px 0 var(--darkgrey-222222);
    transform: translate(-5px, -2px);
  }

  @media (max-width:999px) {
    .message-sent-container {
      display: none;
    }
  }

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


  .img-animation-post-card {
    width: 100px;
  }

  .image-container-msg-sent {
    width: 100px;
  }
  
  .msg-contact {
    font-size: 1.5rem;
  }


/* FOOTER  */

footer > .footer-div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 4rem;
  border: 1px solid var(--darkgrey-222222);
  box-shadow: 2px 4px 0 var(--darkgrey-222222);
  border-radius: 10px;
  padding: 2rem 1rem;
}

.footer-logo-tekst {
  letter-spacing: -0.05rem;
  color: var(--darkgrey-222222);
}



@media (min-width: 769px) {
  footer > .footer-div {
    margin-top: 100px;
    box-shadow: 4px 8px 0 var(--darkgrey-222222);
    border-radius: 10px;
    padding: 2rem 1.5rem;
  }

  .footer-logo-tekst {
    font-size: 20px;
  }
}

.logo-mark-footer {
  height: 3rem;
  width: 3rem;
}

.social-media-link-container {
  display: flex;
  gap: 4px;
  justify-content: end;
}


.logo-mark-container {
  display: flex;
  justify-content: center;
}

footer > .footer-div > div {
  width: 33%;
}






.studio-honing-link {
  margin-top: 1rem;
  padding-bottom: 1rem;
  color: var(--darkgrey-5e5636a);
  font-size: 12px;
}

.link-studio-honing {
  color: var(--darkgrey-5e5636a);
  text-decoration: underline var(--darkgrey-5e5636a);
  -webkit-text-decoration: underline var(--darkgrey-5e5636a);
  -webkit-text-underline-offset: 4px;
  text-underline-offset: 4px;
}

@media (min-width: 769px) {
  .studio-honing-link {
    margin-top: 2rem;
    padding-bottom: 2rem;
  }
}

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

  footer > .footer-div > div:first-child {
    width: 75%;
  }
  
}




.succes-container {
  height: 100svh;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

.succes-container h1 {
  font-size: clamp(1rem, 7vw, 2rem)
}

.succes-container a {
  text-decoration: underline;
}

.bloemsucces {
  width: 100px; 
  position: absolute;
  bottom: 10%;
}



/* loader  */


.loader {
  background-color: var(--lightgrey-fafafa);
  height: 100vh;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s, visibility 0.6s;   
}

.loader-container {
  display: flex;
}

.logo-round  {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}

.logo-round-left {
  background-color: var(--purple);
}
.logo-round-right {
  background-color: var(--darkgrey-222222);
}

.logo-triangle {
  width: 69px;
  height: 69px;
  clip-path: polygon(100% 0, 0 0, 0 100%);
  margin-top: 9px;
}

.logo-triangle-left {
  background-color: var(--purple);
}
.logo-triangle-right {
  background-color: var(--darkgrey-222222);
}

.logo-left {
  animation: logo-left-animation 1.5s cubic-bezier(0.45,0.64,0.12,1) 1 both;
}

.logo-right {
  animation: logo-right-animation 1.5s cubic-bezier(0.45,0.64,0.12,1) 1 both;
}

.loader-container-animation {
  animation: logo-scale-animation 1.5s cubic-bezier(0.45,0.64,0.12,1) 1 both;
}

@keyframes logo-left-animation {
  0% {transform: translate(-50vw);}
  100% {transform: translate(0vw);}
}
@keyframes logo-right-animation {
  0% {transform: translate(50vw);}
  100% {transform: translate(0vw);}
}

@keyframes logo-scale-animation {
  0% {transform: scale(100%);}
  100% {transform: scale(0%);}
}


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



.lang-select {
  border: 1px solid var(--darkgrey-222222);
  box-shadow: 2px 4px 0 var(--darkgrey-222222);
  border-radius: 6px;
  background-color: var(--lightgrey-fafafa);
  color: var(--darkgrey-222222);
}

.lang-select {
  background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position-x: 100%;
  background-position-y: center;
  -moz-appearance:none !important;
  -webkit-appearance: none !important; 
  appearance: none !important;
  padding-right: 2rem !important;
  padding: 1rem 4rem 1rem 1rem;
  border: 1px solid var(var(--darkgrey-222222));
  cursor: pointer; 
}





.flex-container-lang-select {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 1rem;
  margin-bottom: 1rem;
}


