*, *:before, *:after {
  box-sizing: border-box;
}
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

body {
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */

/**
 * Add the correct box sizing in Firefox.
 */

hr {
  box-sizing: content-box;
  height: 0;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, Opera, and Safari.
 */

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Remove the inheritance of text transform in Edge and Firefox.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * Remove the padding so developers are not caught out when they zero out `fieldset` elements in all browsers.
 */

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  vertical-align: baseline;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in Edge and Firefox.
 */

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}


/* CSS variables */

:root {
  --column-gap: 2.13%;
  --column-width-multiplier: 8.333;
}

/* Mobile layout */

.row-fluid {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}


  .row-fluid .span1,
  .row-fluid .span2,
  .row-fluid .span3,
  .row-fluid .span4,
  .row-fluid .span5,
  .row-fluid .span6,
  .row-fluid .span7,
  .row-fluid .span8,
  .row-fluid .span9,
  .row-fluid .span10,
  .row-fluid .span11,
  .row-fluid .span12{
  min-height: 1px;
  width: 100%;
}

/* Desktop layout */

@media (min-width: 768px) {
  .row-fluid {
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  
    .row-fluid .span1 {
      width: calc(var(--column-width-multiplier) * 1% * 1 - var(--column-gap) * (11 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span2 {
      width: calc(var(--column-width-multiplier) * 1% * 2 - var(--column-gap) * (10 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span3 {
      width: calc(var(--column-width-multiplier) * 1% * 3 - var(--column-gap) * (9 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span4 {
      width: calc(var(--column-width-multiplier) * 1% * 4 - var(--column-gap) * (8 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span5 {
      width: calc(var(--column-width-multiplier) * 1% * 5 - var(--column-gap) * (7 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span6 {
      width: calc(var(--column-width-multiplier) * 1% * 6 - var(--column-gap) * (6 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span7 {
      width: calc(var(--column-width-multiplier) * 1% * 7 - var(--column-gap) * (5 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span8 {
      width: calc(var(--column-width-multiplier) * 1% * 8 - var(--column-gap) * (4 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span9 {
      width: calc(var(--column-width-multiplier) * 1% * 9 - var(--column-gap) * (3 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span10 {
      width: calc(var(--column-width-multiplier) * 1% * 10 - var(--column-gap) * (2 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span11 {
      width: calc(var(--column-width-multiplier) * 1% * 11 - var(--column-gap) * (1 * var(--column-width-multiplier) / 100));
    }
  
}
.content-wrapper {
  margin: 0 auto;
  padding: 0 1rem;
}

@media screen and (min-width: 1380px) {
  .content-wrapper {
    padding: 0;
  }
}

.dnd-section > .row-fluid {
  margin: 0 auto;
}

.dnd-section .dnd-column {
  padding: 0 1rem;
}

@media (max-width: 767px) {
  .dnd-section .dnd-column {
    padding: 0;
  }
}
body {
  line-height: 1.4;
  overflow-wrap: break-word;
}

html[lang^="ja"] body,
html[lang^="zh"] body,
html[lang^="ko"] body {
  line-break: strict;
  overflow-wrap: normal;
  word-break: break-all;
}

/* Paragraphs */

p {
  font-size: 1rem;
  margin: 0 0 1.4rem;
}

/* Anchors */

a {
  cursor: pointer;
}

/* Headings */

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 1.4rem;
}

/* Lists */

ul,
ol {
  margin: 0 0 1.4rem;
}

ul ul,
ol ul,
ul ol,
ol ol {
  margin: 0;
}

ul.no-list {
  list-style: none;
  margin: 0;
  padding-left: 0;
}

/* Code blocks */

pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

/* Blockquotes */

blockquote {
  border-left: 2px solid;
  margin: 0 0 1.4rem;
  padding-left: 0.7rem;
}

/* Horizontal rules */

hr {
  border: none;
  border-bottom: 1px solid #CCC;
}

/* Image alt text */

img {
  font-size: 0.583rem;
  word-break: normal;
}
button,
.button,
.hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

button:disabled,
.button:disabled,
.hs-button:disabled {
  background-color: #D0D0D0;
  border-color: #D0D0D0;
  color: #E6E6E6;
}

/* No button */

.no-button,
.no-button:hover,
.no-button:focus,
.no-button:active {
  background: none;
  border: none;
  border-radius: 0;
  color: initial;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  margin-bottom: 0;
  padding: 0;
  text-align: left;
  text-decoration: none;
  transition: none;
}
/* Fields */

.hs-form-field {
  margin-bottom: 1.4rem;
}

/* Labels */

form label {
  display: block;
  font-size: 0.875rem;
  margin-bottom: 0.35rem;
}

/* Form Title */
.form-title {
  margin-bottom: 0;
}

/* Help text */

form legend {
  font-size: 0.875rem;
}

/* Inputs */

form input[type=text],
form input[type=search],
form input[type=email],
form input[type=password],
form input[type=tel],
form input[type=number],
form input[type=file],
form select,
form textarea {
  display: inline-block;
  font-size: 0.875rem;
  padding: 0.7rem;
  width: 100%;
}

form textarea {
  resize: vertical;
}

form fieldset {
  max-width: 100% !important;
}

/* Inputs - checkbox/radio */

form .inputs-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

form .inputs-list > li {
  display: block;
  margin: 0.7rem 0;
}

form .inputs-list input,
form .inputs-list span {
  vertical-align: middle;
}

form input[type=checkbox],
form input[type=radio] {
  cursor: pointer;
  margin-right: 0.35rem;
}

/* Inputs - date picker */

.hs-dateinput {
  position: relative;
}

.hs-dateinput:before {
  content:'\01F4C5';
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
}

.fn-date-picker .pika-table thead th {
  color: #FFF;
}

.fn-date-picker td.is-selected .pika-button {
  border-radius: 0;
  box-shadow: none;
}

.fn-date-picker td .pika-button:hover,
.fn-date-picker td .pika-button:focus {
  border-radius: 0 !important;
  color: #FFF;
}

/* Inputs - file picker */

form input[type=file] {
  background-color: transparent;
  border: initial;
  padding: initial;
}

/* Headings and text */

form .hs-richtext,
form .hs-richtext p {
  font-size: 0.875rem;
  margin: 0 0 1.4rem;
}

form .hs-richtext img {
  max-width: 100% !important;
}

/* GDPR */

.legal-consent-container .hs-form-booleancheckbox-display > span,
.legal-consent-container .hs-form-booleancheckbox-display > span p {
  margin-left: 1rem !important;
}

/* Validation */

.hs-form-required {
  color: #EF6B51;
}

.hs-input.invalid.error {
  border-color: #EF6B51;
}

.hs-error-msg {
  color: #EF6B51;
  margin-top: 0.35rem;
}

/* Submit button */

form input[type=submit],
form .hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}


/* Table */

table {
  border-collapse: collapse;
  margin-bottom: 1.4rem;
  overflow-wrap: break-word;
}

/* Table cells */

td,
th {
  vertical-align: top;
}

/* Table header */

thead th {
  vertical-align: bottom;
}
/* Header DND sections */

.header .dnd-section {
  padding: 0;
}

/* Header container */

.header__container {
  display: flex;
  justify-content: space-between;
}

.header__row-1 {
  padding-top: 1rem;
}

.header__row-1,
.header__row-2 {
  align-items: center;
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

@media (max-width: 1150px) and (min-width: 767px) {
  .header__column {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .header__container {
    flex-direction: column;
    padding: 1rem 0 0;
  }

  .header__column {
    position: relative;
  }

  .header__row-1 {
    padding-top: 0;
  }

  .header__row-2 {
    justify-content: center;
    padding: 1.05rem;
  }
}

/* Navigation skipper */

.header__skip {
  height: 1px;
  left: -1000px;
  overflow: hidden;
  position: absolute;
  text-align: left;
  top: -1000px;
  width: 1px;
}

.header__skip:hover,
.header__skip:focus,
.header__skip:active {
  height: auto;
  left: 0;
  overflow: visible;
  top: 0;
  width: auto;
}

/* Logo */

.header__logo {
  align-items: center;
  display: flex;
  height: auto;
  margin-right: auto;
  max-width: 200px;
  overflow: hidden;
}

@media (max-width: 767px) {
  .header__logo {
    margin: 0 auto;
    width: 100%;
  }
}

.header__logo img {
  max-width: 100%;
}

.header__logo .logo-company-name {
  font-size: 1.167rem;
  margin-top: 0.7rem;
}

.header__logo--main {
  padding-top: 1rem;
}

/* Search bar */

.header__search {
  padding: 0 1rem;
  width: auto;
}




.header__search .hs-search-field__input {
  
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAyNCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5TZWFyY2g8L3RpdGxlPiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4gICAgPGRlZnM+ICAgICAgICA8cGF0aCBkPSJNOS4xMzg2MTUzNCwxNS44OTI1Njg1IEM1LjQxMzk1NzQyLDE1Ljg5MjU2ODUgMi4zODM4ODUyNywxMi44NjM0NDc1IDIuMzgzODg1MjcsOS4xMzkwMDM3NiBDMi4zODM4ODUyNyw1LjQxNDU2MDA1IDUuNDEzOTU3NDIsMi4zODM4ODUyNyA5LjEzODYxNTM0LDIuMzgzODg1MjcgQzEyLjg2MzI3MzMsMi4zODM4ODUyNyAxNS44OTI1Njg1LDUuNDE0NTYwMDUgMTUuODkyNTY4NSw5LjEzOTAwMzc2IEMxNS44OTI1Njg1LDEyLjg2MzQ0NzUgMTIuODYzMjczMywxNS44OTI1Njg1IDkuMTM4NjE1MzQsMTUuODkyNTY4NSBNOS4xMzg3NTI0NSwyLjQzMzYwODg3ZS0xMyBDMTQuMTc3OTk1NSwyLjQzMzYwODg3ZS0xMyAxOC4yNzY0NTM3LDQuMTAwMzI0NzEgMTguMjc2NDUzNyw5LjEzOTI3Nzk2IEMxOC4yNzY0NTM3LDExLjIyOTgyMTEgMTcuNTcxMDE2OSwxMy4xNTg0NDM0IDE2LjM4NTYzMTMsMTQuNjk5NjY5NiBMMjMuNjUwODg4MSwyMS45NjUyMjY2IEMyNC4xMTYzNzA2LDIyLjQzMDcwOTIgMjQuMTE2MzcwNiwyMy4xODU0MDU1IDIzLjY1MDg4ODEsMjMuNjUwODg4MSBDMjMuMTg1NDA1NSwyNC4xMTYzNzA2IDIyLjQzMDcwOTIsMjQuMTE2MzcwNiAyMS45NjUyMjY2LDIzLjY1MDg4ODEgTDE0LjY5OTgxMzMsMTYuMzg1NDcxMyBDMTMuMTU4NDQwNSwxNy41NzA5NTA5IDExLjIyOTU3MzgsMTguMjc2NDUzNyA5LjEzODc1MjQ1LDE4LjI3NjQ1MzcgQzQuMDk5NTA5MzgsMTguMjc2NDUzNyAtMy43MzAzNDkzNmUtMTQsMTQuMTc4MjMxMiAtMy43MzAzNDkzNmUtMTQsOS4xMzkyNzc5NiBDLTMuNzMwMzQ5MzZlLTE0LDQuMTAwMzI0NzEgNC4wOTk1MDkzOCwyLjQzMzYwODg3ZS0xMyA5LjEzODc1MjQ1LDIuNDMzNjA4ODdlLTEzIFoiIGlkPSJwYXRoLTEiPjwvcGF0aD4gICAgPC9kZWZzPiAgICA8ZyBpZD0iU2VhcmNoIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4gICAgICAgIDxtYXNrIGlkPSJtYXNrLTIiIGZpbGw9IndoaXRlIj4gICAgICAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICAgICAgPC9tYXNrPiAgICAgICAgPHVzZSBpZD0iSWNvbnMvQWN0aW9ucy9TZWFyY2giIGZpbGw9IiM0OTRBNTIiIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICA8L2c+PC9zdmc+);
    background-position: center right 15px;
    background-repeat: no-repeat;
  
  height: 45px;
  padding: 0 0.7rem;
}




.header__search .hs-search-field--open .hs-search-field__input {
  border-bottom: none;
  border-radius: 6px 6px 0 0;
  max-width: 100%;
}

.header__search .hs-search-field--open .hs-search-field__suggestions {
  background-color: #FFF;
  border: 2px solid #D1D6DC;
  border-radius: 0 0 6px 6px;
  border-top-width: 1px;
  position: absolute;
  width: 100%;
  z-index: 10;
}

.header__search .hs-search-field__suggestions li {
  border-top: 1px solid #D1D6DC;
  font-size: 0.875rem;
}

.header__search .hs-search-field__suggestions li a {
  color: #494A52;
  padding: 0.35rem 0.7rem;
  text-decoration: none;
  transition: background-color 0.3s;
}

.header__search .hs-search-field__suggestions #results-for {
  display: none;
}

@media (min-width: 767px) {
  .header__search form {
    align-items: center;
    display: flex;
    flex-direction: row;
  }

  .header__search label {
    margin: 0 1rem 0 0;
  }

  .header__search .hs-search-field__input {
    width: auto;
  }
}

@media (max-width: 767px) {
  .header__search {
    border-top: 2px solid #CED4DB;
    order: 1;
    padding: 1.05rem;
  }
}

/* Language switcher */

.header__language-switcher {
  cursor: pointer;
  padding-right: 1.4rem;
}

.header__language-switcher .lang_switcher_class {
  position: static;
}

.header__language-switcher .lang_list_class {
  border: 2px solid;
  border-radius: 3px;
  box-shadow: 0 2px 9px 0 rgba(0, 0, 0, 0.2);
  display: block;
  left: calc(100% - 24px);
  opacity: 0;
  min-width: 100px;
  padding-top: 0;
  text-align: left;
  top: 100%;
  transition: opacity 0.3s;
  visibility: hidden;
}

.header__language-switcher:hover .lang_list_class,
.header__language-switcher:focus .lang_list_class {
  opacity: 1;
  transition: opacity 0.3s;
  visibility: visible;
}

.header__language-switcher .lang_list_class:before {
  left: 70%;
  top: -25px;
}

.header__language-switcher .lang_list_class:after {
  left: 70%;
  top: -22px;
}

.header__language-switcher .lang_list_class.first-active::after {
  top: -22px;
  transition: 0.3s;
}

.header__language-switcher .lang_list_class li {
  border: none;
  font-size: 18px;
  padding: 0.35rem 0.7rem;
}

.header__language-switcher .lang_list_class li:first-child {
  border-radius: 6px 6px 0 0;
  border-top: none;
}

.header__language-switcher .lang_list_class li:last-child {
  border-bottom: none;
  border-radius: 0 0 6px 6px;
}

.header__language-switcher .lang_list_class li:hover {
  transition: background-color 0.3s;
}

.header__language-switcher--label {
  display: flex;
  position: relative;
}

.header__language-switcher--label-current {
  align-items: center;
  display: flex;
  font-size: 0.75rem;
  margin-bottom: 0.175rem;
  margin-left: 0.7rem;
}

.header__language-switcher--label-current:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 6px solid #494A52;
  content: "";
  display: block;
  height: 0px;
  margin-left: 0.7rem;
  margin-top: 0.175rem;
  width: 0px;
}

@media (max-width: 767px) {
  .header__language-switcher {
    border-top: 2px solid #CED4DB;
    padding-left: 1.05rem;
    padding-right: 0;
  }

  .header__language-switcher .lang_list_class {
    border: none;
    box-shadow: unset;
    display: block;
    left: 30px;
    opacity: 1;
    padding: 0 1.05rem;
    top: 0;
    visibility: visible;
  }

  .header__language-switcher .lang_list_class li {
    background-color: inherit;
    font-size: 0.917rem;
  }

  .header__language-switcher--label-current {
    display: none;
  }

  .header__language-switcher .globe_class {
    background-image: none;
  }

  .header__language-switcher .lang_list_class li:hover{
    background-color: inherit;
  }

  .header__language-switcher .lang_list_class:before,
  .header__language-switcher .lang_list_class:after {
    content: none;
  }
}

/* Navigation */

#nav-toggle {
  display: none;
}

/* Mobile toggles */

@media (max-width: 767px) {
  .header__navigation,
  .header__search,
  .header__language-switcher {
    display: none;
    width: 100%;
  }

  .header__navigation.open,
  .header__search.open,
  .header__language-switcher.open {
    background-color: #F8FAFC;
    display: block;
    left: 0;
    min-height: calc(100vh - 115px);
    position: absolute;
    right: 0;
    top: 75px;
    z-index: 2;
  }

  .header__navigation--toggle,
  .header__search--toggle,
  .header__language-switcher--toggle,
  .header__close--toggle {
    cursor: pointer;
    margin: 0 5vw;
    position: relative;
  }

  .header__navigation--toggle.hide,
  .header__search--toggle.hide,
  .header__language-switcher--toggle.hide {
    display: none;
  }

  .header__navigation--toggle.open,
  .header__search--toggle.open,
  .header__language-switcher--toggle.open {
    display: block;
    margin-left: 0;
    margin-right: auto;
  }

  .header__navigation--toggle:after,
  .header__search--toggle:after,
  .header__language-switcher--toggle:after {
    display: none;
    font-size: 1.083rem;
    font-weight: 600;
    position: absolute;
    left: 40px;
    text-transform: uppercase;
    top: -10px;
  }

  .header__navigation--toggle.open:after,
  .header__search--toggle.open:after,
  .header__language-switcher--toggle.open:after {
    display: block;
    word-break: normal;
  }

  .header__navigation--toggle {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAxOSIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5oYW1idXJnZXI8L3RpdGxlPiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4gICAgPGcgaWQ9ImhhbWJ1cmdlciIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+ICAgICAgICA8ZyBpZD0iR3JvdXAiIHN0cm9rZT0iIzQ5NEE1MiIgc3Ryb2tlLXdpZHRoPSIzIj4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlIiB4PSIxLjUiIHk9IjEuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlLUNvcHktNCIgeD0iMS41IiB5PSI5LjUiIHdpZHRoPSIyMSIgaGVpZ2h0PSIxIiByeD0iMC41Ij48L3JlY3Q+ICAgICAgICAgICAgPHJlY3QgaWQ9IlJlY3RhbmdsZS1Db3B5LTUiIHg9IjEuNSIgeT0iMTcuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgIDwvZz4gICAgPC9nPjwvc3ZnPg==);
    background-size: cover;
    height: 25px;
    width: 25px;
  }

  .header__navigation--toggle:after {
    content: "Menu";
  }

  .header__language-switcher--toggle {
    background-image: url(//static.hsappstatic.net/cos-LanguageSwitcher/static-1.1/img/globe.png);
    background-size: cover;
    height: 25px;
    width: 25px;
  }

  .header__language-switcher--toggle:after {
    content: "Language";
  }

  .header__search--toggle {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAyNCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5TZWFyY2g8L3RpdGxlPiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4gICAgPGRlZnM+ICAgICAgICA8cGF0aCBkPSJNOS4xMzg2MTUzNCwxNS44OTI1Njg1IEM1LjQxMzk1NzQyLDE1Ljg5MjU2ODUgMi4zODM4ODUyNywxMi44NjM0NDc1IDIuMzgzODg1MjcsOS4xMzkwMDM3NiBDMi4zODM4ODUyNyw1LjQxNDU2MDA1IDUuNDEzOTU3NDIsMi4zODM4ODUyNyA5LjEzODYxNTM0LDIuMzgzODg1MjcgQzEyLjg2MzI3MzMsMi4zODM4ODUyNyAxNS44OTI1Njg1LDUuNDE0NTYwMDUgMTUuODkyNTY4NSw5LjEzOTAwMzc2IEMxNS44OTI1Njg1LDEyLjg2MzQ0NzUgMTIuODYzMjczMywxNS44OTI1Njg1IDkuMTM4NjE1MzQsMTUuODkyNTY4NSBNOS4xMzg3NTI0NSwyLjQzMzYwODg3ZS0xMyBDMTQuMTc3OTk1NSwyLjQzMzYwODg3ZS0xMyAxOC4yNzY0NTM3LDQuMTAwMzI0NzEgMTguMjc2NDUzNyw5LjEzOTI3Nzk2IEMxOC4yNzY0NTM3LDExLjIyOTgyMTEgMTcuNTcxMDE2OSwxMy4xNTg0NDM0IDE2LjM4NTYzMTMsMTQuNjk5NjY5NiBMMjMuNjUwODg4MSwyMS45NjUyMjY2IEMyNC4xMTYzNzA2LDIyLjQzMDcwOTIgMjQuMTE2MzcwNiwyMy4xODU0MDU1IDIzLjY1MDg4ODEsMjMuNjUwODg4MSBDMjMuMTg1NDA1NSwyNC4xMTYzNzA2IDIyLjQzMDcwOTIsMjQuMTE2MzcwNiAyMS45NjUyMjY2LDIzLjY1MDg4ODEgTDE0LjY5OTgxMzMsMTYuMzg1NDcxMyBDMTMuMTU4NDQwNSwxNy41NzA5NTA5IDExLjIyOTU3MzgsMTguMjc2NDUzNyA5LjEzODc1MjQ1LDE4LjI3NjQ1MzcgQzQuMDk5NTA5MzgsMTguMjc2NDUzNyAtMy43MzAzNDkzNmUtMTQsMTQuMTc4MjMxMiAtMy43MzAzNDkzNmUtMTQsOS4xMzkyNzc5NiBDLTMuNzMwMzQ5MzZlLTE0LDQuMTAwMzI0NzEgNC4wOTk1MDkzOCwyLjQzMzYwODg3ZS0xMyA5LjEzODc1MjQ1LDIuNDMzNjA4ODdlLTEzIFoiIGlkPSJwYXRoLTEiPjwvcGF0aD4gICAgPC9kZWZzPiAgICA8ZyBpZD0iU2VhcmNoIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4gICAgICAgIDxtYXNrIGlkPSJtYXNrLTIiIGZpbGw9IndoaXRlIj4gICAgICAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICAgICAgPC9tYXNrPiAgICAgICAgPHVzZSBpZD0iSWNvbnMvQWN0aW9ucy9TZWFyY2giIGZpbGw9IiM0OTRBNTIiIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICA8L2c+PC9zdmc+);
    background-size: cover;
    height: 25px;
    width: 25px;
  }

  .header__search--toggle:after {
    content: "Search";
  }

  .header__close--toggle {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjE5cHgiIHZpZXdCb3g9IjAgMCAyNCAxOSIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5jbG9zZTwvdGl0bGU+ICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPiAgICA8ZyBpZD0iY2xvc2UiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPiAgICAgICAgPGcgaWQ9Ikdyb3VwIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgyLjAwMDAwMCwgLTEuMDAwMDAwKSIgc3Ryb2tlPSIjNDk0QTUyIiBzdHJva2Utd2lkdGg9IjMiPiAgICAgICAgICAgIDxyZWN0IGlkPSJSZWN0YW5nbGUiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDEwLjAwMDAwMCwgMTAuNTAwMDAwKSByb3RhdGUoLTQ1LjAwMDAwMCkgdHJhbnNsYXRlKC0xMC4wMDAwMDAsIC0xMC41MDAwMDApICIgeD0iLTAuNSIgeT0iMTAuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlLUNvcHktNSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTAuMDAwMDAwLCAxMC41MDAwMDApIHJvdGF0ZSg0NS4wMDAwMDApIHRyYW5zbGF0ZSgtMTAuMDAwMDAwLCAtMTAuNTAwMDAwKSAiIHg9Ii0wLjUiIHk9IjEwLjUiIHdpZHRoPSIyMSIgaGVpZ2h0PSIxIiByeD0iMC41Ij48L3JlY3Q+ICAgICAgICA8L2c+ICAgIDwvZz48L3N2Zz4=);
    background-repeat: no-repeat;
    background-size: 110%;
    display: none;
    height: 25px;
    margin-right: 0;
    width: 25px;
  }

  .header__close--toggle.show {
    display: block;
  }
}
/* Menu and simple menu */

.hs-menu-wrapper ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding-left: 0;
}

/* Horizontal menu */

.hs-menu-wrapper.hs-menu-flow-horizontal .hs-menu-children-wrapper {
  flex-direction: column;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-horizontal ul {
    flex-direction: column;
  }
}

/* Vertical menu */

.hs-menu-wrapper.hs-menu-flow-vertical ul {
  flex-direction: column;
}

/* Flyouts */

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts ul {
  display: inline-flex;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-vertical ul {
    display: flex;
  }
}

.hs-menu-wrapper.flyouts .hs-item-has-children {
  position: relative;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper {
  left: -9999px;
  opacity: 0;
  position: absolute;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper a {
  display: block;
  white-space: nowrap;
}

.hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 0;
  opacity: 1;
  top: 100%;
}

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 100%;
  opacity: 1;
  top: 0;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.flyouts .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
    left: 0;
    opacity: 1;
    position: relative;
    top: auto;
  }
}

/* CTA, logo, and rich text images */

.hs_cos_wrapper_type_cta img,
.hs_cos_wrapper_type_logo img,
.hs_cos_wrapper_type_rich_text img {
  height: auto;
  max-width: 100%;
}
/* For content that needs to be visually hidden but stay visible for screenreaders */

.show-for-sr {
  border: 0 !important;
  clip: rect(0, 0, 0, 0) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
}

@media (max-width: 767px) {
  .show-for-sr--mobile {
    border: 0 !important;
    clip: rect(0, 0, 0, 0) !important;
    height: 1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    white-space: nowrap !important;
    width: 1px !important;
  }
}

/* Root -> Variables */
:root {
	--rood: #DA0E2B;
	--rood-filter: brightness(0) saturate(100%) invert(16%) sepia(97%) saturate(4563%) hue-rotate(344deg) brightness(85%) contrast(101%);
	--geel: #FABA33;
	--geel-bg: #F3E6D7;
	--beige: #22222233;
	--zwart: #222222;
	--grijs: #EFEDEA;
	--groen: #A5AC86;
	--container-breedte: 1296px;
	--padding-l: 40px;
	--padding-s: 24px;
	--font: "Hurme Geometric Sans No.3", sans-serif;
	--font-alt: "Cooper Lt BT W08 Regular", serif;
}
/* 	--rood */
/* 	--rood-filter */
/* 	--geel */
/* 	--geel-bg */
/* 	--beige */
/* 	--zwart */
/* 	--grijs */
/* 	--container-breedte */
/* 	--padding-l */
/* 	--padding-s */
/* 	--font */
/* 	--font-alt */

@media only screen and (max-width: 576px) {
	:root {
		--padding-s: 16px;
	}
}


/* Root -> Libraries */
.slick-slider{position:relative;display:block;box-sizing:border-box;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-webkit-touch-callout:none;-khtml-user-select:none;-ms-touch-action:pan-y;touch-action:pan-y;-webkit-tap-highlight-color:transparent}.slick-list{position:relative;display:block;overflow:hidden;margin:0;padding:0}.slick-list:focus{outline:0}.slick-list.dragging{cursor:pointer;cursor:hand}.slick-slider .slick-list,.slick-slider .slick-track{-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0);-o-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.slick-track{position:relative;top:0;left:0;display:block;margin-left:auto;margin-right:auto}.slick-track:after,.slick-track:before{display:table;content:''}.slick-track:after{clear:both}.slick-loading .slick-track{visibility:hidden}.slick-slide{display:none;float:left;height:100%;min-height:1px}[dir=rtl] .slick-slide{float:right}.slick-slide img{display:block}.slick-slide.slick-loading img{display:none}.slick-slide.dragging img{pointer-events:none}.slick-initialized .slick-slide{display:block}.slick-loading .slick-slide{visibility:hidden}.slick-vertical .slick-slide{display:block;height:auto;border:1px solid transparent}.slick-arrow.slick-hidden{display:none}
.tg-blob{pointer-events:none;animation:blob-turn var(--time, 30s) linear infinite;fill:var(--fill, #7600f8);position:relative;transform-origin:center}.tg-blob svg{animation:blob-skew calc( var(--time, 30s) * 0.5 ) linear 0s infinite;transform-origin:center}.tg-blob svg path{animation:blob-scale calc( var(--time, 30s) * 0.5 ) ease-in-out 0s infinite;transform-origin:center}@keyframes blob-turn{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}@keyframes blob-skew{0%{transform:skewY(0deg)}13%{transform:skewY( calc( (1.8deg) * var(--amount, 2)) )}18%{transform:skewY( calc( (2.2deg) * var(--amount, 2)) )}24%{transform:skewY( calc( (2.48deg) * var(--amount, 2)) )}25%{transform:skewY( calc( (2.5deg) * var(--amount, 2)) )}26%{transform:skewY( calc( (2.48deg) * var(--amount, 2)) )}32%{transform:skewY( calc( (2.2deg) * var(--amount, 2)) )}37%{transform:skewY( calc( (1.8deg) * var(--amount, 2)) )}50%{transform:skewY(0deg)}63%{transform:skewY( calc( (-1.8deg) * var(--amount, 2)) )}68%{transform:skewY( calc( (-2.2deg) * var(--amount, 2)) )}74%{transform:skewY( calc( (-2.48deg) * var(--amount, 2)) )}75%{transform:skewY( calc( (-2.5deg) * var(--amount, 2)) )}76%{transform:skewY( calc( (-2.48deg) * var(--amount, 2)) )}82%{transform:skewY( calc( (-2.2deg) * var(--amount, 2)) )}87%{transform:skewY( calc( (-1.8deg) * var(--amount, 2)) )}100%{transform:skewY(0deg)}}@keyframes blob-scale{0%{transform:scaleX(.9) scaleY(1)}25%{transform:scaleX(.9) scaleY(.9)}50%{transform:scaleX(1) scaleY(.9)}75%{transform:scaleX(.9) scaleY(.9)}100%{transform:scaleX(.9) scaleY(1)}}
.rellax{pointer-events: none;}
.pswp{--pswp-bg:#000;--pswp-placeholder-bg:#222;--pswp-root-z-index:100000;--pswp-preloader-color:rgba(79, 79, 79, 0.4);--pswp-preloader-color-secondary:rgba(255, 255, 255, 0.9);--pswp-icon-color:#fff;--pswp-icon-color-secondary:#4f4f4f;--pswp-icon-stroke-color:#4f4f4f;--pswp-icon-stroke-width:2px;--pswp-error-text-color:var(--pswp-icon-color)}.pswp{position:fixed;top:0;left:0;width:100%;height:100%;z-index:var(--pswp-root-z-index);display:none;touch-action:none;outline:0;opacity:.003;contain:layout style size;-webkit-tap-highlight-color:transparent}.pswp:focus{outline:0}.pswp *{box-sizing:border-box}.pswp img{max-width:none}.pswp--open{display:block}.pswp,.pswp__bg{transform:translateZ(0);will-change:opacity}.pswp__bg{opacity:.005;background:var(--pswp-bg)}.pswp,.pswp__scroll-wrap{overflow:hidden}.pswp__bg,.pswp__container,.pswp__content,.pswp__img,.pswp__item,.pswp__scroll-wrap,.pswp__zoom-wrap{position:absolute;top:0;left:0;width:100%;height:100%}.pswp__img,.pswp__zoom-wrap{width:auto;height:auto}.pswp--click-to-zoom.pswp--zoom-allowed .pswp__img{cursor:-webkit-zoom-in;cursor:-moz-zoom-in;cursor:zoom-in}.pswp--click-to-zoom.pswp--zoomed-in .pswp__img{cursor:move;cursor:-webkit-grab;cursor:-moz-grab;cursor:grab}.pswp--click-to-zoom.pswp--zoomed-in .pswp__img:active{cursor:-webkit-grabbing;cursor:-moz-grabbing;cursor:grabbing}.pswp--no-mouse-drag.pswp--zoomed-in .pswp__img,.pswp--no-mouse-drag.pswp--zoomed-in .pswp__img:active,.pswp__img{cursor:-webkit-zoom-out;cursor:-moz-zoom-out;cursor:zoom-out}.pswp__button,.pswp__container,.pswp__counter,.pswp__img{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.pswp__item{z-index:1;overflow:hidden}.pswp__hidden{display:none!important}.pswp__content{pointer-events:none}.pswp__content>*{pointer-events:auto}.pswp__error-msg-container{display:grid}.pswp__error-msg{margin:auto;font-size:1em;line-height:1;color:var(--pswp-error-text-color)}.pswp .pswp__hide-on-close{opacity:.005;will-change:opacity;transition:opacity var(--pswp-transition-duration) cubic-bezier(.4,0,.22,1);z-index:10;pointer-events:none}.pswp--ui-visible .pswp__hide-on-close{opacity:1;pointer-events:auto}.pswp__button{position:relative;display:block;width:50px;height:60px;padding:0;margin:0;overflow:hidden;cursor:pointer;background:0 0;border:0;box-shadow:none;opacity:.85;-webkit-appearance:none;-webkit-touch-callout:none}.pswp__button:active,.pswp__button:focus,.pswp__button:hover{transition:none;padding:0;background:0 0;border:0;box-shadow:none;opacity:1}.pswp__button:disabled{opacity:.3;cursor:auto}.pswp__icn{fill:var(--pswp-icon-color);color:var(--pswp-icon-color-secondary)}.pswp__icn{position:absolute;top:14px;left:9px;width:32px;height:32px;overflow:hidden;pointer-events:none}.pswp__icn-shadow{stroke:var(--pswp-icon-stroke-color);stroke-width:var(--pswp-icon-stroke-width);fill:none}.pswp__icn:focus{outline:0}.pswp__img--with-bg,div.pswp__img--placeholder{background:var(--pswp-placeholder-bg)}.pswp__top-bar{position:absolute;left:0;top:0;width:100%;height:60px;display:flex;flex-direction:row;justify-content:flex-end;z-index:10;pointer-events:none!important}.pswp__top-bar>*{pointer-events:auto;will-change:opacity}.pswp__button--close{margin-right:6px}.pswp__button--arrow{position:absolute;top:0;width:75px;height:100px;top:50%;margin-top:-50px}.pswp__button--arrow:disabled{display:none;cursor:default}.pswp__button--arrow .pswp__icn{top:50%;margin-top:-30px;width:60px;height:60px;background:0 0;border-radius:0}.pswp--one-slide .pswp__button--arrow{display:none}.pswp--touch .pswp__button--arrow{visibility:hidden}.pswp--has_mouse .pswp__button--arrow{visibility:visible}.pswp__button--arrow--prev{right:auto;left:0}.pswp__button--arrow--next{right:0}.pswp__button--arrow--next .pswp__icn{left:auto;right:14px;transform:scale(-1,1)}.pswp__button--zoom{display:none}.pswp--zoom-allowed .pswp__button--zoom{display:block}.pswp--zoomed-in .pswp__zoom-icn-bar-v{display:none}.pswp__preloader{position:relative;overflow:hidden;width:50px;height:60px;margin-right:auto}.pswp__preloader .pswp__icn{opacity:0;transition:opacity .2s linear;animation:pswp-clockwise .6s linear infinite}.pswp__preloader--active .pswp__icn{opacity:.85}@keyframes pswp-clockwise{0%{transform:rotate(0)}100%{transform:rotate(360deg)}}.pswp__counter{height:30px;margin-top:15px;margin-inline-start:20px;font-size:14px;line-height:30px;color:var(--pswp-icon-color);text-shadow:1px 1px 3px var(--pswp-icon-color-secondary);opacity:.85}.pswp--one-slide .pswp__counter{display:none}


/* Root -> Reset */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	border: 0;
	font-family: inherit;
	font-display: swap;
	font-size: 100%;
	font-style: inherit;
	font-weight: inherit;
	margin: 0;
	outline: 0;
	padding: 0;
	vertical-align: baseline;
}

body {
	background: #ffffff;
	line-height: 1;
}
ol, ul {
	list-style: none;
}
table {/* tables still need 'cellspacing="0"' in the markup */
	border-collapse: separate;
	border-spacing: 0;
}
caption, th, td {
	font-weight: normal;
	text-align: left;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: "";
}
blockquote, q {
	quotes: "" "";
}
a img {
	border: 0;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
.clearfix {
	*zoom: 1;
	clear:both;
}
.clearfix:before, .clearfix:after {
	display: table;
	content: "";
}
.clearfix:after {
	clear: both;
}
audio, canvas, video {
	display: inline-block;
	*display: inline;
	*zoom: 1;
}
audio:not([controls]) {
	display: none;
}
html {
	font-size: 100%;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}
a {
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
a:hover, a:active {
	outline: 0;
}
sub, sup {
	position: relative;
	font-size: 75%;
	line-height: 0;
	vertical-align: baseline;
}
sup {
	top: -0.5em;
}
sub {
	bottom: -0.25em;
}
img {
	max-width: 100%;
	height: auto;
	border: 0;
	-ms-interpolation-mode: bicubic;
	image-rendering: optimizeQuality;
}
button,
input,
textarea {
	margin: 0;
	font-size: 100%;
	vertical-align: middle;
	border-radius: 0;
}
select {
	margin: 0;
	font-size: 100%;
	vertical-align: middle;
	border-radius: 0;
}
button, input {
	*overflow: visible;
	line-height: normal;
}
button::-moz-focus-inner, input::-moz-focus-inner {
	padding: 0;
	border: 0;
}
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	cursor: pointer;
	-webkit-appearance: none;
}
input[type="search"] {
	-webkit-appearance: textfield;
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
}
input[type="search"]::-webkit-search-decoration, input[type="search"]::-webkit-search-cancel-button {
	-webkit-appearance: none;
}
textarea {
	overflow: auto;
	vertical-align: top;
}
figure {
	padding: 0;
	margin: 0;
}

/* Root -> Grid */
html, body {
	overflow-x: clip !important;
}
.sowrapper,
.main, 
#main-content {
	max-width: calc(var(--container-breedte) + 32px);
	margin: 0 auto;
	clear: both;
}
#main-content > .body-container {
	margin-bottom: var(--padding-l);
}
.dnd-section .dnd-column {
	padding: 0;
}
@media (max-width: 767px) {
	.dnd-section .dnd-column {
		padding: 0;
	}
}
.body-container > .row-fluid-wrapper > .row-fluid {
	padding: 0 16px;
}
.main {
	padding-left: 16px;
	padding-right: 16px;
}
.section {
	clear: both;
	display: flex;
	flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	margin-left: -16px; /* column gutter */
	margin-right: -16px;
}
.section:after {
	content: '';
	display: table;
	clear: both;
}
[class^="fc"], [class*=" fc"] {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	margin: 0 16px 30px 16px; /* column gutter */
	border: none;
	float: left;
}
[class^="fc"]:last-child, [class*=" fc"]:last-child {
	margin-right: 0;
}
.fc20 {
	width: calc( 20% - 32px );
}
.fc20:nth-child(5n+1) {
	clear: left;
}
.fc25 {
	width: calc( 25% - 32px );
}
.fc25:nth-child(4n+1) {
	clear: left;
}
.fc33 {
	width: calc( 33.3333% - 32px );
}
.fc33:nth-child(3n+1) {
	clear: left;
}
.fc40 {
	width: calc( 40% - 32px );
}
.fc50 {
	width: calc( 50% - 32px );
}
.fc50:nth-child(2n+1) {
	clear: left;
}
.fc60 {
	width: calc( 60% - 32px );
}
.fc66 {
	width: calc( 66.6666% - 32px );
}
.fc75 {
	width: calc( 75% - 32px );
}

/* Root -> Fonts */
@font-face {
	font-family: 'Hurme Geometric Sans No.3';
	src: 	local('Hurme Geometric Sans No.3 Regular'), local('Hurme-Geometric-Sans-No.3-Regular'),
			url('https://www.twynstragudde.nl/hubfs/tg2023/HurmeGeometricSans3-Regular.woff2') format('woff2'),
			url('https://www.twynstragudde.nl/hubfs/tg2023/HurmeGeometricSans3-Regular.woff') format('woff');
	font-weight: 400;
	font-style: normal;
}

@font-face {
	font-family: 'Hurme Geometric Sans No.3';
	src: 	local('Hurme Geometric Sans No.3 SemiBold'), local('Hurme-Geometric-Sans-No.3-SemiBold'),
			url('https://www.twynstragudde.nl/hubfs/tg2023/HurmeGeometricSans3-SemiBold.woff2') format('woff2'),
			url('https://www.twynstragudde.nl/hubfs/tg2023/HurmeGeometricSans3-SemiBold.woff') format('woff');
	font-weight: 600;
	font-style: normal;
}

@font-face {
	font-family: "Cooper Lt BT W08 Regular";
	src: 	url("https://www.twynstragudde.nl/hubfs/tg2023/Cooper%20Lt%20BT.eot");
	src: 	url("https://www.twynstragudde.nl/hubfs/tg2023/Cooper%20Lt%20BT.eot?#iefix") format("embedded-opentype"),
			url("https://www.twynstragudde.nl/hubfs/tg2023/Cooper%20Lt%20BT.woff2") format("woff2"),
			url("https://www.twynstragudde.nl/hubfs/tg2023/Cooper%20Lt%20BT.woff") format("woff"),
			url("https://www.twynstragudde.nl/hubfs/tg2023/Cooper%20Lt%20BT.ttf") format("truetype"),
			url("https://www.twynstragudde.nl/hubfs/tg2023/Cooper%20Lt%20BT.svg#Cooper%20Lt%20BT%20W08%20Regular") format("svg");
}


body, html {
	overflow-y: unset !important;
	overflow-x: clip !important;
}


/* Algemeen -> Text styles */
body {
	font-size: 18px;
	line-height: 32px;
	color: var(--zwart);
	font-family: var(--font);
	font-weight: 400;
	font-style: normal;
}

p {
	margin: 0 0 30px 0;
	font-size: 18px;
}

@media (max-width: 676px) {
	body .dnd-module > div.hs_cos_wrapper.widget-type-text[id^="hs_cos_wrapper"] > .hs_cos_wrapper_type_text {
		font-size: 18px !important;
		line-height: 32px !important;
	}
}

.tg-body ul:not([class]) li:not([class]) a,
p a:-webkit-any-link {
	color: var(--rood);
	cursor: pointer;
	text-decoration: none;
}

.tg-body ul:not([class]) li:not([class]) a:hover,
p a:-webkit-any-link:hover {
	text-decoration: underline;
}

ul:not([class]) li:not([class]) {
	color: var(--zwart);
	font-size: 18px;
	line-height: 24px;
	margin: 8px 0;
	font-weight: normal;
	padding-left: 20px;
}

:not(.hs-tools-menu) ul:not([class]) li:not([class]):before {
	content: "";
	background: var(--zwart);
	color: #fff;
	border-radius: 100%;
	display: inline-block;
	height: 6px;
	width: 6px;
	vertical-align: middle;
	line-height: 24px;
	margin-left: -18px;
	margin-right: 8px;
	margin-top: -4px;
}

h1, h2, h3, h4, h5, h6 {
	font-weight: 600;
}

h1 {
	font-size: 75px;
	line-height: 85px;
}

h2 {
	font-size: 44px;
	line-height: 50px;
	margin-bottom: 32px;
}

h3 {
	font-size: 22px;
	line-height: 30px;
	margin-bottom: 16px;
}

h4 {
	font-size: 22px;
	line-height: 30px;
	margin-bottom: 16px;
}

h5 {
	font-size: 18px;
	line-height: 24px;
	margin-bottom: 12px;
}

h6 {
	font-size: 14px;
	line-height: 24px;
	margin-bottom: 6px;
	letter-spacing: 0.28px;
}

@media (max-width: 1400px) {
	h1 {
		font-size: 48px;
		line-height: 56px;
	}
}

@media (max-width: 890px) {
	p {
		font-size: 18px;
		line-height: 28px;
	}
	h1 {
		font-size: 40px;
		line-height: 48px;
	}
	h2 {
		font-size: 32px;
		line-height: 38px;
	}
	h3 {
		font-size: 22px;
		line-height: 34px;
	}
}

@media (max-width: 676px) {
	p {
		font-size: 16px;
		line-height: 26px;
	}
}

strong {
	font-weight: bold;
}

/* Algemeen -> Knoppen */
.hubcta,
.interactive-button-wrapper .interactive-button,
.button {
	position: relative;
	background-color: var(--rood);
	color: white;
	width: auto;
	border-radius: 20px;
	padding: 11px 32px 11px 32px;
	font-size: 11px;
	line-height: 13px;
	font-weight: 600;
	letter-spacing: 1.21px;
	text-transform: uppercase;
	text-decoration: none;
	overflow: hidden;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='299.133' height='139.689' viewBox='0 0 299.133 139.689'%3E%3Cpath id='Path_517' data-name='Path 517' d='M-9515-5914.492v126.438h299.133v-126.438c-39.22,9.287-58.2-13.591-98.1-13.248s-63.735,13.9-90.809,13.248-48.275-11.314-69.562-10.557S-9515-5914.492-9515-5914.492Z' transform='translate(9515 5927.744)' fill='rgba(29, 29, 29, 0.08)'/%3E%3C/svg%3E%0A");
	background-repeat: repeat-x;
	background-position: 0 -40%;
	transition: .8s ease;
}

body .hubcta:hover,
body .interactive-button-wrapper .interactive-button,
body .interactive-button:hover,
body .hubcta {
	border: 0 !important;
	background-color: var(--rood) !important;
	color: white !important;
	padding: 11px 32px 11px 32px;
	line-height: 13px !important;
	box-sizing: border-box;
	display: initial;
	letter-spacing: 1.21px;
	font-weight: 600;
	text-decoration: none !important;
}

body .hubcta span,
.button span {
	z-index: 2;
	position: relative;
	font-size: inherit !important;
}
body .hubcta span {
	font-size: 11px !important;
}

body .hubcta:hover,
.button:hover {
	font-size: 11px !important;
	background-position: center;
}

@media (max-width: 767px) {
	body .hubcta,
	body .hubcta:hover,
	.button {
		font-size: 10px;
		padding: 10px 24px;
		background-position: 0 -30%;
	}
}

.button.wit {
	background-color: #FFFF;
	color: var(--rood);
}
.button.groen {
	background-color: var(--groen);
	color: #fff;
}


/* Algemeen -> Knoppen -> Tekstknop */
.textbtn {
	font-weight: bold;
	color: var(--zwart);
	text-decoration: none;
	position: relative;
	padding-left: 15px;
}

.textbtn:before {
	content: ''; 
	background: var(--rood); 
	width: 5px; 
	height: 100%; 
	position: absolute;
	left: 0;
	top: 0;
	border-radius: 3px;
}

.textbtn:hover {
	text-decoration: underline;
	color: var(--rood);
}

@media (max-width: 1540px) {
	.textbtn {
		font-size: 15px;
		line-height: 18px;
		padding-left: 12px;
	}
	.textbtn:before {
		width: 4px;
	}
}

/* Algemeen -> Header */
.header {
	position: fixed;
	width: 100vw;
	height: auto;
	background-color: white;
	z-index: 100;
	color: var(--rood);
	box-sizing: border-box;
}

.header .container {
	max-width: calc(var(--container-breedte) + 32px);
	width: 100%;	
	margin: 0 auto;
	display: flex;
	align-items: center;
	position: relative;
	padding: 0 16px;
}

.header .container .header_links {
	flex: 1 0 calc(50% - 130px);
}
.header .container .header_midden {
	flex: 1 0 260px;
}
.header .container .header_rechts {
	flex: 1 0 calc(50% - 130px);
	justify-content: flex-end;
	align-items: center;
}

.header .icon-menu {
	display: block;
	width: 21px;
	height: 14px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='23.094' height='13.884' viewBox='0 0 23.094 13.884'%3E%3Cg id='Group_11' data-name='Group 11' transform='translate(1 1)'%3E%3Cline id='Line_22' data-name='Line 22' x2='21.094' transform='translate(0 5.942)' fill='none' stroke='%23fff' stroke-linecap='round' stroke-width='2'/%3E%3Cline id='Line_23' data-name='Line 23' x2='21.094' fill='none' stroke='%23fff' stroke-linecap='round' stroke-width='2'/%3E%3Cline id='Line_24' data-name='Line 24' x2='21.094' transform='translate(0 11.884)' fill='none' stroke='%23fff' stroke-linecap='round' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E%0A");
	background-repeat: no-repeat;
	filter: var(--rood-filter);
	transition: 0s all;
}

.header .header_midden img {
	margin-bottom: -8px;
}

/* Algemeen -> Header -> logo TG 60 jaar toevoeging */
.header .header_midden #hs_cos_wrapper_site_logo_2 img {
	object-position: -2px center !important;
}
@media (max-width: 500px) {
	.header .header_midden img {
		aspect-ratio: 5/6;
		object-fit: cover;
		object-position: left center;
		height: 74px;
		width: 56px !important;
		transform: translateX(-10px);
	}
}

.header .header_rechts a.button.werken_bij_b {
	position: absolute;
	right: 60px;
	top: 18px;
	height: 32px;
	padding: 8px 32px;
}

body:not(.backdrop) .header:not(.scrolled) .header_rechts a.button.werken_bij_b {
	background-color: transparent;
	border: 2px solid white;
}

body.backdrop .header_rechts a.button.werken_bij_b:not(.active),
body:not(.backdrop) .header.scrolled .header_rechts a.button.werken_bij_b {
	background-color: transparent;
	border: 1.5px solid var(--rood);
	color: var(--rood);
}

.header_rechts a.button.werken_bij_b.active {
	border: 2px solid var(--rood);
	background-color: var(--rood);
	color: white;
}

.header .header_rechts .hs-search-field,
.header .header_rechts .hs-search-field__bar {
	pointer-events: none;
}

.header .header_rechts #hs_cos_wrapper_site_search form {
	position: relative;
	height: 45px;
	display: block;
	pointer-events: none;
}

.header .header_rechts #hs_cos_wrapper_site_search input {
	background-color: white;
	color: var(--rood);
	border-radius: 20px;
	border: 0;
	outline: 0;
	padding-left: 0px;
	padding-right: 0px;
	width: 0;
	max-width: 0;
	min-width: 0;
	transition: 0.2s all;
	position: absolute;
	right: 0;
	top: 0;
	font-size: 16px;
	line-height: 14px;
	padding-top: 11px;
	padding-bottom: 11px;
}

.header:has(.header_links .hs-menu-wrapper > ul > li.active) .header_rechts #hs_cos_wrapper_site_search input,
.header.scrolled .header_rechts #hs_cos_wrapper_site_search input {
	background-color: var(--rood);
	color: white;
}

.header .header_rechts #hs_cos_wrapper_site_search label {
	width: 40px;
	height: 40px;
	font-size: 0;
	line-height: 40px;
	position: absolute;
	right: 0px;
	top: 0;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 23.93 23.75'%3E%3Cg fill='%23fff'%3E%3Cpath d='M22.68 23.75a1.25 1.25 0 0 1-.89-.37l-6.13-6.12a1.25 1.25 0 0 1 0-1.77 1.25 1.25 0 0 1 1.77 0l6.13 6.13a1.25 1.25 0 0 1-.88 2.13Z'/%3E%3Cpath d='M10 2.5a7.27 7.27 0 0 0-7.5 7 7.27 7.27 0 0 0 7.5 7 7.27 7.27 0 0 0 7.5-7 7.27 7.27 0 0 0-7.5-7M10 0a9.76 9.76 0 0 1 10 9.5A9.76 9.76 0 0 1 10 19 9.76 9.76 0 0 1 0 9.5 9.76 9.76 0 0 1 10 0Z'/%3E%3C/g%3E%3C/svg%3E");
	background-size: 20px auto;
	background-position: right center;
	background-repeat: no-repeat;
	filter: brightness(0) invert(1);
	cursor: pointer;
	transition: 0.2s all;
	z-index: 2;
	pointer-events: all;
}

.header .header_rechts #hs_cos_wrapper_site_search form.active {
	pointer-events: all;
}

.header .header_rechts #hs_cos_wrapper_site_search form.active input {
	padding-left: 20px;
	padding-right: 20px;
	width: calc(100% + 255px);
	max-width: calc(100% + 255px);
	min-width: calc(100% + 255px);
	z-index: 1;
}

.header .header_rechts #hs_cos_wrapper_site_search form.active label {
	filter: var(--rood-filter);
	right: 12px;
}

body.backdrop .header .header_rechts #hs_cos_wrapper_site_search label {
	filter: var(--rood-filter);
}

/* Algemeen -> Header -> Wit submenu */
.header .header_links {
	display: flex;
	align-items: center;
	gap: 20px;
}

.header .header_links > .hs_cos_wrapper {
	margin-top: -2px;
}

.header .header_links .wit_sub_menu {
	position: absolute;
	left: 50%;
	top: 0;
	transform: translateX(-50%);
	width: 100%;
	max-width: calc(var(--container-breedte) + 32px);
	height: 30vh;
	min-height: 580px;
	padding-top: 104px;
	padding-bottom: 72px;
	z-index: -1;
	transition: 0.2s;
	box-sizing: border-box;
	opacity: 0;
	pointer-events: none;
}

.header .header_links .wit_sub_menu:before {
	content: '';
	top: 0;
	left: 0;
	margin-left: calc(-50vw + 50%);
	margin-right: calc(-50vw + 50%);
	position: absolute;
	width: 100vw;
	height: 100%;
	z-index: -1;
	background-color: white;
}

.header .header_links .wit_sub_menu.active {
	transform: translateX(-50%) translateY(0%);
	opacity: 1;
	pointer-events: all;
}

.header .header_links .wit_sub_menu .sub {
	width: 100%;
	display: flex;
	pointer-events: none;
	position: relative;
	padding-left: 16px;
	padding-right: 16px;
	height: 0;
	z-index: 1;
}
.header .header_links .wit_sub_menu .sub * {
	pointer-events: none;
}
.header .header_links .wit_sub_menu .sub.active {
	pointer-events: all;
	height: 100%;
	z-index: 2;
}
.header .header_links .wit_sub_menu .sub.active * {
	pointer-events: all;
}

html.hs-inline-edit body .header .header_links .wit_sub_menu .sub {
	display: none;
}

html.hs-inline-edit body .header .header_links .wit_sub_menu .sub.active {
	display: flex;
}

.header .header_links .wit_sub_menu .sub > * {
	opacity: 0;
}

.header .header_links .wit_sub_menu:not(.active) .sub.active > * {
	opacity: 0;
}

.header .header_links .wit_sub_menu .sub.active > * {
	opacity: 1;
	transition: 0.2s all;
}

.header .header_links .wit_sub_menu .dnd-section .dnd-column {
	padding: 0;
}

.header .header_links .wit_sub_menu .sub > div:first-of-type {
	flex: 0 0 16.6667%;
}

.header .header_links .wit_sub_menu .sub > div:last-of-type {
	flex: 0 0 41.6667%;
	margin-left: auto;
}

.header .header_links .wit_sub_menu .sub p {
	font-size: 13px;
	line-height: 21px;
	color: var(--zwart);
}

.header .header_links .wit_sub_menu .sub h4 {
	font-size: 22px;
	line-height: 30px;
	color: var(--zwart);
	margin-bottom: 24px;
}

.header .header_links .wit_sub_menu .sub > h4 {
	position: absolute;
	top: 0;
	left: calc(25%);
}

.header .header_links .wit_sub_menu .sub h3 {
	margin-bottom: 16px;
	line-height: 27px;
	white-space: nowrap;
}

.header .header_links .wit_sub_menu .wit_sub_menu_close {
	position: absolute;
	bottom: 32px;
	left: calc(50% - 16px);
	width: 32px;
	height: 12px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24.9' height='14.7' viewBox='0 0 25 15'%3E%3Cg fill='none' stroke='%23222' stroke-linecap='round' stroke-width='3' data-name='Group 56' opacity='.6'%3E%3Cpath d='M2 13 12 2' data-name='Line 67'/%3E%3Cpath d='M23 13 12 2' data-name='Line 68'/%3E%3C/g%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-size: auto 10px;
	background-position: center;
	z-index: 3;
}

.header .header_links > .hs_cos_wrapper_type_menu > .hs-menu-wrapper > ul {
	display: flex;
	gap: 20px;
}

.header .header_links > .hs_cos_wrapper_type_menu > .hs-menu-wrapper > ul > li > ul.hs-menu-children-wrapper {
	opacity: 0;
	pointer-events: none;
	display: flex;
	transition: 0.2s all;
	width: 30%;
	position: absolute;
	top: 146px;
	left: calc(25%);
}

.header .header_links > .hs_cos_wrapper_type_menu > .hs-menu-wrapper > ul > li:not(.active) > ul.hs-menu-children-wrapper * {
	pointer-events: none !important;
}

.header .header_links > .hs_cos_wrapper_type_menu > .hs-menu-wrapper > ul > li.active > ul.hs-menu-children-wrapper {
	opacity: 1;
	transform: translateY(-0px);
	pointer-events: all;
}

.header .header_links > .hs_cos_wrapper_type_menu > .hs-menu-wrapper > ul > li a {
	font-size: 16px;
	line-height: 19px;
	color: var(--rood);
	text-decoration: none;
}

.header .header_links > .hs_cos_wrapper_type_menu > .hs-menu-wrapper > ul > li a:hover {
	text-decoration: underline;
}

.header .header_links > .hs_cos_wrapper_type_menu > .hs-menu-wrapper > ul > li.active > a {
	font-weight: bold;
}

.header .header_links > .hs_cos_wrapper_type_menu > .hs-menu-wrapper > ul > li:last-of-type {
	display: none;
}

.header .header_links > .hs_cos_wrapper_type_menu > .hs-menu-wrapper > ul > li > ul.hs-menu-children-wrapper li a {
	font-weight: bold;
	font-size: 15px;
	line-height: 22px;
	margin-bottom: 8px;
	display: inline-block;
}

/* Algemeen -> Header -> Eerste menu overrides */
.header .header_links > .hs_cos_wrapper_type_menu > .hs-menu-wrapper > ul > li:nth-of-type(1) > ul.hs-menu-children-wrapper {
	-moz-column-count: 2;
	-webkit-column-count: 2;
	column-count: 2;
	-moz-column-gap: 32px;
	-webkit-column-gap: 32px;
	column-gap: 32px;
	-moz-column-rule: none;
	-webkit-column-rule: none;
	column-rule: none;
	display: block;
}

/* Algemeen -> Header -> Tweede menu overrides */
.header .header_links > .hs_cos_wrapper_type_menu > .hs-menu-wrapper > ul > li:nth-of-type(2) > ul.hs-menu-children-wrapper {
	width: 100%;
	top: 104px;
	left: 0;
	padding-left: 16px;
	padding-right: 16px;
}

.header .header_links > .hs_cos_wrapper_type_menu > .hs-menu-wrapper > ul > li:nth-of-type(2) > ul.hs-menu-children-wrapper > li {
	display: flex;
	flex-direction: column;
	width: 16.6667%;
}

.header .header_links > .hs_cos_wrapper_type_menu > .hs-menu-wrapper > ul > li:nth-of-type(2) > ul.hs-menu-children-wrapper > li > a {
	font-size: 22px;
	line-height: 27px;
	color: var(--zwart);
}

.header .header_links > .hs_cos_wrapper_type_menu > .hs-menu-wrapper > ul > li:nth-of-type(2) > ul.hs-menu-children-wrapper > li p {
	color: var(--zwart);
	font-size: 13px;
	line-height: 21px;
	height: 0;
	max-height: 0;
	transition: 0.2s all;
	overflow: hidden;
	margin-bottom: 12px;
}

.header .header_links > .hs_cos_wrapper_type_menu > .hs-menu-wrapper > ul > li:nth-of-type(2) > ul.hs-menu-children-wrapper > li.active p {
	height: auto;
	max-height: 400px;
	margin-bottom: 24px;
}

.header .header_links > .hs_cos_wrapper_type_menu > .hs-menu-wrapper > ul > li:nth-of-type(2) > ul.hs-menu-children-wrapper > li.active > a {
	color: var(--rood);
	margin-bottom: 16px;
	display: block;
}

.header .header_links > .hs_cos_wrapper_type_menu > .hs-menu-wrapper > ul > li:nth-of-type(2) > ul.hs-menu-children-wrapper > li > ul {
	opacity: 0;
	pointer-events: none;
	display: flex;
	flex-direction: row;
	gap: 20px;
	transition: 0.2s all;
	width: 66.66667%;
	position: absolute;
	top: 0px;
	left: calc(25%);
	flex-wrap: nowrap;
}

.header .header_links > .hs_cos_wrapper_type_menu > .hs-menu-wrapper > ul > li:nth-of-type(2) > ul.hs-menu-children-wrapper > li.active > ul {
	opacity: 1;
	pointer-events: all;
}

.header .header_links > .hs_cos_wrapper_type_menu > .hs-menu-wrapper > ul > li:nth-of-type(2) > ul.hs-menu-children-wrapper > li > ul > li {	
	opacity: 1;
	flex: 0 0 calc(50% - 20px);
}

.header .header_links > .hs_cos_wrapper_type_menu > .hs-menu-wrapper > ul > li:nth-of-type(2) > ul.hs-menu-children-wrapper > li > ul > li > a {
	font-size: 22px;
	line-height: 27px;
	color: var(--zwart);
	text-decoration: none;
	margin-bottom: 16px;
	display: block;
}

.header .header_links > .hs_cos_wrapper_type_menu > .hs-menu-wrapper > ul > li:nth-of-type(2) > ul.hs-menu-children-wrapper > li > ul > li > ul {
	display: block;
	columns: 2;
	-moz-column-count: 2;
	-moz-column-gap: 32px;
	-moz-column-rule: none;
	-webkit-column-count: 2;
	-webkit-column-gap: 32px;
	-webkit-column-rule: none;
	column-count: 2;
	column-gap: 32px;
	column-rule: none;
}

/* Algemeen -> Header -> Opleiden sub menu overrides */
.header .header_links > .hs_cos_wrapper_type_menu > .hs-menu-wrapper > ul > li:nth-of-type(2) > ul.hs-menu-children-wrapper {
	pointer-events: none;
}
.header .header_links > .hs_cos_wrapper_type_menu > .hs-menu-wrapper > ul > li:nth-of-type(2) > ul.hs-menu-children-wrapper > li {
	pointer-events: all;
}
.header .header_links > .hs_cos_wrapper_type_menu > .hs-menu-wrapper > ul > li:nth-of-type(2) > ul.hs-menu-children-wrapper > li:nth-of-type(3) > ul {
	width: 41.66667%;
}

.header .header_links .wit_sub_menu .sub > .menu_content_opleiden {
	position: relative;
	z-index: 99;
	display: none;
}

/* Algemeen -> Header -> Management sub menu overrides */
.header .header_links .hs-menu-wrapper > ul > li:nth-of-type(2) > ul.hs-menu-children-wrapper > li:nth-of-type(2) > ul > li > ul {
	display: flex;
	flex-direction: column;
}

@media (max-width: 1380px) {
	.header .container .header_links {
		flex: 1 0 calc(60% - 130px);
	}
	.header .container .header_rechts {
		flex: 1 0 calc(40% - 130px);
	}
}

@media (max-width: 1200px) {
	.header .header_links > .hs_cos_wrapper_type_menu > .hs-menu-wrapper > ul > li:nth-of-type(2) > ul.hs-menu-children-wrapper > li > ul > li {
		flex: 0 0 50%;
	}
	.header .header_links .wit_sub_menu .sub h3 {
		white-space: normal;
	}
	.header .header_links > .hs_cos_wrapper_type_menu > .hs-menu-wrapper > ul > li:nth-of-type(2) > ul.hs-menu-children-wrapper > li:nth-of-type(3) > ul,
	.header .header_links > .hs_cos_wrapper_type_menu > .hs-menu-wrapper > ul > li:nth-of-type(2) > ul.hs-menu-children-wrapper > li:nth-of-type(3) > ul > li > ul {
		-moz-column-count: 1;
		-webkit-column-count: 1;
		column-count: 1;
	}
}

@media (max-width: 1100px) {
	.header .container .header_links {
		flex: 1 0 calc(65% - 130px);
	}
	.header .container .header_rechts {
		flex: 1 0 calc(35% - 130px);
	}
}

@media (max-width: 1000px) {
	.header .container .header_links {
		flex: 1 0 calc(75% - 130px);
	}
	.header .container .header_rechts {
		flex: 1 0 calc(25% - 130px);
	}
	.header .header_rechts a.button.werken_bij_b {
		display: none;
	}
}

@media (max-width: 970px) {
	.header .header_links, .header .header_links .hs-menu-wrapper>ul {
		gap: 17px;
	}
}

@media (max-width: 900px) {
	.header .header_links .hs-menu-wrapper {
		display: none;
	}
	.header .header_links .wit_sub_menu {
		display: none;
	}
	.header .container .header_links {
		flex: 1 0 calc(50% - 130px);
	}
	.header .container .header_rechts {
		flex: 1 0 calc(50% - 130px);
	}
}

@media (max-width: 500px) {
	.header .header_midden img {
		aspect-ratio: 5/6;
		object-fit: cover;
		object-position: left center;
		height: 74px;
		width: 56px !important;
		transform: translateX(-10px);
	}
	.header .container .header_midden {
		flex: 1 0 56px;
	}
	.header .container .header_links,
	.header .container .header_rechts {
		flex: 1 0 calc(50% - 28px);
	}
	.header .header_rechts #hs_cos_wrapper_site_search form.active input {
		max-width: calc(100% + 64px);
		min-width: calc(100% + 64px);
	}
}

@media (max-width: 400px) {
	.header .header_rechts #hs_cos_wrapper_site_search form.active input {
		max-width: calc(100% + 140px);
		min-width: calc(100% + 140px);
	}
}

body.backdrop:after {
	content: '';
	position: fixed;
	z-index: 98;
	left: 0;
	top: 0;
	width: 100vw;
	height: 100vh;
	background-color: black;
	opacity: 0.6;
}


body .header .header_midden #hs_cos_wrapper_site_logo {
	display: inline-block;
}

body .header .header_midden #hs_cos_wrapper_site_logo_2 {
	display: none;
}

body.template-home .header_midden #hs_cos_wrapper_site_logo {
	display: none;
}

body.template-home .header:has(.header_links .wit_sub_menu.active) .header_midden #hs_cos_wrapper_site_logo {
	display: inline-block;
}

body.template-home .header:has(.header_links .wit_sub_menu.active) .header_midden #hs_cos_wrapper_site_logo_2 {
	display: none;
}

body.template-home .header_midden #hs_cos_wrapper_site_logo_2 {
	display: inline-block;
}

body.template-home .header:has(.header_links .wit_sub_menu.active) .header_midden #hs_cos_wrapper_site_logo {
	display: inline-block;
}

body.template-home .header:has(.header_links .wit_sub_menu.active) .header_midden #hs_cos_wrapper_site_logo_2 {
	display: none;
}


/* Algemeen -> Header -> Transparant overrides */
body:not(.backdrop):has(.intro_banner, .kunstwerken_intro) .header {
	background-color: transparent;
}


/* body:not(.backdrop):has(.intro_banner, .kunstwerken_intro) .header .header_midden img {
	filter: brightness(0) invert(1);
} */
/* Algemeen -> Header -> 60 jaar logo 2024 */
body:not(.backdrop):has(.intro_banner, .kunstwerken_intro) .header .header_midden #hs_cos_wrapper_site_logo {
	display: none;
}

body:not(.backdrop):has(.intro_banner, .kunstwerken_intro) .header.scrolled .header_midden #hs_cos_wrapper_site_logo {
	display: inline-block;
}

body:not(.backdrop):has(.intro_banner, .kunstwerken_intro) .header .header_midden #hs_cos_wrapper_site_logo_2 {
	display: inline-block;
}

body:not(.backdrop):has(.intro_banner, .kunstwerken_intro) .header.scrolled .header_midden #hs_cos_wrapper_site_logo_2 {
	display: none;
}
/* Algemeen -> Header -> einde 60 jaar logo 2024 */

body:not(.backdrop):has(.intro_banner, .kunstwerken_intro) .header .icon-menu {
	filter: inherit;
}

body:not(.backdrop):has(.intro_banner, .kunstwerken_intro) .header.scrolled {
	background-color: white;
	border-bottom: 1px solid var(--beige);
}

body:not(.backdrop):has(.intro_banner, .kunstwerken_intro) .header.scrolled .header_midden img {
	filter: inherit;
}

body:not(.backdrop):has(.intro_banner, .kunstwerken_intro) .header.scrolled .header_rechts #hs_cos_wrapper_site_search label {
	filter: var(--rood-filter);
}

body:not(.backdrop):has(.intro_banner, .kunstwerken_intro) .header.scrolled .header_rechts #hs_cos_wrapper_site_search form.active label {
	filter: brightness(0) invert(1);
}

body:not(.backdrop):has(.intro_banner, .kunstwerken_intro) .header.scrolled .icon-menu {
	filter: var(--rood-filter);
}

body:not(.backdrop):has(.intro_banner, .kunstwerken_intro) .header .header_links .hs-menu-wrapper > ul > li > a {
	color: white;
}

body:not(.backdrop):has(.intro_banner, .kunstwerken_intro) .header.scrolled .header_links .hs-menu-wrapper > ul > li > a {
	color: var(--rood);
}

/* Header -> Mega menu */
@media (min-width: 1080px) {
	#mega_menu {
		height: 100vh;
		width: 100vw;
		overflow: auto;
		position: fixed;
		display: flex;
		flex-wrap: wrap;
		top: -110%;
		left: 0;
		transition: 0.4s all;
		padding: 36px 74px 106px 74px;
		box-sizing: border-box;
		background-color: white;
		z-index: 101;
		touch-action: none !important;
	}

	#mega_menu.active {
		top: 0;
	}

	.mega_menu_header {
		display: flex;
		flex: 0 0 100%;
		flex-wrap: nowrap;
		max-height: 100px;
		margin-bottom: 66px;
		align-items: center;
	}

	.mega_menu_header form {
		margin-bottom: 0;
	}

	.mega_menu_header .icon-close {
		width: 18px;
		height: 18px;
		background-repeat: no-repeat;
		background-size: 18px auto;
		background-position: center;
		background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 22.88 22.47'%3E%3Cg fill='none' stroke='%23da0e2b' stroke-linecap='round' stroke-width='3'%3E%3Cpath d='M2.12 20.34 20.76 2.3M2.12 2.12l18.64 18.23'/%3E%3C/g%3E%3C/svg%3E");
	}

	.mega_menu_header .icon-close:hover {
		transform: scale(1.2) rotate(-90deg);
	}

	.mega_menu_header #hs_cos_wrapper_site_search_mega {
		width: calc(40vw - 74px);
		margin-left: auto;
		position: relative;
	}

	.mega_menu_header #hs_cos_wrapper_site_search_mega button {
		position: absolute;
		background-color: transparent;
		outline: 0;
		border: 0;
		right: 2px;
		top: 2px;
		height: 40px;
		width: 40px;
	}

	.mega_menu_header #hs_cos_wrapper_site_search_mega button svg {
		height: 18px;
		filter: var(--rood-filter);
	}

	.mega_menu_header #hs_cos_wrapper_site_search_mega input[type="text"] {
		border-radius: 20px;
		outline: 0;
		border: 0;
		padding: 11px 15px 10px 15px;
		letter-spacing: 1.21px;
		color: var(--rood);
	}

	.mega_menu_header #hs_cos_wrapper_site_search_mega input[type="text"]::placeholder {
		color: var(--rood);
		text-transform: uppercase;
		font-weight: bold;
		letter-spacing: 1.21px;
	}

	.mega_menu_header #hs_cos_wrapper_site_search_mega + img {
		width: 10vw;
		max-height: 44px;
		object-fit: contain;
		object-position: right top;
	}

	.mega_menu_items {
		height: calc(100% - 110px);
		width: calc(40vw - 124px);
		max-width: calc(40vw - 124px);
		display: flex;
		flex-direction: column;
	}

	.mega_menu_items:after {
		content: '';
		left: calc(20vw - 20px);
		width: 1px;
		height: calc(100% - 252px);
		position: absolute;
		top: 146px;
		background-color: rgba(112, 112, 112, 0.22);
	}

	.mega_menu_items .hs-menu-wrapper > ul {
		display: inline-flex;
		flex: 1;
		flex-direction: column;
		width: 100%;
		min-width: calc(40vw - 124px);
		max-width: calc(40vw - 124px);
	}

	.mega_menu_items .hs-menu-wrapper > ul > li {
		display: inline-flex;
		max-height: 64px;
		line-height: 32px;
		padding-bottom: 32px;
	}

	.mega_menu_items .hs-menu-wrapper > ul > li > a,
	.mega_menu_items .hs-menu-wrapper > ul > li > ul > li > a {
		flex: 1 0 50%;
		font-size: 22px;
		line-height: 32px;
		color: var(--zwart);
		text-decoration: none;
		font-weight: 600;
	}
	.mega_menu_items .hs-menu-wrapper > ul > li > ul > li > a {
		line-height: 31px;
	}

	.mega_menu_items .hs-menu-wrapper > ul > li.active > a,
	.mega_menu_items .hs-menu-wrapper > ul > li > ul > li.active > a {
		color: var(--rood);
	}

	.mega_menu_items .hs-menu-wrapper > ul > li > a:hover,
	.mega_menu_items .hs-menu-wrapper > ul > li > ul > li > a:hover {
		text-decoration: underline;
	}

	.mega_menu_items .hs-menu-wrapper > ul > li > ul.hs-menu-children-wrapper {
		flex: 1 0 50%;
		flex-wrap: wrap;
		flex-direction: column;
		display: none;
	}
	.mega_menu_items .hs-menu-wrapper > ul > li.active > ul.hs-menu-children-wrapper {
		display: block;
		z-index: 2;
	}
	.mega_menu_items .hs-menu-wrapper > ul > li:nth-child(2) > ul.hs-menu-children-wrapper {
		margin-top: calc(1 * -64px);
	}
	.mega_menu_items .hs-menu-wrapper > ul > li:nth-child(3) > ul.hs-menu-children-wrapper {
		margin-top: calc(2 * -64px);
	}
	.mega_menu_items .hs-menu-wrapper > ul > li:nth-child(4) > ul.hs-menu-children-wrapper {
		margin-top: calc(3 * -64px);
	}
	.mega_menu_items .hs-menu-wrapper > ul > li:nth-child(5) > ul.hs-menu-children-wrapper {
		margin-top: calc(4 * -64px);
	}
	.mega_menu_items .hs-menu-wrapper > ul > li:nth-child(6) > ul.hs-menu-children-wrapper {
		margin-top: calc(5 * -64px);
	}
	.mega_menu_items .hs-menu-wrapper > ul > li:nth-child(7) > ul.hs-menu-children-wrapper {
		margin-top: calc(6 * -64px);
	}
	.mega_menu_items .hs-menu-wrapper > ul > li:nth-child(8) > ul.hs-menu-children-wrapper {
		margin-top: calc(7 * -64px);
	}
	.mega_menu_items .hs-menu-wrapper > ul > li > ul > li {
		padding-bottom: 32px;
	}
	.mega_menu_items .hs-menu-wrapper > ul > li > ul > li > p {
		height: 0;
		overflow: hidden;
		transition: 0.6s all;
		margin-bottom: 0;
	}
	.mega_menu_items .hs-menu-wrapper > ul > li > ul > li.active > p {
		height: auto;
		max-height: 500px;
	}

	.mega_menu_items .hs-menu-wrapper > ul > li > ul > li > ul {
		display: none;
		top: 146px;
		flex-direction: row !important;
		position: absolute;
		right: calc(10vw + 74px);
		width: calc(40vw - 74px);
	}

	.mega_menu_items .hs-menu-wrapper > ul > li > ul > li.active > ul {
		display: flex;
	}

	.mega_menu_items .hs-menu-wrapper > ul > li > ul > li > ul > li {
		flex: 1 0 50%;
	}

	.mega_menu_items .hs-menu-wrapper > ul > li > ul > li > ul > li a {
		text-decoration: none;
		color: #FFFFFF;
		font-size: 15px;
		line-height: 18px;
		display: block;
		margin-bottom: 12px;
	}

	.mega_menu_items .hs-menu-wrapper > ul > li > ul > li > ul > li a:hover {
		text-decoration: underline;
	}

	.mega_menu_items .hs-menu-wrapper > ul > li > ul > li > ul > li > a {
		flex: 1 0 50%;
		font-size: 22px;
		font-weight: 600;
		display: inline-block;
		margin-bottom: 16px;
		line-height: 30px;
	}

	.mega_menu_blob {
		margin-left: auto;
		max-width: calc(60vw - 74px);
		min-width: calc(60vw - 74px);
	}
	.mega_menu_blob svg:not(#container) {
		display: none;
	}
	.mega_menu_blob svg#container {
		position: absolute;
		z-index: -1;
		right: 0;
		top: 0;
		width: calc(60vw);
		height: 100%;
		overflow: hidden;
	}
	.mega_menu_blob svg#container path {
		height: 100%;
		width: 100%;
		fill: var(--rood);
		transform-origin: left top;
		transform: scale(0.5);
	}
	.mega_menu_blob * {
		color: white;
	}
	.mega_menu_blob p {
		font-size: 18px;
		line-height: 30px;
	}
	.mega_menu_blob > .container-fluid {
		display: none;
		opacity: 0;
		transition: 0.2s all;
		width: calc(40vw - 74px);
		margin-left: auto;
		margin-right: 10vw;
	}
	.mega_menu_blob > .container-fluid .dnd-section .dnd-column {
		padding: 0;
	}
	.mega_menu_blob > .container-fluid.active {
		opacity: 1;
		display: block;
	}
	.item_terug {
		display: none;
	}
	#hs_cos_wrapper_menu_124560238108 {
		margin-top: auto;
	}
	#hs_cos_wrapper_menu_124560238108 li:not(:last-of-type) {
		padding-bottom: 8px;
	}
	#hs_cos_wrapper_menu_124560238108 li:last-of-type {
		padding-bottom: 0px;
	}
	#hs_cos_wrapper_menu_124560238108 a {
		font-size: 18px;
		line-height: 30px;
		font-weight: 400;
	}
	.mega_menu_items .hs-menu-wrapper > ul > li > ul > li > p {
		font-size: 13px;
		line-height: 21px;
	}
}

@media (min-width: 1080px) and (max-width: 1892px) {
	.mega_menu_blob {
		max-width: calc(50vw - 74px);
		min-width: calc(50vw - 74px);
	}
	.mega_menu_blob svg {
		max-width: calc(60vw);
		min-width: calc(60vw);
	}
	.mega_menu_items .hs-menu-wrapper > ul > li > ul > li.active > p {
		margin-top: 16px;
	}
	.mega_menu_items,
	.mega_menu_items .hs-menu-wrapper > ul {
		max-width: calc(45vw - 124px);
		width: calc(45vw - 124px);
	}
	.mega_menu_items:after {
		left: calc(22vw - 60px);
	}
}

@media (min-width: 1080px) and (max-width: 1750px) {
	.mega_menu_header {
		margin-bottom: 40px;
	}
	.mega_menu_blob {
		max-width: calc(50vw - 74px);
		min-width: calc(50vw - 74px);
	}
	.mega_menu_blob svg {
		max-width: 55vw;
		min-width: 55vw;
	}
	.mega_menu_items,
	.mega_menu_items .hs-menu-wrapper > ul {
		max-width: calc(50vw - 124px);
		width: calc(50vw - 124px);
	}
	.mega_menu_items:after {
		height: calc(100% - 226px);
		top: 120px;
		left: calc(25vw - 60px);
	}
	.mega_menu_blob > .container-fluid {
		margin-right: 5vw;
	}
	.mega_menu_items .hs-menu-wrapper > ul > li > ul > li > ul {
		right: calc(5vw + 74px);
	}
	.mega_menu_header #hs_cos_wrapper_site_search_mega + img {
		width: 5vw;
	} 
}

@media (min-width: 1080px) and (max-width: 1540px) {
	.mega_menu_header #hs_cos_wrapper_site_search_mega + img {
		width: 5vw;
		max-height: 34px;
		object-fit: contain;
		object-position: right center;
	}
	.mega_menu_header #hs_cos_wrapper_site_search_mega button {
		height: 34px;
	}
	.mega_menu_header #hs_cos_wrapper_site_search_mega button svg {
		height: 14px;
	}
	#mega_menu {
		padding: 16px 74px 74px 74px;
	}
	.mega_menu_items .hs-menu-wrapper>ul>li>ul>li>ul {
		top: 110px;
	}
	.mega_menu_items, .mega_menu_items .hs-menu-wrapper > ul {
		max-width: calc(45vw - 124px);
		width: calc(45vw - 124px);
	}
	.mega_menu_header #hs_cos_wrapper_site_search_mega input[type="text"] {
		font-size: 11px;
	}
	.mega_menu_header #hs_cos_wrapper_site_search_mega input[type="text"]::placeholder {
		font-size: 11px;
	}
	.mega_menu_blob {
		max-width: calc(55vw - 74px);
		min-width: calc(55vw - 74px);
	}
	.mega_menu_blob svg {
		max-width: 55vw;
		min-width: 55vw;
	}
	.mega_menu_items .hs-menu-wrapper > ul > li {
		padding-bottom: 26px;
		line-height: 26px;
		max-height: 52px;
	}
	.mega_menu_items .hs-menu-wrapper > ul > li > ul > li {
		padding-bottom: 24px;
	}
	.mega_menu_items .hs-menu-wrapper > ul > li > a, 
	.mega_menu_items .hs-menu-wrapper > ul > li > ul > li > a {
		font-size: 21px;
		line-height: 25px;
	}
	.mega_menu_items .hs-menu-wrapper > ul > li:nth-child(2) > ul.hs-menu-children-wrapper {
		margin-top: calc(1 * -51px);
	}
	.mega_menu_items .hs-menu-wrapper > ul > li:nth-child(3) > ul.hs-menu-children-wrapper {
		margin-top: calc(2 * -51px);
	}
	.mega_menu_items .hs-menu-wrapper > ul > li:nth-child(4) > ul.hs-menu-children-wrapper {
		margin-top: calc(3 * -51px);
	}
	.mega_menu_items .hs-menu-wrapper > ul > li:nth-child(5) > ul.hs-menu-children-wrapper {
		margin-top: calc(4 * -51px);
	}
	.mega_menu_items .hs-menu-wrapper > ul > li:nth-child(6) > ul.hs-menu-children-wrapper {
		margin-top: calc(5 * -51px);
	}
	.mega_menu_items .hs-menu-wrapper > ul > li:nth-child(7) > ul.hs-menu-children-wrapper {
		margin-top: calc(6 * -51px);
	}
	.mega_menu_items .hs-menu-wrapper > ul > li:nth-child(8) > ul.hs-menu-children-wrapper {
		margin-top: calc(7 * -51px);
	}
	.mega_menu_blob p {
		font-size: 14px;
		line-height: 24px;
		font-weight: 400;
		margin-bottom: 32px;
	}
	#hs_cos_wrapper_menu_124560238108 a {
		font-size: 14px;
		line-height: 30px;
	}
	#hs_cos_wrapper_menu_124560238108 li:not(:last-of-type) {
		padding-bottom: 0;
	}
}

@media (min-width: 1080px) and (max-width: 1420px) {
	#mega_menu {
		padding: 16px 36px 74px 36px;
	}
	.mega_menu_items:after {
		height: calc(100% - 256px);
		left: calc(23vw - 60px);
	}
	.mega_menu_items .hs-menu-wrapper>ul>li>ul>li>ul {
		right: calc(5vw + 32px);
	}
}

@media (min-width: 1080px) and (max-width: 1320px) {
	.mega_menu_items:after {
		display: none;
	}
}

@media (min-width: 1080px) and (max-width: 1250px) {
	.mega_menu_items,
	.mega_menu_items .hs-menu-wrapper > ul {
		max-width: calc(55vw - 124px);
		width: calc(55vw - 124px);
	}
	.mega_menu_blob {
		max-width: calc(45vw - 74px);
		min-width: calc(45vw - 74px);
	}
	.mega_menu_blob > .container-fluid {
		width: 100%;
	}
	.mega_menu_blob svg#container {
		width: 50vw;
	}
}

@media (max-height: 850px) and (min-width: 1540px) {
	.mega_menu_blob svg {
		min-height: 850px;
	}
}

@media (max-height: 760px) and (min-width: 1080px) and (max-width: 1540px) {
	.mega_menu_blob svg {
		min-height: 760px;
	}
}

.hs-search-field__suggestions {
	display: none;
}

@media (max-width: 1079px) {
	#mega_menu {
		z-index: 101;
		position: fixed;
		height: calc(100vh);
		top: 0;
		width: 100vw;
		transition: 0.2s all;
		transform: translateY(-110%);
		padding: 0;
		touch-action: none !important;
	}
	#mega_menu ul {
		flex-direction: column;
	}
	#mega_menu.active {
		transform: translateY(0);
	}
	#mega_menu .mega_menu_header {
		background-color: white;
		padding: 16px;
		box-sizing: border-box;
		display: flex;
		align-items: center;
		justify-content: space-between;
		position: relative;
		transition: 0.2s all;
		overflow: hidden;
	}
	#mega_menu .mega_menu_header.search_active {
		padding-bottom: 74px;
	}
	.mega_menu_header .icon-close {
		order: 0;
		width: 18px;
		height: 18px;
		background-repeat: no-repeat;
		background-size: 18px auto;
		background-position: center;
		background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 22.88 22.47'%3E%3Cg fill='none' stroke='%23da0e2b' stroke-linecap='round' stroke-width='3'%3E%3Cpath d='M2.12 20.34 20.76 2.3M2.12 2.12l18.64 18.23'/%3E%3C/g%3E%3C/svg%3E");
	}
	.mega_menu_header img {
		order: 1;
		width: 40px;
		height: 40px;
		filter: var(--rood-filter)
	}
	.mega_menu_header #hs_cos_wrapper_site_search_mega {
		order: 2;
	}
	.mega_menu_header #hs_cos_wrapper_site_search_mega .hs-search-field {
		position: inherit;
	}
	.mega_menu_header #hs_cos_wrapper_site_search_mega .hs-search-field:before {
		content: '';
		width: 24px;
		height: 24px;
		display: inline-block;
		background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='19.5' height='19.1' viewBox='0 0 20 19'%3E%3Cg fill='none' stroke='%23da0e2b' stroke-linecap='round' stroke-width='2.2' data-name='Group 55'%3E%3Cpath d='m18 18-5-5' data-name='Line 20'/%3E%3Cg data-name='Ellipse 1'%3E%3Cellipse cx='8' cy='7.5' stroke='none' rx='8' ry='7.5'/%3E%3Cellipse cx='8' cy='7.5' rx='6.9' ry='6.4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
		background-size: 24px auto;
		background-position: center;
		background-repeat: no-repeat;
		margin-top: 6px;
	}
	.hs-tools-menu.hs-collapsed {
		display: none !important;
	}
	.mega_menu_header #hs_cos_wrapper_site_search_mega form {
		position: absolute;
		width: calc(100vw - 32px);
		left: 16px;
		top: 100%;
		opacity: 0;
		transition: 0.2s;
		transition-delay: 0.1s;
	}
	.mega_menu_header #hs_cos_wrapper_site_search_mega form button {
		position: absolute;
		right: 16px;
		top: 9px;
		width: 20px;
		height: 20px;
		padding: 0;
		margin: 0;
		outline: 0;
		border: 0;
		background-color: transparent;
		background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='9.8' viewBox='0 0 8 10'%3E%3Cpath fill='%23fff' d='m8 5-8 5V0Z' data-name='Polygon 3'/%3E%3C/svg%3E");
		background-size: 10px auto;
		background-position: center;
		background-repeat: no-repeat;
	}
	.mega_menu_header #hs_cos_wrapper_site_search_mega form button svg {
		display: none;
	}
	.mega_menu_header.search_active #hs_cos_wrapper_site_search_mega form {
		top: auto;
		bottom: 20px;
		opacity: 1;
	}
	.mega_menu_header #hs_cos_wrapper_site_search_mega .hs-search-field__input {
		background-color: var(--rood);
		padding: 10px 24px;
		border-radius: 20px;
		outline: 0;
		border: 0;
		color: white;
	}
	.mega_menu_header #hs_cos_wrapper_site_search_mega .hs-search-field__input::placeholder {
		font-weight: bold;
		text-transform: uppercase;
		color: white;
		font-weight: 500;
	}
	.mega_menu_items {
		background-color: var(--rood);
		padding: 16px;
		overflow: auto;
		box-sizing: border-box;
		height: 100%;
		max-height: calc(100vh - 72px);
	}
	.mega_menu_items .hs-menu-wrapper > ul > li {
		box-sizing: border-box;
		display: block;
	}
	.mega_menu_items .hs-menu-wrapper > ul > li.hs-item-has-children > a {
		position: relative;
	}
	.mega_menu_items .hs-menu-wrapper > ul > li.hs-item-has-children > a:before {
		content: '';
		width: 24px;
		height: 16px;
		background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11.611' height='19.413' viewBox='0 0 11.611 19.413'%3E%3Cg id='Group_1789' data-name='Group 1789' transform='translate(-362.944 -209.487)'%3E%3Cline id='Line_75' data-name='Line 75' y1='7.846' x2='8.5' transform='translate(364.5 219.5)' fill='none' stroke='%23fff' stroke-linecap='round' stroke-width='2.2'/%3E%3Cline id='Line_76' data-name='Line 76' x2='8.5' y2='8.458' transform='translate(364.5 211.042)' fill='none' stroke='%23fff' stroke-linecap='round' stroke-width='2.2'/%3E%3C/g%3E%3C/svg%3E%0A");
		background-size: auto 16px;
		background-position: center;
		background-repeat: no-repeat;
		position: absolute;
		right: 0;
		top: 16px;
		pointer-events: none;
	}
	.mega_menu_items .hs-menu-wrapper > ul > li:after {
		content: '';
		width: calc(100% - 32px);
		height: 1px;
		display: block;
		background-color: white;
		opacity: 0.3;
	}
	.mega_menu_items .hs-menu-wrapper p {
		display: none;
	}
	.mega_menu_items .hs-menu-wrapper > ul > li > a {
		font-size: 18px;
		font-weight: 600;
		line-height: 48px;
		margin: 10px 0;
		color: white;
		text-decoration: none;
		display: block;
	}
	.mega_menu_items .hs-menu-wrapper > ul > li.hs-item-has-children > ul.hs-menu-children-wrapper > li.hs-item-has-children > ul.hs-menu-children-wrapper,
	.mega_menu_items .hs-menu-wrapper > ul > li.hs-item-has-children > ul.hs-menu-children-wrapper {
		display: block;
		width: calc(100vw - 4px);
		max-width: calc(100vw - 4px);
		top: 72px;
		height: calc(100vh - 72px);
		max-height: calc(100vh - 72px);
		overflow-y: auto;
		overflow-x: hidden;
		position: absolute;
		right: -100vw;
		transition: 0.2s;
		background-color: white;
		z-index: 10;
	}
	.mega_menu_header.search_active + .mega_menu_items .hs-menu-wrapper > ul > li.hs-item-has-children > ul.hs-menu-children-wrapper > li.hs-item-has-children > ul.hs-menu-children-wrapper,
	.mega_menu_header.search_active + .mega_menu_items .hs-menu-wrapper > ul > li.hs-item-has-children > ul.hs-menu-children-wrapper {
		top: 130px;
	}
	.mega_menu_items .hs-menu-wrapper > ul > li.hs-item-has-children > ul.hs-menu-children-wrapper > li.hs-item-has-children.active > ul.hs-menu-children-wrapper,
	.mega_menu_items .hs-menu-wrapper > ul > li.hs-item-has-children.active > ul.hs-menu-children-wrapper {
		right: 0vw;
	}
	.mega_menu_items .hs-menu-wrapper > ul > li.hs-item-has-children > ul.hs-menu-children-wrapper > li.hs-item-has-children > ul.hs-menu-children-wrapper > li,
	.mega_menu_items .hs-menu-wrapper > ul > li.hs-item-has-children > ul.hs-menu-children-wrapper > li {
		display: block;
		padding: 12px 48px;
		font-weight: bold;
		color: var(--rood);
		font-size: 18px;
		line-height: 48px;
	}
	.mega_menu_items .hs-menu-wrapper > ul > li.hs-item-has-children > ul.hs-menu-children-wrapper > li.hs-item-has-children > ul.hs-menu-children-wrapper > li.item_terug:before,
	.mega_menu_items .hs-menu-wrapper > ul > li.hs-item-has-children > ul.hs-menu-children-wrapper > li.item_terug:before {
		content: '';
		width: 24px;
		height: 16px;
		background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11.611' height='19.413' viewBox='0 0 11.611 19.413'%3E%3Cg id='Group_1789' data-name='Group 1789' transform='translate(-362.944 -209.487)'%3E%3Cline id='Line_75' data-name='Line 75' y1='7.846' x2='8.5' transform='translate(364.5 219.5)' fill='none' stroke='%23fff' stroke-linecap='round' stroke-width='2.2'/%3E%3Cline id='Line_76' data-name='Line 76' x2='8.5' y2='8.458' transform='translate(364.5 211.042)' fill='none' stroke='%23fff' stroke-linecap='round' stroke-width='2.2'/%3E%3C/g%3E%3C/svg%3E%0A");
		background-size: auto 16px;
		background-position: center;
		background-repeat: no-repeat;
		position: absolute;
		left: 16px;
		top: 27px;
		pointer-events: none;
		filter: var(--rood-filter);
		scale: -1;
	}
	.mega_menu_items .hs-menu-wrapper > ul > li.hs-item-has-children > ul.hs-menu-children-wrapper > li.hs-item-has-children > ul.hs-menu-children-wrapper > li > a,
	.mega_menu_items .hs-menu-wrapper > ul > li.hs-item-has-children > ul.hs-menu-children-wrapper > li > a {
		color: var(--rood);
		text-decoration: none;
		font-size: 18px;
		line-height: 48px;
		font-weight: 600;
		display: block;
	}
	.mega_menu_items .hs-menu-wrapper > ul > li.hs-item-has-children > ul.hs-menu-children-wrapper > li.hs-item-has-children > ul.hs-menu-children-wrapper > li > a:after,
	.mega_menu_items .hs-menu-wrapper > ul > li.hs-item-has-children > ul.hs-menu-children-wrapper > li > a:after {
		content: '';
		display: block;
		height: 1px;
		transform: translateY(10px);
		width: 100%;
		background-color: var(--rood);
		opacity: 0.3;
	}
	.mega_menu_items .hs-menu-wrapper > ul > li.hs-item-has-children > ul.hs-menu-children-wrapper > li > ul.hs-menu-children-wrapper > li.hs-item-has-children > ul.hs-menu-children-wrapper {
		height: 0;
		max-height: 0;
		overflow: hidden;
		transition: 0.2s all;
	}
	.mega_menu_items .hs-menu-wrapper > ul > li.hs-item-has-children > ul.hs-menu-children-wrapper > li.active > ul.hs-menu-children-wrapper > li.hs-item-has-children.active > ul.hs-menu-children-wrapper {
		height: auto;
		max-height: 1800px;
		margin-top: 12px;
	}
	.mega_menu_items .hs-menu-wrapper > ul > li.hs-item-has-children > ul.hs-menu-children-wrapper > li > ul.hs-menu-children-wrapper > li.hs-item-has-children > ul.hs-menu-children-wrapper > li > a:after {
		content: '';
		width: calc(100% - 32px);
		height: 1px;
		display: block;
		background-color: white;
		opacity: 0.5;
	}
	.mega_menu_items .hs-menu-wrapper > ul > li.hs-item-has-children > ul.hs-menu-children-wrapper > li > ul.hs-menu-children-wrapper > li.hs-item-has-children > ul.hs-menu-children-wrapper > li > a {
		font-size: 18px;
		font-weight: 600;
		line-height: 48px;
		margin: 12px 0;
		color: var(--zwart);
		text-decoration: none;
		display: block;
	}
	.mega_menu_items .hs-menu-wrapper > ul > li.hs-item-has-children > ul.hs-menu-children-wrapper > li > ul.hs-menu-children-wrapper > li.hs-item-has-children > ul.hs-menu-children-wrapper > li > a:after {
		background-color: var(--rood);
		content: "";
		display: block;
		height: 1px;
		opacity: .3;
		transform: translateY(10px);
		width: 100%;
		}
	.mega_menu_items .hs-menu-wrapper > ul > li.hs-item-has-children > ul.hs-menu-children-wrapper > li.hs-item-has-children > ul.hs-menu-children-wrapper > li > a,
	.mega_menu_items .hs-menu-wrapper > ul > li.hs-item-has-children > ul.hs-menu-children-wrapper > li.hs-item-has-children > a {
		position: relative;
	}
	.mega_menu_items .hs-menu-wrapper > ul > li.hs-item-has-children > ul.hs-menu-children-wrapper > li.hs-item-has-children > ul.hs-menu-children-wrapper > li > a:before,
	.mega_menu_items .hs-menu-wrapper > ul > li.hs-item-has-children > ul.hs-menu-children-wrapper > li.hs-item-has-children > a:before {
		content: '';
		width: 24px;
		height: 16px;
		background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11.611' height='19.413' viewBox='0 0 11.611 19.413'%3E%3Cg id='Group_1789' data-name='Group 1789' transform='translate(-362.944 -209.487)'%3E%3Cline id='Line_75' data-name='Line 75' y1='7.846' x2='8.5' transform='translate(364.5 219.5)' fill='none' stroke='%23fff' stroke-linecap='round' stroke-width='2.2'/%3E%3Cline id='Line_76' data-name='Line 76' x2='8.5' y2='8.458' transform='translate(364.5 211.042)' fill='none' stroke='%23fff' stroke-linecap='round' stroke-width='2.2'/%3E%3C/g%3E%3C/svg%3E%0A");
		background-size: auto 16px;
		background-position: center;
		background-repeat: no-repeat;
		position: absolute;
		right: -32px;
		top: 10px;
		pointer-events: none;
		filter: var(--rood-filter);
	}
	.mega_menu_items .hs-menu-wrapper > ul > li.hs-item-has-children > ul.hs-menu-children-wrapper > li.hs-item-has-children > ul.hs-menu-children-wrapper > li > a:before {
		transform: rotate(90deg);
		transition: 0.2s all;
	}
	.mega_menu_items .hs-menu-wrapper > ul > li.hs-item-has-children > ul.hs-menu-children-wrapper > li.hs-item-has-children > ul.hs-menu-children-wrapper > li.active > a:before {
		transform: rotate(-90deg);
	}
	.mega_menu_blob {
		display: none;
	}
	.mega_menu_items .hs-menu-wrapper > ul > li.hs-item-has-children > ul.hs-menu-children-wrapper > li.hs-item-has-children > ul.hs-menu-children-wrapper {
		top: 72px;
		max-height: calc(100vh - (72px * 2));
	}
	li.item_terug {
		text-shadow: -0.3px 0px 0px var(--rood),
					-0.3px 0.3px 0px var(--rood),
					0px -0.3px 0px var(--rood),
					0px 0.3px 0px var(--rood),
					0.3px -0.3px 0px var(--rood),
					0.3px 0px 0px var(--rood); 
	}
	.mega_menu_items .hs-menu-wrapper>ul>li.hs-item-has-children>ul.hs-menu-children-wrapper>li.hs-item-has-children > ul {
		margin-top: -72px;
	}
}

@media (max-width: 500px) {
	.mega_menu_header #hs_cos_wrapper_site_search_mega .hs-search-field__input {
		font-size: 10px;
		letter-spacing: 1.1px;
	}
}

.stop-scroll {
	overflow: hidden !important;
	height: 100vh;
}

/* Template -> Expertise */
body.template-expertise .header {
	background-color: transparent;
}

body.template-expertise .header.scrolled {
	background-color: #FFF;
}

body.template-expertise .header:not(.scrolled) .header_rechts a.button.werken_bij_b {
	border: 1px solid var(--rood);
	color: var(--rood);
}

body.template-expertise .header:not(.scrolled) .header_rechts a.button.werken_bij_b.active {
	border: 1px solid var(--rood);
	color: white;
	background-color: rood;
}

body.template-expertise .header .header_rechts #hs_cos_wrapper_site_search label {
	filter: var(--rood-filter);
}

.expertise_hero {
	position: relative;
	z-index: 1;
	padding: 100px 20px 80px 20px;
}

.expertise_hero:before {
	content: '';
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	z-index: -1;
	width: 100vw;
	height: 100%;
	margin-left: calc(-100vw / 2 + 100% / 2);
	margin-right: calc(-100vw / 2 + 100% / 2);
	background-color: var(--expertise-kleur);
	opacity: 0.15;
}

.expertise_hero_intro {
	max-width: 810px;
}

.pagina_navigatie .label,
.expertise_hero_intro .label {
	font-size: 12px;
	line-height: 14px;
	margin-bottom: 8px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1.32px;
}

.expertise_hero_intro h1 {
	color: var(--expertise-kleur);
	font-size: 58px;
	line-height: 70px;
	margin-bottom: 24px;
}

body.template-expertise #hs_cos_wrapper_intro_tekst p {
	margin: 0;
}

@media (max-width: 767px) {
	.expertise_hero {
		padding: 84px 16px 56px 16px;
	}
	.expertise_hero_intro h1 {
		font-size: 40px;
		line-height: 48px;
		margin-bottom: 16px;
	}
	body.template-expertise blockquote {
		display: none;
	}
}

@media (max-width: 578px) {
	.expertise_hero_intro .label, .pagina_navigatie .label {
		font-size: 10px;
		letter-spacing: 1.1px;
		line-height: 1.3;
	}
}


/* Template -> Kunstwerken overzicht */
body.template-kunstwerken .body-container {
	padding: 0 16px;
}
.kunst_intro_tekst {
	margin-top: 32px;
	margin-bottom: 70px;
	font-size: 22px;
	line-height: 42px;
}

.kunstwerken_overzicht {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	margin-bottom: 64px;
}
.kunstwerken_overzicht * {
	transition: 0s;
}
.kunstwerken_overzicht > a {
	position: relative;
	width: 100%;
	overflow: hidden;
	border-radius: 20px;
	flex: 0 0 calc(33.33333% - 32px);
	display: inline-flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 40px 32px;
	color: white;
	text-decoration: none;
}
.kunstwerken_overzicht > a:after {
	content: '';
	height: 100%;
	width: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 2;
	opacity: 0;
	transition: 0.2s all;
	background-color: var(--rood);
}
.kunstwerken_overzicht > a:hover:after {
	opacity: 0.75;
}
.kunstwerken_overzicht > a figure {
	height: 100%;
	width: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
}
.kunstwerken_overzicht > a img {
	width: 100%;
	height: 100%;
	object-position: center;
	object-fit: cover;
}
.kunstwerken_overzicht > a > *:not(figure) {
	z-index: 3;
}
.kunstwerken_overzicht > a > p {
	font-size: 22px;
	line-height: 30px;
	margin-bottom: 16px;
	font-weight: 700;
}
.kunstwerken_overzicht > a > h3 {
	font-size: 18px;
	line-height: 30px;
	margin-bottom: 0px;
	font-weight: 400;
}
.kunstwerken_overzicht > a > span {
	font-size: 18px;
	line-height: 30px;
	margin-bottom: 0px;
	font-weight: 400;
	font-style: italic;
}

.kunst_uitleg_tekst {
	display: block;
	margin: 0 auto 100px auto;
	max-width: 1060px;
}

.kunst_uitleg_tekst ~ section.experts {
	margin-bottom: 64px;
}

@media (min-width: 1024px) {
	.kunstwerken_overzicht > a > p {
		opacity: 0;
	}
	.kunstwerken_overzicht > a:hover > p {
		opacity: 1;
	}
	.kunstwerken_overzicht > a > h3 {
		opacity: 0;
	}
	.kunstwerken_overzicht > a:hover > h3 {
		opacity: 1;
	}
	.kunstwerken_overzicht > a > span {
		opacity: 0;
	}
	.kunstwerken_overzicht > a:hover > span {
		opacity: 1;
	}
}

@media (max-width: 728px) {
	.kunstwerken_overzicht > a {
		padding: 24px;
	}
}

/* Template -> Kunstwerk single */
.kunstwerken_intro {
	width: 100vw;
	margin-left: calc(-50vw + 50%);
	margin-right: calc(-50vw + 50%);
	z-index: 0;
	position: relative;
	display: flex;
	align-items: center;
	box-sizing: border-box;
	z-index: 1;
	min-height: unset;
	mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='2560' height='57.333' version='1.0' viewBox='0 0 1920 43'%3E%3Cpath fill='%23FFF' d='M818.5 1.1c-43.6.8-87.4 2.2-142.5 4.4-41.4 1.7-51.7 2.2-147 7.5-179.6 9.9-373 19.3-511 24.8C.9 38.5.5 38.5.2 40.7L-.1 43H1920V22.9l-17.2.8c-29.1 1.3-309.4 1-353.8-.5-78.7-2.5-119.2-4.4-199.5-9.2C1149.7 2 985-2.1 818.5 1.1'/%3E%3C/svg%3E"), linear-gradient(#000 0 0);
	mask-position: center bottom -2px;
	mask-repeat: no-repeat;
	mask-size: 100% auto;
	mask-composite: exclude;
	-webkit-mask-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='2560' height='57.333' version='1.0' viewBox='0 0 1920 43'%3E%3Cpath fill='%23FFF' d='M818.5 1.1c-43.6.8-87.4 2.2-142.5 4.4-41.4 1.7-51.7 2.2-147 7.5-179.6 9.9-373 19.3-511 24.8C.9 38.5.5 38.5.2 40.7L-.1 43H1920V22.9l-17.2.8c-29.1 1.3-309.4 1-353.8-.5-78.7-2.5-119.2-4.4-199.5-9.2C1149.7 2 985-2.1 818.5 1.1'/%3E%3C/svg%3E"), linear-gradient(#000 0 0);
	-webkit-mask-position: center bottom -2px;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-size: 100% auto;
	-webkit-mask-composite: exclude;
	padding: 100px 0 120px 0;
	margin-top: -2px;
}
.kunstwerken_intro .kunstwerken_intro_background {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: 1;
}
.kunstwerken_intro .kunstwerken_intro_background img,
.kunstwerken_intro .kunstwerken_intro_background video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.kunstwerken_intro .kunstwerken_intro_content {
	position: relative;
	z-index: 2;
	max-width: calc(var(--container-breedte) + 32px);
	padding: 0 16px;
	width: 100%;
	margin: auto auto 0 auto;
}

.kunstwerken_intro .kunstwerken_intro_content :is(h1,p) {
	color: white;
	display: block;
	max-width: 1312px;
	width: 100%;
}

.kunstwerken_intro .kunstwerken_intro_content h1 {
	text-shadow: 0px 1px 20px rgba(0, 0, 0, 0.12);
	margin-top: 0;
	margin-bottom: 78px;
	text-shadow: none;
	font-size: 58px;
	line-height: 70px;
}

.kunstwerken_intro .kunstwerken_intro_content p {
	font-size: 30px;
	line-height: 49px;
	margin-bottom: 75px;
}

.kunstwerken_intro .kunstwerken_intro_content:not(:has(.kunstwerken_intro_knoppen)) h1:has(+ p:empty) {
	margin-bottom: 120px;
}

.kunstwerken_intro .kunstwerken_intro_content p:empty {
	display: none;
}

@media (max-width: 1400px) {
	.kunstwerken_intro .kunstwerken_intro_content h1 {
		font-size: 48px;
		line-height: 56px;
	}
}

@media (max-width: 890px) {
	.kunstwerken_intro .kunstwerken_intro_content h1 {
		font-size: 40px;
		line-height: 48px;
	}
}

@media (max-width: 768px) {
	.kunstwerken_intro {
		mask-size: 200% auto;
		-webkit-mask-size: 200% auto;
		mask-position: left 66% bottom -2px;
		-webkit-mask-position: left 66% bottom -2px;
		padding: 100px 0 80px 0;
	}

	.kunstwerken_intro .kunstwerken_intro_content {
		margin: 20px auto 0;
	}

	.transitie_hero .kunstwerken_intro .kunstwerken_intro_content h1 {
		margin-top: 0;
	}

	.kunstwerken_intro .kunstwerken_intro_content h1 {
		margin-bottom: 16px;
	}
}

.kunstwerken_content {
	display: flex;
	gap: 124px;
	margin-top: 32px;
	margin-bottom: 100px;
	align-items: flex-start;
}

.kunstwerken_content > div {
	flex: 1;
}

.kunstwerken_content_titel {
	margin-bottom: 40px;
}
.kunstwerken_content_titel > * {
	font-size: 22px;
	line-height: 30px;
	font-weight: 700;
	margin: 0;
}
.kunstwerken_content_titel > a {
	text-decoration: none;
	color: var(--rood);
}
.kunstwerken_content_titel > a:hover {
	text-decoration: underline;
}
.kunstwerken_content_titel > h3 {
	font-style: italic;
}
.kunstwerken_content_titel > span {
	font-weight: 400;
	font-style: italic;
}

.kunstwerken_content_meta {
	margin-bottom: 40px;
}
.kunstwerken_content_meta > span {
	font-weight: 700;
	font-size: 14px;
	line-height: 18px;
	margin-bottom: 8px;
}
.kunstwerken_content_meta:not(:has(> span)) {
	display: none;
}

.kunstwerken_content > a figure {
	flex: 0 0 530px;
	position: sticky;
	top: 32px;
}
.kunstwerken_content > a figure img {
	border-radius: 20px;
}

.kunstwerken_details {
	display: flex;
	flex-wrap: wrap;
	gap: 46px;
	margin-bottom: 124px;
}
.kunstwerken_details > a {
	flex: 0 0 calc(33.33% - ((46px * 2) * 0.333));
}
.kunstwerken_details figure {
	aspect-ratio: 1/1;	
}
.kunstwerken_details figure img {
	width: 100%;
	height: 100%;
	object-position: center;
	object-fit: cover;
	border-radius: 20px;
}

@media (max-width: 950px) {
	.kunstwerken_content {
		gap: 46px;
	}
	.kunstwerken_content > :is(div, figure) {
		flex: 1 0 45%;
	}
}

@media (max-width: 850px) {
	.kunstwerken_details > a {
		flex: 0 0 calc(50% - ((46px * 2) * 0.333));
	}
}

@media (max-width: 720px) {
	.kunstwerken_content {
		flex-direction: column;
	}
	.kunstwerken_content > :is(div, figure) {
		flex: 1 0 100%;
	}
}


@media (max-width: 500px) {
	.kunstwerken_details > a {
		flex: 1 0 100%;
	}
}


/* Template -> Kunstenaar */
body.template-kunstenaar .body-container {
	padding: 124px 16px 0 16px;
}

body.template-kunstenaar .body-container > h1 {
	color: var(--rood);
	margin-bottom: 40px;
}
@media (min-width: 1400px) {
	body.template-kunstenaar .body-container > h1 {
		font-size: 58px;
		line-height: 70px;
	}
}

.kunstenaar_info {
	display: flex;
	align-items: flex-start;
	gap: 124px;
	margin-bottom: 124px;
}

.kunstenaar_info figure {
	aspect-ratio: 1/1;
	flex: 0 0 310px;
	position: sticky;
	top: 32px;
}
.kunstenaar_info figure img {
	border-radius: 20px;
	width: 100%;
	height: 100%;
	object-position: center;
	object-fit: cover;
}

.kunstenaar_info > div {
	flex: 1;
}

.kunstenaar_info > div blockquote,
.kunstenaar_info > div blockquote p {
	font-size: 22px;
	line-height: 42px;
	margin-bottom: 30px;
}

@media (max-width: 950px) {
	.kunstenaar_info {
		gap: 46px;
	}
	.kunstenaar_info > :is(div, figure) {
		flex: 1 0 45%;
		top: unset;
		position: relative;
	}
}

@media (max-width: 720px) {
	.kunstenaar_info {
		flex-direction: column;
	}
	.kunstenaar_info > :is(div, figure) {
		flex: 1 0 100%;
	}
}

@media (max-width: 410px) {	
	.kunstenaar_info > div blockquote,
	.kunstenaar_info > div blockquote p {
		font-size: 18px;
		line-height: 28px;
	}
}


/* Partial -> Pagina navigatie */
body:not(.hubspot-disable-focus-styles) .anchor_item {
	max-height: 0;
	height: 0;
	font-size: 0;
	line-height: 0;
}

body.hubspot-disable-focus-styles .anchor_item {
	display: block;
	opacity: 0.6;
	font-style: italic;
	font-size: 14px;
	line-height: 14px;
}

body.hubspot-disable-focus-styles .dnd-section:has(span.anchor_item),
body.hubspot-disable-focus-styles .hs_cos_wrapper:has(span.anchor_item) {
	padding-top: 0 !important;
	padding-bottom: 0 !important;
	line-height: 14px !important;
}

body.hubspot-disable-focus-styles .dnd-section .row-fluid:has(span.anchor_item) {
	font-size: 0;
	height: 32px;
	line-height: 14px !important;
}

.pagina_navigatie {
	position: sticky;
	top: 0;
	z-index: 98;
	padding: 0 20px;
	display: flex;
	gap: 40px;
	line-height: 32px;
	transition: 0.3s all;
}
.pagina_navigatie + div {
	padding-top: 40px;
}

.pagina_navigatie:before {
	content: '';
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	z-index: -2;
	width: 100vw;
	height: 100%;
	margin-left: calc(-100vw / 2 + 100% / 2);
	margin-right: calc(-100vw / 2 + 100% / 2);
	background-color: white;
}

.pagina_navigatie:after {
	content: '';
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	z-index: -1;
	width: 100vw;
	height: 100%;
	margin-left: calc(-100vw / 2 + 100% / 2);
	margin-right: calc(-100vw / 2 + 100% / 2);
	background-color: var(--expertise-kleur);
	opacity: 0.3;
}

.pagina_navigatie .label {
	font-weight: 600;
	line-height: 32px;
	margin-bottom: 0;
	font-family: var(--font);
}

.pagina_navigatie > div {
	display: flex;
	gap: 4px 24px;
	flex-wrap: wrap;
}

.pagina_navigatie > div a {
	font-size: 12px;
	line-height: 32px;
	margin-bottom: 8px;
	font-weight: 500;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 1.32px;
	margin-bottom: 0;
	color: var(--zwart);
	position: relative;
	transition: 0.2s all;
}

.pagina_navigatie > div a:hover {
	color: var(--rood);
}

.pagina_navigatie > div a.active:after {
	content: '';
	position: absolute;
	height: 2px;
	top: 100%;
	left: 0;
	width: 100%;
	background-color: #707070;
}
@media (max-width: 767px) {
	.pagina_navigatie {
		display: none
	}
	.pagina_navigatie + .body-container {
		
	}
}

/* HS Core -> Body margins */
.tg-body > .body-container > .row-fluid-wrapper > .row-fluid > .widget-span > .row-fluid-wrapper:not(:first-of-type) {
	padding-top: var(--padding-l);
	padding-bottom: var(--padding-l);
}

/* HS Core -> Achtergrond pseudo elementen */
div[class*='max-width-section-centering'][class*='background-color'],
div[class*='force-full-width-section'] {
	position: relative;
	padding: 80px var(--padding-s) 100px var(--padding-s) !important;
	width: 100vw;
	margin-left: calc(-100vw / 2 + 100% / 2);
	margin-right: calc(-100vw / 2 + 100% / 2);
}

div[class*='force-full-width-section'] .row-fluid {
	clear: both;
	margin: 0 auto;
	max-width: var(--container-breedte) !important;
}

div[class*='force-full-width-section']:before, div[class*='force-full-width-section']:after {
	content: '';
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1919.764' height='66.289' viewBox='0 0 1919.764 66.289'%3E%3Cpath id='Path_2' data-name='Path 2' d='M0,519.278c344.152-2.739,902.1-46.018,1919.764-6.919V453.04L0,452.989S0,493.81,0,519.278Z' transform='translate(0 -452.989)' fill='%23fff'/%3E%3C/svg%3E%0A");
	background-size: 100% auto;
	background-repeat: no-repeat;
	width: 100vw;
	height: 80px;
	position: absolute;
	left: 0;
	top: -1px;
	pointer-events: none;
}

div[class*='force-full-width-section']:after {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1919.764' height='44.789' viewBox='0 0 1919.764 44.789'%3E%3Cpath id='Path_3' data-name='Path 3' d='M0,519.278c344.152-2.739,901.28-30.356,1919.764-1.342V474.489H0S0,493.81,0,519.278Z' transform='translate(1919.764 519.278) rotate(180)' fill='%23fff'/%3E%3C/svg%3E%0A");
	background-position: bottom;
	bottom: -1px;
	top: unset;
}

@media (min-width: 1640px) {
	div[class*=force-full-width-section]:after, div[class*=force-full-width-section]:before {
		height: 120px;
	}
	div[class*=force-full-width-section]:before {
		top: -40px;
	}
}

@media (max-width: 768px) {
	div[class*='force-full-width-section'] {
		padding: 80px var(--padding-s) !important;
	}
}

/* HS Core -> DnD sectie met achtergrond kleur */
div[class*='max-width-section-centering'][class*='background-color'] {
	position: relative;
	padding: 60px var(--padding-s) 60px var(--padding-s) !important;
	width: 100vw;	
	margin-left: calc(-100vw / 2 + 100% / 2);
	margin-right: calc(-100vw / 2 + 100% / 2);
	margin-top: 40px;
	margin-bottom: 40px;
}

/* HS Core -> DnD sectie */
body:not(.hubspot-disable-focus-styles) .dnd-section:has(span.anchor_item),
.hs_cos_wrapper:has(span.anchor_item) {
	padding-top: 0 !important;
	padding-bottom: 0 !important;
	line-height: 0 !important;
}

body:not(.hubspot-disable-focus-styles) .dnd-section .row-fluid:has(span.anchor_item) {
	font-size: 0;
	height: 0;
	line-height: 0 !important;
}


/* HS Core -> Video */
.hs-video-widget {
	border-radius: 20px;
	overflow: hidden;
}

.vjs-hubspot .vjs-big-play-button {
	background-color: transparent !important;
}


/* HS Core -> Rich text (Minder margin) */
.hs_cos_wrapper_type_rich_text h2 {
	margin-bottom: 22px;
}


/* Template -> Chatmodule */
.expertise_hero_boxes {
	display: flex;
	gap: 16px;
	width: 100%;
	margin-top: 80px;
	z-index: 0;
}
.expertise_hero_boxes > .expertise_hero_box_slider {
	display: flex;
	gap: 16px;
	width: calc(75% + 8px);
	align-self: flex-end;
}
.expertise_hero_boxes > .chatmodule {
	width: calc(25% - 8px);
	position: relative;
	z-index: 1;
	justify-content: space-between;
}
.expertise_hero_boxes > .chatmodule .chat_gpt_box {
	height: 100%;
}

.expertise_hero_boxes svg {
	content: '';
	position: absolute;
	left: 0;
	bottom: 80px;
	width: 100vw;
	display: block;
	margin-left: calc(-100vw / 2 + 100% / 2);
	margin-right: calc(-100vw / 2 + 100% / 2);
	stroke: var(--expertise-kleur);
	stroke-width: 3;
}
.expertise_hero_box {
	flex: 1 0 25%;
	border-radius: 20px;
	background-color: white;
	padding: 24px 16px 16px 16px;
	display: flex;
	flex-direction: column;
	position: relative;
	z-index: 1;
}
.expertise_hero_box h4 {
	margin-bottom: 12px;
}
.expertise_hero_box p {
	margin-bottom: 24px;
	font-size: 14px;
	line-height: 24px;
}
.expertise_hero_box a.button {
	position: unset;
	margin-top: auto;
	align-self: flex-start;
	background-color: var(--expertise-kleur);
}
.expertise_hero_box a:after {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 1;
}
.expertise_hero_boxes .chat_gpt_box #sendchat {
	background-color: var(--expertise-kleur);	
}

@media (min-width: 1150px) {
	.expertise_hero_boxes> .chatmodule .chat_gpt_box.expanded {
		top: 100px;
	}
}

@media (max-width: 1450px) {
	.expertise_hero_boxes svg {
		stroke-width: 6;
		overflow: visible;
	}
}
@media (max-width: 1120px) {
	.expertise_hero_boxes svg {
		stroke-width: 9;
	}
}
@media (max-width: 1000px) {
	.expertise_hero_boxes svg {
		stroke-width: 12;
	}
	.expertise_hero_boxes {
		flex-wrap: wrap;
	}
	.expertise_hero_boxes > .expertise_hero_box_slider {
		margin-bottom: 42px;
		width: 100%;
	}
	.expertise_hero_boxes > .chatmodule {
		width: 100%;
	}
}

@media (max-width: 650px) {
	.expertise_hero_boxes .expertise_hero_box_slider {
		display: block;
	}
	.expertise_hero_box_slider .slick-slide {
		margin: 0 8px;
	}
	.expertise_hero_box_slider .slick-list {
		margin: 0 -8px;
	}
	.expertise_hero_box_slider .slick-dots {
		display: flex;
		align-content: center;
		justify-content: center;
		width: 100%;
		margin-top: 18px;
		gap: 10px;
	}
	.expertise_hero_box_slider .slick-dots li button {
		font-size: 0;
		display: block;
		border-radius: 100%;
		width: 18px;
		height: 18px;		
		max-width: 18px;
		max-height: 18px;
		box-sizing: border-box;
		border: 2px solid white;
		background-color: white;
		outline: 0;
		aspect-ratio: 1/1;
		padding: 0;
	}
	.expertise_hero_box_slider .slick-dots li.slick-active button {
		background-color: var(--expertise-kleur);
	}
}

@media (max-width: 768px) {
	.dnd-column .row-fluid .chatmodule {
		margin-top: 26px;
	}
}

@media (max-width: 578px) {
	.expertise_hero_boxes {
		margin-top: 32px;
	}
}


/* Template -> Transitie */

.transitie_hero {
	position: relative;
}

.transitie_hero .intro_banner {
	min-height: 400px;
	overflow: hidden;
}

.transitie_hero #siri-container {
	position: absolute;
	inset: 0;
	z-index: 1;
}

.transitie_hero .stripe-animation {
	position: absolute;
	inset: 0;
	z-index: 1;
	width: 100vw;
	height: calc(100% + 40px);
	margin-left: -620px;
}

.transitie_hero .stripe-animation-yellow {
	margin-left: -830px;
}

.transitie_hero .stripe-animation path {
	transform: translate(140px, 0);
}

.transitie_hero :is(.stripe-animation, .stripe-animation-yellow) {
	transform: scale(1.5);
	margin-top: 120px;
}

@media only screen and (min-width: 2240px) {
	.transitie_hero :is(.stripe-animation, .stripe-animation-yellow) {
		max-width: 1340px;
	}
}

@media only screen and (min-width: 1320px) {
	.transitie_hero .stripe-animation {
		width: 70vw;
		margin-left: -100px;
	}

	.transitie_hero .stripe-animation-yellow {
		margin-left: -300px;
	}
}

@media only screen and (max-width: 1320px) {
	.transitie_hero .stripe-animation {
		margin-left: -440px;
	}

	.transitie_hero .stripe-animation-yellow {
		margin-left: -660px;
	}
}

@media only screen and (max-width: 1080px) {
	.transitie_hero .stripe-animation {
		margin-left: -350px;
	}

	.transitie_hero .stripe-animation-yellow {
		margin-left: -480px;
	}
}

@media only screen and (max-width: 860px) {
	.transitie_hero :is(.stripe-animation,.stripe-animation-yellow) {
		margin-top: 130px;
	}
}

@media only screen and (max-width: 790px) {
	.transitie_hero .stripe-animation {
		margin-left: -260px;
	}

	.transitie_hero .stripe-animation-yellow {
		margin-left: -380px;
	}
}

@media only screen and (max-width: 720px) {
	.transitie_hero .stripe-animation {
		margin-left: -160px;
	}
	
	.transitie_hero .stripe-animation-yellow {
		margin-left: -210px;
	}

	.transitie_hero :is(.stripe-animation,.stripe-animation-yellow) {
		transform: scale(0.9);
	}
}

@media only screen and (max-width: 640px) {
	.transitie_hero :is(.stripe-animation,.stripe-animation-yellow) {
		transform: scale(1.1);
	}
}

@media only screen and (min-width: 576px) {
	.intro_banner .intro_banner_background:has(.stripe-animation):after {
		display: none;
	}
}

@media only screen and (max-width: 576px) {
	.transitie_hero :is(.stripe-animation,.stripe-animation-yellow) {
		display: none;
	}
}


@media only screen and (max-width: 600px) {
	.transitie_hero .intro_banner {
		min-height: 390px;
	}
}

.transitie_hero .intro_banner .intro_banner_content h1 {
	margin-top: 120px;
	font-size: 58px;
	letter-spacing: 0;
}

@keyframes stripe {
	0% {
		background-position: 0 0;
	}
	100% {
		background-position: -100vw 0;
	}
}


/* Template -> Inzichten / Opdrachten / Aanpakken algemeen */
body:is(.template-opdrachten-post) .header {
	background-color: var(--grijs);
}
body:is(.template-opdrachten-post) .header.scrolled {
	background-color: var(--grijs);
}

body:is(.template-inzichten-post, .template-aanpakken-post) .header {
	background-color: white;
}
body:is(.template-inzichten-post, .template-aanpakken-post) .header.scrolled {
	background-color: white;
}

body:is(.template-opdrachten-post, .template-inzichten-post, .template-aanpakken-post) .header:not(.scrolled) .header_rechts a.button.werken_bij_b {
	border: 1px solid var(--rood);
	color: var(--rood);
}

body:is(.template-opdrachten-post, .template-inzichten-post, .template-aanpakken-post) .header:not(.scrolled) .header_rechts a.button.werken_bij_b.active {
	border: 1px solid var(--rood);
	color: white;
	background-color: rood;
}

body:is(.template-opdrachten-post, .template-inzichten-post, .template-aanpakken-post) .header .header_rechts #hs_cos_wrapper_site_search label {
	filter: var(--rood-filter);
}

body:is(.template-opdrachten-post, .template-inzichten-post, .template-aanpakken-post) #hs_cos_wrapper_post_body p:has(+ :is(h2, h3, h4, h5)) {
	margin-bottom: 40px;
}
@media (min-width: 890px) {
	body:is(.template-opdrachten-post, .template-inzichten-post, .template-aanpakken-post) #hs_cos_wrapper_post_body h2 {
		font-size: 32px;
		line-height: 38px;
	}
}

section.bg-geel {
	padding-top: 56px;
	padding-bottom: 56px;
	position: relative;
	z-index: 0;

	&:before {
		content: '';
		display: block;
		position: absolute;
		left: 0;
		top: 0;
		z-index: -1;
		width: 100vw;
		height: 100%;
		margin-left: calc(-100vw / 2 + 100% / 2);
		margin-right: calc(-100vw / 2 + 100% / 2);
		background-color: #DBC980;
		mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1995.887 48.96'%3E%3Cpath fill='%23fff' d='M0 30.637s69.281-10.1 494.877-12.746c563.7-3.506 1046.371 32.986 1283.551 13.747S1995.461 0 1995.461 0l.416 48.413L0 48.96Z' data-name='Path 948'/%3E%3C/svg%3E"), linear-gradient(#000 0 0);
		mask-position: center bottom -2px;
		mask-repeat: no-repeat;
		mask-size: 100% auto;
		mask-composite: exclude;
		-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1995.887 48.96'%3E%3Cpath fill='%23fff' d='M0 30.637s69.281-10.1 494.877-12.746c563.7-3.506 1046.371 32.986 1283.551 13.747S1995.461 0 1995.461 0l.416 48.413L0 48.96Z' data-name='Path 948'/%3E%3C/svg%3E"), linear-gradient(#000 0 0);
		-webkit-mask-position: center bottom -2px;
		-webkit-mask-repeat: no-repeat;
		-webkit-mask-size: 100% auto;
		-webkit-mask-composite: exclude;
	}

	:is(h1, h2, h3, h4, h5, h6) {
		color: #5B5D34;
	}
	.button {
		background-color: #5B5D34;
		color: #DBC980;
	}
}

section.bg-donkerrood {
	padding-top: 56px;
	padding-bottom: 56px;
	position: relative;
	z-index: 0;

	&:before {
		content: '';
		display: block;
		position: absolute;
		left: 0;
		top: 0;
		z-index: -1;
		width: 100vw;
		height: 100%;
		margin-left: calc(-100vw / 2 + 100% / 2);
		margin-right: calc(-100vw / 2 + 100% / 2);
		background-color: #692B28;
	}

	:is(p, h1, h2, h3, h4, h5, h6) {
		color: #fff;
	}
}

section.bg-wit {
	padding-top: 56px;
	padding-bottom: 56px;
	position: relative;
	z-index: 0;

	&:before {
		content: '';
		display: block;
		position: absolute;
		left: 0;
		top: 0;
		z-index: -1;
		width: 100vw;
		height: 100%;
		margin-left: calc(-100vw / 2 + 100% / 2);
		margin-right: calc(-100vw / 2 + 100% / 2);
		background-color: white;
	}
}

.tags {
	margin-top: 24px;
	display: flex;
	flex-wrap: wrap;
	gap: 8px 16px;
	margin-bottom: 40px;

	.tag {
		background-color: #ffffff;
		color: var(--zwart);
		font-size: 11px;
		line-height: 16px;
		font-weight: 700;
		padding: 10px 32px;
		border-radius: 20px;
		text-transform: uppercase;
		text-decoration: none;
		white-space: nowrap;
	}
	.tag:hover {
		background-color: var(--rood);
		color: #fff;
	}
}
@media (max-width: 550px) {
	.tags {
		gap: 8px 12px;
	}
}

.blog-hero {
	padding-top: 100px;

	h1 {
		margin-bottom: 8px;
	}

	p {
		margin-bottom: var(--padding-l);
	}
}

/* Template -> Inzichten enkel */
.body-container-inzichten-post {
	position: relative;
}
.body-container-inzichten-post > * {
	padding-left: 16px;
	padding-right: 16px;
}
.body-container-inzichten-post:before {
	content: '';
	background-color: var(--grijs);
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	z-index: -1;
	width: 100vw;
	height: 100%;
	margin-left: calc(-100vw / 2 + 100% / 2);
	margin-right: calc(-100vw / 2 + 100% / 2);
}
.inzichten_single_intro {	
	padding-top: 100px;
	padding-bottom: 100px;
	position: relative;
	z-index: 3;

	&:before {
		content: '';
		display: block;
		position: absolute;
		left: 0;
		top: 0;
		z-index: -1;
		width: 100vw;
		height: 100%;
		margin-left: calc(-100vw / 2 + 100% / 2);
		margin-right: calc(-100vw / 2 + 100% / 2);
		background-color: white;
		mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1919.523 159.184'%3E%3Cpath fill='%23fff' d='M0 106.549s267.307 26.037 899.346 25.975S1919.524.001 1919.524.001l-.436 159.184H0Z'/%3E%3C/svg%3E"), linear-gradient(#000 0 0);
		mask-position: center bottom -2px;
		mask-repeat: no-repeat;
		mask-size: 100% auto;
		mask-composite: exclude;
		-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1919.523 159.184'%3E%3Cpath fill='%23fff' d='M0 106.549s267.307 26.037 899.346 25.975S1919.524.001 1919.524.001l-.436 159.184H0Z'/%3E%3C/svg%3E"), linear-gradient(#000 0 0);
		-webkit-mask-position: center bottom -2px;
		-webkit-mask-repeat: no-repeat;
		-webkit-mask-size: 100% auto;
		-webkit-mask-composite: exclude;
	}

	h1 {
		color: var(--rood);
		margin-bottom: 32px;
	}
	@media(min-width: 1400px) {
		h1 {
			font-size: 58px;
			line-height: 66px;
		}
	}
	.inzichten_single_intro_meta {
		display: flex;
		gap: 124px;
		margin-top: 24px;
	}
	.inzichten_single_intro_meta #hs_cos_wrapper_samenvatting p {
		flex: 1;
	}
	@media (min-width: 890px) {
		.inzichten_single_intro_meta #hs_cos_wrapper_samenvatting p {
			font-size: 22px;
			line-height: 42px;
		}
	}
	.inzichten_single_intro_meta > div {
		flex: 1 0 300px;
		padding: 24px 16px;
		background-color: var(--grijs);
		border-radius: 20px;
		align-self: flex-start;
	}
	.inzichten_single_intro_meta > div p {
		margin-bottom: 12px;

		a {
			color: var(--zwart);
			text-decoration: underline;
		}

		a:hover {
			color: var(--rood);
		}
	}
	.inzichten_single_intro_meta > div p.leestijd_blog {
		margin-bottom: 0;
	}

	.tags .tag {
		background-color: var(--grijs);
	}
	.tags .tag:hover {
		background-color: var(--rood);
	}

}


.uitgelichte_afbeelding {
	position: relative;
	z-index: 2;
	margin-top: -250px;
	width: 100vw;
	height: 600px;
	margin-left: calc(-100vw / 2 + 100% / 2);
	margin-right: calc(-100vw / 2 + 100% / 2);
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1922.71 162.32'%3E%3Cpath fill='%23fff' d='M.028 12.934s287.709-44.543 944.162 31.7c563.236 65.416 726.717 126.1 978.52 107.754l-.065 9.9L0 162.321Z' data-name='Path 950'/%3E%3C/svg%3E"), linear-gradient(#000 0 0);
	mask-position: center bottom -2px;
	mask-repeat: no-repeat;
	mask-size: 100% auto;
	mask-composite: exclude;
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1922.71 162.32'%3E%3Cpath fill='%23fff' d='M.028 12.934s287.709-44.543 944.162 31.7c563.236 65.416 726.717 126.1 978.52 107.754l-.065 9.9L0 162.321Z' data-name='Path 950'/%3E%3C/svg%3E"), linear-gradient(#000 0 0);
	-webkit-mask-position: center bottom -2px;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-size: 100% auto;
	-webkit-mask-composite: exclude;
	padding-left: 0;
	padding-right: 0;

	img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		object-position: center;
	}
}

.body-container-inzichten-post article {
	max-width: 1074px;
	margin: 0 auto;
}

.body-container-inzichten-post .bg-geel:has(+ .bg-wit) {
	z-index: 2;
}

.body-container-inzichten-post .bg-geel + .bg-wit {
	margin-top: -64px;
	padding-top: 112px;
	z-index: 1;
}

@media (max-width: 1000px) {
	.inzichten_single_intro {
		padding-bottom: 48px;
	}
	.inzichten_single_intro .inzichten_single_intro_meta {
		gap: 32px;
	}
	.uitgelichte_afbeelding {
		margin-bottom: 48px;
	}
}

@media (max-width: 656px) {
	.inzichten_single_intro {
		padding-bottom: 48px;
	}
	.inzichten_single_intro .inzichten_single_intro_meta {
		flex-direction: column;
		gap: 0;
	}
	.inzichten_single_intro .inzichten_single_intro_meta > div {
		width: 100%;
		flex: 0;
	}
	.uitgelichte_afbeelding {
		height: 500px;
	}
}

/* Template -> Opdracht enkel */
.body-container-opdracht > * {
	padding-left: 16px;
	padding-right: 16px;
}

.opdracht_single_intro {	
	padding-top: 100px;
	padding-bottom: 100px;
	position: relative;

	h1 {
		color: var(--rood);
	}
	@media(min-width: 1400px) {
		h1 {
			font-size: 58px;
			line-height: 66px;
		}
	}
	figure {
		max-width: 100%;
		margin-bottom: 24px;
	}
	figure img {
		max-height: 420px;
		max-width: 100%;
		object-fit: cover;
		margin-bottom: 8px;
		border-radius: 20px;
		overflow: hidden;
	}
	figure span {
		display: block;
		font-size: 18px;
		line-height: 24px;
		color: #7C7C7C;
	}
	.opdracht_single_intro_meta {
		display: flex;
		gap: 124px;
		margin-top: 24px;
	}
	@media (min-width: 676px) {
		.opdracht_single_intro_meta #hs_cos_wrapper_samenvatting p {
			flex: 1;
			font-size: 22px;
			line-height: 42px;
		}
	}
	.opdracht_single_intro_meta > div {
		flex: 1 0 300px
	}	
	.opdracht_single_intro_meta > div p {
		margin-bottom: 12px;
	}
	.tags {
		margin-top: 32px;
	}
}
.opdracht_single_intro:before {
	content: '';
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	z-index: -1;
	width: 100vw;
	height: 100%;
	margin-left: calc(-100vw / 2 + 100% / 2);
	margin-right: calc(-100vw / 2 + 100% / 2);
	background-color: var(--grijs);
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1921.107' height='129.031' viewBox='0 0 1921.107 129.031'%3E%3Cpath id='Path_644' data-name='Path 644' d='M-6426.65-18954.049s325.752,31.121,957.791,31.059,963.178-97.523,963.178-97.523l.139,129.031-1921.066-.418Z' transform='translate(6426.65 19020.514)' fill='%23fff'/%3E%3C/svg%3E%0A"), linear-gradient(#000 0 0);
	mask-position: center bottom -2px;
	mask-repeat: no-repeat;
	mask-size: 100% auto;
	mask-composite: exclude;
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1921.107' height='129.031' viewBox='0 0 1921.107 129.031'%3E%3Cpath id='Path_644' data-name='Path 644' d='M-6426.65-18954.049s325.752,31.121,957.791,31.059,963.178-97.523,963.178-97.523l.139,129.031-1921.066-.418Z' transform='translate(6426.65 19020.514)' fill='%23fff'/%3E%3C/svg%3E%0A"), linear-gradient(#000 0 0);
	-webkit-mask-position: center bottom -2px;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-size: 100% auto;
	-webkit-mask-composite: exclude;
}
.body-container-opdracht #hs_cos_wrapper_post_body > :is(p, h2, h3, h4, h5, h6) {
	max-width: 1074px;
	margin-left: auto;
	margin-right: auto;
}
.body-container-opdracht #hs_cos_wrapper_post_body .hs_cos_wrapper:has(> .so-usps) + :is(p, h2, h3, h4, h5, h6) {
	margin-top: 80px;
}
.body-container-opdracht #hs_cos_wrapper_post_body p + h2 {
	margin-top: 64px;
}
.body-container-opdracht #hs_cos_wrapper_post_body p + h3 {
	margin-top: 48px;
}
.body-container-opdracht #hs_cos_wrapper_post_body + .tags {
	margin-top: 64px;
	margin-bottom: 50px;
}
.body-container-opdracht #hs_cos_wrapper_post_body + .tags .tag {
	background-color: var(--grijs);
}
.body-container-opdracht #hs_cos_wrapper_post_body + .tags .tag:hover {
	background-color: var(--rood);
}

blockquote.klantvraag {
	font-size: 30px;
	line-height: 40px;
	font-family: var(--font-alt);
	max-width: 1074px;
	margin: 56px auto;
	text-align: center;
}
.klantlogo {
	height: 100%;
	margin: 64px auto;
	display: block;
	text-align: center;

	img {
		display: block;
		margin: 0 auto;
	}
}
.body-container-opdracht section.bg-beige .domein-module-uitklap,
.body-container-opdracht section.bg-beige .domein-module-uitklap:before {
	background-color: #F4EFD9;
}
.body-container-opdracht section.bg-beige .domein-module-info a {
	background-color: #5B5C34;
}
.body-container-opdracht section.bg-beige .domein-module-berichten .domein-module-bericht p:after {
	filter: brightness(0) saturate(100%) invert(34%) sepia(4%) saturate(4543%) hue-rotate(23deg) brightness(93%) contrast(86%);
}
.body-container-opdracht section.bg-beige .domein-module-berichten .slick-dots li button {
	background-color: #fff;
	border: 2px solid #fff;
}
.body-container-opdracht section.bg-beige .domein-module-berichten .slick-dots li.slick-active button {
	background-color: #5B5C34;
}

body:has(.body-container-opdracht .bg-donkerrood) footer {
	margin-top: -40px;
}
body:has(.body-container-opdracht .bg-donkerrood) footer .slogan {
	color: white;
}
body:has(.body-container-opdracht .bg-donkerrood) .footer:before {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1919.328' height='77.047' viewBox='0 0 1919.328 77.047'%3E%3Cpath id='Path_1' data-name='Path 1' d='M0,686.328S136.335,652.081,461.918,664.7s548.554,48.464,807.639,50.882,245.227,4,649.772,0V640.975H0Z' transform='translate(0 -640.975)' fill='%23692B28'/%3E%3C/svg%3E%0A");
}

@media (max-width: 1000px) {
	.opdracht_single_intro .opdracht_single_intro_meta {
		gap: 32px;
	}
}
@media (max-width: 656px) {
	.tags {
		margin-bottom: 24px;
	}
	.opdracht_single_intro {
		padding-bottom: 48px;
	}
	.opdracht_single_intro .opdracht_single_intro_meta {
		flex-direction: column-reverse;
		gap: 0;
	}
	.opdracht_single_intro figure image {
		margin-bottom: 0;
	}
	.opdracht_single_intro figure span {
		font-size: 14px;
	}
	.klantlogo {
		margin: 32px auto;
	}
	blockquote.klantvraag {
		font-size: 24px;
		line-height: 32px;
	}
	.body-container-opdracht #hs_cos_wrapper_post_body .hs_cos_wrapper:has(> .so-usps) + :is(p, h2, h3, h4, h5, h6) {
		margin-top: 32px;
	}
}

/* Template -> Opdracht overzicht */
.template-opdrachten-index .blog-item {
	background-color: #EDEEE5;

	a {
		background-color: #5B5C34;
	}

	h4 {
		color: #5B5C34;
	}
}

/* Template -> Aanpakkken overzicht */
.aanpak_item {
	display: flex;
	gap: 12px;
}
.aanpak_item .image {
	margin-top: -10px;
}

.aanpak_item p {
	font-size: 14px;
	line-height: 24px;
	margin-bottom: 12px;
}

.aanpak_item img {
	min-width: 54px;
	max-width: 54px;
	position: relative;
	z-index: 1;
}

.aanpak_item span {
	display: inline-block;
	position: relative;
	min-width: 54px;
	max-width: 54px;
}

.aanpak_item {
	position: relative;
}

.aanpak_item .stretched-link:after {
	content: '';
	position: absolute;
	inset: 0;
	cursor: pointer;
	z-index: 1;
}

.aanpak_item a {
	text-decoration: none;
	color: inherit;
}

.aanpak_item .icoon-blok-content p:after {
	content: "";
	background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB0AAAAWCAMAAAALimf+AAAACXBIWXMAAAsTAAALEwEAmpwYAAAAWlBMVEXaDivhSlvdKUDmdHzbGDPy3tHkZXFHcEzy28/vx7/wz8Xqm5vqm5znfYPmcnvdLEPuvbbiWGbpjpHx2M3oh4zgR1naDyzeNkvfNkvx18zbFTDbFDDaDivdLEMXMJv7AAAAHHRSTlPTl7dsyQJ8AAYaEkZGZG61JIlSCFqZ0aurCsvNdp4r3AAAAHVJREFUKM+d0kkOgCAMBdA6YHHGear3v6Y14kqKCV01eUk/UAAdtb0NfE1HEClRGyLKRK1ZoRInt8xpLiiag3lVgmIPNtqp2Nlot+rziYZhmuFbdFdcwEhyJT/qn+w/lXyjMuQ1zM64qJAt1DY0ZPv+n8P+NhekrRogCXOc+gAAAABJRU5ErkJggg==");
	width: 14px;
	height: 12px;
	display: inline-block;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	margin-left: 6px;
}

.aanpak_item h3 {
	line-height: 1.25;
}


@media only screen and (min-width: 901px) {
	.aanpak_overzicht {
		display: grid;
		gap: 32px;
	}
}

@media only screen and (min-width: 1285px) {
	.aanpak_overzicht {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media only screen and (min-width: 901px) and (max-width: 1285px) {
	.aanpak_overzicht {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 900px) {
	.aanpak_overzicht{
		grid-template-columns: repeat(2, minmax(0, 1fr));
		margin-top: 32px;
	}
}


/* Template -> Aanpakkken enkel */
.body-container-aanpak-post {
	position: relative;
}
.body-container-aanpak-post:before {
	content: '';
	background-color: #EDEEE5;
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	z-index: -2;
	width: 100vw;
	height: 100%;
	margin-left: calc(-100vw / 2 + 100% / 2);
	margin-right: calc(-100vw / 2 + 100% / 2);
}
.body-container-aanpak-post > * {
	padding-left: 16px;
	padding-right: 16px;
}
.aanpak_single_intro {
	padding-top: 100px;
	padding-bottom: 48px;
	position: relative;

	h1 {
		color: var(--rood);
		margin-bottom: 32px;
	}

	@media(min-width: 1400px) {
		h1 {
			font-size: 58px;
			line-height: 66px;
		}
	}

	&:before {
		content: '';
		background-color: white;
		display: block;
		position: absolute;
		left: 0;
		top: 0;
		z-index: -1;
		width: 100vw;
		height: calc(100% + 64px);
		margin-left: calc(-100vw / 2 + 100% / 2);
		margin-right: calc(-100vw / 2 + 100% / 2);
	}

	.tags .tag {
		background-color: var(--grijs);
	}
	.tags .tag:hover {
		background-color: var(--rood);
	}
}

.aanpak_single_intro_meta {
	display: flex;
	flex-direction: row;
	gap: 124px;

	#hs_cos_wrapper_samenvatting {
		max-width: 856px;
	}

	@media (min-width: 890px) {
		p {
			font-size: 22px;
			line-height: 42px;
		}
	}
}

#hs_cos_wrapper_usps {
	flex: 1 0 300px;
	align-self: flex-start;

	ul {
		padding: 16px;
		background-color: #E4E6DA;
		border-radius: 20px;
		color: #5B5D34;
	}

	li {
		position: relative;
		display: flex;
		font-size: 18px;
		color: #5B5D34;
		letter-spacing: 0;
		line-height: 1.777777777777778;	

		&:before {
			content: '';
			margin-top: 5px;
			height: 22px;
			width: 22px;
			margin-right: 8px;
			display: block;
			border-radius: 0;
			background-color: transparent;
			background-repeat: no-repeat;
			background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' data-name='Group 2129' viewBox='0 0 22.985 22'%3E%3Cdefs%3E%3CclipPath id='a'%3E%3Cpath fill='%235b5d34' d='M0 0h22.985v22H0z' data-name='Rectangle 1204'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg clip-path='url(%23a)' data-name='Group 2128'%3E%3Cpath fill='%235b5d34' d='M22.985 11c0-1.17-1.454-2.095-1.8-3.15-.355-1.094.266-2.695-.4-3.606s-2.388-.821-3.307-1.49S16.138.423 15.044.067c-1.055-.343-2.382.742-3.552.742S9-.275 7.941.067C6.846.423 6.413 2.091 5.5 2.754s-2.639.571-3.308 1.49-.04 2.512-.392 3.606C1.454 8.905 0 9.83 0 11s1.454 2.095 1.8 3.15c.355 1.094-.266 2.695.4 3.606s2.388.821 3.308 1.49 1.344 2.331 2.438 2.687c1.055.343 2.383-.742 3.552-.742s2.5 1.084 3.552.742c1.094-.355 1.528-2.024 2.439-2.687s2.638-.571 3.307-1.49.042-2.512.4-3.606c.343-1.056 1.8-1.981 1.8-3.15m-5.57-2.189-6.556 6.545a1.532 1.532 0 0 1-2.167 0L5.57 12.223a1.532 1.532 0 0 1 2.167-2.167l2.049 2.049 5.46-5.461a1.532 1.532 0 0 1 2.167 2.167' data-name='Path 949'/%3E%3C/g%3E%3C/svg%3E");
		}
	}
}

.aanpak_content {
	padding-top: 60px;
	padding-bottom: 60px;
	max-width: 1074px;
	margin-left: auto;
	margin-right: auto;

	:is(h2, h3, h4, h5) {
		color: #5B5D34;
	}
}

.aanpak_uitgelichte_afbeelding {
	display: flex;
	position: relative;
	height: 100%;
	width: 100vw;
	margin-left: calc(-100vw / 2 + 100% / 2);
	margin-right: calc(-100vw / 2 + 100% / 2);
	padding: 0;
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1920.597 49.193'%3E%3Cpath fill='%23fff' d='M1920.597.256v48.938C942.341 23.006 769.576 9.717 398.411 14.463S0 25.854 0 25.854V0Z' data-name='Path 985'/%3E%3C/svg%3E"), linear-gradient(#000 0 0);
	mask-position: center top -2px;
	mask-repeat: no-repeat;
	mask-size: 100% auto;
	mask-composite: exclude;
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1920.597 49.193'%3E%3Cpath fill='%23fff' d='M1920.597.256v48.938C942.341 23.006 769.576 9.717 398.411 14.463S0 25.854 0 25.854V0Z' data-name='Path 985'/%3E%3C/svg%3E"), linear-gradient(#000 0 0);
	-webkit-mask-position: center top -2px;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-size: 100% auto;
	-webkit-mask-composite: exclude;


	&:after {
		content: '';
		inset: 0;
		background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1921.191 78.559'%3E%3Cpath fill='none' stroke='%23eeedea' stroke-width='3' d='M1920.722 25.234c-176.91 58.227-466.193 62.4-794.635 36.623S191.036-30.172.376 19.421' data-name='Path 986'/%3E%3C/svg%3E");
		position: absolute;
		z-index: 1;
		background-repeat: no-repeat;
		background-size: contain;
		top: 50%;
	}

	img {
		max-width: unset;
		max-height: 456px;
		object-fit: cover;
		width: 100%;
	}
}

@media (max-width: 950px) {
	.aanpak_uitgelichte_afbeelding {
		&:after {
			background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1921.191 78.559'%3E%3Cpath fill='none' stroke='%23eeedea' stroke-width='6' d='M1920.722 25.234c-176.91 58.227-466.193 62.4-794.635 36.623S191.036-30.172.376 19.421' data-name='Path 986'/%3E%3C/svg%3E");
		}
	}
}

@media (max-width: 550px) {
	.aanpak_uitgelichte_afbeelding {
		&:after {
			background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1921.191 78.559'%3E%3Cpath fill='none' stroke='%23eeedea' stroke-width='12' d='M1920.722 25.234c-176.91 58.227-466.193 62.4-794.635 36.623S191.036-30.172.376 19.421' data-name='Path 986'/%3E%3C/svg%3E");
		}
	}
}

.aanpak_content {
	position: relative;

	&:before {
		content: '';
		position: absolute;
		inset: 0;
		background-color: #EDEEE5;
		width: 100vw;
		margin-left: calc(-100vw / 2 + 100% / 2);
		margin-right: calc(-100vw / 2 + 100% / 2);
		z-index: -1;
	}
}

.aanpak_uitgelichte_afbeelding + .so-usps {
	position: relative;
	max-width: calc(1074px - 32px);
	margin-top: -90px;
	margin-left: auto;
	margin-right: auto;
}
@media (max-width: 1084px) {
	.aanpak_uitgelichte_afbeelding + .so-usps {
		margin-left: 16px;
		margin-right: 16px;
		max-width: calc(100% - 32px);
	}
}
@media (max-width: 550px) {
	.aanpak_uitgelichte_afbeelding + .so-usps {
		margin-top: -48px;
	}
}

.aanpak_content .so-info-box {
	background-color: white;
}

.aanpak_content .quotemodule.style-b {
	color: #5B5D34;

	&:before,
	.pasfoto:before {
		filter: brightness(100);
	}
}
.body-container-aanpak-post section.bg-geel {
	z-index: 1;
}
.body-container-aanpak-post section.bg-geel + section.bg-wit {
	margin-top: -48px;
	padding-top: calc(48px * 2);
	position: relative;
	z-index: 0;
}

@media (max-width: 1000px) {
	.aanpak_single_intro .aanpak_single_intro_meta {
		gap: 32px;
	}
}

@media (max-width: 656px) {
	.aanpak_single_intro .aanpak_single_intro_meta {
		flex-direction: column;
		gap: 0;
	}
	.aanpak_single_intro .aanpak_single_intro_meta > ul {
		width: 100%;
		flex: 0;
	}
}


/* Footer */
.footer {
	background-color: var(--rood);
	color: #FFF;
	position: relative;
	padding-top: 160px;
	font-size: 16px;
	line-height: 28px;
}

.footer p {
	font-size: 13px;
	line-height: 21px;
}

.footer .topbottom {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.footer:before {
	content: '';
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1919.328' height='77.047' viewBox='0 0 1919.328 77.047'%3E%3Cpath id='Path_1' data-name='Path 1' d='M0,686.328S136.335,652.081,461.918,664.7s548.554,48.464,807.639,50.882,245.227,4,649.772,0V640.975H0Z' transform='translate(0 -640.975)' fill='%23fff'/%3E%3C/svg%3E%0A");
	background-size: 100% auto;
	background-position: top center;
	background-repeat: no-repeat;
	width: 100vw;
	height: 150px;
	position: absolute;
	left: 0;
	top: -2px;
	pointer-events: none;
}

.footer .main {
	display: flex;
	gap: 64px;
}

.footer .main .col:first-child, .footer .main .col:last-child {
	flex: 0 0 25%;
}

.footer .main .col:nth-child(2) {
	flex: 1 1 auto;
}

.footer .hs-menu-wrapper ul {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	column-gap: 32px;
	row-gap: 24px;
}

.footer .hs-menu-wrapper ul a {
	color: #FFF;
	text-decoration: none;
	letter-spacing: -0.22px;
	font-size: 22px;
	line-height: 30px;
	font-weight: 600;
}

.footer #hs_form_target_form form .hs-richtext,
.footer #hs_form_target_form form .hs-richtext p {
	font-size: 10px;
	line-height: 16px;
} 

.footer .hs-menu-wrapper ul a:hover {
	text-decoration: underline;
}

.bottomcontent {
	justify-content: space-between;
	align-items: center;
	padding: 112px 16px 96px 16px;
}

.bottomcontent img {
	max-width: 370px;
}

.bottomcontent .slogan {
	font-size: 32px;
}

@media (max-width: 1540px) {
	.bottomcontent img {
		max-height: 55px;
		width: auto;
	}
	.bottomcontent .slogan {
		font-size: 26px;
	}
	.footer .socials a {
		height: 25px;
	}
}

@media (min-width: 1200px) {
	.footer .main .col:first-child {
		padding-right: 64px;
	}
}

@media (max-width: 1200px) {
	.footer .main .col:first-child {
		padding-right: 32px;
	}
}

@media (max-width: 900px) {
	.footer .main {
		flex-direction: column;
	}

	.footer .main.bottomcontent {
		flex-direction: unset;
	}

	.bottomcontent img {
		max-height: 40px;
		width: auto;
		max-width: 100%;
		object-fit: contain;
		object-position: left top
	}

	.bottomcontent .slogan {
		font-size: 28px;
	}

}

@media (max-width: 768px) {
	.footer {
		padding-top: 80px;
	}

	.footer:before {
		background-size: auto 100%;
		height: 50px;
	}
	
	.footer .main .col:first-child {
		display: none;
	}

	.footer .main .col:last-child {
		order: 1;
	}

	.footer .main .col:nth-child(2) {
		order: 1;
	}

	.footer .main.bottomcontent {
		flex-direction: column;
		gap: 32px;
		align-items: normal;
		padding-bottom: 48px;
		padding-top: 64px;
	}

	.bottomcontent .slogan {
		text-align: right;
		font-size: 20px;
		color: var(--rood);
		position: absolute;
		top: 0px;
		right: 16px;
	}

	.footer .hs-menu-wrapper ul {
		gap: 0;
	}

	.footer .hs-menu-wrapper ul a {
		font-size: 14px;
		line-height: 17px;
		font-weight: 600;
	}
	.footer .hs-menu-wrapper ul li {
		margin-bottom: 16px;
	}

	.footer .main div.col.topbottom {
		order: -1;
	}
}


/* Footer -> Socials */
.footer .socials {
	display: flex;
	gap: 32px;
}

.footer .socials a {
	display: inline-block;
	height: 32px;
	-webkit-transition: all 0.5s all;
	-moz-transition: all 0.5s all;
	-o-transition: all 0.5s all;
	transition: all 0.5s all;
}

.footer .socials a:hover {
	margin-top: -8px;
}


/* Footer -> Formulier */
.footer .form-title {
	margin-bottom: 16px;
}

.footer .hs_email input[type='email'] {
	border: 0;
	background-color: #FFF;
	border-radius: 20px;
	font-size: 11px;
	letter-spacing: 1.21px;
	font-weight: 600;
	padding: 10px 40px 10px 22px;
}

.footer #hs_form_target_form {
	margin-bottom: 64px;
}

.footer .hs-form-field {
	margin: 0;
}

.footer .hs_email input[type='email']::placeholder {
	color: var( --rood );
	text-transform: uppercase;
}

.footer .hs_submit {
	background-color: #FFF;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='16' viewBox='0 0 13 16'%3E%3Cpath id='Polygon_1' data-name='Polygon 1' d='M8,0l8,13H0Z' transform='translate(13) rotate(90)' fill='%23df1f38'/%3E%3C/svg%3E%0A");
	background-position: center;
	background-repeat: no-repeat;
	border-radius: 100%;
	width: 30px;
	height: 30px;
	position: absolute;
	right: 10px;
	top: 3px;
}

.footer input[type='submit'] {
	width: 30px;
	height: 30px;
	opacity: 0;
}

.footer .legal-consent-container {
	margin-top: 8px;
}

.footer form {
	position: relative;
}

.footer .hs-error-msg {
	color: #FFF;
}


@media print {
	#mega_menu,
	.header > * {
		display: none;
	}
}

/* Google Translate */
.goog-te-gadget {
	display: none;
}