:root {
  --black: black;
  --white: white;
  --blue: #67a1bd;
  --neutral-light-grey: #ececec;
  --sec-blue-green: #60b3b1;
  --sec-orange: #f29554;
  --sec-green: #87b666;
  --neutral-dark-grey: #9b9b9b;
  --gold: #ffcb00;
  --grey: #767676;
  --sec-pink: #e092aa;
  --neutral-grey: #c6c6c6;
  --coral: #e8754f;
  --medium-turquoise: #44c2b3;
  --dodger-blue: #229ee6;
  --dark-slate-gray: #465259;
  --white-smoke: #f7f2f0;
  --dark-slate-gray-2: #364147;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

body {
  color: #333;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 20px;
}

h1 {
  color: #fff;
  letter-spacing: 0;
  margin-top: 6px;
  margin-bottom: 10px;
  font-family: Lato, sans-serif;
  font-size: 27px;
  font-weight: 300;
  line-height: 44px;
}

h2 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Roboto, sans-serif;
  font-size: 35px;
  font-weight: 700;
  line-height: 36px;
}

h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Roboto, sans-serif;
  font-size: 24px;
  font-weight: 300;
  line-height: 30px;
}

h4 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Roboto, sans-serif;
  font-size: 22px;
  font-weight: 300;
  line-height: 24px;
}

h5 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
}

h6 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Roboto, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
}

p {
  color: #a3a7ad;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Roboto, sans-serif;
  line-height: 24px;
}

.button {
  color: #fff;
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  background-color: #364147;
  border: 2px solid #364147;
  border-radius: 3px;
  margin-top: 15px;
  padding: 10px 20px;
  font-family: Roboto, sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
  transition: background-color .5s, border-color .5s, color .5s, background-position .5s;
  display: inline-block;
}

.button:hover {
  color: #fff;
  background-color: #e8754f;
  border-color: #e8754f;
}

.button.outline-white {
  background-color: #0000;
  border-color: #fff;
  margin-left: 10px;
  font-family: Lato, sans-serif;
}

.button.outline-white:hover {
  color: #000;
  background-color: #fff;
}

.button.green {
  float: left;
  border: 2px solid var(--black);
  background-color: var(--black);
  color: var(--white);
  text-align: center;
  border-radius: 30px;
  margin-top: 0;
  font-family: Montserrat, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 30px;
  transition-property: none;
  display: inline-block;
}

.button.green:hover {
  border-color: var(--blue);
  background-color: var(--blue);
  color: #fff;
}

.button.price-button {
  background-color: #44c2b3;
  background-image: url('../images/Icons-pijlrechts-white.png');
  background-position: 94%;
  background-repeat: no-repeat;
  background-size: auto 20px;
  border-color: #44c2b3;
  margin-right: 0;
  padding-right: 40px;
}

.button.price-button:hover {
  color: #fff;
  background-color: #e8754f;
  background-position: 126%;
  border-color: #e8754f;
}

.button.submit {
  border-width: 10px;
  border-color: var(--black);
  background-color: var(--black);
  text-align: left;
  background-image: url('../images/Icons-pijlrechts-white.png');
  background-position: 96%;
  background-repeat: no-repeat;
  background-size: auto 20px;
  border-radius: 30px;
  width: 100%;
  font-size: 14px;
  transition-timing-function: ease, ease, ease, ease-in-out;
}

.button.submit:hover {
  border-color: var(--blue);
  background-color: var(--blue);
  color: #fff;
  background-position: 110%;
}

.page-header {
  background-color: var(--white);
  height: auto;
  padding-top: 250px;
  padding-bottom: 80px;
  display: block;
}

.navbar {
  background-color: #ffffffa6;
  padding-top: 50px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.nav-link {
  color: var(--black);
  letter-spacing: 1px;
  text-transform: uppercase;
  border-style: none;
  border-bottom-width: 4px;
  border-bottom-color: #0000;
  margin-right: 20px;
  padding-left: 0;
  padding-right: 0;
  font-family: Montserrat, sans-serif;
  font-size: 13px;
  font-weight: 700;
  transition: opacity .5s, border-color .5s, color .5s;
}

.nav-link:hover {
  opacity: 1;
  color: var(--blue);
  border-bottom-style: solid;
  border-bottom-color: #ffffff4d;
}

.nav-link.w--current {
  color: var(--black);
  border: 1px #000;
  border-bottom: 4px solid #000;
  font-family: Montserrat, sans-serif;
}

.page-content {
  background-color: var(--neutral-light-grey);
  margin-top: 0;
  padding-top: 60px;
  padding-bottom: 60px;
}

.page-content.tint {
  background-color: var(--neutral-light-grey);
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 52px;
  padding-bottom: 375px;
}

.logo-container {
  transition: opacity .5s;
}

.logo-container:hover {
  opacity: .5;
}

.logo-space {
  letter-spacing: 7px;
  margin-left: 10px;
  font-weight: 900;
}

.header-container {
  text-align: center;
  margin-top: 0;
}

.header-title {
  color: var(--black);
  text-align: left;
  letter-spacing: 1px;
  text-transform: none;
  margin-top: 0;
  margin-bottom: 40px;
  padding-top: 30px;
  font-family: Montserrat, sans-serif;
  font-size: 40px;
  font-weight: 700;
  line-height: 50px;
}

.header-title._2 {
  float: none;
  clear: none;
  opacity: 1;
  direction: ltr;
  color: var(--black);
  text-align: left;
  letter-spacing: 0;
  text-transform: none;
  min-width: 0;
  min-height: 0;
  margin-top: -20px;
  margin-bottom: 40px;
  padding-top: 0;
  padding-bottom: 0;
  font-family: Montserrat, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  display: block;
}

.header-title.black {
  color: #000;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 30px;
  padding-bottom: 60px;
  font-size: 30px;
}

.header-title.black.contact {
  padding-bottom: 0;
  font-family: Montserrat, sans-serif;
}

.header-title._3 {
  background-color: var(--neutral-light-grey);
  opacity: 1;
  color: var(--black);
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
  padding-top: 60px;
  padding-bottom: 60px;
  padding-left: 0;
  font-family: Montserrat, sans-serif;
  font-size: 18px;
}

.button-down {
  z-index: 100;
  color: #ccc;
  text-align: center;
  background-color: #fff;
  border: 2px solid #e8754f;
  border-radius: 100px;
  width: 60px;
  height: 60px;
  margin-top: -33px;
  margin-left: auto;
  margin-right: auto;
  padding: 13px 10px 10px;
  font-size: 30px;
  text-decoration: none;
  transition: border-color .5s;
  display: block;
  position: relative;
}

.button-down:hover {
  background-color: #fff;
  border-color: #964327;
}

.button-down.w--current {
  border-width: 2px;
}

.arrow-icon {
  opacity: .5;
}

.link-text-block {
  color: #fff;
  text-align: center;
  background-color: #e8754f;
  border: 3px solid #e8754f;
  border-radius: 3px;
  width: 100%;
  height: 160px;
  padding-top: 20px;
  padding-left: 20px;
  padding-right: 20px;
  text-decoration: none;
  transition: border-color .5s, background-color .5s;
}

.link-text-block:hover {
  background-color: #c75b38;
  border-color: #c75b38;
}

.icon {
  opacity: .5;
  height: 50px;
  margin-bottom: 6px;
}

.image-section {
  height: 400px;
  padding-top: 110px;
}

.image-section-title {
  color: #fff;
  text-shadow: 0 0 3px #00000080;
  font-family: Roboto, sans-serif;
  font-size: 30px;
  font-weight: 300;
}

.section-header {
  color: var(--black);
  letter-spacing: 3px;
  text-transform: uppercase;
  border: 2px #000;
  border-bottom-color: #cbcfd4;
  margin-top: 20px;
  margin-bottom: 25px;
  padding-top: 20px;
  padding-bottom: 1px;
  font-family: Montserrat, sans-serif;
  font-size: 15px;
  font-weight: 700;
  display: inline-block;
}

.link {
  color: var(--blue);
  font-family: Lato, sans-serif;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  transition: color .5s;
}

.link:hover {
  color: #44c2b3;
  font-family: Lato, sans-serif;
  font-weight: 400;
}

.link.whitespace {
  margin-top: 15px;
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  display: block;
}

.link.footer-link {
  color: #000;
  margin-bottom: 10px;
  display: block;
}

.link.footer-link:hover {
  color: #229ee6;
}

.link._2 {
  font-size: 17px;
}

.cta-stripe {
  background-color: var(--neutral-light-grey);
  padding-top: 60px;
  padding-bottom: 60px;
  position: static;
}

.cta-column-right {
  text-align: right;
  padding-bottom: 0;
  padding-right: 0;
}

.cta-column-left {
  padding-left: 0;
}

.subpage-header {
  z-index: 1;
  background-color: var(--white);
  background-image: none;
  background-position: 0 0;
  border-radius: 0;
  height: auto;
  padding-top: 240px;
  padding-bottom: 80px;
  font-weight: 700;
  position: relative;
}

.subpage-header.contact {
  background-color: var(--white);
  color: var(--white);
  background-image: none;
  height: 250px;
  padding-top: 0;
  padding-bottom: 0;
}

.subpage-header.about, .subpage-header.pricing {
  background-image: radial-gradient(circle, #364147e0, #364147 50%);
  background-position: 0 0;
  background-size: auto;
}

.subpage-header.faq {
  background-color: var(--white);
  background-image: url('../images/desktop-header-bg-v10.jpg');
  background-position: 50% 100%;
  background-size: cover;
}

.team-section {
  background-color: #0000;
  background-image: none;
  background-repeat: repeat;
  background-size: auto;
}

.team-section:hover {
  opacity: .75;
}

.team-row {
  margin-top: 11px;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
}

.team-member-column {
  opacity: .85;
  background-color: #fff;
  min-height: 320px;
  padding-left: 0;
  padding-right: 0;
}

.team-member-column:hover {
  opacity: 1;
  background-color: #0000;
}

.team-member-column._2, .team-member-column._3, .team-member-column._4 {
  min-height: 320px;
}

.team-member-title {
  opacity: .5;
  color: var(--black);
  text-align: center;
  margin-top: 20px;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
  font-family: Montserrat, sans-serif;
  font-size: 22px;
  font-weight: 700;
}

.team-member-title:hover {
  opacity: .75;
}

.team-member-title._2 {
  opacity: .5;
  color: #333;
  text-align: center;
  margin-top: 10px;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 300;
}

.team-member-title._2:hover {
  opacity: .75;
}

.small-faded-icon {
  opacity: .2;
  width: 30px;
  height: 30px;
}

.small-faded-icon.overlay {
  opacity: .35;
}

._4-column-row.whitespace {
  margin-top: 50px;
}

.price-column {
  text-align: center;
  border-right: 1px solid #e6e6e6;
  padding-top: 20px;
  padding-left: 20px;
  padding-right: 20px;
  transition: background-color .5s;
}

.price-column:hover {
  background-color: #fff9;
}

.price-column.last {
  text-align: center;
  border-right-style: none;
}

.price-column.active {
  background-color: #fff;
}

.image-section-with-info {
  opacity: 1;
  filter: grayscale();
  background-image: url('../images/onelinersbrusselmei2016.jpg');
  background-position: 0 0;
  background-size: 1840px;
  min-width: 100%;
  height: 600px;
  padding-top: 120px;
  padding-bottom: 120px;
  overflow: auto;
}

.image-section-with-info._1 {
  filter: none;
  background-image: none;
  background-position: 0 0;
  background-size: auto;
  height: auto;
  padding-top: 60px;
  padding-bottom: 60px;
}

.overall-list {
  margin-top: 30px;
  margin-bottom: 30px;
}

.overall-list-item {
  padding-bottom: 30px;
}

.price-box {
  text-align: center;
  width: 100%;
  min-height: 550px;
  padding-bottom: 40px;
}

.price-box-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 30px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.price-box-title {
  margin-bottom: 20px;
}

.price-box-title.price {
  color: #44c2b3;
  margin-top: 25px;
  margin-bottom: 30px;
  font-size: 40px;
  font-weight: 300;
}

.list-item-lined {
  border-top: 1px solid #e6e6e6;
  padding-top: 20px;
  padding-bottom: 20px;
}

.list-item-lined.last {
  border-bottom: 1px solid #e6e6e6;
}

.container.centered {
  text-align: center;
}

.overall-text-block {
  margin-top: 50px;
  margin-bottom: 50px;
}

.icon-list-item {
  float: left;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  margin-right: 10px;
}

.divider {
  background-color: #00000017;
  height: 1px;
  margin-top: 80px;
  margin-bottom: 80px;
}

.overall-column {
  background-color: var(--sec-blue-green);
  padding-bottom: 20px;
  padding-left: 15px;
  padding-right: 15px;
  display: inline-block;
}

.divider-line {
  background-color: #b5b5b54a;
  width: 100%;
  height: 1px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.footer {
  color: var(--white);
  background-color: #0000;
  padding-top: 0;
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  font-weight: 300;
}

.footer:hover {
  color: var(--white);
}

.bottom-footer {
  background-color: var(--black);
  text-align: center;
  margin-top: 0;
  padding-top: 40px;
  padding-bottom: 40px;
}

.left-image-column {
  padding-right: 55px;
}

.some-block-small {
  opacity: .2;
  background-color: #e8754f;
  border-radius: 3px;
  width: 25px;
  height: 25px;
  margin-top: 15px;
  margin-right: 4px;
  padding-top: 1px;
  padding-left: 3px;
  padding-right: 3px;
  transition: opacity .5s;
}

.some-block-small:hover {
  opacity: 1;
}

.some-block-small.dark {
  background-color: var(--blue);
  opacity: 1;
  width: 35px;
  height: 35px;
  margin-top: 0;
  padding-top: 6px;
  padding-left: 5px;
  padding-right: 5px;
  transition: background-color .5s, border-color .5s, color .5s, background-position .5s;
}

.some-block-small.dark:hover {
  opacity: 1;
  background-color: #e8754f;
}

.some-block-small.footer-icon {
  background-color: #000;
  margin-top: 0;
}

.some-block-small.footer-icon:hover {
  background-color: #e8754f;
}

.footer-title {
  color: #cbcfd4;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 700;
}

.bottom-footer-text {
  opacity: .2;
  color: #fff;
  font-family: Lato, sans-serif;
  font-size: 13px;
  font-weight: 400;
}

.image-stripe {
  background-image: url('../images/Person-16.jpg');
  background-position: 50%;
  background-size: cover;
  height: 200px;
}

.all-paragraphs-white {
  color: var(--black);
  font-family: Montserrat, sans-serif;
  font-size: 15px;
  font-weight: 400;
}

.overlay-title-white {
  color: var(--black);
  margin-bottom: 30px;
  font-family: Montserrat, sans-serif;
  font-size: 23px;
  font-weight: 700;
}

.field {
  color: #696969;
  border: 2px solid #fff;
  border-radius: 6px;
  height: 60px;
  margin-bottom: 10px;
  font-family: Montserrat, sans-serif;
  box-shadow: inset 0 0 #ffffff80;
}

.field:hover, .field:focus {
  border-color: var(--sec-orange);
}

.field.area {
  height: 170px;
  padding-top: 17px;
}

.field.area:hover {
  border-color: var(--sec-orange);
}

.contact-details-column {
  padding-left: 50px;
}

.contact-map {
  height: 450px;
  margin-top: -250px;
  padding-top: 120px;
}

.success-bg {
  background-color: var(--blue);
  text-align: center;
  border-radius: 3px;
  height: 370px;
  padding-top: 120px;
}

.error-bg {
  background-color: var(--sec-orange);
  border-radius: 3px;
  font-family: Montserrat, sans-serif;
}

.text-block-title {
  font-size: 21px;
}

.color-text-block {
  background-color: #e8f7ff;
  border: 1px solid #b0d5e8;
  border-radius: 3px;
  margin-top: 70px;
  margin-bottom: 70px;
  padding: 40px;
}

.info-block-title {
  color: #4db2e8;
  margin-top: 0;
  font-family: Roboto, sans-serif;
  font-size: 21px;
}

.question-block {
  border-bottom: 1px solid #b5b5b54a;
  margin-bottom: 0;
  padding-top: 15px;
  padding-bottom: 20px;
  padding-left: 15px;
}

.question-block:hover {
  background-color: #e8f7ff4a;
}

.faq-title {
  color: var(--sec-orange);
  margin-top: 30px;
  margin-bottom: 15px;
  margin-left: 15px;
  font-family: Montserrat, sans-serif;
}

.team-image {
  opacity: 1;
  background-color: #0000;
  max-width: 100%;
  height: auto;
  margin-right: 0;
  padding-left: 0;
  padding-right: 20px;
  display: block;
}

.team-image:hover {
  opacity: 1;
  background-color: #0000;
}

.team-text-block {
  padding-top: 15px;
  padding-left: 0;
  padding-right: 10px;
}

.feature-column {
  padding-bottom: 50px;
}

.new-features-column {
  background-color: var(--sec-green);
  text-align: left;
  padding: 30px;
}

.new-features-column-1 {
  padding-left: 0;
  padding-right: 40px;
}

.button-container {
  display: inline-block;
}

.about-title {
  color: #333;
  background-color: #0000;
  font-family: Montserrat, sans-serif;
  font-size: 20px;
  font-weight: 700;
}

.client-logos {
  justify-content: flex-end;
  margin-top: 45px;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
  padding-right: 0;
  display: block;
}

.whyparagraaf {
  color: #000;
  font-family: Montserrat, sans-serif;
  font-size: 14px;
  font-weight: 400;
}

.contact {
  font-family: Lato, sans-serif;
  font-size: 13px;
}

.utility-page-wrap {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  display: flex;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  width: 260px;
  display: flex;
}

.utility-page-form {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

._3-column-row {
  margin-top: -5px;
  padding-top: 4px;
  padding-bottom: 31px;
}

.loginbutton {
  float: right;
  column-count: 1;
  background-color: #0000;
  border: 2px solid #fff;
  height: 32px;
  margin-top: 0;
  margin-bottom: 3px;
  padding-top: 0;
  padding-bottom: 7px;
  line-height: 20px;
  position: relative;
  top: 11px;
}

.loginbutton2 {
  border: 2px solid var(--blue);
  background-color: var(--blue);
  color: var(--white);
  text-transform: uppercase;
  border-radius: 3px;
  margin-top: 10px;
  padding-top: 7px;
  padding-bottom: 7px;
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  transition: background-color .5s, border-color .5s, color .5s, background-position .5s;
}

.loginbutton2:hover {
  border-color: var(--blue);
  background-color: var(--white);
  color: var(--blue);
}

.cta {
  margin-top: 15px;
  margin-bottom: 10px;
  font-family: Montserrat, sans-serif;
  font-weight: 400;
  overflow: visible;
}

.terms {
  margin-left: 94px;
  margin-right: 0;
  padding-top: 41px;
  padding-right: 92px;
  font-family: Lato, sans-serif;
  font-size: 14px;
  font-weight: 400;
  display: block;
}

.mailto {
  color: #44c2b3;
}

.contactdetails {
  color: var(--black);
  font-family: Montserrat, sans-serif;
}

.technology {
  margin-top: 22px;
}

.technology-title {
  font-family: Montserrat, sans-serif;
  font-size: 20px;
  font-weight: 700;
}

.slack {
  border-style: none;
  font-family: Lato, sans-serif;
}

.language {
  opacity: .5;
  color: #fff;
  margin-top: -19px;
  padding-top: 0;
  font-family: Lato, sans-serif;
  font-weight: 700;
}

.language-selector {
  opacity: .5;
  color: #fff;
  margin-top: 4.5px;
  padding-left: 0;
  padding-right: 18px;
}

.otherlanguages {
  text-transform: uppercase;
  font-family: Lato, sans-serif;
  font-weight: 700;
}

.paragraph {
  margin-bottom: 10px;
  font-family: Montserrat, sans-serif;
  font-size: 11px;
  font-weight: 300;
}

.heading {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 30px;
}

.link-2, .link-3 {
  text-decoration: none;
}

.link-4 {
  color: #000;
  font-weight: 300;
}

.bold-text, .bold-text-2 {
  font-size: 18px;
}

.heading-2 {
  text-align: center;
  letter-spacing: 1px;
  text-transform: none;
  margin-top: 0;
  margin-bottom: 40px;
  font-family: Montserrat, sans-serif;
  font-size: 30px;
}

.text-block {
  text-align: center;
}

.div-block {
  background-color: #f5f6f7;
  margin-bottom: 0;
  padding-top: 60px;
  padding-bottom: 60px;
}

.heading-3 {
  color: var(--neutral-dark-grey);
  text-align: center;
  font-family: Montserrat, sans-serif;
  font-size: 20px;
  font-weight: 400;
}

.heading-4 {
  color: var(--neutral-dark-grey);
  font-family: Montserrat, sans-serif;
  font-size: 20px;
  font-weight: 400;
}

.heading-5 {
  margin-bottom: 40px;
  padding-top: 20px;
}

.div-block-2 {
  background-color: var(--black);
  width: 80px;
  height: 5px;
}

.div-block-3 {
  background-image: linear-gradient(to bottom, var(--blue), var(--blue));
  padding-top: 325px;
  padding-bottom: 140px;
}

.image {
  padding-top: 10px;
}

.paragraph-2 {
  color: var(--black);
  text-transform: capitalize;
  font-family: Montserrat, sans-serif;
  font-size: 20px;
  font-weight: 700;
}

.div-block-4 {
  background-color: var(--neutral-light-grey);
  padding-top: 60px;
  padding-bottom: 60px;
}

.heading-6 {
  color: var(--black);
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 30px;
  padding-bottom: 15px;
  font-family: Montserrat, sans-serif;
  font-size: 30px;
}

.div-block-5 {
  background-color: var(--black);
  color: var(--black);
  width: 80px;
  height: 4px;
}

.columns {
  margin-left: 0;
  margin-right: 0;
}

.div-block-6 {
  padding-top: 60px;
  padding-bottom: 60px;
}

.heading-7 {
  color: var(--white);
  font-family: Montserrat, sans-serif;
  font-size: 18px;
  font-weight: 700;
}

.paragraph-3 {
  color: var(--black);
  font-family: Montserrat, sans-serif;
  font-weight: 400;
}

.columns-2 {
  margin-bottom: 0;
}

.columns-3 {
  padding-bottom: 0;
}

.column, .column-2, .column-3, .column-4, .column-5, .column-6 {
  margin-bottom: 40px;
}

.paragraph-4 {
  color: var(--black);
  font-family: Montserrat, sans-serif;
  font-size: 18px;
  line-height: 32px;
}

.column-7 {
  text-align: right;
  padding-top: 100px;
  padding-right: 0;
}

.div-block-7 {
  height: 400px;
}

.div-block-8 {
  background-image: url('../images/home-image.jpg');
  background-position: 0 0;
  background-size: cover;
  height: 600px;
}

.paragraph-5 {
  color: var(--black);
  background-color: #0000;
  margin-bottom: 30px;
  font-family: Montserrat, sans-serif;
  font-size: 18px;
  font-weight: 400;
}

.section {
  padding-top: 60px;
  padding-bottom: 60px;
}

.heading-8 {
  color: #000;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 30px;
  padding-bottom: 60px;
  font-family: Montserrat, sans-serif;
  font-size: 30px;
}

.paragraph-6, .paragraph-7, .paragraph-8, .paragraph-9, .paragraph-10, .paragraph-11 {
  color: var(--black);
  font-family: Montserrat, sans-serif;
}

.columns-4, .columns-5 {
  padding-bottom: 60px;
}

.div-block-9 {
  background-color: var(--blue);
  margin-bottom: 40px;
  padding: 20px;
}

.div-block-10 {
  background-color: #60b3b1;
  margin-bottom: 40px;
  padding: 20px;
}

.div-block-11 {
  background-color: var(--gold);
  margin-bottom: 40px;
  padding: 20px;
}

.columns-6 {
  margin-bottom: 0;
}

.div-block-12 {
  background-color: #e092aa;
  margin-bottom: 40px;
  padding: 20px;
}

.div-block-13 {
  background-color: var(--sec-orange);
  margin-bottom: 40px;
  padding: 20px;
}

.div-block-14 {
  background-color: #87b666;
  padding: 20px;
}

.div-block-15 {
  background-color: var(--black);
  width: 80px;
  height: 4px;
}

.div-block-16 {
  background-color: var(--neutral-light-grey);
  padding-top: 60px;
  padding-bottom: 60px;
}

.div-block-17 {
  background-color: var(--blue);
  padding: 20px;
}

.div-block-18 {
  background-color: var(--sec-orange);
  padding: 20px;
}

.div-block-19 {
  background-color: var(--gold);
  padding: 20px;
}

.div-block-20 {
  filter: grayscale();
  background-image: url('../images/Groepsfoto-website-oneliner.jpg');
  background-position: 50% 0;
  background-size: cover;
  height: 600px;
  overflow: visible;
}

.heading-9, .heading-10, .heading-11, .heading-12, .heading-13 {
  font-family: Montserrat, sans-serif;
  font-weight: 700;
}

.paragraph-12 {
  color: #767676;
  font-family: Montserrat, sans-serif;
  font-weight: 400;
}

.paragraph-13 {
  color: var(--grey);
  font-family: Montserrat, sans-serif;
  font-weight: 400;
}

.heading-14, .heading-15, .heading-16, .heading-17, .heading-18, .heading-19, .heading-20, .heading-21, .heading-22, .heading-23, .heading-24, .heading-25 {
  font-family: Montserrat, sans-serif;
  font-weight: 700;
}

.paragraph-14, .paragraph-15 {
  color: var(--grey);
  font-family: Montserrat, sans-serif;
}

.paragraph-16, .paragraph-17 {
  color: var(--grey);
  font-family: Montserrat, sans-serif;
  font-weight: 400;
}

.paragraph-18, .paragraph-19, .paragraph-20, .paragraph-21, .paragraph-22, .paragraph-23, .paragraph-24 {
  color: var(--grey);
  font-family: Montserrat, sans-serif;
}

.bold-text-3 {
  font-family: Montserrat, sans-serif;
}

.heading-26 {
  color: #000;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 30px;
  padding-bottom: 15px;
  font-family: Montserrat, sans-serif;
  font-size: 30px;
}

.div-block-21 {
  background-color: #67a1bd;
  margin-bottom: 40px;
  padding: 20px;
}

.heading-27 {
  color: #fff;
  font-family: Montserrat, sans-serif;
  font-size: 18px;
  font-weight: 700;
}

.div-block-22 {
  color: #000;
  background-color: #000;
  width: 80px;
  height: 4px;
}

.paragraph-25 {
  color: #000;
  font-family: Montserrat, sans-serif;
  font-weight: 400;
}

.div-block-23 {
  background-color: #f29554;
  margin-bottom: 40px;
  padding: 20px;
}

.div-block-24 {
  background-color: #ffcb00;
  margin-bottom: 40px;
  padding: 20px;
}

.grid {
  grid-template: "Area" minmax(auto, 1fr)
                 "."
                 / 1fr 1fr 1fr 1fr;
}

.heading-28 {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 20px;
  margin-bottom: 0;
  padding-top: 0%;
  font-family: Montserrat, sans-serif;
  font-size: 22px;
  display: block;
  position: static;
}

.text-block-2 {
  text-align: center;
  font-family: Montserrat, sans-serif;
  font-size: 12px;
}

.heading-29 {
  text-align: center;
  font-family: Montserrat, sans-serif;
}

.image-2 {
  margin-top: -245px;
}

.div-block-25 {
  background-image: url('../images/circle3.png');
  background-position: 0 0;
  background-size: cover;
  width: auto;
  position: static;
  inset: 0% 0% 0% auto;
}

.image-3 {
  margin-top: 20px;
}

.div-block-26 {
  height: auto;
  min-height: auto;
  margin-bottom: 20px;
}

.div-block-27 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column wrap;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  place-content: center;
  align-items: center;
  width: 100%;
  height: 14%;
  margin-top: 20px;
  padding-top: 0;
  padding-bottom: 0%;
  display: flex;
}

.image-4 {
  opacity: .9;
  margin-top: -3em;
}

.grid-2 {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.img-team-green {
  border: 10px solid var(--sec-green);
  border-radius: 500px;
}

.img-team-yellow {
  border: 10px solid var(--gold);
  border-radius: 500px;
}

.img-team-turquoise {
  border: 10px solid var(--sec-blue-green);
  border-radius: 500px;
}

.img-team-pink {
  border: 10px solid var(--sec-pink);
  border-radius: 500px;
}

.img-team-orange {
  border: 10px solid var(--sec-orange);
  border-radius: 500px;
}

.img-team-green-copy {
  border: 10px solid var(--sec-green);
  border-radius: 500px;
}

.team-member-title-copy {
  opacity: .5;
  color: var(--black);
  text-align: center;
  margin-top: 20px;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
  font-family: Montserrat, sans-serif;
  font-size: 22px;
  font-weight: 700;
}

.team-member-title-copy:hover {
  opacity: .75;
}

.team-member-title-copy._2 {
  opacity: .5;
  color: #333;
  text-align: center;
  margin-top: 10px;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 300;
}

.team-member-title-copy._2:hover {
  opacity: .75;
}

.img-team-blue {
  border: 10px solid var(--blue);
  border-radius: 500px;
}

.team-item {
  margin-bottom: 40px;
}

.dropdown {
  margin-left: 20px;
}

.dropdown-toggle {
  padding: 0 25px 0 0;
}

.text-block-3 {
  font-family: Montserrat, sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.dropdown-list {
  background-color: #fff;
}

.dropdown-list.w--open {
  box-shadow: 0 0 4px 0 var(--neutral-grey);
  margin-top: 20px;
}

.icon-2, .icon-3, .icon-4, .icon-5, .icon-6 {
  margin-right: 0;
}

.dropdown-link, .dropdown-link-2.nav-dropdown-link, .dropdown-link-3, .dropdown-link-4 {
  font-family: Montserrat, sans-serif;
  font-weight: 700;
}

.dropdown-link-5 {
  color: var(--blue);
  font-weight: 700;
}

.dropdown-link-5.w--current {
  color: var(--blue);
  font-family: Montserrat, sans-serif;
  font-weight: 700;
}

.dropdown-link-6 {
  color: var(--blue);
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-weight: 700;
}

.dropdown-link-6:visited {
  color: var(--blue);
  font-weight: 700;
}

.dropdown-link-6.w--current, .dropdown-link-7, .dropdown-link-8, .dropdown-link-9, .dropdown-link-10, .dropdown-link-11 {
  font-family: Montserrat, sans-serif;
  font-weight: 700;
}

.dropdown-link-12 {
  color: var(--blue);
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-weight: 700;
}

.dropdown-link-12.w--current {
  color: var(--blue);
  font-family: Montserrat, sans-serif;
  font-weight: 700;
}

.dropdown-link-13, .dropdown-link-14, .dropdown-link-15, .dropdown-link-16, .dropdown-link-17 {
  font-family: Montserrat, sans-serif;
  font-weight: 700;
}

.dropdown-link-18 {
  color: var(--blue);
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-weight: 700;
}

.dropdown-link-18.w--current {
  color: var(--blue);
  font-family: Montserrat, sans-serif;
  font-weight: 700;
}

.dropdown-link-19, .dropdown-link-20, .dropdown-link-21, .dropdown-link-22, .dropdown-link-23 {
  font-family: Montserrat, sans-serif;
  font-weight: 700;
}

.dropdown-link-24 {
  color: var(--blue);
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-weight: 700;
}

.dropdown-link-24.w--current {
  color: var(--blue);
  font-family: Montserrat, sans-serif;
  font-weight: 700;
}

.dropdown-link-25 {
  font-family: Montserrat, sans-serif;
  font-weight: 700;
}

html.w-mod-js [data-ix="fade-in-on-load"], html.w-mod-js [data-ix="fade-in-on-load-2"] {
  opacity: 0;
  transform: translate(0, 15px);
}

html.w-mod-js [data-ix="fade-in-on-load-left"] {
  opacity: 0;
  transform: translate(-40px);
}

html.w-mod-js [data-ix="fade-in-on-load-right"] {
  opacity: 0;
  transform: translate(40px);
}

html.w-mod-js [data-ix="fade-in-on-scroll-right"] {
  opacity: 0;
  transform: translate(50px);
}

@media screen and (max-width: 991px) {
  h3 {
    font-size: 20px;
  }

  .page-header {
    padding-top: 200px;
    padding-bottom: 170px;
  }

  .navbar {
    padding-top: 40px;
    padding-left: 50px;
    padding-right: 50px;
  }

  .nav-link {
    float: none;
    border-bottom-width: 2px;
    border-bottom-color: #ffffff1a;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

  .nav-link:hover {
    opacity: 1;
    color: #e8754f;
    border-bottom-color: #e8754f;
  }

  .nav-link.w--current {
    border-bottom-width: 2px;
    border-bottom-color: #e8754f;
  }

  .page-content {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .header-title {
    font-size: 40px;
  }

  .header-title._2 {
    margin-top: 0;
  }

  .link-text-block {
    padding-top: 20px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .image-section {
    height: 300px;
    padding-top: 60px;
    padding-left: 50px;
  }

  .cta-stripe {
    padding-left: 50px;
    padding-right: 50px;
  }

  .subpage-header {
    padding-top: 150px;
    padding-bottom: 100px;
  }

  .subpage-header.contact {
    height: 150px;
  }

  .team-section {
    background-size: auto 187px;
  }

  .team-member-column {
    opacity: 1;
    min-height: 450px;
  }

  .list-item-lined {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .image-stripe {
    height: 150px;
  }

  .contact-details-column {
    padding-left: 30px;
  }

  .footer-column {
    padding-left: 25px;
  }

  .menu-button {
    border: 0px solid var(--white);
    background-color: #0000;
    border-radius: 3px;
    transition: all .5s;
    inset: 0;
  }

  .menu-button:hover {
    background-color: var(--white);
  }

  .menu-button.w--open {
    background-color: #e8754f;
  }

  .menu-icon {
    background-color: var(--white);
    color: var(--blue);
    font-size: 30px;
  }

  .nav-menu-container {
    background-color: var(--white);
    text-align: left;
    margin-top: 40px;
    padding: 30px 50px 50px;
  }

  .text-block-title {
    font-size: 17px;
    line-height: 21px;
  }

  .question-block {
    padding-right: 15px;
  }

  .team-image {
    height: auto;
    padding-right: 20px;
  }

  .div-block-8 {
    height: 400px;
  }

  .grid {
    grid-template-rows: minmax(auto, 1fr) auto;
  }

  .heading-28 {
    margin-top: 10px;
    font-size: 18px;
  }

  .heading-29 {
    font-size: 12px;
  }

  .div-block-26 {
    justify-content: center;
    align-items: center;
    min-height: auto;
    display: block;
  }

  .text-block-3 {
    margin-top: 20px;
    margin-left: -20px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .dropdown-link, .dropdown-link-2, .dropdown-link-3, .dropdown-link-4 {
    font-family: Montserrat, sans-serif;
    font-weight: 700;
  }

  .dropdown-link-5 {
    font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  }

  .dropdown-link-5.w--current {
    font-family: Montserrat, sans-serif;
    font-weight: 700;
  }
}

@media screen and (max-width: 767px) {
  h3 {
    font-size: 19px;
    line-height: 26px;
  }

  .button.green {
    margin-bottom: 30px;
    margin-left: 10px;
  }

  .page-header {
    padding-top: 140px;
    padding-bottom: 40px;
  }

  .navbar {
    padding-top: 30px;
    padding-left: 30px;
    padding-right: 30px;
  }

  .nav-link {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .page-content {
    padding-left: 30px;
    padding-right: 30px;
  }

  .header-title {
    padding-left: 10px;
    font-family: Montserrat, sans-serif;
    font-size: 35px;
    line-height: 40px;
  }

  .header-title._2 {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 22px;
  }

  .image-section {
    height: 250px;
    padding-top: 40px;
  }

  .image-section-title {
    font-size: 27px;
    line-height: 32px;
  }

  .cta-stripe {
    padding-top: 60px;
    padding-left: 0;
    padding-right: 0;
  }

  .cta-column-right {
    padding-top: 12px;
  }

  .subpage-header {
    padding: 120px 20px 40px;
  }

  .subpage-header.contact {
    height: 120px;
    padding-top: 0;
  }

  .price-column {
    border-right-style: none;
  }

  .image-section-with-info {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .image-section-with-info._1 {
    padding-bottom: 0;
  }

  .overall-column {
    padding-bottom: 20px;
    padding-left: 0;
    padding-right: 0;
  }

  .divider-line {
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .footer {
    margin-top: -15px;
    padding-top: 0;
  }

  .bottom-footer {
    margin-top: 15px;
  }

  .contact-details-column {
    padding-top: 35px;
    padding-left: 10px;
  }

  .contact-map {
    height: 400px;
  }

  .footer-column {
    padding-bottom: 30px;
    padding-left: 30px;
  }

  .footer-bottom-column {
    padding-bottom: 25px;
  }

  .menu-button {
    background-color: var(--white);
  }

  .menu-button.w--open {
    background-color: #db6b46;
  }

  .nav-menu-container {
    background-color: var(--white);
    margin-top: 20px;
    padding: 20px 30px 30px;
  }

  .text-block-title {
    font-size: 21px;
    line-height: 24px;
  }

  .link-block-column {
    padding-bottom: 15px;
  }

  .color-text-block {
    margin-top: 30px;
    margin-bottom: 30px;
    padding: 25px;
  }

  .team-text-block {
    padding-left: 25px;
    padding-right: 15px;
  }

  .new-features-column {
    padding-right: 25px;
  }

  .paragraph-2 {
    margin-left: 10px;
    margin-right: 10px;
    line-height: 30px;
  }

  .div-block-4 {
    padding-left: 0;
    padding-right: 0;
  }

  .heading-6 {
    margin-left: 10px;
    margin-right: 0;
  }

  .div-block-5 {
    margin-left: 10px;
  }

  .paragraph-5 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .heading-8 {
    padding-bottom: 0;
    padding-left: 10px;
  }

  .columns-4 {
    padding-bottom: 0;
  }

  .div-block-16 {
    padding-top: 0;
  }

  .div-block-17, .div-block-18 {
    margin-bottom: 40px;
  }

  .div-block-20 {
    height: 320px;
  }

  .heading-26 {
    margin-left: 10px;
    margin-right: 0;
  }

  .div-block-22 {
    margin-left: 10px;
  }

  .grid {
    grid-template: "Area" minmax(auto, 1fr)
                   "."
                   / 1fr 1fr;
  }

  .heading-28 {
    margin-top: 20px;
    font-size: 22px;
  }

  .heading-29 {
    font-size: 14px;
  }

  .image-3 {
    margin-top: 10px;
  }

  .div-block-26 {
    min-height: auto;
  }

  .grid-2 {
    grid-template-columns: 1fr 1fr;
  }

  .image-5 {
    padding: 0 20% 20px;
  }

  .image-6, .image-7 {
    padding-bottom: 20px;
    padding-left: 20%;
    padding-right: 20%;
  }

  .image-8 {
    padding-top: 20px;
    padding-left: 140px;
    padding-right: 140px;
  }

  .image-9, .image-10 {
    padding-left: 120px;
    padding-right: 120px;
  }

  .image-11 {
    text-align: center;
    padding-left: 60px;
    padding-right: 60px;
  }
}

@media screen and (max-width: 479px) {
  .button.outline-white {
    margin-left: 4px;
    margin-right: 0;
    padding-left: 12px;
    padding-right: 12px;
  }

  .button.green {
    margin-bottom: 30px;
    margin-right: 0;
    padding-left: 12px;
    padding-right: 12px;
    font-size: 12px;
    line-height: 20px;
  }

  .page-header {
    padding: 120px 20px 30px;
  }

  .navbar {
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .nav-link.w--current {
    border-bottom-color: var(--black);
  }

  .page-content {
    padding: 30px 25px;
  }

  .header-title {
    letter-spacing: 0;
    margin-bottom: 30px;
    font-size: 30px;
    line-height: 30px;
  }

  .header-title._2 {
    margin-bottom: 30px;
    font-size: 18px;
    line-height: 20px;
  }

  .link-text-block {
    padding-left: 20px;
    padding-right: 20px;
  }

  .image-section {
    height: 220px;
    padding-top: 20px;
    padding-left: 25px;
    padding-right: 25px;
    font-size: 19px;
  }

  .image-section-title {
    font-size: 19px;
    line-height: 25px;
  }

  .cta-stripe {
    padding-top: 60px;
  }

  .cta-column-right {
    padding-top: 5px;
    padding-bottom: 0;
    padding-left: 0;
  }

  .cta-column-left {
    text-align: center;
  }

  .subpage-header {
    padding-top: 120px;
    padding-bottom: 30px;
  }

  .subpage-header.contact {
    height: 100px;
  }

  .team-member-title._2 {
    margin-bottom: 20px;
  }

  .price-column {
    padding-left: 10px;
    padding-right: 10px;
  }

  .image-section-with-info {
    background-image: linear-gradient(to right, #e8754ff2, #e8754ff2), url('../images/Mac-4.jpg');
  }

  .footer {
    line-height: 24px;
  }

  .bottom-footer {
    padding-bottom: 20px;
  }

  .image-stripe {
    height: 100px;
  }

  .overlay-title-white {
    font-size: 22px;
  }

  .footer-column {
    padding-bottom: 15px;
    padding-left: 25px;
  }

  .footer-bottom-column {
    padding-bottom: 15px;
  }

  .menu-button {
    background-color: var(--white);
    margin-top: -2px;
  }

  .menu-button.w--open {
    background-color: #f29554;
  }

  .nav-menu-container {
    background-color: var(--white);
    color: var(--sec-orange);
    margin-top: 16px;
    padding-top: 20px;
  }

  .link-block-column {
    padding-left: 0;
    padding-right: 0;
  }

  .team-image {
    width: auto;
  }

  .team-text-block {
    padding-top: 20px;
  }

  .feature-column {
    padding-bottom: 25px;
  }

  .new-features-column {
    padding-left: 25px;
  }

  .paragraph-2 {
    padding-left: 10px;
    padding-right: 10px;
  }

  .heading-6 {
    margin-left: 0;
    padding-left: 10px;
  }

  .div-block-5 {
    margin-left: 10px;
  }

  .div-block-8 {
    height: 200px;
  }

  .heading-8 {
    padding-left: 10px;
  }

  .div-block-17, .div-block-18 {
    margin-bottom: 40px;
  }

  .div-block-20 {
    height: 180px;
  }

  .heading-26 {
    padding-left: 10px;
  }

  .div-block-22 {
    margin-left: 10px;
  }

  .grid {
    grid-template-rows: minmax(auto, 1fr) auto;
  }

  .heading-28 {
    margin-top: 10px;
    font-size: 16px;
  }

  .heading-29 {
    font-size: 10px;
  }

  .div-block-26 {
    min-height: auto;
  }

  .grid-2 {
    grid-template-columns: 1fr 1fr;
  }

  .team-member-title-copy._2 {
    margin-bottom: 20px;
  }

  .image-8, .image-9, .image-10 {
    padding-left: 60px;
    padding-right: 60px;
  }
}


