/*
// Nieuwe Pixels - Flexbox Grid v0.71 (05-05-2019)
//
// Built with:
// - SMACSS (05-05-2019)
// - 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
*/
/* ////////////////////////////////////////////////////////////
//
// VARIABLES
// path: /smacss/theme/setup/
//
/////////////////////////////////////////////////////////// */
/* /scss/smacs/setup/colors.scss  */
/* ////////////////////////////////////////////////////////////
//
// KINDLING MQ
// path: smacss/layout/mindling-mq
//
/////////////////////////////////////////////////////////// */
/*
// MIXINS
//
*/
*,
*:after,
*:before {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* /////////////////////////////////////////////////////////
//
// Grid
//
/////////////////////////////////////////////////////////// */
[class*=grid] {
  margin: 0 auto;
  padding: 0 0em;
  width: 92%;
}
@media (min-width: 992px) {
  [class*=grid] {
    padding: 0 0em;
  }
}

.grid {
  max-width: 1220px;
}

.grid__xs {
  max-width: 576px;
}

.grid__sm {
  max-width: 768px;
}

.grid__md {
  max-width: 992px;
}

.grid__lg {
  max-width: 1220px;
}

.grid__xlg {
  max-width: 1440px;
}

/*
// Row
*/
.row,
.row-padding,
.row-col-padding {
  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;
}

/*
// Grid: Row/Col padding
*/
.col-padding,
.row-padding,
.row-col-padding > [class*=col] {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

/*
// MQ: Custom Grid builder
*/
.col {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

/*
// Grid: Cols (default)
//
*/
.col-1 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 8.3333333333%;
          flex: 0 0 8.3333333333%;
  max-width: 8.3333333333%;
}

.push-1 {
  margin-right: 8.3333333333%;
}

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

.order-1 {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

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

.push-2 {
  margin-right: 16.6666666667%;
}

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

.order-2 {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

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

.push-3 {
  margin-right: 25%;
}

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

.order-3 {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}

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

.push-4 {
  margin-right: 33.3333333333%;
}

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

.order-4 {
  -webkit-box-ordinal-group: 5;
      -ms-flex-order: 4;
          order: 4;
}

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

.push-5 {
  margin-right: 41.6666666667%;
}

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

.order-5 {
  -webkit-box-ordinal-group: 6;
      -ms-flex-order: 5;
          order: 5;
}

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

.push-6 {
  margin-right: 50%;
}

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

.order-6 {
  -webkit-box-ordinal-group: 7;
      -ms-flex-order: 6;
          order: 6;
}

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

.push-7 {
  margin-right: 58.3333333333%;
}

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

.order-7 {
  -webkit-box-ordinal-group: 8;
      -ms-flex-order: 7;
          order: 7;
}

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

.push-8 {
  margin-right: 66.6666666667%;
}

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

.order-8 {
  -webkit-box-ordinal-group: 9;
      -ms-flex-order: 8;
          order: 8;
}

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

.push-9 {
  margin-right: 75%;
}

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

.order-9 {
  -webkit-box-ordinal-group: 10;
      -ms-flex-order: 9;
          order: 9;
}

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

.push-10 {
  margin-right: 83.3333333333%;
}

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

.order-10 {
  -webkit-box-ordinal-group: 11;
      -ms-flex-order: 10;
          order: 10;
}

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

.push-11 {
  margin-right: 91.6666666667%;
}

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

.order-11 {
  -webkit-box-ordinal-group: 12;
      -ms-flex-order: 11;
          order: 11;
}

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

.push-12 {
  margin-right: 100%;
}

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

.order-12 {
  -webkit-box-ordinal-group: 13;
      -ms-flex-order: 12;
          order: 12;
}

/* /////////////////////////////////////////////////////////
//
// Grid: Custom colums by size
// 
// - Build whatever you need. Leave out what you dont need.
//
/////////////////////////////////////////////////////////// */
/*
// SM: Cols - Tablet and up
*/
@media (min-width: 48em) {
  .col-sm-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 8.3333333333%;
            flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .push-sm-1 {
    margin-right: 8.3333333333%;
  }
  .offset-sm-1 {
    margin-left: 8.3333333333%;
  }
  .order-sm-1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .col-sm-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.6666666667%;
            flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .push-sm-2 {
    margin-right: 16.6666666667%;
  }
  .offset-sm-2 {
    margin-left: 16.6666666667%;
  }
  .order-sm-2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .col-sm-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }
  .push-sm-3 {
    margin-right: 25%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .order-sm-3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .col-sm-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.3333333333%;
            flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .push-sm-4 {
    margin-right: 33.3333333333%;
  }
  .offset-sm-4 {
    margin-left: 33.3333333333%;
  }
  .order-sm-4 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  .col-sm-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 41.6666666667%;
            flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .push-sm-5 {
    margin-right: 41.6666666667%;
  }
  .offset-sm-5 {
    margin-left: 41.6666666667%;
  }
  .order-sm-5 {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
  .col-sm-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
  .push-sm-6 {
    margin-right: 50%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .order-sm-6 {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }
  .col-sm-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 58.3333333333%;
            flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .push-sm-7 {
    margin-right: 58.3333333333%;
  }
  .offset-sm-7 {
    margin-left: 58.3333333333%;
  }
  .order-sm-7 {
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }
  .col-sm-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 66.6666666667%;
            flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .push-sm-8 {
    margin-right: 66.6666666667%;
  }
  .offset-sm-8 {
    margin-left: 66.6666666667%;
  }
  .order-sm-8 {
    -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
            order: 8;
  }
  .col-sm-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
    max-width: 75%;
  }
  .push-sm-9 {
    margin-right: 75%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .order-sm-9 {
    -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
            order: 9;
  }
  .col-sm-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 83.3333333333%;
            flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .push-sm-10 {
    margin-right: 83.3333333333%;
  }
  .offset-sm-10 {
    margin-left: 83.3333333333%;
  }
  .order-sm-10 {
    -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
            order: 10;
  }
  .col-sm-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 91.6666666667%;
            flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .push-sm-11 {
    margin-right: 91.6666666667%;
  }
  .offset-sm-11 {
    margin-left: 91.6666666667%;
  }
  .order-sm-11 {
    -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
            order: 11;
  }
  .col-sm-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
  .push-sm-12 {
    margin-right: 100%;
  }
  .offset-sm-12 {
    margin-left: 100%;
  }
  .order-sm-12 {
    -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
            order: 12;
  }
}
/*
// MD: Cols - Desktop and up
*/
@media (min-width: 62em) {
  .col-md-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 8.3333333333%;
            flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .push-md-1 {
    margin-right: 8.3333333333%;
  }
  .offset-md-1 {
    margin-left: 8.3333333333%;
  }
  .order-md-1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .col-md-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.6666666667%;
            flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .push-md-2 {
    margin-right: 16.6666666667%;
  }
  .offset-md-2 {
    margin-left: 16.6666666667%;
  }
  .order-md-2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .col-md-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }
  .push-md-3 {
    margin-right: 25%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .order-md-3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .col-md-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.3333333333%;
            flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .push-md-4 {
    margin-right: 33.3333333333%;
  }
  .offset-md-4 {
    margin-left: 33.3333333333%;
  }
  .order-md-4 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  .col-md-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 41.6666666667%;
            flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .push-md-5 {
    margin-right: 41.6666666667%;
  }
  .offset-md-5 {
    margin-left: 41.6666666667%;
  }
  .order-md-5 {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
  .col-md-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
  .push-md-6 {
    margin-right: 50%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .order-md-6 {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }
  .col-md-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 58.3333333333%;
            flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .push-md-7 {
    margin-right: 58.3333333333%;
  }
  .offset-md-7 {
    margin-left: 58.3333333333%;
  }
  .order-md-7 {
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }
  .col-md-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 66.6666666667%;
            flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .push-md-8 {
    margin-right: 66.6666666667%;
  }
  .offset-md-8 {
    margin-left: 66.6666666667%;
  }
  .order-md-8 {
    -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
            order: 8;
  }
  .col-md-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
    max-width: 75%;
  }
  .push-md-9 {
    margin-right: 75%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .order-md-9 {
    -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
            order: 9;
  }
  .col-md-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 83.3333333333%;
            flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .push-md-10 {
    margin-right: 83.3333333333%;
  }
  .offset-md-10 {
    margin-left: 83.3333333333%;
  }
  .order-md-10 {
    -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
            order: 10;
  }
  .col-md-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 91.6666666667%;
            flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .push-md-11 {
    margin-right: 91.6666666667%;
  }
  .offset-md-11 {
    margin-left: 91.6666666667%;
  }
  .order-md-11 {
    -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
            order: 11;
  }
  .col-md-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
  .push-md-12 {
    margin-right: 100%;
  }
  .offset-md-12 {
    margin-left: 100%;
  }
  .order-md-12 {
    -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
            order: 12;
  }
}
/*
// LG: Cols - Desktop wide/large
*/
@media (min-width: 76.25em) {
  .col-lg-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 8.3333333333%;
            flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .push-lg-1 {
    margin-right: 8.3333333333%;
  }
  .offset-lg-1 {
    margin-left: 8.3333333333%;
  }
  .order-lg-1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .col-lg-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.6666666667%;
            flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .push-lg-2 {
    margin-right: 16.6666666667%;
  }
  .offset-lg-2 {
    margin-left: 16.6666666667%;
  }
  .order-lg-2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .col-lg-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }
  .push-lg-3 {
    margin-right: 25%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .order-lg-3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .col-lg-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.3333333333%;
            flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .push-lg-4 {
    margin-right: 33.3333333333%;
  }
  .offset-lg-4 {
    margin-left: 33.3333333333%;
  }
  .order-lg-4 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  .col-lg-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 41.6666666667%;
            flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .push-lg-5 {
    margin-right: 41.6666666667%;
  }
  .offset-lg-5 {
    margin-left: 41.6666666667%;
  }
  .order-lg-5 {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
  .col-lg-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
  .push-lg-6 {
    margin-right: 50%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .order-lg-6 {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }
  .col-lg-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 58.3333333333%;
            flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .push-lg-7 {
    margin-right: 58.3333333333%;
  }
  .offset-lg-7 {
    margin-left: 58.3333333333%;
  }
  .order-lg-7 {
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }
  .col-lg-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 66.6666666667%;
            flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .push-lg-8 {
    margin-right: 66.6666666667%;
  }
  .offset-lg-8 {
    margin-left: 66.6666666667%;
  }
  .order-lg-8 {
    -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
            order: 8;
  }
  .col-lg-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
    max-width: 75%;
  }
  .push-lg-9 {
    margin-right: 75%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .order-lg-9 {
    -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
            order: 9;
  }
  .col-lg-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 83.3333333333%;
            flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .push-lg-10 {
    margin-right: 83.3333333333%;
  }
  .offset-lg-10 {
    margin-left: 83.3333333333%;
  }
  .order-lg-10 {
    -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
            order: 10;
  }
  .col-lg-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 91.6666666667%;
            flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .push-lg-11 {
    margin-right: 91.6666666667%;
  }
  .offset-lg-11 {
    margin-left: 91.6666666667%;
  }
  .order-lg-11 {
    -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
            order: 11;
  }
  .col-lg-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
  .push-lg-12 {
    margin-right: 100%;
  }
  .offset-lg-12 {
    margin-left: 100%;
  }
  .order-lg-12 {
    -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
            order: 12;
  }
}
@media (min-width: 90em) {
  .col-xlg-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 8.3333333333%;
            flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .push-xlg-1 {
    margin-right: 8.3333333333%;
  }
  .offset-xlg-1 {
    margin-left: 8.3333333333%;
  }
  .order-xlg-1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .col-xlg-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.6666666667%;
            flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .push-xlg-2 {
    margin-right: 16.6666666667%;
  }
  .offset-xlg-2 {
    margin-left: 16.6666666667%;
  }
  .order-xlg-2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .col-xlg-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }
  .push-xlg-3 {
    margin-right: 25%;
  }
  .offset-xlg-3 {
    margin-left: 25%;
  }
  .order-xlg-3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .col-xlg-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.3333333333%;
            flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .push-xlg-4 {
    margin-right: 33.3333333333%;
  }
  .offset-xlg-4 {
    margin-left: 33.3333333333%;
  }
  .order-xlg-4 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  .col-xlg-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 41.6666666667%;
            flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .push-xlg-5 {
    margin-right: 41.6666666667%;
  }
  .offset-xlg-5 {
    margin-left: 41.6666666667%;
  }
  .order-xlg-5 {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
  .col-xlg-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
  .push-xlg-6 {
    margin-right: 50%;
  }
  .offset-xlg-6 {
    margin-left: 50%;
  }
  .order-xlg-6 {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }
  .col-xlg-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 58.3333333333%;
            flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .push-xlg-7 {
    margin-right: 58.3333333333%;
  }
  .offset-xlg-7 {
    margin-left: 58.3333333333%;
  }
  .order-xlg-7 {
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }
  .col-xlg-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 66.6666666667%;
            flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .push-xlg-8 {
    margin-right: 66.6666666667%;
  }
  .offset-xlg-8 {
    margin-left: 66.6666666667%;
  }
  .order-xlg-8 {
    -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
            order: 8;
  }
  .col-xlg-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
    max-width: 75%;
  }
  .push-xlg-9 {
    margin-right: 75%;
  }
  .offset-xlg-9 {
    margin-left: 75%;
  }
  .order-xlg-9 {
    -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
            order: 9;
  }
  .col-xlg-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 83.3333333333%;
            flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .push-xlg-10 {
    margin-right: 83.3333333333%;
  }
  .offset-xlg-10 {
    margin-left: 83.3333333333%;
  }
  .order-xlg-10 {
    -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
            order: 10;
  }
  .col-xlg-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 91.6666666667%;
            flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .push-xlg-11 {
    margin-right: 91.6666666667%;
  }
  .offset-xlg-11 {
    margin-left: 91.6666666667%;
  }
  .order-xlg-11 {
    -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
            order: 11;
  }
  .col-xlg-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
  .push-xlg-12 {
    margin-right: 100%;
  }
  .offset-xlg-12 {
    margin-left: 100%;
  }
  .order-xlg-12 {
    -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
            order: 12;
  }
}
/* ////////////////////////////////////////////////////////////
//
// KINDLING ADDONS
// path: smacss/layout/kindling-addons
//
/////////////////////////////////////////////////////////// */
.row.justify--flex-start,
.row-col-padding.justify--flex-start,
[class*=col].justify--flex-start {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.row.justify--flex-end,
.row-col-padding.justify--flex-end,
[class*=col].justify--flex-end {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.row.justify--center,
.row-col-padding.justify--center,
[class*=col].justify--center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.row.justify--space-between,
.row-col-padding.justify--space-between,
[class*=col].justify--space-between {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.row.justify--space-around,
.row-col-padding.justify--space-around,
[class*=col].justify--space-around {
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

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

/*
// Grid: Super padding
*/
.padd-l,
.padding-left {
  padding-left: 1.25rem;
}

.padd-r,
.padding-right {
  padding-right: 1.25rem;
}

.padd-lr,
.padding-leftright {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.padd-t {
  padding-top: 1.25rem;
}

.padd-b {
  padding-bottom: 1.25rem;
}

.padd-tb {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.padd {
  padding: 1.25rem;
}

/* ////////////////////////////////////////////////////////////
//
// NORMALIZE
// path: smacss/base/normalzie
//
/////////////////////////////////////////////////////////// */
/*! 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;
}

/* ////////////////////////////////////////////////////////////
//
// UTILITIES
// path: smacss/layout/utilities
//
/////////////////////////////////////////////////////////// */
.text-align--left {
  text-align: left !important;
}

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

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

.u__list-basic,
.list__basic,
.site__footer-navigation-list,
.site__header__list ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

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

/* /scss/smacs/setup/libs/fluid-type-sclae.scss  */
h5,
.h5 {
  font-family: var(--font-heading);
  font-weight: var(--font-heading-weight);
  -ms-hyphens: auto;
      hyphens: auto;
  margin: 0;
  margin-bottom: 0.45em;
  color: var(--font-heading-color);
  font-size: 1.1875rem;
  font-size: min(max(1rem, 4.1875vw), 1.1875rem);
}

h4,
.h4 {
  font-family: var(--font-heading);
  font-weight: var(--font-heading-weight);
  -ms-hyphens: auto;
      hyphens: auto;
  margin: 0;
  margin-bottom: 0.45em;
  color: var(--font-heading-color);
  font-size: 1.484375rem;
  font-size: min(max(0.99453125rem, 4.48984375vw), 1.484375rem);
}

h3,
.h3 {
  font-family: var(--font-heading);
  font-weight: var(--font-heading-weight);
  -ms-hyphens: auto;
      hyphens: auto;
  margin: 0;
  margin-bottom: 0.45em;
  color: var(--font-heading-color);
  font-size: 1.85546875rem;
  font-size: min(max(1.2431640625rem, 4.6123046875vw), 1.85546875rem);
}

h2,
.h2 {
  font-family: var(--font-heading);
  font-weight: var(--font-heading-weight);
  -ms-hyphens: auto;
      hyphens: auto;
  margin: 0;
  margin-bottom: 0.45em;
  color: var(--font-heading-color);
  font-size: 2.3193359375rem;
  font-size: min(max(1.5539550781rem, 4.7653808594vw), 2.3193359375rem);
}

h1,
.h1 {
  font-family: var(--font-heading);
  font-weight: var(--font-heading-weight);
  -ms-hyphens: auto;
      hyphens: auto;
  margin: 0;
  margin-bottom: 0.45em;
  color: var(--font-heading-color);
  font-size: 2.8991699219rem;
  font-size: min(max(1.9424438477rem, 4.9567260742vw), 2.8991699219rem);
}

h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5 {
  -ms-hyphens: auto;
      hyphens: auto;
  margin: 0;
  margin-bottom: 0.45em;
  line-height: 1.1em;
  color: #111;
}

p, li {
  margin-top: 0;
  font-size: min(max(0.9em, 3vw), 1.0em);
  font-weight: var(--font-body-weight);
}

/* /scss/smacs/setup/fonts.scss  */
@font-face {
  font-family: "Antonio";
  src: url("../fonts/antonio/Antonio-Bold.woff2") format("woff2"), url("../fonts/antonio/Antonio-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Antonio";
  src: url("../fonts/antonio/Antonio-Medium.woff2") format("woff2"), url("../fonts/antonio/Antonio-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Antonio";
  src: url("../fonts/antonio/Antonio-Light.woff2") format("woff2"), url("../fonts/antonio/Antonio-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Antonio";
  src: url("../fonts/antonio/Antonio-Regular.woff2") format("woff2"), url("../fonts/antonio/Antonio-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Antonio";
  src: url("../fonts/antonio/Antonio-SemiBold.woff2") format("woff2"), url("../fonts/antonio/Antonio-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Muli";
  src: url("../fonts/muli/Muli-LightItalic.woff2") format("woff2"), url("../fonts/muli/Muli-LightItalic.woff") format("woff");
  font-weight: 300;
  font-style: italic;
}
@font-face {
  font-family: "Muli";
  src: url("../fonts/muli/Muli-Regular.woff2") format("woff2"), url("../fonts/muli/Muli-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
/* /scss/smacs/site/html.scss  */
body {
  font-size: 19px;
  font-family: "Muli", arial, sans-serif;
  color: #111;
  line-height: 150%;
  background-color: #fff;
}

figure {
  margin: 0;
}

img {
  display: block;
}

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

a {
  text-decoration: none;
  color: #091ec5;
}

/* /scss/smacss/site/components.scss  */
/*-- Components: HTML --------------------*/
img {
  display: inline-block;
}

.responsive, .home__merken__media-image, .home__hero002-media-image, .home__hero-media-image, .cmp__card__media-image {
  max-width: 100%;
  max-height: 100%;
}

.fullwidth, .home__hero002-media-image, .home__hero-media-image {
  width: 100%;
  height: auto;
}

.object-fit, .home__hero002-media-image, .home__hero-media-image {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}

/* /scss/smacs/components/links.scss  */
.link, .link__primary, .link__base {
  display: inline-block;
  font-family: "Muli", arial, sans-serif;
  font-size: 1rem;
  font-weight: bold;
  -webkit-transition: background-color 50ms linear;
  transition: background-color 50ms linear;
}

.link__base {
  color: #111;
}
.link__base:hover {
  color: #091ec5;
}

.link__primary {
  color: #091ec5;
}
.link__primary:hover {
  color: #111;
}

/* /scss/smacs/components/button.scss  */
.btn, .btn__grey-pill, .btn__grey, .btn__white-ghost, .btn__white, .btn__secondary, .btn__primary-ghost, .btn__primary-pill, .btn__primary, .btn__base {
  padding: 0.75em 3em;
  display: inline-block;
  font-family: "Antonio", arial, sans-serif;
  font-size: 1rem;
  line-height: 1rem;
  font-weight: bold;
  min-width: 130px;
  text-align: center;
  border: 1px solid transparent;
  border-radius: 3px;
  -webkit-transition: all 100ms linear;
  transition: all 100ms linear;
}

.btn__border__pill, .btn__grey-pill, .btn__white-ghost, .btn__white, .btn__secondary, .btn__primary-ghost, .btn__primary-pill {
  border-radius: 25px;
}

.btn__base {
  color: #fff;
  background-color: #111;
}
.btn__base:hover {
  color: #111;
  background-color: transparent;
}

.btn__primary {
  color: #fff;
  background-color: #091ec5;
}
.btn__primary:hover {
  background-color: #091ec5;
}

.btn__primary-pill {
  color: #fff;
  background-color: #091ec5;
}
.btn__primary-pill:hover {
  background-color: #091ec5;
}

.btn__primary-ghost {
  color: #091ec5;
  border-color: #c4c4c5;
}
.btn__primary-ghost:hover {
  border-color: transparent;
  color: #fff;
  background-color: #091ec5;
}

.btn__secondary {
  color: #fff;
  background-color: #091ec5;
}
.btn__secondary:hover {
  background-color: #091ec5;
}

.btn__white {
  color: #091ec5;
  background-color: #fff;
}
.btn__white:hover {
  color: #fff;
  background-color: #091ec5;
}

.btn__white-ghost {
  color: #091ec5;
  border-color: #091ec5;
  background-color: #fff;
}
.btn__white-ghost:hover {
  border-color: transparent;
  color: #fff;
  background-color: #091ec5;
}

.btn__grey {
  color: #111;
  background-color: #eee;
}
.btn__grey:hover {
  color: #111;
  background-color: transparent;
}

.btn__grey-pill {
  color: #111;
  background-color: #eee;
}
.btn__grey-pill:hover {
  color: #111;
  background-color: transparent;
}

/* /scss/smacs/components/form.scss  */
.form__header, form header,
.form header,
.wpcf7-form header {
  margin-bottom: 1.25rem;
}

.form__label, form label,
.form label,
.wpcf7-form label {
  display: block;
  margin-bottom: 0.4166666667rem;
}
.form__label span, form label span,
.form label span,
.wpcf7-form label span {
  display: inline-block;
  margin-bottom: 0.4166666667rem;
}

.formfield__label {
  display: block;
  font-weight: 600;
}

.form__input, 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,
.wpcf7-form input[type=text],
.wpcf7-form input[type=email],
.wpcf7-form input[type=telephone],
.wpcf7-form textarea,
.wpcf7-form select, .form__input-select, .form__input-textarea {
  width: 100%;
  margin-bottom: 10px;
  padding: 16px 6px;
  font-family: "Muli", arial, sans-serif;
  border: 0;
  border-bottom: 1px solid #ddd;
}

.form__input-textarea {
  color: inherit;
  font-family: "Muli", arial, sans-serif;
}

.form__input-select {
  color: inherit;
  font-family: "Muli", arial, sans-serif;
}

.form__input-submit, form input[type=submit],
.form input[type=submit],
.wpcf7-form input[type=submit] {
  cursor: pointer;
}

::-webkit-input-placeholder {
  color: #aaa;
}

::-moz-placeholder {
  color: #aaa;
}

:-ms-input-placeholder {
  color: #aaa;
}

:-moz-placeholder {
  color: #aaa;
}

.form__fieldset, form fieldset,
.form fieldset,
.wpcf7-form fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

form,
.form,
.wpcf7-form {
  color: #091ec5;
}
.wpcf7-form .wpcf7-radio {
  padding-top: 1em;
  padding-bottom: 1em;
  display: block;
}
.wpcf7-form span.wpcf7-list-item {
  display: block !important;
  margin-left: 0 !important;
  margin-bottom: 0.5em !important;
}
.wpcf7-form .wpcf7-list-item-label {
  margin-left: 0.5em;
}

/* /scss/smacs/components/article.scss  */
article h2, article h3, article h4 {
  margin-bottom: 25px;
  margin-top: 45px;
}

/*-- Components: Custom --------------------*/
/* /scss/smacs/components/card.scss  */
.cmp__card {
  margin: 0;
}

.cmp__card__border {
  border: 1px solid #eee;
}

.cmp__card__shadow {
  -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

/* /scss/smacs/components/hero.scss  */
.cmp__hero {
  position: relative;
  overflow: hidden;
}

.cmp__hero-media {
  position: relative;
}

.cmp__hero-media-image {
  width: 100%;
}

.cmp__hero-caption-content {
  padding: 2.5em;
}

/* /scss/smacs/components/pagination.scss  */
.pagination {
  margin: 0;
  padding: 0;
  text-align: center;
}
.pagination li {
  display: inline-block;
  margin-right: 4px;
  text-align: center;
  font-size: 0.9rem;
  font-weight: bold;
  border-radius: 3px;
  border: 1px solid #ddd;
  background-color: #fff;
  color: inherit;
}
.pagination .current-page,
.pagination .number.current,
.pagination a.number {
  display: inline-block;
  padding: 7px 13px 7px;
  min-width: 40px;
}

/* /scss/smacss/site/modules.scss  */
/* /scss/smacss/site/pages.scss  */
/* Global pagestyles go here */
/*-- Import pages --------------------*/
/* /scss/smacs/pages/home.scss  */
.g__mobilehamburger {
  display: none;
}

.home__hero-header {
  padding: 3em 0;
  text-align: center;
  color: #fff;
}
.home__hero-header p {
  margin: 0;
}

.home__hero-media {
  margin-bottom: 0em;
}
@media (min-width: 768px) {
  .home__hero-media {
    margin-bottom: 3em;
  }
}

.home__hero-media-image {
  max-height: 690px;
}

.home__introduction {
  padding: 1.5em 0;
}

.home__introduction__content {
  text-align: center;
}
.home__introduction__content h1 {
  font-size: 2.7em;
  color: #0094d1;
}
.home__introduction__content h2 {
  color: #0094d1;
}
.home__introduction__content ul {
  margin-left: 0;
  padding-left: 0;
  text-align: left;
  display: inline-block;
}
.home__introduction__content ul li {
  font-weight: bold;
}
@media (min-width: 768px) {
  .home__introduction__content ul {
    display: inline-block;
  }
  .home__introduction__content ul li {
    float: left;
    font-weight: bold;
  }
  .home__introduction__content ul li + li {
    margin-left: 2em;
  }
}

.home__introduction__contact {
  font-size: 0.9em;
}

.home__services {
  margin-bottom: 3em;
  padding-top: 3em;
}
@media (min-width: 768px) {
  .home__services {
    margin-bottom: 0em;
    padding: 3em 0;
  }
}

.home__services__content {
  margin-bottom: 3em;
}
@media (min-width: 768px) {
  .home__services__content {
    margin-bottom: 3em;
  }
}

.home__storelocation {
  margin-top: -1.5em;
  margin-bottom: 1.5em;
}
@media (min-width: 768px) {
  .home__storelocation {
    margin-bottom: 3em;
  }
}

.home__storelocation__content {
  padding: 2em 1.5em;
  color: #fff;
  background-color: #0094d1;
  border-radius: 7px;
}
@media (min-width: 768px) {
  .home__storelocation__content {
    padding: 3em;
  }
}

.home__appointment {
  margin-bottom: 3em;
  padding: 3em 0;
}
.home__appointment h2 {
  margin-bottom: 2em;
}

.home__appointment__content {
  margin-bottom: 3em;
}
.home__appointment__content ul li strong {
  display: block;
}

.home__hero002-media {
  margin-bottom: 0em;
}
@media (min-width: 768px) {
  .home__hero002-media {
    margin-bottom: 3em;
  }
}

.home__hero002-media-image {
  max-height: 690px;
}

.home__merken {
  padding: 2em 0 5em;
}
.home__merken header {
  margin-bottom: 2em;
  text-align: center;
}

.home__merken__media {
  text-align: center;
}

.home__merken__media-image {
  padding: 0.5em 1em;
  max-height: 6em;
}

/* /scss/smacss/site/site.scss  */
:root {
  --color-base: #111;
  --color-primary: #091ec5;
  --color-secondary: #091ec5;
  --font-heading: Antonio, arial, sans-serif;
  --font-heading-weight: 600;
  --font-heading-color: #111;
  --font-body: Muli, arial, sans-serif;
  --font-body-weight: 400;
  --font-body-color: #111;
}

.site__header {
  padding: 2em 0 1em;
}
.site__header__brand {
  padding: 1em 0;
}

.site__header-brand-logo {
  max-height: 57px;
}
.site__header__list {
  position: relative;
  font-size: 1em;
  /*
  @media(max-width: $grid-max-small){
  	li{
  		display: block;
  		padding: 0.5em 0;
  		border-bottom: 1px solid #eee;
  		+ li{
  			border-bottom: 1px solid #eee;
  			&:last-child{
  				border:0;
  			}
  		}
  	}
  }
  */
}
.site__header__list ul {
  text-align: right;
}
.site__header__list li {
  color: #111;
  font-size: inherit;
  font-weight: bold;
  font-family: "Antonio", arial, sans-serif;
}
.site__header__list a {
  color: #111;
}
@media (min-width: 768px) {
  .site__header__list {
    text-align: center;
  }
  .site__header__list li {
    display: inline-block;
  }
  .site__header__list li + li {
    margin-left: 2em;
  }
}

/* /scss/smacs/site/main.scss  */
/*
// main__contenblock
*/
.main__contentblock {
  margin-bottom: 5em;
}

.contentblock__header {
  margin-bottom: 3em;
}
.contentblock__header h2, .contentblock__header h3 {
  margin-top: 0;
}

h1, h2, h3, h4, h5 {
  margin-bottom: 0.75em;
  color: inherit;
}

p {
  line-height: 1.4;
}

a {
  color: #0094d1;
}

/* /scss/smacs/site/footer.scss  */
.site__footer {
  padding: 1.5em;
  text-align: center;
  border-top: 1px solid #e8e8e8;
  background-color: #fafafa;
}

.site__footer__copyright {
  font-size: 0.8em;
}
.site__footer__copyright img {
  max-height: 12px;
}

@media (max-width: 768px) {
  .site__footer-brand-logo {
    margin-bottom: 0.5em;
  }
}
@media (min-width: 768px) {
  .site__footer-brand-logo {
    width: 100%;
    max-height: 100%;
    max-height: 120px;
  }
}

@media (min-width: 768px) {
  .site__footer-navigation {
    text-align: center;
  }
}

.site__footer-navigation-list {
  width: 100%;
}
.site__footer-navigation-list li {
  color: #fff;
}
.site__footer-navigation-list li a {
  color: inherit;
}
.site__footer-navigation-list li a:hover {
  color: rgba(255, 255, 255, 0.5);
}
@media (min-width: 768px) {
  .site__footer-navigation-list li {
    display: inline;
  }
  .site__footer-navigation-list li + li {
    margin-left: 1.5em;
  }
}

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

.site__footer-socialmedia-icon {
  display: inline-block;
  margin-left: 0.5em;
  max-height: 28px;
}

.site__footer-realisation {
  padding: 0.25em 0;
  text-align: center;
  background-color: #091ec5;
}

.site__footer-realisation-companies {
  color: #fff;
  font-size: 0.7em;
}
.site__footer-realisation-companies span + span::before {
  padding-right: 0.5em;
  content: "|";
}

.site__footer-realisation-company {
  padding: 0 0.25em;
  color: inherit;
}
.site__footer-realisation-company a {
  color: inherit;
}