:root {
  font-size: 16px;
  --color-blue-light-1: #EDF0F7;
  --color-blue-light-2: #DCE1EE;
  --color-blue-light-3: #CFD6E7;
  --color-blue-light-4: #C3CBE2;
  --color-blue-light-5: #B6BED9;
  --color-blue-light-6: #A7B1D1;
  --color-blue-light-7: #9DA8CC;
  --color-blue-dark: #182D8E;
  --color-text: #625858;
}

* {
  box-sizing: border-box;
}

img {
  -webkit-user-drag: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

html, body {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  font-family: "Quicksand";
  font-weight: 300;
  scroll-behavior: smooth;
  overflow-x: hidden;
  scrollbar-color: var(--color-blue-light-4) var(--color-blue-light-1);
  scrollbar-width: thin;
}
html::-webkit-scrollbar, body::-webkit-scrollbar {
  width: 10px;
}
html::-webkit-scrollbar-track, body::-webkit-scrollbar-track {
  background: var(--color-blue-light-1);
}
html::-webkit-scrollbar-thumb, body::-webkit-scrollbar-thumb {
  background: var(--color-blue-light-4);
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
  border-radius: 100px;
}

.sidebar {
  z-index: 100;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  position: fixed;
  width: 20rem;
  height: 100%;
  background-color: #ffffff;
  border-right: 5px solid var(--color-blue-light-2);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}
@media (max-width: 900px) {
  .sidebar {
    width: calc(100% - 10px);
    height: 10rem;
    flex-direction: row;
    align-items: flex-start;
    border-right: none;
    overflow-y: hidden;
    transition: height 0.2s ease-in-out;
  }
  .sidebar.extended {
    height: 100%;
  }
  .sidebar.extended nav {
    opacity: 1;
  }
}
@media (max-width: 420px) {
  .sidebar {
    height: 8rem;
  }
}
.sidebar .logo {
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
}
@media (max-width: 900px) {
  .sidebar .logo {
    width: auto;
    height: 100%;
    max-height: 10rem;
    margin-left: 1rem;
  }
}
@media (max-width: 420px) {
  .sidebar .logo {
    margin-left: 0.5rem;
    max-height: 8rem;
  }
}
.sidebar .logo h1 {
  position: absolute;
  top: 1rem;
  left: 2rem;
  font-size: 2.3rem;
  color: var(--color-blue-dark);
  font-weight: 400;
  font-family: "Saira";
}
@media (max-width: 900px) {
  .sidebar .logo h1 {
    font-size: 2rem;
    top: 0;
    left: 1rem;
  }
}
@media (max-width: 420px) {
  .sidebar .logo h1 {
    font-size: 1.5rem;
  }
}
.sidebar .logo h2 {
  position: absolute;
  color: #ffffff;
  top: 4rem;
  left: 4.8rem;
  font-size: 1.5rem;
  font-weight: 400;
  font-family: "Saira";
}
@media (max-width: 900px) {
  .sidebar .logo h2 {
    font-size: 1.3rem;
    top: 2.5rem;
    left: 3.5rem;
  }
}
@media (max-width: 420px) {
  .sidebar .logo h2 {
    font-size: 1rem;
    left: 3rem;
    top: 2rem;
  }
}
.sidebar .logo img {
  width: calc(100% - 5rem);
  margin-top: 2.5rem;
  height: auto;
}
@media (max-width: 900px) {
  .sidebar .logo img {
    height: calc(100% - 2rem);
    width: auto;
    margin-left: 2rem;
    margin-top: 0;
  }
}
.sidebar .logo a {
  z-index: 99;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.sidebar nav {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  margin-top: -3rem;
}
@media (max-width: 900px) {
  .sidebar nav {
    position: absolute;
    height: calc(100% - 10rem);
    top: 10rem;
    margin-top: 0;
    overflow-y: hidden;
    transition: opacity 0.2s ease-in-out;
    opacity: 0;
  }
}
@media (max-width: 420px) {
  .sidebar nav {
    top: 8rem;
  }
}
.sidebar nav ul {
  padding: 0;
  margin: 0;
  list-style: none;
  color: var(--color-blue-light-2);
  text-align: center;
  font-size: 1.3rem;
  line-height: 3rem;
  font-weight: 400;
}
@media (max-width: 900px) {
  .sidebar nav ul {
    color: var(--color-blue-light-7);
  }
}
.sidebar nav ul li {
  transition: color 0.1s;
}
.sidebar nav ul li:hover {
  color: var(--color-blue-light-7);
}
@media (max-width: 900px) {
  .sidebar nav ul li:hover {
    color: var(--color-blue-dark);
  }
}
.sidebar nav ul li.selected {
  color: var(--color-blue-dark);
}
.sidebar nav ul li.formlink {
  color: var(--color-blue-dark);
  background: var(--color-blue-light-1);
  border-radius: 10px;
  padding: 0rem 1rem;
  margin-top: 1rem;
  font-size: 1.2rem;
}
@media (min-width: 600px) {
  .sidebar nav ul li.formlink {
    display: none;
  }
}
.sidebar__formlink {
  padding: 0.5rem 1rem;
  margin: 1rem 0;
  color: var(--color-blue-dark);
  font-weight: 400;
  background: var(--color-blue-light-1);
  border-radius: 10px;
  transition: background 0.2s;
}
@media (max-width: 900px) {
  .sidebar__formlink {
    margin-top: 5rem;
    transform: translateY(-50%);
    margin-left: auto;
    margin-right: 3rem;
  }
}
@media (max-width: 600px) {
  .sidebar__formlink {
    display: none;
  }
}
.sidebar__formlink:hover {
  background: var(--color-blue-light-2);
}
.sidebar .hamburger {
  width: 2rem;
  height: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  margin-top: 5rem;
  transform: translateY(-50%);
  margin-right: 3rem;
}
@media (max-width: 600px) {
  .sidebar .hamburger {
    margin-left: auto;
  }
}
@media (max-width: 420px) {
  .sidebar .hamburger {
    margin-top: 4rem;
  }
}
@media (min-width: 900px) {
  .sidebar .hamburger {
    display: none;
  }
}
.sidebar .hamburger:hover div {
  background: var(--color-blue-light-7);
}
.sidebar .hamburger div {
  width: 100%;
  height: 4px;
  border-radius: 100px;
  background: var(--color-blue-dark);
  transition: background 0.2s;
}

main {
  height: 100%;
  max-width: 100%;
  padding-left: 20rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
@media (max-width: 900px) {
  main {
    padding-left: 0;
  }
}
main .banner {
  width: 100%;
  height: 100vh;
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10rem;
  border-bottom: 5px solid var(--color-blue-light-2);
  box-sizing: content-box;
}
main .banner__slide {
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 2s ease-in-out;
}
main .banner__slide--active {
  opacity: 1;
}
main .banner h1 {
  font-size: 2.5rem;
  color: #ffffff;
  z-index: 99;
  font-weight: 300;
  margin: 1rem 5rem;
  text-align: center;
}
@media (max-width: 600px) {
  main .banner h1 {
    font-size: 2rem;
  }
}
main .section {
  width: 100%;
  max-width: 1920px;
  height: auto;
  padding: 0 10rem;
  margin-bottom: 10rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
  scroll-margin-top: 1rem;
}
@media (max-width: 1200px) {
  main .section {
    padding: 0 5rem;
  }
}
@media (max-width: 900px) {
  main .section {
    scroll-margin-top: 10rem;
  }
}
main .section h1 {
  color: var(--color-blue-dark);
  font-weight: 600;
  font-size: 1.5rem;
  display: inline-block;
  z-index: 99;
}
main .section p {
  color: var(--color-text);
  font-weight: 400;
  width: 100%;
  margin: 1.5rem 0;
  z-index: 99;
}
main .section a {
  color: var(--color-blue-dark);
  transition: color 0.2s;
}
main .section a:hover {
  color: var(--color-blue-light-7);
}
main .section__shape {
  height: auto;
}
main .section__shape img {
  width: 100%;
  height: auto;
}
main .section .formlink {
  z-index: 98;
  padding: 0.5rem 1rem;
  color: var(--color-blue-dark);
  font-weight: 400;
  background: var(--color-blue-light-2);
  border-radius: 10px;
  transition: background 0.2s;
  align-self: flex-start;
  margin-left: calc(50% + 1rem);
  margin-top: 1rem;
  white-space: nowrap;
}
@media (max-width: 600px) {
  main .section .formlink {
    margin-left: 35%;
  }
}
main .section .formlink:hover {
  background: var(--color-blue-light-3);
}
main .section:nth-child(2n) h1 {
  text-align: right;
  align-self: flex-end;
  padding-right: 10%;
}
main .section:nth-child(2n) p {
  text-align: left;
}
main .section:nth-child(2n+1) h1 {
  text-align: left;
  align-self: flex-start;
  padding-left: 10%;
}
main .section:nth-child(2n+1) p {
  text-align: right;
}
main .section--force-R h1 {
  padding-left: 10% !important;
}
main .section--force-R p {
  text-align: right !important;
}
main .section__shape {
  position: absolute;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-user-drag: none;
}
@-webkit-keyframes float1y {
  0% {
    transform: translate(0px, 0px);
  }
  30% {
    transform: translate(0px, -50px);
  }
  100% {
    transform: translate(0px, 0px);
  }
}
@keyframes float1y {
  0% {
    transform: translate(0px, 0px);
  }
  30% {
    transform: translate(0px, -50px);
  }
  100% {
    transform: translate(0px, 0px);
  }
}
@-webkit-keyframes float1x {
  0% {
    transform: translate(0px, 0px);
  }
  30% {
    transform: translate(-50px, 0px);
  }
  100% {
    transform: translate(0px, 0px);
  }
}
@keyframes float1x {
  0% {
    transform: translate(0px, 0px);
  }
  30% {
    transform: translate(-50px, 0px);
  }
  100% {
    transform: translate(0px, 0px);
  }
}
@-webkit-keyframes floatr {
  0% {
    transform: rotate(0);
  }
  50% {
    transform: rotate(20deg);
  }
  100% {
    transform: rotate(0);
  }
}
@keyframes floatr {
  0% {
    transform: rotate(0);
  }
  50% {
    transform: rotate(20deg);
  }
  100% {
    transform: rotate(0);
  }
}
main .section#section-vw .section__shape__1 {
  width: 40rem;
  transform: translateX(50%) rotate(45deg);
  right: 40%;
  top: 2rem;
}
main .section#section-vw .section__shape__2 {
  width: 15rem;
  transform: translateX(calc(50% + 11rem));
  right: 40%;
}
main .section#section-zc .section__shape__1 {
  width: 30rem;
  transform: translateX(50%) rotate(110deg);
  right: 45%;
  top: -10rem;
}
main .section#section-zc .section__shape__1 img {
  -webkit-animation: float1x 10s ease-in-out infinite;
          animation: float1x 10s ease-in-out infinite;
}
main .section#section-zc .section__shape__2 {
  width: 20rem;
  transform: translateX(50%) rotate(0deg);
  right: 40%;
  bottom: -5rem;
}
main .section#section-zc .section__shape__3 {
  width: 15rem;
  transform: translateX(50%) rotate(0deg);
  right: 41%;
  bottom: -1rem;
}
main .section#section-zc .section__shape__4 {
  width: 12rem;
  transform: translateX(50%) rotate(0deg);
  right: 23%;
  top: 0rem;
}
main .section#section-zc .section__shape__5 {
  width: 50rem;
  transform: translateX(50%) rotate(-35deg);
  right: 40%;
  top: 2rem;
  opacity: 0.5;
}
main .section#section-zc .section__shape__5 img {
  -webkit-animation: floatr 10s ease-in-out infinite;
          animation: floatr 10s ease-in-out infinite;
}
main .section#section-dw .section__shape__1 {
  width: 50rem;
  transform: translateX(-50%) rotate(150deg);
  left: 40%;
  top: -5rem;
}
main .section#section-dw .section__shape__2 {
  width: 28rem;
  transform: translateX(-50%) rotate(140deg);
  left: 40%;
  top: 0rem;
}
main .section#section-dw .section__shape__2 img {
  -webkit-animation: move1 10s ease-in-out infinite;
          animation: move1 10s ease-in-out infinite;
}
@-webkit-keyframes move1 {
  0% {
    transform: translate(0px, 100px) rotate(20deg);
  }
  50% {
    transform: translate(0px, 0px);
  }
  100% {
    transform: translate(0px, 100px) rotate(20deg);
  }
}
@keyframes move1 {
  0% {
    transform: translate(0px, 100px) rotate(20deg);
  }
  50% {
    transform: translate(0px, 0px);
  }
  100% {
    transform: translate(0px, 100px) rotate(20deg);
  }
}
main .section#section-dw .section__shape__3 {
  width: 13rem;
  transform: translateX(-50%) rotate(140deg);
  left: 40%;
  top: 8rem;
}
main .section#section-dw .section__shape__3 img {
  -webkit-animation: move2 12s ease-in-out infinite;
          animation: move2 12s ease-in-out infinite;
}
@-webkit-keyframes move2 {
  0% {
    transform: translate(-200px, -200px);
  }
  50% {
    transform: translate(0px, 0px);
  }
  100% {
    transform: translate(-200px, -200px);
  }
}
@keyframes move2 {
  0% {
    transform: translate(-200px, -200px);
  }
  50% {
    transform: translate(0px, 0px);
  }
  100% {
    transform: translate(-200px, -200px);
  }
}
main .section#section-dw .section__shape__4 {
  width: 25rem;
  transform: translateX(-50%) rotate(170deg);
  left: 40%;
  bottom: -30rem;
  opacity: 0.5;
}
main .section#section-wh .section__shape__1 {
  width: 20rem;
  height: 20rem;
  transform: translateX(50%) rotate(0deg);
  right: 30%;
  bottom: 0rem;
}
main .section#section-wh .section__shape__1 img {
  position: absolute;
}
main .section#section-pr h1 {
  align-self: flex-start;
  padding-left: 10%;
  padding-right: 0;
}
main .section#section-pr .section__shape__1 {
  width: 35rem;
  transform: translateX(-50%) rotate(40deg);
  left: 35%;
  top: -10rem;
}
main .section#section-pr .section__shape__2 {
  width: 12rem;
  transform: translateX(-50%) rotate(0deg);
  left: 15%;
  bottom: -5rem;
}
main .section#section-im {
  margin-bottom: 12rem;
}
main .section#section-im h1 {
  padding-left: 15%;
}
main .section#section-im .section__shape__1 {
  width: 50rem;
  height: 30rem;
  transform: translateX(-50%) translateY(50%) rotate(0deg);
  left: 50%;
  bottom: calc(50% - 3rem);
}
main .section#section-im .section__shape__1 img {
  width: 100%;
  height: 100%;
}
main .section#section-im .images {
  z-index: 80;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  height: auto;
  justify-content: center;
  align-items: center;
  gap: 2rem 2rem;
  margin-top: 2rem;
}
main .section#section-im .images__image {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
main .section#section-im .images__image div {
  position: relative;
}
main .section#section-im .images__image div img {
  height: 15rem;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-user-drag: none;
  width: auto;
  max-width: 100%;
  border-radius: 3px;
  filter: grayscale(1) saturate(0.5) opacity(0.9);
  transition: filter 0.5s ease-in-out;
}
@media (max-width: 600px) {
  main .section#section-im .images__image div img {
    width: 100%;
    height: auto;
    filter: grayscale(0) saturate(1) opacity(1);
  }
}
main .section#section-im .images__image div img:hover {
  filter: grayscale(0) saturate(1) opacity(1);
}
main .section#section-im .images__image div .overlay {
  position: absolute;
  top: 0;
  bottom: 4px;
  border-radius: 3px;
  right: 0;
  left: 0;
  background: var(--color-blue-dark);
  opacity: 0.15;
  transition: opacity 0.5s ease-in-out;
}
main .section#section-im .images__image div:hover .overlay {
  opacity: 0;
}
main .section#section-im .images__image div:hover img {
  filter: grayscale(0) saturate(1) opacity(1);
}
main .section#section-im .images__image span {
  margin-top: 1rem;
}
main .section#section-ct h1 {
  align-self: flex-end;
  padding-right: 20%;
  padding-left: 0;
}
main .section#section-ct p {
  padding-right: 10%;
}
main .section#section-ct .section__shape__1 {
  width: 35rem;
  transform: translateX(50%) rotate(-40deg);
  right: 30%;
  top: -10rem;
}
main .section#section-ct .section__shape__1 img {
  -webkit-animation: float1y 15s ease-in-out infinite;
          animation: float1y 15s ease-in-out infinite;
}
main .section#section-ct .section__shape__2 {
  width: 20rem;
  transform: translateX(calc(50% - 5rem)) rotate(0deg);
  right: 30%;
  top: 3rem;
}
main .section#section-ct .section__shape__3 {
  width: 10rem;
  transform: translateX(calc(50% - 3rem)) rotate(0deg);
  right: 30%;
  top: 8rem;
}
main .section#section-ct .section__shape__3 img {
  -webkit-animation: floatr 10s ease-in-out infinite;
          animation: floatr 10s ease-in-out infinite;
}
main .section#section-ct .section__shape__4 {
  width: 10rem;
  transform: translateX(calc(50% - 3rem)) rotate(90deg);
  right: 30%;
  top: 0rem;
}
main .page-title {
  color: var(--color-blue-dark);
  margin-top: 3rem;
  padding: 0 5rem;
}
@media (max-width: 900px) {
  main .page-title {
    margin-top: 12rem;
  }
}
main .algemene-voorwaarden-content, main .deontologische-gedragscode-content {
  margin-bottom: auto;
  max-width: 1920px;
  padding: 1rem 5rem;
  color: var(--color-text);
  font-weight: 400;
}
@media (max-width: 900px) {
  main .algemene-voorwaarden-content, main .deontologische-gedragscode-content {
    padding: 1rem 3rem;
  }
}
main .afspraak-content {
  margin-bottom: auto;
  width: 100%;
  padding: 1rem 5rem;
  padding-bottom: 5rem;
  color: var(--color-text);
  font-weight: 400;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}
@media (max-width: 900px) {
  main .afspraak-content {
    padding: 1rem 3rem;
  }
}
main .afspraak-content .error {
  color: #EF3A14;
  font-weight: 600;
}
main .afspraak-content form {
  width: 50rem;
  max-width: 100%;
}
main .afspraak-content form a {
  color: var(--color-blue-dark);
  transition: color 0.2s;
}
main .afspraak-content form a:hover {
  color: var(--color-blue-light-7);
}
main .afspraak-content form input[type=text], main .afspraak-content form input[type=email] {
  padding: 0.5rem 1rem;
  background: var(--color-blue-light-1);
  border-radius: 10px;
  border: none;
  transition: background 0.2s;
  color: var(--color-text);
  font-family: "Quicksand";
  font-weight: 500;
}
main .afspraak-content form input[type=text]:focus, main .afspraak-content form input[type=email]:focus {
  outline: none;
  background: var(--color-blue-light-2);
}
main .afspraak-content form textarea {
  display: block;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  margin-top: 0.5rem;
  background: var(--color-blue-light-1);
  border-radius: 10px;
  border: none;
  transition: background 0.2s;
  color: var(--color-text);
  font-family: "Quicksand";
  font-weight: 500;
  padding: 1rem 1rem;
  scrollbar-color: var(--color-blue-light-4) var(--color-blue-light-1);
  scrollbar-width: thin;
}
main .afspraak-content form textarea:focus {
  outline: none;
  background: var(--color-blue-light-2);
}
main .afspraak-content form textarea::-webkit-scrollbar {
  width: 10px;
}
main .afspraak-content form textarea::-webkit-scrollbar-track {
  background: var(--color-blue-light-1);
}
main .afspraak-content form textarea::-webkit-scrollbar-thumb {
  background: var(--color-blue-light-4);
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
  border-radius: 100px;
}
main .afspraak-content form input[type=submit] {
  padding: 0.5rem 1rem;
  margin: 1rem 0;
  color: var(--color-blue-dark);
  font-weight: 400;
  background: var(--color-blue-light-2);
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  font-family: "Quicksand";
  font-size: 1.1rem;
}
main .afspraak-content form input[type=submit]:hover {
  background: var(--color-blue-light-3);
}
main .afspraak-content form p input[type=text], main .afspraak-content form p input[type=email] {
  display: block;
  width: 100%;
  margin-top: 0.5rem;
}
main .afspraak-content form select {
  background: var(--color-blue-light-1);
  border: none;
  padding: 0.5rem 1rem;
  color: var(--color-text);
  margin-top: 0.5rem;
  border-radius: 10px;
}
main .afspraak-content form select:focus {
  outline: none;
  background: var(--color-blue-light-2);
}
main .afspraak-content form sup {
  color: var(--color-blue-dark);
  font-size: 1.1em;
}
main .afspraak-content form span {
  font-size: 0.8em;
}
main .afspraak-content form .indented {
  padding-left: 2rem;
}
main .afspraak-content form .hidden {
  display: none !important;
}
main .afspraak-content .success span {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 5rem;
  color: #E1D2F2;
}
main .afspraak-content .success h3 {
  text-align: center;
  font-size: 1.5rem;
}
main footer {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: space-between;
  padding: 2rem 5rem;
  padding-bottom: 4rem;
  align-items: stretch;
  background: var(--color-blue-light-2);
  color: var(--color-blue-dark);
  font-size: 1rem;
  font-weight: 400;
}
@media (max-width: 900px) {
  main footer {
    padding: 2rem 3rem;
    padding-bottom: 4rem;
  }
}
main footer .footer__column {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
main footer .footer__column a {
  transition: color 0.2s;
  align-self: center;
}
main footer .footer__column a:hover {
  color: var(--color-blue-light-7);
}
main footer .footer__column p {
  -webkit-margin-before: 0.5rem;
          margin-block-start: 0.5rem;
  -webkit-margin-after: 0.5rem;
          margin-block-end: 0.5rem;
}
main footer .footer__column img {
  margin-top: 2rem;
  width: 8rem;
  height: auto;
  align-self: center;
}
main footer .footer__column:nth-child(2) p {
  align-self: center;
}
main footer .footer__bottom {
  position: absolute;
  bottom: 0;
  width: 100%;
  left: 0;
  right: 0;
  padding: 1rem 5rem;
  font-size: 0.8rem;
}
@media (max-width: 900px) {
  main footer .footer__bottom {
    padding: 1rem 3rem;
  }
}
main footer .footer__bottom p {
  margin: 0;
}

a {
  text-decoration: none;
  color: inherit;
}/*# sourceMappingURL=style.css.map */