*, *: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://479693.fs1.hubspotusercontent-na1.net/hubfs/479693/tg2023/HurmeGeometricSans3-Regular.woff2') format('woff2'),
			url('https://479693.fs1.hubspotusercontent-na1.net/hubfs/479693/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://479693.fs1.hubspotusercontent-na1.net/hubfs/479693/tg2023/HurmeGeometricSans3-SemiBold.woff2') format('woff2'),
			url('https://479693.fs1.hubspotusercontent-na1.net/hubfs/479693/tg2023/HurmeGeometricSans3-SemiBold.woff') format('woff');
	font-weight: 600;
	font-style: normal;
}

@font-face {
	font-family: "Cooper Lt BT W08 Regular";
	src: 	url("https://479693.fs1.hubspotusercontent-na1.net/hubfs/479693/tg2023/Cooper%20Lt%20BT.eot");
	src: 	url("https://479693.fs1.hubspotusercontent-na1.net/hubfs/479693/tg2023/Cooper%20Lt%20BT.eot#iefix") format("embedded-opentype"),
			url("https://479693.fs1.hubspotusercontent-na1.net/hubfs/479693/tg2023/Cooper%20Lt%20BT.woff2") format("woff2"),
			url("https://479693.fs1.hubspotusercontent-na1.net/hubfs/479693/tg2023/Cooper%20Lt%20BT.woff") format("woff"),
			url("https://479693.fs1.hubspotusercontent-na1.net/hubfs/479693/tg2023/Cooper%20Lt%20BT.ttf") format("truetype"),
			url("https://479693.fs1.hubspotusercontent-na1.net/hubfs/479693/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;
}

form .hs-form-field label {
	font-size: 18px;
	line-height: 32px;
}

em {
	font-style: italic;
}

blockquote:not([class]) {
	padding: 16px 24px;
	border-left: 5px solid #5B5D34;
	margin: 0 0 30px 0;

	p {
		margin: 0;
	}
}

@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,
.tg-body ol:not([class]) li:not([class]) a,
#hs_cos_wrapper_post_body ul:not([class]) li:not([class]) a,
#hs_cos_wrapper_post_body ol: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,
.tg-body ol:not([class]) li:not([class]) a:hover,
#hs_cos_wrapper_post_body ul:not([class]) li:not([class]) a:hover,
#hs_cos_wrapper_post_body ol:not([class]) li:not([class]) a:hover,
p a:-webkit-any-link:hover {
	text-decoration: underline;
}

#hs_cos_wrapper_post_body :is(ol:not([class]), ul:not([class])) {
	margin-bottom: 30px
}

#hs_cos_wrapper_post_body > div:not([class]) > div:not([class]) > :is(.hs-cta-embed, img),
#hs_cos_wrapper_post_body > div:not([class]) > div:not([class]) > p > :is(.hs-cta-embed, img),
#hs_cos_wrapper_post_body > div:not([class]) > p > :is(.hs-cta-embed, img),
#hs_cos_wrapper_post_body > div:not([class]) > p > span > :is(.hs-cta-embed, img),
#hs_cos_wrapper_post_body > div:not([class]) > :is(.hs-cta-embed, img),
#hs_cos_wrapper_post_body > :is(.hs-cta-embed, img),
#hs_cos_wrapper_post_body > p > :is(.hs-cta-embed, img),
#hs_cos_wrapper_post_body > h2 > :is(.hs-cta-embed, img) {
	border-radius: 20px;
	overflow: hidden;
}

:is(ol:not([class]), ul:not([class])) li:not([class]) {
	position: relative;
	color: var(--zwart);
	font-size: 18px;
	line-height: 32px;
	margin: 0;
	font-weight: normal;
	width: 100%;
	padding-left: 32px;
}

:is(ol:not([class]), ul:not([class])) p {
	margin: 0 0 8px 0;
}

:is(ol:not([class]), ul:not([class])) > li:not([class]):not(:last-child) {
	margin-bottom: 8px;
}

:not(.hs-tools-menu) :is(ol:not([class]), ul:not([class])) li:not([class]):before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	background: var(--zwart);
	color: #fff;
	border-radius: 100%;
	display: inline-block;
	height: 6px;
	width: 6px;
	vertical-align: middle;
	line-height: 24px;
	margin-right: 12px;
	margin-top: 13px;
}

:not(.hs-tools-menu) ol:not([class]) li:not([class]):before {
	content: counter(item) ".";
	counter-increment: item;
	background: none;
	color: var(--zwart);
	border-radius: 0;
	display: inline-block;
	height: auto;
	font-weight: 600;
	width: auto;
	vertical-align: baseline;
	line-height: 32px;
	margin-right: 8px;
	margin-top: 0;
	min-width: 22px;
	white-space: nowrap;
}

ol:not([class]) {
	counter-reset: item;
}

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) {
	form .hs-form-field label,
	p {
		font-size: 18px;
		line-height: 28px;
	}
	:is(ol:not([class]), ul:not([class])) li:not([class]) {
		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) {
	form .hs-form-field label,
	p {
		font-size: 16px;
		line-height: 26px;
	}
	ul:not([class]) li:not([class]) {
		font-size: 16px;
		line-height: 26px;
	}
}

strong {
	font-weight: bold;
}

/* Algemeen -> Knoppen */
.hubcta,
input[type="submit"],
button[type="submit"],
.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;
	outline: 0;
	border: 0;
}

body .hubcta:hover,
input[type="submit"]:hover,
button[type="submit"]: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;
}
button[type="submit"]:hover,
input[type="submit"]:hover {
	background-color: #cb0f2a !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 .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 .menu_content_4_links:after {
	content: '';
	width: 100%;
	aspect-ratio: 774/282;
	display: block;
	background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3Csvg xmlns='http://www.w3.org/2000/svg' width='204.7862mm' height='74.47mm' viewBox='0 0 580.4962 211.0961'%3E%3Cg id='Frame'%3E%3Cpath d='M560.3419,5.7543c7.92,0,14.4,6.48,14.4,14.4v170.7876c0,7.9199-6.48,14.4-14.4,14.4H20.1544c-7.92,0-14.4001-6.4801-14.4001-14.4V20.1543c0-7.92,6.48-14.4,14.4001-14.4h540.1876M560.3419,0H20.1544C9.0412,0,0,9.0412,0,20.1543v170.7876c0,11.1131,9.0412,20.1543,20.1544,20.1543h540.1876c11.113,0,20.1543-9.0412,20.1543-20.1543V20.1543c0-11.1131-9.0413-20.1543-20.1543-20.1543h0Z' fill='%23fff'/%3E%3C/g%3E%3Cg id='Text'%3E%3Cpath d='M170.0746,44.0294c2.8594,0,5.0605.728,6.6035,2.1841s2.3145,3.6748,2.3145,6.6558c0,1.5601-.1738,2.9424-.5205,4.147-.3467,1.2051-.8838,2.2192-1.6123,3.042-.7275.8237-1.6553,1.4521-2.7812,1.8853-1.127.4336-2.4619.6499-4.0039.6499h-6.3701v-18.564h6.3701ZM170.2826,60.5133c.2764,0,.624-.0215,1.04-.0649.415-.043.8574-.147,1.3252-.312.4688-.1646.9316-.4028,1.3916-.7148.459-.312.8711-.7368,1.2344-1.2739.3643-.5371.6631-1.209.8975-2.0151.2334-.8062.3506-1.7812.3506-2.9253,0-1.1089-.1084-2.1011-.3242-2.9766-.2178-.8755-.5723-1.6206-1.0664-2.2363-.4941-.6147-1.1309-1.083-1.9111-1.4038s-1.7422-.481-2.8857-.481h-4.1602v14.4038h4.1084Z' fill='%23fff'/%3E%3Cpath d='M181.8773,46.7336v-2.7041h2.21v2.7041h-2.21ZM184.0873,49.1515v13.4419h-2.21v-13.4419h2.21Z' fill='%23fff'/%3E%3Cpath d='M193.3695,49.1515v1.9497h-2.6777v8.3462c0,.2598.0215.4678.0645.624.043.1558.126.2773.2471.3638.1211.0869.29.1431.5068.1694.2168.0259.498.0386.8457.0386h1.0137v1.9502h-1.6904c-.5713,0-1.0615-.0391-1.4688-.1172-.4072-.0776-.7373-.2207-.9883-.4287s-.4375-.5024-.5586-.8843c-.1211-.3809-.1816-.8838-.1816-1.5078v-8.5542h-2.2881v-1.9497h2.2881v-4.0303h2.21v4.0303h2.6777Z' fill='%23fff'/%3E%3Cpath d='M205.5365,44.0294v6.9419h.0518c.3643-.7451.9365-1.2871,1.7158-1.625.7803-.3379,1.6387-.5068,2.5742-.5068,1.04,0,1.9453.1909,2.7168.5718.7715.3818,1.4131.897,1.9238,1.5474.5117.6499.8975,1.3999,1.1572,2.2485.2598.8496.3906,1.751.3906,2.7041,0,.9536-.126,1.855-.377,2.7041-.252.8496-.6338,1.5903-1.1445,2.2231-.5117.6328-1.1533,1.1309-1.9238,1.4951-.7715.3638-1.6689.5459-2.6914.5459-.3291,0-.6973-.0352-1.1045-.104-.4072-.0698-.8105-.1821-1.209-.3379-.3994-.1562-.7764-.3682-1.1309-.6372-.3555-.2686-.6553-.6021-.8975-1.001h-.0518v1.7939h-2.21v-18.564h2.21ZM213.4789,53.9225c-.1641-.5981-.416-1.1309-.7539-1.5991-.3379-.4678-.7715-.8403-1.2998-1.1182-.5283-.2769-1.1484-.416-1.8584-.416-.7461,0-1.3789.1475-1.8984.4424s-.9453.6802-1.2744,1.1567c-.3291.4771-.5674,1.0186-.7148,1.625-.1475.6069-.2207,1.2222-.2207,1.8462,0,.6587.0781,1.2959.2344,1.9106.1553.6157.4023,1.1572.7402,1.625.3379.4683.7764.8452,1.3135,1.1313s1.1865.4287,1.9502.4287c.7627,0,1.3994-.147,1.9111-.4419.5107-.2944.9229-.6846,1.2344-1.1699.3125-.4849.5371-1.04.6758-1.6641s.208-1.2651.208-1.9238c0-.624-.082-1.2354-.2471-1.833Z' fill='%23fff'/%3E%3Cpath d='M228.2855,61.7355c-1.0049.7627-2.2705,1.144-3.7959,1.144-1.0752,0-2.0059-.1738-2.7949-.52-.7891-.3467-1.4521-.832-1.9893-1.4561s-.9404-1.3691-1.209-2.2358-.4199-1.8115-.4551-2.834c0-1.0229.1562-1.959.4688-2.8081.3115-.8491.749-1.5859,1.3125-2.21s1.2305-1.1094,2.002-1.4561,1.6162-.52,2.5352-.52c1.1963,0,2.1885.2471,2.9775.7407.7881.4941,1.4209,1.1226,1.8975,1.8853s.8057,1.5947.9883,2.4961c.1816.9014.2549,1.7593.2207,2.5737h-10.0615c-.0176.5894.0518,1.1484.208,1.6772.1553.5288.4062.9966.7539,1.4038.3467.4077.7881.7324,1.3262.9751.5361.2427,1.1699.3638,1.8975.3638.9365,0,1.7031-.2163,2.3008-.6499.5986-.4331.9922-1.0918,1.1836-1.9761h2.1836c-.2949,1.5083-.9443,2.6436-1.9502,3.4062ZM227.7533,53.1032c-.2002-.4678-.4688-.8706-.8066-1.209-.3379-.3379-.7363-.6064-1.1963-.8057-.459-.1992-.9658-.2993-1.5205-.2993-.5723,0-1.0879.1001-1.5469.2993-.46.1992-.8545.4722-1.1836.8188-.3291.3472-.5889.75-.7793,1.209-.1914.4595-.3037.9492-.3379,1.4692h7.7217c-.0352-.52-.1523-1.0142-.3506-1.4824Z' fill='%23fff'/%3E%3Cpath d='M242.6381,62.5934v-1.8198h-.0518c-.3643.7451-.9365,1.2827-1.7158,1.6118-.7803.3291-1.6387.4941-2.5742.4941-1.04,0-1.9463-.1909-2.7168-.5723-.7715-.3809-1.4131-.8926-1.9238-1.5337-.5117-.6411-.8975-1.3867-1.1572-2.2363-.2598-.8491-.3906-1.7505-.3906-2.7036s.126-1.855.3779-2.7041c.251-.8491.6318-1.5903,1.1436-2.2231.5107-.6323,1.1523-1.1353,1.9238-1.5078s1.668-.5591,2.6914-.5591c.3467,0,.7188.0347,1.1182.104.3984.0693.7969.1865,1.1953.3511s.7754.3813,1.1309.6499c.3555.269.6543.6025.8975,1.001h.0518v-6.916h2.21v18.564h-2.21ZM234.6957,57.8224c.1641.5981.416,1.1309.7539,1.5991.3379.4678.7705.8408,1.2998,1.1177.5283.2778,1.1475.416,1.8584.416.7451,0,1.3789-.147,1.8984-.4419.5195-.2944.9443-.6802,1.2744-1.1567.3291-.4766.5674-1.0181.7148-1.625.1465-.6069.2207-1.2222.2207-1.8462,0-.6587-.0781-1.2954-.2344-1.9111-.1553-.6147-.4023-1.1567-.7402-1.625-.3379-.4678-.7764-.8447-1.3135-1.1309s-1.1875-.4292-1.9502-.4292c-.7451,0-1.3779.1475-1.8975.4424-.5205.2949-.9365.6846-1.248,1.1699-.3125.4854-.5381,1.04-.6758,1.6641-.1396.624-.208,1.2651-.208,1.9238,0,.624.082,1.2349.2471,1.833Z' fill='%23fff'/%3E%3Cpath d='M250.3597,49.1515v2.834h.0518c.5371-1.0923,1.1963-1.8979,1.9766-2.418.7793-.52,1.7676-.7627,2.9639-.728v2.3398c-.8838,0-1.6387.1216-2.2617.3643-.624.2427-1.127.5977-1.5088,1.0659-.3809.4678-.6582,1.0356-.832,1.7031-.1729.667-.2598,1.4341-.2598,2.3008v5.98h-2.21v-13.4419h2.0801Z' fill='%23fff'/%3E%3Cpath d='M257.2504,46.7336v-2.7041h2.21v2.7041h-2.21ZM259.4603,49.1515v13.4419h-2.21v-13.4419h2.21Z' fill='%23fff'/%3E%3Cpath d='M264.4642,66.8966c-.5811.5459-1.3652.8188-2.3525.8188-.3994,0-.7715-.0352-1.1182-.104v-1.8979c.0869.0171.1602.0298.2207.0391.0615.0083.126.0127.1953.0127h.4678c.4854,0,.8145-.1343.9883-.4028.1729-.269.2598-.75.2598-1.4429v-14.7681h2.21v15.1318c0,1.1963-.29,2.0669-.8711,2.6133ZM263.1254,46.7336v-2.7041h2.21v2.7041h-2.21Z' fill='%23fff'/%3E%3Cpath d='M267.5189,51.1012v-1.9497h2.2627v-2.002c0-1.0923.3154-1.9199.9492-2.4829.6318-.5635,1.5547-.8452,2.7686-.8452.208,0,.4463.0176.7148.0518.2686.0352.5068.0869.7148.1562v1.9238c-.1904-.0688-.3984-.1167-.624-.1431-.2256-.0259-.4336-.0386-.624-.0386-.5371,0-.9531.104-1.248.312s-.4414.6069-.4414,1.1958v1.8721h2.5996v1.9497h-2.5996v11.4922h-2.21v-11.4922h-2.2627Z' fill='%23fff'/%3E%3Cpath d='M286.0824,49.1515v1.9761h.0518c1.0049-1.5254,2.4521-2.2881,4.3418-2.2881.832,0,1.5859.1733,2.2627.52.6758.3467,1.1523.936,1.4297,1.7681.4502-.728,1.0439-1.291,1.7812-1.6899.7363-.3989,1.5469-.5981,2.4307-.5981.6758,0,1.2871.0737,1.833.2207.5459.1475,1.0137.3774,1.4043.689.3896.312.6924.7153.9102,1.2095.2158.4937.3242,1.0879.3242,1.7808v9.854h-2.21v-8.814c0-.416-.0342-.8062-.1035-1.1699-.0693-.3643-.1992-.6802-.3906-.9492-.1904-.2686-.4541-.481-.793-.6367-.3379-.1562-.7754-.2344-1.3125-.2344-1.0918,0-1.9502.312-2.5742.936s-.9355,1.4561-.9355,2.4961v8.3721h-2.21v-8.814c0-.4331-.0391-.832-.1172-1.1958-.0781-.3643-.2129-.6802-.4033-.9492-.1904-.2686-.4463-.4766-.7666-.624-.3213-.147-.7324-.2212-1.2354-.2212-.6416,0-1.1914.1304-1.6514.3901-.459.2603-.832.5723-1.1172.936-.2861.3643-.4941.7412-.624,1.1309-.1299.3901-.1953.7153-.1953.9751v8.3721h-2.21v-13.4419h2.0801Z' fill='%23fff'/%3E%3Cpath d='M318.1918,62.5417c-.3818.2246-.9102.3379-1.5859.3379-.5723,0-1.0273-.1606-1.3652-.481-.3379-.3208-.5068-.8452-.5068-1.5732-.6074.728-1.3135,1.2524-2.1191,1.5732-.8057.3203-1.6768.481-2.6133.481-.6064,0-1.1826-.0698-1.7285-.208-.5459-.1387-1.0186-.355-1.417-.6499-.3994-.2949-.7148-.6802-.9492-1.1572-.2344-.4766-.3516-1.0532-.3516-1.729,0-.7627.1309-1.3867.3906-1.8721.2598-.4849.6016-.8794,1.0264-1.1831.4248-.3027.9102-.5327,1.4561-.689.5469-.1558,1.1055-.2856,1.6777-.3896.6064-.1211,1.1826-.2124,1.7285-.2734.5459-.0601,1.0273-.147,1.4434-.2598.416-.1123.7451-.2769.9883-.4941.2422-.2163.3633-.5327.3633-.9487,0-.4854-.0908-.875-.2725-1.1699-.1826-.2949-.416-.52-.7021-.6763-.2861-.1558-.6074-.2598-.9619-.312-.3555-.0518-.707-.0781-1.0537-.0781-.9355,0-1.7158.1782-2.3398.5332-.624.3555-.9619,1.0269-1.0137,2.0151h-2.21c.0342-.832.208-1.5342.5195-2.106.3125-.5723.7285-1.0356,1.248-1.3911.5205-.355,1.1143-.6108,1.7812-.7671.667-.1558,1.3818-.2339,2.1455-.2339.6064,0,1.209.0435,1.8066.1299s1.1396.2637,1.625.5317.875.6445,1.1699,1.1284c.2949.4844.4424,1.1157.4424,1.8936v6.9014c0,.5195.0293.8994.0908,1.1416.0605.2422.2637.3633.6113.3633.1904,0,.415-.0347.6758-.104v1.7163ZM314.6039,55.6515c-.2783.207-.6416.3579-1.0928.4526-.4502.0952-.9229.1729-1.417.2329-.4932.0605-.9922.1299-1.4941.2075-.5029.0771-.9541.2026-1.3525.3745-.3984.1724-.7236.4185-.9746.7378-.252.3188-.377.7544-.377,1.3062,0,.3623.0732.6685.2207.9185.1475.2505.3379.4531.5723.6084.2334.1553.5068.2671.8184.3364.3125.0688.6416.103.9883.103.7275,0,1.3516-.0991,1.8721-.2974.5195-.1982.9443-.4482,1.2744-.7505.3281-.3018.5713-.6294.7275-.9829s.2344-.6855.2344-.9961v-2.251Z' fill='%23fff'/%3E%3Cpath d='M332.2582,62.5417c-.3818.2246-.9102.3379-1.5859.3379-.5723,0-1.0273-.1606-1.3652-.481-.3379-.3208-.5068-.8452-.5068-1.5732-.6074.728-1.3135,1.2524-2.1191,1.5732-.8057.3203-1.6768.481-2.6133.481-.6064,0-1.1826-.0698-1.7285-.208-.5459-.1387-1.0186-.355-1.417-.6499-.3994-.2949-.7148-.6802-.9492-1.1572-.2344-.4766-.3516-1.0532-.3516-1.729,0-.7627.1309-1.3867.3906-1.8721.2598-.4849.6016-.8794,1.0264-1.1831.4248-.3027.9102-.5327,1.4561-.689.5469-.1558,1.1055-.2856,1.6777-.3896.6064-.1211,1.1826-.2124,1.7285-.2734.5459-.0601,1.0273-.147,1.4434-.2598.416-.1123.7451-.2769.9883-.4941.2422-.2163.3633-.5327.3633-.9487,0-.4854-.0908-.875-.2725-1.1699-.1826-.2949-.416-.52-.7021-.6763-.2861-.1558-.6074-.2598-.9619-.312-.3555-.0518-.707-.0781-1.0537-.0781-.9355,0-1.7158.1782-2.3398.5332-.624.3555-.9619,1.0269-1.0137,2.0151h-2.21c.0342-.832.208-1.5342.5195-2.106.3125-.5723.7285-1.0356,1.248-1.3911.5205-.355,1.1143-.6108,1.7812-.7671.667-.1558,1.3818-.2339,2.1455-.2339.6064,0,1.209.0435,1.8066.1299s1.1396.2637,1.625.5317.875.6445,1.1699,1.1284c.2949.4844.4424,1.1157.4424,1.8936v6.9014c0,.5195.0293.8994.0908,1.1416.0605.2422.2637.3633.6113.3633.1904,0,.415-.0347.6758-.104v1.7163ZM328.6703,55.6515c-.2783.207-.6416.3579-1.0928.4526-.4502.0952-.9229.1729-1.417.2329-.4932.0605-.9922.1299-1.4941.2075-.5029.0771-.9541.2026-1.3525.3745-.3984.1724-.7236.4185-.9746.7378-.252.3188-.377.7544-.377,1.3062,0,.3623.0732.6685.2207.9185.1475.2505.3379.4531.5723.6084.2334.1553.5068.2671.8184.3364.3125.0688.6416.103.9883.103.7275,0,1.3516-.0991,1.8721-.2974.5195-.1982.9443-.4482,1.2744-.7505.3281-.3018.5713-.6294.7275-.9829s.2344-.6855.2344-.9961v-2.251Z' fill='%23fff'/%3E%3Cpath d='M336.7552,44.0294v10.998l6.1357-5.876h2.9639l-5.3291,4.8877,5.7197,8.5542h-2.8086l-4.6016-7.02-2.0801,1.9238v5.0962h-2.21v-18.564h2.21Z' fill='%23fff'/%3E%3Cpath d='M353.7601,49.1515v1.9497h-2.6777v8.3462c0,.2598.0215.4678.0645.624.043.1558.126.2773.2471.3638.1211.0869.29.1431.5068.1694.2168.0259.498.0386.8457.0386h1.0137v1.9502h-1.6904c-.5713,0-1.0615-.0391-1.4688-.1172-.4072-.0776-.7373-.2207-.9883-.4287s-.4375-.5024-.5586-.8843c-.1211-.3809-.1816-.8838-.1816-1.5078v-8.5542h-2.2881v-1.9497h2.2881v-4.0303h2.21v4.0303h2.6777Z' fill='%23fff'/%3E%3Cpath d='M373.4408,62.5934v-1.8198h-.0518c-.3643.7451-.9365,1.2827-1.7158,1.6118-.7803.3291-1.6387.4941-2.5742.4941-1.04,0-1.9463-.1909-2.7168-.5723-.7715-.3809-1.4131-.8926-1.9238-1.5337-.5117-.6411-.8975-1.3867-1.1572-2.2363-.2598-.8491-.3906-1.7505-.3906-2.7036s.126-1.855.3779-2.7041c.251-.8491.6318-1.5903,1.1436-2.2231.5107-.6323,1.1523-1.1353,1.9238-1.5078s1.668-.5591,2.6914-.5591c.3467,0,.7188.0347,1.1182.104.3984.0693.7969.1865,1.1953.3511s.7754.3813,1.1309.6499c.3555.269.6543.6025.8975,1.001h.0518v-6.916h2.21v18.564h-2.21ZM365.4984,57.8224c.1641.5981.416,1.1309.7539,1.5991.3379.4678.7705.8408,1.2998,1.1177.5283.2778,1.1475.416,1.8584.416.7451,0,1.3789-.147,1.8984-.4419.5195-.2944.9443-.6802,1.2744-1.1567.3291-.4766.5674-1.0181.7148-1.625.1465-.6069.2207-1.2222.2207-1.8462,0-.6587-.0781-1.2954-.2344-1.9111-.1553-.6147-.4023-1.1567-.7402-1.625-.3379-.4678-.7764-.8447-1.3135-1.1309s-1.1875-.4292-1.9502-.4292c-.7451,0-1.3779.1475-1.8975.4424-.5205.2949-.9365.6846-1.248,1.1699-.3125.4854-.5381,1.04-.6758,1.6641-.1396.624-.208,1.2651-.208,1.9238,0,.624.082,1.2349.2471,1.833Z' fill='%23fff'/%3E%3Cpath d='M388.6761,61.7355c-1.0049.7627-2.2705,1.144-3.7959,1.144-1.0752,0-2.0059-.1738-2.7949-.52-.7891-.3467-1.4521-.832-1.9893-1.4561s-.9404-1.3691-1.209-2.2358-.4199-1.8115-.4551-2.834c0-1.0229.1562-1.959.4688-2.8081.3115-.8491.749-1.5859,1.3125-2.21s1.2305-1.1094,2.002-1.4561,1.6162-.52,2.5352-.52c1.1963,0,2.1885.2471,2.9775.7407.7881.4941,1.4209,1.1226,1.8975,1.8853s.8057,1.5947.9883,2.4961c.1816.9014.2549,1.7593.2207,2.5737h-10.0615c-.0176.5894.0518,1.1484.208,1.6772.1553.5288.4062.9966.7539,1.4038.3467.4077.7881.7324,1.3262.9751.5361.2427,1.1699.3638,1.8975.3638.9365,0,1.7031-.2163,2.3008-.6499.5986-.4331.9922-1.0918,1.1836-1.9761h2.1836c-.2949,1.5083-.9443,2.6436-1.9502,3.4062ZM388.1439,53.1032c-.2002-.4678-.4688-.8706-.8066-1.209-.3379-.3379-.7363-.6064-1.1963-.8057-.459-.1992-.9658-.2993-1.5205-.2993-.5723,0-1.0879.1001-1.5469.2993-.46.1992-.8545.4722-1.1836.8188-.3291.3472-.5889.75-.7793,1.209-.1914.4595-.3037.9492-.3379,1.4692h7.7217c-.0352-.52-.1523-1.0142-.3506-1.4824Z' fill='%23fff'/%3E%3Cpath d='M402.7426,61.7355c-1.0049.7627-2.2705,1.144-3.7959,1.144-1.0752,0-2.0059-.1738-2.7949-.52-.7891-.3467-1.4521-.832-1.9893-1.4561s-.9404-1.3691-1.209-2.2358-.4199-1.8115-.4551-2.834c0-1.0229.1562-1.959.4688-2.8081.3115-.8491.749-1.5859,1.3125-2.21s1.2305-1.1094,2.002-1.4561,1.6162-.52,2.5352-.52c1.1963,0,2.1885.2471,2.9775.7407.7881.4941,1.4209,1.1226,1.8975,1.8853s.8057,1.5947.9883,2.4961c.1816.9014.2549,1.7593.2207,2.5737h-10.0615c-.0176.5894.0518,1.1484.208,1.6772.1553.5288.4062.9966.7539,1.4038.3467.4077.7881.7324,1.3262.9751.5361.2427,1.1699.3638,1.8975.3638.9365,0,1.7031-.2163,2.3008-.6499.5986-.4331.9922-1.0918,1.1836-1.9761h2.1836c-.2949,1.5083-.9443,2.6436-1.9502,3.4062ZM402.2103,53.1032c-.2002-.4678-.4688-.8706-.8066-1.209-.3379-.3379-.7363-.6064-1.1963-.8057-.459-.1992-.9658-.2993-1.5205-.2993-.5723,0-1.0879.1001-1.5469.2993-.46.1992-.8545.4722-1.1836.8188-.3291.3472-.5889.75-.7793,1.209-.1914.4595-.3037.9492-.3379,1.4692h7.7217c-.0352-.52-.1523-1.0142-.3506-1.4824Z' fill='%23fff'/%3E%3Cpath d='M409.6322,44.0294v18.564h-2.21v-18.564h2.21Z' fill='%23fff'/%3E%3Cpath d='M429.5472,62.5934v-2.1318h-.0518c-.4678.832-1.0664,1.4429-1.7939,1.833-.7285.3896-1.5859.585-2.5742.585-.8838,0-1.6211-.1172-2.21-.3511-.5898-.2339-1.0664-.5674-1.4297-1.001-.3643-.4331-.6201-.9492-.7676-1.5469-.1475-.5981-.2207-1.2612-.2207-1.9893v-8.8398h2.21v9.1001c0,.832.2422,1.4907.7275,1.9756.4854.4858,1.1533.728,2.002.728.6768,0,1.2617-.104,1.7559-.312.4932-.208.9053-.5024,1.2344-.8838.3291-.3809.5762-.8276.7412-1.3389s.2471-1.0703.2471-1.6772v-7.5918h2.21v13.4419h-2.0801Z' fill='%23fff'/%3E%3Cpath d='M435.1898,46.7336v-2.7041h2.21v2.7041h-2.21ZM437.3998,49.1515v13.4419h-2.21v-13.4419h2.21Z' fill='%23fff'/%3E%3Cpath d='M446.681,49.1515v1.9497h-2.6777v8.3462c0,.2598.0215.4678.0645.624.043.1558.126.2773.2471.3638.1211.0869.29.1431.5068.1694.2168.0259.498.0386.8457.0386h1.0137v1.9502h-1.6904c-.5713,0-1.0615-.0391-1.4688-.1172-.4072-.0776-.7373-.2207-.9883-.4287s-.4375-.5024-.5586-.8843c-.1211-.3809-.1816-.8838-.1816-1.5078v-8.5542h-2.2881v-1.9497h2.2881v-4.0303h2.21v4.0303h2.6777Z' fill='%23fff'/%3E%3Cpath d='M460.2523,62.5934l-4.9922-13.4419h2.4697l3.7695,11.2061h.0527l3.666-11.2061h2.3135l-4.9141,13.4419h-2.3652Z' fill='%23fff'/%3E%3Cpath d='M481.5726,62.5417c-.3818.2246-.9102.3379-1.5859.3379-.5723,0-1.0273-.1606-1.3652-.481-.3379-.3208-.5068-.8452-.5068-1.5732-.6074.728-1.3135,1.2524-2.1191,1.5732-.8057.3203-1.6768.481-2.6133.481-.6064,0-1.1826-.0698-1.7285-.208-.5459-.1387-1.0186-.355-1.417-.6499-.3994-.2949-.7148-.6802-.9492-1.1572-.2344-.4766-.3516-1.0532-.3516-1.729,0-.7627.1309-1.3867.3906-1.8721.2598-.4849.6016-.8794,1.0264-1.1831.4248-.3027.9102-.5327,1.4561-.689.5469-.1558,1.1055-.2856,1.6777-.3896.6064-.1211,1.1826-.2124,1.7285-.2734.5459-.0601,1.0273-.147,1.4434-.2598.416-.1123.7451-.2769.9883-.4941.2422-.2163.3633-.5327.3633-.9487,0-.4854-.0908-.875-.2725-1.1699-.1826-.2949-.416-.52-.7021-.6763-.2861-.1558-.6074-.2598-.9619-.312-.3555-.0518-.707-.0781-1.0537-.0781-.9355,0-1.7158.1782-2.3398.5332-.624.3555-.9619,1.0269-1.0137,2.0151h-2.21c.0342-.832.208-1.5342.5195-2.106.3125-.5723.7285-1.0356,1.248-1.3911.5205-.355,1.1143-.6108,1.7812-.7671.667-.1558,1.3818-.2339,2.1455-.2339.6064,0,1.209.0435,1.8066.1299s1.1396.2637,1.625.5317.875.6445,1.1699,1.1284c.2949.4844.4424,1.1157.4424,1.8936v6.9014c0,.5195.0293.8994.0908,1.1416.0605.2422.2637.3633.6113.3633.1904,0,.415-.0347.6758-.104v1.7163ZM477.9847,55.6515c-.2783.207-.6416.3579-1.0928.4526-.4502.0952-.9229.1729-1.417.2329-.4932.0605-.9922.1299-1.4941.2075-.5029.0771-.9541.2026-1.3525.3745-.3984.1724-.7236.4185-.9746.7378-.252.3188-.377.7544-.377,1.3062,0,.3623.0732.6685.2207.9185.1475.2505.3379.4531.5723.6084.2334.1553.5068.2671.8184.3364.3125.0688.6416.103.9883.103.7275,0,1.3516-.0991,1.8721-.2974.5195-.1982.9443-.4482,1.2744-.7505.3281-.3018.5713-.6294.7275-.9829s.2344-.6855.2344-.9961v-2.251Z' fill='%23fff'/%3E%3Cpath d='M485.8099,49.1515v2.1318h.0518c.9189-1.6289,2.375-2.4438,4.3682-2.4438.8838,0,1.6201.1216,2.21.3638.5889.2432,1.0664.5811,1.4297,1.0142.3643.4336.6201.9492.7676,1.5469.1465.5981.2207,1.2612.2207,1.9893v8.8398h-2.21v-9.1001c0-.832-.2432-1.4902-.7285-1.9761-.4854-.4849-1.1523-.728-2.002-.728-.6758,0-1.2607.104-1.7549.312s-.9053.5029-1.2344.8843c-.3301.3813-.5771.8276-.7412,1.3389-.165.5117-.2471,1.0703-.2471,1.6772v7.5918h-2.21v-13.4419h2.0801Z' fill='%23fff'/%3E%3Cpath d='M172.8558,92.9352c-1.0049.7637-2.2705,1.1445-3.7959,1.1445-1.0752,0-2.0059-.1738-2.7949-.5205-.7891-.3457-1.4521-.832-1.9893-1.4561s-.9404-1.3682-1.209-2.2354-.4199-1.8115-.4551-2.834c0-1.0225.1562-1.959.4688-2.8086.3115-.8486.749-1.5859,1.3125-2.21s1.2305-1.1084,2.002-1.4561c.7715-.3457,1.6162-.5195,2.5352-.5195,1.1963,0,2.1885.2471,2.9775.7412.7881.4941,1.4209,1.1221,1.8975,1.8848s.8057,1.5947.9883,2.4961c.1816.9014.2549,1.7598.2207,2.5742h-10.0615c-.0176.5889.0518,1.1484.208,1.6768.1553.5283.4062.9971.7539,1.4043.3467.4072.7881.7324,1.3262.9746.5361.2432,1.1699.3643,1.8975.3643.9365,0,1.7031-.2168,2.3008-.6504.5986-.4326.9922-1.0918,1.1836-1.9756h2.1836c-.2949,1.5078-.9443,2.6436-1.9502,3.4053ZM172.3236,84.3034c-.2002-.4678-.4688-.8711-.8066-1.209s-.7363-.6064-1.1963-.8057c-.459-.1992-.9658-.2988-1.5205-.2988-.5723,0-1.0879.0996-1.5469.2988-.46.1992-.8545.4727-1.1836.8193s-.5889.749-.7793,1.209c-.1914.459-.3037.9482-.3379,1.4688h7.7217c-.0352-.5205-.1523-1.0146-.3506-1.4824Z' fill='%23fff'/%3E%3Cpath d='M186.9213,92.9352c-1.0049.7637-2.2705,1.1445-3.7959,1.1445-1.0752,0-2.0059-.1738-2.7949-.5205-.7891-.3457-1.4521-.832-1.9893-1.4561s-.9404-1.3682-1.209-2.2354-.4199-1.8115-.4551-2.834c0-1.0225.1562-1.959.4688-2.8086.3115-.8486.749-1.5859,1.3125-2.21s1.2305-1.1084,2.002-1.4561c.7715-.3457,1.6162-.5195,2.5352-.5195,1.1963,0,2.1885.2471,2.9775.7412.7881.4941,1.4209,1.1221,1.8975,1.8848s.8057,1.5947.9883,2.4961c.1816.9014.2549,1.7598.2207,2.5742h-10.0615c-.0176.5889.0518,1.1484.208,1.6768.1553.5283.4062.9971.7539,1.4043.3467.4072.7881.7324,1.3262.9746.5361.2432,1.1699.3643,1.8975.3643.9365,0,1.7031-.2168,2.3008-.6504.5986-.4326.9922-1.0918,1.1836-1.9756h2.1836c-.2949,1.5078-.9443,2.6436-1.9502,3.4053ZM186.389,84.3034c-.2002-.4678-.4688-.8711-.8066-1.209s-.7363-.6064-1.1963-.8057c-.459-.1992-.9658-.2988-1.5205-.2988-.5723,0-1.0879.0996-1.5469.2988-.46.1992-.8545.4727-1.1836.8193s-.5889.749-.7793,1.209c-.1914.459-.3037.9482-.3379,1.4688h7.7217c-.0352-.5205-.1523-1.0146-.3506-1.4824Z' fill='%23fff'/%3E%3Cpath d='M193.5521,80.3512v2.1328h.0518c.9189-1.6299,2.375-2.4443,4.3682-2.4443.8838,0,1.6201.1211,2.21.3643.5889.2422,1.0664.5811,1.4297,1.0137.3643.4336.6201.9492.7676,1.5469.1465.5977.2207,1.2607.2207,1.9893v8.8398h-2.21v-9.0996c0-.832-.2432-1.4912-.7285-1.9766s-1.1523-.7275-2.002-.7275c-.6758,0-1.2607.1035-1.7549.3115s-.9053.5029-1.2344.8838c-.3301.3818-.5771.8281-.7412,1.3398-.165.5107-.2471,1.0703-.2471,1.6768v7.5918h-2.21v-13.4424h2.0801Z' fill='%23fff'/%3E%3Cpath d='M224.3353,93.7936l-2.7295-10.6855h-.0527l-2.7031,10.6855h-2.3926l-4.3154-13.4424h2.4434l3.042,10.998h.0527l2.7031-10.998h2.418l2.8086,10.998h.0518l3.0156-10.998h2.2881l-4.29,13.4424h-2.3398Z' fill='%23fff'/%3E%3Cpath d='M242.6908,92.9352c-1.0049.7637-2.2705,1.1445-3.7959,1.1445-1.0752,0-2.0059-.1738-2.7949-.5205-.7891-.3457-1.4521-.832-1.9893-1.4561s-.9404-1.3682-1.209-2.2354-.4199-1.8115-.4551-2.834c0-1.0225.1562-1.959.4688-2.8086.3115-.8486.749-1.5859,1.3125-2.21s1.2305-1.1084,2.002-1.4561c.7715-.3457,1.6162-.5195,2.5352-.5195,1.1963,0,2.1885.2471,2.9775.7412.7881.4941,1.4209,1.1221,1.8975,1.8848s.8057,1.5947.9883,2.4961c.1816.9014.2549,1.7598.2207,2.5742h-10.0615c-.0176.5889.0518,1.1484.208,1.6768.1553.5283.4062.9971.7539,1.4043.3467.4072.7881.7324,1.3262.9746.5361.2432,1.1699.3643,1.8975.3643.9365,0,1.7031-.2168,2.3008-.6504.5986-.4326.9922-1.0918,1.1836-1.9756h2.1836c-.2949,1.5078-.9443,2.6436-1.9502,3.4053ZM242.1586,84.3034c-.2002-.4678-.4688-.8711-.8066-1.209s-.7363-.6064-1.1963-.8057c-.459-.1992-.9658-.2988-1.5205-.2988-.5723,0-1.0879.0996-1.5469.2988-.46.1992-.8545.4727-1.1836.8193s-.5889.749-.7793,1.209c-.1914.459-.3037.9482-.3379,1.4688h7.7217c-.0352-.5205-.1523-1.0146-.3506-1.4824Z' fill='%23fff'/%3E%3Cpath d='M249.2435,80.3512v2.834h.0518c.5371-1.0918,1.1963-1.8975,1.9766-2.418.7793-.5195,1.7676-.7617,2.9639-.7275v2.3398c-.8838,0-1.6387.1211-2.2617.3643-.624.2432-1.127.5977-1.5088,1.0654-.3809.4688-.6582,1.0361-.832,1.7031-.1729.668-.2598,1.4346-.2598,2.3008v5.9805h-2.21v-13.4424h2.0801Z' fill='%23fff'/%3E%3Cpath d='M265.0511,92.9352c-1.0049.7637-2.2705,1.1445-3.7959,1.1445-1.0752,0-2.0059-.1738-2.7949-.5205-.7891-.3457-1.4521-.832-1.9893-1.4561s-.9404-1.3682-1.209-2.2354-.4199-1.8115-.4551-2.834c0-1.0225.1562-1.959.4688-2.8086.3115-.8486.749-1.5859,1.3125-2.21s1.2305-1.1084,2.002-1.4561c.7715-.3457,1.6162-.5195,2.5352-.5195,1.1963,0,2.1885.2471,2.9775.7412.7881.4941,1.4209,1.1221,1.8975,1.8848s.8057,1.5947.9883,2.4961c.1816.9014.2549,1.7598.2207,2.5742h-10.0615c-.0176.5889.0518,1.1484.208,1.6768.1553.5283.4062.9971.7539,1.4043.3467.4072.7881.7324,1.3262.9746.5361.2432,1.1699.3643,1.8975.3643.9365,0,1.7031-.2168,2.3008-.6504.5986-.4326.9922-1.0918,1.1836-1.9756h2.1836c-.2949,1.5078-.9443,2.6436-1.9502,3.4053ZM264.5189,84.3034c-.2002-.4678-.4688-.8711-.8066-1.209s-.7363-.6064-1.1963-.8057c-.459-.1992-.9658-.2988-1.5205-.2988-.5723,0-1.0879.0996-1.5469.2988-.46.1992-.8545.4727-1.1836.8193s-.5889.749-.7793,1.209c-.1914.459-.3037.9482-.3379,1.4688h7.7217c-.0352-.5205-.1523-1.0146-.3506-1.4824Z' fill='%23fff'/%3E%3Cpath d='M271.9418,75.2296v18.564h-2.21v-18.564h2.21Z' fill='%23fff'/%3E%3Cpath d='M285.2787,93.7936v-1.8203h-.0518c-.3643.7461-.9365,1.2832-1.7158,1.6123-.7803.3291-1.6387.4941-2.5742.4941-1.04,0-1.9463-.1914-2.7168-.5723-.7715-.3809-1.4131-.8926-1.9238-1.5342-.5117-.6406-.8975-1.3857-1.1572-2.2354s-.3906-1.751-.3906-2.7041.126-1.8545.3779-2.7041c.251-.8496.6318-1.5898,1.1436-2.2227.5107-.6328,1.1523-1.1357,1.9238-1.5088.7715-.3721,1.668-.5586,2.6914-.5586.3467,0,.7188.0352,1.1182.1035.3984.0703.7969.1865,1.1953.3516s.7754.3809,1.1309.6494c.3555.2695.6543.6025.8975,1.001h.0518v-6.9155h2.21v18.564h-2.21ZM277.3363,89.0221c.1641.5986.416,1.1318.7539,1.5996s.7705.8408,1.2998,1.1182c.5283.2773,1.1475.416,1.8584.416.7451,0,1.3789-.1475,1.8984-.4424s.9443-.6797,1.2744-1.1572c.3291-.4766.5674-1.0176.7148-1.625.1465-.6064.2207-1.2217.2207-1.8457,0-.6582-.0781-1.2959-.2344-1.9111-.1553-.6152-.4023-1.1572-.7402-1.625s-.7764-.8447-1.3135-1.1309-1.1875-.4287-1.9502-.4287c-.7451,0-1.3779.1475-1.8975.4414-.5205.2949-.9365.6855-1.248,1.1699-.3125.4863-.5381,1.04-.6758,1.6641-.1396.624-.208,1.2656-.208,1.9248,0,.623.082,1.2344.2471,1.832Z' fill='%23fff'/%3E%3Cpath d='M301.9711,93.7936l-2.7295-10.6855h-.0527l-2.7031,10.6855h-2.3926l-4.3154-13.4424h2.4434l3.042,10.998h.0527l2.7031-10.998h2.418l2.8086,10.998h.0518l3.0156-10.998h2.2881l-4.29,13.4424h-2.3398Z' fill='%23fff'/%3E%3Cpath d='M310.9408,77.9333v-2.7036h2.21v2.7036h-2.21ZM313.1508,80.3512v13.4424h-2.21v-13.4424h2.21Z' fill='%23fff'/%3E%3Cpath d='M318.1556,98.0963c-.5811.5459-1.3652.8193-2.3525.8193-.3994,0-.7715-.0352-1.1182-.1045v-1.8975c.0869.0166.1602.0303.2207.0391.0615.0088.126.0127.1953.0127h.4678c.4854,0,.8145-.1348.9883-.4033.1729-.2686.2598-.749.2598-1.4424v-14.7686h2.21v15.1328c0,1.1953-.29,2.0664-.8711,2.6123ZM316.8168,77.9333v-2.7036h2.21v2.7036h-2.21Z' fill='%23fff'/%3E%3Cpath d='M332.3636,93.7936v-1.8203h-.0518c-.3643.7461-.9365,1.2832-1.7158,1.6123-.7803.3291-1.6387.4941-2.5742.4941-1.04,0-1.9463-.1914-2.7168-.5723-.7715-.3809-1.4131-.8926-1.9238-1.5342-.5117-.6406-.8975-1.3857-1.1572-2.2354s-.3906-1.751-.3906-2.7041.126-1.8545.3779-2.7041c.251-.8496.6318-1.5898,1.1436-2.2227.5107-.6328,1.1523-1.1357,1.9238-1.5088.7715-.3721,1.668-.5586,2.6914-.5586.3467,0,.7188.0352,1.1182.1035.3984.0703.7969.1865,1.1953.3516s.7754.3809,1.1309.6494c.3555.2695.6543.6025.8975,1.001h.0518v-6.9155h2.21v18.564h-2.21ZM324.4213,89.0221c.1641.5986.416,1.1318.7539,1.5996s.7705.8408,1.2998,1.1182c.5283.2773,1.1475.416,1.8584.416.7451,0,1.3789-.1475,1.8984-.4424s.9443-.6797,1.2744-1.1572c.3291-.4766.5674-1.0176.7148-1.625.1465-.6064.2207-1.2217.2207-1.8457,0-.6582-.0781-1.2959-.2344-1.9111-.1553-.6152-.4023-1.1572-.7402-1.625s-.7764-.8447-1.3135-1.1309-1.1875-.4287-1.9502-.4287c-.7451,0-1.3779.1475-1.8975.4414-.5205.2949-.9365.6855-1.248,1.1699-.3125.4863-.5381,1.04-.6758,1.6641-.1396.624-.208,1.2656-.208,1.9248,0,.623.082,1.2344.2471,1.832Z' fill='%23fff'/%3E%3Cpath d='M347.6,92.9352c-1.0049.7637-2.2705,1.1445-3.7959,1.1445-1.0752,0-2.0059-.1738-2.7949-.5205-.7891-.3457-1.4521-.832-1.9893-1.4561s-.9404-1.3682-1.209-2.2354-.4199-1.8115-.4551-2.834c0-1.0225.1562-1.959.4688-2.8086.3115-.8486.749-1.5859,1.3125-2.21s1.2305-1.1084,2.002-1.4561c.7715-.3457,1.6162-.5195,2.5352-.5195,1.1963,0,2.1885.2471,2.9775.7412.7881.4941,1.4209,1.1221,1.8975,1.8848s.8057,1.5947.9883,2.4961c.1816.9014.2549,1.7598.2207,2.5742h-10.0615c-.0176.5889.0518,1.1484.208,1.6768.1553.5283.4062.9971.7539,1.4043.3467.4072.7881.7324,1.3262.9746.5361.2432,1.1699.3643,1.8975.3643.9365,0,1.7031-.2168,2.3008-.6504.5986-.4326.9922-1.0918,1.1836-1.9756h2.1836c-.2949,1.5078-.9443,2.6436-1.9502,3.4053ZM347.0677,84.3034c-.2002-.4678-.4688-.8711-.8066-1.209s-.7363-.6064-1.1963-.8057c-.459-.1992-.9658-.2988-1.5205-.2988-.5723,0-1.0879.0996-1.5469.2988-.46.1992-.8545.4727-1.1836.8193s-.5889.749-.7793,1.209c-.1914.459-.3037.9482-.3379,1.4688h7.7217c-.0352-.5205-.1523-1.0146-.3506-1.4824Z' fill='%23fff'/%3E%3Cpath d='M361.7699,75.2296v6.9419h.0518c.3643-.7451.9365-1.2871,1.7158-1.625.7803-.3379,1.6387-.5068,2.5742-.5068,1.04,0,1.9453.1904,2.7168.5723.7715.3809,1.4131.8965,1.9238,1.5469.5117.6494.8975,1.3994,1.1572,2.249s.3906,1.751.3906,2.7041-.126,1.8545-.377,2.7041c-.252.8486-.6338,1.5898-1.1445,2.2227-.5117.6328-1.1533,1.1309-1.9238,1.4951-.7715.3633-1.6689.5459-2.6914.5459-.3291,0-.6973-.0352-1.1045-.1045s-.8105-.1816-1.209-.3379c-.3994-.1553-.7764-.3682-1.1309-.6367-.3555-.2686-.6553-.6025-.8975-1.001h-.0518v1.7939h-2.21v-18.564h2.21ZM369.7123,85.1227c-.1641-.5977-.416-1.1309-.7539-1.5986-.3379-.4688-.7715-.8408-1.2998-1.1182s-1.1484-.416-1.8584-.416c-.7461,0-1.3789.1475-1.8984.4414-.5195.2949-.9453.6807-1.2744,1.1572s-.5674,1.0186-.7148,1.625c-.1475.6074-.2207,1.2217-.2207,1.8457,0,.6592.0781,1.2959.2344,1.9111.1553.6152.4023,1.1572.7402,1.625s.7764.8457,1.3135,1.1309c.5371.2861,1.1865.4297,1.9502.4297.7627,0,1.3994-.1475,1.9111-.4424.5107-.2949.9229-.6846,1.2344-1.1699.3125-.4854.5371-1.04.6758-1.6641s.208-1.2646.208-1.9238c0-.624-.082-1.2354-.2471-1.833Z' fill='%23fff'/%3E%3Cpath d='M384.5189,92.9352c-1.0049.7637-2.2705,1.1445-3.7959,1.1445-1.0752,0-2.0059-.1738-2.7949-.5205-.7891-.3457-1.4521-.832-1.9893-1.4561s-.9404-1.3682-1.209-2.2354-.4199-1.8115-.4551-2.834c0-1.0225.1562-1.959.4688-2.8086.3115-.8486.749-1.5859,1.3125-2.21s1.2305-1.1084,2.002-1.4561c.7715-.3457,1.6162-.5195,2.5352-.5195,1.1963,0,2.1885.2471,2.9775.7412.7881.4941,1.4209,1.1221,1.8975,1.8848s.8057,1.5947.9883,2.4961c.1816.9014.2549,1.7598.2207,2.5742h-10.0615c-.0176.5889.0518,1.1484.208,1.6768.1553.5283.4062.9971.7539,1.4043.3467.4072.7881.7324,1.3262.9746.5361.2432,1.1699.3643,1.8975.3643.9365,0,1.7031-.2168,2.3008-.6504.5986-.4326.9922-1.0918,1.1836-1.9756h2.1836c-.2949,1.5078-.9443,2.6436-1.9502,3.4053ZM383.9867,84.3034c-.2002-.4678-.4688-.8711-.8066-1.209s-.7363-.6064-1.1963-.8057c-.459-.1992-.9658-.2988-1.5205-.2988-.5723,0-1.0879.0996-1.5469.2988-.46.1992-.8545.4727-1.1836.8193s-.5889.749-.7793,1.209c-.1914.459-.3037.9482-.3379,1.4688h7.7217c-.0352-.5205-.1523-1.0146-.3506-1.4824Z' fill='%23fff'/%3E%3Cpath d='M400.0414,93.7936l-2.7295-10.6855h-.0527l-2.7031,10.6855h-2.3926l-4.3154-13.4424h2.4434l3.042,10.998h.0527l2.7031-10.998h2.418l2.8086,10.998h.0518l3.0156-10.998h2.2881l-4.29,13.4424h-2.3398Z' fill='%23fff'/%3E%3Cpath d='M418.3969,92.9352c-1.0049.7637-2.2705,1.1445-3.7959,1.1445-1.0752,0-2.0059-.1738-2.7949-.5205-.7891-.3457-1.4521-.832-1.9893-1.4561s-.9404-1.3682-1.209-2.2354-.4199-1.8115-.4551-2.834c0-1.0225.1562-1.959.4688-2.8086.3115-.8486.749-1.5859,1.3125-2.21s1.2305-1.1084,2.002-1.4561c.7715-.3457,1.6162-.5195,2.5352-.5195,1.1963,0,2.1885.2471,2.9775.7412.7881.4941,1.4209,1.1221,1.8975,1.8848s.8057,1.5947.9883,2.4961c.1816.9014.2549,1.7598.2207,2.5742h-10.0615c-.0176.5889.0518,1.1484.208,1.6768.1553.5283.4062.9971.7539,1.4043.3467.4072.7881.7324,1.3262.9746.5361.2432,1.1699.3643,1.8975.3643.9365,0,1.7031-.2168,2.3008-.6504.5986-.4326.9922-1.0918,1.1836-1.9756h2.1836c-.2949,1.5078-.9443,2.6436-1.9502,3.4053ZM417.8646,84.3034c-.2002-.4678-.4688-.8711-.8066-1.209s-.7363-.6064-1.1963-.8057c-.459-.1992-.9658-.2988-1.5205-.2988-.5723,0-1.0879.0996-1.5469.2988-.46.1992-.8545.4727-1.1836.8193s-.5889.749-.7793,1.209c-.1914.459-.3037.9482-.3379,1.4688h7.7217c-.0352-.5205-.1523-1.0146-.3506-1.4824Z' fill='%23fff'/%3E%3Cpath d='M433.0355,97.5895c-1.0059,1.0918-2.583,1.6377-4.7324,1.6377-.623,0-1.2607-.0693-1.9102-.208-.6504-.1387-1.2402-.3633-1.7686-.6758-.5283-.3115-.9658-.7197-1.3125-1.2217-.3477-.5029-.5381-1.1182-.5723-1.8457h2.21c.0166.3984.1426.7363.377,1.0137s.5205.502.8584.6758c.3379.1729.7061.2988,1.1045.377s.7803.1172,1.1445.1172c.7275,0,1.3428-.126,1.8457-.377.502-.252.918-.5977,1.248-1.04.3291-.4424.5674-.9746.7148-1.5986s.2207-1.3086.2207-2.0547v-.8838h-.0518c-.3818.832-.958,1.4434-1.7285,1.833-.7715.3896-1.5908.585-2.457.585-1.0059,0-1.8809-.1816-2.626-.5459-.7461-.3643-1.3701-.8535-1.8721-1.4688-.5029-.6152-.8799-1.335-1.1309-2.1582-.252-.8232-.3779-1.6943-.3779-2.6133,0-.7969.1045-1.6162.3125-2.457.208-.8398.5547-1.6025,1.04-2.2881.4854-.6846,1.126-1.248,1.9238-1.6895.7969-.4424,1.7764-.6631,2.9385-.6631.8486,0,1.6289.1865,2.3398.5586.71.373,1.2646.9326,1.6641,1.6777h.0254v-1.9248h2.0801v12.2988c0,2.2002-.5029,3.8477-1.5078,4.9395ZM430.2142,91.5446c.5117-.3027.9229-.7021,1.2354-1.1963.3115-.4941.542-1.0527.6895-1.6768.1465-.624.2207-1.248.2207-1.8721,0-.5889-.0693-1.1699-.208-1.7422-.1387-.5713-.3604-1.0869-.6631-1.5469-.3037-.459-.6982-.8271-1.1826-1.1045-.4863-.2773-1.0752-.416-1.7686-.416-.7109,0-1.3174.1338-1.8203.4023-.5029.2695-.9141.6289-1.2344,1.0791-.3213.4512-.5547.9717-.7021,1.5605s-.2207,1.2051-.2207,1.8457c0,.6074.0605,1.2139.1816,1.8203s.3291,1.1562.624,1.6504.6846.8936,1.1699,1.1963c.4854.3037,1.0918.4551,1.8203.4551.7275,0,1.3477-.1514,1.8584-.4551Z' fill='%23fff'/%3E%3Cpath d='M438.1049,77.9333v-2.7036h2.21v2.7036h-2.21ZM440.3148,80.3512v13.4424h-2.21v-13.4424h2.21Z' fill='%23fff'/%3E%3Cpath d='M445.931,80.3512v2.1328h.0518c.9189-1.6299,2.375-2.4443,4.3682-2.4443.8838,0,1.6201.1211,2.21.3643.5889.2422,1.0664.5811,1.4297,1.0137.3643.4336.6201.9492.7676,1.5469.1465.5977.2207,1.2607.2207,1.9893v8.8398h-2.21v-9.0996c0-.832-.2432-1.4912-.7285-1.9766s-1.1523-.7275-2.002-.7275c-.6758,0-1.2607.1035-1.7549.3115s-.9053.5029-1.2344.8838c-.3301.3818-.5771.8281-.7412,1.3398-.165.5107-.2471,1.0703-.2471,1.6768v7.5918h-2.21v-13.4424h2.0801Z' fill='%23fff'/%3E%3Cpath d='M468.4984,97.5895c-1.0059,1.0918-2.583,1.6377-4.7324,1.6377-.623,0-1.2607-.0693-1.9102-.208-.6504-.1387-1.2402-.3633-1.7686-.6758-.5283-.3115-.9658-.7197-1.3125-1.2217-.3477-.5029-.5381-1.1182-.5723-1.8457h2.21c.0166.3984.1426.7363.377,1.0137s.5205.502.8584.6758c.3379.1729.7061.2988,1.1045.377s.7803.1172,1.1445.1172c.7275,0,1.3428-.126,1.8457-.377.502-.252.918-.5977,1.248-1.04.3291-.4424.5674-.9746.7148-1.5986s.2207-1.3086.2207-2.0547v-.8838h-.0518c-.3818.832-.958,1.4434-1.7285,1.833-.7715.3896-1.5908.585-2.457.585-1.0059,0-1.8809-.1816-2.626-.5459-.7461-.3643-1.3701-.8535-1.8721-1.4688-.5029-.6152-.8799-1.335-1.1309-2.1582-.252-.8232-.3779-1.6943-.3779-2.6133,0-.7969.1045-1.6162.3125-2.457.208-.8398.5547-1.6025,1.04-2.2881.4854-.6846,1.126-1.248,1.9238-1.6895.7969-.4424,1.7764-.6631,2.9385-.6631.8486,0,1.6289.1865,2.3398.5586.71.373,1.2646.9326,1.6641,1.6777h.0254v-1.9248h2.0801v12.2988c0,2.2002-.5029,3.8477-1.5078,4.9395ZM465.6771,91.5446c.5117-.3027.9229-.7021,1.2354-1.1963.3115-.4941.542-1.0527.6895-1.6768.1465-.624.2207-1.248.2207-1.8721,0-.5889-.0693-1.1699-.208-1.7422-.1387-.5713-.3604-1.0869-.6631-1.5469-.3037-.459-.6982-.8271-1.1826-1.1045-.4863-.2773-1.0752-.416-1.7686-.416-.7109,0-1.3174.1338-1.8203.4023-.5029.2695-.9141.6289-1.2344,1.0791-.3213.4512-.5547.9717-.7021,1.5605s-.2207,1.2051-.2207,1.8457c0,.6074.0605,1.2139.1816,1.8203s.3291,1.1562.624,1.6504.6846.8936,1.1699,1.1963c.4854.3037,1.0918.4551,1.8203.4551.7275,0,1.3477-.1514,1.8584-.4551Z' fill='%23fff'/%3E%3Cpath d='M490.5717,93.7936v-1.8203h-.0518c-.3643.7461-.9365,1.2832-1.7158,1.6123-.7803.3291-1.6387.4941-2.5742.4941-1.04,0-1.9463-.1914-2.7168-.5723-.7715-.3809-1.4131-.8926-1.9238-1.5342-.5117-.6406-.8975-1.3857-1.1572-2.2354s-.3906-1.751-.3906-2.7041.126-1.8545.3779-2.7041c.251-.8496.6318-1.5898,1.1436-2.2227.5107-.6328,1.1523-1.1357,1.9238-1.5088.7715-.3721,1.668-.5586,2.6914-.5586.3467,0,.7188.0352,1.1182.1035.3984.0703.7969.1865,1.1953.3516s.7754.3809,1.1309.6494c.3555.2695.6543.6025.8975,1.001h.0518v-6.9155h2.21v18.564h-2.21ZM482.6293,89.0221c.1641.5986.416,1.1318.7539,1.5996s.7705.8408,1.2998,1.1182c.5283.2773,1.1475.416,1.8584.416.7451,0,1.3789-.1475,1.8984-.4424s.9443-.6797,1.2744-1.1572c.3291-.4766.5674-1.0176.7148-1.625.1465-.6064.2207-1.2217.2207-1.8457,0-.6582-.0781-1.2959-.2344-1.9111-.1553-.6152-.4023-1.1572-.7402-1.625s-.7764-.8447-1.3135-1.1309-1.1875-.4287-1.9502-.4287c-.7451,0-1.3779.1475-1.8975.4414-.5205.2949-.9365.6855-1.248,1.1699-.3125.4863-.5381,1.04-.6758,1.6641-.1396.624-.208,1.2656-.208,1.9248,0,.623.082,1.2344.2471,1.832Z' fill='%23fff'/%3E%3Cpath d='M496.4222,77.9333v-2.7036h2.21v2.7036h-2.21ZM498.6322,80.3512v13.4424h-2.21v-13.4424h2.21Z' fill='%23fff'/%3E%3Cpath d='M511.683,92.9352c-1.0049.7637-2.2705,1.1445-3.7959,1.1445-1.0752,0-2.0059-.1738-2.7949-.5205-.7891-.3457-1.4521-.832-1.9893-1.4561s-.9404-1.3682-1.209-2.2354-.4199-1.8115-.4551-2.834c0-1.0225.1562-1.959.4688-2.8086.3115-.8486.749-1.5859,1.3125-2.21s1.2305-1.1084,2.002-1.4561c.7715-.3457,1.6162-.5195,2.5352-.5195,1.1963,0,2.1885.2471,2.9775.7412.7881.4941,1.4209,1.1221,1.8975,1.8848s.8057,1.5947.9883,2.4961c.1816.9014.2549,1.7598.2207,2.5742h-10.0615c-.0176.5889.0518,1.1484.208,1.6768.1553.5283.4062.9971.7539,1.4043.3467.4072.7881.7324,1.3262.9746.5361.2432,1.1699.3643,1.8975.3643.9365,0,1.7031-.2168,2.3008-.6504.5986-.4326.9922-1.0918,1.1836-1.9756h2.1836c-.2949,1.5078-.9443,2.6436-1.9502,3.4053ZM511.1508,84.3034c-.2002-.4678-.4688-.8711-.8066-1.209s-.7363-.6064-1.1963-.8057c-.459-.1992-.9658-.2988-1.5205-.2988-.5723,0-1.0879.0996-1.5469.2988-.46.1992-.8545.4727-1.1836.8193s-.5889.749-.7793,1.209c-.1914.459-.3037.9482-.3379,1.4688h7.7217c-.0352-.5205-.1523-1.0146-.3506-1.4824Z' fill='%23fff'/%3E%3Cpath d='M170.3597,113.5006h-7.5918v-1.9502h10.4521v1.5088l-8.2158,9.9834h8.5801v1.9502h-11.3359v-1.6904l8.1113-9.8018Z' fill='%23fff'/%3E%3Cpath d='M176.0531,109.1325v-2.7041h2.21v2.7041h-2.21ZM178.2631,111.5504v13.4424h-2.21v-13.4424h2.21Z' fill='%23fff'/%3E%3Cpath d='M189.8334,113.8913c-.5557-.4688-1.2998-.7021-2.2363-.7021-.7979,0-1.4648.1475-2.002.4414-.5371.2949-.9668.6855-1.2871,1.1699-.3203.4863-.5508,1.0449-.6885,1.6777-.1396.6328-.208,1.2871-.208,1.9629,0,.624.0732,1.2305.2207,1.8193.1475.5898.377,1.1143.6885,1.5732.3125.46.7197.8281,1.2227,1.1055.502.2773,1.1006.416,1.7939.416,1.0918,0,1.9453-.2861,2.5605-.8584s.9922-1.3779,1.1309-2.418h2.2627c-.2432,1.6641-.8623,2.9473-1.8594,3.8477-.9971.9023-2.3525,1.3525-4.0693,1.3525-1.0225,0-1.9277-.165-2.7168-.4941s-1.4473-.7969-1.9756-1.4043c-.5293-.6064-.9277-1.3301-1.1963-2.1709-.2686-.8398-.4033-1.7637-.4033-2.7686s.1309-1.9453.3906-2.8213c.2598-.875.6543-1.6377,1.1826-2.2881.5283-.6494,1.1914-1.1611,1.9893-1.5342.7969-.3721,1.7246-.5586,2.7822-.5586.7627,0,1.4775.0908,2.1445.2725.667.1826,1.2568.4648,1.7686.8457.5107.3809.9316.8623,1.2607,1.4424.3291.5811.5371,1.2705.624,2.0674h-2.2881c-.1738-.8486-.5371-1.5078-1.0918-1.9756Z' fill='%23fff'/%3E%3Cpath d='M198.0746,106.4284v7.0986h.0518c.1729-.416.416-.7676.7285-1.0527.3115-.2861.6631-.5205,1.0527-.7021.3896-.1826.7969-.3164,1.2217-.4033s.8359-.1299,1.2354-.1299c.8838,0,1.6201.1211,2.21.3643.5889.2422,1.0664.5811,1.4297,1.0137.3643.4336.6201.9492.7676,1.5469.1465.5977.2207,1.2607.2207,1.9893v8.8398h-2.21v-9.0996c0-.832-.2432-1.4912-.7285-1.9766s-1.1523-.7275-2.002-.7275c-.6758,0-1.2607.1035-1.7549.3115s-.9053.5029-1.2344.8838c-.3301.3818-.5771.8281-.7412,1.3398-.165.5107-.2471,1.0703-.2471,1.6768v7.5918h-2.21v-18.5645h2.21Z' fill='%23fff'/%3E%3Cpath d='M217.8861,109.1325v-2.7041h2.21v2.7041h-2.21ZM220.0961,111.5504v13.4424h-2.21v-13.4424h2.21Z' fill='%23fff'/%3E%3Cpath d='M225.7123,111.5504v2.1328h.0518c.9189-1.6299,2.375-2.4443,4.3682-2.4443.8838,0,1.6201.1211,2.21.3643.5889.2422,1.0664.5811,1.4297,1.0137.3643.4336.6201.9492.7676,1.5469.1465.5977.2207,1.2607.2207,1.9893v8.8398h-2.21v-9.0996c0-.832-.2432-1.4912-.7285-1.9766s-1.1523-.7275-2.002-.7275c-.6758,0-1.2607.1035-1.7549.3115s-.9053.5029-1.2344.8838c-.3301.3818-.5771.8281-.7412,1.3398-.165.5107-.2471,1.0703-.2471,1.6768v7.5918h-2.21v-13.4424h2.0801Z' fill='%23fff'/%3E%3Cpath d='M245.2113,113.5006h-7.5918v-1.9502h10.4521v1.5088l-8.2158,9.9834h8.5801v1.9502h-11.3359v-1.6904l8.1113-9.8018Z' fill='%23fff'/%3E%3Cpath d='M260.2914,124.1344c-1.0049.7637-2.2705,1.1445-3.7959,1.1445-1.0752,0-2.0059-.1738-2.7949-.5205-.7891-.3457-1.4521-.832-1.9893-1.4561s-.9404-1.3682-1.209-2.2354-.4199-1.8115-.4551-2.834c0-1.0225.1562-1.959.4688-2.8086.3115-.8486.749-1.5859,1.3125-2.21s1.2305-1.1084,2.002-1.4561c.7715-.3457,1.6162-.5195,2.5352-.5195,1.1963,0,2.1885.2471,2.9775.7412.7881.4941,1.4209,1.1221,1.8975,1.8848s.8057,1.5947.9883,2.4961c.1816.9014.2549,1.7598.2207,2.5742h-10.0615c-.0176.5889.0518,1.1484.208,1.6768.1553.5283.4062.9971.7539,1.4043.3467.4072.7881.7324,1.3262.9746.5361.2432,1.1699.3643,1.8975.3643.9365,0,1.7031-.2168,2.3008-.6504.5986-.4326.9922-1.0918,1.1836-1.9756h2.1836c-.2949,1.5078-.9443,2.6436-1.9502,3.4053ZM259.7592,115.5026c-.2002-.4678-.4688-.8711-.8066-1.209s-.7363-.6064-1.1963-.8057c-.459-.1992-.9658-.2988-1.5205-.2988-.5723,0-1.0879.0996-1.5469.2988-.46.1992-.8545.4727-1.1836.8193s-.5889.749-.7793,1.209c-.1914.459-.3037.9482-.3379,1.4688h7.7217c-.0352-.5205-.1523-1.0146-.3506-1.4824Z' fill='%23fff'/%3E%3Cpath d='M270.5873,111.5504v1.9502h-2.6777v8.3457c0,.2607.0215.4688.0645.624.043.1562.126.2783.2471.3643.1211.0869.29.1436.5068.1689.2168.0264.498.0391.8457.0391h1.0137v1.9502h-1.6904c-.5713,0-1.0615-.0391-1.4688-.1172s-.7373-.2207-.9883-.4287-.4375-.5029-.5586-.8838c-.1211-.3818-.1816-.8848-.1816-1.5088v-8.5537h-2.2881v-1.9502h2.2881v-4.0293h2.21v4.0293h2.6777Z' fill='%23fff'/%3E%3Cpath d='M284.1586,124.9928l-4.9922-13.4424h2.4697l3.7695,11.2061h.0527l3.666-11.2061h2.3135l-4.9141,13.4424h-2.3652Z' fill='%23fff'/%3E%3Cpath d='M293.2582,115.5163c.2773-.8584.6934-1.6035,1.248-2.2363s1.2393-1.1309,2.0547-1.4951c.8145-.3643,1.75-.5459,2.8076-.5459,1.0742,0,2.0146.1816,2.8213.5459.8057.3643,1.4863.8623,2.041,1.4951s.9707,1.3779,1.248,2.2363c.2764.8574.416,1.7803.416,2.7686s-.1396,1.9072-.416,2.7559c-.2773.8496-.6934,1.5908-1.248,2.2236s-1.2354,1.126-2.041,1.4814c-.8066.3555-1.7471.5332-2.8213.5332-1.0576,0-1.9932-.1777-2.8076-.5332-.8154-.3555-1.5-.8486-2.0547-1.4814s-.9707-1.374-1.248-2.2236c-.2773-.8486-.416-1.7676-.416-2.7559s.1387-1.9111.416-2.7686ZM295.5072,120.4557c.2168.6328.5156,1.1611.8975,1.5859.3809.4248.8271.75,1.3389.9756.5107.2246,1.0527.3379,1.625.3379s1.1133-.1133,1.625-.3379c.5107-.2256.958-.5508,1.3389-.9756s.6807-.9531.8975-1.5859c.2158-.6328.3252-1.3555.3252-2.1709,0-.8145-.1094-1.5381-.3252-2.1709-.2168-.6328-.5166-1.166-.8975-1.5986-.3809-.4336-.8281-.7627-1.3389-.9883-.5117-.2256-1.0527-.3379-1.625-.3379s-1.1143.1123-1.625.3379c-.5117.2256-.958.5547-1.3389.9883-.3818.4326-.6807.9658-.8975,1.5986s-.3242,1.3564-.3242,2.1709c0,.8154.1074,1.5381.3242,2.1709Z' fill='%23fff'/%3E%3Cpath d='M308.2855,115.5163c.2773-.8584.6934-1.6035,1.248-2.2363s1.2393-1.1309,2.0547-1.4951c.8145-.3643,1.75-.5459,2.8076-.5459,1.0742,0,2.0146.1816,2.8213.5459.8057.3643,1.4863.8623,2.041,1.4951s.9707,1.3779,1.248,2.2363c.2764.8574.416,1.7803.416,2.7686s-.1396,1.9072-.416,2.7559c-.2773.8496-.6934,1.5908-1.248,2.2236s-1.2354,1.126-2.041,1.4814c-.8066.3555-1.7471.5332-2.8213.5332-1.0576,0-1.9932-.1777-2.8076-.5332-.8154-.3555-1.5-.8486-2.0547-1.4814s-.9707-1.374-1.248-2.2236c-.2773-.8486-.416-1.7676-.416-2.7559s.1387-1.9111.416-2.7686ZM310.5345,120.4557c.2168.6328.5156,1.1611.8975,1.5859.3809.4248.8271.75,1.3389.9756.5107.2246,1.0527.3379,1.625.3379s1.1133-.1133,1.625-.3379c.5107-.2256.958-.5508,1.3389-.9756s.6807-.9531.8975-1.5859c.2158-.6328.3252-1.3555.3252-2.1709,0-.8145-.1094-1.5381-.3252-2.1709-.2168-.6328-.5166-1.166-.8975-1.5986-.3809-.4336-.8281-.7627-1.3389-.9883-.5117-.2256-1.0527-.3379-1.625-.3379s-1.1143.1123-1.625.3379c-.5117.2256-.958.5547-1.3389.9883-.3818.4326-.6807.9658-.8975,1.5986s-.3242,1.3564-.3242,2.1709c0,.8154.1074,1.5381.3242,2.1709Z' fill='%23fff'/%3E%3Cpath d='M325.6283,111.5504v2.834h.0518c.5371-1.0918,1.1963-1.8975,1.9766-2.418.7793-.5195,1.7676-.7617,2.9639-.7275v2.3398c-.8838,0-1.6387.1211-2.2617.3643-.624.2432-1.127.5977-1.5088,1.0654-.3809.4688-.6582,1.0361-.832,1.7031-.1729.668-.2598,1.4346-.2598,2.3008v5.9805h-2.21v-13.4424h2.0801Z' fill='%23fff'/%3E%3Cpath d='M341.8002,111.5504v1.9766h.0518c1.0049-1.5254,2.4521-2.2881,4.3418-2.2881.832,0,1.5859.1738,2.2627.5195.6758.3477,1.1523.9365,1.4297,1.7686.4502-.7285,1.0439-1.291,1.7812-1.6904.7363-.3984,1.5469-.5977,2.4307-.5977.6758,0,1.2871.0742,1.833.2207.5459.1475,1.0137.377,1.4043.6895.3896.3115.6924.7148.9102,1.209.2158.4941.3242,1.0879.3242,1.7812v9.8535h-2.21v-8.8145c0-.416-.0342-.8057-.1035-1.1699-.0693-.3633-.1992-.6797-.3906-.9482-.1904-.2686-.4541-.4814-.793-.6377-.3379-.1553-.7754-.2334-1.3125-.2334-1.0918,0-1.9502.3115-2.5742.9355s-.9355,1.4561-.9355,2.4961v8.3721h-2.21v-8.8145c0-.4326-.0391-.832-.1172-1.1953-.0781-.3643-.2129-.6807-.4033-.9492s-.4463-.4766-.7666-.624c-.3213-.1475-.7324-.2207-1.2354-.2207-.6416,0-1.1914.1299-1.6514.3896-.459.2598-.832.5723-1.1172.9365-.2861.3633-.4941.7402-.624,1.1309-.1299.3896-.1953.7148-.1953.9746v8.3721h-2.21v-13.4424h2.0801Z' fill='%23fff'/%3E%3Cpath d='M371.517,124.1344c-1.0049.7637-2.2705,1.1445-3.7959,1.1445-1.0752,0-2.0059-.1738-2.7949-.5205-.7891-.3457-1.4521-.832-1.9893-1.4561s-.9404-1.3682-1.209-2.2354-.4199-1.8115-.4551-2.834c0-1.0225.1562-1.959.4688-2.8086.3115-.8486.749-1.5859,1.3125-2.21s1.2305-1.1084,2.002-1.4561c.7715-.3457,1.6162-.5195,2.5352-.5195,1.1963,0,2.1885.2471,2.9775.7412.7881.4941,1.4209,1.1221,1.8975,1.8848s.8057,1.5947.9883,2.4961c.1816.9014.2549,1.7598.2207,2.5742h-10.0615c-.0176.5889.0518,1.1484.208,1.6768.1553.5283.4062.9971.7539,1.4043.3467.4072.7881.7324,1.3262.9746.5361.2432,1.1699.3643,1.8975.3643.9365,0,1.7031-.2168,2.3008-.6504.5986-.4326.9922-1.0918,1.1836-1.9756h2.1836c-.2949,1.5078-.9443,2.6436-1.9502,3.4053ZM370.9847,115.5026c-.2002-.4678-.4688-.8711-.8066-1.209s-.7363-.6064-1.1963-.8057c-.459-.1992-.9658-.2988-1.5205-.2988-.5723,0-1.0879.0996-1.5469.2988-.46.1992-.8545.4727-1.1836.8193s-.5889.749-.7793,1.209c-.1914.459-.3037.9482-.3379,1.4688h7.7217c-.0352-.5205-.1523-1.0146-.3506-1.4824Z' fill='%23fff'/%3E%3Cpath d='M378.1478,111.5504v2.1328h.0518c.9189-1.6299,2.375-2.4443,4.3682-2.4443.8838,0,1.6201.1211,2.21.3643.5889.2422,1.0664.5811,1.4297,1.0137.3643.4336.6201.9492.7676,1.5469.1465.5977.2207,1.2607.2207,1.9893v8.8398h-2.21v-9.0996c0-.832-.2432-1.4912-.7285-1.9766s-1.1523-.7275-2.002-.7275c-.6758,0-1.2607.1035-1.7549.3115s-.9053.5029-1.2344.8838c-.3301.3818-.5771.8281-.7412,1.3398-.165.5107-.2471,1.0703-.2471,1.6768v7.5918h-2.21v-13.4424h2.0801Z' fill='%23fff'/%3E%3Cpath d='M392.3168,121.9899c.208.3379.4814.6064.8193.8057.3379.2002.7188.3428,1.1445.4297.4238.0869.8613.1299,1.3125.1299.3467,0,.7109-.0264,1.0918-.0781.3818-.0518.7324-.1475,1.0537-.2861.3203-.1387.585-.3418.793-.6113.208-.2686.3115-.6104.3115-1.0264,0-.5723-.2168-1.0059-.6494-1.3008-.4336-.2939-.9756-.5322-1.625-.7148-.6504-.1816-1.3574-.3467-2.1191-.4941-.7637-.1465-1.4697-.3545-2.1191-.624-.6504-.2686-1.1924-.6455-1.625-1.1309-.4336-.4844-.6504-1.1611-.6504-2.0273,0-.6768.1514-1.2568.4551-1.7422.3027-.4854.6934-.8799,1.1699-1.1836.4766-.3027,1.0146-.5283,1.6123-.6758.5977-.1465,1.1914-.2207,1.7812-.2207.7617,0,1.4639.0645,2.1055.1953.6416.1299,1.209.3555,1.7031.6758s.8877.7539,1.1826,1.2998.4688,1.2266.5205,2.041h-2.21c-.0352-.4326-.1475-.793-.3379-1.0791-.1914-.2861-.4336-.5156-.7285-.6885-.2949-.1738-.6201-.2998-.9746-.377-.3555-.0781-.7148-.1172-1.0791-.1172-.3291,0-.6631.0254-1.001.0781-.3379.0518-.6455.1426-.9229.2725s-.5029.3037-.6758.5205c-.1738.2168-.2607.498-.2607.8447,0,.3818.1348.6982.4033.9492s.6113.459,1.0273.624.8838.3027,1.4033.416c.5205.1123,1.04.2295,1.5605.3506.5547.1211,1.0957.2686,1.625.4424.5283.1729.9961.4023,1.4043.6885.4062.2861.7363.6465.9873,1.0791.251.4336.377.9707.377,1.6123,0,.8145-.1689,1.4902-.5068,2.0273-.3379.5381-.7803.9717-1.3262,1.3008s-1.1611.5586-1.8457.6885-1.3652.1953-2.041.1953c-.7451,0-1.4561-.0781-2.1318-.2344-.6758-.1553-1.2744-.4111-1.7939-.7666-.5205-.3555-.9365-.8232-1.248-1.4043-.3125-.5801-.4854-1.2871-.5205-2.1191h2.21c.0176.4854.1309.8975.3379,1.2354Z' fill='%23fff'/%3E%3Cpath d='M420.5785,124.1344c-1.0049.7637-2.2705,1.1445-3.7959,1.1445-1.0752,0-2.0059-.1738-2.7949-.5205-.7891-.3457-1.4521-.832-1.9893-1.4561s-.9404-1.3682-1.209-2.2354-.4199-1.8115-.4551-2.834c0-1.0225.1562-1.959.4688-2.8086.3115-.8486.749-1.5859,1.3125-2.21s1.2305-1.1084,2.002-1.4561c.7715-.3457,1.6162-.5195,2.5352-.5195,1.1963,0,2.1885.2471,2.9775.7412.7881.4941,1.4209,1.1221,1.8975,1.8848s.8057,1.5947.9883,2.4961c.1816.9014.2549,1.7598.2207,2.5742h-10.0615c-.0176.5889.0518,1.1484.208,1.6768.1553.5283.4062.9971.7539,1.4043.3467.4072.7881.7324,1.3262.9746.5361.2432,1.1699.3643,1.8975.3643.9365,0,1.7031-.2168,2.3008-.6504.5986-.4326.9922-1.0918,1.1836-1.9756h2.1836c-.2949,1.5078-.9443,2.6436-1.9502,3.4053ZM420.0463,115.5026c-.2002-.4678-.4688-.8711-.8066-1.209s-.7363-.6064-1.1963-.8057c-.459-.1992-.9658-.2988-1.5205-.2988-.5723,0-1.0879.0996-1.5469.2988-.46.1992-.8545.4727-1.1836.8193s-.5889.749-.7793,1.209c-.1914.459-.3037.9482-.3379,1.4688h7.7217c-.0352-.5205-.1523-1.0146-.3506-1.4824Z' fill='%23fff'/%3E%3Cpath d='M427.2094,111.5504v2.1328h.0518c.9189-1.6299,2.375-2.4443,4.3682-2.4443.8838,0,1.6201.1211,2.21.3643.5889.2422,1.0664.5811,1.4297,1.0137.3643.4336.6201.9492.7676,1.5469.1465.5977.2207,1.2607.2207,1.9893v8.8398h-2.21v-9.0996c0-.832-.2432-1.4912-.7285-1.9766s-1.1523-.7275-2.002-.7275c-.6758,0-1.2607.1035-1.7549.3115s-.9053.5029-1.2344.8838c-.3301.3818-.5771.8281-.7412,1.3398-.165.5107-.2471,1.0703-.2471,1.6768v7.5918h-2.21v-13.4424h2.0801Z' fill='%23fff'/%3E%3Cpath d='M449.309,111.5504v1.8203h.0518c.3643-.7451.9365-1.2871,1.7158-1.625.7803-.3379,1.6387-.5068,2.5742-.5068,1.04,0,1.9453.1904,2.7168.5723.7715.3809,1.4131.8965,1.9238,1.5469.5117.6494.8975,1.3994,1.1572,2.249s.3906,1.751.3906,2.7041-.126,1.8545-.377,2.7041c-.252.8486-.6338,1.5898-1.1445,2.2227-.5117.6328-1.1533,1.1309-1.9238,1.4951-.7715.3633-1.6689.5459-2.6914.5459-.3291,0-.6973-.0352-1.1045-.1045s-.8105-.1816-1.209-.3379c-.3994-.1553-.7764-.3682-1.1309-.6367-.3555-.2686-.6553-.6025-.8975-1.001h-.0518v6.916h-2.21v-18.5645h2.21ZM457.2513,116.3219c-.1641-.5977-.416-1.1309-.7539-1.5986-.3379-.4688-.7715-.8408-1.2998-1.1182s-1.1484-.416-1.8584-.416c-.7461,0-1.3789.1475-1.8984.4414-.5195.2949-.9453.6807-1.2744,1.1572s-.5674,1.0186-.7148,1.625c-.1475.6074-.2207,1.2217-.2207,1.8457,0,.6592.0781,1.2959.2344,1.9111.1553.6152.4023,1.1572.7402,1.625s.7764.8457,1.3135,1.1309c.5371.2861,1.1865.4297,1.9502.4297.7627,0,1.3994-.1475,1.9111-.4424.5107-.2949.9229-.6846,1.2344-1.1699.3125-.4854.5371-1.04.6758-1.6641s.208-1.2646.208-1.9238c0-.624-.082-1.2354-.2471-1.833Z' fill='%23fff'/%3E%3Cpath d='M464.8822,106.4284v18.5645h-2.21v-18.5645h2.21Z' fill='%23fff'/%3E%3Cpath d='M480.3265,124.9411c-.3818.2246-.9102.3379-1.5859.3379-.5723,0-1.0273-.1602-1.3652-.4814-.3379-.3203-.5068-.8447-.5068-1.5723-.6074.7275-1.3135,1.252-2.1191,1.5723-.8057.3213-1.6768.4814-2.6133.4814-.6064,0-1.1826-.0693-1.7285-.208s-1.0186-.3555-1.417-.6504c-.3994-.2939-.7148-.6797-.9492-1.1562s-.3516-1.0537-.3516-1.7295c0-.7627.1309-1.3867.3906-1.8721s.6016-.8799,1.0264-1.1826c.4248-.3037.9102-.5332,1.4561-.6895.5469-.1562,1.1055-.2861,1.6777-.3896.6064-.1211,1.1826-.2119,1.7285-.2734.5459-.0605,1.0273-.1465,1.4434-.2598.416-.1123.7451-.2773.9883-.4941.2422-.2168.3633-.5332.3633-.9492,0-.4844-.0908-.875-.2725-1.1699-.1826-.2939-.416-.5195-.7021-.6758s-.6074-.2598-.9619-.3115c-.3555-.0527-.707-.0781-1.0537-.0781-.9355,0-1.7158.1777-2.3398.5322-.624.3555-.9619,1.0273-1.0137,2.0156h-2.21c.0342-.832.208-1.5342.5195-2.1064.3125-.5713.7285-1.0352,1.248-1.3906.5205-.3555,1.1143-.6113,1.7812-.7666.667-.1562,1.3818-.2344,2.1455-.2344.6064,0,1.209.043,1.8066.1299s1.1396.2637,1.625.5322c.4854.2676.875.6436,1.1699,1.1279s.4424,1.1162.4424,1.8936v6.9014c0,.5195.0293.8994.0908,1.1416.0605.2422.2637.3633.6113.3633.1904,0,.415-.0342.6758-.1035v1.7158ZM476.7386,118.0504c-.2783.208-.6416.3584-1.0928.4531-.4502.0957-.9229.1729-1.417.2334-.4932.0605-.9922.1289-1.4941.207-.5029.0771-.9541.2021-1.3525.375-.3984.1719-.7236.418-.9746.7373-.252.3193-.377.7549-.377,1.3066,0,.3623.0732.668.2207.918s.3379.4531.5723.6084c.2334.1553.5068.2676.8184.3359.3125.0693.6416.1035.9883.1035.7275,0,1.3516-.0986,1.8721-.2969.5195-.1982.9443-.4492,1.2744-.751.3281-.3018.5713-.6299.7275-.9834.1562-.3525.2344-.6855.2344-.9961v-2.251Z' fill='%23fff'/%3E%3Cpath d='M484.5638,111.5504v2.1328h.0518c.9189-1.6299,2.375-2.4443,4.3682-2.4443.8838,0,1.6201.1211,2.21.3643.5889.2422,1.0664.5811,1.4297,1.0137.3643.4336.6201.9492.7676,1.5469.1465.5977.2207,1.2607.2207,1.9893v8.8398h-2.21v-9.0996c0-.832-.2432-1.4912-.7285-1.9766s-1.1523-.7275-2.002-.7275c-.6758,0-1.2607.1035-1.7549.3115s-.9053.5029-1.2344.8838c-.3301.3818-.5771.8281-.7412,1.3398-.165.5107-.2471,1.0703-.2471,1.6768v7.5918h-2.21v-13.4424h2.0801Z' fill='%23fff'/%3E%3Cpath d='M506.5599,124.1344c-1.0049.7637-2.2705,1.1445-3.7959,1.1445-1.0752,0-2.0059-.1738-2.7949-.5205-.7891-.3457-1.4521-.832-1.9893-1.4561s-.9404-1.3682-1.209-2.2354-.4199-1.8115-.4551-2.834c0-1.0225.1562-1.959.4688-2.8086.3115-.8486.749-1.5859,1.3125-2.21s1.2305-1.1084,2.002-1.4561c.7715-.3457,1.6162-.5195,2.5352-.5195,1.1963,0,2.1885.2471,2.9775.7412.7881.4941,1.4209,1.1221,1.8975,1.8848s.8057,1.5947.9883,2.4961c.1816.9014.2549,1.7598.2207,2.5742h-10.0615c-.0176.5889.0518,1.1484.208,1.6768.1553.5283.4062.9971.7539,1.4043.3467.4072.7881.7324,1.3262.9746.5361.2432,1.1699.3643,1.8975.3643.9365,0,1.7031-.2168,2.3008-.6504.5986-.4326.9922-1.0918,1.1836-1.9756h2.1836c-.2949,1.5078-.9443,2.6436-1.9502,3.4053ZM506.0277,115.5026c-.2002-.4678-.4688-.8711-.8066-1.209s-.7363-.6064-1.1963-.8057c-.459-.1992-.9658-.2988-1.5205-.2988-.5723,0-1.0879.0996-1.5469.2988-.46.1992-.8545.4727-1.1836.8193s-.5889.749-.7793,1.209c-.1914.459-.3037.9482-.3379,1.4688h7.7217c-.0352-.5205-.1523-1.0146-.3506-1.4824Z' fill='%23fff'/%3E%3Cpath d='M520.6254,124.1344c-1.0049.7637-2.2705,1.1445-3.7959,1.1445-1.0752,0-2.0059-.1738-2.7949-.5205-.7891-.3457-1.4521-.832-1.9893-1.4561s-.9404-1.3682-1.209-2.2354-.4199-1.8115-.4551-2.834c0-1.0225.1562-1.959.4688-2.8086.3115-.8486.749-1.5859,1.3125-2.21s1.2305-1.1084,2.002-1.4561c.7715-.3457,1.6162-.5195,2.5352-.5195,1.1963,0,2.1885.2471,2.9775.7412.7881.4941,1.4209,1.1221,1.8975,1.8848s.8057,1.5947.9883,2.4961c.1816.9014.2549,1.7598.2207,2.5742h-10.0615c-.0176.5889.0518,1.1484.208,1.6768.1553.5283.4062.9971.7539,1.4043.3467.4072.7881.7324,1.3262.9746.5361.2432,1.1699.3643,1.8975.3643.9365,0,1.7031-.2168,2.3008-.6504.5986-.4326.9922-1.0918,1.1836-1.9756h2.1836c-.2949,1.5078-.9443,2.6436-1.9502,3.4053ZM520.0931,115.5026c-.2002-.4678-.4688-.8711-.8066-1.209s-.7363-.6064-1.1963-.8057c-.459-.1992-.9658-.2988-1.5205-.2988-.5723,0-1.0879.0996-1.5469.2988-.46.1992-.8545.4727-1.1836.8193s-.5889.749-.7793,1.209c-.1914.459-.3037.9482-.3379,1.4688h7.7217c-.0352-.5205-.1523-1.0146-.3506-1.4824Z' fill='%23fff'/%3E%3Cpath d='M530.9222,111.5504v1.9502h-2.6777v8.3457c0,.2607.0215.4688.0645.624.043.1562.126.2783.2471.3643.1211.0869.29.1436.5068.1689.2168.0264.498.0391.8457.0391h1.0137v1.9502h-1.6904c-.5713,0-1.0615-.0391-1.4688-.1172s-.7373-.2207-.9883-.4287-.4375-.5029-.5586-.8838c-.1211-.3818-.1816-.8848-.1816-1.5088v-8.5537h-2.2881v-1.9502h2.2881v-4.0293h2.21v4.0293h2.6777Z' fill='%23fff'/%3E%3Cpath d='M536.849,122.1071v2.8857h-2.8857v-2.8857h2.8857Z' fill='%23fff'/%3E%3Cpath d='M169.2162,143.6286l4.3418,12.7666h.0518l4.1084-12.7666h5.7461v18.5645h-3.8223v-13.1562h-.0518l-4.5498,13.1562h-3.1465l-4.5498-13.0264h-.0518v13.0264h-3.8223v-18.5645h5.7461Z' fill='%23fff'/%3E%3Cpath d='M190.6146,158.9694c.5537.5371,1.3516.8057,2.3916.8057.7451,0,1.3867-.1865,1.9238-.5586.5371-.373.8662-.7676.9883-1.1836h3.25c-.5205,1.6123-1.3174,2.7646-2.3926,3.458-1.0742.6934-2.375,1.04-3.8994,1.04-1.0576,0-2.0107-.1689-2.8604-.5068s-1.5684-.8193-2.1582-1.4434c-.5889-.624-1.0439-1.3691-1.3643-2.2354-.3213-.8672-.4814-1.8203-.4814-2.8604,0-1.0049.165-1.9414.4941-2.8076.3291-.8672.7969-1.6162,1.4043-2.249.6064-.6328,1.3301-1.1318,2.1709-1.4951.8398-.3643,1.7715-.5459,2.7949-.5459,1.1436,0,2.1406.2207,2.9902.6631.8486.4414,1.5469,1.0352,2.0928,1.7803.5459.7461.9395,1.5957,1.1826,2.5479.2432.9541.3291,1.9502.2598,2.9902h-9.6973c.0518,1.1963.3545,2.0635.9102,2.6006ZM194.7875,151.8971c-.4424-.4854-1.1143-.7285-2.0156-.7285-.5889,0-1.0791.1006-1.4688.2998s-.7021.4463-.9355.7402c-.2344.2949-.3994.6074-.4941.9365-.0957.3291-.1523.624-.1689.8838h6.0059c-.1738-.9355-.4814-1.6465-.9229-2.1318Z' fill='%23fff'/%3E%3Cpath d='M205.5385,158.9694c.5537.5371,1.3516.8057,2.3916.8057.7451,0,1.3867-.1865,1.9238-.5586.5371-.373.8662-.7676.9883-1.1836h3.25c-.5205,1.6123-1.3174,2.7646-2.3926,3.458-1.0742.6934-2.375,1.04-3.8994,1.04-1.0576,0-2.0107-.1689-2.8604-.5068s-1.5684-.8193-2.1582-1.4434c-.5889-.624-1.0439-1.3691-1.3643-2.2354-.3213-.8672-.4814-1.8203-.4814-2.8604,0-1.0049.165-1.9414.4941-2.8076.3291-.8672.7969-1.6162,1.4043-2.249.6064-.6328,1.3301-1.1318,2.1709-1.4951.8398-.3643,1.7715-.5459,2.7949-.5459,1.1436,0,2.1406.2207,2.9902.6631.8486.4414,1.5469,1.0352,2.0928,1.7803.5459.7461.9395,1.5957,1.1826,2.5479.2432.9541.3291,1.9502.2598,2.9902h-9.6973c.0518,1.1963.3545,2.0635.9102,2.6006ZM209.7113,151.8971c-.4424-.4854-1.1143-.7285-2.0156-.7285-.5889,0-1.0791.1006-1.4688.2998s-.7021.4463-.9355.7402c-.2344.2949-.3994.6074-.4941.9365-.0957.3291-.1523.624-.1689.8838h6.0059c-.1738-.9355-.4814-1.6465-.9229-2.1318Z' fill='%23fff'/%3E%3Cpath d='M220.0199,148.7506v2.4961h.0518c.1729-.416.4072-.8008.7021-1.1562s.6328-.6592,1.0137-.9102c.3818-.251.7891-.4463,1.2227-.585.4326-.1387.8838-.208,1.3516-.208.2422,0,.5107.043.8057.1299v3.4316c-.1729-.0342-.3809-.0645-.623-.0908-.2432-.0264-.4775-.0391-.7021-.0391-.6768,0-1.248.1133-1.7168.3379-.4678.2256-.8447.5332-1.1309.9229-.2861.3906-.4893.8457-.6104,1.3652-.1221.5205-.1826,1.084-.1826,1.6904v6.0576h-3.6914v-13.4424h3.5098Z' fill='%23fff'/%3E%3Cpath d='M233.9554,146.6706v-3.042h3.6924v3.042h-3.6924ZM237.6478,148.7506v13.4424h-3.6924v-13.4424h3.6924Z' fill='%23fff'/%3E%3Cpath d='M244.0697,148.7506v1.8721h.0781c.4678-.7793,1.0742-1.3477,1.8193-1.7031.7451-.3545,1.5088-.5322,2.2881-.5322.9883,0,1.7988.1338,2.4316.4023.6318.2695,1.1309.6416,1.4951,1.1182.3633.4775.6191,1.0576.7666,1.7422s.2207,1.4434.2207,2.2754v8.2676h-3.6914v-7.5918c0-1.1094-.1738-1.9375-.5205-2.4834s-.9619-.8184-1.8457-.8184c-1.0059,0-1.7334.2988-2.1836.8965-.4512.5977-.6768,1.582-.6768,2.9512v7.0459h-3.6914v-13.4424h3.5098Z' fill='%23fff'/%3E%3Cpath d='M254.5736,151.2213v-2.4707h2.21v-1.04c0-1.1953.373-2.1748,1.1182-2.9375s1.8721-1.1445,3.3799-1.1445c.3291,0,.6582.0137.9883.0391.3291.0264.6494.0479.9619.0654v2.7559c-.4336-.0518-.8838-.0781-1.3525-.0781-.5029,0-.8623.1172-1.0791.3516-.2168.2334-.3242.6279-.3242,1.1826v.8057h2.5479v2.4707h-2.5479v10.9717h-3.6924v-10.9717h-2.21Z' fill='%23fff'/%3E%3Cpath d='M264.7142,152.5602c.3291-.875.7969-1.6211,1.4033-2.2363s1.335-1.0918,2.1846-1.4297c.8486-.3379,1.8018-.5068,2.8594-.5068s2.0156.1689,2.873.5068c.8584.3379,1.5898.8145,2.1973,1.4297.6064.6152,1.0742,1.3613,1.4043,2.2363.3291.875.4941,1.8506.4941,2.9248,0,1.0752-.165,2.0459-.4941,2.9121-.3301.8672-.7979,1.6074-1.4043,2.2227-.6074.6152-1.3389,1.0879-2.1973,1.417-.8574.3291-1.8154.4941-2.873.4941s-2.0107-.165-2.8594-.4941c-.8496-.3291-1.5781-.8018-2.1846-1.417s-1.0742-1.3555-1.4033-2.2227c-.3301-.8662-.4941-1.8369-.4941-2.9121,0-1.0742.1641-2.0498.4941-2.9248ZM268.0677,157.0583c.1045.5117.2812.9707.5332,1.3779.251.4072.585.7324,1.001.9746.416.2432.9355.3643,1.5596.3643s1.1484-.1211,1.5732-.3643c.4248-.2422.7627-.5674,1.0137-.9746s.4297-.8662.5332-1.3779c.1045-.5117.1562-1.0361.1562-1.5732s-.0518-1.0664-.1562-1.5859c-.1035-.5205-.2822-.9795-.5332-1.3779s-.5889-.7236-1.0137-.9756c-.4248-.251-.9492-.377-1.5732-.377s-1.1436.126-1.5596.377c-.416.252-.75.5771-1.001.9756-.252.3984-.4287.8574-.5332,1.3779-.1035.5195-.1562,1.0488-.1562,1.5859s.0527,1.0615.1562,1.5732Z' fill='%23fff'/%3E%3Cpath d='M284.0316,148.7506v2.4961h.0518c.1729-.416.4072-.8008.7021-1.1562s.6328-.6592,1.0137-.9102c.3818-.251.7891-.4463,1.2227-.585.4326-.1387.8838-.208,1.3516-.208.2422,0,.5107.043.8057.1299v3.4316c-.1729-.0342-.3809-.0645-.623-.0908-.2432-.0264-.4775-.0391-.7021-.0391-.6768,0-1.248.1133-1.7168.3379-.4678.2256-.8447.5332-1.1309.9229-.2861.3906-.4893.8457-.6104,1.3652-.1221.5205-.1826,1.084-.1826,1.6904v6.0576h-3.6914v-13.4424h3.5098Z' fill='%23fff'/%3E%3Cpath d='M294.224,148.7506v1.8203h.0518c.4854-.6934,1.0703-1.2305,1.7549-1.6123.6846-.3809,1.4688-.5713,2.3535-.5713.8486,0,1.625.165,2.3262.4941.7021.3291,1.2354.9092,1.5996,1.7412.3984-.5889.9395-1.1084,1.625-1.5596.6846-.4502,1.4951-.6758,2.4307-.6758.7109,0,1.3691.0869,1.9766.2598.6064.1738,1.126.4512,1.5596.832s.7715.8799,1.0137,1.4951c.2432.6152.3643,1.3564.3643,2.2227v8.9961h-3.6914v-7.6182c0-.4502-.0176-.875-.0527-1.2734-.0342-.3994-.1299-.7451-.2861-1.04-.1553-.2949-.3857-.5293-.6885-.7021-.3037-.1729-.7148-.2598-1.2354-.2598-.5195,0-.9404.0996-1.2607.2988-.3213.1992-.5723.459-.7539.7793-.1816.3213-.3037.6855-.3643,1.0928s-.0908.8184-.0908,1.2344v7.4883h-3.6924v-7.54c0-.3984-.0088-.793-.0254-1.1826-.0176-.3906-.0908-.75-.2217-1.0791-.1299-.3291-.3467-.5938-.6494-.793-.3037-.1992-.75-.2988-1.3389-.2988-.1738,0-.4033.0381-.6895.1162s-.5635.2256-.832.4424-.498.5293-.6885.9355c-.1914.4082-.2861.9404-.2861,1.5996v7.7998h-3.6924v-13.4424h3.4844Z' fill='%23fff'/%3E%3Cpath d='M314.0355,152.8854c.0518-.8672.2686-1.5859.6504-2.1582.3809-.5723.8662-1.0312,1.4551-1.3779.5898-.3467,1.2529-.5938,1.9893-.7412s1.4775-.2207,2.2236-.2207c.6758,0,1.3604.0479,2.0537.1426.6934.0957,1.3262.2822,1.8975.5596.5723.2773,1.04.6621,1.4043,1.1562s.5459,1.1484.5459,1.9629v6.9941c0,.6074.0352,1.1875.1045,1.7422.0684.5547.1904.9707.3633,1.248h-3.7432c-.0703-.208-.126-.4199-.1689-.6367-.0439-.2168-.0742-.4375-.0918-.6631-.5889.6064-1.2822,1.0312-2.0801,1.2734-.7969.2432-1.6113.3643-2.4434.3643-.6416,0-1.2393-.0781-1.7939-.2344-.5557-.1553-1.04-.3984-1.4561-.7275s-.7412-.7451-.9756-1.248c-.2334-.5029-.3506-1.1006-.3506-1.7939,0-.7627.1338-1.3906.4033-1.8848.2686-.4941.6143-.8887,1.04-1.1836.4238-.2939.9092-.5156,1.4561-.6631.5459-.1465,1.0957-.2637,1.6504-.3506s1.1006-.1562,1.6377-.208,1.0146-.1299,1.4307-.2344c.416-.1035.7451-.2549.9883-.4541.2422-.1992.3545-.4902.3379-.8711,0-.3984-.0654-.7158-.1953-.9492-.1299-.2344-.3037-.416-.5205-.5459s-.4678-.2168-.7539-.2607c-.2852-.043-.5938-.0645-.9229-.0645-.7275,0-1.2998.1562-1.7158.4678-.416.3125-.6592.832-.7275,1.5605h-3.6924ZM322.5638,155.6149c-.1562.1387-.3516.2471-.585.3252-.2344.0781-.4863.1426-.7549.1953-.2686.0518-.5498.0947-.8447.1299s-.5889.0781-.8838.1299c-.2773.0518-.5508.1211-.8193.208s-.5029.2041-.7021.3506c-.1992.1475-.3594.334-.4805.5596s-.1816.5107-.1816.8574c0,.3301.0605.6074.1816.832.1211.2256.2861.4033.4941.5332s.4502.2207.7275.2734c.2773.0518.5635.0771.8584.0771.7275,0,1.291-.1211,1.6895-.3633.3994-.2432.6934-.5332.8848-.8711.1904-.3379.3076-.6807.3506-1.0273s.0654-.624.0654-.832v-1.3779Z' fill='%23fff'/%3E%3Cpath d='M336.4994,148.7506v2.4707h-2.7041v6.6553c0,.624.1045,1.04.3125,1.248.207.208.623.3125,1.2471.3125.208,0,.4072-.0088.5986-.0264.1904-.0166.3721-.043.5459-.0781v2.8604c-.3125.0518-.6592.0869-1.04.1035-.3818.0176-.7539.0264-1.1182.0264-.5723,0-1.1143-.0391-1.625-.1172-.5117-.0781-.9619-.2295-1.3516-.4551-.3906-.2246-.6982-.5459-.9229-.9619-.2256-.416-.3389-.9619-.3389-1.6377v-7.9297h-2.2354v-2.4707h2.2354v-4.0293h3.6924v4.0293h2.7041Z' fill='%23fff'/%3E%3Cpath d='M338.3705,146.6706v-3.042h3.6924v3.042h-3.6924ZM342.0629,148.7506v13.4424h-3.6924v-13.4424h3.6924Z' fill='%23fff'/%3E%3Cpath d='M348.9271,158.9694c.5537.5371,1.3516.8057,2.3916.8057.7451,0,1.3867-.1865,1.9238-.5586.5371-.373.8662-.7676.9883-1.1836h3.25c-.5205,1.6123-1.3174,2.7646-2.3926,3.458-1.0742.6934-2.375,1.04-3.8994,1.04-1.0576,0-2.0107-.1689-2.8604-.5068s-1.5684-.8193-2.1582-1.4434c-.5889-.624-1.0439-1.3691-1.3643-2.2354-.3213-.8672-.4814-1.8203-.4814-2.8604,0-1.0049.165-1.9414.4941-2.8076.3291-.8672.7969-1.6162,1.4043-2.249.6064-.6328,1.3301-1.1318,2.1709-1.4951.8398-.3643,1.7715-.5459,2.7949-.5459,1.1436,0,2.1406.2207,2.9902.6631.8486.4414,1.5469,1.0352,2.0928,1.7803.5459.7461.9395,1.5957,1.1826,2.5479.2432.9541.3291,1.9502.2598,2.9902h-9.6973c.0518,1.1963.3545,2.0635.9102,2.6006ZM353.1,151.8971c-.4424-.4854-1.1143-.7285-2.0156-.7285-.5889,0-1.0791.1006-1.4688.2998s-.7021.4463-.9355.7402c-.2344.2949-.3994.6074-.4941.9365-.0957.3291-.1523.624-.1689.8838h6.0059c-.1738-.9355-.4814-1.6465-.9229-2.1318Z' fill='%23fff'/%3E%3Cpath d='M367.2045,152.5602c.3291-.875.7969-1.6211,1.4033-2.2363s1.335-1.0918,2.1846-1.4297c.8486-.3379,1.8018-.5068,2.8594-.5068s2.0156.1689,2.873.5068c.8584.3379,1.5898.8145,2.1973,1.4297.6064.6152,1.0742,1.3613,1.4043,2.2363.3291.875.4941,1.8506.4941,2.9248,0,1.0752-.165,2.0459-.4941,2.9121-.3301.8672-.7979,1.6074-1.4043,2.2227-.6074.6152-1.3389,1.0879-2.1973,1.417-.8574.3291-1.8154.4941-2.873.4941s-2.0107-.165-2.8594-.4941c-.8496-.3291-1.5781-.8018-2.1846-1.417s-1.0742-1.3555-1.4033-2.2227c-.3301-.8662-.4941-1.8369-.4941-2.9121,0-1.0742.1641-2.0498.4941-2.9248ZM370.558,157.0583c.1045.5117.2812.9707.5332,1.3779.251.4072.585.7324,1.001.9746.416.2432.9355.3643,1.5596.3643s1.1484-.1211,1.5732-.3643c.4248-.2422.7627-.5674,1.0137-.9746s.4297-.8662.5332-1.3779c.1045-.5117.1562-1.0361.1562-1.5732s-.0518-1.0664-.1562-1.5859c-.1035-.5205-.2822-.9795-.5332-1.3779s-.5889-.7236-1.0137-.9756c-.4248-.251-.9492-.377-1.5732-.377s-1.1436.126-1.5596.377c-.416.252-.75.5771-1.001.9756-.252.3984-.4287.8574-.5332,1.3779-.1035.5195-.1562,1.0488-.1562,1.5859s.0527,1.0615.1562,1.5732Z' fill='%23fff'/%3E%3Cpath d='M386.5219,148.7506v1.7168h.0518c.4512-.7285,1.0225-1.2568,1.7158-1.5859s1.4561-.4941,2.2881-.4941c1.0576,0,1.9678.1992,2.7305.5977.7627.3994,1.3945.9277,1.8975,1.5859.5029.6592.875,1.4258,1.1182,2.3008.2432.876.3643,1.79.3643,2.7432,0,.9014-.1211,1.7686-.3643,2.6006-.2432.8311-.6104,1.5684-1.1045,2.21-.4941.6406-1.1094,1.1523-1.8467,1.5332-.7363.3818-1.5986.5723-2.5869.5723-.832,0-1.5986-.1689-2.3008-.5068s-1.2783-.8359-1.7285-1.4951h-.0527v6.3701h-3.6914v-18.1484h3.5098ZM391.3187,159.4108c.4072-.2422.7363-.5586.9883-.9492.251-.3896.4287-.8447.5332-1.3643.1035-.5205.1553-1.0488.1553-1.5859s-.0566-1.0664-.1689-1.5859c-.1123-.5205-.2988-.9844-.5586-1.3916s-.5938-.7363-1.001-.9883c-.4072-.251-.9062-.377-1.4951-.377-.6074,0-1.1143.126-1.5215.377-.4072.252-.7363.5771-.9873.9756-.252.3984-.4297.8574-.5332,1.3779-.1045.5195-.1562,1.0576-.1562,1.6123,0,.5371.0566,1.0654.1689,1.5859.1123.5195.2949.9746.5459,1.3643.251.3906.585.707,1.001.9492.416.2432.9189.3643,1.5088.3643.6064,0,1.1133-.1211,1.5205-.3643Z' fill='%23fff'/%3E%3Cpath d='M409.8168,143.6286v6.7607h.0527c.4502-.6934,1.0615-1.2002,1.833-1.5215.7705-.3203,1.5723-.4805,2.4043-.4805.6758,0,1.3438.1387,2.002.416.6592.2773,1.252.7012,1.7812,1.2734.5283.5723.958,1.3047,1.2871,2.1973s.4941,1.9541.4941,3.1846c0,1.2314-.165,2.293-.4941,3.1855s-.7588,1.625-1.2871,2.1973c-.5293.5713-1.1221.9961-1.7812,1.2734-.6582.2773-1.3262.416-2.002.416-.9873,0-1.8721-.1562-2.6514-.4678-.7803-.3125-1.3701-.8408-1.7686-1.5859h-.0518v1.7158h-3.5098v-18.5645h3.6914ZM415.7972,153.8473c-.1221-.5205-.3125-.9795-.5723-1.3779s-.585-.7158-.9746-.9492c-.3906-.2344-.8623-.3516-1.417-.3516-.5381,0-1.0059.1172-1.4043.3516-.3994.2334-.7275.5508-.9883.9492-.2598.3984-.4502.8574-.5713,1.3779-.1221.5195-.1826,1.0654-.1826,1.6377,0,.5547.0605,1.0918.1826,1.6123.1211.5195.3115.9795.5713,1.3779.2607.3984.5889.7148.9883.9492.3984.2334.8662.3506,1.4043.3506.5547,0,1.0264-.1172,1.417-.3506.3896-.2344.7148-.5508.9746-.9492s.4502-.8584.5723-1.3779c.1211-.5205.1816-1.0576.1816-1.6123,0-.5723-.0605-1.1182-.1816-1.6377Z' fill='%23fff'/%3E%3Cpath d='M428.433,151.1686c-.5898,0-1.084.1348-1.4824.4033s-.7236.6152-.9746,1.04c-.252.4248-.4287.8926-.5332,1.4043-.1035.5107-.1562,1.0186-.1562,1.5205,0,.4854.0527.9795.1562,1.4824.1045.5029.2734.958.5068,1.3652.2344.4072.5498.7402.9492,1.001.3984.2598.8838.3896,1.4561.3896.8838,0,1.5645-.2471,2.041-.7412s.7754-1.1572.8965-1.9893h3.5625c-.2432,1.7861-.9365,3.1465-2.0801,4.082-1.1436.9365-2.6094,1.4043-4.3936,1.4043-1.0059,0-1.9287-.1689-2.7695-.5068s-1.5557-.8105-2.1445-1.417c-.5898-.6064-1.0488-1.3301-1.3779-2.1709-.3301-.8408-.4941-1.7637-.4941-2.7695,0-1.04.1514-2.0059.4551-2.8984.3027-.8926.749-1.6641,1.3389-2.3145.5889-.6494,1.3086-1.1572,2.1582-1.5205.8486-.3643,1.8193-.5459,2.9111-.5459.7979,0,1.5645.1035,2.3018.3115.7363.208,1.3945.5244,1.9756.9492s1.0527.9531,1.417,1.5859.5723,1.3828.624,2.249h-3.6143c-.2422-1.543-1.1523-2.3145-2.7295-2.3145Z' fill='%23fff'/%3E%3Cpath d='M437.0131,152.5602c.3291-.875.7969-1.6211,1.4033-2.2363s1.335-1.0918,2.1846-1.4297c.8486-.3379,1.8018-.5068,2.8594-.5068s2.0156.1689,2.873.5068c.8584.3379,1.5898.8145,2.1973,1.4297.6064.6152,1.0742,1.3613,1.4043,2.2363.3291.875.4941,1.8506.4941,2.9248,0,1.0752-.165,2.0459-.4941,2.9121-.3301.8672-.7979,1.6074-1.4043,2.2227-.6074.6152-1.3389,1.0879-2.1973,1.417-.8574.3291-1.8154.4941-2.873.4941s-2.0107-.165-2.8594-.4941c-.8496-.3291-1.5781-.8018-2.1846-1.417s-1.0742-1.3555-1.4033-2.2227c-.3301-.8662-.4941-1.8369-.4941-2.9121,0-1.0742.1641-2.0498.4941-2.9248ZM440.3666,157.0583c.1045.5117.2812.9707.5332,1.3779.251.4072.585.7324,1.001.9746.416.2432.9355.3643,1.5596.3643s1.1484-.1211,1.5732-.3643c.4248-.2422.7627-.5674,1.0137-.9746s.4297-.8662.5332-1.3779c.1045-.5117.1562-1.0361.1562-1.5732s-.0518-1.0664-.1562-1.5859c-.1035-.5205-.2822-.9795-.5332-1.3779s-.5889-.7236-1.0137-.9756c-.4248-.251-.9492-.377-1.5732-.377s-1.1436.126-1.5596.377c-.416.252-.75.5771-1.001.9756-.252.3984-.4287.8574-.5332,1.3779-.1035.5195-.1562,1.0488-.1562,1.5859s.0527,1.0615.1562,1.5732Z' fill='%23fff'/%3E%3Cpath d='M456.3304,148.7506v2.4961h.0518c.1729-.416.4072-.8008.7021-1.1562s.6328-.6592,1.0137-.9102c.3818-.251.7891-.4463,1.2227-.585.4326-.1387.8838-.208,1.3516-.208.2422,0,.5107.043.8057.1299v3.4316c-.1729-.0342-.3809-.0645-.623-.0908-.2432-.0264-.4775-.0391-.7021-.0391-.6768,0-1.248.1133-1.7168.3379-.4678.2256-.8447.5332-1.1309.9229-.2861.3906-.4893.8457-.6104,1.3652-.1221.5205-.1826,1.084-.1826,1.6904v6.0576h-3.6914v-13.4424h3.5098Z' fill='%23fff'/%3E%3Cpath d='M466.4447,148.7506v1.7168h.0518c.4512-.7285,1.0225-1.2568,1.7158-1.5859s1.4561-.4941,2.2881-.4941c1.0576,0,1.9678.1992,2.7305.5977.7627.3994,1.3945.9277,1.8975,1.5859.5029.6592.875,1.4258,1.1182,2.3008.2432.876.3643,1.79.3643,2.7432,0,.9014-.1211,1.7686-.3643,2.6006-.2432.8311-.6104,1.5684-1.1045,2.21-.4941.6406-1.1094,1.1523-1.8467,1.5332-.7363.3818-1.5986.5723-2.5869.5723-.832,0-1.5986-.1689-2.3008-.5068s-1.2783-.8359-1.7285-1.4951h-.0527v6.3701h-3.6914v-18.1484h3.5098ZM471.2416,159.4108c.4072-.2422.7363-.5586.9883-.9492.251-.3896.4287-.8447.5332-1.3643.1035-.5205.1553-1.0488.1553-1.5859s-.0566-1.0664-.1689-1.5859c-.1123-.5205-.2988-.9844-.5586-1.3916s-.5938-.7363-1.001-.9883c-.4072-.251-.9062-.377-1.4951-.377-.6074,0-1.1143.126-1.5215.377-.4072.252-.7363.5771-.9873.9756-.252.3984-.4297.8574-.5332,1.3779-.1045.5195-.1562,1.0576-.1562,1.6123,0,.5371.0566,1.0654.1689,1.5859.1123.5195.2949.9746.5459,1.3643.251.3906.585.707,1.001.9492.416.2432.9189.3643,1.5088.3643.6064,0,1.1133-.1211,1.5205-.3643Z' fill='%23fff'/%3E%3Cpath d='M483.058,158.1891v4.0039h-4.082v-4.0039h4.082Z' fill='%23fff'/%3E%3Cpath d='M492.4701,151.1686c-.5898,0-1.084.1348-1.4824.4033s-.7236.6152-.9746,1.04c-.252.4248-.4287.8926-.5332,1.4043-.1035.5107-.1562,1.0186-.1562,1.5205,0,.4854.0527.9795.1562,1.4824.1045.5029.2734.958.5068,1.3652.2344.4072.5498.7402.9492,1.001.3984.2598.8838.3896,1.4561.3896.8838,0,1.5645-.2471,2.041-.7412s.7754-1.1572.8965-1.9893h3.5625c-.2432,1.7861-.9365,3.1465-2.0801,4.082-1.1436.9365-2.6094,1.4043-4.3936,1.4043-1.0059,0-1.9287-.1689-2.7695-.5068s-1.5557-.8105-2.1445-1.417c-.5898-.6064-1.0488-1.3301-1.3779-2.1709-.3301-.8408-.4941-1.7637-.4941-2.7695,0-1.04.1514-2.0059.4551-2.8984.3027-.8926.749-1.6641,1.3389-2.3145.5889-.6494,1.3086-1.1572,2.1582-1.5205.8486-.3643,1.8193-.5459,2.9111-.5459.7979,0,1.5645.1035,2.3018.3115.7363.208,1.3945.5244,1.9756.9492s1.0527.9531,1.417,1.5859.5723,1.3828.624,2.249h-3.6143c-.2422-1.543-1.1523-2.3145-2.7295-2.3145Z' fill='%23fff'/%3E%3Cpath d='M501.0502,152.5602c.3291-.875.7969-1.6211,1.4033-2.2363s1.335-1.0918,2.1846-1.4297c.8486-.3379,1.8018-.5068,2.8594-.5068s2.0156.1689,2.873.5068c.8584.3379,1.5898.8145,2.1973,1.4297.6064.6152,1.0742,1.3613,1.4043,2.2363.3291.875.4941,1.8506.4941,2.9248,0,1.0752-.165,2.0459-.4941,2.9121-.3301.8672-.7979,1.6074-1.4043,2.2227-.6074.6152-1.3389,1.0879-2.1973,1.417-.8574.3291-1.8154.4941-2.873.4941s-2.0107-.165-2.8594-.4941c-.8496-.3291-1.5781-.8018-2.1846-1.417s-1.0742-1.3555-1.4033-2.2227c-.3301-.8662-.4941-1.8369-.4941-2.9121,0-1.0742.1641-2.0498.4941-2.9248ZM504.4037,157.0583c.1045.5117.2812.9707.5332,1.3779.251.4072.585.7324,1.001.9746.416.2432.9355.3643,1.5596.3643s1.1484-.1211,1.5732-.3643c.4248-.2422.7627-.5674,1.0137-.9746s.4297-.8662.5332-1.3779c.1045-.5117.1562-1.0361.1562-1.5732s-.0518-1.0664-.1562-1.5859c-.1035-.5205-.2822-.9795-.5332-1.3779s-.5889-.7236-1.0137-.9756c-.4248-.251-.9492-.377-1.5732-.377s-1.1436.126-1.5596.377c-.416.252-.75.5771-1.001.9756-.252.3984-.4287.8574-.5332,1.3779-.1035.5195-.1562,1.0488-.1562,1.5859s.0527,1.0615.1562,1.5732Z' fill='%23fff'/%3E%3Cpath d='M520.4457,148.7506v1.8203h.0518c.4854-.6934,1.0703-1.2305,1.7549-1.6123.6846-.3809,1.4688-.5713,2.3535-.5713.8486,0,1.625.165,2.3262.4941.7021.3291,1.2354.9092,1.5996,1.7412.3984-.5889.9395-1.1084,1.625-1.5596.6846-.4502,1.4951-.6758,2.4307-.6758.7109,0,1.3691.0869,1.9766.2598.6064.1738,1.126.4512,1.5596.832s.7715.8799,1.0137,1.4951c.2432.6152.3643,1.3564.3643,2.2227v8.9961h-3.6914v-7.6182c0-.4502-.0176-.875-.0527-1.2734-.0342-.3994-.1299-.7451-.2861-1.04-.1553-.2949-.3857-.5293-.6885-.7021-.3037-.1729-.7148-.2598-1.2354-.2598-.5195,0-.9404.0996-1.2607.2988-.3213.1992-.5723.459-.7539.7793-.1816.3213-.3037.6855-.3643,1.0928s-.0908.8184-.0908,1.2344v7.4883h-3.6924v-7.54c0-.3984-.0088-.793-.0254-1.1826-.0176-.3906-.0908-.75-.2217-1.0791-.1299-.3291-.3467-.5938-.6494-.793-.3037-.1992-.75-.2988-1.3389-.2988-.1738,0-.4033.0381-.6895.1162s-.5635.2256-.832.4424-.498.5293-.6885.9355c-.1914.4082-.2861.9404-.2861,1.5996v7.7998h-3.6924v-13.4424h3.4844Z' fill='%23fff'/%3E%3C/g%3E%3Cg id='Logo'%3E%3Cpath d='M108.7113,142.814c.3958-.8684.9267-1.6064,1.5926-2.2155.6659-.6107,1.4361-1.0817,2.3091-1.4146.8746-.3329,1.789-.5002,2.7433-.5002.9559,0,1.8703.1672,2.7433.5002s1.6432.804,2.3091,1.4146c.6659.6091,1.1983,1.3471,1.5941,2.2155.3958.8669.5938,1.835.5938,2.9029,0,1.0817-.1979,2.0544-.5938,2.9228-.3958.8669-.9283,1.6079-1.5941,2.2247-.6659.6153-1.4361,1.0863-2.3091,1.4131s-1.7875.491-2.7433.491c-.9543,0-1.8688-.1642-2.7433-.491-.873-.3268-1.6432-.7978-2.3091-1.4131-.6659-.6168-1.1968-1.3579-1.5926-2.2247-.3958-.8684-.5938-1.8412-.5938-2.9228,0-1.0679.1979-2.036.5938-2.9029ZM110.4542,147.9416c.2762.6782.6536,1.2658,1.1323,1.7629.4772.4971,1.0387.8822,1.6862,1.1599.6475.2762,1.3425.4143,2.0836.4143.7288,0,1.4177-.1381,2.0652-.4143.6475-.2777,1.209-.6628,1.6877-1.1599.4772-.4971.8577-1.0848,1.14-1.7629s.4235-1.4208.4235-2.2247-.1412-1.5435-.4235-2.2155-.6628-1.2535-1.14-1.7445c-.4787-.4894-1.0403-.873-1.6877-1.1492s-1.3364-.4143-2.0652-.4143c-.7411,0-1.4361.1381-2.0836.4143s-1.209.6597-1.6862,1.1492c-.4787.491-.8561,1.0725-1.1323,1.7445s-.4143,1.4116-.4143,2.2155.1381,1.5466.4143,2.2247ZM115.5266,141.7569c.9927,0,1.7552.1764,2.2907.5278.5339.3529.8009.9559.8009,1.8105,0,.3652-.0537.6766-.1596.9329-.1074.2578-.2547.4695-.4434.6321-.1887.1642-.4081.29-.6597.3774s-.5217.1442-.8116.1688l2.1127,3.4506h-1.6402l-1.924-3.3739h-.9804v3.3739h-1.565v-7.9001h2.9796ZM115.5082,145.0572c.4511,0,.8224-.0629,1.1108-.1887.29-.1258.4342-.4265.4342-.9052,0-.2133-.0506-.3836-.1504-.5094-.1013-.1243-.2301-.2225-.3866-.2915-.158-.069-.3329-.1166-.5278-.1412-.1949-.0261-.3805-.0384-.557-.0384h-1.3195v2.0744h1.3962Z' fill='%23fff'/%3E%3Cpath d='M54.2306,72.673h19.9812c4.8631,0,11.2668,0,14.5841,2.0059,3.6265,2.1602,6.4787,6.0948,6.4787,11.4972,0,5.8625-3.0827,10.26-8.1761,12.3415v.1555c6.7925,1.3874,10.4928,6.481,10.4928,13.2715,0,8.098-5.7878,15.8152-16.7419,15.8152h-26.6188v-55.0867ZM61.5561,96.359h14.6666c8.3291,0,11.7275-3.0088,11.7275-8.7966,0-7.6388-5.3986-8.7168-11.7275-8.7168h-14.6666v17.5135ZM61.5561,121.5866h18.3681c6.3249,0,10.3392-3.8569,10.3392-9.8737,0-7.1764-5.7872-9.1822-11.9624-9.1822h-16.7448v19.0559Z' fill='%23fff'/%3E%3Cpath d='M116.3316,100.2391c0,23.1428-18.7582,41.9028-41.9064,41.9028s-41.898-18.76-41.898-41.9028,18.759-41.8965,41.898-41.8965,41.9064,18.7567,41.9064,41.8965ZM74.4252,51.9515c-26.6525,0-48.2614,21.6089-48.2614,48.2644s21.6089,48.2638,48.2614,48.2638,48.2713-21.6098,48.2713-48.2638-21.6098-48.2644-48.2713-48.2644Z' fill='%23fff'/%3E%3Crect x='26.2637' y='158.6606' width='96.333' height='6.3322' fill='%23fff'/%3E%3Cpath d='M37.9381,30.7293c-.2291-.366-.513-.6871-.8548-.9634-.3419-.277-.7274-.4918-1.1584-.6471-.4322-.154-.8826-.2314-1.3544-.2314-.8619,0-1.5945.1664-2.1962.5001-.6015.3341-1.0898.7811-1.4635,1.3418-.3743.5609-.6465,1.1997-.8177,1.9152-.1713.7162-.2556,1.4565-.2556,2.221,0,.7309.0843,1.443.2556,2.1337.1712.6919.4434,1.3142.8177,1.8674.3737.5525.862.9954,1.4635,1.3295.6017.333,1.3343.4995,2.1962.4995,1.1714,0,2.0864-.3572,2.7442-1.0728.6589-.7161,1.0615-1.659,1.2079-2.8297h3.7088c-.0974,1.0887-.3496,2.0734-.7557,2.9507-.4073.879-.9446,1.6277-1.6106,2.2446-.6671.6188-1.4475,1.0905-2.3427,1.4157-.8943.3248-1.8785.4883-2.9519.4883-1.3342,0-2.5339-.232-3.5989-.696-1.0651-.463-1.9648-1.1017-2.6957-1.9152-.7315-.813-1.2934-1.7682-1.6838-2.8663-.3908-1.0976-.5857-2.2813-.5857-3.5495,0-1.3017.1949-2.5097.5857-3.6243.3903-1.114.9522-2.0858,1.6838-2.9148.7309-.83,1.6306-1.4801,2.6957-1.9524,1.065-.4712,2.2647-.7073,3.5989-.7073.9594,0,1.8669.1388,2.72.4145.8542.2769,1.6188.6795,2.2935,1.2085.6748.5284,1.2322,1.1831,1.6709,1.9635.4397.7805.716,1.6756.83,2.6834h-3.7088c-.065-.4386-.2114-.8413-.4381-1.2074Z' fill='%23fff'/%3E%3Cpath d='M47.2259,40.4765c.5201.5037,1.2687.7557,2.2446.7557.6997,0,1.3012-.1747,1.8055-.5247.5036-.349.8129-.7192.9275-1.11h3.05c-.4889,1.5132-1.2369,2.5953-2.2453,3.2454-1.0088.6506-2.2286.9758-3.6597.9758-.9924,0-1.8869-.1582-2.6834-.4753-.7975-.3176-1.4723-.7686-2.0256-1.3549-.5525-.5849-.9806-1.2846-1.281-2.0975-.3013-.813-.4511-1.708-.4511-2.684,0-.9427.1546-1.8219.4634-2.6348.3089-.8135.7487-1.5166,1.3172-2.1106.5704-.5933,1.2493-1.0609,2.038-1.4021.7888-.3425,1.6625-.5125,2.6226-.5125,1.0734,0,2.0084.2072,2.8061.6217.7965.4151,1.4518.9718,1.9636,1.6713.5124.6996.8826,1.4967,1.1104,2.3912.2268.8944.3082,1.8301.2433,2.8055h-9.0996c.0485,1.1222.3324,1.9359.8537,2.44ZM51.142,33.8401c-.4151-.4546-1.0462-.6831-1.8916-.6831-.5525,0-1.0126.094-1.3779.2805-.3661.1872-.6589.4187-.8785.6949-.2196.2775-.3743.5698-.4641.8797-.0891.3088-.1423.5844-.1576.8289h5.6358c-.1624-.8792-.4517-1.5457-.8661-2.0008Z' fill='%23fff'/%3E%3Cpath d='M60.3271,30.8882v2.3426h.0491c.1624-.3909.3819-.7527.6583-1.0864.2768-.333.5939-.6181.9517-.8542.3578-.235.7403-.4186,1.1477-.5491.4062-.1298.8289-.1943,1.2682-.1943.2278,0,.4788.0408.7568.1216v3.22c-.1641-.0324-.3583-.0602-.5868-.085-.2273-.0242-.4475-.0366-.6583-.0366-.6347,0-1.1708.1062-1.61.3176-.4399.2108-.7934.4995-1.0615.8655-.268.3661-.4599.7929-.5733,1.2812-.114.4877-.1707,1.0166-.1707,1.5853v5.6853h-3.4649v-12.6135h3.2938Z' fill='%23fff'/%3E%3Cpath d='M74.4302,30.8882v2.3172h-2.5386v6.2456c0,.5869.0985.9764.2941,1.1718.1948.1949.5856.2929,1.1694.2929.1955,0,.3831-.0082.5615-.0248.1784-.016.3496-.0402.5136-.0732v2.6839c-.2928.049-.6199.0809-.9771.0968-.3572.0166-.7067.0254-1.0491.0254-.536,0-1.0455-.0366-1.5249-.1104-.4801-.0727-.9015-.2144-1.2681-.4264-.3661-.2119-.6547-.5124-.8667-.9032-.2119-.3903-.316-.9027-.316-1.5362v-7.4424h-2.0988v-2.3172h2.0988v-3.7821h3.4633v3.7821h2.5386Z' fill='%23fff'/%3E%3Cpath d='M76.4478,28.9364v-2.8551h3.4648v2.8551h-3.4648ZM79.9126,30.8882v12.6135h-3.4648v-12.6135h3.4648Z' fill='%23fff'/%3E%3Cpath d='M81.2855,33.2055v-2.3172h2.074v-.9765c0-1.1217.3496-2.0409,1.0492-2.7558.6989-.7162,1.7575-1.0745,3.1722-1.0745.3076,0,.6181.0123.9274.0371.3071.0243.6088.0454.901.0608v2.5865c-.4062-.0496-.8295-.0738-1.2682-.0738-.4711,0-.8094.1098-1.0119.3293-.2031.2196-.3046.5898-.3046,1.1106v.7563h2.3897v2.3172h-2.3897v10.2963h-3.4651v-10.2963h-2.074Z' fill='%23fff'/%3E%3Cpath d='M91.5632,28.9364v-2.8551h3.4649v2.8551h-3.4649ZM95.0282,30.8882v12.6135h-3.4649v-12.6135h3.4649Z' fill='%23fff'/%3E%3Cpath d='M100.4921,40.4765c.5214.5037,1.2699.7557,2.2442.7557.7001,0,1.3018-.1747,1.8065-.5247.5042-.349.8136-.7192.9269-1.11h3.0488c-.4865,1.5132-1.2357,2.5953-2.2423,3.2454-1.0113.6506-2.2299.9758-3.661.9758-.9936,0-1.8874-.1582-2.6838-.4753-.7971-.3176-1.4731-.7686-2.025-1.3549-.5533-.5849-.9801-1.2846-1.2812-2.0975-.3-.813-.4516-1.708-.4516-2.684,0-.9427.1559-1.8219.464-2.6348.3094-.8135.7474-1.5166,1.3178-2.1106.5691-.5933,1.248-1.0609,2.0369-1.4021.7887-.3425,1.6629-.5125,2.623-.5125,1.0734,0,2.0091.2072,2.8062.6217.797.4151,1.4512.9718,1.9641,1.6713.5119.6996.8815,1.4967,1.1082,2.3912.2291.8944.3094,1.8301.2455,2.8055h-9.1001c.0484,1.1222.3331,1.9359.853,2.44ZM104.4075,33.8401c-.4139-.4546-1.0455-.6831-1.8899-.6831-.5537,0-1.0119.094-1.3785.2805-.3666.1872-.6588.4187-.8785.6949-.2196.2775-.3743.5698-.4641.8797-.0885.3088-.1416.5844-.1576.8289h5.6346c-.1605-.8792-.4498-1.5457-.8661-2.0008Z' fill='%23fff'/%3E%3Cpath d='M119.2551,41.8911c-.4079.6836-.9404,1.176-1.5993,1.476-.6577.301-1.4015.4516-2.2316.4516-.9446,0-1.773-.1824-2.4879-.5491-.7161-.3654-1.3065-.8613-1.7699-1.4878-.4641-.6257-.8142-1.3454-1.0492-2.159-.2356-.813-.3524-1.659-.3524-2.5374,0-.8455.1169-1.6631.3524-2.452.2349-.7893.5851-1.4842,1.0492-2.0869.4634-.6004,1.0455-1.0851,1.7445-1.4512.6996-.3661,1.5126-.5486,2.4407-.5486.7479,0,1.4594.1577,2.1329.4753.676.317,1.2087.7845,1.5994,1.4028h.0484v-6.3437h3.4644v17.4204h-3.2932v-1.6106h-.0484ZM119.1075,35.6573c-.0968-.4794-.2645-.9021-.4995-1.2686-.2355-.3655-.5407-.6619-.915-.8903-.3743-.2278-.8454-.3413-1.4145-.3413s-1.0498.1134-1.4399.3413c-.3903.2284-.7043.5284-.9406.9033-.2349.3743-.4049.8011-.5106,1.2805-.1069.4801-.1577.9802-.1577,1.5008,0,.4871.0555.9753.1689,1.4636.1139.4883.2975.9232.5491,1.3054.2531.3831.5691.6912.9527.9269.3814.2367.8419.3535,1.378.3535.5691,0,1.0449-.1127,1.4276-.3412.3814-.2279.6872-.5325.9151-.915.2261-.3819.3896-.8172.4864-1.3048.098-.4883.1476-.9924.1476-1.5126s-.0496-1.0208-.1476-1.5014Z' fill='%23fff'/%3E%3Cpath d='M34.7142,177.4255c-.1744-1.22-1.3421-2.148-2.6824-2.148-2.421,0-3.3332,2.0634-3.3332,4.2113,0,2.0423.9122,4.1043,3.3332,4.1043,1.6482,0,2.5808-1.1336,2.7823-2.7493h2.616c-.2765,3.0595-2.3899,5.0171-5.3983,5.0171-3.7954,0-6.0285-2.8351-6.0285-6.3721,0-3.6439,2.2331-6.479,6.0285-6.479,2.6983,0,4.9649,1.5817,5.2932,4.4156h-2.6107Z' fill='%23fff'/%3E%3Cpath d='M43.061,176.4475c2.801,0,4.6047,1.8525,4.6047,4.6894,0,2.8175-1.8037,4.673-4.6047,4.673-2.7835,0-4.5866-1.8555-4.5866-4.673,0-2.8369,1.8031-4.6894,4.5866-4.6894ZM43.061,183.9709c1.6662,0,2.1637-1.4267,2.1637-2.834,0-1.4254-.4975-2.8515-2.1637-2.8515-1.6487,0-2.1497,1.4261-2.1497,2.8515,0,1.4073.5011,2.834,2.1497,2.834Z' fill='%23fff'/%3E%3Cpath d='M49.1709,176.6715h2.3165v1.6487h.0358c.4446-1.1159,1.6487-1.8883,2.8363-1.8883.1715,0,.3759.0329.5332.084v2.2678c-.2272-.0511-.5855-.0835-.8769-.0835-1.789,0-2.4086,1.2887-2.4086,2.8505v4.0034h-2.4363v-8.8825Z' fill='%23fff'/%3E%3Cpath d='M55.8452,176.6872h2.3206v1.133h.0334c.5832-.944,1.5447-1.3727,2.6436-1.3727,2.7858,0,4.0368,2.2495,4.0368,4.7739,0,2.3717-1.3028,4.5884-3.8988,4.5884-1.0643,0-2.0769-.4641-2.6613-1.3404h-.0358v4.2265h-2.4386v-12.0088ZM62.4411,181.1552c0-1.4121-.5674-2.8698-2.1299-2.8698-1.5975,0-2.112,1.4261-2.112,2.8698,0,1.4413.5492,2.8157,2.1297,2.8157,1.5994,0,2.1122-1.3744,2.1122-2.8157Z' fill='%23fff'/%3E%3Cpath d='M70.2342,176.4475c2.8017,0,4.6083,1.8525,4.6083,4.6894,0,2.8175-1.8067,4.673-4.6083,4.673-2.7816,0-4.5848-1.8555-4.5848-4.673,0-2.8369,1.8031-4.6894,4.5848-4.6894ZM70.2342,183.9709c1.6669,0,2.1661-1.4267,2.1661-2.834,0-1.4254-.4992-2.8515-2.1661-2.8515-1.6469,0-2.1467,1.4261-2.1467,2.8515,0,1.4073.4998,2.834,2.1467,2.834Z' fill='%23fff'/%3E%3Cpath d='M76.3477,176.6715h2.3188v1.6487h.037c.4439-1.1159,1.6468-1.8883,2.8322-1.8883.1714,0,.3787.0329.5332.084v2.2678c-.2231-.0511-.585-.0835-.8763-.0835-1.7867,0-2.4057,1.2887-2.4057,2.8505v4.0034h-2.4393v-8.8825Z' fill='%23fff'/%3E%3Cpath d='M82.7851,179.4189c.1398-2.2859,2.1825-2.9714,4.1759-2.9714,1.7685,0,3.9012.3941,3.9012,2.5226v4.6231c0,.8088.0834,1.6147.3113,1.9765h-2.4774c-.0834-.2767-.1551-.5674-.1738-.8605-.7706.8094-1.9035,1.1007-2.9866,1.1007-1.6839,0-3.0231-.8411-3.0231-2.6642,0-2.0087,1.5142-2.4892,3.0231-2.6959,1.4953-.2244,2.888-.1721,2.888-1.17,0-1.0455-.7255-1.2012-1.5818-1.2012-.9287,0-1.5283.3771-1.6164,1.3404h-2.4404ZM88.4236,181.2215c-.4154.3636-1.2723.3764-2.0294.5163-.7558.1515-1.4431.4136-1.4431,1.3057,0,.9109.7049,1.1324,1.4966,1.1324,1.9042,0,1.9759-1.5095,1.9759-2.0433v-.9111Z' fill='%23fff'/%3E%3Cpath d='M95.789,176.6872h1.7879v1.6322h-1.7879v4.3951c0,.8276.2079,1.0332,1.0302,1.0332.2584,0,.4998-.0176.7577-.0669v1.9065c-.4147.0687-.948.0857-1.4284.0857-1.4907,0-2.7969-.346-2.7969-2.1145v-5.2391h-1.4795v-1.6322h1.4795v-2.6642h2.4374v2.6642Z' fill='%23fff'/%3E%3Cpath d='M101.8567,175.3121h-2.4398v-2.011h2.4398v2.011ZM99.4168,176.6872h2.4398v8.8825h-2.4398v-8.8825Z' fill='%23fff'/%3E%3Cpath d='M108.0793,176.4475c2.8022,0,4.6095,1.8525,4.6095,4.6894,0,2.8175-1.8073,4.673-4.6095,4.673-2.7804,0-4.583-1.8555-4.583-4.673,0-2.8369,1.8026-4.6894,4.583-4.6894ZM108.0793,183.9709c1.6705,0,2.1667-1.4267,2.1667-2.834,0-1.4254-.4963-2.8515-2.1667-2.8515-1.6481,0-2.1467,1.4261-2.1467,2.8515,0,1.4073.4986,2.834,2.1467,2.834Z' fill='%23fff'/%3E%3Cpath d='M114.2646,176.6872h2.32v1.2375h.0505c.6191-.9973,1.6839-1.4772,2.7159-1.4772,2.5937,0,3.2457,1.4596,3.2457,3.6586v5.4635h-2.4387v-5.0177c0-1.4596-.4311-2.1833-1.5623-2.1833-1.3256,0-1.8917.7408-1.8917,2.5457v4.6553h-2.4393v-8.8825Z' fill='%23fff'/%3E%3C/g%3E%3C/svg%3E");
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	filter: brightness(1) invert(1);
}

.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;
}


/* 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, .hs-video-widget > .hs-video-container {
	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 */
.blog-filters {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}

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-inzichten-index, .template-aanpakken-post) .header {
	background-color: white;
}
body:is(.template-inzichten-post, .template-inzichten-index, .template-aanpakken-post) .header.scrolled {
	background-color: white;
}

body:is(.template-opdrachten-post, .template-inzichten-post, .template-inzichten-index, .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-inzichten-index, .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-inzichten-index, .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;
}

body.template-inzichten-index .header .header_rechts #hs_cos_wrapper_site_search input {
	background-color: #EFEDEA;
}

@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, .teamleden_slide span) {
		color: #5B5D34;
	}
	.button {
		background-color: #5B5D34;
		color: #DBC980;
		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.16)'/%3E%3C/svg%3E%0A")
	}
}

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-geel:has( + section.bg-donkerrood) {
	z-index: 2;
}
section.bg-geel + section.bg-donkerrood {
	z-index: 1;

	&:before {
		top: -56px;
		height: calc(100% + 56px);
	}
}

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;
	margin-bottom: 32px;

	h1 {
		margin-bottom: 8px;
	}

	p {
		margin-bottom: var(--padding-l);
	}
}

.blog-items {
	--blog-gap: 40px;

	@media screen and (max-width: 1328px) {
		padding-left: 16px;
		padding-right: 16px;
		box-sizing: border-box;
	}

	@media screen and (max-width: 1312px) {
		--blog-gap: 16px;
	}

	@media screen and (max-width: 650px) {
		--blog-gap: 32px;
	}

	display: flex;
	flex-wrap: wrap;
	gap: var(--blog-gap);

	.blog-item {
		flex: 1 0 calc((100% - (2 * var(--blog-gap))) / 3);
		max-width: calc((100% - (2 * var(--blog-gap))) / 3);

		@media screen and (max-width: 1000px) {
			flex: 1 0 calc((100% - var(--blog-gap)) / 2);
			max-width: calc((100% - var(--blog-gap)) / 2);
		}

		@media screen and (max-width: 650px) {
			flex: 1 0 100%;
			max-width: 100%;
		}
	}

	&.featured {

		h3 {
			flex: 0 0 100%;
			font-size: 44px;
			margin: 0 0 -8px 0;
		}

		.blog-item:nth-child(1),
		.blog-item:nth-child(4) {
			background-color: #E4E6DA;

			a:not(:hover) {
				background-color: var(--groen-donker);
			}
		}

		.blog-item:nth-child(2),
		.blog-item:nth-child(5) {
			background-color: #EFEDEA;

			a:not(:hover) {
				background-color: var(--zwart);
			}
		}

		.blog-item:nth-child(3),
		.blog-item:nth-child(6) {
			background-color: #F3E5D7;

			a:not(:hover) {
				background-color: var(--oranje-donker);
			}
		}
	}
}

.blog-item {
	position: relative;
	display: flex;
	flex-direction: column;
	background-color: var(--grijs);
	overflow: hidden;
	transition: all .2s ease-in-out;
	border-radius: 20px;

	h4 {
		color: var(--zwart);
		font-family: var(--font);
		font-size: 32px;
		line-height: 36px;
		padding: 24px 16px 16px 16px;
		margin-bottom: 0;

		&.single, &.double, &.tripple, &.quadrupple {
			+ p {
				overflow: hidden;
				display: -webkit-box;
				-webkit-box-orient: vertical;
			}
		}

		&.single + p {
			-webkit-line-clamp: 6;
			line-clamp: 6;
			margin-top: 12px;
		}

		&.double + p {
			-webkit-line-clamp: 5;
			line-clamp: 5;
		}

		&.tripple + p {
			-webkit-line-clamp: 3;
			line-clamp: 3;
			margin-top: 12px;
		}

		&.quadrupple + p {
			-webkit-line-clamp: 2;
			line-clamp: 2;
		}
	}

	p {
		padding-left: 16px;
		padding-right: 16px;
		margin: 0 0 24px 0;
		font-size: 14px;
		line-height: 24px;
	}

	a.button {
		margin-left: 16px;
		margin-top: auto;
		align-self: flex-start;

		&:before {
			content: '';
			position: absolute;
			inset: 0;
		}
	}

	figure {
		margin-top: var(--padding-l);
		aspect-ratio: 404/260;
		max-height: 260px;
		position: relative;
		width: 100%;
		background-color: rgba(0, 0, 0, .2);

		img {
			object-fit: cover;
			object-position: center;
			width: 100%;
			height: 100%;

			&.placeholder {
				object-fit: contain;
				object-position: center;
				width: 50%;
				height: auto;
			}
		}

		&:has(img.placeholder) {
			display: flex;
			align-items: center;
			justify-content: center;
		}
	}
}

.blog-pagination {
	display: flex;
	gap: 16px;
	margin: 48px 0 96px 0;
	padding: 0 16px;
	box-sizing: border-box;
	justify-content: center;

	a {
		text-decoration: none;
		width: 32px;
		height: 32px;
		flex: 0 0 32px;
		display: flex;
		font-weight: 600;
		font-size: 14px;
		background-color: var(--grijs);
		align-items: center;
		justify-content: center;
		border-radius: 100%;
		color: var(--zwart);
	}

	.dots {
		width: 12px;
		cursor: default;
		flex: 0 0 12px;
		font-weight: 600;
		font-size: 14px;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	:is(.dots, .next, .prev) {
		background-color: transparent !important;
	}

	:is(a:not(.active)):hover {
		background-color: #c3bdbd;
		color: #fff;
	}

	a.active {
		cursor: default;
		background-color: var(--rood);
		color: #fff;
	}

	:is(.next, .prev) {
		background-size: 18px;
		background-repeat: no-repeat;
		background-position: center;
		transition: all .2s ease-in-out;
		filter: invert(2%) sepia(50%) saturate(0%) hue-rotate(237deg) brightness(53%) contrast(75%);
	}

	.prev {
		background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1em' height='1em' viewBox='0 0 24 24'%3E%3C!-- Icon from Humbleicons by Jiří Zralý - https://github.com/zraly/humbleicons/blob/master/license --%3E%3Cpath fill='none' stroke='%23000000' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m14 5l-7 7l7 7'/%3E%3C/svg%3E");
	
		&:hover {
			background-position: center left;
		}
	}

	.next {
		background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1em' height='1em' viewBox='0 0 24 24'%3E%3C!-- Icon from Humbleicons by Jiří Zralý - https://github.com/zraly/humbleicons/blob/master/license --%3E%3Cpath fill='none' stroke='%23000000' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m10 5l7 7l-7 7'/%3E%3C/svg%3E");
		
		&:hover {
			background-position: center right;
		}
	}
}

@media screen and (max-width: 1312px) {
	.blog-items {
		&.featured {
			h3 {
				font-size: 32px;
				margin: 0 0 16px 0;
			}
		}
	}
}

@media screen and (max-width: 768px) {
	.blog-pagination {
		gap: 12px;
		overflow-x: auto;

		.prev:hover,
		.next:hover  {
			background-position: center;
		}
	}
}

.blog-items.featured .slick-track {
	display: flex !important;
}

.blog-items.featured .slick-slide {
	margin: 0 8px;
	height: inherit !important;
	flex: unset !important;
	display: flex !important;
}

.blog-items.featured .slick-list {
	margin: 0 -16px;
}

.blog-items.featured .slick-dots {
	align-content: center;
	display: flex;
	gap: 10px;
	justify-content: center;
	width: 100%
}

.blog-items.featured .slick-dots li button {
	aspect-ratio: 1/1;
	background-color: #eeedea;
	border: 2px solid #eeedea;
	border-radius: 100%;
	box-sizing: border-box;
	display: block;
	font-size: 0;
	height: 18px;
	max-height: 18px;
	max-width: 18px;
	outline: 0;
	padding: 0;
	width: 18px
}

.blog-items.featured .slick-dots li.slick-active button {
	background-color: var(--rood)
}

@media (max-width: 1000px) {
	.blog-item h4 {
		font-size: 26px;
		line-height: 32px;
	}
}
@media (max-width: 500px) {
	.blog-item h4 {
		font-size: 22px;
		line-height: 28px;
	}
}

/* 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;
			text-decoration-color: #CCCCCC;
			-webkit-text-decoration-color: #CCCCCC;
		}
		a:hover {
			color: var(--rood);
			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, video {
		width: 100%;
		height: 100%;
		object-fit: cover;
		object-position: center;
	}
}

.body-container-inzichten-post article {
	max-width: 1074px;
	margin: 0 auto;
	padding-top: 48px;
}

.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 :is(img, video) {
		max-height: 420px;
		max-width: 100%;
		width: 100%;
		object-fit: cover;
		margin-bottom: 8px;
		border-radius: 20px;
		overflow: hidden;
	}
	figure figcaption {
		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 > div:not([class]) > div:not([class]) > :is(p, h2, h3, h4, h5, h6, ul, ol, blockquote, .widget-type-form),
.body-container-opdracht #hs_cos_wrapper_post_body > div:not([class]) > :is(p, h2, h3, h4, h5, h6, ul, ol, blockquote, .widget-type-form),
.body-container-opdracht #hs_cos_wrapper_post_body > :is(p, h2, h3, h4, h5, h6, ul, ol, blockquote, .widget-type-form) {
	max-width: 1074px;
	margin-left: auto;
	margin-right: auto;
}
@media (min-width: 1296px) {	
	.body-container-opdracht #hs_cos_wrapper_post_body > div:not([class]) > div:not([class]) > .hs-cta-embed,
	.body-container-opdracht #hs_cos_wrapper_post_body > div:not([class]) > .hs-cta-embed,
	.body-container-opdracht #hs_cos_wrapper_post_body > .hs-cta-embed {
		margin-left: 111px;
		margin-right: unset;
	}
}
.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");
}
.body-container-inzichten-post:not(:has(section.bg-wit)) section.bg-geel:before {
	mask-image: unset;
	-webkit-mask-image: unset;
}
body:has(.body-container-inzichten-post section.bg-geel):not(:has(.body-container-inzichten-post section.bg-wit)) .footer {
	margin-top: -40px;
}
body:has(.body-container-inzichten-post section.bg-geel):not(:has(.body-container-inzichten-post section.bg-wit)) .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='%23DBC980'/%3E%3C/svg%3E%0A");
}

.body-container-aanpak-post section.bg-geel:has( + script):before {
	mask-image: unset;
	-webkit-mask-image: unset;
}
body:has(.body-container-aanpak-post section.bg-geel + script) .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='%23DBC980'/%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 figcaption {
		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.template-aanpakken-post:has(.bg-geel + script) #main-content > .body-container {
	margin-bottom: 0;
}
body.template-aanpakken-post:has(.bg-geel + script) .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='%23EDEEE5'/%3E%3C/svg%3E%0A");
}
.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: '';
			flex: 0 0 22px;
			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: 24px;
	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;

	img, video {
		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;
	z-index: 2;
}
@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;
	}
}


/* Forms */
textarea, input:not([type="submit"], [type="range"], [type="checkbox"], [type="radio"]), select {
	font-family: var(--font-family);
	outline: 0;	
	background-color: white;
	border: 1px solid var(--beige);
	padding: 16px 24px;
	width: 100%;
	border-radius: 40px;
}
select {
	background-image: url("data:image/svg+xml,%3Csvg aria-hidden='true' focusable='false' data-prefix='fas' data-icon='chevron-down' role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512' class='svg-inline--fa fa-chevron-down fa-w-14 fa-9x'%3E%3Cpath fill='currentColor' d='M207.029 381.476L12.686 187.132c-9.373-9.373-9.373-24.569 0-33.941l22.667-22.667c9.357-9.357 24.522-9.375 33.901-.04L224 284.505l154.745-154.021c9.379-9.335 24.544-9.317 33.901.04l22.667 22.667c9.373 9.373 9.373 24.569 0 33.941L240.971 381.476c-9.373 9.372-24.569 9.372-33.942 0z' class=''%3E%3C/path%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-size: auto 30%;
	background-position: center right 20px;
	padding-right: 48px;
	cursor: pointer;
	-webkit-appearance: none;
	-moz-appearance: none;
}
textarea:focus, 
input:not([type="submit"], [type="range"], [type="checkbox"], [type="radio"]):focus, 
select:focus,
textarea:active, 
input:not([type="submit"], [type="range"], [type="checkbox"], [type="radio"]):active, 
select:active {
	border: 1px solid var(--zwart);
}

.hs-form-field label:not(.hs-form-radio-display, .hs-form-checkbox-display, .hs-form-booleancheckbox-display) {
	font-weight: 600;
}

.contactformbox label.hs-form-booleancheckbox-display {
  font-family: 'HurmeGeometricSans3-regular' !important;
}

:is(input[type="radio"], input[type="checkbox"]) {
	-webkit-appearance: none;
	appearance: none;
	margin: 0;
	background-color: white;
	font: inherit;
	color: var(--rood);
	width: 20px !important;
	height: 20px;
	border: 2px solid var(--beige);
	border-radius: 5px;
	display: inline-grid;
	place-content: center;
	vertical-align: middle;
	margin-top: -2px;
} 
input[type="radio"] {
	border-radius: 100%;
}
:is(input[type="radio"]:checked, input[type="checkbox"]:checked) {
	box-shadow: inset 0 0 0 1px white;
	background-color: var(--rood);
}
:is(input[type="radio"]:disabled, input[type="checkbox"]:disabled) {
	cursor: not-allowed;
}
:is(input[type="radio"], input[type="checkbox"]) + label {
	display: inline-block;
	vertical-align: middle;
	padding-left: 8px;
}

.hs-input.invalid.error {
	border-color: var(--rood);
}
.hs-error-msg {
	color: var(--rood);
}

body .legal-consent-container .hs-form-booleancheckbox-display input {
	float: none;
	display: inline-block;
	vertical-align: middle;
	margin-bottom: 0;
	line-height: 32px;
}
body form .inputs-list span,
body .legal-consent-container .hs-form-booleancheckbox-display input + span {
	float: none;
	display: inline-block;
	vertical-align: middle;
	margin-bottom: 0;
	margin-left: 8px !important;
}
body .legal-consent-container .hs-form-booleancheckbox-display input + span p {
	margin-left: 0px !important;
}

@media(max-width: 490px) {
	body form .inputs-list span,
	body .legal-consent-container .hs-form-booleancheckbox-display input + span {
		max-width: 280px;
	}
}

@media(max-width: 360px) {
	body form .inputs-list span,
	body .legal-consent-container .hs-form-booleancheckbox-display input + span {
		max-width: 240px;
	}
}

.grecaptcha-badge {
	position: absolute;
	visibility: hidden;
}


/* Systems page -> Unsubscribe */
@media (min-width: 1380px) {
	.systems-page {
		padding: 16px;
	}
}
.systems-page .page-header {
	margin-bottom: 24px;
}
.systems-page select {
	margin-bottom: 24px;
	max-width: 400px;
}
.systems-page label[for="globalunsub"] {
	font-size: 18px;
}
.systems-page p.header {
	font-weight: 600;
}

#hs-subscriptions-unsubscribe-survey-options > div {
	display: flex;
	align-items: center;
	margin-bottom: 12px;
}
#hs-subscriptions-unsubscribe-survey-options > div > * {
	margin-bottom: 0
}

#hs-subscriptions-manage-preferences-button {
	all: unset;
    color: var(--rood);
    text-decoration: underline;
}

#hs-subscriptions-other-option-input {
	all: unset;
	border: 0;
    border-radius: 20px;
    line-height: 1.153846153846154;
    outline: none;
    padding: 15px 24px;
	background-color: var(--beige);
	font-family: var(--font);
	min-width: 400px;
    min-height: 400px;
}

/* 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;
	margin-bottom: 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: 16px;
}

.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;
}