:root {
  --primary: #60717f;
  --secondary: #d37d47;
  --third: #3F2791;
  --grey: #9aaebc;
  --blue: #00bfff;
  --dark: #374955;
  --pink: #ef95d3;
  --logoB: #262266;
  --green: #92cc8b;
  --darkblue: #033b62;
  --bg: #F4EEE5;
  --bg2: #EFF5F6;
  --bg3: #ffb264;
  --theme: #F39F5F;
  --theme2: #70A6B1;
  --theme3: #ffb264;

  --box1: #4CB0B3;
  --box2: #3F2791;
  --box3: #FF8360;


}

.primary-color {
  color: #3e576c !important;
}

.secondary-color {
  color: var(--secondary) !important;
}


.green {
  background-color: var(--green);
}


.form-bg {
  background-color: #faebd7;

}

/********** Font ***********/

.fredoka {
  font-family: "Fredoka", sans-serif;
  font-style: normal;
}


@font-face {
  font-family: 'delius';
  src: url('/assets/fonts/DeliusUnicase-Regular.woff2') format('woff2'),
    url('/assets/fonts/DeliusUnicase-Regular.ttf') format('ttf');
  font-weight: 400;
  font-style: normal;
}

.delius {
  font-family: 'delius', Arial, sans-serif;

}




/* Standard */

body {
  background-color: #fff8f0;
  color: #383838;
}


a {
  color: var(--primary-color);
}

a:hover {
  color: var(--success-color);
}


/* Fonts */

/* Extra space for 1366-ish widths but not full HD */
@media screen and (min-width: 1200px) and (max-width: 1599px) {


  .fs-1 {
    font-size: 2rem !important;
  }


  .fs-2 {
    font-size: 2rem !important;
  }


  .fs-3 {
    font-size: 1.4rem !important;
  }


  .fs-4 {
    font-size: 1.3rem !important;
  }


  .display-5 {
    font-size: 2.7rem !important;
  }

}



/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity .5s ease-out, visibility 0s linear .5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity .5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}



/*** Animations ***/

.star-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  /* stars don’t block clicks */
  overflow: hidden;
  /* keep stars inside container */
  z-index: 0;
  /* behind content */
  padding-top: 20px;
  padding-bottom: 20px;
}


@media (min-width: 576px) {


  .star-container {

    padding-top: 20px;
    padding-bottom: 20px;

  }


  /* sm */
}


@media (min-width: 768px) {


  .star-container {

    padding-top: 20px;
    padding-bottom: 20px;

  }



  /* md */
}



.star {
  position: absolute;
  width: 15px;
  /* size is set in JS */
  height: 15px;
  opacity: 0;
  /* start invisible */
  transition: opacity 2s ease-in-out;
  /* smooth fade-in and fade-out */
  pointer-events: none;
}

@keyframes twinkle {

  0%,
  100% {
    opacity: 0;
    transform: scale(0.8);
  }

  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}

/**** Back To Top ***/



.back-to-top {
  position: fixed;
  bottom: 40px;
  right: calc(40px + var(--f-scrollbar-compensate, 0px));
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--secondary);
  color: white;
  z-index: 100;
  cursor: pointer;

  opacity: 0;
  pointer-events: none;

  transform: translateY(0) rotate(0deg);
  transition:
    opacity 0.3s ease,
    background-color 0.3s ease,
    transform 0.3s ease;

  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.back-to-top:hover {
  background-color: #d3936c;
  transform: translateY(-6px) rotate(5deg);
  color: #fff !important;
}





/* main-header start */
[data-target="#mainMenu"] {
  position: relative;
  z-index: 999;
}

#mainMenu li>a {
  font-size: 0.9rem;
  letter-spacing: 0px;
  color: #fff;
  font-weight: 500;
  position: relative;
  z-index: 1;
  text-decoration: none;
}



@media (min-width: 576px) {

  #mainMenu li>a {
    font-size: 0.9rem;
    letter-spacing: 0px;
    color: #fff;
    font-weight: 500;
    position: relative;
    z-index: 1;
    text-decoration: none;
  }



  /* sm */
}


@media (min-width: 768px) {

  #mainMenu li>a {
    font-size: 1.1rem;
    letter-spacing: 0px;
    color: #fff;
    font-weight: 500;
    position: relative;
    z-index: 1;
    text-decoration: none;
  }



  /* md */
}

@media (min-width: 992px) {

  #mainMenu li>a {
    font-size: 0.6rem;
    letter-spacing: 0px;
    color: #fff;
    font-weight: 500;
    position: relative;
    z-index: 1;
    text-decoration: none;
  }



  /* lg */
}

@media (min-width: 1200px) {

  #mainMenu li>a {
    font-size: 0.7rem;
    letter-spacing: 0px;
    color: #fff;
    font-weight: 500;
    position: relative;
    z-index: 1;
    text-decoration: none;
  }

  /* xl */
}

@media (min-width: 1400px) {

  #mainMenu li>a {
    font-size: 0.8rem;
    letter-spacing: 0px;
    color: #fff;
    font-weight: 500;
    position: relative;
    z-index: 1;
    text-decoration: none;
  }

  /* xxl */
}


#mainMenu span>a {
  font-size: 12px;
  letter-spacing: 1px;
  color: #fff;
  font-weight: 400;
  position: relative;
  z-index: 1;
  text-decoration: none;
}




@media (min-width: 576px) {

  #mainMenu span>a {
    font-size: 12px;
    letter-spacing: 1px;
    color: #fff;
    font-weight: 400;
    position: relative;
    z-index: 1;
    text-decoration: none;
  }



  /* sm */
}


@media (min-width: 768px) {

  #mainMenu span>a {
    font-size: 12px;
    letter-spacing: 1px;
    color: #fff;
    font-weight: 400;
    position: relative;
    z-index: 1;
    text-decoration: none;
  }




  /* md */
}

@media (min-width: 992px) {

  #mainMenu span>a {
    font-size: 0.6rem;
    letter-spacing: 1px;
    color: #fff;
    font-weight: 400;
    position: relative;
    z-index: 1;
    text-decoration: none;
  }



  /* lg */
}

@media (min-width: 1200px) {

  #mainMenu span>a {
    font-size: 0.6rem;
    letter-spacing: 1px;
    color: #fff;
    font-weight: 400;
    position: relative;
    z-index: 1;
    text-decoration: none;
  }


  /* xl */
}

@media (min-width: 1400px) {

  #mainMenu span>a {
    font-size: 12px;
    letter-spacing: 1px;
    color: #fff;
    font-weight: 400;
    position: relative;
    z-index: 1;
    text-decoration: none;
  }


  /* xxl */
}





.main-header.fixed-nav #mainMenu li>a {
  color: #fff;
  text-decoration: none;
}

#mainMenu>ul>li:not(:last-of-type) {
  margin-right: 0px;
}



@media (min-width: 576px) {

  #mainMenu>ul>li:not(:last-of-type) {
    margin-right: 0px;
  }


  #mainMenu li>a::before {
    display: none;
  }



  /* sm */
}


@media (min-width: 768px) {

  #mainMenu>ul>li:not(:last-of-type) {
    margin-right: 0px;
  }


  #mainMenu li>a::before {
    display: none;
  }




  /* md */
}

@media (min-width: 992px) {

  #mainMenu>ul>li:not(:last-of-type) {
    margin-right: 24px;
  }


  #mainMenu li>a::before {
    position: absolute;
    content: "";
    width: calc(100% - 1px);
    height: 1px;
    background: #fff;
    bottom: -6px;
    left: 0;
    -webkit-transform: scale(0, 1);
    -ms-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: right center;
    -ms-transform-origin: right center;
    transform-origin: right center;
    z-index: -1;

    -webkit-transition: transform 0.5s ease;
    transition: transform 0.5s ease;
    display: block;
  }


  /* lg */
}

@media (min-width: 1200px) {

  #mainMenu>ul>li:not(:last-of-type) {
    margin-right: 24px;
  }


  #mainMenu li>a::before {
    position: absolute;
    content: "";
    width: calc(100% - 1px);
    height: 1px;
    background: #fff;
    bottom: -6px;
    left: 0;
    -webkit-transform: scale(0, 1);
    -ms-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: right center;
    -ms-transform-origin: right center;
    transform-origin: right center;
    z-index: -1;

    -webkit-transition: transform 0.5s ease;
    transition: transform 0.5s ease;
  }



  /* xl */
}

@media (min-width: 1400px) {

  #mainMenu>ul>li:not(:last-of-type) {
    margin-right: 24px;
  }


  #mainMenu li>a::before {
    position: absolute;
    content: "";
    width: calc(100% - 1px);
    height: 1px;
    background: #fff;
    bottom: -6px;
    left: 0;
    -webkit-transform: scale(0, 1);
    -ms-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: right center;
    -ms-transform-origin: right center;
    transform-origin: right center;
    z-index: -1;

    -webkit-transition: transform 0.5s ease;
    transition: transform 0.5s ease;
  }


  /* xxl */
}





/* override ONLY for dropdown items */
#mainMenu .dropdown-menu li>a::before {
  background: #455969;
}


nav .dropdown-menu {
  background-color: #efd9ce;
  width: auto;
}




@media (min-width: 576px) {

  nav .dropdown-menu {
    background-color: #efd9ce;
    width: auto;
  }


  /* sm */
}


@media (min-width: 768px) {

  nav .dropdown-menu {
    background-color: #efd9ce;
    width: auto;
  }



  /* md */
}

@media (min-width: 992px) {

  nav .dropdown-menu {
    background-color: #efd9ce;
    width: auto;
  }


  /* lg */
}

@media (min-width: 1200px) {

  nav .dropdown-menu {
    background-color: #efd9ce;
    width: 224px;
  }



  /* xl */
}

@media (min-width: 1400px) {

  nav .dropdown-menu {
    background-color: #efd9ce;
    width: 248px;
  }


  /* xxl */
}



#mainMenu li>a:hover {
  color: var(--green);
}


#mainMenu li>a.active {
  color: var(--green);
}

#mainMenu li>a:hover::before,
#mainMenu li>a.active::before {
  -webkit-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transform-origin: left center;
  -ms-transform-origin: left center;
  transform-origin: left center;
}

.main-header.fixed-nav #mainMenu li>a::before {
  background: #000;
}

.main-header {
  top: 25px;
  left: 0;
  z-index: 99;
  width: 100%;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.main-header.fixed-nav {
  top: 0;
  background: #fff;
  -webkit-box-shadow: 0 8px 12px -8px rgba(0, 0, 0, 0.09);
  box-shadow: 0 8px 12px -8px rgba(0, 0, 0, 0.09);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.main-header.fixed-nav .navbar-brand>img:last-of-type {
  display: block;
}

.main-header.fixed-nav .navbar-brand>img:first-of-type {
  display: none;
}

.navbar {
  background-color: #60717f;
}


.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=UTF8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='%23fff' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.navbar-toggler:focus,
.navbar-toggler:active {
  outline: none;
  /* remove the default outline */
  box-shadow: none;
  /* remove the default focus shadow */
  border: none;
  /* remove any border that appears */
}


/* main-header end */
@media (max-width: 991px) {

  /*header starts*/
  .collapse.in {
    display: block !important;
    padding: 0;
    clear: both;
  }

  .navbar-toggler {
    margin: 0;
    padding: 0;
    width: 40px;
    height: 40px;
    position: absolute;
    right: 14px;
    border: none;
    border-radius: 0;
    outline: none !important;
    top: 10px;
  }

  .main-header .navbar {
    width: 90%;
    position: absolute;
    top: 100%;

    left: 50%;
    transform: translateX(-50%);

    z-index: 999;
    transition: transform 0.25s ease;

  }

  .navbar-collapse {
    transition: height 0.4s ease, opacity 0.3s ease;
    opacity: 0;
  }

  .navbar-collapse.show {
    opacity: 1;
  }


  .main-header .navbar-nav {
    margin-top: 70px;
  }

  .main-header .navbar-nav li .nav-link {
    text-align: center;
    padding: 12px 14px;
    border-radius: 0px;
  }

  /*header ends*/
}



#hero-headers span,
#hero-headers-facility span {
  font-size: 1.3rem;
}



@media (min-width: 576px) {

  #hero-headers span,
  #hero-headers-facility span {
    font-size: 2.1rem;
  }

  /* sm */
}


@media (min-width: 768px) {

  #hero-headers span,
  #hero-headers-facility span {
    font-size: 2.1rem;
  }

  /* md */
}

@media (min-width: 992px) {

  #hero-headers span,
  #hero-headers-facility span {
    font-size: 2.1rem;
  }

  /* lg */
}

@media (min-width: 1200px) {

  #hero-headers span,
  #hero-headers-facility span {
    font-size: 2.1rem;
  }

  /* xl */
}

@media (min-width: 1400px) {

  #hero-headers span,
  #hero-headers-facility span {
    font-size: 2.1rem;
  }

  /* xxl */
}




#heroIndex {
  background-color: #fff8f0;
  overflow: hidden;
}

#heroIndex .heroP {
  font-size: 1rem;
}



@media (min-width: 576px) {
  #heroIndex .heroP {
    font-size: 1rem;
  }


  /* sm */
}

@media (min-width: 768px) {
  #heroIndex .heroP {
    font-size: 1.2rem;
  }


  /* md */
}

@media (min-width: 992px) {

  #heroIndex .heroP {
    font-size: 1rem;
  }


  /* lg */
}

@media (min-width: 1200px) {
  #heroIndex .heroP {
    font-size: 1rem;
  }

  /* xl */
}

@media (min-width: 1400px) {
  #heroIndex .heroP {
    font-size: 1rem;
  }

  /* xxl */
}




/* Zorg dat de sectie de referentie is */
#heroIndex {
  position: relative;
  background-color: #fff8f0;
  overflow: hidden;
}

/* Wave aan de onderkant vast */
#heroIndex::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  /* direct tegen onderkant */
  width: 100%;
  height: clamp(40px, 6vh, 80px);
  background: url("/assets/img/shapes/top1.svg") no-repeat center bottom;
  background-size: cover;
  z-index: 1;
}



#heroIndex {
  position: relative;
  background-color: #fff8f0;
  overflow: hidden;
  min-height: clamp(70vh, 80svh, 90vh);
  display: flex;
  align-items: center;
}

/* Content wrapper krijgt hogere z-index */
.hero-wrapper {
  z-index: 3 !important;
  position: relative;
}



/* SVGs decoratie */
.hero-bg-img {
  position: absolute;
  bottom: -10vh;
  left: 22%;
  width: clamp(200px, 75vw, 550px);
  opacity: 0.3;
  z-index: 1;
}



@media (min-width: 576px) {
  .hero-bg-img {
    position: absolute;
    bottom: -10vh;
    left: 22%;
    width: clamp(200px, 75vw, 550px);
    opacity: 0.3;
    z-index: 1;
  }

  /* sm */
}

@media (min-width: 768px) {

  .hero-bg-img {
    position: absolute;
    bottom: -10vh;
    left: 22%;
    width: clamp(200px, 75vw, 550px);
    opacity: 0.3;
    z-index: 1;
  }


  /* md */
}

@media (min-width: 992px) {

  .hero-bg-img {
    bottom: -10vh;
    left: 49%;
    width: clamp(200px, 75vw, 750px);
    opacity: 0.3;
  }



  /* lg */
}

@media (min-width: 1200px) {

  .hero-bg-img {
    bottom: -10vh;
    left: 49%;
    width: clamp(200px, 75vw, 750px);
    opacity: 0.3;
  }



  /* xl */
}

@media (min-width: 1400px) {

  .hero-bg-img {
    bottom: -10vh;
    left: 52%;
    width: clamp(200px, 75vw, 850px);
    opacity: 0.3;
  }


  /* xxl */
}


.hero-bg-img2 {
  position: absolute;
  bottom: clamp(-30px, -4vh, -20px);
  left: 50%;
  transform: translateX(-50%);
  width: clamp(120px, 20vw, 280px);
  height: auto;
  z-index: 2;
}


.hero-kids {
  position: absolute !important;
  bottom: clamp(0px, -5vh, -50px);
  right: clamp(20px, 8vw, 100px);
  width: clamp(130px, 20vw, 320px);
  height: auto;
  z-index: 2;
  max-width: none;
}

.hero-kids2 {
  position: absolute !important;
  top: clamp(-34px, -105vh, 50px);
  right: clamp(20px, 8vw, 100px);
  width: clamp(110px, 20vw, 320px);
  height: auto;
  z-index: 2;
  max-width: none;
}



@media (min-width: 576px) {

  .hero-kids {
    position: absolute !important;
    bottom: clamp(0px, -5vh, -50px);
    right: clamp(20px, 8vw, 100px);
    width: clamp(180px, 30vw, 320px);
    height: auto;
    max-width: none;
  }


  .hero-kids2 {
    position: absolute !important;
    top: clamp(-55px, -105vh, 50px);
    right: clamp(20px, 8vw, 100px);
    width: clamp(130px, 20vw, 320px);
    height: auto;
    z-index: 2;
    max-width: none;
  }



  /* sm */
}

@media (min-width: 768px) {

  .hero-kids {
    position: absolute !important;
    bottom: clamp(0px, -5vh, -50px);
    right: clamp(20px, 8vw, 100px);
    width: clamp(180px, 20vw, 320px);
    height: auto;
    max-width: none;
  }



  /* md */
}

@media (min-width: 992px) {

  .hero-kids {
    position: absolute !important;
    bottom: clamp(0px, -5vh, -50px);
    right: clamp(20px, 8vw, 100px);
    width: clamp(180px, 30vw, 320px);
    height: auto;
    max-width: none;
  }



  /* lg */
}

@media (min-width: 1200px) {

  .hero-kids {
    position: absolute !important;
    bottom: clamp(0px, -5vh, -50px);
    right: clamp(20px, 10vw, 95px);
    width: clamp(180px, 30vw, 300px);
    height: auto;
    max-width: none;
  }



  /* xl */
}

@media (min-width: 1400px) {

  .hero-kids {
    position: absolute !important;
    bottom: clamp(0px, -5vh, -50px);
    right: clamp(10px, 50vw, 300px);
    width: clamp(180px, 30vw, 320px);
    height: auto;
    max-width: none;
  }


  /* xxl */
}



.pill-bg-light {
  background: #efd9ce;
}


.pill-bg-dark {
  background: #60717f;
}



.pill-dbg-light {
  background: #efd9ce;
}


.pill-dbg-dark {
  background: var(--green);
}





/* PRIMARY */
.btn-primary {
  background: #d37d47;
  border: 0 !important;
  transition: background 0.25s ease;
  /* only bg */
}

.btn-primary:hover {
  background: #e28145 !important;
}

/* icon animation shared */
.btn .btn-icon {
  transition: transform 0.25s ease;
}

.btn:hover .btn-icon {
  transform: translateX(4px);
}

/* SECONDARY */
.btn-secondary {
  background: var(--primary);
  border: 0 !important;
  transition: background 0.25s ease;
}

.btn-secondary:hover {
  background: #627c91;
  /* define if needed */
}


/* PRIMARY */
.btn-menu {
  background: #efd9ce;
  border: 0 !important;
  transition: background 0.25s ease;
  /* only bg */
}

.btn-menu:hover {
  background: #ceb9ae !important;
}

.pill-outline {
  border: 2px dashed #3c6b99;
  color: #d37d47;
  ;
}


.pill-rotate {
  display: inline-block;
  transform: rotate(7deg);
  transform-origin: center;
  /* rotate around center */
}





.green-band {
  position: relative;
  /* nodig voor ::before / ::after */
  background-color: #92cc8b;
  padding: 4rem 0;
  overflow: visible;
}


/* Bottom shape */
.green-band::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 3px;
  width: 100%;
  height: clamp(40px, 6vh, 80px);
  /* i.p.v. vaste 60px */
  background: url("/assets/img/shapes/bot1.svg") no-repeat center top;
  background-size: cover;
  /* i.p.v. 100% 100% */
  transform: translateY(100%);
  z-index: 1;
}






.grey-band {
  position: relative;
  background-color: var(--primary);
  padding: 4rem 0;
  overflow: visible;
}

/* Bottom shape */
.grey-band::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 3px;
  width: 100%;
  height: clamp(60px, 8vh, 130px);
  background: url(/assets/img/shapes/bot2.svg) no-repeat center top;
  background-size: cover;
  transform: translateY(100%);
  pointer-events: none;
}






.card-bg-l {
  border: 2px dashed #455969;
  background-color: #fff8f0;
}

.card-bg-d {
  background-color: #455969;
}

/* Rotate only this card */
.card-rotated {
  transform: rotate(5deg);
  transform-origin: center;
}

/* Common transition */
.dashed-card {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Hover: only move up */
.dashed-card:hover {
  transform: translateY(-6px);
}

/* Rotated card: keep rotation, just move up */
.card-rotated:hover {
  transform: translateY(-6px) rotate(5deg);
}


#aboutIndex {
  height: auto;
}

#aboutIndex .container {
  margin-bottom: 120px;
}



@media (min-width: 576px) {
  #aboutIndex {
    height: auto;
  }


  /* sm */
}

@media (min-width: 768px) {

  #aboutIndex {
    min-height: 1724px
  }


  /* md */
}

@media (min-width: 992px) {

  #aboutIndex {
    min-height: 1154px;
  }


  /* lg */
}

@media (min-width: 1200px) {

  #aboutIndex {
    min-height: 1380px;
  }


  /* xl */
}

@media (min-width: 1400px) {

  #aboutIndex {
    min-height: 1154px;
  }


  /* xxl */
}



.about-bg {
  background-image: url(/assets/img/shapes/bg.webp);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 100%;
  bottom: -1px;
}


@supports not (background-image: url(/assets/img/shapes/bg.webp)) {
  .about-bg {
    background-image: url(/assets/img/shapes/bg.png);
  }
}

@media (min-width: 576px) {

  .about-bg {
    background-size: 84%;
  }



  /* sm */
}

@media (min-width: 768px) {

  .about-bg {
    background-size: 73%;
  }



  /* md */
}

@media (min-width: 992px) {

  .about-bg {
    background-size: 73%;
  }


  /* lg */
}

@media (min-width: 1200px) {

  .about-bg {
    background-size: 74%;
  }



  /* xl */
}

@media (min-width: 1400px) {

  .about-bg {
    background-size: 53%;
  }


  /* xxl */
}




.meisje-deco {
height: 162px;
    bottom: 14px;
    left: 26%;
    z-index: 10;

}

.jongen-deco {
  height: 110px;
  bottom: 12px;
  left: 10%;
  z-index: 10;
}


@media (min-width: 576px) {


  .meisje-deco {
        height: 130px;
        bottom: 5px;
        left: 18%;
        z-index: 10;

  }

  .jongen-deco {
        height: 87px;
        bottom: 5px;
        left: 10%;
        z-index: 10;
  }


  /* sm */
}

@media (min-width: 768px) {


  .meisje-deco {
    height: 196px;
    bottom: 14px;
    left: 20%;
    z-index: 10;

  }

  .jongen-deco {
    height: 141px;
    bottom: 8px;
    left: 10%;
    z-index: 10;

  }



  /* md */
}

@media (min-width: 992px) {


  .meisje-deco {
    height: 230px;
    bottom: 14px;
    left: 21%;
    z-index: 10;

  }

  .jongen-deco {
    height: 164px;
    bottom: 7px;
    left: 10%;
    z-index: 10;
  }


  /* lg */
}

@media (min-width: 1200px) {


  .meisje-deco {
    height: 305px;
    bottom: 37px;
    left: 17%;
    z-index: 10;
  }

  .jongen-deco {
    height: 194px;
    bottom: 23px;
    left: 10%;
    z-index: 10;
  }


  /* xl */
}

@media (min-width: 1400px) {


  .meisje-deco {
    height: 296px;
    bottom: 14px;
    left: 16%;
    z-index: 10;

  }


  .jongen-deco {
    height: 200px;
    bottom: 9px;
    left: 10%;
    z-index: 10;
  }


  /* xxl */
}



.facility-bg {
  background-color: #fff8f0;
}


.facility-card {
  background-color: #efd9ce;
}


.blog-card-body {
  background-color: #faebd7;
}


.facIcons {
  width: 36px;
}

.star-banner {
  height: 36px;
  z-index: 9999;
  bottom: 41px;
  right: 10%;
}

.star-banner2 {
  height: 26px;
  z-index: 9999;
  bottom: 2%;
  right: 8%;
}

.mushIcon {
  height: 36px;
  z-index: 9999;
  bottom: 41px;
  left: 10%;
  transform: rotate(9deg);
}

.mushIcon2 {
  height: 18px;
  z-index: 9999;
  bottom: 41px;
  left: 22%;
  transform: rotate(-2deg);
}


@media (min-width: 576px) {


  .mushIcon2 {
    height: 18px;
    z-index: 9999;
    bottom: 41px;
    left: 18%;
    transform: rotate(-2deg);
  }


  /* sm */
}


@media (min-width: 768px) {


  .mushIcon2 {
    height: 18px;
    z-index: 9999;
    bottom: 41px;
    left: 16%;
    transform: rotate(-2deg);
  }




  /* md */
}

@media (min-width: 992px) {


  .mushIcon2 {
    height: 18px;
    z-index: 9999;
    bottom: 41px;
    left: 13%;
    transform: rotate(-2deg);
  }

  /* lg */
}

@media (min-width: 1200px) {


  .mushIcon2 {
    height: 18px;
    z-index: 9999;
    bottom: 41px;
    left: 13%;
    transform: rotate(-2deg);
  }



  /* xl */
}

@media (min-width: 1400px) {


  .mushIcon2 {
    height: 18px;
    z-index: 9999;
    bottom: 41px;
    left: 13%;
    transform: rotate(-2deg);
  }

  /* xxl */
}


/* ensure the image area clips the zoom */
.blog-card-img-wrap {
  position: relative;
  overflow: hidden;
}

/* smooth image animation */
.blog-card-img-wrap img {
  display: block;
  width: 100%;
  transition: transform 0.5s ease;
}

/* subtle overlay on hover */
.facility-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

/* when hovering the whole card */
.facility-card:hover .blog-card-img-wrap img {
  transform: scale(1.05);
  /* zoom in a bit */
}

.facility-card:hover::before {
  opacity: 1;
  /* darken slightly */
}



/*** FAQ ***/

.accordion-item {
  background: transparent !important;
}

/* global: all accordions borderless */
.accordion {
  --bs-accordion-border-width: 0;
}


.accordion-button {
  font-size: small !important;
  color: #5d5c5c !important;
}


.accordion-header {
  border: 2px dashed #4d7948;
  background: #b5e0b0;
}

.accordion-header:hover {
  background: #ceebcb;
}


/*** Footer ***/

.footer {
  background: var(--primary);
  color: #fff;
}



.footer .starShape {
  height: 24px;
  left: 34%;
  bottom: 24%;
  right: unset;
  top: unset;
}


.footer .starShape2 {
  height: 14px;
  left: 25%;
  bottom: 22%;
  right: unset;
  top: unset;
}




@media (min-width: 576px) {


  .footer .starShape {
    height: 32px;
    left: 23%;
    bottom: 30%;
    right: unset;
    top: unset;
  }

  .footer .starShape2 {
    height: 24px;
    left: 25%;
    bottom: 34%;
    right: unset;
    top: unset;
  }




  /* sm */
}

@media (min-width: 768px) {


  .footer .starShape {
    height: 32px;
    left: 23%;
    bottom: 30%;
    right: unset;
    top: unset;
  }

  .footer .starShape2 {
    height: 24px;
    left: 25%;
    bottom: 34%;
    right: unset;
    top: unset;
  }



  /* md */
}

@media (min-width: 992px) {


  .footer .starShape {
    height: 32px;
    left: 23%;
    bottom: 30%;
    right: unset;
    top: unset;
  }

  .footer .starShape2 {
    height: 24px;
    left: 25%;
    bottom: 34%;
    right: unset;
    top: unset;
  }



  /* lg */
}

@media (min-width: 1200px) {


  .footer .starShape {
    height: 32px;
    left: 23%;
    bottom: 30%;
    right: unset;
    top: unset;
  }

  .footer .starShape2 {
    height: 24px;
    left: 25%;
    bottom: 34%;
    right: unset;
    top: unset;
  }




  /* xl */
}

@media (min-width: 1400px) {


  .footer .starShape {
    height: 32px;
    left: 23%;
    bottom: 30%;
    right: unset;
    top: unset;
  }

  .footer .starShape2 {
    height: 24px;
    left: 25%;
    bottom: 34%;
    right: unset;
    top: unset;
  }



  /* xxl */
}


.footer .btn.btn-social {
  margin-right: 5px;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 45px;
  transition: .3s;
}


.footer .btn.btn-link {
  display: block;
  margin-bottom: 5px;
  padding: 0;
  text-align: left;
  font-size: 16px;
  font-weight: normal;
  text-transform: capitalize;
  transition: .3s;
}

.footer .btn.btn-link:hover {
  color: var(--green) !important;
  letter-spacing: 1px;
  box-shadow: none;
}

.footer .form-control {
  border-color: rgba(255, 255, 255, 0.5);
}

.footer .copyright {
  padding: 25px 0;
  font-size: 15px;
  border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
  color: #fff;
}



.footer a {
  color: var(--green);
  font-weight: 500;
  text-decoration: none;
}


.footer a:hover {
  color: var(--green);
}


.hover-white:hover {
  color: #fff !important;
  text-decoration: underline;
}


.footer i {
  color: var(--green);
}

.footersocial-icon:hover {
  color: var(--green) !important;

}

.footer .copyright a:hover,
.footer a:hover {
  color: var(--green) !important;
  text-decoration: none;
}


.footer-link {
  color: inherit;
  text-decoration: none;
}

.footer-link:hover {
  text-decoration: underline;
  color: var(--green);
  /* or your brand color */
}


.logo-footer {
  height: 146px;
  position: relative;
  bottom: 0;
  right: 7%;
  z-index: 10;
}


.logo-header {
  position: absolute;
  top: -43px;
  left: 50%;
  /* move to center */
  transform: translateX(-50%);
  /* adjust for center */
  height: 140px;
  z-index: 10;


}



@media (min-width: 576px) {


  .logo-header {
    left: 50%;
    /* move to center */
    transform: translateX(-50%);
    /* adjust for center */
    height: 140px;
  }


  /* sm */
}

@media (min-width: 768px) {


  .logo-header {
    left: 50%;
    /* move to center */
    transform: translateX(-50%);
    /* adjust for center */
    height: 140px;
  }




  /* md */
}

@media (min-width: 992px) {


  .logo-header {
    height: 170px;
    position: absolute;
    top: -43px;
    left: 4%;
    z-index: 10;
  }



  /* lg */
}

@media (min-width: 1200px) {


  .logo-header {
    height: 170px;
    position: absolute;
    top: -43px;
    left: 4%;
    z-index: 10;
  }



  /* xl */
}

@media (min-width: 1400px) {


  .logo-header {
    height: 170px;
    position: absolute;
    top: -43px;
    left: 4%;
    z-index: 10;
  }




  /* xxl */
}








/******* sub ****/


.decoratie-sub {
  height: 250px;
  position: absolute;
  bottom: -8px;
  right: 22%;
  z-index: 9999;
}






#subIndex {
  position: relative;
  z-index: 0;
}

#subIndex p a {
  color: var(--secondary);
  font-weight: 700;
}


#subIndex p a:hover {
  text-decoration: none;
}





#subIndex::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(/assets/img/shapes/tour-bg.svg);
  background-repeat: no-repeat;
  background-position: right center;
  background-size: cover;
  background-attachment: fixed;
  /* <-- key line */
  opacity: 0.4;
  pointer-events: none;
  z-index: -1;
  top: -30px;
}


#subIndex .starShape {
  height: 32px;
  left: 21%;
  top: 9%;
  z-index: 99999;

}




@media (min-width: 576px) {


  #subIndex .starShape {
    height: 32px;
    left: 21%;
    top: 9%;
    z-index: 99999;

  }


  /* sm */
}

@media (min-width: 768px) {


  #subIndex .starShape {
    height: 32px;
    left: 21%;
    top: 9%;
    z-index: 99999;

  }




  /* md */
}

@media (min-width: 992px) {


  #subIndex .starShape {
    height: 32px;
    left: 21%;
    top: 9%;
    z-index: 99999;

  }


  /* lg */
}

@media (min-width: 1200px) {


  #subIndex .starShape {
    height: 32px;
    left: 21%;
    top: 9%;
    z-index: 99999;

  }



  /* xl */
}

@media (min-width: 1400px) {


  #subIndex .starShape {
    height: 32px;
    left: 21%;
    top: 9%;
    z-index: 99999;

  }



  /* xxl */
}




#subIndex .starShape2 {
  height: 20px;
  right: 13%;
  bottom: 46%;
  z-index: 99999;
  top: unset;

}

#subIndex .starShape3 {
  height: 20px;
  left: 9%;
  top: 3%;
  z-index: 99999;
}


/*** floating nav ***/


nav.bar {
  position: fixed;
  width: 60px;
  margin-top: 20%;
  transition: all 0.3s linear;
  box-shadow: 2px 2px 8px 0px rgba(0, 0, 0, .4);
  z-index: 9999;
}

nav.bar ul {
  margin-top: 0 !important;
  margin-bottom: 0rem !important;
  padding-left: 0 !important;
}

nav.bar li {
  height: 45px !important;
  position: relative !important;
  font-family: 'Fredoka';
}

nav.bar li a {
  color: #fff !important;
  display: block;
  height: 100%;
  width: 100%;
  line-height: 45px;
  padding-left: 30%;
  transition: all .4s linear;
  text-decoration: none !important;
}

nav.bar li:nth-child(1) a {
  background: #ba4c40;
}

nav.bar li:nth-child(2) a {
  background: #f07838;
}

nav.bar li:nth-child(3) a {
  background: #be9778;
}

nav.bar li:nth-child(4) a {
  background: #a2b8d2;
}

nav.bar li:nth-child(5) a {
  background: #5c6b8a;
}


nav.bar li a i {
  position: absolute !important;
  font-size: 24px;
}



nav.bar ul li a span {
  padding-left: 30%;
  /* same as hover */
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 15px;
  white-space: nowrap;

  opacity: 0;
  transition: opacity 0.2s ease;
  transition-delay: 0s;
  /* no delay when hiding */
}


nav.bar ul li:hover a span {
  opacity: 1;
  transition-delay: 0.15s;
  /* delay only on hover-in */
}



nav.bar a:hover {
  z-index: 1;
  width: 200px;
  box-shadow: 0 0 1px 1px rgba(0, 0, 0, .3);
}




/*** Gallery ***/

.gallery-thumb {
  cursor: pointer;
  width: 90px;
  /* fixed width */
  height: 70px;
  /* fixed height */
  object-fit: cover;
  padding: 0;
  border: none !important;
  opacity: 0.6;
  overflow: hidden;
  display: block;
  margin: 0 auto;
  /* center within flex cell */
  transition: transform 0.25s ease-out, opacity 0.2s ease-out;
  transform: scale(1);
}



@media (min-width: 576px) {


  /* sm */
}


@media (min-width: 768px) {

  .gallery-thumb {
    cursor: pointer;
    width: 90px;
    /* fixed width */
    height: 120px;
  }



  /* md */
}

@media (min-width: 992px) {


  .gallery-thumb {
    height: 80px;
    /* fixed width */

  }


  /* lg */
}

@media (min-width: 1200px) {


  .gallery-thumb {
    height: 80px;
    /* fixed width */

  }


  /* xl */
}

@media (min-width: 1400px) {

  .gallery-thumb {
    height: 80px;
    /* fixed width */

  }



  /* xxl */
}



.gallery-thumb:hover {
  opacity: 1;
  transform: scale(1.03);
}

.gallery-thumb.active {
  border: none !important;
  opacity: 1;
}

.gallery-thumb.img-thumbnail {
  padding: 0;
  border-width: 0;
}


/* base state: hidden */
#opvangGallery.carousel-fade .carousel-item {
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

/* visible states: forward + backward */
#opvangGallery.carousel-fade .carousel-item.active,
#opvangGallery.carousel-fade .carousel-item-next.carousel-item-start,
#opvangGallery.carousel-fade .carousel-item-prev.carousel-item-end {
  opacity: 1;
}

/* prevent slide transforms fighting the fade */
#opvangGallery.carousel-fade .carousel-item-next,
#opvangGallery.carousel-fade .carousel-item-prev,
#opvangGallery.carousel-fade .carousel-item.active.carousel-item-start,
#opvangGallery.carousel-fade .carousel-item.active.carousel-item-end {
  transform: translateX(0);
}


/**** kinderopvang kosten berekenen ***/


.starShape {
  height: 41px;
  right: 18%;
  top: 3%;
}


.starShape2 {
  height: 28px;
  right: 5%;
  top: 2%;
}





.starShape3 {
  height: 32px;
  left: 16%;
  bottom: 18%;

}



@media (min-width: 576px) {


  .starShape {
    height: 41px;
    right: 18%;
    top: 3%;
  }

  .starShape2 {
    height: 36px;
    right: 16%;
    top: 26%;
  }

  .starShape3 {
    height: 46px;
    left: 16%;
    bottom: 20%;
  }


  /* sm */
}

@media (min-width: 768px) {


  .starShape {
    height: 41px;
    right: 18%;
    top: 3%;
  }

  .starShape2 {
    height: 30px;
    right: 7%;
    top: 4%;
  }

  .starShape3 {
    height: 46px;
    left: 16%;
    bottom: 20%;
  }


  /* md */
}

@media (min-width: 992px) {


  .starShape {
    height: 41px;
    right: 18%;
    top: 3%;
  }


  .starShape2 {
    height: 36px;
    right: 16%;
    top: 26%;
  }

  .starShape3 {
    height: 46px;
    left: 16%;
    bottom: 20%;
  }


  /* lg */
}

@media (min-width: 1200px) {


  .starShape {
    height: 41px;
    right: 18%;
    top: 3%;
  }


  .starShape2 {
    height: 36px;
    right: 16%;
    top: 26%;
  }

  .starShape3 {
    height: 46px;
    left: 16%;
    bottom: 4%;
  }


  /* xl */
}

@media (min-width: 1400px) {


  .starShape {
    height: 41px;
    right: 18%;
    top: 3%;
  }

  .starShape2 {
    height: 36px;
    right: 16%;
    top: 26%;
  }

  .starShape3 {
    height: 46px;
    left: 16%;
    bottom: 20%;
  }


  /* xxl */
}





.steps-card {
  max-width: 1100px;
  background-color: #effff6;
  /* inner panel */
  border-radius: 32px;
}

.steps-card2 {
  max-width: 1100px;
  background-color: #faebd7;
  /* inner panel */
  border-radius: 32px;
}




/* dotted line behind icons (desktop) */
.steps-line {
  position: absolute;
  top: 106px;
  left: 10%;
  right: 10%;
  border-top: 2px dotted rgb(140 152 179);
  z-index: 0;
}

/* icon circles */
.steps-icon-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: #485866;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  color: #ffffff;
  font-size: 1.6rem;
  position: relative;
  z-index: 1;
}

.steps-icon-accent {
  background-color: #a1c6df;
  color: #485866;
}

.steps-title {
  font-family: 'Fredoka', system-ui, sans-serif;
  letter-spacing: 0.08em;
}

/*** tour ***/

.tour-bg {
  position: relative;
  z-index: 0;
}

.tour-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(/assets/img/shapes/tour-bg.svg);
  background-repeat: no-repeat;
  background-position: right center;
  background-size: cover;
  background-attachment: fixed;
  opacity: 0.4;
  pointer-events: none;
  z-index: -1;
}



.tour-bg form input,
.tour-bg form select,
.tour-bg form textarea {
  background: #fff;
  color: #485866;
}

.tour-bg form .tourIcon {
  color: #c4662b;
}

.tour-bg form input[type="date"]::-webkit-calendar-picker-indicator {
  background: transparent;
  color: transparent;
}


#breadcrumbIndex .breadcrumb-item a:hover {

  text-decoration: underline !important;
  color: var(--secondary);
}



#breadcrumbIndex .breadcrumb-item a {
  font-size: 0.9rem;
}





.no-bullet {
  list-style: none;
  margin-left: -1.5rem;
  /* pulls it back to align with text above */
}


.custom-list {
  list-style: none;
  /* remove default bullets */
  padding-left: 0;
}

.custom-list li {
  position: relative;
  padding-left: 30px;
  margin-top: 8px;
}

.custom-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;

  background-color: var(--secondary);
  /* color you want */
  -webkit-mask: url("/assets/img/icons/mushroom-alt.svg") no-repeat center;
  -webkit-mask-size: contain;
  mask: url("/assets/img/icons/mushroom-alt.svg") no-repeat center;
  mask-size: contain;
}


#subIndex h1::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;

  background-color: var(--secondary);
  /* color you want */
  -webkit-mask: url("/assets/img/icons/mushroom-alt.svg") no-repeat center;
  -webkit-mask-size: contain;
  mask: url("/assets/img/icons/mushroom-alt.svg") no-repeat center;
  mask-size: contain;
}


.starImg1 {

  height: 42px;
  right: 0;

}

.starImg2 {

  height: 24px;
  left: 77%;

  top: 53px;

}

.starImg3 {

  height: 34px;
  left: 77%;
  top: 12px;

}


.starImg1-tour {

  height: 22px;
  right: 5%;
  top: 12px;

}

.starImg2-tour {

  height: 24px;
  right: 2%;
  top: 26px;

}

.starImg3-tour {

  height: 24px;
  left: 22%;
  bottom: 46px;

}



.kind-deco-sub {
  height: 162px;
  bottom: -22px;
  left: 27%;
  z-index: 10;
}

.eekhoorn-deco-sub {
  height: 92px;
  bottom: -42px;
  right: 7%;
  z-index: 10;
}


@media (min-width: 576px) {


  .kind-deco-sub {
    height: 162px;
    bottom: -22px;
    left: 27%;
    z-index: 10;

  }

  /* sm */
}

@media (min-width: 768px) {


  .kind-deco-sub {
    height: 296px;
    bottom: 14px;
    left: 7%;
    z-index: 10;

  }

  /* md */
}

@media (min-width: 992px) {


  .kind-deco-sub {
    height: 232px;
    bottom: -22px;
    left: 27%;
    z-index: 10;

  }

  /* lg */
}

@media (min-width: 1200px) {


  .kind-deco-sub {
    height: 248px;
    bottom: 0;
    left: 17%;
    z-index: 10;

  }

  /* xl */
}

@media (min-width: 1400px) {


  .kind-deco-sub {
    height: 282px;
    bottom: 14px;
    left: 7%;
    z-index: 10;

  }

  /* xxl */
}


.rotated-img {
  transform: rotate(5deg);
  transform-origin: center;
}


/***** Rekentool ****/

#kinderenContainer .card {
  background: #fff8f0;
}


.rekentool input,
.rekentool select,
.rekentool textarea {
  background: #fff;
  color: #485866;
}

.rekentool .alert-light {
  background-color: #fff8f0;
  color: #485866;
  border: 2px dashed #bd8f79;
}


.rekentool ::-webkit-input-placeholder {
  /* WebKit, Blink, Edge */
  color: rgb(172, 172, 172);
}

.rekentool :-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: rgb(172, 172, 172);
  opacity: 1;
}

.rekentool ::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: rgb(172, 172, 172);
  opacity: 1;
}

.rekentool :-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: rgb(172, 172, 172);
}

.rekentool ::-ms-input-placeholder {
  /* Microsoft Edge */
  color: rgb(172, 172, 172);
}

::placeholder {
  /* Most modern browsers support this now. */
  color: rgb(172, 172, 172);
}


/**** Tour form ****/

#tourIndex .opvangvorm-select .btn {

  border: var(--bs-border-width) solid var(--bs-border-color);
  background: #fff;
  color: #485866;
}

#tourIndex .dropdown-item:focus,
.dropdown-item:hover {
  background-color: #dabaab;
}

#tourIndex ::-webkit-input-placeholder {
  /* WebKit, Blink, Edge */
  color: rgb(172, 172, 172);
}

#tourIndex :-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: rgb(172, 172, 172);
  opacity: 1;
}

#tourIndex ::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: rgb(172, 172, 172);
  opacity: 1;
}

#tourIndex :-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: rgb(172, 172, 172);
}

#tourIndex ::-ms-input-placeholder {
  /* Microsoft Edge */
  color: rgb(172, 172, 172);
}

::placeholder {
  /* Most modern browsers support this now. */
  color: rgb(172, 172, 172);
}

.kind-tour-deco {
  height: 96px;
  bottom: 14px;
  right: 65px;
  z-index: 10;
}



/*** custom lijst tijden ***/



.custom-list-tijden {
  list-style: none;
  padding: 0;
  margin: 0;
}

.custom-list-tijden li {
  display: grid;
  grid-template-columns: 120px auto;
  /* fixed day column */
  gap: 8px;
  padding: 4px 0;
}

.custom-list-tijden .time {
  font-variant-numeric: tabular-nums;
}