/*
// Nieuwe Pixels - Flexbox Grid v0.7
//
// Built with:
// - Kindling.scss (github.com/timothylong/kindling) - Minimalistic base Flexbox
// - Flexbox-grid.scss (github.com/zemirco/flexbox-grid) - Auto cols, Row/Col padding for nesting
// - Sass MQ - (https://github.com/sass-mq/sass-mq) Flexible breakpoints
*/
.row.justify--flex-start,
[class^=col].justify--flex-start {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.row.justify--flex-end,
[class^=col].justify--flex-end {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.row.justify--center,
[class^=col].justify--center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.row.justify--space-between,
[class^=col].justify--space-between {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.row.justify--space-around,
[class^=col].justify--space-around {
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.row.align--flex-start, .row.row--flex-start {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.row.align--flex-end, .row.row--flex-end {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.row.align--flex-center, .row.row--flex-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.row.align--baseline, .row.row--baseline {
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
.row.align--flex-stretch, .row.row--flex-stretch {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

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

[class^=grid] {
  margin: 0 auto;
}

.grid {
  max-width: 1200px;
}

.grid--sm {
  max-width: 768px;
}

.grid--md {
  max-width: 992px;
}

.grid--fluid {
  max-width: 100%;
}

.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

/*
[class*=col-] {}
[class^="col"].inner,
.row.inner + [class^="col"]{
	padding-left: $grid-gutter-width;
	padding-right: $grid-gutter-width;	
}
*/
[class^=col].padd-l {
  padding-left: 1rem;
}
[class^=col].padd-r {
  padding-right: 1rem;
}
[class^=col].padd-lr {
  padding-left: 2rem;
  padding-right: 2rem;
}
[class^=col].padd-t {
  padding-top: 2rem;
}
[class^=col].padd-b {
  padding-bottom: 2rem;
}
[class^=col].padd-tb {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
[class^=col].padd {
  padding: 2rem;
}

[class^=col].inner,
.row.inner > [class^=col] {
  padding-left: 1rem;
  padding-right: 1rem;
}

.col-1 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 8.3333333333%;
          flex: 0 0 8.3333333333%;
  max-width: 8.3333333333%;
}

.offset-1 {
  margin-left: 8.3333333333%;
}

.col-2 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 16.6666666667%;
          flex: 0 0 16.6666666667%;
  max-width: 16.6666666667%;
}

.offset-2 {
  margin-left: 16.6666666667%;
}

.col-3 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 25%;
          flex: 0 0 25%;
  max-width: 25%;
}

.offset-3 {
  margin-left: 25%;
}

.col-4 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 33.3333333333%;
          flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
}

.offset-4 {
  margin-left: 33.3333333333%;
}

.col-5 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 41.6666666667%;
          flex: 0 0 41.6666666667%;
  max-width: 41.6666666667%;
}

.offset-5 {
  margin-left: 41.6666666667%;
}

.col-6 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  max-width: 50%;
}

.offset-6 {
  margin-left: 50%;
}

.col-7 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 58.3333333333%;
          flex: 0 0 58.3333333333%;
  max-width: 58.3333333333%;
}

.offset-7 {
  margin-left: 58.3333333333%;
}

.col-8 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 66.6666666667%;
          flex: 0 0 66.6666666667%;
  max-width: 66.6666666667%;
}

.offset-8 {
  margin-left: 66.6666666667%;
}

.col-9 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 75%;
          flex: 0 0 75%;
  max-width: 75%;
}

.offset-9 {
  margin-left: 75%;
}

.col-10 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 83.3333333333%;
          flex: 0 0 83.3333333333%;
  max-width: 83.3333333333%;
}

.offset-10 {
  margin-left: 83.3333333333%;
}

.col-11 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 91.6666666667%;
          flex: 0 0 91.6666666667%;
  max-width: 91.6666666667%;
}

.offset-11 {
  margin-left: 91.6666666667%;
}

.col-12 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  max-width: 100%;
}

.offset-12 {
  margin-left: 100%;
}

@media (min-width: 46.25em) {
  .col-sm-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 8.3333333333%;
            flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .offset-sm-1 {
    margin-left: 8.3333333333%;
  }
  .col-sm-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.6666666667%;
            flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .offset-sm-2 {
    margin-left: 16.6666666667%;
  }
  .col-sm-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .col-sm-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.3333333333%;
            flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .offset-sm-4 {
    margin-left: 33.3333333333%;
  }
  .col-sm-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 41.6666666667%;
            flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .offset-sm-5 {
    margin-left: 41.6666666667%;
  }
  .col-sm-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .col-sm-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 58.3333333333%;
            flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .offset-sm-7 {
    margin-left: 58.3333333333%;
  }
  .col-sm-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 66.6666666667%;
            flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .offset-sm-8 {
    margin-left: 66.6666666667%;
  }
  .col-sm-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
    max-width: 75%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .col-sm-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 83.3333333333%;
            flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .offset-sm-10 {
    margin-left: 83.3333333333%;
  }
  .col-sm-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 91.6666666667%;
            flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .offset-sm-11 {
    margin-left: 91.6666666667%;
  }
  .col-sm-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
  .offset-sm-12 {
    margin-left: 100%;
  }
}
/*
// Theme
// These are the SCSS files for theming the current site.
*/
/*! normalize.css v7.0.0 | 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
 *    IE on Windows Phone and in iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -ms-text-size-adjust: 100%; /* 2 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

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

/**
 * Add the correct display in IE 9-.
 */
article,
aside,
footer,
header,
nav,
section {
  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
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 * 1. Add the correct display in IE.
 */
figcaption,
figure,
main { /* 1 */
  display: block;
}

/**
 * Add the correct margin in IE 8.
 */
figure {
  margin: 1em 40px;
}

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  -webkit-box-sizing: content-box;
          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
   ========================================================================== */
/**
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 */
a {
  background-color: transparent; /* 1 */
  -webkit-text-decoration-skip: objects; /* 2 */
}

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

/**
 * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
 */
b,
strong {
  font-weight: inherit;
}

/**
 * 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 style in Android 4.3-.
 */
dfn {
  font-style: italic;
}

/**
 * Add the correct background and color in IE 9-.
 */
mark {
  background-color: #ff0;
  color: #000;
}

/**
 * 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
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
audio,
video {
  display: inline-block;
}

/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

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

/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers (opinionated).
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: sans-serif; /* 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;
}

/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 *    controls in Android 4.
 * 2. Correct the inability to style clickable types in iOS and Safari.
 */
button,
html [type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button; /* 2 */
}

/**
 * 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 {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * 1. Add the correct display in IE 9-.
 * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}

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

/**
 * 1. Add the correct box sizing in IE 10-.
 * 2. Remove the padding in IE 10-.
 */
[type=checkbox],
[type=radio] {
  -webkit-box-sizing: border-box;
          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 and cancel buttons in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-cancel-button,
[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 IE 9-.
 * 1. Add the correct display in Edge, IE, and Firefox.
 */
details,
menu {
  display: block;
}

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

/* Scripting
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
canvas {
  display: inline-block;
}

/**
 * Add the correct display in IE.
 */
template {
  display: none;
}

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

/* Global: Brand element */
html {
  font-size: 17px;
}

body {
  font-size: 100%;
  font-family: "Aller", arial, sans-serif;
  color: #4F4739;
  line-height: 1.3em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: "Aller", arial, sans-serif;
  font-weight: normal;
  line-height: 1.3em;
  text-rendering: optimizeLegibility;
}

figure {
  margin: 0;
}

img {
  display: inline-block;
}

p, ul {
  margin-top: 0;
  font-family: "Aller", arial, sans-serif;
  font-weight: 400;
  font-size: inherit;
  line-height: inherit;
}

a {
  text-decoration: none;
}

form header,
.form header {
  margin-bottom: 1rem;
}
form label,
.form label {
  display: block;
  margin-bottom: 0.3333333333rem;
}
form label span,
.form label span {
  display: inline-block;
  margin-bottom: 0.3333333333rem;
}
form input[type=submit],
.form input[type=submit] {
  cursor: pointer;
}
form input[type=text],
form input[type=email],
form input[type=telephone],
form textarea,
form select,
.form input[type=text],
.form input[type=email],
.form input[type=telephone],
.form textarea,
.form select {
  font-size: 0.9em;
  padding: 0.5714285714rem;
  margin-right: 1rem;
  font-family: "Aller", arial, sans-serif;
}

@font-face {
  font-family: "Aller";
  src: url("../fonts/aller/light/Aller-Light.eot");
  src: url("../fonts/aller/light/Aller-Light.eot?#iefix") format("embedded-opentype"), url("../fonts/aller/light/Aller-Light.woff2") format("woff2"), url("../fonts/aller/light/Aller-Light.woff") format("woff"), url("../fonts/aller/light/Aller-Light.ttf") format("truetype"), url("../fonts/aller/light/Aller-Light.svg#Aller-Light") format("svg");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Aller";
  src: url("../fonts/aller/regular/Aller.eot");
  src: url("../fonts/aller/regular/Aller.eot?#iefix") format("embedded-opentype"), url("../fonts/aller/regular/Aller.woff2") format("woff2"), url("../fonts/aller/regular/Aller.woff") format("woff"), url("../fonts/aller/regular/Aller.ttf") format("truetype"), url("../fonts/aller/regular/Aller.svg#Aller") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Aller";
  src: url("../fonts/aller/bold/Aller-Bold.eot");
  src: url("../fonts/aller/bold/Aller-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/aller/bold/Aller-Bold.woff2") format("woff2"), url("../fonts/aller/bold/Aller-Bold.woff") format("woff"), url("../fonts/aller/bold/Aller-Bold.ttf") format("truetype"), url("../fonts/aller/bold/Aller-Bold.svg#Aller-Bold") format("svg");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "Jenna Sue";
  src: url("../fonts/jenna-sue/script/JennaSue.eot");
  src: url("../fonts/jenna-sue/script/JennaSue.eot?#iefix") format("embedded-opentype"), url("../fonts/jenna-sue/script/JennaSue.woff2") format("woff2"), url("../fonts/jenna-sue/script/JennaSue.woff") format("woff"), url("../fonts/jenna-sue/script/JennaSue.ttf") format("truetype"), url("../fonts/jenna-sue/script/JennaSue.svg#JennaSue") format("svg");
  font-weight: normal;
  font-style: normal;
}
img.img__responsive, img.responsive, img.header__brand__logo {
  max-width: 100%;
  height: auto;
}
img.img__fullwidth, img.fullwidth {
  width: 100%;
  height: auto;
}
img.object-fit {
  /*min-height: <-- SET THIS IN YOUR STYLESHEET PER IMAGE */
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

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

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

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

.list__inline {
  margin: 0;
  padding: 0;
}
.list__inline li {
  display: inline;
}

.btn {
  display: inline-block;
  padding: 10px 15px;
  font-family: "Aller", arial, sans-serif;
  min-width: 160px;
  text-align: center;
  border: 0;
}
.btn.btn__primary {
  color: #fff;
  background-color: #757F61;
}
.btn.btn__primary:hover {
  background-color: #4F4739;
}
.btn.btn__secondary {
  color: #fff;
  background-color: #4F4739;
}
.btn.btn__secondary:hover {
  background-color: #757F61;
}
.btn.btn__white {
  color: #4F4739;
  background-color: #fff;
}
.btn.btn__white:hover {
  color: #fff;
  background-color: #4F4739;
}
.btn.btn__actie {
  color: #fff;
  background-color: #EE3F68;
}

/* Global: Hero */
.g-hero {
  position: relative;
}
.g-hero .subnav {
  background-color: rgba(45, 44, 35, 0.9);
}
@media (min-width: 768px) {
  .g-hero .subnav {
    position: absolute;
    width: 100%;
    z-index: 10;
  }
}
.g-hero .subnav ul {
  padding: 0;
  margin: 0 auto;
  display: table;
  width: 100%;
  text-align: center;
}
.g-hero .subnav li {
  padding: 12px 0;
  display: block;
}
.g-hero .subnav li + li {
  border-top: 1px solid rgba(255, 255, 255, 0.5);
}
.g-hero .subnav li a {
  color: #757F61;
}
.g-hero .subnav li a.active {
  color: #fff;
}
@media (min-width: 768px) {
  .g-hero .subnav ul {
    padding: 12px 0;
  }
  .g-hero .subnav li {
    margin-left: 5px;
    margin-right: 5px;
    padding: 0;
    display: inline;
    font-size: 0.9em;
    color: #fff;
  }
  .g-hero .subnav li:not(:last-child):after {
    padding-left: 10px;
    content: "|";
  }
}
.g-hero img {
  display: block;
}
/* Global: Hero Content */
.g-hero-content {
  position: relative;
}
.g-hero-content .brandelement-top,
.g-hero-content .brandelement-bottom {
  border-color: #757F61;
}
.g-hero-content .content {
  padding: 70px 70px;
}
.g-hero-content .content h1 {
  margin-bottom: 15px;
  color: #4F4739;
}
.g-hero-content .content h3 {
  margin-top: 15px;
}
.g-hero-content .content p {
  font-size: 0.9em;
  color: #757F61;
}
.g-hero-content .content p strong {
  color: #4F4739;
}
.g-hero-content .content p a {
  color: #757F61;
  text-decoration: underline;
}
.g-hero-content .content p a:hover {
  text-decoration: none;
}
.g-hero-content .buttons .btn {
  font-weight: bold;
  font-size: 0.9em;
  text-transform: uppercase;
}

/* Form */
.g-form header {
  margin-bottom: 1em;
}
.g-form fieldset {
  margin: 0;
  padding: 0;
  border: 0px solid #eee;
}
.g-form fieldset h4 {
  margin-top: 0.5em;
  color: #fff;
  margin-bottom: 1em;
}
.g-form input[type=text],
.g-form input[type=email],
.g-form input[type=number],
.g-form textarea {
  width: 100%;
  display: block;
  padding: 0.5em;
  border: 1px solid #bbb;
  border-radius: 2px;
  color: #eee;
  border: 0;
  background-color: rgba(255, 255, 255, 0.2509803922);
}
.g-form input.persons {
  max-width: 200px !important;
}
.g-form .wpcf7-form-control-wrap {
  display: block;
}
.g-form .wpcf7-list-item {
  margin-left: 0 !important;
  padding-left: 0 !important;
  color: #eee;
  display: block;
}
.g-form .wpcf7-list-item label {
  display: block;
  line-height: 0.9em;
}
.g-form .wpcf7-list-item .wpcf7-list-item-label {
  display: inline-block;
  margin-left: 0.75em;
  font-size: 0.85em;
}
.g-form span.wpcf7-form-control-wrap {
  width: 100%;
}
.g-form .wpcf7-response-output {
  padding: 10px;
  color: #4F4739;
  background-color: #fff;
}
.g-form .form__disclaimer {
  margin-top: 10px;
  margin-bottom: 35px;
  color: inherit;
}
.g-form .form__disclaimer small {
  font-style: italic;
}
.g-form .buttons .btn {
  font-size: 0.9em;
  font-weight: bold;
  text-transform: uppercase;
}

/* Brand elements */
.brandelement-top {
  position: absolute;
  top: 0;
  width: 100%;
  min-height: 75px;
  border: 25px solid transparent;
  border-bottom: 0;
}

.brandelement-bottom {
  position: absolute;
  bottom: 0;
  width: 100%;
  min-height: 75px;
  border: 25px solid transparent;
  border-top: 0;
}

/* Background-color */
.background-color__primary {
  background-color: #757F61;
}

.background-color__secondary {
  background-color: #4F4739;
}

/* GLOBAL: Newsletter (Popup) */
.popup-newsletter .mfp-iframe-holder .mfp-content {
  max-width: 620px;
  height: 80vh;
}

body {
  margin: 0 auto;
  font-family: arial, sans-serif;
  background-color: #fff;
}

.wrapper {
  margin: 0 auto;
  max-width: 1440px;
}

.grid {
  margin: auto;
}

.page__header__promo__content {
  color: #fff;
  background-color: #757F61;
}
.page__header__promo__content .content {
  padding: 0.5em 0.25em;
  text-align: center;
}
.page__header__promo__content .content h5 {
  margin: 0;
  font-size: 1.4em;
  text-transform: uppercase;
  font-weight: bold;
}
.page__header__promo__content .content h5 em {
  font-weight: normal;
}
.page__header__promo__content .content p {
  margin: 0;
  margin-bottom: 0.15em;
  font-size: 0.8em;
}
.page__header__promo__content .content p a {
  color: inherit;
  text-decoration: underline;
}
.page__header__promo__content .content p a:hover {
  text-decoration: none;
}
@media (min-width: 768px) {
  .page__header__promo__content .content h5 {
    font-size: 1.9em;
  }
  .page__header__promo__content .content p {
    font-size: 1.05em;
  }
}

.page__header__promo__imagestrip {
  background-image: url("../images/happypeople-20jr.jpg");
  background-size: auto 70px;
  height: 70px;
}
@media (min-width: 768px) {
  .page__header__promo__imagestrip {
    height: 100px;
    background-size: auto 100px;
  }
}

/* Mobile Nav */
.mobile-hamburger {
  display: none;
}

@media (max-width: 768px) {
  body.menu-mobile-hidden .nav__primary {
    display: none;
  }
  .mobile-hamburger {
    position: absolute;
    display: inline;
    top: 20px;
    right: 20px;
    border: 1px solid #ccc;
  }
  .mobile-hamburger a {
    display: inline-block;
    padding: 7px 10px;
    color: #aaa;
  }
}
.page__header {
  padding-top: 1em;
  padding-bottom: 1em;
  background-color: #fff;
  position: relative;
}
.page__header.alt {
  background-color: #757F61;
}
.page__header .nav__primary ul {
  padding: 10px 0;
}
.page__header .nav__primary li {
  padding: 7px 0;
  text-align: center;
  border-bottom: 2px solid transparent;
}
.page__header .nav__primary li.active, .page__header .nav__primary li.current-menu-item {
  border-bottom: 2px solid #757F61;
}
.page__header .nav__primary li a {
  color: #757F61;
}
@media (min-width: 768px) {
  .page__header .nav__primary ul {
    padding: 0;
    font-size: 0.9em;
    float: right;
  }
  .page__header .nav__primary li {
    margin-left: 15px;
    padding: 5px 0;
    display: inline;
    border-bottom: 2px solid transparent;
  }
}

.alt .page__header {
  background-color: #757F61;
}
.alt .nav__primary {
  font-family: "Aller", arial, sans-serif;
}
.alt .nav__primary li a {
  color: #fff;
}

.header__brand__logo {
  max-height: 43px;
}

.hero__home {
  margin-bottom: 30px;
}
.hero__home .bxslider,
.hero__home img.object-fit {
  max-height: 37.5em;
}
.hero__home .bxslider {
  overflow: hidden;
}
.hero__home .g-hero-content {
  height: 100%;
  color: #757F61;
}
.hero__home .g-hero-content .content {
  padding: 70px 55px;
}
@media (min-width: 768px) {
  .hero__home .g-hero-content .content {
    padding: 70px 90px;
  }
}
.hero__home .g-hero-content .content h1 {
  margin-bottom: 15px;
  color: #4F4739;
}
.hero__home .g-hero-content .content h3 {
  margin-bottom: 5px;
  font-size: 1.2em;
  color: #4F4739;
}

/* Home - Inspiratie */
.inspiratie-referentie {
  margin-bottom: 30px;
}
.inspiratie-referentie .inspiratie,
.inspiratie-referentie .referenties {
  padding: 35px 0;
  min-height: 250px;
}
.inspiratie-referentie .inspiratie h3 {
  font-size: 3em;
  font-family: "Jenna Sue", sans-serif;
}
.inspiratie-referentie .inspiratie p {
  font-size: 0.9em;
  color: #757F61;
}
.inspiratie-referentie .inspiratie p a {
  color: #4F4739;
}
.inspiratie-referentie .inspiratie .buttons .btn {
  font-weight: bold;
  font-size: 0.9em;
  text-transform: uppercase;
}
.inspiratie-referentie .inspiratie .buttons .btn a {
  color: #fff;
}
.inspiratie-referentie .referenties {
  background-color: #F4F4F2;
  background-image: url("../images/reedoo-border-styled.png");
  background-position: top left;
  background-repeat: repeat-y;
}
.inspiratie-referentie .referenties .content {
  padding: 70px;
  padding-right: 125px;
}
.inspiratie-referentie .referenties .content .slider {
  margin-bottom: 35px;
  text-align: center;
}
.inspiratie-referentie .referenties .content .slider q {
  font-size: 1.4em;
  line-height: 1.5em;
  font-style: italic;
  font-family: "Aller", arial, sans-serif;
}
.inspiratie-referentie .referenties .content .paging {
  margin-bottom: 20px;
}
.inspiratie-referentie .referenties .content h3,
.inspiratie-referentie .referenties .content h4 {
  margin-bottom: 5px;
  color: #757F61;
}
.inspiratie-referentie .referenties .content p {
  font-size: 0.9em;
}

/* Home - Kleurinterieur */
.kleurinterieur {
  margin-top: 30px;
  padding: 35px 0;
  min-height: 500px;
  background-color: #f1f1f1;
  background-image: url("../images/background-reedoo-assortime.jpg");
  background-position: center center;
  background-size: cover;
}
.kleurinterieur .slider {
  padding: 35px;
  color: #fff;
}
.kleurinterieur .slider h2 {
  margin-bottom: 15px;
  font-weight: normal;
}
.kleurinterieur .slider a {
  color: #fff;
  font-style: italic;
}
.kleurinterieur .slider a:hover {
  color: #757F61;
}
.kleurinterieur .quote {
  text-align: center;
}
.kleurinterieur .quote h3 {
  font-size: 4em;
  line-height: 0.9em;
  font-family: "Jenna Sue", sans-serif;
  font-weight: normal;
  color: #fff;
}
.kleurinterieur .buttons {
  padding-top: 10px;
  text-align: center;
}
@media (min-width: 768px) {
  .kleurinterieur .buttons {
    text-align: right;
  }
}
.kleurinterieur .buttons .btn {
  font-size: 0.9em;
  font-weight: bold;
  text-transform: uppercase;
}

/* Advies */
.hero__advies {
  margin-bottom: 30px;
}
.hero__advies figure {
  border: 25px solid #fff;
  border-left: 0;
}
.hero__advies .content {
  padding: 70px 90px;
  min-height: 500px;
}
.form__advies {
  padding: 60px;
  min-height: 300px;
  font-family: "Aller", arial, sans-serif;
  background-color: #757F61;
}

/* Blog */
/* - gebruikt global: hero */
.wrapper__blog {
  position: relative;
}

.hero__blog {
  position: absolute;
  width: 100%;
  z-index: -1;
}

.hero__blog figure {
  background-color: #4F4739;
}

.hero__blog img {
  display: block;
  opacity: 0.4;
  filter: alpha(opacity=40);
}

.hero__blog img.object-fit {
  max-height: 31.25em;
}

.blog__header {
  padding: 15px 0;
}
.blog__header h1 {
  font-size: 6em;
  font-family: "Jenna Sue", sans-serif;
  color: #fff;
  font-weight: normal;
  text-shadow: 0 0 11px rgba(0, 0, 0, 0.8);
}

.blog__content {
  padding-top: 55px;
  background-color: #fff;
}
@media (min-width: 768px) {
  .blog__content {
    padding: 55px;
  }
}

.blog__content__meta {
  margin-top: 2em;
  padding: 2em;
  color: #888;
  border: 1px solid #ddd;
  border-radius: 5px;
}
.blog__content__meta h5 {
  margin-bottom: 0.55em;
  font-size: 1rem;
  font-weight: bold;
}
.blog__content__meta p {
  margin: 0;
  margin-bottom: 1.5em;
  display: inline-block;
  font-size: 0.81rem;
  line-height: 1.3rem;
  color: inherit !important;
}

.blog__content__meta__newsletter {
  margin-bottom: 0em;
  padding: 1.5em;
  padding-bottom: 1em;
  color: #888;
  background-color: #f4f4f2;
}

article.blog__entry {
  margin-bottom: 35px;
}
article.blog__entry h1 {
  margin-bottom: 15px;
}
article.blog__entry h2 {
  margin-bottom: 10px;
  font-size: 1.8em;
  color: #4F4739;
}
article.blog__entry h2 a {
  color: inherit;
}
article.blog__entry p {
  font-size: 0.9em;
  color: #757F61;
}
article.blog__entry img.object-fit.entries {
  max-height: 11.25em;
  width: 100%;
}
article.blog__entry a {
  color: #4F4739;
}
article.blog__entry .read-more,
article.blog__entry .more-link {
  color: #4F4739;
  font-style: italic;
}
article.blog__entry .meta {
  margin-bottom: 10px;
  font-size: 0.9em;
  font-style: italic;
  font-weight: bold;
}
article.blog__entry .meta em {
  color: #aaa;
}
article.blog__entry .meta small {
  font-weight: normal;
}
article.blog__entry .w-dashed-border {
  padding-top: 15px;
  min-height: 150px;
  border-top: 2px dashed #757F61;
}

.blog__entry-detail {
  padding-bottom: 55px;
}
.blog__entry-detail h1 {
  font-size: 2.4em;
}
.blog__entry-detail h2,
.blog__entry-detail h3 {
  margin-top: 35px;
}
.blog__entry-detail h3 {
  margin-bottom: 10px;
  font-size: 1.4em;
}
.blog__entry-detail p {
  font-size: 0.9em;
  color: #757F61;
}
.blog__entry-detail p a {
  color: #757F61;
  text-decoration: underline;
}
.blog__entry-detail p a:hover {
  color: #4F4739;
}
.blog__entry-detail figure figcaption {
  font-style: italic;
  color: #aaa;
}
.blog__entry-detail img[class*=wp-image] {
  max-width: 100%;
  height: auto;
}
.blog__entry-detail .single__metabox {
  margin-top: 35px;
  margin-bottom: 55px;
}
.blog__entry-detail .meta {
  padding: 5px 0 15px;
}
.blog__entry-detail .meta em {
  display: block;
}
@media (max-width: 768px) {
  .blog__entry-detail .meta small {
    display: block;
  }
}
.blog__entry-detail .blog__back a {
  font-weight: bold;
  color: #4F4739;
}
.blog__entry-detail.w-dashed-border {
  border-bottom: 2px dashed #757F61;
}
@media (min-width: 768px) {
  .blog__entry-detail .alignleft,
  .blog__entry-detail .alignright {
    padding-bottom: 35px;
  }
  .blog__entry-detail .alignleft {
    padding-right: 35px;
    float: left;
  }
  .blog__entry-detail .alignright {
    padding-left: 35px;
    float: right;
  }
}
.blog__entry-detail .gallery.gallery-columns-3 .gallery-item {
  width: 33%;
  max-width: 33%;
}
.blog__entry-detail .gallery.gallery-columns-3 .gallery-item img {
  padding: 15px;
  max-width: 100%;
  height: auto;
  border: 0 !important;
}

/* Assortiment */
/* - gebruikt global: hero */
.hero__assortiment figure {
  background-color: #4F4739;
}

.hero__assortiment img {
  display: block;
  opacity: 0.7;
  filter: alpha(opacity=70);
}

.hero__assortiment img.object-fit {
  min-height: 21.875em;
  max-height: 31.25em;
}

.assortiment,
.contact {
  padding: 35px 0 55px;
}
.assortiment h1,
.assortiment h2,
.assortiment h3,
.contact h1,
.contact h2,
.contact h3 {
  color: #fff;
}
.assortiment .assortiment__introduction,
.contact .assortiment__introduction {
  margin-bottom: 35px;
}
.assortiment .assortiment__introduction .introduction,
.contact .assortiment__introduction .introduction {
  padding-bottom: 20px;
}
.assortiment .assortiment__introduction .introduction h1,
.contact .assortiment__introduction .introduction h1 {
  margin-top: 0;
  padding: 35px 0;
  text-align: center;
  font-size: 2.3em;
}
.assortiment .assortiment__introduction .introduction h2,
.assortiment .assortiment__introduction .introduction h3,
.contact .assortiment__introduction .introduction h2,
.contact .assortiment__introduction .introduction h3 {
  margin-top: 35px;
  margin-bottom: 10px;
}
.assortiment .assortiment__introduction .introduction a,
.contact .assortiment__introduction .introduction a {
  text-decoration: underline;
}
.assortiment section,
.contact section {
  background-color: transparent;
  color: #fff;
}
.assortiment p, .assortiment ul, .assortiment li,
.contact p,
.contact ul,
.contact li {
  color: #fff;
}
.assortiment ul li,
.contact ul li {
  font-size: 0.9em;
  line-height: 1.7em;
}
.assortiment p,
.contact p {
  font-size: 0.9em;
}
.assortiment a,
.contact a {
  color: inherit;
}
.assortiment .assortiment__entry,
.contact .assortiment__entry {
  margin-bottom: 10px;
}
.assortiment .assortiment__entry .content,
.contact .assortiment__entry .content {
  padding-top: 10px;
}
.assortiment .assortiment__entry .content h3,
.contact .assortiment__entry .content h3 {
  margin-bottom: 5px;
}
.assortiment .assortiment__entry .buttons,
.contact .assortiment__entry .buttons {
  padding-bottom: 30px;
}
.assortiment .assortiment__entry .buttons .btn,
.contact .assortiment__entry .buttons .btn {
  font-size: 0.8em;
  font-weight: bold;
  text-transform: uppercase;
}
.assortiment .w-dashed-top,
.contact .w-dashed-top {
  border-top: 2px dashed #fff;
}
.assortiment .w-dashed-bottom,
.contact .w-dashed-bottom {
  border-bottom: 2px dashed #fff;
}
.assortiment .form__disclaimer,
.contact .form__disclaimer {
  color: #eee;
}

.assortiment__leveranciers {
  background-color: #fff;
  border-bottom: 1px solid #eee;
}
.assortiment__leveranciers img {
  display: block;
}

.assortiment__cta {
  margin-top: 55px;
  margin-bottom: 55px;
}
.assortiment__cta .content {
  margin-bottom: 35px;
}
.assortiment__cta .content h3 {
  margin-bottom: 5px;
}
.assortiment__cta .content p {
  font-size: 0.9em;
  color: #757F61;
}
.assortiment__cta .content p a {
  color: #4F4739;
  text-decoration: underline;
}
.assortiment__cta .cta__service {
  margin-bottom: 35px;
  padding: 25px;
  border: 1px solid #ddd;
}
.assortiment__cta .cta__service h5 {
  margin-bottom: 8px;
  text-transform: uppercase;
  color: #757F61;
}
.assortiment__cta .cta__service p {
  color: #4F4739;
  font-size: 0.8em;
}
.assortiment__cta .cta__service ul {
  margin-bottom: 0;
  color: #4F4739;
  font-size: 0.8em;
}
@media (max-width: 768px) {
  .assortiment__cta .buttons .button {
    margin-bottom: 5px;
  }
  .assortiment__cta .buttons .button .btn {
    width: 100%;
  }
}
@media (min-width: 768px) {
  .assortiment__cta .buttons .button .two {
    text-align: center;
  }
  .assortiment__cta .buttons .button .three {
    text-align: right;
  }
}
.assortiment__cta .buttons .btn {
  font-size: 0.8em;
  font-weight: bold;
  text-transform: uppercase;
}

.hero__bestellen .g-hero-content {
  background-color: #F4F4F2;
}
.hero__bestellen .g-hero-content h1 {
  color: #757F61;
}
.hero__bestellen .g-hero-content p {
  color: #4F4739;
}
.hero__bestellen .g-hero-content .brandelement-top,
.hero__bestellen .g-hero-content .brandelement-bottom {
  border-color: #fff;
}
.hero__bestellen .g-hero-content .content a {
  color: #757F61;
}

.form__bestellen {
  padding: 60px;
  min-height: 300px;
  font-family: "Aller", arial, sans-serif;
}
.form__bestellen .form__producten .entry__product {
  margin-bottom: 35px;
}
.form__bestellen .form__producten .entry__product .product__info h3,
.form__bestellen .form__producten .entry__product .product__info h4 {
  margin-bottom: 10px;
}
.form__bestellen .form__producten .entry__product .product__info p {
  font-size: 0.9em;
}

.hero__social {
  margin-bottom: 30px;
}
.hero__social img.object-fit {
  height: 100%;
  min-height: 100%;
  width: auto;
}
.hero__social .g-hero-content {
  height: 100%;
  color: #757F61;
}
.hero__social .g-hero-content .content {
  padding: 70px 55px;
}
@media (min-width: 768px) {
  .hero__social .g-hero-content .content {
    padding: 70px 90px;
  }
}
.hero__social .g-hero-content .content h1 {
  margin-bottom: 15px;
  color: #4F4739;
}
.hero__social .g-hero-content .content h3 {
  margin-bottom: 5px;
  font-size: 1.2em;
  color: #4F4739;
}

.block__social {
  margin-top: 35px;
}

.entry__social {
  margin-bottom: 25px;
}
.entry__social .link__social {
  font-style: italic;
}
.entry__social img.icon__social {
  margin-right: 5px;
  display: inline-block;
  vertical-align: middle;
}
.entry__social a {
  color: #4F4739;
}
.entry__social a:hover {
  color: #757F61;
}

footer.global {
  background-color: #F4F4F2;
}
footer.global .row__footer .inner {
  padding: 35px 1rem;
}
footer.global h6 {
  margin-bottom: 8px;
  font-size: 0.9em;
  color: #757F61;
}
footer.global li {
  padding: 2px 0;
  font-size: 0.75em;
  line-height: 1.3em;
}
footer.global li a {
  color: #757F61;
}
footer.global .brandelement-footer-top,
footer.global .brandelement-footer-bottom {
  width: 25px;
  height: 25px;
  background-color: #F4F4F2;
}
footer.global .brandelement-footer-top {
  position: absolute;
  top: 0;
  left: 0;
}
footer.global .brandelement-footer-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
}
footer.global .background-textuur {
  position: relative;
  background-image: url("../images/reedoo-textuur-hout.jpg");
  background-position: center center;
  background-size: cover;
}
footer.global .background-textuur ul {
  padding: 45px 0 45px 35px;
  text-align: center;
}
footer.global .background-textuur ul li {
  margin-bottom: 8px;
  display: inline;
}
@media (min-width: 768px) {
  footer.global .background-textuur ul {
    padding-bottom: 0;
    text-align: left;
  }
  footer.global .background-textuur ul li {
    display: block;
  }
}
footer.global .mrwoon {
  margin-top: 15px;
}
footer.global .mrwoon img {
  max-width: 140px;
  height: auto;
}

.copyright__creation {
  padding: 15px 0 10px 0;
  font-size: 0.75em;
  color: rgba(79, 71, 57, 0.7);
  text-align: center;
}
.copyright__creation .copyright {
  padding: 2px 0;
}
@media (min-width: 768px) {
  .copyright__creation .copyright {
    text-align: left;
  }
}
.copyright__creation .creation {
  padding: 2px 0;
}
@media (min-width: 768px) {
  .copyright__creation .creation {
    text-align: right;
  }
}
.copyright__creation p {
  margin-bottom: 0;
}
.copyright__creation a {
  color: inherit;
}
.copyright__creation a:hover {
  color: #4F4739;
}

.home-coupons {
  padding-top: 55px;
  padding-bottom: 70px;
}
.home-coupons h2 {
  margin-bottom: 20px;
  font-size: 1.7em;
  font-weight: bold;
}
.home-coupons h3 {
  margin-bottom: 10px;
  font-weight: bold;
}
.home-coupons p {
  color: #757F61;
  font-size: 0.95em;
}
.home-coupons em {
  font-style: normal;
  color: #EE3F68;
}
.home-coupons a {
  color: #757F61;
  text-decoration: underline;
}
.home-coupons a:hover {
  color: #EE3F68;
  text-decoration: none;
}

.reedoo-coupons {
  margin-top: 35px;
  margin-bottom: 35px;
}
@media (min-width: 768px) {
  .reedoo-coupons {
    margin-top: -55px;
  }
}
.reedoo-coupons .card-coupon {
  margin-bottom: 55px;
  color: #757F61;
  text-align: center;
}
.reedoo-coupons .card-coupon .card-coupon-image img {
  border: 1px solid #4F4739;
}
.reedoo-coupons .card-coupon .card-coupon-content {
  margin-top: 25px;
}
.reedoo-coupons .card-coupon .card-coupon-content h4 {
  font-weight: bold;
}
.reedoo-coupons .card-coupon .card-coupon-content p {
  font-size: 0.8em;
}