:root {
  --purple: #6c63ff;
  --blue: #9BD7F7;
  --blue-bg: rgb(231, 237, 248);
  --text: #000000;
  --textlinks: #414141;
  --border: #C3C3C3;
  --white: #FBFBFB;
  --offwhite: #F5F5F5
}

@font-face {
  font-family: Museo-Sans;
  src: url(../assets/fonts/MuseoSansRounded/MuseoSansRounded-100.otf);
  font-weight: 100;
}

@font-face {
  font-family: Museo-Sans;
  src: url(../assets/fonts/MuseoSansRounded/MuseoSansRounded-300.otf);
  font-weight: 300;
}

@font-face {
  font-family: Museo-Sans;
  src: url(../assets/fonts/MuseoSansRounded/MuseoSansRounded-500.otf);
  font-weight: 500;
}

@font-face {
  font-family: Museo-Sans;
  src: url(../assets/fonts/MuseoSansRounded/MuseoSansRounded-700.otf);
  font-weight: 700;
}

@font-face {
  font-family: Museo-Sans;
  src: url(../assets/fonts/MuseoSansRounded/MuseoSansRounded-900.otf);
  font-weight: 900;
}

@font-face {
  font-family: Museo-Sans;
  src: url(../assets/MuseoSansRounded-1000.otf);
  font-weight: 1000;
}

/***************
Set central container width for all pages
1125px
****************/

@media (min-width: 576px) {

  .container,
  .container-sm {
    max-width: 512px !important;
  }
}

@media (min-width: 768px) {

  .container,
  .container-md,
  .container-sm {
    max-width: 880px !important;
  }
}

@media (min-width: 992px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm {
    max-width: 960px !important;
    /*  max-width: 1320px; */
  }
}

@media (min-width: 1200px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1140px !important;
    /*  max-width: 1320px; */
  }
}

@media (min-width: 1400px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1440px !important;
    /*  max-width: 1320px; */
  }
}





/***************
  special tags to hide or show on desktop and mobile 
****************/
@media only screen and (max-width: 768px) {
  .hide-mobile {
    display: none;
  }
  

}

@media only screen and (min-width: 769px) {
  .hide-desktop {
    display: none;
  }

}

nav ul li {
  list-style: none;
  display: inline;
  padding-right: 0.9rem;
}

ul li {
  margin-bottom: 10px;
  color: #000000;
  font-size: 1.2rem;
}

body,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
li,
a,
div {
  font-family: 'Museo-Sans' !important;
  color: #000000;
  font-weight: 500;
}

a.nav-link {
  display: inline-block;
  color: #000000;
  padding-right: 2rem;
  padding-left: 0;
  font-family: 'Museo-Sans' !important;
  font-weight: 400;
  text-decoration: none;
}

ul li a {
  color: #000000;
  font-size: 1.1rem;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: block;
  overflow: hidden;
  text-decoration: none;
  font-family: 'Museo-Sans' !important;
}

/* Bol.com ads */
#productLinkTekst {
  font-size: 1rem;
  color: #000000;
  text-decoration: none !important;
  line-height: 1.3rem;
}

@media(max-width:768px) {
  .hide-nav-mobile {
    display: none;
  }

}

@media(min-width:769px) {
  .hide-nav-desktop {
    display: none;
  }
}


/* NAVBAR DIE INTERFERED WITH BOL.COM ADS */

@media only screen and (max-width: 768px) {
  ul li a.nav-link {
    white-space: normal;
    overflow: visible;
  }
}

@media only screen and (max-width: 768px) {
  a.nav-link {
    padding-right: 0;
  }
}


/* navbar */
.navbar-light.navbar {
  height: 60px;
  padding-top: 0px !important;
  padding-bottom: 0px !important;
  box-shadow: 0px 3px 6px #00000029;
  background-color: #fff !important;
}

.logo-menu {
  margin-left: 30px;

}

img.logo-navbar {
  /* height: 60px; */
  width: 65%;
}

.text-logo-menu {
  margin-bottom: 10px;

}

.text-logo-menu-mobile {
  margin-bottom: 10px;

}

.nav-right-side {
  padding-right: 30px;
}

.navbar-light .navbar-nav .nav-link {
  padding: 0px !important;
  vertical-align: middle;
  color: #414141;
  margin: auto;

}

.navbar-light .navbar-nav .nav-link:hover {
  color: #6C63FF;
}

.navbar-toggler {
  background-color: #fff;
  margin-right: 5px;
  border: none;

}

.navbar-toggle.collapsed {
  color: #5f7cfb;
}

@media(max-width:768px) {
  .navbar-collapse {
    overflow: hidden;
    height: calc(100vh - 80px);
    background-color: white;
    width: 100%;
    padding: 0;
    margin: 0;
    position: absolute;
    top: 80px;
    margin-left: -12px;
    margin-right: -12px;
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
<<<<<<< HEAD
    z-index:1;
=======
>>>>>>> 986ab2904d80976b635edf854f6504b7737070e8
  }

  .navbar-collapse ul.navbar-nav {
    margin: auto;
    display: flex;
    flex-direction: column;
    row-gap: 15px;
    text-align: center;


  }

  .navbar-collapse ul.navbar-nav li {
    height: auto;
  }

  .navbar-collapse ul.navbar-nav li a {
    font-size: 28px;
    line-height: 30px;
  }
 
}


.btn-general {
  background-color: var(--purple);
  border-radius: 20px;
  padding: 10px 80px;
  color: white;
  /* padding: 5px; */
  border: none;
}

.btn-general-2 {
  background-color: rgb(248, 167, 43);
  border-radius: 20px;
  padding: 10px 80px;
  color: white;
  /* padding: 5px; */
  border: none;
}

.btn-general-green {
  background-color: #69D19C;
  border-radius: 20px;
  padding: 10px 80px;
  color: white;
  /* padding: 5px; */
  border: none;
}



#watkrijgje-section,
#faq-section,
#meerinfo-section,
#zowerkthet-section {
  padding: 40px 10px;

}

/*****************
 Over Section Home
******************/
#over-section {
  padding-top: 65px;
  padding-left: 10px;
  padding-right: 10px;
  padding-bottom: 200px;
}

.over-section-heading {
  font-size: 15px;
  text-transform: uppercase;
  margin-bottom: 60px;
}

#over-section img {
  border-radius: 30px 0px 30px 30px;
  width: 100%;
}

#over-section input {
  border-width: 1px;
  border-color: rgb(148, 163, 164);
  border-radius: 5px;
  ;
  width: 250px;
  ;
  padding: 5px 20px;
  background-color: rgb(236, 241, 248);
  margin-right: 25px;
}

/****
CTA Section Home
***/
#cta-section {
  padding: 60px 10px;
}

#cta-section h2 {
  margin-bottom: 35px;
}

@media only screen and (min-width: 1000px) {

  #over-section,
  #faq-section,
  #meerinfo-section,
  #zowerkthet-section {
    margin-bottom: 75px !important;

  }
}

.flex-show {
  display: flex;
}

/************
 hero section 
************/
#hero-section {
  overflow-x: hidden;

}

.blob-bg {
  height: 75vh;
  overflow-x: hidden;
  padding-top: 30px;
  background-image: url('../assets/Home/Desktop/svg/Landing Page Achtergrond 2.jpg');
  background-repeat: no-repeat;
  background-size: 115vw 100%;
  background-position: 20% 50%;
}

.house-bg {
  /* background-image: url('../assets/Home/Desktop/svg/house.svg'); */
  background-image: url('../assets/Home/Desktop/svg/house.png');
  background-repeat: no-repeat;
  margin-top: 40px;
  /* background-position: right; */
  background-position: right top;
  background-size: 125vh 65vh;

}

.house-bg {
  width: 103% !important;
}

@media only screen and (min-width: 768px) {
  .house-bg {
    width: 101% !important;
    overflow: hidden;
  }
}

.hero-cta {
  /* margin-top: auto; */
  margin-top: 6%;
  margin-bottom: auto;
}

@media only screen and (max-width: 959px) {
  .house-bg {
    background-position: bottom right !important;
  }

  .blob-bg {
    background-size: cover;
  }

  #cta-blog-section {
    padding: .75rem;
  }

}

@media only screen and (max-width: 1399px) {
  .hero-cta {
    /* margin-top: 80px; */
  }

  .house-bg {
    background-size: 70vw;
    background-position: right;
  }

  .blob-bg {
    height: 73vh;
  }

  h2.section-heading {
    font-size: 38px !important;
  }

  p.lead {
    font-size: 20px !important;
  }

}

/****************
  Green section
****************/
.greenbg {
  background-color: rgb(226, 255, 240);
}

.bluebg {
  background-color: var(--blue-bg);
}

.check-circle {
  margin-right: 10px;
}

.inner-hero {
  height: 65vh;
}

.usp-row {
  padding: 20px 0px;
}

/*conversie blokken cta*/
.darkbluebg {
  background-color: rgb(83, 107, 139);
  color: #FFF;
}

.darkbluebg h2 div {
  color: inherit;
}

#img-cta-blog-wrapper {
  position: relative;
  height: 100%;
}

#img-cta-blog {
  width: 100%;
  height: auto;
  position: absolute;
  right: -5px;
}


.cta-blog-box {
  border-radius: 20px;
  border-top-right-radius: 0px;
  ;
  padding: 20px;
}

#cta-single-blog-section p {
  color: white;
}

#cta-single-blog-section h2 {
  color: white;
}

#cta-single-blog-section h3 {
  color: white;
}

.cta-input {
  width: 300px;
  border-radius: 5px;
  border: none;
  padding: 5px 20px;
}

.btn-green {
  background-color: rgb(132, 206, 160);
}

.usp-box p {
  margin-bottom: 3px;
}

#cta-single-blog-section .cta-blog-box {
  border-bottom: 20px solid #ABE6C8;
  background: rgb(69, 90, 113);
  background: linear-gradient(94deg, rgba(69, 90, 113, 1) 0%, rgba(158, 208, 230, 1) 100%);
}



#cta-blog-section .row>[class*='col-'] {
  display: flex;
}

#cta-blog-section {
  padding: 40px;
  background-color: white;
}

.cta-dashboard-box {
  padding-bottom: 0 !important;
}

/* 
zowerkthet-section */
.number {
  margin-left: 5px;
}

.icons-img {
  padding-left: 50px;
  padding-right: 80px;
}

@media only screen and (min-width: 999px) and (max-width:1200px) {
  .icons-img {
    padding-left: 70px;
    padding-right: 100px;
  }
}

@media only screen and (min-width: 1201px) {
  .icons-img {
    padding-left: 100px;
    padding-right: 150px;
  }
}

/* over-section */

@media only screen and (min-width: 992px) {
  .over-col-2 {
    padding-left: 60px;
  }
}

.panel-title {
  display: inline;
  margin-left: 20px;
}

.circle {
  background-color: var(--purple);
  padding: 5px;
  height: 30px;
  width: 30px;
  border-radius: 50%;
}

.number {
  color: var(--white)
}

/*********************
    watkrijgje section 
**********************/
#watkrijgje-section .row {

  align-items: center;
}

#jip-icoon {
  position: absolute;
  left: 0;
  margin-left: -50px;
  margin-top: -30px;
}

@media only screen and (max-width: 630px) {
  #jip-icoon {
    margin-left: -20px;
    margin-top: -30px;
    width: 2em;
    height: 2em;
  }
}

/*
testimonial-section */
@media only screen and (min-width: 1180px) {
  .testimonial-text {
    padding-left: 60px;
    padding-right: 60px;
  }
}

/*
faq-section */
/* .accordion-button::after {

} */
/* 
/***************
  meerinfo-section 
****************/
#meerinfo-section img.img-blog {
  border-radius: 30px 0px 30px 30px;
}

#questionscontainer {
  background: lightblue;
}

#output {
  /* width: 50%;*/
  display: inline-block;
}

.game {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0px 0px;
  grid-auto-flow: column;
}

.Huis {
  grid-column-start: 1;
  grid-row-start: 1;
  grid-column-end: 2;
  grid-row-end: 2;
  /* height: 100%; */
  overflow: hidden;
  background-position: bottom;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
  float: left;
  width: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.checklist_stappenplan {
  grid-column-start: 2;
  grid-row-start: 1;
  grid-column-end: 2;
  grid-row-end: 3;
}

.Questions {
  grid-column-start: 1;
  grid-row-start: 2;
  grid-column-end: 1;
  grid-row-end: 3;
}

.bg-img {
  height: auto !important;
  width: 100% !important;
}

.bg-img {
  height: 50vh;
  width: auto;
  min-width: 100%;
}

.d-block {
  display: block !important;
}

img {
  vertical-align: middle;
  border-style: none;
}

.firstquestion {
  visibility: visible;
}

.checklist_maatregel {
  background: #6B8DB1;
  padding: 4px;
  margin-bottom: 2px;
  top: -15px;
}

.checklistitem_title {
  font-family: Museo-Sans;
  color: #FFFFFF;
  font-size: 14pt;
  font-weight: 600;
}

.checklistitem_description {
  font-family: Museo-Sans;
  color: #FFFFFF;
  font-size: 10pt;
  font-weight: 300;
}

.checklist_done {
  background-color: gray;
  display: block;
}

.checklist_nvt {
  background-color: rgb(138, 156, 187) !important;
  display: block;
}

.checklist_todo {
  background-color: #6B8DB1;
  display: block;
}






#footer-container a {
  text-decoration: none;
<<<<<<< HEAD
  font-size: 18px;
  line-height: 30px !important;
=======
>>>>>>> 986ab2904d80976b635edf854f6504b7737070e8
}

.sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: #111;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 60px;
}

.sidenav a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 25px;
  color: #818181;
  display: block;
  transition: 0.3s;
}

.sidenav a:hover {
  color: #f1f1f1;
}

.sidenav .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}

.switch,
.switch * {
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

.switch label {
  cursor: pointer;
}

.switch label input[type=checkbox] {
  opacity: 0;
  width: 0;
  height: 0;
}

.switch label input[type=checkbox]:checked:not([disabled]) {
  background-color: #eee;
}

.switch label input[type=checkbox]:checked+.lever:before,
.switch label input[type=checkbox]:checked+.lever:after {
  left: 18px;
}

.switch label input[type=checkbox]:checked+.lever:after {
  background-color: #ABE6C8;
}

.switch label .lever {
  content: "";
  display: inline-block;
  position: relative;
  width: 36px;
  height: 14px;
  background-color: #fff;
  border-radius: 20px;
  margin-right: 0;
  transition: background 0.3s ease;
  vertical-align: middle;
  margin: 0;
  margin-left: -10px;
}

.switch label .lever:before,
.switch label .lever:after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  left: 0;
  top: -3px;
  transition: left 0.3s ease, background 0.3s ease, box-shadow 0.1s ease, transform 0.1s ease;
}

.switch label .lever:before {
  background-color: rgba(238, 238, 238, 0.15);
}

.switch label .lever:after {
  background-color: #FFE28B;
  box-shadow: 0px 3px 1px -2px rgba(255, 255, 255, 0.2), 0px 2px 2px 0px rgba(255, 255, 255, 0.14), 0px 1px 5px 0px rgba(255, 255, 255, 0.12);
}

input[type=checkbox]:checked:not(:disabled)~.lever:active::before,
input[type=checkbox]:checked:not(:disabled).tabbed:focus~.lever::before {
  transform: scale(2.4);
  background-color: rgba(238, 238, 238, 0.15);
}

input[type=checkbox]:not(:disabled)~.lever:active:before,
input[type=checkbox]:not(:disabled).tabbed:focus~.lever::before {
  transform: scale(2.4);
  background-color: rgba(255, 255, 255, .08);
}

.switch input[type=checkbox][disabled]+.lever {
  cursor: default;
  background-color: rgb(255, 255, 255);
}

.switch label input[type=checkbox][disabled]+.lever:after,
.switch label input[type=checkbox][disabled]:checked+.lever:after {
  background-color: #ccc;
}

.switchdiv {
  font-size: 8pt !important;
  color: #FFF !important;
  top: 11px;
  margin-left: 301px;
  position: relative;
}

.switchdiv-mobile {
  display: none;
}

@media only screen and (max-width: 767px) {
  .switchdiv-mobile {
    /*top: 28px;*/
    /*margin-right: 20px;*/
    display: block;
    position: relative;
    float: left;
    margin-top: 15px;
    margin-right: 10px;
    /*right: 20px;*/
  }

  .switchdiv {
    display: none;
  }
}

.mc4wp-response p {
  color: #ffffff !important;
}

.grav-wrap {
  display: none;
}


#submitEmailChecklist svg {
  width: 65px;
}


.form-control {
  border-radius: .5rem !important;
}






#watkrijgje-section p.text-center {
  max-width: 80%;
  margin: 0 auto;
}

/**/
/* This is for the submit button animation to save the checklist
/**/
.utveckling {
  stroke-width: 10;
  fill: none;
  stroke: #5f7cfb;
}

.utveckling-animation {
  animation: Utveckling 6.5s forwards;
}

.pil {
  animation: Pil 1.5s forwards;
}

.pil-animation {
  animation: Pil 6.5s forwards;
}

.bock {
  animation: Bock 6.5s forwards;
  animation-play-state: paused;
  fill: none;
  stroke-dasharray: 31 82;
  stroke-dasharray: none;
  stroke-dashoffset: -47px;
  stroke-linecap: butt;
  stroke-linejoin: miter;
  stroke-miterlimit: 4;
  stroke-width: 4;
  stroke: transparent;
}

.bock-animation {
  animation: Bock 6.5s forwards;
}

@keyframes Pil {
  0% {
    transform: translateY(0);
  }

  6% {
    transform: translateY(-65px);
  }

  62.49% {
    transform: translateY(-65px);
  }

  62.5% {
    transform: translateY(65px);
  }

  68.5% {
    transform: translateY(0px);
  }
}

@keyframes Utveckling {
  0% {
    stroke-width: 10;
  }

  3.1% {
    stroke-width: 10;
    stroke-dasharray: 1 179;
  }

  3.6% {
    stroke-width: 25;
    stroke-dasharray: 1 179;
  }

  28% {
    stroke-width: 25;
    stroke-dasharray: 174 179;
  }

  34% {
    stroke-width: 10;
    stroke-dasharray: 179 179;
  }

  100% {
    stroke-width: 10;
    stroke-dasharray: 179 179;
  }
}

@keyframes Bock {
  0% {
    stroke-dasharray: 1 82;
    stroke-dashoffset: 0px;
    stroke: transparent;
  }

  29% {
    stroke-dasharray: 1 82;
    stroke-dashoffset: 0px;
    stroke: white;
  }

  35% {
    stroke-dasharray: 31 82;
    stroke-dashoffset: -50px;
    stroke: white;
  }

  62% {
    stroke-dasharray: 31 82;
    stroke-dashoffset: -50px;
    transform: translateY(0px);
    stroke: white;
  }

  100% {
    stroke-dasharray: 31 82;
    stroke-dashoffset: -50px;
    transform: translateY(0px);
    stroke: white;
  }

  /*  68% {
    stroke-dasharray: 31 82;
    stroke-dashoffset: -50px;
    transform: translateY(-65px);
      stroke: white;
  }
  100% {
    stroke-dasharray: 31 82;
    stroke-dashoffset: -50px;
    transform: translateY(-65px);
      stroke: white;
  } */
}

#newsletter-form-footer input {
  line-height: 2em;
  margin-right: 25px;
  box-shadow: inset 0px 1px 8px rgba(0, 0, 0, 0.2);
  border: 0;
}

nav ul li {
  margin-bottom: 0px !important;
}

/* custom css */
#newsletter-form-footer{
  margin-top: 35px;
}
body{
  line-height: 1.6em !important;
}
h2.section-heading {
  font-size: 50px;
  margin-bottom: 20px;
}

p.lead {
  font-size: 22px;
  margin-bottom: 30px;
}
.panel-heading  h2{
  font-weight: 500;
}
.custom-btn{
  margin-top: 35px;
}

#meerinfo-section .panel-body{
  display: -webkit-box;
  max-width: 100%;
  margin: 0 auto;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 80px;
}
.st26 {
  /* font-family: "Museo Sans"; */
  font-family: 'Museo-Sans' !important;
  font-size: 200px;
}

/* custom media  */
@media (max-width: 1199px) {
  h2.section-heading {
    font-size: 32px !important;
  }

  p.lead {
    font-size: 18px !important;
  }

  .inner-hero {
    height: 50vh;
  }

  .blob-bg {
    height: 60vh;
  }

  .house-bg {
    background-size: 65vw;
  }
}

@media (max-width: 991px) {
  h2.section-heading {
    font-size: 27px !important;
    margin-bottom: 10px;
  }

  p.lead {
    font-size: 16px !important;
    margin-bottom: 15px;
  }

  .inner-hero {
    height: 40vh;
  }

  .blob-bg {
    height: 50vh;
  }
}

@media (max-width: 360px){
  
  h2.section-heading {
    font-size: 25px !important;
    margin-bottom: 10px;
  }

  p.lead {
    font-size: 14px !important;
    margin-bottom: 15px;
  }
}
@media (max-width: 299px){
  
  h2.section-heading {
    font-size: 21px !important;
    margin-bottom: 10px;
  }

  p.lead {
    font-size: 11px !important;
    margin-bottom: 15px;
  }
}