/**
The application.scss file should only hold imports.
No actual rules, styling, variables, mixins, etc. can go in it.
*/
/**
The core file should contain globally defined styles for the application.
That could mean setting a global font size, adding global box sizing, etc.

The core file should not contain any configurations or mixins, variables and such,
only styling (or includes of such).
*/
@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@200;300;400;500;600;700;800&display=swap");
*,
*:after,
*:before {
  box-sizing: border-box;
}

html {
  font-size: 100%;
}

.hidden {
  display: none;
}

.figure {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.subtitle {
  font-family: "Acumin Pro", sans-serif;
  text-transform: uppercase;
  color: #F2B111;
  letter-spacing: 0.09em;
  font-size: calc(
            14px + 3 * ((100vw - 600px) / 1960)
    );
  font-weight: 700;
}
@media screen and (max-width: 600px) {
  .subtitle {
    font-size: 14px;
  }
}
@media screen and (min-width: 2560px) {
  .subtitle {
    font-size: 17px;
  }
}

.page-404 {
  padding: 10vw;
}

/* custom functions */
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

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

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  text-decoration: underline dotted;
  /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

body {
  font-family: "Raleway", sans-serif;
  font-weight: 400;
  line-height: 2rem;
  color: #9d9d9d;
  font-size: calc(
            16px + 7 * ((100vw - 600px) / 1960)
    );
}
@media screen and (max-width: 600px) {
  body {
    font-size: 16px;
  }
}
@media screen and (min-width: 2560px) {
  body {
    font-size: 23px;
  }
}

h1 {
  font-size: calc(
            26px + 24 * ((100vw - 600px) / 1960)
    );
}
@media screen and (max-width: 600px) {
  h1 {
    font-size: 26px;
  }
}
@media screen and (min-width: 2560px) {
  h1 {
    font-size: 50px;
  }
}

h2 {
  font-size: calc(
            22px + 12 * ((100vw - 600px) / 1960)
    );
}
@media screen and (max-width: 600px) {
  h2 {
    font-size: 22px;
  }
}
@media screen and (min-width: 2560px) {
  h2 {
    font-size: 34px;
  }
}

h3 {
  font-size: calc(
            18px + 12 * ((100vw - 600px) / 1960)
    );
}
@media screen and (max-width: 600px) {
  h3 {
    font-size: 18px;
  }
}
@media screen and (min-width: 2560px) {
  h3 {
    font-size: 30px;
  }
}

h4 {
  font-size: calc(
            17px + 8 * ((100vw - 600px) / 1960)
    );
}
@media screen and (max-width: 600px) {
  h4 {
    font-size: 17px;
  }
}
@media screen and (min-width: 2560px) {
  h4 {
    font-size: 25px;
  }
}

h5 {
  font-weight: 600;
  font-family: "Raleway", sans-serif;
  color: #F2B111;
  font-size: calc(
            16px + 7 * ((100vw - 600px) / 1960)
    );
}
@media screen and (max-width: 600px) {
  h5 {
    font-size: 16px;
  }
}
@media screen and (min-width: 2560px) {
  h5 {
    font-size: 23px;
  }
}

h6 {
  font-weight: 600;
  font-family: "Raleway", sans-serif;
  color: #F2B111;
  font-size: calc(
            16px + 6 * ((100vw - 600px) / 1960)
    );
}
@media screen and (max-width: 600px) {
  h6 {
    font-size: 16px;
  }
}
@media screen and (min-width: 2560px) {
  h6 {
    font-size: 22px;
  }
}

.h1 {
  font-size: calc(
            34px + 42 * ((100vw - 600px) / 1960)
    );
  line-height: 1.1em;
  letter-spacing: -0.01em;
}
@media screen and (max-width: 600px) {
  .h1 {
    font-size: 34px;
  }
}
@media screen and (min-width: 2560px) {
  .h1 {
    font-size: 76px;
  }
}

.h2 {
  font-size: calc(
            30px + 25 * ((100vw - 600px) / 1960)
    );
  line-height: 1.35em;
  letter-spacing: -0.01em;
}
@media screen and (max-width: 600px) {
  .h2 {
    font-size: 30px;
  }
}
@media screen and (min-width: 2560px) {
  .h2 {
    font-size: 55px;
  }
}

.h3 {
  font-size: calc(
            24px + 31 * ((100vw - 600px) / 1960)
    );
  line-height: 1.35em;
  letter-spacing: -0.01em;
}
@media screen and (max-width: 600px) {
  .h3 {
    font-size: 24px;
  }
}
@media screen and (min-width: 2560px) {
  .h3 {
    font-size: 55px;
  }
}

.h4 {
  font-size: calc(
            23px + 14 * ((100vw - 600px) / 1960)
    );
  line-height: 1.35em;
  letter-spacing: -0.01em;
}
@media screen and (max-width: 600px) {
  .h4 {
    font-size: 23px;
  }
}
@media screen and (min-width: 2560px) {
  .h4 {
    font-size: 37px;
  }
}

.h5 {
  font-weight: 600;
  font-family: "Raleway", sans-serif;
  color: #F2B111;
  font-size: calc(
            20px + 16 * ((100vw - 600px) / 1960)
    );
  line-height: 1.35em;
  letter-spacing: -0.01em;
}
@media screen and (max-width: 600px) {
  .h5 {
    font-size: 20px;
  }
}
@media screen and (min-width: 2560px) {
  .h5 {
    font-size: 36px;
  }
}

.h6 {
  font-weight: 600;
  font-family: "Raleway", sans-serif;
  color: #F2B111;
  font-size: calc(
            17px + 5 * ((100vw - 600px) / 1960)
    );
  line-height: 1.35em;
  letter-spacing: -0.01S;
}
@media screen and (max-width: 600px) {
  .h6 {
    font-size: 17px;
  }
}
@media screen and (min-width: 2560px) {
  .h6 {
    font-size: 22px;
  }
}

.font-bold {
  font-family: "Raleway", sans-serif;
  font-weight: 400;
}

.font-heading {
  font-weight: 600;
  font-family: "Raleway", sans-serif;
  color: #F2B111;
}

h1,
h2,
h3,
h4 {
  font-weight: 700;
  color: #002960;
}

h5,
h6 {
  font-weight: 700;
  color: #F2B111;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.1em;
  letter-spacing: -0.01em;
}

button {
  background: none;
  border: none;
}

p,
.p,
a,
button {
  text-decoration: none;
  font-family: "Raleway", sans-serif;
  font-weight: 400;
  font-size: calc(
            16px + 7 * ((100vw - 600px) / 1960)
    );
  line-height: 2rem;
}
@media screen and (max-width: 600px) {
  p,
.p,
a,
button {
    font-size: 16px;
  }
}
@media screen and (min-width: 2560px) {
  p,
.p,
a,
button {
    font-size: 23px;
  }
}

p > strong {
  color: #343434;
  font-weight: 600;
}

a {
  color: inherit;
  display: inline-block;
}

.font-heading {
  font-weight: 600;
  font-family: "Raleway", sans-serif;
  color: #F2B111;
}

.uppercase {
  font-family: "Galano SemiBold", sans-serif;
  text-transform: uppercase;
  font-size: calc(
            13px + 3 * ((100vw - 600px) / 1960)
    );
  letter-spacing: 0.1em;
  margin-bottom: 1em;
}
@media screen and (max-width: 600px) {
  .uppercase {
    font-size: 13px;
  }
}
@media screen and (min-width: 2560px) {
  .uppercase {
    font-size: 16px;
  }
}
.uppercase + .title {
  margin-top: 0.5em;
}

.wp-block.has-text-align-right {
  text-align: left !important;
}

.wp-block.has-text-align-center {
  text-align: left !important;
}

/**
The config file should contain the configuration for the imported vendors
or other configuration for user-defined mixins, functions, etc.
*/
:root {
  --color-primary: #055eed;
  --color-secondary: #f2b111;
  --color-white: #f8f9f9;
}

/**
The _shame.scss file is to be used only for bad code that really shouldn't be put in any other file.
Using it is not recommended but is sometimes necessary.

When writing a rule in the shame file, ALWAYS put a comment above it stating specifically why it
was written, and what problem it solved. Don't be afraid to write multiple lines to explain it.
*/
.site-footer {
  display: block;
  position: relative;
  width: 100%;
  color: white;
  background-color: #131313;
  overflow: hidden;
}
.site-footer .column-container {
  display: flex;
  justify-content: space-between;
}
.site-footer .column-container .footer-column .column-content .social-icon {
  width: calc(16px + 0.45vw);
  height: calc(16px + 0.45vw);
  display: inline-block;
  margin-right: 10px;
}
@media (min-width: 1020px) {
  .site-footer .column-container .footer-column .column-content {
    min-height: 195px;
  }
}
.site-footer .column-container .footer-column.big-menu p {
  margin-top: calc(15px + 1vw);
  font-weight: 300;
  max-width: calc(230px + 15vw);
}
.site-footer .column-container .footer-column.big-menu .title {
  color: #ffffff;
  margin: 0;
}
.site-footer .column-container .footer-column.big-menu a {
  display: block;
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-size: calc(
            25px + 10 * ((100vw - 600px) / 1960)
    );
  margin-bottom: 0.2em;
  color: white;
  opacity: 1;
  transition: opacity 0.2s ease;
}
@media screen and (max-width: 600px) {
  .site-footer .column-container .footer-column.big-menu a {
    font-size: 25px;
  }
}
@media screen and (min-width: 2560px) {
  .site-footer .column-container .footer-column.big-menu a {
    font-size: 35px;
  }
}
.site-footer .column-container .footer-column.big-menu ul li a:hover {
  opacity: 0.7;
}
.site-footer .column-container .footer-column p,
.site-footer .column-container .footer-column a {
  line-height: 1.6em;
}
.site-footer .column-container .footer-column p.column-title,
.site-footer .column-container .footer-column a.column-title {
  color: white;
}
.site-footer .column-container .footer-column p.column-title svg,
.site-footer .column-container .footer-column a.column-title svg {
  width: calc(14px + 0.7vw);
  height: calc(14px + 0.7vw);
  position: relative;
  top: 4px;
  margin-right: 7px;
}
.site-footer .column-container .footer-column a {
  display: block;
  color: #F7F7F7;
  transition: color 0.2s ease;
}
.site-footer .column-container .footer-column a:hover {
  color: white;
}
.site-footer .column-title {
  margin-bottom: 0.2em;
}
.site-footer .footer-row-top {
  padding: calc(25px + 4vw) 10vw 0 10vw;
}
.site-footer .footer-row-bottom {
  padding: 30px 10vw;
}
.site-footer .footer-row-bottom p,
.site-footer .footer-row-bottom a {
  color: #ffffff;
  font-size: calc(
            14px + 4 * ((100vw - 600px) / 1960)
    );
  font-weight: 300;
}
@media screen and (max-width: 600px) {
  .site-footer .footer-row-bottom p,
.site-footer .footer-row-bottom a {
    font-size: 14px;
  }
}
@media screen and (min-width: 2560px) {
  .site-footer .footer-row-bottom p,
.site-footer .footer-row-bottom a {
    font-size: 18px;
  }
}
.site-footer .footer-row-bottom a {
  transition: color 0.2s ease;
}
.site-footer .footer-row-bottom a:hover {
  color: white;
}
@media (max-width: 1020px) {
  .site-footer .footer-row-top .column-container {
    display: block;
  }
  .site-footer .footer-row-top .column-container .footer-column {
    width: 100%;
  }
  .site-footer .footer-row-top .column-container .footer-column.big-menu {
    margin-bottom: 3em;
  }
  .site-footer .footer-row-top .column-container .footer-column.big-menu p {
    max-width: 100%;
  }
  .site-footer .column-title + a {
    margin-bottom: 3em;
  }
  .site-footer .footer-row-bottom .column-container {
    display: block;
    justify-content: normal;
  }
  .site-footer .footer-row-bottom .column-container p {
    display: block;
  }
  .site-footer .footer-row-bottom .column-container p:not(:first-of-type) {
    margin-top: 0.6em;
  }
}
.site-footer .lower-menu {
  margin-top: calc(25px + 3vw);
}
.site-footer .lower-menu .site-footer-menu .menu li {
  display: inline-block;
  vertical-align: top;
}
.site-footer .lower-menu .site-footer-menu .menu li:not(:last-child) {
  margin-right: 10px;
}
.site-footer .lower-menu .site-footer-menu a, .site-footer .lower-menu .site-footer-menu p {
  font-weight: 300;
}
@media (max-width: 600px) {
  .site-footer .lower-menu .footer-column:last-child {
    display: none;
  }
}

/**
Example: about-us page
*/
#botlekhaven-rotterdam .page-content p {
  padding: 0 10vw;
}

.page-content > p:first-child:not(.block) {
  margin-top: calc(50px + 5vw);
}
@media (max-width: 1020px) {
  .page-content > p:first-child:not(.block) {
    margin-top: 0;
  }
}
.page-content > p:last-child {
  margin-bottom: calc(50px + 5vw);
}
.page-content > p + .block {
  margin-top: calc(50px + 5vw);
}
.page-content p + .cta-banner {
  margin-top: calc(50px + 7vw);
  margin-bottom: 0;
}
.page-content > p,
.page-content ul {
  line-height: 1.6em;
  color: rgba(0, 0, 0, 0.6);
}
.page-content > p,
.page-content > h1,
.page-content > h2,
.page-content > h3,
.page-content > h4,
.page-content > h5,
.page-content > h6 {
  width: 100%;
  max-width: calc(100% - 30vw);
  margin-bottom: calc(1em + 1vw);
}
@media (max-width: 1020px) {
  .page-content > p,
.page-content > h1,
.page-content > h2,
.page-content > h3,
.page-content > h4,
.page-content > h5,
.page-content > h6 {
    padding: 0 10vw;
  }
}
.page-content > p:last-child,
.page-content > h1:last-child,
.page-content > h2:last-child,
.page-content > h3:last-child,
.page-content > h4:last-child,
.page-content > h5:last-child,
.page-content > h6:last-child {
  margin-bottom: calc(50px + 5vw);
}
@media (max-width: 1020px) {
  .page-content > p,
.page-content > h1,
.page-content > h2,
.page-content > h3,
.page-content > h4,
.page-content > h5,
.page-content > h6 {
    max-width: 100%;
  }
}
.page-content > p {
  margin-bottom: 1em;
}
.page-content > h1,
.page-content > h2,
.page-content > h3,
.page-content > h4,
.page-content > h5,
.page-content > h6 {
  margin-bottom: 1.5rem;
  line-height: 1.4rem;
}
.page-content > h1:first-child,
.page-content > h2:first-child,
.page-content > h3:first-child,
.page-content > h4:first-child,
.page-content > h5:first-child,
.page-content > h6:first-child {
  margin-top: calc(50px + 5vw);
}
.page-content > p + h1, .page-content > p + h2, .page-content > p + h3, .page-content > p + h4, .page-content > p + h5, .page-content > p + h6,
.page-content > ul + h1,
.page-content > ul + h2,
.page-content > ul + h3,
.page-content > ul + h4,
.page-content > ul + h5,
.page-content > ul + h6,
.page-content > .block + h1,
.page-content > .block + h2,
.page-content > .block + h3,
.page-content > .block + h4,
.page-content > .block + h5,
.page-content > .block + h6 {
  margin-top: calc(50px + 5vw);
}
@media (max-width: 800px) {
  .page-content > p + h1, .page-content > p + h2, .page-content > p + h3, .page-content > p + h4, .page-content > p + h5, .page-content > p + h6,
.page-content > ul + h1,
.page-content > ul + h2,
.page-content > ul + h3,
.page-content > ul + h4,
.page-content > ul + h5,
.page-content > ul + h6,
.page-content > .block + h1,
.page-content > .block + h2,
.page-content > .block + h3,
.page-content > .block + h4,
.page-content > .block + h5,
.page-content > .block + h6 {
    margin-top: 15vw;
  }
}
.page-content > p > a {
  text-decoration: underline;
}
.page-content > ul {
  list-style-type: disc;
  font-size: inherit;
}
.page-content > ul li {
  list-style-type: disc;
  list-style-position: outside;
  margin-left: 1em;
  padding-left: 0.5em;
  margin-bottom: 0.5em;
}
.page-content .button-wrapper {
  margin-top: calc(1em + 1vw);
}
.page-content .button-wrapper .button {
  margin-top: 0;
}
.page-content .single-block {
  margin: calc(50px + 5vw) 0;
}
@media (max-width: 800px) {
  .page-content .single-block {
    padding-bottom: 80%;
  }
}
.page-content .has-text-align-right {
  margin-right: auto;
  padding-left: 10vw;
  text-align: left;
  word-break: break-word;
}
.page-content p.has-text-align-right {
  max-width: calc(100% - 35vw);
}
.page-content .has-text-align-left {
  margin-right: auto;
  padding-left: 10vw;
  word-break: break-word;
}
.page-content .has-text-align-center {
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}
.page-content > p,
.page-content > ul,
.page-content > ol {
  line-height: 1.65em;
}
.page-content > p a:hover,
.page-content > ul a:hover,
.page-content > ol a:hover {
  text-decoration: underline;
}

.page-content .single-block,
.custom-post-type-content .single-block {
  display: block;
  position: relative;
  height: 36vw;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
}
.page-content .single-block:not(:last-of-type),
.custom-post-type-content .single-block:not(:last-of-type) {
  margin: calc(25px + 2.5vw) 0;
}
@media (max-width: 800px) {
  .page-content .single-block,
.custom-post-type-content .single-block {
    padding-bottom: 80%;
  }
}
.page-content .single-block.video,
.custom-post-type-content .single-block.video {
  padding-bottom: 0;
  height: 100%;
}

.custom-post-type-content {
  width: calc(100% - 40vw);
  margin: 0 auto;
  padding-top: 5vw;
  padding-bottom: 5vw;
}
.custom-post-type-content .single-page {
  margin: 0;
}
.custom-post-type-content > p:not(:last-of-type) {
  margin-bottom: calc(10px + 1.5vw);
}
.custom-post-type-content > p,
.custom-post-type-content > h1,
.custom-post-type-content > h2,
.custom-post-type-content > h3,
.custom-post-type-content > h4,
.custom-post-type-content > h5,
.custom-post-type-content > h6 {
  width: 100%;
}
.custom-post-type-content > h1,
.custom-post-type-content > h2,
.custom-post-type-content > h3,
.custom-post-type-content > h4,
.custom-post-type-content > h5,
.custom-post-type-content > h6 {
  margin-bottom: 1em;
}

@media (max-width: 1020px) {
  .custom-post-type-content {
    width: 100%;
    margin: 0;
    padding: 10vw;
  }
  .custom-post-type-content > p,
.custom-post-type-content > h1,
.custom-post-type-content > h2,
.custom-post-type-content > h3,
.custom-post-type-content > h4,
.custom-post-type-content > h5,
.custom-post-type-content > h6 {
    max-width: 100%;
  }
}
@media (max-width: 800px) {
  .custom-post-type-content {
    padding-top: 10vw;
  }
}
.usps + .cta-banner {
  margin-bottom: 0;
}

/*
$speed: 1.4s;
$speed-image-text: 1.6s;
$speed-mobile: 1s;
$delay: 0s;

.image-animation-container {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;

    // border: 2px solid black;

    .image-animation-inner {
        display: block;
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        transform: translateX(101%);
        transition: transform $speed $ease $delay;
        overflow: hidden;

        // border: 2px solid red;

        figure {
            transform: translateX(-90%) scale(1.05);
            transition: transform $speed $ease $delay;
            display: block;
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;

        }

        // @media (max-width: $site-width-landscape) {
        //     transform: translateY(-125%);
        //     transition: transform $speed-mobile $ease $delay;
        //     figure {
        //         transform: translateY(100%) scale(1.05);
        //         transition: transform $speed-mobile $ease $delay;
        //     }
        // }
    }

    .start-intro & {
        .image-animation-inner {
            transform: translateY(0%);

            figure {
                transform: translateY(0%) scale(1);
            }
        }
    }
}

.image-text {
    .image {
        &:after {
            transform: translateX(-101%);
            transition: transform $speed-image-text $ease 0.2s;
        }
    }
    .image-animation-container {
        width: calc(100% - 10vw);
        left: 10vw;

        .image-animation-inner {
            transform: translateX(-101%);
            transition: transform $speed-image-text $ease 0.4s;

            figure {
                transform: translateX(90%) scale(1.05);
                transition: transform $speed-image-text $ease 0.4s;
            }
        }
    }

    &.image-right {
        .image {
            &:after {
                transform: translateX(101%);
                transition: transform $speed-image-text $ease 0.2s;
            }
        }
        .image-animation-container {
            left: auto;

            .image-animation-inner {
                transform: translateX(101%);
                transition: transform $speed-image-text $ease 0.4s;

                figure {
                    transform: translateX(-90%) scale(1.05);
                    transition: transform $speed-image-text $ease 0.4s;
                }
            }
        }

        .in-view {
            .image-animation-inner {
                transform: translateX(0%);

                figure {
                    transform: translateX(0%) scale(1);
                }
            }

            &:after {
                transform: translateX(0%);
            }
        }
    }

    .in-view {
        .image-animation-inner {
            transform: translateX(0%);

            figure {
                transform: translateX(0%) scale(1);
            }
        }

        &:after {
            transform: translateX(0%);
        }
    }
}
*/
/**
Example: header compontent
*/
.header {
  position: static;
  top: 0;
  left: 0;
  height: auto;
  width: 100%;
  padding: 1rem;
  z-index: 100;
  display: grid;
  grid-template-rows: 45px auto;
  grid-template-columns: 1fr auto;
  grid-template-areas: "logo toggle" "navbar navbar";
  font-size: 1.25rem;
  font-weight: 700;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.16);
}
.header #logo {
  grid-area: logo;
  display: block;
  position: relative;
  height: 100%;
  width: 100%;
}
.header #logo a {
  text-decoration: none;
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 36px;
  width: auto;
}
.header input[type=checkbox] {
  display: none;
}
.header input[type=checkbox]:checked ~ nav {
  display: block;
}
@media (max-width: 800px) {
  .header input[type=checkbox]:checked ~ nav {
    margin: 5vw 6vw;
  }
  .header input[type=checkbox]:checked ~ nav ul li {
    padding: 5px 0px;
    color: #000;
  }
  .home .header input[type=checkbox]:checked ~ nav ul li {
    color: #ffffff;
  }
}
.header input[type=checkbox]:checked ~ label[for=toggle]:after {
  display: block;
  content: "";
  background-image: url("../svg/close-outline-black.svg");
  width: 45px;
  height: 45px;
}
@media (max-width: 800px) {
  .home .header input[type=checkbox]:checked ~ label[for=toggle]:after {
    background-image: url("../svg/close-outline.svg");
  }
}
.header nav {
  grid-area: navbar;
  display: none;
}
.header nav .menu-header-menu-container {
  line-height: 2;
  letter-spacing: 3;
}
@media (max-width: 800px) {
  .header nav .menu-header-menu-container .sub-menu {
    margin-left: 10px;
  }
}
.header nav .menu-header-menu-container a {
  text-decoration: none;
}
.header label[for=toggle] {
  grid-area: toggle;
}
.header label[for=toggle]:after {
  display: block;
  content: "";
  background-image: url("../svg/menu-outline-black.svg");
  width: 45px;
  height: 45px;
}
@media (max-width: 800px) {
  .home .header label[for=toggle]:after {
    background-image: url("../svg/menu-outline.svg");
  }
}
.home .header {
  position: fixed;
}
@media (max-width: 1020px) {
  .home .header {
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: saturate(180%) blur(8px);
  }
}
.home .header svg {
  height: 100%;
  width: auto;
}
.home .header svg .color-text tspan {
  fill: #fff;
  font-style: normal;
}

@media all and (min-width: 800px) {
  .header {
    padding: 1.75rem 3vw;
    width: 100%;
    background: none;
    grid-template-rows: 1fr;
    grid-template-columns: auto;
    grid-template-areas: "logo . navbar";
    box-shadow: none;
  }
  .header label[for=toggle] {
    display: none;
  }
  .header nav {
    display: block;
  }
  .header nav .menu-header-menu-container {
    display: flex;
    justify-content: flex-end;
  }
  .header nav .menu-header-menu-container > ul {
    display: inline-flex;
  }
  .header nav .menu-header-menu-container > ul li {
    margin-left: 2vw;
  }
  .header nav .menu-header-menu-container > ul li a {
    font-size: 18px;
    font-weight: 600;
    transition: color 0.5s;
    color: #000;
  }
  .header nav .menu-header-menu-container > ul li.menu-item-has-children {
    position: relative;
  }
  .header nav .menu-header-menu-container > ul li.menu-item-has-children .sub-menu {
    background: #ffffff;
    position: absolute;
    z-index: 2;
    display: block;
    left: -25px;
    pointer-events: none;
    padding: 10px 0;
    overflow: hidden;
    opacity: 0;
  }
  .header nav .menu-header-menu-container > ul li.menu-item-has-children .sub-menu li {
    display: block;
    margin-left: 0;
  }
  .header nav .menu-header-menu-container > ul li.menu-item-has-children .sub-menu li a {
    display: block;
    white-space: nowrap;
    transition: color 0.5s;
    padding: 10px 30px 10px 25px;
  }
  .header nav .menu-header-menu-container > ul li.menu-item-has-children .sub-menu li a:hover {
    color: #909090;
  }
  .header nav .menu-header-menu-container > ul li.menu-item-has-children:hover .sub-menu {
    pointer-events: visible;
    opacity: 1;
  }
  .header nav .menu-header-menu-container > ul li a:hover {
    color: #909090;
  }
  .header nav .menu-header-menu-container > ul li.current-menu-item a {
    color: #F2B111;
  }
  .header nav .menu-header-menu-container > ul li.current-menu-parent > a {
    color: #F2B111;
  }
  .home .header {
    position: fixed;
    width: 100%;
  }
  .home .header .menu-header-menu-container > ul li a {
    color: #ffffff;
  }
  .home .header .menu-header-menu-container > ul li.menu-item-has-children .sub-menu {
    background: none;
    padding: 0;
    color: #ffffff;
  }
  .home .header .menu-header-menu-container > ul li a:hover {
    color: #ffffff;
  }
}
.default-intro {
  display: block;
  position: relative;
  padding: 10vw 10vw;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
}
@media (max-width: 1020px) {
  .default-intro {
    padding: 15vw 10vw;
  }
}
.default-intro:before {
  z-index: 1;
  content: "";
  position: absolute;
  display: block;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 41, 96, 0.75);
}
.default-intro .text-wrapper {
  z-index: 1;
  position: relative;
  word-break: break-word;
}
.default-intro .text-wrapper .title {
  line-height: 1.35em;
  margin: 0.5em 0;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #ffffff;
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  max-width: calc(55% + 2vw);
}
.default-intro .text-wrapper .subtitle {
  margin-bottom: 1em;
  font-size: calc(
            12px + 4 * ((100vw - 600px) / 1960)
    );
}
@media screen and (max-width: 600px) {
  .default-intro .text-wrapper .subtitle {
    font-size: 12px;
  }
}
@media screen and (min-width: 2560px) {
  .default-intro .text-wrapper .subtitle {
    font-size: 16px;
  }
}
.default-intro .text-wrapper .text {
  margin-top: calc(15px + 1em);
  color: #ffffff;
  line-height: 1.4em;
  font-weight: 200;
  font-size: calc(
            18px + 10 * ((100vw - 600px) / 1960)
    );
  max-width: calc(340px + 23vw);
  font-family: "Raleway", sans-serif;
  font-weight: 200;
}
@media screen and (max-width: 600px) {
  .default-intro .text-wrapper .text {
    font-size: 18px;
  }
}
@media screen and (min-width: 2560px) {
  .default-intro .text-wrapper .text {
    font-size: 28px;
  }
}
@media (min-width: 1020px) {
  .default-intro .image {
    z-index: 1;
    display: block;
    position: absolute;
    top: 4vw;
    right: 10vw;
    width: 40%;
    height: 100%;
  }
}
@media (max-width: 1020px) {
  .default-intro .text-wrapper .title {
    max-width: 100%;
  }
  .default-intro .text-wrapper .text {
    line-height: 1.75em;
  }
}

#home {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}
#home .slides {
  display: flex;
  flex-direction: column;
  min-width: 100%;
  height: auto;
}
#home .slides .slide {
  position: relative;
  width: 100%;
  min-height: 33vh;
}
#home .slides .slide .scroll-container p, #home .slides .slide .text-wrapper p {
  font-size: calc(
            19px + 15 * ((100vw - 600px) / 1960)
    );
  line-height: 1.6em;
}
@media screen and (max-width: 600px) {
  #home .slides .slide .scroll-container p, #home .slides .slide .text-wrapper p {
    font-size: 19px;
  }
}
@media screen and (min-width: 2560px) {
  #home .slides .slide .scroll-container p, #home .slides .slide .text-wrapper p {
    font-size: 34px;
  }
}
#home .slides .slide .scroll-container p strong, #home .slides .slide .text-wrapper p strong {
  margin-top: 2rem;
  color: #ffffff;
}
#home .slides .slide:last-child {
  overflow: hidden;
}
#home .slides .slide img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(50%);
  z-index: 0;
}
#home .slides .slide.slide-one {
  position: relative;
}
@media (max-width: 1020px) {
  #home .slides .slide.slide-one {
    height: 100vh;
  }
}
@media (max-width: 1020px) {
  #home .slides .slide.slide-one .scroll-container-mobile .scroll-indicator-animation {
    position: absolute;
    width: 2px;
    height: 80px;
    transition: opacity 1s cubic-bezier(0.73, 0.52, 0, 0.85) 4.5s;
    z-index: 11;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }
  #home .slides .slide.slide-one .scroll-container-mobile .scroll-indicator-animation:before {
    content: "";
    position: absolute;
    display: block;
    left: 0;
    top: 0;
    width: 2px;
    height: 100%;
    background-color: #F2B111;
    animation: scroll-line-animation-mobile 3.3s infinite;
  }
}
#home .slides .slide.slide-one:after {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(65deg, rgba(5, 94, 237, 0.24), rgba(0, 94, 237, 0.26), rgba(0, 0, 0, 0.56));
}
#home .slides .slide.slide-one .content-one {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  height: 100%;
  color: var(--color-white);
  font-weight: 400;
  z-index: 10;
  padding: 10vw;
}
#home .slides .slide.slide-one .content-one .text-wrapper {
  position: relative;
  width: 62vw;
}
@media (min-width: 1020px) {
  #home .slides .slide.slide-one .content-one .text-wrapper {
    padding-bottom: 7vw;
  }
}
#home .slides .slide.slide-one .content-one .text-wrapper .scroll-container {
  position: absolute;
  bottom: 0;
  z-index: 10;
  display: inline-block;
}
#home .slides .slide.slide-one .content-one .text-wrapper .scroll-container p {
  font-weight: 600;
  color: #ffffff;
  position: relative;
}
#home .slides .slide.slide-one .content-one .text-wrapper .scroll-container .scroll-indicator-animation {
  position: absolute;
  bottom: 9px;
  width: 100%;
  height: 7px;
  transition: opacity 1s cubic-bezier(0.73, 0.52, 0, 0.85) 4.5s;
  z-index: -1;
}
#home .slides .slide.slide-one .content-one .text-wrapper .scroll-container .scroll-indicator-animation:before {
  content: "";
  position: absolute;
  display: block;
  left: 0;
  top: 0;
  width: 5px;
  height: 100%;
  background-color: #F2B111;
  animation: scroll-line-animation 3.3s infinite;
}
#home .slides .slide.slide-one .content-one .text-wrapper .title {
  color: #fff;
  margin-bottom: 2.5rem;
}
#home .slides .slide.slide-one .content-one .text-wrapper p strong {
  display: block;
}
@media (max-width: 1020px) {
  #home .slides .slide.slide-one .content-one .text-wrapper {
    width: 100%;
  }
}
#home .slides .slide.slide-two:after {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(65deg, rgba(5, 94, 237, 0.35), rgba(0, 94, 237, 0.17), rgba(0, 0, 0, 0.17));
}
#home .slides .slide.slide-two .content-two {
  display: flex;
  justify-content: center;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  color: var(--color-white);
  font-weight: 400;
  z-index: 10;
  padding: 10vw;
}
#home .slides .slide.slide-two .content-two .text-wrapper {
  overflow: hidden;
  position: relative;
  width: 50%;
}
@media (min-width: 1020px) {
  #home .slides .slide.slide-two .content-two .text-wrapper:first-child {
    padding-right: 5vw;
  }
  #home .slides .slide.slide-two .content-two .text-wrapper:last-child {
    padding-left: 15vw;
  }
}
#home .slides .slide.slide-two .content-two .text-wrapper .header-text {
  margin-bottom: 2rem;
}
#home .slides .slide.slide-two .content-two .text-wrapper .header-text .title {
  color: #ffffff;
  display: block;
  margin: 0.15em 0;
}
#home .slides .slide.slide-two .content-two .text-wrapper .header-text .subtitle {
  text-transform: none;
  font-size: calc(
            15px + 3 * ((100vw - 600px) / 1960)
    );
}
@media screen and (max-width: 600px) {
  #home .slides .slide.slide-two .content-two .text-wrapper .header-text .subtitle {
    font-size: 15px;
  }
}
@media screen and (min-width: 2560px) {
  #home .slides .slide.slide-two .content-two .text-wrapper .header-text .subtitle {
    font-size: 18px;
  }
}
@media (max-width: 1020px) {
  #home .slides .slide.slide-two .content-two .text-wrapper .header-text .subtitle {
    max-width: 215px;
  }
}
#home .slides .slide.slide-two .content-two .text-wrapper .project-list li, #home .slides .slide.slide-two .content-two .text-wrapper .project-list span a {
  font-size: calc(
            18px + 4 * ((100vw - 600px) / 1960)
    );
}
@media screen and (max-width: 600px) {
  #home .slides .slide.slide-two .content-two .text-wrapper .project-list li, #home .slides .slide.slide-two .content-two .text-wrapper .project-list span a {
    font-size: 18px;
  }
}
@media screen and (min-width: 2560px) {
  #home .slides .slide.slide-two .content-two .text-wrapper .project-list li, #home .slides .slide.slide-two .content-two .text-wrapper .project-list span a {
    font-size: 22px;
  }
}
#home .slides .slide.slide-two .content-two .text-wrapper .project-list li {
  font-weight: 600;
}
#home .slides .slide.slide-two .content-two .text-wrapper .project-list span {
  font-weight: 300;
  display: block;
}
#home .slides .slide.slide-two .content-two .text-wrapper .project-list span:not(#home .slides .slide.slide-two .content-two .text-wrapper .project-list span:last-child) {
  margin-bottom: 1.5rem;
}
#home .slides .slide.slide-two .content-two .text-wrapper.center p {
  position: relative;
}
@media (min-width: 1020px) {
  #home .slides .slide.slide-two .content-two .text-wrapper.center p {
    top: 50%;
    transform: translateY(-50%);
  }
}
@media (max-width: 1020px) {
  #home .slides .slide.slide-two .content-two {
    padding: 20vw 10vw;
    display: block;
    transform: translateY(0);
    top: 0;
  }
  #home .slides .slide.slide-two .content-two .text-wrapper {
    width: 100%;
    padding-left: 0;
  }
  #home .slides .slide.slide-two .content-two .text-wrapper .header-text .title {
    margin: 0.4em 0;
  }
  #home .slides .slide.slide-two .content-two .text-wrapper:last-child {
    margin-top: 15vw;
  }
}
#home .slides .slide.slide-third {
  background-color: #F2B111;
}
#home .slides .slide.slide-third .content-third {
  display: flex;
  position: relative;
  height: 100%;
  color: var(--color-white);
  font-weight: 400;
  z-index: 10;
}
#home .slides .slide.slide-third .content-third .container {
  position: relative;
}
@media (min-width: 1020px) {
  #home .slides .slide.slide-third .content-third .container:first-child {
    width: 55%;
  }
  #home .slides .slide.slide-third .content-third .container:last-child {
    width: 45%;
  }
}
#home .slides .slide.slide-third .content-third .container .text-wrapper {
  position: relative;
  top: 50%;
  transform: translateY(-55%);
  padding: 0 6vw;
}
#home .slides .slide.slide-third .content-third .container .text-wrapper .title {
  color: #ffffff;
  margin-bottom: calc(15px + 1.5rem);
}
#home .slides .slide.slide-third .content-third .container .text-wrapper section:not(:last-of-type) {
  padding-bottom: 3rem;
}
#home .slides .slide.slide-third .content-third .container .text-wrapper section .title {
  font-size: calc(
            27px + 8 * ((100vw - 600px) / 1960)
    );
  color: #ffffff;
  margin-bottom: 1.25rem;
  line-height: 1.35em;
}
@media screen and (max-width: 600px) {
  #home .slides .slide.slide-third .content-third .container .text-wrapper section .title {
    font-size: 27px;
  }
}
@media screen and (min-width: 2560px) {
  #home .slides .slide.slide-third .content-third .container .text-wrapper section .title {
    font-size: 35px;
  }
}
#home .slides .slide.slide-third .content-third .container .text-wrapper section .text {
  font-size: calc(
            16px + 4 * ((100vw - 600px) / 1960)
    );
  color: #000;
  max-width: calc(435px + 2vw);
  font-weight: 300;
}
@media screen and (max-width: 600px) {
  #home .slides .slide.slide-third .content-third .container .text-wrapper section .text {
    font-size: 16px;
  }
}
@media screen and (min-width: 2560px) {
  #home .slides .slide.slide-third .content-third .container .text-wrapper section .text {
    font-size: 20px;
  }
}
#home .slides .slide.slide-third .content-third .container.image {
  top: 0;
  left: 0;
  height: 89%;
  width: 60%;
}
@media (min-width: 1020px) {
  #home .slides .slide.slide-third .content-third .container.image:after {
    left: 0;
    top: 0;
    content: "";
    display: block;
    box-shadow: 27px 47px 59px rgba(0, 0, 0, 0.18);
    position: absolute;
    width: 100%;
    height: 100%;
  }
  #home .slides .slide.slide-third .content-third .container.image:before {
    content: "";
    display: block;
    position: absolute;
    right: -11px;
    bottom: -12px;
    width: 0;
    border-bottom: calc(120px + 4vw) solid #000;
    border-left: calc(120px + 4vw) solid transparent;
    z-index: -1;
  }
}
#home .slides .slide.slide-third .content-third .container.image p {
  z-index: 10;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: calc(
            20px + 14 * ((100vw - 600px) / 1960)
    );
  line-height: 1.6em;
}
@media screen and (max-width: 600px) {
  #home .slides .slide.slide-third .content-third .container.image p {
    font-size: 20px;
  }
}
@media screen and (min-width: 2560px) {
  #home .slides .slide.slide-third .content-third .container.image p {
    font-size: 34px;
  }
}
#home .slides .slide.slide-third .content-third .container.image p strong {
  font-weight: 600;
  color: #ffffff;
}
#home .slides .slide.slide-third .content-third .container.image figure {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
#home .slides .slide.slide-third .content-third .container.image figure:before {
  content: "";
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.53);
}
@media (max-width: 1020px) {
  #home .slides .slide.slide-third .content-third {
    display: block;
  }
  #home .slides .slide.slide-third .content-third .container .text-wrapper {
    padding: 15vw 10vw;
    transform: translateY(0);
    top: 0;
  }
  #home .slides .slide.slide-third .content-third .container.image {
    height: 100%;
    width: auto;
    padding-bottom: 90%;
  }
  #home .slides .slide.slide-third .content-third .container.image p {
    transform: translate(0%, -50%);
    left: 0;
    padding: 10vw;
    text-align: center;
  }
}
@media (min-height: 768px) {
  #home .slides .slide.slide-third .content-third .container:first-child, #home .slides .slide.slide-third .content-third .container:last-child {
    width: 50% !important;
  }
  #home .slides .slide.slide-third .content-third .container .text-wrapper {
    transform: translateY(-50%) !important;
  }
  #home .slides .slide.slide-third .content-third .container section:not(:last-of-type) {
    padding-bottom: 1rem !important;
  }
}
#home .dots {
  position: fixed;
  z-index: 30;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
}
#home .dots li {
  list-style: none;
  margin: 0 10px;
  cursor: pointer;
}
#home .dots li.is-active span {
  background: gray;
}
#home .dots li span {
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid var(--color-white);
}

@media (min-width: 600px) {
  .home footer {
    display: none;
  }
}

@media all and (min-width: 1020px) {
  #home .slides {
    flex-direction: row;
    width: 303vw;
    /* Use vw as a fallback for browsers that do not support Custom Properties */
    width: calc(var(--vw) + var(--vw) / 100);
    height: 100vh;
    /* Use vh as a fallback for browsers that do not support Custom Properties */
    height: calc(var(--vh, 1vh) * 100);
  }
  #home .slides .content {
    font-size: 1.35rem;
  }
}
@media all and (min-width: 1020px) {
  #home .slides .content {
    max-width: 65vw;
    font-size: 1.65rem;
  }
}
@keyframes scroll-line-animation {
  0% {
    width: 0;
    transform: translateX(5px);
  }
  62% {
    width: 100%;
    transform: translateX(5px);
    opacity: 1;
  }
  82% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    width: 0%;
  }
}
@keyframes scroll-line-animation-mobile {
  0% {
    height: 0;
  }
  62% {
    height: 100%;
    opacity: 1;
  }
  82% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    height: 0;
  }
}
@media (max-width: 1020px) {
  .scroll-container {
    display: none !important;
  }
}
@media (min-width: 1020px) {
  .scroll-container-mobile {
    display: none !important;
  }
}
.button,
button,
input[type=submit] {
  cursor: pointer;
  position: relative;
  padding: 0 calc(30px + 1vw);
  font-size: 16px;
  min-width: calc(120px + 4vw);
  line-height: 3em !important;
  text-align: center;
  letter-spacing: 1px;
  text-decoration: none;
  color: white;
  background: #1b4168;
  transition: ease-out 0.5s;
  border: none;
  /* Removes the default beveled border */
  box-shadow: none;
  /* Eliminates any shadow causing the 3D effect */
  min-height: auto !important;
}

.button:hover {
  color: white;
  transition: transform 0.9s, cubic-bezier(0.74, 0.43, 0.03, 0.87) 0.9s, background-color 0.3s;
  box-shadow: inset 0 -180px 0 0 black;
}

.cta-block .inner {
  display: block;
  position: relative;
  width: 100%;
  padding: calc(25px + 5vw) 10vw;
  background-color: #f2f4f7;
  z-index: 0;
  overflow: hidden;
}
#over-ons .cta-block .inner {
  padding: 0 10vw 0 10vw;
}
#over-ons .cta-block .inner .image figure {
  background-position: 0 5px;
}
#over-ons .cta-block .inner .image:before {
  content: none;
}
#over-ons .cta-block .inner .text-wrapper {
  padding: 7vw 0 7vw 4vw;
}
.cta-block .inner:before {
  content: "";
  position: absolute;
  width: 100%;
  height: calc(100px + 9vw);
  right: 0;
  bottom: 0;
  background-color: #f2b111;
  -webkit-transform-origin: bottom right;
  transform-origin: bottom right;
  transform: translateX(15%) translateY(-62%) rotate(-40deg);
}
@media (max-width: 1020px) {
  .cta-block .inner:before {
    content: none;
  }
}
.cta-block.align-right .inner:before {
  background-color: red;
  left: 0;
  right: auto;
  transform-origin: bottom left;
  transform: translateX(-10%) translateY(-62%) rotate(40deg);
  height: calc(25px + 8vw);
  background-color: #eef0f2;
}
.cta-block .image-text {
  display: block;
  position: relative;
  width: 100%;
  font-size: 0;
}
.cta-block .image-text .image,
.cta-block .image-text .text-wrapper {
  display: block;
  width: 50%;
}
.cta-block .image-text .text-wrapper {
  position: relative;
  padding: 5vw 0 5vw 8vw;
  margin-left: auto;
}
.cta-block .image-text .text-wrapper .subtitle {
  opacity: 0.5;
  margin-bottom: 2em;
}
.cta-block .image-text .text-wrapper .title {
  margin-top: 0.3em;
  margin-bottom: 0.5em;
  font-weight: 600;
}
.cta-block .image-text .text-wrapper .text p {
  color: #7b7b7b;
}
.cta-block .image-text .text-wrapper .text p:not(:last-child) {
  margin-bottom: 1.1rem;
}
.cta-block .image-text .text-wrapper .button {
  display: inline-block;
  vertical-align: top;
  margin-top: 3em;
}
.cta-block .image-text .text-wrapper .button:not(:last-of-type) {
  margin-right: 1em;
}
.cta-block .image-text .image {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
}
.cta-block .image-text .image:before {
  content: "";
  display: block;
  position: absolute;
  right: -11px;
  bottom: -12px;
  width: 0;
  border-bottom: calc(120px + 4vw) solid #002960;
  border-left: calc(120px + 4vw) solid #e8e8e8;
  box-shadow: 10px 10px 27px 3px rgba(0, 0, 0, 0.15);
}
@media (max-width: 800px) {
  .cta-block .image-text .image:before {
    content: none;
  }
}
.cta-block .image-text .image figure {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.cta-block.align-right {
  margin: calc(15px + 1.5vw);
}
.cta-block.align-right .inner {
  padding: 5vw;
}
.cta-block.align-right .image {
  left: auto;
  right: 0;
}
.cta-block.align-right .image figure {
  right: 0;
  left: auto;
}
.cta-block.align-right .text-wrapper {
  margin-left: 0;
  margin-right: auto;
  padding: 5vw 8vw 5vw 0;
}
@media (max-width: 1020px) {
  .cta-block {
    margin: 0;
  }
  .cta-block.align-right {
    color: red;
    display: flex;
    flex-flow: column;
  }
  .cta-block .image-text .image {
    position: relative;
    width: 100%;
    height: 100%;
    order: 1;
  }
  .cta-block .image-text .image figure {
    position: relative;
    padding-top: 100%;
  }
  .cta-block .image-text .text-wrapper {
    order: 2;
    width: 100%;
    padding: 10vw 0 0;
  }
}
#werken-bij .cta-block .inner {
  background: none;
}
#werken-bij .cta-block .inner:before {
  content: none;
}
#werken-bij .cta-block .inner .title {
  font-size: calc(
            26px + 7 * ((100vw - 600px) / 1960)
    );
}
@media screen and (max-width: 600px) {
  #werken-bij .cta-block .inner .title {
    font-size: 26px;
  }
}
@media screen and (min-width: 2560px) {
  #werken-bij .cta-block .inner .title {
    font-size: 33px;
  }
}
#werken-bij .cta-block .inner .image-text .image:before {
  border-bottom-color: #F2B111;
}

.usps {
  display: block;
  position: relative;
  width: 100%;
}

#visie .usp:first-child .title::after {
  content: attr(data-end);
  color: #8bc34a;
}

.usp {
  position: relative;
  width: 100%;
  display: block;
  overflow: hidden;
  background-color: #F7F7F7;
}
.usp .image,
.usp .text-wrapper {
  width: 50%;
}
.usp .text-wrapper {
  position: relative;
  padding: 8vw;
  margin-left: auto;
}
.usp .text-wrapper .title {
  margin-top: 0.3em;
  margin-bottom: 0.8em;
  color: #002960;
}
.usp .text-wrapper .text {
  color: #9d9d9d;
}
.usp .text-wrapper .button {
  display: inline-block;
  vertical-align: top;
  margin-top: 3em;
}
.usp .text-wrapper .button:not(:last-of-type) {
  margin-right: 1em;
}
.usp .image {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 50%;
}
.usp .image:before {
  content: "";
  background-color: rgba(12, 41, 17, 0.18);
  z-index: 1;
  position: absolute;
  display: block;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.usp .image figure {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.usp:nth-child(even) {
  background-color: white;
}
.usp:nth-child(even) .image {
  left: auto;
  right: 0;
}
.usp:nth-child(even) .image figure {
  right: 0;
  left: auto;
}
.usp:nth-child(even) .text-wrapper {
  margin-left: 0;
  margin-right: auto;
}

@media (max-width: 800px) {
  .usp {
    padding-bottom: calc(25px + 5vw);
  }
  .usp .text-wrapper {
    width: 100%;
    padding: 10vw;
  }
  .usp .image {
    position: relative;
    width: 80%;
    height: auto;
    padding-bottom: 80%;
    margin-left: 10%;
  }
  .usp .image figure {
    width: 100%;
    top: 0;
    left: 0;
    background-color: #f2f4f7;
  }
}
.cta-dual {
  display: flex;
  position: relative;
  width: 100%;
}
.cta-dual .cta-container {
  width: 50%;
  position: relative;
  overflow: hidden;
  color: #061E38;
}
.cta-dual .cta-container:before {
  content: "";
  z-index: 2;
  position: absolute;
  display: block;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.cta-dual .cta-container:first-child:before {
  background-color: rgba(242, 177, 17, 0.83);
}
.cta-dual .cta-container:last-child:before {
  background-color: rgba(12, 41, 71, 0.83);
}
.cta-dual .cta-container .image {
  z-index: 1;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.cta-dual .cta-container figure {
  z-index: 1;
  transition: transform 5s cubic-bezier(0.22, 1.18, 1, 1.14);
}
.cta-dual .cta-container .text-wrapper {
  z-index: 2;
  display: block;
  position: relative;
  width: 100%;
  padding: calc(50px + 5vw) 10vw;
}
.cta-dual .cta-container .text-wrapper .subtitle {
  color: #061E38;
}
.cta-dual .cta-container .text-wrapper .title {
  max-width: calc(280px + 8vw);
  line-height: 1.2em;
  margin-top: 0.5em;
  margin-bottom: 0.8em;
  display: block;
  font-size: calc(
            34px + 16 * ((100vw - 600px) / 1960)
    );
  font-weight: 500;
}
@media screen and (max-width: 600px) {
  .cta-dual .cta-container .text-wrapper .title {
    font-size: 34px;
  }
}
@media screen and (min-width: 2560px) {
  .cta-dual .cta-container .text-wrapper .title {
    font-size: 50px;
  }
}
.cta-dual .cta-container .text-wrapper .text {
  margin-bottom: 1.7em;
  max-width: calc(300px + 4vw);
  font-size: calc(
            18px + 5 * ((100vw - 600px) / 1960)
    );
}
@media screen and (max-width: 600px) {
  .cta-dual .cta-container .text-wrapper .text {
    font-size: 18px;
  }
}
@media screen and (min-width: 2560px) {
  .cta-dual .cta-container .text-wrapper .text {
    font-size: 23px;
  }
}
.cta-dual .cta-container:hover .figure {
  transform: scale(1.06);
}
.cta-dual .cta-container:last-child {
  color: #ffffff;
}
.cta-dual .cta-container:last-child .title {
  color: #ffffff;
}
.cta-dual .cta-container:last-child .subtitle {
  color: #F2B111;
}
.cta-dual .cta-container:last-child .button:before {
  background-color: #e2a40c;
}
.cta-dual .cta-container:last-child .button:after {
  background-color: #F2B111;
}
@media (max-width: 800px) {
  .cta-dual {
    display: block;
  }
  .cta-dual .cta-container {
    width: 100%;
  }
  .cta-dual .cta-container .text-wrapper {
    max-width: calc(600px + 20vw);
  }
  .cta-dual .cta-container .text-wrapper .title {
    width: 100%;
  }
}

/**/
.blurb {
  display: flex;
  flex-direction: row;
  position: relative;
  width: 100%;
  padding: 0 8vw;
  margin: calc(50px + 5vw) 0;
}
.blurb .thumbnail-blurb {
  display: flex;
  flex-direction: column;
  flex: 50%;
  position: relative;
  overflow: hidden;
}
.blurb .thumbnail-blurb:first-child {
  margin-right: 10vw;
}
.blurb .thumbnail-blurb .title {
  line-height: 1.2em;
  font-weight: 500;
  margin: 2vw;
  color: #003B89;
  position: relative;
  z-index: 0;
  padding: 25px;
  box-shadow: -2px 6px 38px 1px rgba(0, 0, 0, 0.08);
}
.blurb .thumbnail-blurb .text {
  margin: 1rem 2vw 2.35rem 2vw;
}
.blurb .thumbnail-blurb .link {
  font-weight: 500;
  display: block;
  position: relative;
  color: #003B89;
  margin-left: 2vw;
  text-decoration: none;
  align-self: flex-start;
  margin-top: auto;
}
.blurb .thumbnail-blurb:hover .figure {
  transform: scale(1.06);
}
@media (max-width: 800px) {
  .blurb {
    display: block;
    width: 100%;
    padding: 0 10vw 0 6vw;
  }
  .blurb .thumbnail-blurb {
    width: 100%;
    margin-bottom: 10vw;
  }
  .blurb .thumbnail-blurb .title {
    margin: 4vw;
  }
  .blurb .thumbnail-blurb .text {
    margin-left: 4vw;
  }
  .blurb .thumbnail-blurb .link {
    margin-left: 5vw;
  }
}

.cta-banner {
  display: flex;
  position: relative;
  width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-bottom: calc(50px + 5vw);
}
.cta-banner:before {
  content: "";
  z-index: 0;
  position: absolute;
  display: block;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.9);
}
.cta-banner .cta-container {
  padding: calc(50px + 5vw) 5vw calc(50px + 5vw) 10vw;
  position: relative;
  overflow: hidden;
  z-index: 0;
}
.cta-banner .cta-container .title {
  margin-bottom: 1.9rem;
  display: block;
  font-weight: 500;
  color: #F2B111;
}
.cta-banner .cta-container .text {
  margin-bottom: 2.7rem;
  font-size: calc(
            16px + 7 * ((100vw - 600px) / 1960)
    );
  color: #000;
  font-weight: 300;
  line-height: 1.75em;
  max-width: calc(670px + 27vw);
}
@media screen and (max-width: 600px) {
  .cta-banner .cta-container .text {
    font-size: 16px;
  }
}
@media screen and (min-width: 2560px) {
  .cta-banner .cta-container .text {
    font-size: 23px;
  }
}
.cta-banner .cta-container .button:after {
  background-color: #003B89;
}
.cta-banner figure {
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
  width: 50%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 800px) {
  .cta-banner {
    display: block;
  }
  .cta-banner .cta-container {
    width: 100%;
  }
  .cta-banner .cta-container .text-wrapper {
    max-width: calc(600px + 20vw);
  }
  .cta-banner .cta-container .text-wrapper .title {
    width: 100%;
  }
}
#werken-bij .cta-banner {
  background-color: #1a3e70;
  margin-bottom: 0;
}
#werken-bij .cta-banner:before {
  content: none;
}
#werken-bij .cta-banner .text, #werken-bij .cta-banner .title {
  color: #ffffff;
}
#werken-bij .cta-banner .title {
  font-size: calc(
            28px + 10 * ((100vw - 600px) / 1960)
    );
  max-width: calc(370px + 7vw);
}
@media screen and (max-width: 600px) {
  #werken-bij .cta-banner .title {
    font-size: 28px;
  }
}
@media screen and (min-width: 2560px) {
  #werken-bij .cta-banner .title {
    font-size: 38px;
  }
}
#werken-bij .cta-banner .button {
  background-color: #1a3e70;
  border: 3px solid #ffffff;
}
#werken-bij .cta-banner .cta-container {
  width: 50%;
  margin-right: auto;
}
@media (max-width: 800px) {
  #werken-bij .cta-banner .cta-container {
    width: 100%;
    padding: 10vw;
  }
}

/**/
.milestones {
  display: flex;
  flex-direction: row;
  position: relative;
  width: 100%;
  padding: 0 10vw;
  margin: calc(50px + 5vw) 0;
}
.milestones .milestone-wrapper {
  display: flex;
  flex-direction: column;
  flex: 50%;
  position: relative;
  overflow: hidden;
  padding: calc(25px + 1.4vw) calc(20px + 1.8vw);
  box-shadow: -2px 6px 38px 1px rgba(0, 0, 0, 0.08);
}
.milestones .milestone-wrapper:first-child {
  margin-right: 10vw;
}
.milestones .milestone-wrapper .upper-header {
  display: flex;
  position: relative;
  margin-bottom: 1.2rem;
}
.milestones .milestone-wrapper .upper-header .title {
  position: relative;
  line-height: 1.2em;
  font-weight: 500;
  color: #003B89;
  z-index: 0;
  font-size: calc(
            21px + 13 * ((100vw - 600px) / 1960)
    );
}
@media screen and (max-width: 600px) {
  .milestones .milestone-wrapper .upper-header .title {
    font-size: 21px;
  }
}
@media screen and (min-width: 2560px) {
  .milestones .milestone-wrapper .upper-header .title {
    font-size: 34px;
  }
}
.milestones .milestone-wrapper .upper-header .subtitle {
  order: 1;
  color: #003B89;
  font-weight: 400;
  margin: 5px 0 5px 2em;
  position: relative;
  line-height: 1.1em;
  font-size: calc(
            17px + 5 * ((100vw - 600px) / 1960)
    );
}
@media screen and (max-width: 600px) {
  .milestones .milestone-wrapper .upper-header .subtitle {
    font-size: 17px;
  }
}
@media screen and (min-width: 2560px) {
  .milestones .milestone-wrapper .upper-header .subtitle {
    font-size: 22px;
  }
}
.milestones .milestone-wrapper .upper-header .subtitle:before {
  content: "";
  border: 1px;
  background-color: #F2B111;
  display: block;
  height: calc(14px + 0.6vw);
  width: 4px;
  left: -20px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.milestones .milestone-wrapper .text {
  max-width: calc(480px + 5vw);
}
.milestones .milestone-wrapper:hover .figure {
  transform: scale(1.06);
}
@media (max-width: 1020px) {
  .milestones {
    display: block;
    width: 100%;
    padding: 0 10vw 0 10vw;
  }
  .milestones .milestone-wrapper {
    width: 100%;
    margin-bottom: calc(50px + 5vw);
    padding: 0;
    box-shadow: none;
  }
}

.certificates {
  position: relative;
  width: 100%;
  padding: 0 7vw;
  margin-top: calc(25px + 3vw);
}
.certificates .certificates-title {
  margin-top: 0;
  margin-bottom: calc(15px + 1vw);
  font-size: calc(
            23px + 5 * ((100vw - 600px) / 1960)
    );
  padding-left: 3vw;
  font-weight: 600;
}
@media screen and (max-width: 600px) {
  .certificates .certificates-title {
    font-size: 23px;
  }
}
@media screen and (min-width: 2560px) {
  .certificates .certificates-title {
    font-size: 28px;
  }
}
.certificates .certificates-wrapper {
  display: flex;
  flex-wrap: wrap;
}
.certificates .certificates-wrapper .certificate {
  width: 33.3333333333%;
  position: relative;
  padding: 0 3vw;
  margin-bottom: calc(25px + 3vw);
  display: flex;
  flex-direction: column;
}
.certificates .certificates-wrapper .certificate:nth-child(3n+1) {
  clear: both;
}
.certificates .certificates-wrapper .certificate .title {
  position: relative;
  max-width: 100%;
  line-height: 1.3em;
  font-weight: 400;
  color: #000;
  z-index: 0;
  font-size: calc(
            22px + 4 * ((100vw - 600px) / 1960)
    );
  margin-bottom: calc(10px + 0.5vw);
  word-break: break-word;
}
@media screen and (max-width: 600px) {
  .certificates .certificates-wrapper .certificate .title {
    font-size: 22px;
  }
}
@media screen and (min-width: 2560px) {
  .certificates .certificates-wrapper .certificate .title {
    font-size: 26px;
  }
}
.certificates .certificates-wrapper .certificate .text {
  max-width: calc(520px + 5vw);
}
.certificates .certificates-wrapper .certificate .read-more-button {
  color: #061E38;
}
.certificates .certificates-wrapper .certificate .link {
  color: #002960;
  padding-top: 1.1rem;
  align-self: flex-start;
  margin-top: auto;
}
@media (min-width: 800px) and (max-width: 1820px) {
  .certificates .certificates-wrapper .certificate {
    width: 50%;
    margin-bottom: calc(50px + 5vw);
    padding: 0 3vw;
  }
}
@media (max-width: 800px) {
  .certificates .certificates-title {
    padding-left: 0;
  }
  .certificates .certificates-wrapper .certificate {
    width: 100%;
    margin-bottom: calc(50px + 5vw);
    padding: 0;
  }
}

.documents {
  position: relative;
  width: 100%;
  padding: 0 7vw;
  padding-top: calc(25px + 3vw);
}
.documents:nth-of-type(even) {
  background: #F2F4F7;
}
.documents .documents-title {
  margin-top: 0;
  margin-bottom: calc(15px + 1vw);
  font-size: calc(
            23px + 5 * ((100vw - 600px) / 1960)
    );
  padding-left: 3vw;
  font-weight: 600;
}
@media screen and (max-width: 600px) {
  .documents .documents-title {
    font-size: 23px;
  }
}
@media screen and (min-width: 2560px) {
  .documents .documents-title {
    font-size: 28px;
  }
}
.documents .documents-wrapper {
  display: flex;
  flex-wrap: wrap;
}
.documents .documents-wrapper .document {
  width: 25%;
  position: relative;
  padding: 0 3vw;
  display: flex;
  flex-direction: column;
  padding-bottom: calc(25px + 3vw);
}
.documents .documents-wrapper .document:nth-child(3n+1) {
  clear: both;
}
.documents .documents-wrapper .document .title {
  position: relative;
  max-width: 100%;
  line-height: 1.3em;
  font-weight: 400;
  color: #000;
  z-index: 0;
  font-size: calc(
            17px + 5 * ((100vw - 600px) / 1960)
    );
  word-break: break-word;
}
@media screen and (max-width: 600px) {
  .documents .documents-wrapper .document .title {
    font-size: 17px;
  }
}
@media screen and (min-width: 2560px) {
  .documents .documents-wrapper .document .title {
    font-size: 22px;
  }
}
.documents .documents-wrapper .document .title .document-year {
  color: #002960;
  display: inline-block;
}
.documents .documents-wrapper .document .text {
  max-width: calc(520px + 5vw);
}
.documents .documents-wrapper .document .read-more-button {
  color: #061E38;
}
.documents .documents-wrapper .document .link {
  color: #002960;
  padding-top: 1.1rem;
  align-self: flex-start;
  margin-top: auto;
}
@media (min-width: 1020px) and (max-width: 1820px) {
  .documents .documents-wrapper .document {
    width: 33.3333333333%;
    margin-bottom: calc(50px + 5vw);
    padding: 0 3vw;
  }
}
@media (min-width: 800px) and (max-width: 1020px) {
  .documents .documents-wrapper .document {
    width: 50%;
    margin-bottom: calc(50px + 5vw);
  }
}
@media (max-width: 800px) {
  .documents .documents-wrapper .document {
    width: 100%;
    margin-bottom: calc(50px + 5vw);
  }
}

.quote-banner {
  display: flex;
  position: relative;
  width: 100%;
  padding: calc(50px + 5vw) 10vw;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.quote-banner.bg-color {
  background-color: #bcbcbc;
}
.quote-banner:before {
  content: "";
  z-index: 0;
  position: absolute;
  display: block;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.9);
}
.quote-banner .quote-container {
  position: relative;
  overflow: hidden;
  z-index: 0;
}
.quote-banner .quote-container .subtitle {
  text-transform: none;
  font-size: calc(
            19px + 6 * ((100vw - 600px) / 1960)
    );
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  margin-bottom: 1.3rem;
}
@media screen and (max-width: 600px) {
  .quote-banner .quote-container .subtitle {
    font-size: 19px;
  }
}
@media screen and (min-width: 2560px) {
  .quote-banner .quote-container .subtitle {
    font-size: 25px;
  }
}
.quote-banner .quote-container .text {
  font-size: calc(
            17px + 25 * ((100vw - 600px) / 1960)
    );
  color: #000;
  font-weight: 300;
  line-height: 1.75em;
  max-width: calc(850px + 23vw);
  margin-bottom: 2.2rem;
}
@media screen and (max-width: 600px) {
  .quote-banner .quote-container .text {
    font-size: 17px;
  }
}
@media screen and (min-width: 2560px) {
  .quote-banner .quote-container .text {
    font-size: 42px;
  }
}
.quote-banner .quote-container .author .author-name {
  color: #000;
}
.quote-banner .quote-container .author .author-name, .quote-banner .quote-container .author .company-name {
  display: inline-block;
}
.quote-banner .quote-container .author .space {
  width: 10px;
  height: 2px;
  display: inline-block;
  margin: 0.3em 0.3em 0.3em 0.3em;
  background: #000;
}
@media (max-width: 800px) {
  .quote-banner {
    display: block;
  }
  .quote-banner .quote-container {
    width: 100%;
  }
  .quote-banner .quote-container .text-wrapper {
    max-width: calc(600px + 20vw);
  }
  .quote-banner .quote-container .text-wrapper .title {
    width: 100%;
  }
}

/**/
.page-contact-block {
  display: block;
  position: relative;
  width: 100%;
  height: auto;
  margin: calc(50px + 5vw) 0;
}
.page-contact-block .maps,
.page-contact-block .contact-info {
  display: block;
  width: 50%;
}
.page-contact-block .contact-info {
  position: relative;
  padding: 10vw 7vw;
  margin-left: auto;
  display: flex;
}
.page-contact-block .contact-info .info-column:first-child {
  margin-right: 5vw;
}
.page-contact-block .contact-info .subtitle {
  text-transform: uppercase;
  margin-bottom: 10px;
  font-size: calc(
            14px + 2 * ((100vw - 600px) / 1960)
    );
}
@media screen and (max-width: 600px) {
  .page-contact-block .contact-info .subtitle {
    font-size: 14px;
  }
}
@media screen and (min-width: 2560px) {
  .page-contact-block .contact-info .subtitle {
    font-size: 16px;
  }
}
.page-contact-block .contact-info .info-column .subtitle {
  color: #002960;
}
.page-contact-block .contact-info .info-column a {
  line-height: 2.1em;
  opacity: 1;
  transition: opacity 0.4s ease;
  color: #000;
  display: block;
}
.page-contact-block .contact-info .info-column a:not(.page-contact-block .contact-info .info-column a:last-child) {
  margin-bottom: 2rem;
}
.page-contact-block .contact-info .info-column a:hover {
  opacity: 0.6;
}
.page-contact-block .maps {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
}
.page-contact-block .maps iframe {
  position: absolute;
  top: 0;
  left: 10vw;
  width: calc(100% - 10vw);
  height: 100%;
}
@media (max-width: 1020px) {
  .page-contact-block {
    margin: 0;
  }
  .page-contact-block .contact-info {
    width: 100%;
    padding: 10vw;
  }
  .page-contact-block .contact-info .info-column {
    width: 50%;
  }
  .page-contact-block .maps {
    position: relative;
    width: 100%;
    height: 65vw;
  }
  .page-contact-block .maps iframe {
    position: relative;
    width: 100%;
    left: 0;
  }
}
@media (max-width: 600px) {
  .page-contact-block .contact-info {
    display: block;
  }
  .page-contact-block .contact-info .info-column {
    width: 100%;
  }
}

.overview-projects {
  display: block;
  position: relative;
  width: 100%;
  padding: calc(25px + 3vw) 10vw;
}
.overview-projects > .title {
  display: block;
  width: 100%;
  text-align: center;
  margin-bottom: 2.2em;
}
.overview-projects .project-container {
  display: flex;
  flex-wrap: wrap;
  position: relative;
}
.overview-projects .project-container .project-item {
  flex: 0 0 50%;
  position: relative;
  height: auto;
  padding: 0 3vw;
  margin-bottom: 6vw;
}
.overview-projects .project-container .project-item .thumbnail-link {
  display: block;
  position: relative;
}
.overview-projects .project-container .project-item .thumbnail-link .image {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: inline-block;
  padding-bottom: 130%;
}
.overview-projects .project-container .project-item .thumbnail-link .image figure {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: transform 4s cubic-bezier(0.1, 0.48, 0, 0.99);
  transform: scale(1.01);
}
.overview-projects .project-container .project-item .thumbnail-link .image figure::before {
  z-index: 5;
  display: block;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.45);
  transition: opacity 2.4s;
  opacity: 1;
}
.overview-projects .project-container .project-item .thumbnail-link .image figure::after {
  z-index: 10;
  display: block;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 41, 96, 0.55);
  transform: translateY(101%);
  transition: all 1.1s cubic-bezier(0.74, 0.43, 0.03, 0.87);
}
.overview-projects .project-container .project-item .thumbnail-link .title {
  display: block;
  width: 100%;
  line-height: 1.4em;
  color: #ffffff;
  font-weight: 400;
  position: absolute;
  padding: 0 3vw;
  top: 50%;
  text-align: center;
  transform: translate(-50%, -50%);
  left: 50%;
  opacity: 1;
  transition: opacity 0.5s;
  font-size: calc(
            20px + 10 * ((100vw - 600px) / 1960)
    );
}
@media screen and (max-width: 600px) {
  .overview-projects .project-container .project-item .thumbnail-link .title {
    font-size: 20px;
  }
}
@media screen and (min-width: 2560px) {
  .overview-projects .project-container .project-item .thumbnail-link .title {
    font-size: 30px;
  }
}
.overview-projects .project-container .project-item .thumbnail-link:hover .image figure {
  transform: scale(1.06);
}
.overview-projects .project-container .project-item .thumbnail-link:hover .image figure:before {
  opacity: 0;
}
.overview-projects .project-container .project-item .thumbnail-link:hover .image figure:after {
  transform: translateY(0%);
}
.overview-projects .project-container .project-item .thumbnail-link:hover .text-wrapper {
  opacity: 1;
  transition: 0.4s opacity 0.5s;
}
@media (max-width: 1020px) {
  .overview-projects .project-container .project-item {
    flex: 0 0 50%;
    margin-bottom: 10vw;
  }
  .overview-projects .project-container .project-item:last-child {
    margin-bottom: 10vw;
  }
}
@media (max-width: 800px) {
  .overview-projects .project-container {
    display: block;
  }
  .overview-projects .project-container .project-item {
    padding: 0;
  }
}

.overview-vacancies {
  display: block;
  position: relative;
  padding: 7vw 10vw;
  overflow: hidden;
  margin: 0 auto;
  background-color: #F7F7F7;
}
.overview-vacancies:before {
  content: "";
  position: absolute;
  width: 100%;
  height: calc(200px + 27vw);
  right: 0;
  top: 0;
  background-color: rgba(255, 255, 255, 0.06);
  transform-origin: bottom right;
}
.overview-vacancies > .subtitle,
.overview-vacancies > .title {
  color: #002960;
  text-align: center;
  width: 100%;
}
.overview-vacancies > .subtitle {
  color: #ffffff;
}
.overview-vacancies ul {
  display: flex;
  flex-wrap: wrap;
  margin: calc(25px + 3vw) -20px 0;
  justify-content: left;
}
.overview-vacancies ul li {
  flex: 1 1 33.33%;
  max-width: 50%;
  padding: 0 20px;
  margin-bottom: 40px;
}
@media (max-width: 1020px) {
  .overview-vacancies ul li {
    flex: 1 1 50%;
    margin-bottom: 5vw;
  }
}
@media (max-width: 800px) {
  .overview-vacancies ul li {
    flex: 1 1 100%;
    max-width: none;
    margin-bottom: 5vw;
  }
}
@media (max-width: 800px) {
  .overview-vacancies {
    padding: 12vw 10vw 10vw;
  }
}

.thumbnail-link-vacancy {
  display: block;
  position: relative;
  padding: calc(20px + 1vw);
  padding-bottom: calc(calc(20px + 1vw) * 1 + 1.1em);
  min-height: 100%;
  background-color: white;
  border-bottom: 4px solid #e9e9e9;
  box-shadow: 4px 7px 30px 0px rgba(0, 0, 0, 0.06);
  transition: 0.3s ease-in-out;
}
.thumbnail-link-vacancy .yellow-bar {
  content: "";
  padding: 15px;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  background: #F2B111;
}
.thumbnail-link-vacancy .yellow-bar:after {
  content: "";
  display: block;
  position: absolute;
  right: 0px;
  bottom: 0px;
  width: calc(50px + 10vw);
  background: #002960;
  clip-path: polygon(34% 72%, 100% 72%, 100% 100%, 0% 100%);
  height: 106px;
  background: #ffffff;
  opacity: 0.16;
  overflow: hidden;
}
.thumbnail-link-vacancy .title {
  margin-bottom: 0.8em;
  color: #002960;
  font-size: calc(
            21px + 1 * ((100vw - 600px) / 1960)
    );
}
@media screen and (max-width: 600px) {
  .thumbnail-link-vacancy .title {
    font-size: 21px;
  }
}
@media screen and (min-width: 2560px) {
  .thumbnail-link-vacancy .title {
    font-size: 22px;
  }
}
.thumbnail-link-vacancy .hours {
  margin-bottom: 0.5em;
}
.thumbnail-link-vacancy .experience {
  margin-bottom: 0.4em;
}
.thumbnail-link-vacancy .text {
  margin-top: 1.2em;
}
.thumbnail-link-vacancy .hours,
.thumbnail-link-vacancy .experience,
.thumbnail-link-vacancy .text {
  font-size: calc(
            15px + 3 * ((100vw - 600px) / 1960)
    );
}
@media screen and (max-width: 600px) {
  .thumbnail-link-vacancy .hours,
.thumbnail-link-vacancy .experience,
.thumbnail-link-vacancy .text {
    font-size: 15px;
  }
}
@media screen and (min-width: 2560px) {
  .thumbnail-link-vacancy .hours,
.thumbnail-link-vacancy .experience,
.thumbnail-link-vacancy .text {
    font-size: 18px;
  }
}
.thumbnail-link-vacancy .full-time {
  padding: 0em 0.7em;
  color: #ffffff;
  background: #F2B111;
  display: inline-block;
  font-size: calc(
            14px + 1 * ((100vw - 600px) / 1960)
    );
  margin-bottom: 0.8em;
}
@media screen and (max-width: 600px) {
  .thumbnail-link-vacancy .full-time {
    font-size: 14px;
  }
}
@media screen and (min-width: 2560px) {
  .thumbnail-link-vacancy .full-time {
    font-size: 15px;
  }
}
.thumbnail-link-vacancy .read-more {
  transition: color 0.3s ease;
  position: absolute;
  bottom: calc(12px + 1vw);
  color: #061E38;
  margin-top: 1.2em;
}

.werk-usp {
  background-color: #F2B111;
  padding: 7vw 10vw;
  color: #fff;
  text-align: center;
}
.werk-usp .title {
  color: #ffffff;
}
.werk-usp .container {
  display: flex;
  max-width: 100%;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 5vw 0 0 0;
}
.werk-usp .container .usp-container {
  width: 33.33%;
  padding: 0 3vw;
}
.werk-usp .container .usp-container .title {
  padding-bottom: 1.2em;
}
@media (max-width: 800px) {
  .werk-usp .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    text-align: center;
  }
  .werk-usp .container .usp-container {
    width: 100%;
  }
  .werk-usp .container .usp-container:not(.werk-usp .container .usp-container:last-of-type) {
    padding-bottom: 5vw;
  }
  .werk-usp .container .usp-container:not(.werk-usp .container .usp-container:last-of-type) .title {
    padding-bottom: 1em;
  }
}

.info-contact-person {
  display: block;
  background-color: #f8f8f8;
  position: relative;
  width: 100%;
  z-index: 0;
  overflow: hidden;
}
#baggerwerken .info-contact-person {
  padding: calc(25px + 3vw) 0;
}
#baggerwerken .info-contact-person .text-wrapper {
  padding: 5vw 5vw 5vw 0;
  width: 60%;
}
#baggerwerken .info-contact-person .image {
  background-position: center;
  width: 40%;
}
.info-contact-person .inner {
  margin: 0 10vw;
  position: relative;
}
.info-contact-person .inner .text-wrapper {
  position: relative;
  padding: calc(25px + 5vw) 5vw calc(25px + 5vw) 0;
  width: 55%;
  font-size: 0;
  color: rgba(0, 0, 0, 0.6);
}
.info-contact-person .inner .text-wrapper .upper-text {
  margin-bottom: 2.5rem;
}
.info-contact-person .inner .text-wrapper .upper-text .title {
  margin-bottom: 1.1rem;
}
.info-contact-person .inner .text-wrapper .text {
  margin-bottom: 2rem;
}
.info-contact-person .inner .text-wrapper .contact-info a {
  padding: 10px 0;
  display: block;
}
.info-contact-person .inner .text-wrapper .contact-info .info-label {
  font-weight: 500;
  color: #002960;
}
.info-contact-person .inner .image {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: auto;
  height: 100%;
  width: 45%;
  right: 0;
}
.info-contact-person .inner .image figure {
  position: relative;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 0px 10%;
}
@media (max-width: 1020px) {
  .info-contact-person .inner .text-wrapper, .info-contact-person .inner .image {
    width: 100%;
  }
  .info-contact-person .inner .image {
    position: relative;
    transform: none;
    top: 0;
    height: calc(400px + 10vh);
  }
  .info-contact-person .inner .image figure {
    background-size: 410px;
    background-position: 0px 10%;
  }
  .info-contact-person .inner .upper-text {
    margin-bottom: 1.5rem;
  }
  .info-contact-person .inner .upper-text .text {
    margin-bottom: 1.5rem;
  }
}

/*

&.align-right {
    .inner {
        &:before {
            background-color: red;
            left: 0;
            right: auto;
            transform-origin: bottom left;
            transform: translateX(-10%) translateY(-62%) rotate(40deg);
            height: calc(60px + 7vw);
            background-color: rgba(238,240,242, 1);
        }
    }
}
*/
/*
&.align-right {
    margin: calc(15px + 1.5vw);

    .inner {
        padding: 5vw 8vw;
    }
    .image {
        left: auto;
        right: 0;

        figure {
            right: 0;
            left: auto;
        }
    }

    .text-wrapper {
        margin-left: 0;
        margin-right: auto;
        padding: 5vw 8vw 5vw 0;
    }
}

@media (max-width: $site-width-landscape) {
    margin: 0;
    &.align-right {
        color: red;
        display: flex;
        flex-flow: column;

        .inner {
            padding: calc(25px + 4vw);
        }

    }
    .image-text {
        .image {
            position: relative;
            width: 100%;
            height: 100%;
            order: 1;

            figure {
                position: relative;
                padding-top: 100%;
            }
        }

        .text-wrapper {
            order: 2;
            width: 100%;
            padding: $block-padding 0 0;

        }
    }
}*/
.gravity-theme {
  position: relative;
  width: 100%;
  padding: 10vw;
}
.gravity-theme .gform_heading {
  padding-bottom: 1.7em;
}
.gravity-theme .gform-body .ginput_container {
  padding-bottom: 0.7em;
}
.gravity-theme .gform-body .gfield_label {
  margin-bottom: 10px !important;
}
.gravity-theme .gform-body .gfield--type-radio {
  margin-top: 1em;
}
.gravity-theme .gform-body .gfield--type-radio .gfield_radio {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 85%;
  gap: 30px;
}
.gravity-theme .gform-body .gfield--type-radio .gfield_radio .gchoice {
  display: grid;
  place-items: center;
  box-sizing: border-box;
}
.gravity-theme .gform-body .gfield--type-radio .gfield_radio .gchoice .gfield-choice-input {
  display: none;
}
.gravity-theme .gform-body .gfield--type-radio .gfield_radio .gchoice .gfield-choice-input + label {
  max-width: 100%;
}
.gravity-theme .gform-body .gfield--type-radio .gfield_radio .gchoice input[type=radio]:checked + label {
  background-color: #F2B111;
  color: #ffffff;
  border: 1px solid #F2B111;
}
.gravity-theme .gform-body .gfield--type-radio .gfield_radio .gchoice input[type=radio]:disabled + label {
  opacity: 0.5;
  cursor: not-allowed;
  background-color: #f0f0f0;
  color: #999;
  border-color: #ccc;
}
.gravity-theme .gform-body .gfield--type-radio .gfield_radio .gchoice .gform-field-label {
  display: inline-block;
  padding: 10px 10px;
  cursor: pointer;
  border: 1px solid #002960;
  background-color: #002960;
  color: white;
  transition: all ease 0.2s;
  text-align: center;
  width: 100%;
  font-size: 13px;
}
.gravity-theme .gform-body .choiceless {
  color: #002960;
}
.gravity-theme .gform-footer {
  padding-top: 2.2em !important;
  padding-bottom: 0 !important;
}
.gravity-theme .gform-footer .gform_button {
  margin-bottom: 0 !important;
}
.gravity-theme .remaining-slots {
  font-weight: 600;
}
@media (max-width: 800px) {
  .gravity-theme .gform-body .gfield_label {
    margin-bottom: 12px !important;
  }
  .gravity-theme .gform-body .gfield--type-radio .gfield_radio {
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    gap: 15px;
  }
  .gravity-theme .gform-body .gfield--type-radio .gfield_radio .gchoice .gform-field-label {
    padding: 10px 10px;
  }
}

.client-logos {
  position: relative;
  display: block;
  width: 100%;
  padding: calc(25px + 3vw) 30vw 0 30vw;
  background-color: #f5f5f5;
  overflow: hidden;
}
.client-logos .title {
  margin-top: 0;
  text-align: center;
}
.client-logos ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1em;
}
.client-logos ul li {
  position: relative;
}
.client-logos ul li:first-of-type .thumbnail-client .client-logo {
  max-width: 190px;
}
.client-logos ul li .thumbnail-client {
  display: block;
  width: 100%;
  text-align: center;
  padding-bottom: 10em;
  overflow: hidden;
}
.client-logos ul li .thumbnail-client .client-logo {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  max-width: 140px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  transform: translate(-50%, -50%);
}
.client-logos ul li .thumbnail-client img {
  width: 100%;
  height: 100%;
}
@media (max-width: 800px) {
  .client-logos {
    padding: 10vw 15vw 0 15vw;
  }
  .client-logos ul li:nth-of-type(1) .client-logo {
    max-width: 80% !important;
  }
  .client-logos ul li:nth-of-type(2) .client-logo {
    max-width: 60% !important;
  }
}

/*# sourceMappingURL=style.min.css.map */
