/* 
 Theme Name:   Gladior
 Theme URI:    https://www.gladior.com
 Description:  Thema Gladior Theme
 Author:       triplehosting
 Author URI:   http://newgladior.triplehosting.nl
 Version:      1.0
 License:      GNU General Public License v2 or later
 License URI:  http://www.gnu.org/licenses/gpl-2.0.html

 /* == Add your own styles below this line ==
--------------------------------------------*/

/* SETUP ROOT */
:root {
  font-size: 16px;
  line-height: 24px;
  --mob-logo-width: 65px;
  --mob-header-height: calc(65px + 32px);
  --padding-base: 1rem;
  --text: #282828;
  --black: #282828;
  --white: #ffffff;
  --orange: #ef811b;
  --svg-arrow-right: url("data:image/svg+xml,%3Csvg aria-hidden='true' focusable='false' data-prefix='fas' data-icon='arrow-right' role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512' class='svg-inline--fa fa-arrow-right fa-w-14 fa-2x'%3E%3Cpath fill='%23EF811B' d='M190.5 66.9l22.2-22.2c9.4-9.4 24.6-9.4 33.9 0L441 239c9.4 9.4 9.4 24.6 0 33.9L246.6 467.3c-9.4 9.4-24.6 9.4-33.9 0l-22.2-22.2c-9.5-9.5-9.3-25 .4-34.3L311.4 296H24c-13.3 0-24-10.7-24-24v-32c0-13.3 10.7-24 24-24h287.4L190.9 101.2c-9.8-9.3-10-24.8-.4-34.3z' class=''%3E%3C/path%3E%3C/svg%3E");
  --svg-arrow-right-white: url("data:image/svg+xml,%3Csvg aria-hidden='true' focusable='false' data-prefix='fas' data-icon='arrow-right' role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512' class='svg-inline--fa fa-arrow-right fa-w-14 fa-2x'%3E%3Cpath fill='%23FFF' d='M190.5 66.9l22.2-22.2c9.4-9.4 24.6-9.4 33.9 0L441 239c9.4 9.4 9.4 24.6 0 33.9L246.6 467.3c-9.4 9.4-24.6 9.4-33.9 0l-22.2-22.2c-9.5-9.5-9.3-25 .4-34.3L311.4 296H24c-13.3 0-24-10.7-24-24v-32c0-13.3 10.7-24 24-24h287.4L190.9 101.2c-9.8-9.3-10-24.8-.4-34.3z' class=''%3E%3C/path%3E%3C/svg%3E");
  --orange-accent: #ff912b;
  --svg-arrow-right-hover: url("data:image/svg+xml,%3Csvg aria-hidden='true' focusable='false' data-prefix='fas' data-icon='arrow-right' role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512' class='svg-inline--fa fa-arrow-right fa-w-14 fa-2x'%3E%3Cpath fill='%23FF912B' d='M190.5 66.9l22.2-22.2c9.4-9.4 24.6-9.4 33.9 0L441 239c9.4 9.4 9.4 24.6 0 33.9L246.6 467.3c-9.4 9.4-24.6 9.4-33.9 0l-22.2-22.2c-9.5-9.5-9.3-25 .4-34.3L311.4 296H24c-13.3 0-24-10.7-24-24v-32c0-13.3 10.7-24 24-24h287.4L190.9 101.2c-9.8-9.3-10-24.8-.4-34.3z' class=''%3E%3C/path%3E%3C/svg%3E");
  --svg-arrow-right-hover-white: url("data:image/svg+xml,%3Csvg aria-hidden='true' focusable='false' data-prefix='fas' data-icon='arrow-right' role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512' class='svg-inline--fa fa-arrow-right fa-w-14 fa-2x'%3E%3Cpath fill='%23FFF' d='M190.5 66.9l22.2-22.2c9.4-9.4 24.6-9.4 33.9 0L441 239c9.4 9.4 9.4 24.6 0 33.9L246.6 467.3c-9.4 9.4-24.6 9.4-33.9 0l-22.2-22.2c-9.5-9.5-9.3-25 .4-34.3L311.4 296H24c-13.3 0-24-10.7-24-24v-32c0-13.3 10.7-24 24-24h287.4L190.9 101.2c-9.8-9.3-10-24.8-.4-34.3z' class=''%3E%3C/path%3E%3C/svg%3E");
  --light-grey: #e0e1e1;
  --dark-grey: #707375;
  --semi-transparent: rgba(255, 255, 255, 0.8);
  --btn-transition: ease-out all 200ms;
}

@media screen and (max-width: 1199px) {
  :root {
    --padding-base: 0.75rem;
  }
}

@media screen and (max-width: 767px) {
  :root {
    --padding-base: 0.5rem;
  }
}

/* START MARGIN/PADDING FRAMEWORK */
.no-margin,
.margin-no {
  margin: 0;
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
}

.no-padding,
.padding-no {
  padding: 0;
  padding-top: 0;
  padding-right: 0;
  padding-left: 0;
  padding-bottom: 0;
}

.padding-xxs {
  padding: calc(var(--padding-base) * 0.5);
}

.padding-xs {
  padding: calc(var(--padding-base) * 0.75);
}

.padding-s {
  padding: calc(var(--padding-base) * 1);
}

.padding-n {
  padding: calc(var(--padding-base) * 1.5);
}

.padding-m {
  padding: calc(var(--padding-base) * 2);
}

.padding-l {
  padding: calc(var(--padding-base) * 3);
}

.padding-xl {
  padding: calc(var(--padding-base) * 4);
}

.padding-top-s {
  padding-top: calc(var(--padding-base) * 1);
}

.padding-top-m {
  padding-top: calc(var(--padding-base) * 2);
}

.padding-top-l {
  padding-top: calc(var(--padding-base) * 3);
}

.padding-top-xl {
  padding-top: calc(var(--padding-base) * 4);
}

.padding-bottom-s {
  padding-bottom: calc(var(--padding-base) * 1);
}

.padding-bottom-m {
  padding-bottom: calc(var(--padding-base) * 2);
}

.padding-bottom-l {
  padding-bottom: calc(var(--padding-base) * 3);
}

.padding-bottom-xl {
  padding-bottom: calc(var(--padding-base) * 4);
}

.padding-y-s {
  padding-top: calc(var(--padding-base) * 1);
  padding-bottom: calc(var(--padding-base) * 1);
}

.padding-y-m {
  padding-top: calc(var(--padding-base) * 2);
  padding-bottom: calc(var(--padding-base) * 2);
}

.padding-y-l {
  padding-top: calc(var(--padding-base) * 3);
  padding-bottom: calc(var(--padding-base) * 3);
}

.padding-y-xl {
  padding-top: calc(var(--padding-base) * 4);
  padding-bottom: calc(var(--padding-base) * 4);
}

.padding-x-s {
  padding-left: calc(var(--padding-base) * 1);
  padding-right: calc(var(--padding-base) * 1);
}

.padding-x-m {
  padding-left: calc(var(--padding-base) * 2);
  padding-right: calc(var(--padding-base) * 2);
}

.padding-x-l {
  padding-left: calc(var(--padding-base) * 3);
  padding-right: calc(var(--padding-base) * 3);
}

.padding-x-xl {
  padding-left: calc(var(--padding-base) * 4);
  padding-right: calc(var(--padding-base) * 4);
}

.margin-s {
  margin: calc(var(--padding-base) * 1);
}

.margin-m {
  margin: calc(var(--padding-base) * 2);
}

.margin-l {
  margin: calc(var(--padding-base) * 3);
}

.margin-xl {
  margin: calc(var(--padding-base) * 4);
}

.margin-top-s {
  margin-top: calc(var(--padding-base) * 1);
}

.margin-top-m {
  margin-top: calc(var(--padding-base) * 2);
}

.margin-top-l {
  margin-top: calc(var(--padding-base) * 3);
}

.margin-top-xl {
  margin-top: calc(var(--padding-base) * 4);
}

.margin-bottom-s {
  margin-bottom: calc(var(--padding-base) * 1);
}

.margin-bottom-m {
  margin-bottom: calc(var(--padding-base) * 2);
}

.margin-bottom-l {
  margin-bottom: calc(var(--padding-base) * 3);
}

.margin-bottom-xl {
  margin-bottom: calc(var(--padding-base) * 4);
}

.margin-y-s {
  margin-top: calc(var(--padding-base) * 1);
  margin-bottom: calc(var(--padding-base) * 1);
}

.margin-y-m {
  margin-top: calc(var(--padding-base) * 2);
  margin-bottom: calc(var(--padding-base) * 2);
}

.margin-y-l {
  margin-top: calc(var(--padding-base) * 3);
  margin-bottom: calc(var(--padding-base) * 3);
}

.margin-y-xl {
  margin-top: calc(var(--padding-base) * 3);
  margin-bottom: calc(var(--padding-base) * 3);
}

.margin-x-s {
  margin-left: calc(var(--padding-base) * 1);
  margin-right: calc(var(--padding-base) * 1);
}

.margin-x-m {
  margin-left: calc(var(--padding-base) * 2);
  margin-right: calc(var(--padding-base) * 2);
}

.margin-x-l {
  margin-left: calc(var(--padding-base) * 3);
  margin-right: calc(var(--padding-base) * 3);
}

.margin-x-xl {
  margin-left: calc(var(--padding-base) * 4);
  margin-right: calc(var(--padding-base) * 4);
}

/* END MARGIN/PADDING FRAMEWORK */
.block {
  display: block;
}

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

.inline {
  display: inline;
}

.flex {
  display: flex;
}

.align-center {
  align-items: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-end {
  justify-content: flex-end;
}

.justify-start {
  justify-content: flex-start;
}

.grid {
  display: grid;
}

.height-100 {
  height: 100%;
}

.youtube {
  background-color: #000;
  position: relative;
  padding-top: 56.25%;
  overflow: hidden;
  cursor: pointer;
}

.youtube img {
  width: 100%;
  top: 0%;
  left: 0;
  opacity: 1;
  height: 100%;
}

.youtube .play-button {
  width: 90px;
  height: 60px;
  background-color: #333;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.6);
  z-index: 1;
  opacity: 0.8;
  border-radius: 6px;
}

.youtube .play-button:before {
  content: "";
  border-style: solid;
  border-width: 15px 0 15px 26px;
  border-color: transparent transparent transparent #fff;
}

.youtube .play-button,
.youtube img {
  cursor: pointer;
}

.youtube .play-button,
.youtube .play-button:before,
.youtube iframe,
.youtube img {
  position: absolute;
}

.youtube .play-button,
.youtube .play-button:before {
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
}

.youtube iframe {
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}

.order-1 {
  order: 1;
}

.order-2 {
  order: 2;
}

.order-3 {
  order: 3;
}

/*!
Pure v1.0.1
Copyright 2013 Yahoo!
Licensed under the BSD License.
https://github.com/pure-css/pure/blob/master/LICENSE.md
*/
/*!
normalize.css v^3.0 | MIT License | git.io/normalize
Copyright (c) Nicolas Gallagher and Jonathan Neal
*/
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden],
template {
  display: none;
}

a {
  background-color: transparent;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b,
strong {
  font-weight: 700;
}

dfn {
  font-style: italic;
}

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

mark {
  background: #ff0;
  color: #000;
}

small {
  font-size: 80%;
}

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

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

img,
iframe {
  border: 0;
  max-width: 100%;
  height: auto;
}

svg:not(:root) {
  overflow: hidden;
}

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

pre {
  overflow: auto;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

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

button[disabled],
html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input {
  line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
}

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

input[type="search"] {
  -webkit-appearance: textfield;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

fieldset {
  border: 1px solid silver;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: 700;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

.hidden,
[hidden] {
  display: none !important;
}

.pure-img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* END NORMALIZE */
/*!
Pure v2.0.3
Copyright 2013 Yahoo!
Licensed under the BSD License.
https://github.com/pure-css/pure/blob/master/LICENSE.md
*/
.light-color {
  color: var(--dark-grey);
}

.black-color {
  color: var(--text);
}

.orange-text,
.orange-color {
  color: var(--orange);
}

.ano-link {
  color: inherit;
  text-decoration: none;
}

.bold-weight,
.font-bold {
  font-weight: 700;
}

.semi-weight,
.font-semi {
  font-weight: 600;
}

.medium-weight,
.font-medium {
  font-weight: 500;
}

.black-weight,
.font-black {
  font-weight: 900;
}

.normal-weight,
.font-normal {
  font-weight: 400;
}

.light-weight,
.font-light {
  font-weight: 300;
}

.full-width {
  padding-left: 0.5em;
  padding-right: 0.5em;
  max-width: 100%;
}

.container {
  width: 90%;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0.5em;
  padding-right: 0.5em;
}

.semi-container {
  max-width: 70rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0.5em;
  padding-right: 0.5em;
  width: 90%;
}

.container-thinner {
  max-width: 60rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0.5em;
  padding-right: 0.5em;
  width: 90%;
}

.container-much-thinner {
  max-width: 45rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0.5em;
  padding-right: 0.5em;
  width: 90%;
}

.max-width-semi {
  max-width: 990px;
  margin-left: auto;
  margin-right: auto;
}

.pure-g {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -ms-flex-line-pack: start;
  align-content: flex-start;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  table .pure-g {
    display: block;
  }
}

.opera-only :-o-prefocus,
.pure-g {
  word-spacing: -0.43em;
}

.pure-u-1,
.pure-u-1-1,
.pure-u-1-12,
.pure-u-1-2,
.pure-u-1-24,
.pure-u-1-3,
.pure-u-1-4,
.pure-u-1-5,
.pure-u-1-6,
.pure-u-1-8,
.pure-u-10-24,
.pure-u-11-12,
.pure-u-11-24,
.pure-u-12-24,
.pure-u-13-24,
.pure-u-14-24,
.pure-u-15-24,
.pure-u-16-24,
.pure-u-17-24,
.pure-u-18-24,
.pure-u-19-24,
.pure-u-2-24,
.pure-u-2-3,
.pure-u-2-5,
.pure-u-20-24,
.pure-u-21-24,
.pure-u-22-24,
.pure-u-23-24,
.pure-u-24-24,
.pure-u-3-24,
.pure-u-3-4,
.pure-u-3-5,
.pure-u-3-8,
.pure-u-4-24,
.pure-u-4-5,
.pure-u-5-12,
.pure-u-5-24,
.pure-u-5-5,
.pure-u-5-6,
.pure-u-5-8,
.pure-u-6-24,
.pure-u-7-12,
.pure-u-7-24,
.pure-u-7-8,
.pure-u-8-24,
.pure-u-9-24 {
  display: inline-block;
  letter-spacing: normal;
  word-spacing: normal;
  vertical-align: top;
  text-rendering: auto;
}

.pure-u-1-24 {
  width: 4.1667%;
}

.pure-u-1-12,
.pure-u-2-24 {
  width: 8.3333%;
}

.pure-u-1-8,
.pure-u-3-24 {
  width: 12.5%;
}

.pure-u-1-6,
.pure-u-4-24 {
  width: 16.6667%;
}

.pure-u-1-5 {
  width: 20%;
}

.pure-u-5-24 {
  width: 20.8333%;
}

.pure-u-1-4,
.pure-u-6-24 {
  width: 25%;
}

.pure-u-7-24 {
  width: 29.1667%;
}

.pure-u-1-3,
.pure-u-8-24 {
  width: 33.3333%;
}

.pure-u-3-8,
.pure-u-9-24 {
  width: 37.5%;
}

.pure-u-2-5 {
  width: 40%;
}

.pure-u-10-24,
.pure-u-5-12 {
  width: 41.6667%;
}

.pure-u-11-24 {
  width: 45.8333%;
}

.pure-u-1-2,
.pure-u-12-24 {
  width: 50%;
}

.pure-u-13-24 {
  width: 54.1667%;
}

.pure-u-14-24,
.pure-u-7-12 {
  width: 58.3333%;
}

.pure-u-3-5 {
  width: 60%;
}

.pure-u-15-24,
.pure-u-5-8 {
  width: 62.5%;
}

.pure-u-16-24,
.pure-u-2-3 {
  width: 66.6667%;
}

.pure-u-17-24 {
  width: 70.8333%;
}

.pure-u-18-24,
.pure-u-3-4 {
  width: 75%;
}

.pure-u-19-24 {
  width: 79.1667%;
}

.pure-u-4-5 {
  width: 80%;
}

.pure-u-20-24,
.pure-u-5-6 {
  width: 83.3333%;
}

.pure-u-21-24,
.pure-u-7-8 {
  width: 87.5%;
}

.pure-u-11-12,
.pure-u-22-24 {
  width: 91.6667%;
}

.pure-u-23-24 {
  width: 95.8333%;
}

.pure-u-1,
.pure-u-1-1,
.pure-u-24-24,
.pure-u-5-5 {
  width: 100%;
}

.pure-g {
  margin-left: -0.5em;
  margin-right: -0.5em;
}

.pure-g:not(.slick-slider) > div {
  padding-left: 0.5em;
  padding-right: 0.5em;
  padding-bottom: 1em;
}

@media screen and (min-width: 90em) {
  .pure-u-xl-hidden {
    display: none !important;
  }
}

@media screen and (min-width: 64em) and (max-width: 89.99em) {
  .pure-u-lg-hidden {
    display: none !important;
  }
}

@media screen and (min-width: 48em) and (max-width: 63.99em) {
  .pure-u-md-hidden {
    display: none !important;
  }
}

@media screen and (max-width: 47.99em) {
  .pure-u-sm-hidden {
    display: none !important;
  }
}

/*!
Pure v2.0.3
Copyright 2013 Yahoo!
Licensed under the BSD License.
https://github.com/pure-css/pure/blob/master/LICENSE.md
*/
@media screen and (min-width: 35.5em) {
  .pure-u-sm-1,
  .pure-u-sm-1-1,
  .pure-u-sm-1-12,
  .pure-u-sm-1-2,
  .pure-u-sm-1-24,
  .pure-u-sm-1-3,
  .pure-u-sm-1-4,
  .pure-u-sm-1-5,
  .pure-u-sm-1-6,
  .pure-u-sm-1-8,
  .pure-u-sm-10-24,
  .pure-u-sm-11-12,
  .pure-u-sm-11-24,
  .pure-u-sm-12-24,
  .pure-u-sm-13-24,
  .pure-u-sm-14-24,
  .pure-u-sm-15-24,
  .pure-u-sm-16-24,
  .pure-u-sm-17-24,
  .pure-u-sm-18-24,
  .pure-u-sm-19-24,
  .pure-u-sm-2-24,
  .pure-u-sm-2-3,
  .pure-u-sm-2-5,
  .pure-u-sm-20-24,
  .pure-u-sm-21-24,
  .pure-u-sm-22-24,
  .pure-u-sm-23-24,
  .pure-u-sm-24-24,
  .pure-u-sm-3-24,
  .pure-u-sm-3-4,
  .pure-u-sm-3-5,
  .pure-u-sm-3-8,
  .pure-u-sm-4-24,
  .pure-u-sm-4-5,
  .pure-u-sm-5-12,
  .pure-u-sm-5-24,
  .pure-u-sm-5-5,
  .pure-u-sm-5-6,
  .pure-u-sm-5-8,
  .pure-u-sm-6-24,
  .pure-u-sm-7-12,
  .pure-u-sm-7-24,
  .pure-u-sm-7-8,
  .pure-u-sm-8-24,
  .pure-u-sm-9-24 {
    display: inline-block;
    letter-spacing: normal;
    word-spacing: normal;
    vertical-align: top;
    text-rendering: auto;
  }

  .pure-u-sm-1-24 {
    width: 4.1667%;
  }

  .pure-u-sm-1-12,
  .pure-u-sm-2-24 {
    width: 8.3333%;
  }

  .pure-u-sm-1-8,
  .pure-u-sm-3-24 {
    width: 12.5%;
  }

  .pure-u-sm-1-6,
  .pure-u-sm-4-24 {
    width: 16.6667%;
  }

  .pure-u-sm-1-5 {
    width: 20%;
  }

  .pure-u-sm-5-24 {
    width: 20.8333%;
  }

  .pure-u-sm-1-4,
  .pure-u-sm-6-24 {
    width: 25%;
  }

  .pure-u-sm-7-24 {
    width: 29.1667%;
  }

  .pure-u-sm-1-3,
  .pure-u-sm-8-24 {
    width: 33.3333%;
  }

  .pure-u-sm-3-8,
  .pure-u-sm-9-24 {
    width: 37.5%;
  }

  .pure-u-sm-2-5 {
    width: 40%;
  }

  .pure-u-sm-10-24,
  .pure-u-sm-5-12 {
    width: 41.6667%;
  }

  .pure-u-sm-11-24 {
    width: 45.8333%;
  }

  .pure-u-sm-1-2,
  .pure-u-sm-12-24 {
    width: 50%;
  }

  .pure-u-sm-13-24 {
    width: 54.1667%;
  }

  .pure-u-sm-14-24,
  .pure-u-sm-7-12 {
    width: 58.3333%;
  }

  .pure-u-sm-3-5 {
    width: 60%;
  }

  .pure-u-sm-15-24,
  .pure-u-sm-5-8 {
    width: 62.5%;
  }

  .pure-u-sm-16-24,
  .pure-u-sm-2-3 {
    width: 66.6667%;
  }

  .pure-u-sm-17-24 {
    width: 70.8333%;
  }

  .pure-u-sm-18-24,
  .pure-u-sm-3-4 {
    width: 75%;
  }

  .pure-u-sm-19-24 {
    width: 79.1667%;
  }

  .pure-u-sm-4-5 {
    width: 80%;
  }

  .pure-u-sm-20-24,
  .pure-u-sm-5-6 {
    width: 83.3333%;
  }

  .pure-u-sm-21-24,
  .pure-u-sm-7-8 {
    width: 87.5%;
  }

  .pure-u-sm-11-12,
  .pure-u-sm-22-24 {
    width: 91.6667%;
  }

  .pure-u-sm-23-24 {
    width: 95.8333%;
  }

  .pure-u-sm-1,
  .pure-u-sm-1-1,
  .pure-u-sm-24-24,
  .pure-u-sm-5-5 {
    width: 100%;
  }
}

@media screen and (min-width: 48em) {
  .pure-u-md-1,
  .pure-u-md-1-1,
  .pure-u-md-1-12,
  .pure-u-md-1-2,
  .pure-u-md-1-24,
  .pure-u-md-1-3,
  .pure-u-md-1-4,
  .pure-u-md-1-5,
  .pure-u-md-1-6,
  .pure-u-md-1-8,
  .pure-u-md-10-24,
  .pure-u-md-11-12,
  .pure-u-md-11-24,
  .pure-u-md-12-24,
  .pure-u-md-13-24,
  .pure-u-md-14-24,
  .pure-u-md-15-24,
  .pure-u-md-16-24,
  .pure-u-md-17-24,
  .pure-u-md-18-24,
  .pure-u-md-19-24,
  .pure-u-md-2-24,
  .pure-u-md-2-3,
  .pure-u-md-2-5,
  .pure-u-md-20-24,
  .pure-u-md-21-24,
  .pure-u-md-22-24,
  .pure-u-md-23-24,
  .pure-u-md-24-24,
  .pure-u-md-3-24,
  .pure-u-md-3-4,
  .pure-u-md-3-5,
  .pure-u-md-3-8,
  .pure-u-md-4-24,
  .pure-u-md-4-5,
  .pure-u-md-5-12,
  .pure-u-md-5-24,
  .pure-u-md-5-5,
  .pure-u-md-5-6,
  .pure-u-md-5-8,
  .pure-u-md-6-24,
  .pure-u-md-7-12,
  .pure-u-md-7-24,
  .pure-u-md-7-8,
  .pure-u-md-8-24,
  .pure-u-md-9-24 {
    display: inline-block;
    letter-spacing: normal;
    word-spacing: normal;
    vertical-align: top;
    text-rendering: auto;
  }

  .pure-u-md-1-24 {
    width: 4.1667%;
  }

  .pure-u-md-1-12,
  .pure-u-md-2-24 {
    width: 8.3333%;
  }

  .pure-u-md-1-8,
  .pure-u-md-3-24 {
    width: 12.5%;
  }

  .pure-u-md-1-6,
  .pure-u-md-4-24 {
    width: 16.6667%;
  }

  .pure-u-md-1-5 {
    width: 20%;
  }

  .pure-u-md-5-24 {
    width: 20.8333%;
  }

  .pure-u-md-1-4,
  .pure-u-md-6-24 {
    width: 25%;
  }

  .pure-u-md-7-24 {
    width: 29.1667%;
  }

  .pure-u-md-1-3,
  .pure-u-md-8-24 {
    width: 33.3333%;
  }

  .pure-u-md-3-8,
  .pure-u-md-9-24 {
    width: 37.5%;
  }

  .pure-u-md-2-5 {
    width: 40%;
  }

  .pure-u-md-10-24,
  .pure-u-md-5-12 {
    width: 41.6667%;
  }

  .pure-u-md-11-24 {
    width: 45.8333%;
  }

  .pure-u-md-1-2,
  .pure-u-md-12-24 {
    width: 50%;
  }

  .pure-u-md-13-24 {
    width: 54.1667%;
  }

  .pure-u-md-14-24,
  .pure-u-md-7-12 {
    width: 58.3333%;
  }

  .pure-u-md-3-5 {
    width: 60%;
  }

  .pure-u-md-15-24,
  .pure-u-md-5-8 {
    width: 62.5%;
  }

  .pure-u-md-16-24,
  .pure-u-md-2-3 {
    width: 66.6667%;
  }

  .pure-u-md-17-24 {
    width: 70.8333%;
  }

  .pure-u-md-18-24,
  .pure-u-md-3-4 {
    width: 75%;
  }

  .pure-u-md-19-24 {
    width: 79.1667%;
  }

  .pure-u-md-4-5 {
    width: 80%;
  }

  .pure-u-md-20-24,
  .pure-u-md-5-6 {
    width: 83.3333%;
  }

  .pure-u-md-21-24,
  .pure-u-md-7-8 {
    width: 87.5%;
  }

  .pure-u-md-11-12,
  .pure-u-md-22-24 {
    width: 91.6667%;
  }

  .pure-u-md-23-24 {
    width: 95.8333%;
  }

  .pure-u-md-1,
  .pure-u-md-1-1,
  .pure-u-md-24-24,
  .pure-u-md-5-5 {
    width: 100%;
  }
}

@media screen and (min-width: 64em) {
  .pure-u-lg-1,
  .pure-u-lg-1-1,
  .pure-u-lg-1-12,
  .pure-u-lg-1-2,
  .pure-u-lg-1-24,
  .pure-u-lg-1-3,
  .pure-u-lg-1-4,
  .pure-u-lg-1-5,
  .pure-u-lg-1-6,
  .pure-u-lg-1-8,
  .pure-u-lg-10-24,
  .pure-u-lg-11-12,
  .pure-u-lg-11-24,
  .pure-u-lg-12-24,
  .pure-u-lg-13-24,
  .pure-u-lg-14-24,
  .pure-u-lg-15-24,
  .pure-u-lg-16-24,
  .pure-u-lg-17-24,
  .pure-u-lg-18-24,
  .pure-u-lg-19-24,
  .pure-u-lg-2-24,
  .pure-u-lg-2-3,
  .pure-u-lg-2-5,
  .pure-u-lg-20-24,
  .pure-u-lg-21-24,
  .pure-u-lg-22-24,
  .pure-u-lg-23-24,
  .pure-u-lg-24-24,
  .pure-u-lg-3-24,
  .pure-u-lg-3-4,
  .pure-u-lg-3-5,
  .pure-u-lg-3-8,
  .pure-u-lg-4-24,
  .pure-u-lg-4-5,
  .pure-u-lg-5-12,
  .pure-u-lg-5-24,
  .pure-u-lg-5-5,
  .pure-u-lg-5-6,
  .pure-u-lg-5-8,
  .pure-u-lg-6-24,
  .pure-u-lg-7-12,
  .pure-u-lg-7-24,
  .pure-u-lg-7-8,
  .pure-u-lg-8-24,
  .pure-u-lg-9-24 {
    display: inline-block;
    letter-spacing: normal;
    word-spacing: normal;
    vertical-align: top;
    text-rendering: auto;
  }

  .pure-u-lg-1-24 {
    width: 4.1667%;
  }

  .pure-u-lg-1-12,
  .pure-u-lg-2-24 {
    width: 8.3333%;
  }

  .pure-u-lg-1-8,
  .pure-u-lg-3-24 {
    width: 12.5%;
  }

  .pure-u-lg-1-6,
  .pure-u-lg-4-24 {
    width: 16.6667%;
  }

  .pure-u-lg-1-5 {
    width: 20%;
  }

  .pure-u-lg-5-24 {
    width: 20.8333%;
  }

  .pure-u-lg-1-4,
  .pure-u-lg-6-24 {
    width: 25%;
  }

  .pure-u-lg-7-24 {
    width: 29.1667%;
  }

  .pure-u-lg-1-3,
  .pure-u-lg-8-24 {
    width: 33.3333%;
  }

  .pure-u-lg-3-8,
  .pure-u-lg-9-24 {
    width: 37.5%;
  }

  .pure-u-lg-2-5 {
    width: 40%;
  }

  .pure-u-lg-10-24,
  .pure-u-lg-5-12 {
    width: 41.6667%;
  }

  .pure-u-lg-11-24 {
    width: 45.8333%;
  }

  .pure-u-lg-1-2,
  .pure-u-lg-12-24 {
    width: 50%;
  }

  .pure-u-lg-13-24 {
    width: 54.1667%;
  }

  .pure-u-lg-14-24,
  .pure-u-lg-7-12 {
    width: 58.3333%;
  }

  .pure-u-lg-3-5 {
    width: 60%;
  }

  .pure-u-lg-15-24,
  .pure-u-lg-5-8 {
    width: 62.5%;
  }

  .pure-u-lg-16-24,
  .pure-u-lg-2-3 {
    width: 66.6667%;
  }

  .pure-u-lg-17-24 {
    width: 70.8333%;
  }

  .pure-u-lg-18-24,
  .pure-u-lg-3-4 {
    width: 75%;
  }

  .pure-u-lg-19-24 {
    width: 79.1667%;
  }

  .pure-u-lg-4-5 {
    width: 80%;
  }

  .pure-u-lg-20-24,
  .pure-u-lg-5-6 {
    width: 83.3333%;
  }

  .pure-u-lg-21-24,
  .pure-u-lg-7-8 {
    width: 87.5%;
  }

  .pure-u-lg-11-12,
  .pure-u-lg-22-24 {
    width: 91.6667%;
  }

  .pure-u-lg-23-24 {
    width: 95.8333%;
  }

  .pure-u-lg-1,
  .pure-u-lg-1-1,
  .pure-u-lg-24-24,
  .pure-u-lg-5-5 {
    width: 100%;
  }
}

@media screen and (min-width: 80em) {
  .pure-u-xl-1,
  .pure-u-xl-1-1,
  .pure-u-xl-1-12,
  .pure-u-xl-1-2,
  .pure-u-xl-1-24,
  .pure-u-xl-1-3,
  .pure-u-xl-1-4,
  .pure-u-xl-1-5,
  .pure-u-xl-1-6,
  .pure-u-xl-1-8,
  .pure-u-xl-10-24,
  .pure-u-xl-11-12,
  .pure-u-xl-11-24,
  .pure-u-xl-12-24,
  .pure-u-xl-13-24,
  .pure-u-xl-14-24,
  .pure-u-xl-15-24,
  .pure-u-xl-16-24,
  .pure-u-xl-17-24,
  .pure-u-xl-18-24,
  .pure-u-xl-19-24,
  .pure-u-xl-2-24,
  .pure-u-xl-2-3,
  .pure-u-xl-2-5,
  .pure-u-xl-20-24,
  .pure-u-xl-21-24,
  .pure-u-xl-22-24,
  .pure-u-xl-23-24,
  .pure-u-xl-24-24,
  .pure-u-xl-3-24,
  .pure-u-xl-3-4,
  .pure-u-xl-3-5,
  .pure-u-xl-3-8,
  .pure-u-xl-4-24,
  .pure-u-xl-4-5,
  .pure-u-xl-5-12,
  .pure-u-xl-5-24,
  .pure-u-xl-5-5,
  .pure-u-xl-5-6,
  .pure-u-xl-5-8,
  .pure-u-xl-6-24,
  .pure-u-xl-7-12,
  .pure-u-xl-7-24,
  .pure-u-xl-7-8,
  .pure-u-xl-8-24,
  .pure-u-xl-9-24 {
    display: inline-block;
    letter-spacing: normal;
    word-spacing: normal;
    vertical-align: top;
    text-rendering: auto;
  }

  .pure-u-xl-1-24 {
    width: 4.1667%;
  }

  .pure-u-xl-1-12,
  .pure-u-xl-2-24 {
    width: 8.3333%;
  }

  .pure-u-xl-1-8,
  .pure-u-xl-3-24 {
    width: 12.5%;
  }

  .pure-u-xl-1-6,
  .pure-u-xl-4-24 {
    width: 16.6667%;
  }

  .pure-u-xl-1-5 {
    width: 20%;
  }

  .pure-u-xl-5-24 {
    width: 20.8333%;
  }

  .pure-u-xl-1-4,
  .pure-u-xl-6-24 {
    width: 25%;
  }

  .pure-u-xl-7-24 {
    width: 29.1667%;
  }

  .pure-u-xl-1-3,
  .pure-u-xl-8-24 {
    width: 33.3333%;
  }

  .pure-u-xl-3-8,
  .pure-u-xl-9-24 {
    width: 37.5%;
  }

  .pure-u-xl-2-5 {
    width: 40%;
  }

  .pure-u-xl-10-24,
  .pure-u-xl-5-12 {
    width: 41.6667%;
  }

  .pure-u-xl-11-24 {
    width: 45.8333%;
  }

  .pure-u-xl-1-2,
  .pure-u-xl-12-24 {
    width: 50%;
  }

  .pure-u-xl-13-24 {
    width: 54.1667%;
  }

  .pure-u-xl-14-24,
  .pure-u-xl-7-12 {
    width: 58.3333%;
  }

  .pure-u-xl-3-5 {
    width: 60%;
  }

  .pure-u-xl-15-24,
  .pure-u-xl-5-8 {
    width: 62.5%;
  }

  .pure-u-xl-16-24,
  .pure-u-xl-2-3 {
    width: 66.6667%;
  }

  .pure-u-xl-17-24 {
    width: 70.8333%;
  }

  .pure-u-xl-18-24,
  .pure-u-xl-3-4 {
    width: 75%;
  }

  .pure-u-xl-19-24 {
    width: 79.1667%;
  }

  .pure-u-xl-4-5 {
    width: 80%;
  }

  .pure-u-xl-20-24,
  .pure-u-xl-5-6 {
    width: 83.3333%;
  }

  .pure-u-xl-21-24,
  .pure-u-xl-7-8 {
    width: 87.5%;
  }

  .pure-u-xl-11-12,
  .pure-u-xl-22-24 {
    width: 91.6667%;
  }

  .pure-u-xl-23-24 {
    width: 95.8333%;
  }

  .pure-u-xl-1,
  .pure-u-xl-1-1,
  .pure-u-xl-24-24,
  .pure-u-xl-5-5 {
    width: 100%;
  }
}

/* CONTACT FORM 7 CSS MINIFIED */
.wpcf7 .screen-reader-response {
  position: absolute;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  width: 1px;
  margin: 0;
  padding: 0;
  border: 0;
}

.wpcf7 form .wpcf7-response-output {
  margin: 2em 0.5em 1em;
  padding: 0.2em 1em;
  border: 2px solid #00a0d2;
}

.wpcf7 form.init .wpcf7-response-output,
.wpcf7 form.resetting .wpcf7-response-output,
.wpcf7 form.submitting .wpcf7-response-output {
  display: none;
}

.wpcf7 form.sent .wpcf7-response-output {
  border-color: #46b450;
}

.wpcf7 form.aborted .wpcf7-response-output,
.wpcf7 form.failed .wpcf7-response-output {
  border-color: #dc3232;
}

.wpcf7 form.spam .wpcf7-response-output {
  border-color: #f56e28;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {
  border-color: #ffb900;
}

.wpcf7-form-control-wrap {
  position: relative;
}

.wpcf7-not-valid-tip {
  color: #dc3232;
  font-size: 1em;
  font-weight: 400;
  display: block;
}

.use-floating-validation-tip .wpcf7-not-valid-tip {
  position: relative;
  top: -2ex;
  left: 1em;
  z-index: 100;
  border: 1px solid #dc3232;
  background: #fff;
  padding: 0.2em 0.8em;
  width: 24em;
}

.wpcf7-list-item {
  display: inline-block;
  margin: 0 0 0 1em;
}

.wpcf7-list-item-label::after,
.wpcf7-list-item-label::before {
  content: " ";
}

.wpcf7 .ajax-loader {
  visibility: hidden;
  display: inline-block;
  background-color: #23282d;
  opacity: 0.75;
  width: 24px;
  height: 24px;
  border: none;
  border-radius: 100%;
  padding: 0;
  margin: 0 24px;
  position: relative;
}

.wpcf7 form.submitting .ajax-loader {
  visibility: visible;
}

.wpcf7 .ajax-loader::before {
  content: "";
  position: absolute;
  background-color: #fbfbfc;
  top: 4px;
  left: 4px;
  width: 6px;
  height: 6px;
  border: none;
  border-radius: 100%;
  transform-origin: 8px 8px;
  animation-name: spin;
  animation-duration: 1s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

@media (prefers-reduced-motion: reduce) {
  .wpcf7 .ajax-loader::before {
    animation-name: blink;
    animation-duration: 2s;
  }
}

@keyframes spin {
  from {
    transform: rotate(0);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes blink {
  from {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.wpcf7 input[type="file"] {
  cursor: pointer;
}

.wpcf7 input[type="file"]:disabled {
  cursor: default;
}

.wpcf7 .wpcf7-submit:disabled {
  cursor: not-allowed;
}

.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="url"] {
  direction: ltr;
}

/* END CONTACT FORM 7 CSS */
.no-margin.container-thinner,
.margin-no.container-thinner {
  margin: 0;
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
}

.no-padding.container-thinner,
.padding-no.container-thinner {
  padding: 0;
  padding-top: 0;
  padding-right: 0;
  padding-left: 0;
  padding-bottom: 0;
}

/* TEXT FRAMEWORK */
/* SPLIDEJS CSS */
@keyframes splide-loading {
  0% {
    transform: rotate(0);
  }

  to {
    transform: rotate(1turn);
  }
}

.splide__container {
  position: relative;
  box-sizing: border-box;
}

.splide__list {
  margin: 0 !important;
  padding: 0 !important;
  width: -webkit-max-content;
  width: max-content;
  will-change: transform;
}

.splide.is-active .splide__list {
  display: flex;
}

.splide__pagination {
  display: inline-flex;
  align-items: center;
  width: 95%;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
}

.splide__pagination li {
  list-style-type: none;
  display: inline-block;
  line-height: 1;
  margin: 0;
}

.splide {
  visibility: hidden;
}

.splide,
.splide__slide {
  position: relative;
  outline: none;
}

.splide__slide {
  box-sizing: border-box;
  list-style-type: none !important;
  margin: 0;
  flex-shrink: 0;
}

.splide__slide img {
  vertical-align: bottom;
}

.splide__slider {
  position: relative;
}

.splide__spinner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #999;
  border-left-color: transparent;
  animation: splide-loading 1s linear infinite;
}

.splide__track {
  position: relative;
  z-index: 0;
  overflow: hidden;
}

.splide--draggable > .splide__track > .splide__list > .splide__slide {
  -webkit-user-select: none;
  user-select: none;
}

.splide--fade > .splide__track > .splide__list {
  display: block;
}

.splide--fade > .splide__track > .splide__list > .splide__slide {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  opacity: 0;
}

.splide--fade > .splide__track > .splide__list > .splide__slide.is-active {
  position: relative;
  z-index: 1;
  opacity: 1;
}

.splide--rtl {
  direction: rtl;
}

.splide--ttb > .splide__track > .splide__list {
  display: block;
}

.splide--ttb > .splide__pagination {
  width: auto;
}

.splide__arrow {
  position: absolute;
  z-index: 1;
  top: 50%;
  transform: translateY(-50%);
  width: 2em;
  height: 2em;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  padding: 0;
  opacity: 0.7;
  background: var(--dark-grey);
}

.splide__arrow svg {
  width: 1.2em;
  height: 1.2em;
}

.splide__arrow:hover {
  cursor: pointer;
  opacity: 0.9;
}

.splide__arrow:focus {
  outline: none;
}

.splide__arrow--prev {
  left: 1em;
}

.splide__arrow--prev svg {
  transform: scaleX(-1);
}

.splide__arrow--next {
  right: 1em;
}

.splide__pagination {
  position: absolute;
  z-index: 1;
  bottom: 0.5em;
  left: 50%;
  transform: translateX(-50%);
  padding: 0;
}

.splide__pagination__page {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--dark-grey);
  border-radius: 50%;
  margin: 3px;
  padding: 0;
  transition: transform 0.2s linear;
  border: none;
  opacity: 0.7;
}

.splide__pagination__page.is-active {
  transform: scale(1.4);
  background: #fff;
}

.splide__pagination__page:hover {
  cursor: pointer;
  opacity: 0.9;
}

.splide__pagination__page:focus {
  outline: none;
}

.splide__progress__bar {
  width: 0;
  height: 3px;
  background: var(--dark-grey);
}

.splide--nav > .splide__track > .splide__list > .splide__slide {
  border: 3px solid transparent;
}

.splide--nav > .splide__track > .splide__list > .splide__slide.is-active {
  border-color: #000;
}

.splide--nav > .splide__track > .splide__list > .splide__slide:focus {
  outline: none;
}

.splide--rtl > .splide__arrows .splide__arrow--prev,
.splide--rtl > .splide__track > .splide__arrows .splide__arrow--prev {
  right: 1em;
  left: auto;
}

.splide--rtl > .splide__arrows .splide__arrow--prev svg,
.splide--rtl > .splide__track > .splide__arrows .splide__arrow--prev svg {
  transform: scaleX(1);
}

.splide--rtl > .splide__arrows .splide__arrow--next,
.splide--rtl > .splide__track > .splide__arrows .splide__arrow--next {
  left: 1em;
  right: auto;
}

.splide--rtl > .splide__arrows .splide__arrow--next svg,
.splide--rtl > .splide__track > .splide__arrows .splide__arrow--next svg {
  transform: scaleX(-1);
}

.splide--ttb > .splide__arrows .splide__arrow,
.splide--ttb > .splide__track > .splide__arrows .splide__arrow {
  left: 50%;
  transform: translate(-50%);
}

.splide--ttb > .splide__arrows .splide__arrow--prev,
.splide--ttb > .splide__track > .splide__arrows .splide__arrow--prev {
  top: 1em;
}

.splide--ttb > .splide__arrows .splide__arrow--prev svg,
.splide--ttb > .splide__track > .splide__arrows .splide__arrow--prev svg {
  transform: rotate(-90deg);
}

.splide--ttb > .splide__arrows .splide__arrow--next,
.splide--ttb > .splide__track > .splide__arrows .splide__arrow--next {
  top: auto;
  bottom: 1em;
}

.splide--ttb > .splide__arrows .splide__arrow--next svg,
.splide--ttb > .splide__track > .splide__arrows .splide__arrow--next svg {
  transform: rotate(90deg);
}

.splide--ttb > .splide__pagination {
  display: flex;
  flex-direction: column;
  bottom: 50%;
  left: auto;
  right: -1em;
  transform: translateY(50%);
}

/* END SPLIDEJS CSS */
.text-left {
  text-align: left;
}

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

.text-right {
  text-align: right;
}

.text-content {
  font-weight: 300;
}

.uppercase {
  text-transform: uppercase;
  letter-spacing: 0.025em;
}

.text-xs {
  font-size: 0.75rem;
  line-height: 1.125rem;
}

.text-s {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.text-n {
  font-size: 1rem;
  line-height: 1.5rem;
}

.text-m {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.text-l {
  font-size: 1.25rem;
  line-height: 1.875rem;
}

.text-xl {
  font-size: 1.5rem;
  line-height: 2.125rem;
}

.text-xxl {
  font-size: 1.75rem;
  line-height: 2.35rem;
}

.text-xxxl {
  font-size: 2rem;
  line-height: 3.125rem;
}

.text-xxxxl {
  font-size: 2.5rem;
  line-height: 3rem;
}

.text-ml {
  font-size: 3rem;
  line-height: 3.5rem;
}

.text-ul {
  font-size: 3.5rem;
  line-height: 4rem;
}

.text-jumbo {
  font-size: 4.5rem;
  line-height: 4.5rem;
}

.khand {
  font-family: "Khand", sans-serif;
}

.roboto {
  font-family: "Roboto Condensed", "Open Sans", "Helvetica Neue", "Arial", sans-serif;
}

/* COLOR FRAMEWORK */
.black-bg,
.dark-bg {
  background: var(--black);
  color: var(--white);
}

.white-bg,
.light-bg {
  background: var(--white);
  color: var(--text);
}

.lightgrey-bg,
.semilight-bg {
  background: var(--light-grey);
  color: var(--text);
}

.grey-bg,
.medium-bg {
  background: var(--dark-grey);
  color: var(--white);
}

.white-clr,
.light-clr {
  color: var(--white);
}

/* BEGIN CUSTOM CSS */

/* latin */
@font-face {
  font-family: "Khand";
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/khand/v9/TwMA-IINQlQQ0bpSUnQ.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074,
    U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* latin */
@font-face {
  font-family: "Khand";
  font-style: normal;
  font-weight: 500;
  src: url(https://fonts.gstatic.com/s/khand/v9/TwMN-IINQlQQ0bKhcWEwbQc.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074,
    U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* latin */
@font-face {
  font-family: "Khand";
  font-style: normal;
  font-weight: 600;
  src: url(https://fonts.gstatic.com/s/khand/v9/TwMN-IINQlQQ0bKNdmEwbQc.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074,
    U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* latin */
@font-face {
  font-family: "Khand";
  font-style: normal;
  font-weight: 700;
  src: url(https://fonts.gstatic.com/s/khand/v9/TwMN-IINQlQQ0bLpd2EwbQc.woff2) format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074,
    U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* latin */
@font-face {
  font-family: "Roboto Condensed";
  font-style: italic;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/robotocondensed/v19/ieVj2ZhZI2eCN5jzbjEETS9weq8-19eLDwM9.woff2)
    format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074,
    U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* latin */
@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/robotocondensed/v19/ieVl2ZhZI2eCN5jzbjEETS9weq8-19K7DQ.woff2)
    format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074,
    U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

*,
:before,
:after {
  box-sizing: border-box;
}

body {
  font-family: "Roboto Condensed", "Open Sans", "Helvetica Neue", "Arial", sans-serif;
  font-size: 1rem;
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  -o-font-smoothing: antialiased;
}

body.no-scroll {
  overflow: hidden;
}

h1,
h2,
h3,
h4 {
  font-weight: 500;
  font-family: "Khand", "Helvetica Neue", "Arial", sans-serif;
}

.animatable a,
.animatable .btn,
.animatable .btn-shy:after {
  transition: var(--btn-transition);
}

a {
  color: var(--dark-grey);
}

.btn,
.button {
  color: var(--white);
  padding: 0.5rem 1rem;
  text-decoration: none;
  display: inline-block;
  background: var(--text);
}

.btn:hover {
  background: var(--dark-grey);
  text-decoration: none;
}

.btn-primary {
  padding: 0.5rem 1.5rem;
  background: var(--orange);
}

.btn-primary:hover {
  background: var(--orange-accent);
}

.btn-shy {
  position: relative;
  background: none;
  padding-left: 0;
  padding-right: 2rem;
  color: var(--text);
  font-weight: 500;
}

.btn-shy:hover {
  background: none;
  color: var(--dark-grey);
}

.btn-shy:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0.5rem;
  width: 1rem;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-image: var(--svg-arrow-right);
}

.btn-shy:hover:after {
  background-image: var(--svg-arrow-right-hover);
}

.grey-bg .btn-shy,
.grey-bg .btn-shy:hover {
  color: var(--white);
}

.grey-bg .btn-shy:after {
  background-image: var(--svg-arrow-right-white);
}

.grey-bg .btn-shy:hover:after {
  background-image: var(--svg-arrow-right-hover-white);
}

/* HEADER AND NEWSBAR STYLING */
#newsbar a {
  color: var(--white);
  text-decoration: none;
}

#newsbar a:hover {
  color: var(--white);
  text-decoration: underline;
}

#header {
  border-top: 1px solid var(--dark-grey);
  padding-top: 1rem;
  position: sticky;
  top: 0;
  z-index: 11;
}

#header .pure-g > div {
  padding-bottom: 0;
}

#header .header-logo {
  padding-bottom: 0;
}

#header .header-logo.jubileum a {
    width: 150px;
}

#header .header-logo a {
  position: relative;
  display: block;
  width: 85px;
  height: 100%;
}

#header .header-logo img {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  height: 113px;
  object-fit: contain;
}

#menu-hoofdmenu {
  display: flex;
  padding-left: 0;
  margin: 0;
  list-style: none;
  align-items: center;
}

#menu-hoofdmenu li {
  margin: 0;
  display: inline-block;
}

#menu-hoofdmenu li.menu-item-has-children {
  position: relative;
}

#menu-hoofdmenu li.menu-item-has-children > a:after {
  content: "";
  position: absolute;
  top: 1rem;
  bottom: 1rem;
  right: 0;
  width: 1rem;
  background-size: 12px 12px;
  background-position: center right;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg aria-hidden='true' focusable='false' data-prefix='far' 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-2x'%3E%3Cpath fill='%23FFF' d='M441.9 167.3l-19.8-19.8c-4.7-4.7-12.3-4.7-17 0L224 328.2 42.9 147.5c-4.7-4.7-12.3-4.7-17 0L6.1 167.3c-4.7 4.7-4.7 12.3 0 17l209.4 209.4c4.7 4.7 12.3 4.7 17 0l209.4-209.4c4.7-4.7 4.7-12.3 0-17z' class=''%3E%3C/path%3E%3C/svg%3E");
}

#menu-hoofdmenu .sub-menu li.menu-item-has-children > a:after {
  background-size: 12px 12px;
  right: 0.5rem;
  background-image: url("data:image/svg+xml,%3Csvg aria-hidden='true' focusable='false' data-prefix='far' data-icon='chevron-right' role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 512' class='svg-inline--fa fa-chevron-right fa-w-8 fa-2x'%3E%3Cpath fill='%23FFF' d='M24.707 38.101L4.908 57.899c-4.686 4.686-4.686 12.284 0 16.971L185.607 256 4.908 437.13c-4.686 4.686-4.686 12.284 0 16.971L24.707 473.9c4.686 4.686 12.284 4.686 16.971 0l209.414-209.414c4.686-4.686 4.686-12.284 0-16.971L41.678 38.101c-4.687-4.687-12.285-4.687-16.971 0z' class=''%3E%3C/path%3E%3C/svg%3E");
}

#menu-hoofdmenu .sub-menu li {
  display: block;
}

#menu-hoofdmenu li > .sub-menu {
  position: absolute;
  visibility: hidden;
  opacity: 0;
  top: 100%;
  left: -5px;
  min-width: 200px;
  text-align: left;
  padding: 0rem;
  transform: scaleY(0);
  transform-origin: top;
  background: var(--dark-grey);
  border-left: 5px solid var(--light-grey);
  transition: all 200ms ease-in-out;
}

#menu-hoofdmenu li > .sub-menu .sub-menu {
  top: 0;
  left: calc(200px - 5px);
}

@media screen and (min-width: 768px) {
  #menu-hoofdmenu li:hover > .sub-menu {
    transform: scaleY(1);
    opacity: 1;
    visibility: visible;
    z-index: 2;
  }
}

#menu-hoofdmenu li a,
#menu-hoofdmenu li a:visited {
  padding: 1rem 1rem;
  display: block;
  color: var(--white);
  text-decoration: none;
}

#menu-hoofdmenu li a:hover,
#menu-hoofdmenu li.current-menu-item > a {
  color: var(--orange);
  text-decoration: none;
}

#search-form .screen-reader-text {
  display: none;
}

#header .header-search-portal {
  flex: 1;
}

#search-form {
  margin-left: 0;
  position: relative;
}

#search-form .search-field {
  height: 40px;
  box-sizing: border-box;
  border: none;
  width: 320px;
  padding-top: 0px;
  padding-bottom: 0px;
  padding-left: 0.5rem;
  background: transparent;
  border: 3px solid var(--dark-grey);
}

#search-form .search-submit {
  position: absolute;
  height: 40px;
  width: 40px;
  right: 0px;
  top: 0px;
  font-size: 0px;
  z-index: 2;
  outline: none;
  border: none;
  background: transparent;
  background-size: 50%;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("data:image/svg+xml,%3Csvg aria-hidden='true' focusable='false' data-prefix='far' data-icon='search' role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' class='svg-inline--fa fa-search fa-w-16 fa-2x'%3E%3Cpath fill='%23FFF' d='M508.5 468.9L387.1 347.5c-2.3-2.3-5.3-3.5-8.5-3.5h-13.2c31.5-36.5 50.6-84 50.6-136C416 93.1 322.9 0 208 0S0 93.1 0 208s93.1 208 208 208c52 0 99.5-19.1 136-50.6v13.2c0 3.2 1.3 6.2 3.5 8.5l121.4 121.4c4.7 4.7 12.3 4.7 17 0l22.6-22.6c4.7-4.7 4.7-12.3 0-17zM208 368c-88.4 0-160-71.6-160-160S119.6 48 208 48s160 71.6 160 160-71.6 160-160 160z' class=''%3E%3C/path%3E%3C/svg%3E");
}

/* FOOTER STYLING */
#footer a,
#footer a:visited {
  color: inherit;
  text-decoration: inherit;
}

#footer a:hover {
  text-decoration: underline;
}

#footer ul {
  list-style: none;
  padding-left: 0;
  margin-top: 0;
}

#footer ul li a {
  display: block;
}

#footer .footer-block-title {
  margin-top: 0;
}

#footer-col-3,
#footer-col-4,
#footer-col-5 {
  padding-top: 50px;
}

#footer-col-5 .widget_custom_html .textwidget {
  display: grid;
  grid-template-rows: auto auto;
  grid-template-areas: "primary-os" "secondary-os";
}

#footer .app-button {
  border: 5px solid var(--orange);
  background: transparent;
  margin-top: 1rem;
}

#footer .app-button.btn-not-this-os {
  border: none;
  color: var(--orange);
  font-size: 0.8em;
  opacity: 0.8;
  padding: 0px;
}

#footer .app-button.btn-not-this-os {
  grid-area: secondary-os;
}

#footer .app-button.btn-this-os {
  grid-area: primary-os;
}

.socials li {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  margin-right: 1rem;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  font-size: 0px;
}

.socials li a {
  width: 2rem;
  height: 2rem;
  display: block;
}

.socials .facebook {
  background-image: url("data:image/svg+xml,%3Csvg aria-hidden='true' focusable='false' data-prefix='fab' data-icon='facebook-square' role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512' class='svg-inline--fa fa-facebook-square fa-w-14 fa-2x'%3E%3Cpath fill='%23FFF' d='M400 32H48A48 48 0 0 0 0 80v352a48 48 0 0 0 48 48h137.25V327.69h-63V256h63v-54.64c0-62.15 37-96.48 93.67-96.48 27.14 0 55.52 4.84 55.52 4.84v61h-31.27c-30.81 0-40.42 19.12-40.42 38.73V256h68.78l-11 71.69h-57.78V480H400a48 48 0 0 0 48-48V80a48 48 0 0 0-48-48z' class=''%3E%3C/path%3E%3C/svg%3E");
}

.socials .twitter {
  background-image: url("data:image/svg+xml,%3Csvg aria-hidden='true' focusable='false' data-prefix='fab' data-icon='twitter-square' role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512' class='svg-inline--fa fa-twitter-square fa-w-14 fa-2x'%3E%3Cpath fill='%23FFF' d='M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-48.9 158.8c.2 2.8.2 5.7.2 8.5 0 86.7-66 186.6-186.6 186.6-37.2 0-71.7-10.8-100.7-29.4 5.3.6 10.4.8 15.8.8 30.7 0 58.9-10.4 81.4-28-28.8-.6-53-19.5-61.3-45.5 10.1 1.5 19.2 1.5 29.6-1.2-30-6.1-52.5-32.5-52.5-64.4v-.8c8.7 4.9 18.9 7.9 29.6 8.3a65.447 65.447 0 0 1-29.2-54.6c0-12.2 3.2-23.4 8.9-33.1 32.3 39.8 80.8 65.8 135.2 68.6-9.3-44.5 24-80.6 64-80.6 18.9 0 35.9 7.9 47.9 20.7 14.8-2.8 29-8.3 41.6-15.8-4.9 15.2-15.2 28-28.8 36.1 13.2-1.4 26-5.1 37.8-10.2-8.9 13.1-20.1 24.7-32.9 34z' class=''%3E%3C/path%3E%3C/svg%3E");
}

.socials .linkedin {
  background-image: url("data:image/svg+xml,%3Csvg aria-hidden='true' focusable='false' data-prefix='fab' data-icon='linkedin' role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512' class='svg-inline--fa fa-linkedin fa-w-14 fa-2x'%3E%3Cpath fill='%23FFF' d='M416 32H31.9C14.3 32 0 46.5 0 64.3v383.4C0 465.5 14.3 480 31.9 480H416c17.6 0 32-14.5 32-32.3V64.3c0-17.8-14.4-32.3-32-32.3zM135.4 416H69V202.2h66.5V416zm-33.2-243c-21.3 0-38.5-17.3-38.5-38.5S80.9 96 102.2 96c21.2 0 38.5 17.3 38.5 38.5 0 21.3-17.2 38.5-38.5 38.5zm282.1 243h-66.4V312c0-24.8-.5-56.7-34.5-56.7-34.6 0-39.9 27-39.9 54.9V416h-66.4V202.2h63.7v29.2h.9c8.9-16.8 30.6-34.5 62.9-34.5 67.2 0 79.7 44.3 79.7 101.9V416z' class=''%3E%3C/path%3E%3C/svg%3E");
}

.socials .instagram {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3C!--! Font Awesome Pro 6.4.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. --%3E%3Cpath fill='%23fff' d='M224,202.66A53.34,53.34,0,1,0,277.36,256,53.38,53.38,0,0,0,224,202.66Zm124.71-41a54,54,0,0,0-30.41-30.41c-21-8.29-71-6.43-94.3-6.43s-73.25-1.93-94.31,6.43a54,54,0,0,0-30.41,30.41c-8.28,21-6.43,71.05-6.43,94.33S91,329.26,99.32,350.33a54,54,0,0,0,30.41,30.41c21,8.29,71,6.43,94.31,6.43s73.24,1.93,94.3-6.43a54,54,0,0,0,30.41-30.41c8.35-21,6.43-71.05,6.43-94.33S357.1,182.74,348.75,161.67ZM224,338a82,82,0,1,1,82-82A81.9,81.9,0,0,1,224,338Zm85.38-148.3a19.14,19.14,0,1,1,19.13-19.14A19.1,19.1,0,0,1,309.42,189.74ZM400,32H48A48,48,0,0,0,0,80V432a48,48,0,0,0,48,48H400a48,48,0,0,0,48-48V80A48,48,0,0,0,400,32ZM382.88,322c-1.29,25.63-7.14,48.34-25.85,67s-41.4,24.63-67,25.85c-26.41,1.49-105.59,1.49-132,0-25.63-1.29-48.26-7.15-67-25.85s-24.63-41.42-25.85-67c-1.49-26.42-1.49-105.61,0-132,1.29-25.63,7.07-48.34,25.85-67s41.47-24.56,67-25.78c26.41-1.49,105.59-1.49,132,0,25.63,1.29,48.33,7.15,67,25.85s24.63,41.42,25.85,67.05C384.37,216.44,384.37,295.56,382.88,322Z'/%3E%3C/svg%3E");
}

/* HOMEPAGE TOP BANNER */
#home-top-banner {
  position: relative;
}

#home-banner-img {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

#home-banner-img .home-banner-picture {
  display: block;
  width: 100%;
  height: 100%;
}

#home-banner-img .home-banner-picture:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--semi-transparent);
  z-index: 1;
}

#home-banner-img img {
  max-width: unset;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

#home-top-banner .leftside-group {
  width: 80%;
  max-width: 450px;
}

#home-top-banner .homepage-title {
  text-transform: uppercase;
  margin-bottom: 0;
  margin-top: 4rem;
}

#home-right-group .high-page-relative {
  position: relative;
}

#home-right-group .high-page-picture {
  height: 0px;
  display: block;
  width: 100%;
  padding-bottom: 56.25%;
  overflow: hidden;
  position: relative;
}

#home-right-group img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 20% 100%, 20% 85%, 0% 85%);
}

#home-right-group .high-page-text-block {
  position: absolute;
  width: 80%;
  right: 0;
  bottom: 0;
  border: 5px solid var(--black);
  background: var(--semi-transparent);
}

#home-right-group .high-page-title {
  margin-top: 0;
  margin-bottom: 0.5em;
}

#home-right-group .high-page-text {
  margin-bottom: 0;
}

/* HOMEPAGE SECOND SECTION STYLING */
#second-home-section .text-block-titel {
  margin-top: 0;
}

#second-home-section .text-block-text {
  margin-bottom: 0;
}

.title-vertical-block {
  position: relative;
  height: 100%;
}

#second-home-section .picture-wrapper {
  position: absolute;
  outline: 5px solid var(--black);
  outline-offset: -5px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
}

#second-home-section .picture-wrapper img {
  width: 100%;
  height: 100%;
  max-width: unset;
  object-fit: cover;
  position: absolute;
  right: 3rem;
  bottom: 3rem;
  z-index: -1;
  box-shadow: 10px 10px 25px var(--light-grey);
}

.vertical-text {
  position: absolute;
  z-index: 3;
  transform-origin: top left;
  transform: rotate(-90deg);
  margin: 0;
  padding-left: 1rem;
  max-width: 60%;
}

#noab-academy {
  position: relative;
}

#academy-picture {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 50%;
}

#academy-picture picture:before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0px;
  bottom: 0;
  width: 200px;
  clip-path: polygon(100px 0, 200px 0, 100px 100%, 0px 100%);
  background: var(--light-grey);
  opacity: 0.5;
}

#academy-picture picture:after {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: -100px;
  width: 200px;
  bottom: 0;
  background: var(--light-grey);
  clip-path: polygon(100px 0, 200px 0, 100px 100%, 0px 100%);
}

#academy-picture img {
  width: 100%;
  height: 100%;
  max-width: unset;
  object-fit: cover;
}

#academy-box .academy-name {
  border-bottom: 2px solid var(--dark-grey);
  width: 100%;
  line-height: 1;
}

#academy-box .single-academy .ano-link {
  display: block;
  width: 100%;
  height: 100%;
}

#noab-connect {
  padding-bottom: 18rem;
}

#noab-connect + #shifted-blogs {
  margin-top: -16rem;
}

#shifted-blogs .shifted-blogs-inner {
  flex-wrap: wrap;
}

#shifted-blogs .blog-item {
  flex: 1 1 50%;
}

#shifted-blogs .blitem-1 {
  flex: 1 1 100%;
}

#shifted-blogs .blitem-1 .shifted-image {
  height: 430px;
  padding-top: 0;
}

#shifted-blogs .blitem-1 .shifted-image img {
  height: 100%;
}

#shifted-blogs .shifted-image img {
  object-fit: cover;
}

#shifted-blogs .shifted-picture img {
  width: 100%;
  height: 310px;
  object-fit: cover;
  object-position: center;
}

#shifted-blogs .shifted-title {
  border-bottom: 5px solid var(--black);
  display: inline-block;
  padding-bottom: 0.25rem;
}

#shifted-blogs .blog-item:not(.blitem-1) .shifted-blog-inner {
  padding-left: 3rem;
}

#shifted-blogs .blitem-2 .shifted-blog-inner {
  padding-top: 4rem;
}

#shifted-blogs .blog-item:not(.blitem-2):not(.blitem-1) .shifted-blog-inner {
  padding-bottom: 4rem;
}

#background-banner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  z-index: -2;
  opacity: 0.09;
}

#background-banner .background-picture {
  display: block;
  height: 100%;
}

#background-banner .background-image {
  object-fit: cover;
  object-position: center;
  max-width: unset;
  width: 100%;
  height: 100%;
}

.flex-el-image img {
  width: 100%;
  height: auto;
}

.flex-el-image-subtext {
  position: relative;
  max-width: 400px;
}

.flex-el-image-subtext:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
  outline: 5px solid var(--orange);
  outline-offset: 2.5rem;
}

.left-fix-align {
  position: relative;
  min-height: 300px;
  height: 510px;
}

.left-fix-align:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 50vw;
  outline: 5px solid var(--dark-grey);
  outline-offset: -4rem;
}

.left-fix-align .flex-el-picture {
  position: absolute;
  top: 0;
  right: 0;
  width: 50vw;
  bottom: 0;
  display: block;
}

.left-fix-align img {
  max-width: unset;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.fold-show-allways {
  display: flex;
  overflow: hidden;
  justify-content: space-between;
}

.fold-show-allways .fold-left-side {
  flex: 1 1 100%;
}

.fold-show-allways .fold-right-side {
  flex: 1 1 3rem;
}

.fold-show-allways .fold-right-side .toggle-btn {
  all: unset;
  width: 100%;
  height: 100%;
  display: block;
  cursor: pointer;
  background-size: 50%;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("data:image/svg+xml,%3Csvg aria-hidden='true' focusable='false' data-prefix='far' data-icon='plus' role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 384 512' class='svg-inline--fa fa-plus fa-w-12 fa-2x'%3E%3Cpath fill='%23EF811B' d='M368 224H224V80c0-8.84-7.16-16-16-16h-32c-8.84 0-16 7.16-16 16v144H16c-8.84 0-16 7.16-16 16v32c0 8.84 7.16 16 16 16h144v144c0 8.84 7.16 16 16 16h32c8.84 0 16-7.16 16-16V288h144c8.84 0 16-7.16 16-16v-32c0-8.84-7.16-16-16-16z' class=''%3E%3C/path%3E%3C/svg%3E");
}

.fold-show-allways .fold-right-side .toggle-btn.active {
  transform: rotate(135deg);
}

.foldables .single-fold {
  border-bottom: 2px solid var(--dark-grey);
}

.foldables .single-fold .fold-toggle-show {
  overflow: hidden;
}

.animatable .fold-show-allways .fold-right-side .toggle-btn,
.animatable .foldables .single-fold .fold-toggle-show {
  transition: height 300ms ease-in-out, transform ease-in-out 300ms;
}

.foldables .single-fold .fold-toggle-show:not(.active) {
  display: none;
}

.blog-vertical-title {
  padding-left: 0;
  max-width: unset;
}

.quotes-repeater .splide__arrow--next {
  right: -1rem;
}

.quotes-repeater .splide__arrow--prev {
  left: -1rem;
}

.quotes-repeater .splide__arrow--prev svg,
.quotes-repeater .splide__arrow--next svg {
  fill: var(--orange);
}

.quotes-repeater .splide__arrow--prev,
.quotes-repeater .splide__arrow--next {
  background: none;
  opacity: 1;
}

.blog-single-img {
  width: 100%;
  height: auto;
}

.latest-blogs .entry-php {
  margin-bottom: 2rem;
}

.entry-php .entry-title {
  min-height: 3.75rem;
}

.entry-php .post-picture {
  position: relative;
  height: 0px;
  padding-bottom: 80%;
}

.entry-php .post-picture img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  max-width: unset;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

body:not(.page-id-27) .cms-row:not(.template-quotes_repeater) + .template-gecentreerde_tekst_met_achtergrond {
  z-index: -1;
}

body:not(.page-id-27) .cms-row + .template-gecentreerde_tekst_met_achtergrond .flexible-row {
  padding-top: calc(var(--padding-base) * 7);
}

body:not(.page-id-27):not(.page-id-2986)
  .cms-row:not(.template-quotes_repeater)
  + .template-gecentreerde_tekst_met_achtergrond
  .flexible-row {
  margin-top: calc(var(--padding-base) * -4);
}

/* CONTACT PAGE STYLING */
#contactpage-form {
  display: block;
  padding: calc(var(--padding-base) * 4);
  background: var(--white);
  color: var(--text);
  text-align: left;
  margin-top: calc(var(--padding-base) * -3);
  box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.1);
}

#contactpage-form label {
  display: block;
  line-height: 2rem;
}

#contactpage-form input:not([type="submit"]),
#contactpage-form textarea {
  width: 100%;
  min-height: 60px;
  border: none;
  background: rgba(0, 0, 0, 0.06);
  margin-bottom: 1rem;
}

#contactpage-form .wpcf7-form-control-wrap {
  display: block;
}

.btn[type="submit"] {
  border: none;
}

#contactpage-form .btn-primary {
  padding: 1rem 2rem;
}

#breadcrumbs {
  margin-top: 2rem;
}

/* OFFICE SEARCH ELEMENT */
#search-office {
  max-width: 450px;
  margin-bottom: 10px;
}

#search-office input {
  flex: 1 1 100%;
  height: 3rem;
  padding: 0.5rem 1rem;
  background: rgba(0, 0, 0, 0.1);
  color: var(--text);
  border: none;
  outline: none;
}

#search-office-button {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  text-align: center;
  border: none;
  outline: none;
  height: 3rem;
  display: block;
}

#search-office-advanced {
    color: var(--text);
    float: right;
}

iframe[height="1000"] {
  max-height: 400px;
}

@media screen and (min-width: 48em) {
  .pure-u-md-1-2 iframe[height="1000"] {
    max-height: 250px;
  }
}

.article-inner .youtube {
  padding-top: 80%;
}

.article-inner .youtube img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 1370px) {
  #header {
    padding-bottom: 1rem;
  }

  #main-header-menu {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}

@media screen and (max-width: 1240px) {
  #home-top-banner .homepage-title {
    font-size: 4rem;
    line-height: 4rem;
    margin-top: 2.5rem;
  }

  #home-top-banner .leftside-group {
    width: 100%;
  }

  .title-vertical-block .vertical-text {
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
    transform: none;
    max-width: unset;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    display: flex;
    text-align: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.6);
  }

  #academy-box .academy-name {
    padding-top: 0;
    padding-bottom: 0;
    border-bottom: 0;
  }

  #academy-box .single-academy {
    border-bottom: 2px solid var(--dark-grey);
  }
}

@media screen and (max-width: 1024px) {
  .text-xxxl {
    font-size: 2rem;
    line-height: 2.125rem;
  }

  .text-xxxxl {
    font-size: 2.125rem;
    line-height: 2.5rem;
  }

  .text-ml {
    font-size: 2.25rem;
    line-height: 2.75rem;
  }

  .text-ul {
    font-size: 2.5rem;
    line-height: 3.25rem;
  }

  .text-jumbo {
    font-size: 2.7rem;
    line-height: 3.5rem;
  }

  #academy-picture {
    width: 30%;
  }

  img {
    object-position: left;
  }
}

@media screen and (max-width: 800px) {
  #header .pure-g {
    display: grid;
    grid-template-columns: 101px 1fr;
    grid-template-rows: 1fr 1fr;
    grid-template-areas:
      "logo main-nav"
      "logo search-login";
  }

  #header .header-logo {
    grid-area: logo;
  }

  #header .header-menu {
    grid-area: main-nav;
  }

  #header .header-search-portal {
    grid-area: search-login;
  }

  #menu-hoofdmenu li a {
    padding-left: 0px;
    padding-right: 0px;
  }

  #menu-hoofdmenu {
    justify-content: space-between;
  }

  #footer-col-3,
  #footer-col-4,
  #footer-col-5 {
    width: 33.3333%;
  }

  #home-right-group .high-page-picture {
    padding-bottom: 46.25%;
  }
}

@media screen and (max-width: 767px) {
  #header {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  #mob-menu-toggle {
    all: unset;
    cursor: pointer;
    width: 3rem;
    height: 3rem;
    background-size: 50%;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url("data:image/svg+xml,%3Csvg aria-hidden='true' focusable='false' data-prefix='far' data-icon='bars' role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512' class='svg-inline--fa fa-bars fa-w-14 fa-2x'%3E%3Cpath fill='%23ef811b' d='M436 124H12c-6.627 0-12-5.373-12-12V80c0-6.627 5.373-12 12-12h424c6.627 0 12 5.373 12 12v32c0 6.627-5.373 12-12 12zm0 160H12c-6.627 0-12-5.373-12-12v-32c0-6.627 5.373-12 12-12h424c6.627 0 12 5.373 12 12v32c0 6.627-5.373 12-12 12zm0 160H12c-6.627 0-12-5.373-12-12v-32c0-6.627 5.373-12 12-12h424c6.627 0 12 5.373 12 12v32c0 6.627-5.373 12-12 12z' class=''%3E%3C/path%3E%3C/svg%3E");
  }

  #mob-menu-toggle.active {
    background-image: url("data:image/svg+xml,%3Csvg aria-hidden='true' focusable='false' data-prefix='fal' data-icon='times' role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512' class='svg-inline--fa fa-times fa-w-10 fa-2x'%3E%3Cpath fill='%23ef811b' d='M193.94 256L296.5 153.44l21.15-21.15c3.12-3.12 3.12-8.19 0-11.31l-22.63-22.63c-3.12-3.12-8.19-3.12-11.31 0L160 222.06 36.29 98.34c-3.12-3.12-8.19-3.12-11.31 0L2.34 120.97c-3.12 3.12-3.12 8.19 0 11.31L126.06 256 2.34 379.71c-3.12 3.12-3.12 8.19 0 11.31l22.63 22.63c3.12 3.12 8.19 3.12 11.31 0L160 289.94 262.56 392.5l21.15 21.15c3.12 3.12 8.19 3.12 11.31 0l22.63-22.63c3.12-3.12 3.12-8.19 0-11.31L193.94 256z' class=''%3E%3C/path%3E%3C/svg%3E");
  }

  #main-header-menu {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    top: var(--mob-header-height);
    left: 0;
    right: 0;
    bottom: 0;
    transform: translateX(100%);
    text-align: left;
    background: var(--dark-grey);
    z-index: 3;
    padding-top: 4rem;
    padding-left: calc(5% + 0.5rem);
    padding-right: calc(5% + 0.5rem);
    overflow-y: auto;
  }

  .animatable #main-header-menu {
    transition: transform 350ms ease-in-out, opacity 350ms ease-in-out, visibility 350ms ease-in-out;
  }

  #header .header-logo img {
    z-index: 4;
    height: auto;
    object-position: top;
  }

  #main-header-menu.active {
    visibility: visible;
    opacity: 1;
    transform: translateX(0%);
  }

  #menu-hoofdmenu,
  #menu-hoofdmenu li,
  #menu-hoofdmenu li a {
    display: block;
  }

  #menu-hoofdmenu li a {
    font-size: 1.2rem;
  }

  #main-header-menu .portal-btn .btn {
    display: block;
  }

  #main-header-menu .portal-btn {
    display: block;
    text-align: center;
    margin-top: 1rem;
  }

  #header .pure-g {
    grid-template-columns: calc(var(--mob-logo-width) + 1rem) auto calc(48px + 1rem);
    grid-template-rows: 1fr;
    grid-column-gap: 0;
    grid-template-areas: "logo search-login main-nav";
    justify-content: unset;
  }

  #header .header-logo a {
    width: var(--mob-logo-width);
  }

  #search-form {
    margin-right: 0;
    display: block;
    width: 100%;
  }

  #search-form .search-form label {
    display: block;
    width: 100%;
    height: 100%;
  }

  #search-form .search-field {
    width: 100%;
  }

  #third-section {
    overflow: hidden;
  }

  #academy-picture {
    display: none;
  }

  #header .header-menu {
    text-align: right;
    display: flex;
    align-items: center;
  }

  #home-top-banner .homepage-title {
    font-size: 3rem;
    line-height: 3rem;
  }

  #home-top-banner {
    padding-bottom: 3rem;
  }

  #home-right-group .high-page-picture {
    padding-bottom: 61.25%;
    margin-bottom: -20%;
  }

  #home-right-group .high-page-text-block {
    position: relative;
    width: 100%;
  }

  #second-section .title-vertical-block {
    min-height: 300px;
  }

  #third-section .noab-academys {
    margin-top: 2rem;
  }

  #shifted-blogs .blog-item {
    flex: 1 1 100%;
    margin-bottom: 3rem;
  }

  #shifted-blogs .shifted-picture img {
    height: auto;
  }

  #shifted-blogs .shifted-blog .shifted-image.youtube {
    height: 300px;
  }

  #shifted-blogs .blog-item:not(.blitem-1) .shifted-blog-inner {
    padding-left: 0;
  }

  #shifted-blogs .blitem-2 .shifted-blog-inner {
    padding-top: 0;
  }

  #footer-col-1 {
    width: calc(var(--mob-logo-width) + 1rem);
  }

  #footer-col-2 {
    width: calc(100% - calc(var(--mob-logo-width) + 1rem));
  }

  #footer-col-3,
  #footer-col-4 {
    width: 50%;
  }

  #footer-col-5 {
    width: 100%;
  }

  .flex-el-image-subtext:after {
    outline-offset: 1rem;
    top: -2rem;
  }

  .left-fix-align {
    height: auto;
    min-height: unset;
  }

  .left-fix-align .flex-el-picture {
    position: relative;
    width: 100%;
  }

  .left-fix-align img {
    display: block;
  }

  .left-fix-align:after {
    top: 1rem;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    outline-offset: -0.5rem;
    width: auto;
  }

  .quotes-repeater .quote-item-inner {
    padding-left: 0;
    padding-right: 0;
  }

  .entry-php .entry-title {
    min-height: auto;
  }

  .flexible-row .vertical-text {
    position: unset;
  }

  .flexible-row .title-vertical-block .vertical-text {
    padding: 0;
  }

  body:not(.page-id-27) .cms-row + .template-gecentreerde_tekst_met_achtergrond .flexible-row {
    margin-top: 0;
  }

  .quote-item.splide__slide {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  #contactpage-form {
    margin-top: calc(var(--padding-base) * 3);
    padding: calc(var(--padding-base) * 2);
  }

  #menu-hoofdmenu li.menu-item-has-children {
    padding-right: 2rem;
    background-position: center;
  }

  #menu-hoofdmenu li.menu-item-has-children > a:after {
    content: none;
  }

  #menu-hoofdmenu > li.menu-item-has-children:after {
    content: "";
    position: absolute;
    top: 1rem;
    height: 1rem;
    right: 0;
    width: 1rem;
    background-size: 12px 12px;
    background-position: center right;
    background-repeat: no-repeat;
    background-image: url("data:image/svg+xml,%3Csvg aria-hidden='true' focusable='false' data-prefix='far' 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-2x'%3E%3Cpath fill='%23FFF' d='M441.9 167.3l-19.8-19.8c-4.7-4.7-12.3-4.7-17 0L224 328.2 42.9 147.5c-4.7-4.7-12.3-4.7-17 0L6.1 167.3c-4.7 4.7-4.7 12.3 0 17l209.4 209.4c4.7 4.7 12.3 4.7 17 0l209.4-209.4c4.7-4.7 4.7-12.3 0-17z' class=''%3E%3C/path%3E%3C/svg%3E");
  }

  #menu-hoofdmenu li > .sub-menu {
    position: unset;
    min-width: unset;
    max-height: 0px;
    opacity: 0;
    visibility: hidden;
    transform: scaleY(0);
    transition-timing-function: linear;
    border-left: 0px;
    padding-left: 1rem;
  }

  #menu-hoofdmenu li > .sub-menu.active {
    opacity: 1;
    visibility: visible;
    transform: scaleY(1);
    max-height: 500px;
  }

  #menu-hoofdmenu li > .sub-menu.active .sub-menu {
    opacity: 1;
    max-height: 500px;
    visibility: visible;
    transform: scaleY(1);
  }
}

.text-content > *:first-child:not(h1) {
  margin-top: 0;
}

/* Modellen template */

.model-wrapper {
  padding: 1.5em;
  border: 1px solid var(--light-grey);
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: space-around;
}

.filter {
  padding-top: 2rem;
}

.filler {
  height: 205px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--light-grey);
}

.lds-ring {
  display: inline-block;
  position: relative;
  width: 60px;
  height: 60px;
}

.lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 54px;
  height: 54px;
  margin: 8px;
  border: 8px solid var(--orange);
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: var(--orange) transparent transparent transparent;
}

.lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}

.lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}

.lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}

@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.modellen .search {
  text-align: center;
  padding-top: 2rem;
  padding-bottom: 4rem;
  background-color: var(--dark-grey);
}

.modellen .search-title {
  margin-bottom: 1rem;
  color: #fff;
}

.modellen .search-sub-title {
  font-size: 2rem;
  color: #fff;
}

.modellen .search-wrapper .searchbar {
  padding: 15px 25px;
  flex: 1 0 auto;
}

.modellen .search-wrapper {
  display: flex;
  margin: 0 auto;
  width: 55%;
}

#search-filter-button {
  flex: 0 0 auto;
  padding: 0 2rem;
  border: none;
  box-shadow: none;
}

.modellen .filter-wrapper {
  display: flex;
  justify-content: flex-start;
}

.modellen .filter-wrapper .filter-select {
  padding: 1rem 1rem 1rem 0;
}

.pagination ul {
  list-style-type: none;
  display: flex;
  justify-content: center;
}

.pagination ul li {
  padding: 10px;
}

.pagination ul li a,
.pagination ul li .current {
  font-size: 1.4rem;
  text-decoration: none;
}

.pagination ul li .current {
  color: var(--orange);
}

section.modellen-overview {
  padding-bottom: 2rem;
  padding-top: 2rem;
}

.modellen-count-wrapper {
  display: flex;
  align-items: center;
}

.modellen-count-wrapper .modellen-count-text {
  margin-right: 5px;
}

.filter-dropdown-list-wrapper ul {
  list-style-type: none;
  padding: 10px 0;
  margin: 0;
}

.checkbox .checkbox-label {
  padding: 0 10px;
}

.filter-button {
  border: none;
  box-shadow: none;
  width: 100%;
  text-align: left;
  border: 1px solid var(--light-grey);
  font-size: 1.2rem;
  padding-right: 2.5rem;
  position: relative;
}

.filter-button[data-selected] {
  padding-left: 2.5rem;
}

.filter-button[data-selected]::before {
  content: attr(data-selected);
  position: absolute;
  top: 0;
  left: 0;
  width: 1.5em;
  bottom: 0;
  background-color: var(--orange-accent);
  color: var(--white);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.filter-button::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0.5em;
  width: 1em;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 0.8rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath fill=%0A'%23fff' d='M224 416c-8.188 0-16.38-3.125-22.62-9.375l-192-192c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0L224 338.8l169.4-169.4c12.5-12.5 32.75-12.5 45.25 0s12.5 32.75 0 45.25l-192 192C240.4 412.9 232.2 416 224 416z'/%3E%3C/svg%3E");
}

.filter-dropdown {
  padding: 0;
  margin: 0;
  border: none;
  position: relative;
}

.filter-dropdown-title {
  width: 100%;
}

.content-wrapper details {
  cursor: pointer;
}

section.model-content {
  padding-top: 4rem;
  padding-bottom: 6rem;
}

section.model-header {
  background-color: #707375;
  padding: 3rem 0 1rem;
  color: #fff;
}

.model-content .content-wrapper,
.model-header .model-header-wrapper {
  width: 65%;
  margin: 0 auto;
}

.content-wrapper details h2 {
  margin: 0;
}

.content-wrapper details summary {
  padding: 25px 0;
  border-bottom: 1px solid var(--light-grey);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.content-wrapper details summary:hover h2 {
  color: var(--orange);
}

.content-wrapper details[open] > summary:after {
  transform: rotate(90deg);
}

.content-wrapper details > summary:after {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg aria-hidden='true' focusable='false' data-prefix='fas' data-icon='chevron-right' role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512' class='svg-inline--fa fa-chevron-right fa-w-10 fa-9x'%3E%3Cpath fill='%23EF811B' d='M285.476 272.971L91.132 467.314c-9.373 9.373-24.569 9.373-33.941 0l-22.667-22.667c-9.357-9.357-9.375-24.522-.04-33.901L188.505 256 34.484 101.255c-9.335-9.379-9.317-24.544.04-33.901l22.667-22.667c9.373-9.373 24.569-9.373 33.941 0L285.475 239.03c9.373 9.372 9.373 24.568.001 33.941z' class=''%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  width: 1rem;
  height: 1.5rem;
  display: inline-flex;
  transition: transform 0.3s ease;
}

.download-button {
  background-color: var(--light-grey);
  text-align: center;
  padding: 2rem;
  margin-top: 35px;
  width: 380px;
  max-width: 100%;
}

.download-btn {
  font-size: 1.8rem;
  padding: 1rem 2rem;
}

.voorbeeld-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.voorbeeld-text p {
  font-size: 1.2rem;
  line-height: 30px;
}

.voorbeeld-text a {
  color: var(--orange);
}

.icon-img {
  margin-right: 20px;
}

.icon-img img {
  width: 135px;
}

#voorbeeld {
  margin-bottom: 15px;
}

.filter-dropdown .filter-dropdown-list-wrapper {
  position: absolute;
  z-index: 100;
  overflow-y: auto;
  max-height: 250px;
  min-width: max-content;
  max-width: 300px;
  margin-top: 1px;
  border: 1px solid var(--light-grey);
  background: #fff;
  transform: translateY(-1px);
  display: none;
  -webkit-box-shadow: 2px 4px 15px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 2px 4px 15px 0px rgba(0, 0, 0, 0.2);
}

.filter-dropdown .filter-dropdown-list-wrapper ul {
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-right: 1rem;
  padding-left: 0.5rem;
}

.filter-dropdown .is-active.filter-dropdown-list-wrapper {
  display: block;
  width: auto;
}

.filter-wrapper {
  position: relative;
  padding-left: 2em;
}

.filter-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 1em;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%23EF811B' d='M0 416C0 398.3 14.33 384 32 384H86.66C99 355.7 127.2 336 160 336C192.8 336 220.1 355.7 233.3 384H480C497.7 384 512 398.3 512 416C512 433.7 497.7 448 480 448H233.3C220.1 476.3 192.8 496 160 496C127.2 496 99 476.3 86.66 448H32C14.33 448 0 433.7 0 416V416zM192 416C192 398.3 177.7 384 160 384C142.3 384 128 398.3 128 416C128 433.7 142.3 448 160 448C177.7 448 192 433.7 192 416zM352 176C384.8 176 412.1 195.7 425.3 224H480C497.7 224 512 238.3 512 256C512 273.7 497.7 288 480 288H425.3C412.1 316.3 384.8 336 352 336C319.2 336 291 316.3 278.7 288H32C14.33 288 0 273.7 0 256C0 238.3 14.33 224 32 224H278.7C291 195.7 319.2 176 352 176zM384 256C384 238.3 369.7 224 352 224C334.3 224 320 238.3 320 256C320 273.7 334.3 288 352 288C369.7 288 384 273.7 384 256zM480 64C497.7 64 512 78.33 512 96C512 113.7 497.7 128 480 128H265.3C252.1 156.3 224.8 176 192 176C159.2 176 131 156.3 118.7 128H32C14.33 128 0 113.7 0 96C0 78.33 14.33 64 32 64H118.7C131 35.75 159.2 16 192 16C224.8 16 252.1 35.75 265.3 64H480zM160 96C160 113.7 174.3 128 192 128C209.7 128 224 113.7 224 96C224 78.33 209.7 64 192 64C174.3 64 160 78.33 160 96z'/%3E%3C/svg%3E");
}

@media only screen and (max-width: 944px) {
  .filter-wrapper {
    flex-direction: column;
    padding-left: 0;
  }

  .filter-wrapper::before {
    content: unset;
  }

  .search-wrapper {
    width: 100%;
  }

  .search-sub-title {
    line-height: normal;
  }

  .model-content .content-wrapper,
  .model-header .model-header-wrapper {
    width: 100%;
  }

  .model-header-wrapper h1 {
    line-height: normal;
  }
}

.no_model {
  padding: 3em;
  text-align: center;
  background-color: var(--light-grey);
  font-size: 2rem;
  width: 100%;
}

.no_model p {
  margin-bottom: 2em;
}

#header.no-border-top {
  border-top: none;
  padding-top: 0px;
  position: relative;
}

#wpforo #wpforo-wrap #wpforo-menu {
  margin-left: 85px;
}

.login-model a {
  color: var(--white);
}

@media screen and (max-width: 500px) {
  body #er_search_input,
  body .er-suggestion-sm .er-dummy-search-box .er_search_input_dummy {
    font-size: 16px;
  }
}

@media screen and (max-width: 767px) {
  .cms-row.template-tekst_links_afbeelding_rechts + .cms-row.template-tekst_rechts_afbeelding_links .pure-g {
    flex-direction: column-reverse;
  }

  .modellen .search-wrapper {
    width: auto;
  }

  #search-filter-button {
    padding: 0 1rem;
  }

  .modellen .search-wrapper .searchbar {
    padding: 1em 0.5em;
  }

  .modellen .search-title {
    font-size: 2.25rem;
  }

  .modellen .search-sub-title {
    font-size: 1.5em;
    line-height: 1.25;
  }

  .modellen .model-titel h2 {
    font-size: 1.25em;
  }
}

#pagination .pagination {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  list-style: none;
  justify-content: flex-end;
}

#pagination .pagination li {
  border-left: 0;
}

#pagination .pagination li a,
#pagination .pagination li span {
  padding: 0.375rem 0.75rem;
  position: relative;
  display: block;
  color: var(--text);
  text-decoration: none;
  height: 100%;
  display: flex;
  align-items: center;
}

#pagination .pagination li.active .page-link {
  z-index: 2;
  font-weight: 700;
}

#pagination .pagination li .nav-next {
  background-image: url("data:image/svg+xml,%3Csvg id='Component_1' data-name='Component 1' xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath id='Path_10' data-name='Path 10' d='M8,0,6.545,1.455l5.506,5.506H0V9.039H12.052L6.545,14.545,8,16l8-8Z'/%3E%3C/svg%3E%0A");
}

#pagination .pagination li .nav-next,
#pagination .pagination li .nav-prev {
  font-size: 0px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: 1rem;
  background-position: center;
  background-repeat: no-repeat;
}

#pagination .pagination li .nav-prev {
  background-image: url("data:image/svg+xml,%3Csvg id='Component_1' data-name='Component 1' xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16'%3E%3Cpath id='Path_10' data-name='Path 10' d='M8,0,6.545,1.455l5.506,5.506H0V9.039H12.052L6.545,14.545,8,16l8-8Z' transform='translate(16 16) rotate(180)'/%3E%3C/svg%3E%0A");
}

#pagination .page-item.disabled {
  pointer-events: none;
  opacity: 0.5;
}

/* DIP MONEYMONK */

.mm-header-info {
  font-family: "Inter";
}

.mm-header {
  margin-top: 15px;
}

.mm-section {
  padding-top: 4rem;
  padding-bottom: 3rem;
}

.mm-btn {
  font-family: "Inter";
  transition: 0.2s;
  border: 2px solid transparent;
}

.mm-btn:hover {
  border: 2px solid #fff;
}

.mm-hero p {
  font-family: "Inter";
}

.mm-hero h1 {
  font-family: "biotifbold";
}

.mm-hero h2 {
  font-family: "biotifregular";
}

.mm-hero-inner:before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 101%;
  height: 200px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' version='1.1' width='1263.333233233432' height='221.55950397411914' viewBox='0.13953401010962807 473.79703334381935 1263.333233233432 221.55950397411914' xml:space='preserve'%3E%3Cdesc%3ECreated with Fabric.js 4.6.0%3C/desc%3E%3Cdefs%3E%3C/defs%3E%3Cg transform='matrix(1 0 0 1 631.81 584.58)' id='vs9jazGqWnDIQItzx0Ds7'%3E%3Cpath style='stroke: rgb(0,0,0); stroke-width: 0; stroke-dasharray: none; stroke-linecap: butt; stroke-dashoffset: 0; stroke-linejoin: miter; stroke-miterlimit: 4; fill: rgb(255,255,255); fill-rule: nonzero; opacity: 1;' vector-effect='non-scaling-stroke' transform=' translate(0, 0)' d='M -631.43373 110.77975 L 631.66662 110.77975 L 631.66662 -110.77975 C 631.66662 -110.77975 9.785409999999956 163.09705 -630.9956400000001 18.258189999999985 C -632.1821400000001 17.716659999999983 -631.4337200000001 110.77974999999998 -631.4337200000001 110.77974999999998 z' stroke-linecap='round'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: cover;
}

.mm-hero-inner .content {
  margin-bottom: 4rem;
  z-index: 1;
  position: relative;
}

.mm-hero-inner .btn-container {
  z-index: 1;
  position: relative;
}

.mm-title {
  font-family: "biotifmedium";
  text-align: center;
  line-height: normal;
  margin: 10px auto;
}

h2.mm-title {
  font-size: 32px;
}

h3.mm-title {
  font-size: 26px;
  color: #4898df;
  margin-bottom: 35px;
}

.mm-list-content h3 {
  font-family: "biotifmedium";
  font-size: 22px;
  color: #4898df;
}

.mm-list-content ul {
  margin-bottom: 3rem;
}

.mm-list-content ul li {
  font-family: "Inter";
  font-size: 16px;
}

.mm-info-img {
  display: flex;
  justify-content: center;
  align-items: center;
}

.mm-info-img img {
  width: 500px;
  height: 500px;
  object-fit: cover;
  border-radius: 50%;
}

.mm-logo {
  max-width: 250px;
}

.mm-header-info {
  margin: 0 20px;
}

.mm-header-info a {
  color: #4898df;
  text-decoration: none;
}

.mm-hero-inner {
  background-size: cover;
  padding: 4rem 45px 7rem;
  color: #fff;
  position: relative;
  background-image: url("https://noab.nl/resources/foto-esther-2-scaled.jpg");
  background-repeat: no-repeat;
  box-shadow: inset 0 0 0 2000px rgba(72, 152, 223, 0.8);
}

.mm-hero-inner h1 {
  font-size: 66px;
  line-height: normal;
  margin-bottom: 0;
}

.mm-hero-inner h2 {
  font-size: 28px;
  line-height: normal;
  margin-top: 10px;
}

.mm-hero-inner p {
  max-width: 65%;
}

.mm-btn {
  padding: 0.85em 2em;
  display: block;
  color: #fff;
  text-decoration: none;
  margin-right: 20px;
}

.mm-btn-hero {
  background-color: #43c556;
  font-weight: bold;
  font-size: 21px;
  border-radius: 6px;
}

.logo-erkend-adviseur {
  position: absolute;
  right: 0;
  bottom: 0;
  max-width: 240px;
}

.mm-information {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.mm-cta .mm-cta-inner {
  justify-content: space-between;
  background-color: #4898df;
  width: 100%;
  height: 125px;
  padding: 0 2rem 0 3rem !important;
  margin: 0;
  border-radius: 11px;
}

.mm-cta .mm-cta-inner h2 {
  color: #fff;
  font-family: "biotifmedium";
  font-size: 28px;
}

.mm-kennismaking h2 {
  color: #4898df;
  font-family: "biotifmedium";
  font-size: 28px;
}

.mm-extra-cta {
  background-color: #f7fbfe;
  padding-top: 4.5rem;
  padding-bottom: 4rem;
}

.mm-extra-cta p {
  font-family: "Inter";
  font-size: 17px;
  margin-bottom: 45px;
}

.mm-extra-cta h2 {
  font-family: "biotifmedium";
  font-size: 30px;
  color: #000;
  line-height: 40px;
}

.mm-extra-cta h2 span {
  color: #4898df;
  font-family: "biotifregular";
}

.mm-extra-cta .mm-btn {
  display: inline-flex;
}

.mm-in-beeld {
  text-align: center;
}

.mm-in-beeld .video-content {
  margin-bottom: 4rem;
}

.mm-in-beeld .video-content h2 {
  font-family: "biotifmedium";
  font-size: 28px;
  color: #4898df;
}

.mm-in-beeld .video-content iframe {
  height: 372px;
}

.mm-in-beeld .three-column-content {
  padding: 0 10px;
}

.mm-in-beeld h2 {
  font-family: "biotifmedium";
  font-size: 32px;
}

.mm-in-beeld h3 {
  font-family: "biotifmedium";
  font-size: 26px;
  color: #4898df;
}

.mm-in-beeld p {
  font-family: "Inter";
}

.mm-get-in-touch .mm-google-maps-inner {
  border-radius: 50%;
  overflow: hidden;
  height: 538px;
  width: 538px;
}

.mm-get-in-touch .mm-google-maps-inner iframe {
  height: 100%;
  width: 100%;
}

.mm-get-in-touch {
  font-family: "Inter";
}

.mm-get-in-touch h3 {
  font-family: "biotifmedium";
  font-size: 28px;
}

.mm-get-in-touch .content a {
  color: #4898df;
  text-decoration: none;
}

.mm-get-in-touch .mm-linked-in-btn {
  padding-left: 25px;
  position: relative;
  color: #000 !important;
}

.mm-get-in-touch .mm-linked-in-btn:before {
  content: "";
  position: absolute;
  height: 20px;
  width: 20px;
  left: 0;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3C!--! Font Awesome Pro 6.3.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. --%3E%3Cpath fill='%234898DF' d='M416 32H31.9C14.3 32 0 46.5 0 64.3v383.4C0 465.5 14.3 480 31.9 480H416c17.6 0 32-14.5 32-32.3V64.3c0-17.8-14.4-32.3-32-32.3zM135.4 416H69V202.2h66.5V416zm-33.2-243c-21.3 0-38.5-17.3-38.5-38.5S80.9 96 102.2 96c21.2 0 38.5 17.3 38.5 38.5 0 21.3-17.2 38.5-38.5 38.5zm282.1 243h-66.4V312c0-24.8-.5-56.7-34.5-56.7-34.6 0-39.9 27-39.9 54.9V416h-66.4V202.2h63.7v29.2h.9c8.9-16.8 30.6-34.5 62.9-34.5 67.2 0 79.7 44.3 79.7 101.9V416z'/%3E%3C/svg%3E");
}

.mm-list-content ul {
  list-style: none;
}

.mm-list-content ul li {
  position: relative;
  margin-bottom: 5px;
}

.mm-list-content ul li:before {
  content: "";
  left: -30px;
  top: 3px;
  position: absolute;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3C!--! Font Awesome Pro 6.3.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. --%3E%3Cpath fill='%234898DF' d='M470.6 105.4c12.5 12.5 12.5 32.8 0 45.3l-256 256c-12.5 12.5-32.8 12.5-45.3 0l-128-128c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0L192 338.7 425.4 105.4c12.5-12.5 32.8-12.5 45.3 0z'/%3E%3C/svg%3E");
  height: 20px;
  width: 20px;
  background-repeat: no-repeat;
  background-size: contain;
}

.mm-pop-up .pop-up-box {
  padding-left: 7rem;
  padding-right: 7rem;
  max-height: 90vh;
  overflow-y: auto;
}

.mm-pop-up .pop-up-text h2 {
  font-family: "biotifmedium";
  font-size: 36px;
  text-align: center;
  color: #000;
}

.mm-pop-up .pop-up-text p {
  font-family: "Inter";
  font-size: 18px;
  line-height: 32px;
  text-align: center;
  max-width: 100%;
  color: #000;
}

.mm-pop-up .dip-form-wrapper .wpcf7-text,
.dip-form-wrapper .wpcf7-textarea {
  width: 100%;
}

.mm-pop-up .dip-form-wrapper .wpcf7-text {
  width: 100%;
  background-color: #f6f6f6;
  padding: 10px;
  border: none;
  box-shadow: none;
  font-size: 1.2rem;
}

.mm-pop-up .dip-form-wrapper p {
  max-width: 100%;
}

.mm-pop-up .dip-form-wrapper .wpcf7-textarea {
  width: 100%;
  background-color: #f6f6f6;
  padding: 10px;
  border: none;
  box-shadow: none;
  font-size: 1.2rem;
}

.mm-pop-up .dip-form-wrapper label {
  font-family: "Inter";
  color: #000;
  font-size: 18px;
  margin-bottom: 10px;
  display: inline-block;
}

.mm-pop-up .dip-form-wrapper .wpcf7-submit {
  font-family: "Inter";
  display: block !important;
  border: none;
  outline: none;
  border-radius: 6px;
  font-size: 1.2rem;
  padding: 0.8em 1.5em;
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease-in-out;
  background-color: #43c556;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  margin-top: 15px;
  max-width: 180px;
  float: right;
}

.mm-pop-up .dip-form-wrapper .wpcf7-submit:hover {
  background-color: #85bc20;
}

.mm-pop-up .close-btn {
  width: 35px;
  height: 35px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3C!--! Font Awesome Pro 6.3.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2023 Fonticons, Inc. --%3E%3Cpath fill='%234898DF' d='M175 175C184.4 165.7 199.6 165.7 208.1 175L255.1 222.1L303 175C312.4 165.7 327.6 165.7 336.1 175C346.3 184.4 346.3 199.6 336.1 208.1L289.9 255.1L336.1 303C346.3 312.4 346.3 327.6 336.1 336.1C327.6 346.3 312.4 346.3 303 336.1L255.1 289.9L208.1 336.1C199.6 346.3 184.4 346.3 175 336.1C165.7 327.6 165.7 312.4 175 303L222.1 255.1L175 208.1C165.7 199.6 165.7 184.4 175 175V175zM512 256C512 397.4 397.4 512 256 512C114.6 512 0 397.4 0 256C0 114.6 114.6 0 256 0C397.4 0 512 114.6 512 256zM256 48C141.1 48 48 141.1 48 256C48 370.9 141.1 464 256 464C370.9 464 464 370.9 464 256C464 141.1 370.9 48 256 48z'/%3E%3C/svg%3E");
}

.mm-missie-visie {
  padding-right: 25px;
}

.mm-missie-visie p,
.mm-missie-visie h2 {
  text-align: left !important;
  line-height: normal;
}

.mm-pop-up .mm-missie-visie h2 {
  color: #4898df !important;
  font-size: 53px;
  font-family: "biotifmedium";
}

.mm-missie-visie-under h2 {
  font-family: "biotifmedium";
  text-align: center;
  font-size: 36px;
}

.mm-missie-visie-under h3 {
  font-family: "biotifmedium";
  text-align: center;
  font-size: 24px;
  color: #4898df;
}

.mm-missie-visie-under p {
  font-family: "Inter";
  color: #000;
  text-align: center;
  padding: 0 30px;
}

.mm-missie-visie-under .small-text {
  text-align: center;
  font-family: "Inter";
  font-size: 14px;
}

.mm-missie-visie-under .mm-btn-hero {
  display: inline-block;
  font-size: 18px;
}

.mm-kennismaking-frame {
  height: 1200px;
}

.mm-kennismaking-frame iframe {
  height: 100%;
}

.mm-kennismaking {
  padding-top: 4rem;
  padding-bottom: 2rem;
}

@media only screen and (max-width: 768px) {
  .mm-header {
    margin-top: 40px;
  }
  .mm-header-info-wrapper {
    flex-direction: column;
  }

  .mm-header-info-wrapper .mm-header-info {
    width: 100%;
  }

  .mm-hero-inner .btn-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .mm-get-in-touch .mm-google-maps-inner {
    width: 100%;
    height: auto;
  }

  .mm-hero-inner {
    padding-top: 10px;
    padding-left: 25px;
    padding-right: 25px;
  }

  .mm-hero-inner h1 {
    font-size: 40px;
    line-height: normal;
  }

  .mm-hero-inner h2 {
    font-size: 22px;
    line-height: normal;
  }

  .mm-hero-inner p {
    max-width: 100%;
  }

  .mm-btn-hero {
    font-size: 14px;
    margin-bottom: 15px;
  }

  .mm-info-img img {
    height: 330px;
    width: 100%;
  }

  .mm-title {
    line-height: normal;
  }

  h2.mm-title {
    font-size: 28px;
  }

  h3.mm-title {
    font-size: 22px;
  }

  .mm-information {
    padding-top: 1rem;
  }

  .column-reverse {
    flex-direction: column-reverse;
  }

  .mm-cta .mm-cta-inner {
    flex-direction: column;
    height: auto;
  }

  .mm-cta {
    padding-top: 0;
    padding-bottom: 0;
  }

  .mm-cta .mm-cta-inner h2 {
    line-height: normal;
    font-size: 24px;
  }

  .mm-kennismaking-frame {
    height: 1070px;
  }

  .mm-extra-cta {
    padding-top: 2rem;
    padding-bottom: 1rem;
  }

  .mm-in-beeld h2 {
    line-height: normal;
    font-size: 30px;
  }

  .mm-in-beeld h3 {
    line-height: normal;
    font-size: 22px;
  }

  .mm-in-beeld .video-content {
    margin-bottom: 0;
  }

  .mm-get-in-touch .mm-google-maps-inner {
    height: 320px;
  }

  .mm-get-in-touch {
    padding-top: 1rem;
  }

  .mm-pop-up .pop-up-box {
    padding-left: 15px;
    padding-right: 15px;
    height: 100vh;
    overflow: scroll;
  }

  .mm-pop-up .pop-up-text p {
    font-size: 16px;
    line-height: normal;
  }

  .mm-pop-up .mm-missie-visie h2 {
    font-size: 38px;
  }

  .mm-missie-visie-under h2 {
    line-height: normal;
    margin-bottom: 0;
  }

  .mm-missie-visie-under .mm-btn-hero {
    font-size: 14px;
  }
}

/* DIP WOLTERS KLUWER */

section.wk-header {
  margin-top: 2rem;
}

section.dip-section {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.wk-btn:hover {
  background-color: #e5202e !important;
}

.dip-header-info-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 6px solid #007ac3;
  height: 100%;
}

.dip-header-info {
  font-size: 20px;
  font-family: "Fira Sans";
}

.dip-header-info a {
  font-size: 20px;
  font-family: "Fira Sans";
  text-decoration: none;
  color: #000;
}

.dip-logo {
  border-bottom: 6px solid #e5202e;
  padding: 1.8rem;
}

.dip-logo img {
  width: 100%;
}

.dip-hero-img {
  height: 300px;
  position: relative;
  background-image: url(/resources/TWF-header-Twinfield-Boekhouden-CO.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center -120px;
}

.dip-hero-img .wk-btn {
  font-family: "Fira Sans";
  position: absolute;
  left: 35px;
  bottom: 35px;
  font-size: 18px;
  background-color: #85bc20;
  padding: 15px 55px 15px 35px;
}

.wk-usp {
  padding-top: 15px;
}

#wk-usp-1 {
  border-top: 6px solid #e5202e;
}

#wk-usp-2 {
  border-top: 6px solid #007ac3;
}

#wk-usp-3 {
  border-top: 6px solid #85bc20;
}

.dip-hero-img .wk-btn:after {
  content: "";
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3C!--! Font Awesome Pro 6.1.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --%3E%3Cpath fill='%23fff' d='M438.6 278.6l-160 160C272.4 444.9 264.2 448 256 448s-16.38-3.125-22.62-9.375c-12.5-12.5-12.5-32.75 0-45.25L338.8 288H32C14.33 288 .0016 273.7 .0016 256S14.33 224 32 224h306.8l-105.4-105.4c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0l160 160C451.1 245.9 451.1 266.1 438.6 278.6z'/%3E%3C/svg%3E");
  background-size: 20px 20px;
  position: absolute;
  height: 20px;
  width: 20px;
  right: 20px;
}

.wk-usp p {
  font-family: "Fira Sans";
  font-weight: 400;
  font-size: 16px;
}

.wk-usp h2 {
  font-family: "Fira Sans";
  font-weight: 400;
  font-size: 28px;
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 50px;
}

.wk-usp h2:before {
  content: "";
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3C!--! Font Awesome Pro 6.1.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --%3E%3Cpath fill='%2385BC20' d='M438.6 105.4C451.1 117.9 451.1 138.1 438.6 150.6L182.6 406.6C170.1 419.1 149.9 419.1 137.4 406.6L9.372 278.6C-3.124 266.1-3.124 245.9 9.372 233.4C21.87 220.9 42.13 220.9 54.63 233.4L159.1 338.7L393.4 105.4C405.9 92.88 426.1 92.88 438.6 105.4H438.6z'/%3E%3C/svg%3E");
  background-size: 35px 35px;
  position: absolute;
  height: 35px;
  width: 35px;
  left: 0;
}

.wk-content .content-wrapper h2 {
  font-family: "Fira Sans";
  font-size: 34px;
  line-height: 40px;
  font-weight: 400;
  margin-top: 0;
}

.wk-content .content-wrapper p {
  font-family: "Fira Sans";
  font-size: 20px;
  line-height: 2.2rem;
}

.align-center {
  align-items: center;
}

.wk-content .wk-btn {
  font-family: "Fira Sans";
  font-size: 18px;
  background-color: #007ac3;
  padding: 15px 55px 15px 35px;
  position: relative;
}

.wk-content .wk-btn:after {
  content: "";
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3C!--! Font Awesome Pro 6.1.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --%3E%3Cpath fill='%23fff' d='M438.6 278.6l-160 160C272.4 444.9 264.2 448 256 448s-16.38-3.125-22.62-9.375c-12.5-12.5-12.5-32.75 0-45.25L338.8 288H32C14.33 288 .0016 273.7 .0016 256S14.33 224 32 224h306.8l-105.4-105.4c-12.5-12.5-12.5-32.75 0-45.25s32.75-12.5 45.25 0l160 160C451.1 245.9 451.1 266.1 438.6 278.6z'/%3E%3C/svg%3E");
  background-size: 20px 20px;
  position: absolute;
  height: 20px;
  width: 20px;
  right: 20px;
}

.ervaringen-wrapper {
  text-align: center;
}

.ervaringen-wrapper h2 {
  font-family: "Fira Sans";
  font-size: 34px;
  font-weight: 400;
  line-height: normal;
}

.ervaringen-wrapper img {
  margin-top: 2rem;
  margin-bottom: 4rem;
}

.social-media .wk-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #ededed;
  padding: 1rem 4rem;
  height: 100%;
}

.wk-cta .cta-text h2 {
  font-family: "Fira Sans";
  font-size: 34px;
  font-weight: 400;
}

.socials-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
}

.socials-wrapper .social-icon {
  width: 35px;
  height: 40px;
  display: block;
  background-repeat: no-repeat;
  background-size: cover;
  margin: 0 5px;
  transition: 0.4s;
}

#twitter {
  background-image: url("data:image/svg+xml,%3Csvg aria-hidden='true' focusable='false' data-prefix='fab' data-icon='twitter-square' role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512' class='svg-inline--fa fa-twitter-square fa-w-14 fa-9x'%3E%3Cpath fill='%23007AC3' d='M400 32H48C21.5 32 0 53.5 0 80v352c0 26.5 21.5 48 48 48h352c26.5 0 48-21.5 48-48V80c0-26.5-21.5-48-48-48zm-48.9 158.8c.2 2.8.2 5.7.2 8.5 0 86.7-66 186.6-186.6 186.6-37.2 0-71.7-10.8-100.7-29.4 5.3.6 10.4.8 15.8.8 30.7 0 58.9-10.4 81.4-28-28.8-.6-53-19.5-61.3-45.5 10.1 1.5 19.2 1.5 29.6-1.2-30-6.1-52.5-32.5-52.5-64.4v-.8c8.7 4.9 18.9 7.9 29.6 8.3a65.447 65.447 0 0 1-29.2-54.6c0-12.2 3.2-23.4 8.9-33.1 32.3 39.8 80.8 65.8 135.2 68.6-9.3-44.5 24-80.6 64-80.6 18.9 0 35.9 7.9 47.9 20.7 14.8-2.8 29-8.3 41.6-15.8-4.9 15.2-15.2 28-28.8 36.1 13.2-1.4 26-5.1 37.8-10.2-8.9 13.1-20.1 24.7-32.9 34z' class=''%3E%3C/path%3E%3C/svg%3E");
}

#linkedin {
  background-image: url("data:image/svg+xml,%3Csvg aria-hidden='true' focusable='false' data-prefix='fab' data-icon='linkedin' role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512' class='svg-inline--fa fa-linkedin fa-w-14 fa-9x'%3E%3Cpath fill='%23007AC3' d='M416 32H31.9C14.3 32 0 46.5 0 64.3v383.4C0 465.5 14.3 480 31.9 480H416c17.6 0 32-14.5 32-32.3V64.3c0-17.8-14.4-32.3-32-32.3zM135.4 416H69V202.2h66.5V416zm-33.2-243c-21.3 0-38.5-17.3-38.5-38.5S80.9 96 102.2 96c21.2 0 38.5 17.3 38.5 38.5 0 21.3-17.2 38.5-38.5 38.5zm282.1 243h-66.4V312c0-24.8-.5-56.7-34.5-56.7-34.6 0-39.9 27-39.9 54.9V416h-66.4V202.2h63.7v29.2h.9c8.9-16.8 30.6-34.5 62.9-34.5 67.2 0 79.7 44.3 79.7 101.9V416z' class=''%3E%3C/path%3E%3C/svg%3E");
}

#whatsapp {
  background-image: url("data:image/svg+xml,%3Csvg aria-hidden='true' focusable='false' data-prefix='fab' data-icon='youtube-square' role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512' class='svg-inline--fa fa-youtube-square fa-w-14 fa-9x'%3E%3Cpath fill='%23007AC3' d='M186.8 202.1l95.2 54.1-95.2 54.1V202.1zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-42 176.3s0-59.6-7.6-88.2c-4.2-15.8-16.5-28.2-32.2-32.4C337.9 128 224 128 224 128s-113.9 0-142.2 7.7c-15.7 4.2-28 16.6-32.2 32.4-7.6 28.5-7.6 88.2-7.6 88.2s0 59.6 7.6 88.2c4.2 15.8 16.5 27.7 32.2 31.9C110.1 384 224 384 224 384s113.9 0 142.2-7.7c15.7-4.2 28-16.1 32.2-31.9 7.6-28.5 7.6-88.1 7.6-88.1z' class=''%3E%3C/path%3E%3C/svg%3E");
}

#facebook {
  background-image: url("data:image/svg+xml,%3Csvg aria-hidden='true' focusable='false' data-prefix='fab' data-icon='facebook-square' role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512' class='svg-inline--fa fa-facebook-square fa-w-14 fa-9x'%3E%3Cpath fill='%23007AC3' d='M400 32H48A48 48 0 0 0 0 80v352a48 48 0 0 0 48 48h137.25V327.69h-63V256h63v-54.64c0-62.15 37-96.48 93.67-96.48 27.14 0 55.52 4.84 55.52 4.84v61h-31.27c-30.81 0-40.42 19.12-40.42 38.73V256h68.78l-11 71.69h-57.78V480H400a48 48 0 0 0 48-48V80a48 48 0 0 0-48-48z' class=''%3E%3C/path%3E%3C/svg%3E");
}

#youtube {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3C!--! Font Awesome Pro 6.1.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --%3E%3Cpath fill='%23007AC3' d='M186.8 202.1l95.2 54.1-95.2 54.1V202.1zM448 80v352c0 26.5-21.5 48-48 48H48c-26.5 0-48-21.5-48-48V80c0-26.5 21.5-48 48-48h352c26.5 0 48 21.5 48 48zm-42 176.3s0-59.6-7.6-88.2c-4.2-15.8-16.5-28.2-32.2-32.4C337.9 128 224 128 224 128s-113.9 0-142.2 7.7c-15.7 4.2-28 16.6-32.2 32.4-7.6 28.5-7.6 88.2-7.6 88.2s0 59.6 7.6 88.2c4.2 15.8 16.5 27.7 32.2 31.9C110.1 384 224 384 224 384s113.9 0 142.2-7.7c15.7-4.2 28-16.1 32.2-31.9 7.6-28.5 7.6-88.1 7.6-88.1z'/%3E%3C/svg%3E");
}

.wk-footer iframe {
  width: 100%;
  height: 385px;
}

.wk-footer-text {
  padding-left: 4rem;
}

.wk-footer-text p {
  font-family: "Fira Sans";
  font-size: 22px;
  font-weight: 400;
  line-height: 2.2rem;
}

.wk-footer-text a {
  color: #007ac3;
  text-decoration: none;
}

/* POP UP BOX */

.form-wrapper {
  margin-left: -1rem;
}

.pop-up-overlay {
  width: 100%;
  height: 100%;
  display: none;
  position: fixed;
  z-index: 999;
  top: 0px;
  left: 0px;
  content: "";
  background: rgba(0, 0, 0, 0.85);
}

.pop-up-box {
  /* width: 50%; */
  padding: 70px;
  transform: translate(-50%, -50%) scale(0.5);
  position: absolute;
  top: 50%;
  left: 50%;
  box-shadow: 0px 2px 16px rgba(0, 0, 0, 0.5);
  border-radius: 3px;
  background: #fff;
}

.close-btn {
  width: 20px;
  height: 30px;
  display: inline-block;
  position: absolute;
  top: 20px;
  right: 20px;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  border-radius: 1000px;
  font-weight: bold;
  text-decoration: none;
  color: #fff;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg aria-hidden='true' focusable='false' data-prefix='fas' data-icon='times' role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 352 512' class='svg-inline--fa fa-times fa-w-11 fa-9x'%3E%3Cpath fill='%23007AC3' d='M242.72 256l100.07-100.07c12.28-12.28 12.28-32.19 0-44.48l-22.24-22.24c-12.28-12.28-32.19-12.28-44.48 0L176 189.28 75.93 89.21c-12.28-12.28-32.19-12.28-44.48 0L9.21 111.45c-12.28 12.28-12.28 32.19 0 44.48L109.28 256 9.21 356.07c-12.28 12.28-12.28 32.19 0 44.48l22.24 22.24c12.28 12.28 32.2 12.28 44.48 0L176 322.72l100.07 100.07c12.28 12.28 32.2 12.28 44.48 0l22.24-22.24c12.28-12.28 12.28-32.19 0-44.48L242.72 256z' class=''%3E%3C/path%3E%3C/svg%3E");
}

.close-btn:hover {
  transform: rotate(90deg);
}

.transform-in,
.transform-out {
  display: block;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.transform-in {
  -webkit-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
}

.transform-out {
  -webkit-transform: translate(-50%, -50%) scale(0.5);
  transform: translate(-50%, -50%) scale(0.5);
}

.pop-up-text h2 {
  font-family: "Fira Sans";
  font-size: 33px;
  font-weight: 400;
}

.pop-up-text p {
  font-family: "Fira Sans";
  font-size: 18px;
  line-height: 32px;
}

.wk-pop-up .dip-form-wrapper .wpcf7-text,
.dip-form-wrapper .wpcf7-textarea {
  width: 100%;
}

.wk-pop-up .dip-form-wrapper .wpcf7-text {
  width: 100%;
  background-color: #f6f6f6;
  padding: 10px;
  border: none;
  box-shadow: none;
  font-size: 1.2rem;
}

.wk-pop-up .dip-form-wrapper .wpcf7-textarea {
  width: 100%;
  background-color: #f6f6f6;
  padding: 10px;
  border: none;
  box-shadow: none;
  font-size: 1.2rem;
}

.wk-pop-up .dip-form-wrapper label {
  font-family: "Fira Sans";
  font-size: 18px;
  margin-bottom: 10px;
  display: inline-block;
}

.wk-pop-up .dip-form-wrapper .wpcf7-submit {
  font-family: "Fira Sans";
  display: block !important;
  border: none;
  outline: none;
  border-radius: 0;
  font-size: 1.2rem;
  padding: 0.8em 1.5em;
  text-decoration: none;
  position: relative;
  display: inline-block;
  transition: all 0.3s ease-in-out;
  background-color: #007ac3;
  color: #fff;
  cursor: pointer;
  margin-top: 15px;
  max-width: 180px;
}

.wk-pop-up .dip-form-wrapper .wpcf7-submit:hover {
  background-color: #85bc20;
}

#pop-up-list {
  list-style-type: none;
  columns: 2;
  -webkit-columns: 2;
  -moz-columns: 2;
  margin-bottom: 20px;
}

#pop-up-list li {
  font-size: 18px;
  margin-bottom: 5px;
  position: relative;
  font-family: "Fira Sans";
}

#pop-up-list li:before {
  content: "";
  background-repeat: no-repeat;
  background-size: 20px 20px;
  position: absolute;
  left: -30px;
  background-position: center center;
  height: 20px;
  width: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3C!--! Font Awesome Pro 6.1.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license (Commercial License) Copyright 2022 Fonticons, Inc. --%3E%3Cpath d='M438.6 105.4C451.1 117.9 451.1 138.1 438.6 150.6L182.6 406.6C170.1 419.1 149.9 419.1 137.4 406.6L9.372 278.6C-3.124 266.1-3.124 245.9 9.372 233.4C21.87 220.9 42.13 220.9 54.63 233.4L159.1 338.7L393.4 105.4C405.9 92.88 426.1 92.88 438.6 105.4H438.6z'/%3E%3C/svg%3E");
}

.pop-up-video iframe {
  height: 400px;
}

@media only screen and (max-width: 600px) {
  .dip-header-info-wrapper,
  .wk-cta {
    flex-direction: column;
  }

  .dip-hero-img {
    background-position: center center;
  }

  .pop-up-box {
    width: 95% !important;
    padding: 20px;
  }

  .social-media .wk-cta {
    padding: 20px;
  }

  .wk-cta .cta-text h2 {
    font-size: 24px;
  }
}

.grecaptcha-badge {
  visibility: hidden;
}

#fifth-section .dip-info-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}

@media only screen and (max-width: 768px) {
  #fifth-section .dip-info-wrapper {
    flex-direction: column;
  }

  #fifth-section .dip-info-wrapper a {
    margin-bottom: 25px;
  }
}

.wpf-table.wpforo-members-search {
  display: none !important;
}

/* COOKIEBOT STYLING */
body #CybotCookiebotDialogHeader {
  background-color: #000;
}
body #CybotCookiebotDialogPoweredbyLink {
  width: 250px;
  background-position: center left;
  height: 100px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("/resources/NOAB_Logo_-2.jpg");
}
body #CybotCookiebotDialogPoweredbyImage {
  opacity: 0;
}
body #CybotCookiebotDialog {
  border-radius: 0.5em;
  box-shadow: 0px 0px 30px rgba(29, 35, 39, 0.15);
  outline: 1000vh solid rgba(239, 129, 27, 0.2);
}
body #CybotCookiebotDialog .CybotCookiebotScrollContainer {
  border: unset;
}
body #CybotCookiebotDialog .CookieCard button::after {
  content: unset;
}
body #CybotCookiebotDialogPoweredbyCybot {
  opacity: 0;
}
body #CybotCookiebotDialogPoweredbyCybot path {
  fill: white;
}
body #CybotCookiebotDialog *,
body #CybotCookiebotDialogBodyUnderlay * {
  font-family: "Khand", "Helvetica Neue", "Arial", sans-serif;
  font-size: 17px;
}
body #CybotCookiebotDialogNav .CybotCookiebotDialogNavItemLink:hover {
  color: #ef811b;
}
body #CybotCookiebotDialogNav .CybotCookiebotDialogNavItemLink.CybotCookiebotDialogActive {
  color: #ef811b;
  border-color: #ef811b;
}
body #CybotCookiebotDialogHeader {
  border-color: #f5f5f5;
}
body #CybotCookiebotDialogNav {
  border-color: #f5f5f5;
}
body #CybotCookiebotDialogTabContent .CybotCookiebotDialogBodyLevelButtonSlider {
  background-color: #f5f5f5;
}
body #CybotCookiebotDialogTabContent input:checked + .CybotCookiebotDialogBodyLevelButtonSlider {
  background-color: #ef811b;
}
body #CybotCookiebotDialogFooter {
  position: relative;
  margin-top: 3em;
}
body #CybotCookiebotDialogFooter #CybotCookiebotDialogBodyButtonAccept,
body #CybotCookiebotDialogFooter #CybotCookiebotDialogBodyLevelButtonAccept,
body #CybotCookiebotDialogFooter #CybotCookiebotDialogBodyLevelButtonLevelOptinAllowAll {
  background-color: #ef811b;
  border-color: #ef811b;
  font-weight: 700;
  text-transform: uppercase;
}
body #CybotCookiebotDialogFooter #CybotCookiebotDialogBodyButtonAccept::after,
body #CybotCookiebotDialogFooter #CybotCookiebotDialogBodyLevelButtonAccept::after,
body #CybotCookiebotDialogFooter #CybotCookiebotDialogBodyLevelButtonLevelOptinAllowAll::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11.708' height='11.708' viewBox='0 0 11.708 11.708'%3E%3Cpath id='Path_3565' data-name='Path 3565' d='M5.854,0,4.79,1.064,8.819,5.094H0V6.614H8.819L4.79,10.644l1.064,1.064,5.854-5.854Z' fill='%23ffffff'/%3E%3C/svg%3E%0A");
}
body #CybotCookiebotDialogFooter #CybotCookiebotDialogBodyLevelButtonCustomize,
body #CybotCookiebotDialogFooter #CybotCookiebotDialogBodyLevelButtonLevelOptinAllowallSelection,
body #CybotCookiebotDialogFooter .CybotCookiebotDialogBodyButton {
  border-color: #ffffff;
  background-color: #ffffff;
  color: #ef811b;
  font-weight: 700;
  text-transform: uppercase;
}
body #CybotCookiebotDialogFooter #CybotCookiebotDialogBodyLevelButtonCustomize::after,
body #CybotCookiebotDialogFooter #CybotCookiebotDialogBodyLevelButtonLevelOptinAllowallSelection::after,
body #CybotCookiebotDialogFooter .CybotCookiebotDialogBodyButton::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11.708' height='11.708' viewBox='0 0 11.708 11.708'%3E%3Cpath id='Path_3565' data-name='Path 3565' d='M5.854,0,4.79,1.064,8.819,5.094H0V6.614H8.819L4.79,10.644l1.064,1.064,5.854-5.854Z' fill='@{escaped_main_clr}'/%3E%3C/svg%3E%0A");
}
body #CybotCookiebotDialogFooter #CybotCookiebotDialogBodyLevelButtonCustomize .CybotCookiebotDialogArrow,
body
  #CybotCookiebotDialogFooter
  #CybotCookiebotDialogBodyLevelButtonLevelOptinAllowallSelection
  .CybotCookiebotDialogArrow,
body #CybotCookiebotDialogFooter .CybotCookiebotDialogBodyButton .CybotCookiebotDialogArrow {
  display: none;
}
body #CybotCookiebotDialogFooter .CybotCookiebotDialogBodyButton {
  padding: 0.75em 3em 0.75em 1.5em;
  border-radius: 0.5em;
  border-width: 1px;
  font-weight: 700;
}
/* END COOKIEBOT STYLING */

.d-block {
  display: block;
}

.wijzijnnoab-picture img {
  width: 100%;
  object-fit: cover;
}
