/*----------------------------------------------------------------------------------------------------------
Theme Name: 	Caroline Bijvoet
Theme URI:
Description: 	Custom made thema
Version: 		2023.1.0
Author: 		wijstudio
Author URI: 	http://wijstudio.nl
----------------------------------------------------------------------------------------------------------
14 / 16	= 		0.875em 		(14px equivalent)
16 / 16	= 		1em 			(16px equivalent)
18 / 16 = 		1.125em 		(18px equivalent)
21 / 16 = 		1.3125em 		(21px equivalent)
24 / 16 = 		1.5em 			(24px equivalent)
30 / 16 = 		1.875em 		(30px equivalent)

---------------------------- in plaats van 1440, 768, 640 gebruiken we em:
 640 - 40.em
 641 - 40.063em
 704 - 44em
 768 - 48em
1024 - 64.em
1025 - 64.063em
1080 - 68em
1220 - 76.25em
1280 - 80em
1440 - 90em
1441 - 90.063em
1920 - 120em
----------------------------------------------------------------------------------------------------------*/
@import "css/normalize.css";
@font-face {
  font-family: "Pangram Fragment Sans Light";
  src: url("fonts/PPFragment-SansLight.woff") format("truetype");
  font-weight: 310;
}
@font-face {
  font-family: "Pangram Fragment Text Regular";
  src: url("fonts/PPFragment-TextRegular.woff") format("truetype");
  font-weight: 390;
}
@font-face {
  font-family: "Pangram Fragment Text Bold";
  src: url("fonts/PPFragment-TextBold.woff") format("truetype");
  font-weight: 650;
}
.oranje {
  color: #FF6A00;
}

.wit {
  color: #fff;
}

.grijs {
  color: #E3E3E3;
}

.trans {
  opacity: 0.5;
}

/*
---------------------------- classes:
.push-right			zet dingen rechts
.col-xx-xx			columns in 12
.push-xx-xx			creates an empty space on the left
.small-col-xx-xx	forceert een column wanneer small (<48em/768px)
.medium-col-xx-xx	forceert een column wanneer medium (<48em/768px)
*/
*, *:after, *:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  margin: 0px;
}

img {
  display: inline-block;
  vertical-align: middle;
}

.push-right {
  float: right;
}

/* -------------------------------- mobile first / tot 640px / small */
@media only screen {
  .row {
    width: 100%;
    max-width: 90em;
    margin: 0 auto;
    overflow: hidden;
    padding-top: 0px;
    padding-left: 20px; /* row-space to left */
    padding-right: 0px; /* row-space to right: (row-space-left - column-space) e.g. 30px-30px=0 */
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .row.center-cols {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: auto;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .row:before, .row:after {
    content: normal;
  }
  .row:after {
    clear: both;
  }
  [class*=col-] {
    float: left;
    padding-right: 20px; /* column-space */
  }
  .col-small-12 {
    width: 100%;
  }
  .col-small-11 {
    width: 91.66%;
  }
  .col-small-10 {
    width: 83.333%;
  }
  .col-small-9 {
    width: 75%;
  }
  .col-small-8 {
    width: 66.66%;
  }
  .col-small-7 {
    width: 58.33%;
  }
  .col-small-6 {
    width: 50%;
  }
  .col-small-5 {
    width: 41.66%;
  }
  .col-small-4 {
    width: 33.33%;
  }
  .col-small-3 {
    width: 25%;
  }
  .col-small-2 {
    width: 16.667%;
  }
  .col-small-1 {
    width: 8.33%;
  }
  .hide-on-small {
    display: none !important;
  }
  .push-small-11 {
    margin-left: 91.66%;
  }
  .push-small-10 {
    margin-left: 83.333%;
  }
  .push-small-9 {
    margin-left: 75%;
  }
  .push-small-8 {
    margin-left: 66.66%;
  }
  .push-small-7 {
    margin-left: 58.33%;
  }
  .push-small-6 {
    margin-left: 50%;
  }
  .push-small-5 {
    margin-left: 41.66%;
  }
  .push-small-4 {
    margin-left: 33.33%;
  }
  .push-small-3 {
    margin-left: 25%;
  }
  .push-small-2 {
    margin-left: 16.667%;
  }
  .push-small-1 {
    margin-left: 8.33%;
  }
  .push-small-0 {
    margin-left: 0;
  }
}
/* -------------------------------------------------- vanaf 640px / medium */
@media only screen and (min-width: 48em) {
  .row {
    padding-left: 20px; /* row-space to left */
  }
  [class*=col-] {
    padding-right: 20px; /* column-space */
  }
  .col-medium-12 {
    width: 100%;
  }
  .col-medium-11 {
    width: 91.66%;
  }
  .col-medium-10 {
    width: 83.333%;
  }
  .col-medium-9 {
    width: 75%;
  }
  .col-medium-8 {
    width: 66.66%;
  }
  .col-medium-7 {
    width: 58.33%;
  }
  .col-medium-6 {
    width: 50%;
  }
  .col-medium-5 {
    width: 41.66%;
  }
  .col-medium-4 {
    width: 33.33%;
  }
  .col-medium-3 {
    width: 25%;
  }
  .col-medium-2 {
    width: 16.667%;
  }
  .col-medium-1 {
    width: 8.33%;
  }
  .hide-on-small {
    display: block !important;
  }
  .hide-on-medium {
    display: none !important;
  }
  .push-medium-11 {
    margin-left: 91.66%;
  }
  .push-medium-10 {
    margin-left: 83.333%;
  }
  .push-medium-9 {
    margin-left: 75%;
  }
  .push-medium-8 {
    margin-left: 66.66%;
  }
  .push-medium-7 {
    margin-left: 58.33%;
  }
  .push-medium-6 {
    margin-left: 50%;
  }
  .push-medium-5 {
    margin-left: 41.66%;
  }
  .push-medium-4 {
    margin-left: 33.33%;
  }
  .push-medium-3 {
    margin-left: 25%;
  }
  .push-medium-2 {
    margin-left: 16.667%;
  }
  .push-medium-1 {
    margin-left: 8.33%;
  }
  .push-meduim-0 {
    margin-left: 0;
  }
}
/* -------------------------------------------------- vanaf 1024px */
@media only screen and (min-width: 60em) {
  .row {
    width: 100%;
    padding-left: 20px; /* row-space to left */
    padding-right: 0px; /* row-space to right: (row-space-left - column-space) e.g. 20px-20px=0px */
  }
  [class*=col-] {
    padding-right: 20px; /* row-space to left */
  }
  .col-large-12 {
    width: 100%;
  }
  .col-large-11 {
    width: 91.66%;
  }
  .col-large-10 {
    width: 83.333%;
  }
  .col-large-9 {
    width: 75%;
  }
  .col-large-8 {
    width: 66.66%;
  }
  .col-large-7 {
    width: 58.33%;
  }
  .col-large-6 {
    width: 50%;
  }
  .col-large-5 {
    width: 41.66%;
  }
  .col-large-4 {
    width: 33.33%;
  }
  .col-large-3 {
    width: 25%;
  }
  .col-large-2 {
    width: 16.667%;
  }
  .col-large-1 {
    width: 8.33%;
  }
  .hide-on-small {
    display: block !important;
  }
  .hide-on-medium {
    display: block !important;
  }
  .hide-on-large {
    display: none !important;
  }
  .push-large-11 {
    margin-left: 91.66%;
  }
  .push-large-10 {
    margin-left: 83.333%;
  }
  .push-large-9 {
    margin-left: 75%;
  }
  .push-large-8 {
    margin-left: 66.66%;
  }
  .push-large-7 {
    margin-left: 58.33%;
  }
  .push-large-6 {
    margin-left: 50%;
  }
  .push-large-5 {
    margin-left: 41.66%;
  }
  .push-large-4 {
    margin-left: 33.33%;
  }
  .push-large-3 {
    margin-left: 25%;
  }
  .push-large-2 {
    margin-left: 16.667%;
  }
  .push-large-1 {
    margin-left: 8.33%;
  }
  .push-large-0 {
    margin-left: 0;
  }
}
/* -------------------------------------------------- vanaf 1024px */
@media only screen and (min-width: 80em) {
  .row {
    width: 100%;
    padding-left: 20px; /* row-space to left */
    padding-right: 0px; /* row-space to right: (row-space-left - column-space) e.g. 20px-20px=0px */
  }
  .row [class*=col-] {
    padding-right: 20px; /* row-space to left */
  }
  .row .col-xlarge-12 {
    width: 100%;
  }
  .row .col-xlarge-11 {
    width: 91.66%;
  }
  .row .col-xlarge-10 {
    width: 83.333%;
  }
  .row .col-xlarge-9 {
    width: 75%;
  }
  .row .col-xlarge-8 {
    width: 66.66%;
  }
  .row .col-xlarge-7 {
    width: 58.33%;
  }
  .row .col-xlarge-6 {
    width: 50%;
  }
  .row .col-xlarge-5 {
    width: 41.66%;
  }
  .row .col-xlarge-4 {
    width: 33.33%;
  }
  .row .col-xlarge-3 {
    width: 25%;
  }
  .row .col-xlarge-2 {
    width: 16.667%;
  }
  .row .col-xlarge-1 {
    width: 8.33%;
  }
  .row .hide-on-small {
    display: block !important;
  }
  .row .hide-on-medium {
    display: block !important;
  }
  .row .hide-on-large {
    display: none !important;
  }
  .row .hide-on-xlarge {
    display: none !important;
  }
  .row .push-xlarge-11 {
    margin-left: 91.66%;
  }
  .row .push-xlarge-10 {
    margin-left: 83.333%;
  }
  .row .push-xlarge-9 {
    margin-left: 75%;
  }
  .row .push-xlarge-8 {
    margin-left: 66.66%;
  }
  .row .push-xlarge-7 {
    margin-left: 58.33%;
  }
  .row .push-xlarge-6 {
    margin-left: 50%;
  }
  .row .push-xlarge-5 {
    margin-left: 41.66%;
  }
  .row .push-xlarge-4 {
    margin-left: 33.33%;
  }
  .row .push-xlarge-3 {
    margin-left: 25%;
  }
  .row .push-xlarge-2 {
    margin-left: 16.667%;
  }
  .row .push-xlarge-1 {
    margin-left: 8.33%;
  }
  .row .push-xlarge-0 {
    margin-left: 0;
  }
}
header {
  position: fixed;
  display: -ms-grid;
  display: grid;
  padding: 20px;
  left: 0px;
  right: 0px;
  top: 0px;
  z-index: 9998;
  background-color: #fff;
  -ms-grid-columns: 8fr 4fr;
  grid-template-columns: 8fr 4fr;
}
@media (max-width: 44em) {
  header {
    -ms-grid-columns: 10fr 2fr;
    grid-template-columns: 10fr 2fr;
  }
}
header .logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 99;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
header .logo img {
  width: 360px;
  height: auto;
  min-width: 420px;
}
@media (max-width: 44em) {
  header .logo img {
    min-width: 0px;
    max-width: 250px;
  }
}
header .hamburger-contact {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
  right: 0px;
  top: 0px;
  bottom: 0px;
  z-index: 99;
}
header .hamburger-contact a.contact {
  display: inline-block;
  position: relatve;
  background-color: #FF6A00;
  color: #fff;
  text-decoration: none;
  padding: 5px 40px;
  float: left;
  -webkit-transition: opacity 0.2s, background-color 0.2s ease-out;
  transition: opacity 0.2s, background-color 0.2s ease-out;
}
header .hamburger-contact a.contact:hover {
  opacity: 0.8;
}
@media (max-width: 44em) {
  header .hamburger-contact a.contact {
    display: none;
  }
}
@media (max-width: 44em) {
  header .hamburger-contact {
    top: 7px;
  }
}
header .hamburger-contact #hamburger {
  display: inline-block;
  z-index: 9998;
  width: 40px;
  height: 40px;
  margin: 5px 0 0 30px;
  float: right;
  text-decoration: none;
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}
header .hamburger-contact #hamburger:before, header .hamburger-contact #hamburger:after {
  position: absolute;
  display: block;
  top: 5px;
  width: 40px;
  height: 40px;
  font-family: "Font Awesome 5 Pro";
  font-weight: 50;
  font-size: 40px;
  -webkit-transform-origin: center center;
          transform-origin: center center;
  -webkit-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
}
header .hamburger-contact #hamburger:before {
  color: #FF6A00;
  content: "\f0c9";
}
header .hamburger-contact #hamburger:after {
  content: "\f067";
  color: #fff;
  opacity: 0;
}
header .hamburger-contact #hamburger.actief { /* IE 9 */
  -webkit-transform: rotate(45deg); /* Chrome, Safari, Opera */
  transform: rotate(45deg);
}
header .hamburger-contact #hamburger.actief:before {
  opacity: 0;
}
header .hamburger-contact #hamburger.actief:after {
  opacity: 1;
}
header .hamburger-contact.actief a.contact {
  background-color: #fff;
  color: #FF6A00;
}
header .hamburger-contact.actief #hamburger {
  color: #fff;
}

ul#hoofdmenu {
  position: absolute;
  top: 0;
  right: 0px;
  height: 100vh;
  display: none;
  padding: 150px 12vw 30px 12vw;
  margin: 0;
  background-color: #FF6A00;
}
ul#hoofdmenu > li {
  position: relative;
  display: block;
  list-style: none;
  padding: 0 0 0 0;
}
ul#hoofdmenu > li a {
  color: #fff;
  font-size: 1.5rem;
  font-weight: normal;
  font-family: "Pangram Fragment Text Regular";
  line-height: 1.75em;
  text-decoration: none;
  text-transform: lowercase;
  -webkit-transition: opacity 0.2s ease-out;
  transition: opacity 0.2s ease-out;
}
ul#hoofdmenu > li a:hover {
  opacity: 0.7;
}
ul#hoofdmenu > li.only-mobiel {
  display: none;
}
@media (max-width: 44em) {
  ul#hoofdmenu > li.only-mobiel {
    display: block;
  }
}
ul#hoofdmenu > li.current_page_item > a, ul#hoofdmenu > li.current-menu-item > a, ul#hoofdmenu > li.current-menu-ancestor > a {
  font-weight: 700;
  color: #E3E3E3;
}

/* ---------------- tussen resolutie om direct naar kleiner te maken */
/*!
    Blueprint CSS 3.1.3
    https://blueprintcss.dev
    License MIT 2021
*/
html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

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

[bp~=container] {
  width: 100%;
  margin: 0 auto;
  display: block;
  max-width: 1000px;
}

[bp~=grid] {
  display: -ms-grid !important;
  display: grid !important;
  grid-gap: 20px;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr 20px 1fr 20px 1fr 20px 1fr 20px 1fr 20px 1fr 20px 1fr 20px 1fr 20px 1fr 20px 1fr;
  grid-template-columns: repeat(12, 1fr);
}

[bp~=vertical-start] {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}

[bp~=vertical-center] {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

[bp~=vertical-end] {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}

[bp~=between] {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

[bp~=gap-none] {
  grid-gap: 0;
  margin-bottom: 0;
}

[bp~=gap-column-none] {
  grid-column-gap: 0;
}

[bp~=gap-row-none] {
  grid-row-gap: 0;
  margin-bottom: 0;
}

[bp~=first] {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
}

[bp~=last] {
  -webkit-box-ordinal-group: 13;
      -ms-flex-order: 12;
          order: 12;
}

[bp~=hide] {
  display: none !important;
}

[bp~=show] {
  display: initial !important;
}

[bp~=grid][bp*="@"] {
  -ms-grid-columns: 12fr;
  grid-template-columns: 12fr;
}

[bp~=grid][bp*="@sm"], [bp~=grid][bp*="@md"], [bp~=grid][bp*="@lg"], [bp~=grid][bp*="@xl"] {
  -ms-grid-columns: 12fr;
  grid-template-columns: 12fr;
}

[bp~="12@sm"], [bp~="12@md"], [bp~="12@lg"], [bp~="12@xl"], [bp~="11@sm"], [bp~="11@md"], [bp~="11@lg"], [bp~="11@xl"], [bp~="10@sm"], [bp~="10@md"], [bp~="10@lg"], [bp~="10@xl"], [bp~="9@sm"], [bp~="9@md"], [bp~="9@lg"], [bp~="9@xl"], [bp~="8@sm"], [bp~="8@md"], [bp~="8@lg"], [bp~="8@xl"], [bp~="7@sm"], [bp~="7@md"], [bp~="7@lg"], [bp~="7@xl"], [bp~="6@sm"], [bp~="6@md"], [bp~="6@lg"], [bp~="6@xl"], [bp~="5@sm"], [bp~="5@md"], [bp~="5@lg"], [bp~="5@xl"], [bp~="4@sm"], [bp~="4@md"], [bp~="4@lg"], [bp~="4@xl"], [bp~="3@sm"], [bp~="3@md"], [bp~="3@lg"], [bp~="3@xl"], [bp~="2@sm"], [bp~="2@md"], [bp~="2@lg"], [bp~="2@xl"], [bp~="1@sm"], [bp~="1@md"], [bp~="1@lg"], [bp~="1@xl"] {
  -ms-grid-column-span: 12;
  grid-column: span 12;
}

[bp~=grid][bp~="1"] {
  -ms-grid-columns: (1fr)[12];
  grid-template-columns: repeat(12, 1fr);
}

[bp~="1"] {
  -ms-grid-column-span: 1;
  grid-column: span 1/span 1;
}

[bp~=grid][bp~="2"] {
  -ms-grid-columns: (1fr)[6];
  grid-template-columns: repeat(6, 1fr);
}

[bp~="2"] {
  -ms-grid-column-span: 2;
  grid-column: span 2/span 2;
}

[bp~=grid][bp~="3"] {
  -ms-grid-columns: (1fr)[4];
  grid-template-columns: repeat(4, 1fr);
}

[bp~="3"] {
  -ms-grid-column-span: 3;
  grid-column: span 3/span 3;
}

[bp~=grid][bp~="4"] {
  -ms-grid-columns: (1fr)[3];
  grid-template-columns: repeat(3, 1fr);
}

[bp~="4"] {
  -ms-grid-column-span: 4;
  grid-column: span 4/span 4;
}

[bp~=grid][bp~="5"] {
  -ms-grid-columns: (1fr)[2.4];
  grid-template-columns: repeat(2.4, 1fr);
}

[bp~="5"] {
  -ms-grid-column-span: 5;
  grid-column: span 5/span 5;
}

[bp~=grid][bp~="6"] {
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
}

[bp~="6"] {
  -ms-grid-column-span: 6;
  grid-column: span 6/span 6;
}

[bp~=grid][bp~="7"] {
  -ms-grid-columns: (1fr)[1.7142857143];
  grid-template-columns: repeat(1.7142857143, 1fr);
}

[bp~="7"] {
  -ms-grid-column-span: 7;
  grid-column: span 7/span 7;
}

[bp~=grid][bp~="8"] {
  -ms-grid-columns: (1fr)[1.5];
  grid-template-columns: repeat(1.5, 1fr);
}

[bp~="8"] {
  -ms-grid-column-span: 8;
  grid-column: span 8/span 8;
}

[bp~=grid][bp~="9"] {
  -ms-grid-columns: (1fr)[1.3333333333];
  grid-template-columns: repeat(1.3333333333, 1fr);
}

[bp~="9"] {
  -ms-grid-column-span: 9;
  grid-column: span 9/span 9;
}

[bp~=grid][bp~="10"] {
  -ms-grid-columns: (1fr)[1.2];
  grid-template-columns: repeat(1.2, 1fr);
}

[bp~="10"] {
  -ms-grid-column-span: 10;
  grid-column: span 10/span 10;
}

[bp~=grid][bp~="11"] {
  -ms-grid-columns: (1fr)[1.0909090909];
  grid-template-columns: repeat(1.0909090909, 1fr);
}

[bp~="11"] {
  -ms-grid-column-span: 11;
  grid-column: span 11/span 11;
}

[bp~=grid][bp~="12"] {
  -ms-grid-columns: (1fr)[1];
  grid-template-columns: repeat(1, 1fr);
}

[bp~="12"] {
  -ms-grid-column-span: 12;
  grid-column: span 12/span 12;
}

[bp~=offset-1] {
  -ms-grid-column: 1;
      grid-column-start: 1;
}

[bp~=offset-2] {
  -ms-grid-column: 2;
      grid-column-start: 2;
}

[bp~=offset-3] {
  -ms-grid-column: 3;
      grid-column-start: 3;
}

[bp~=offset-4] {
  -ms-grid-column: 4;
      grid-column-start: 4;
}

[bp~=offset-5] {
  -ms-grid-column: 5;
      grid-column-start: 5;
}

[bp~=offset-6] {
  -ms-grid-column: 6;
      grid-column-start: 6;
}

[bp~=offset-7] {
  -ms-grid-column: 7;
      grid-column-start: 7;
}

[bp~=offset-8] {
  -ms-grid-column: 8;
      grid-column-start: 8;
}

[bp~=offset-9] {
  -ms-grid-column: 9;
      grid-column-start: 9;
}

[bp~=offset-10] {
  -ms-grid-column: 10;
      grid-column-start: 10;
}

[bp~=offset-11] {
  -ms-grid-column: 11;
      grid-column-start: 11;
}

[bp~=offset-12] {
  -ms-grid-column: 12;
      grid-column-start: 12;
}

@media (min-width: 480px) {
  [bp~=grid][bp~="1@sm"] {
    -ms-grid-columns: (1fr)[12];
    grid-template-columns: repeat(12, 1fr);
  }
  [bp~="1@sm"] {
    -ms-grid-column-span: 1;
    grid-column: span 1/span 1;
  }
  [bp~=grid][bp~="2@sm"] {
    -ms-grid-columns: (1fr)[6];
    grid-template-columns: repeat(6, 1fr);
  }
  [bp~="2@sm"] {
    -ms-grid-column-span: 2;
    grid-column: span 2/span 2;
  }
  [bp~=grid][bp~="3@sm"] {
    -ms-grid-columns: (1fr)[4];
    grid-template-columns: repeat(4, 1fr);
  }
  [bp~="3@sm"] {
    -ms-grid-column-span: 3;
    grid-column: span 3/span 3;
  }
  [bp~=grid][bp~="4@sm"] {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
  [bp~="4@sm"] {
    -ms-grid-column-span: 4;
    grid-column: span 4/span 4;
  }
  [bp~=grid][bp~="5@sm"] {
    -ms-grid-columns: (1fr)[2.4];
    grid-template-columns: repeat(2.4, 1fr);
  }
  [bp~="5@sm"] {
    -ms-grid-column-span: 5;
    grid-column: span 5/span 5;
  }
  [bp~=grid][bp~="6@sm"] {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
  [bp~="6@sm"] {
    -ms-grid-column-span: 6;
    grid-column: span 6/span 6;
  }
  [bp~=grid][bp~="7@sm"] {
    -ms-grid-columns: (1fr)[1.7142857143];
    grid-template-columns: repeat(1.7142857143, 1fr);
  }
  [bp~="7@sm"] {
    -ms-grid-column-span: 7;
    grid-column: span 7/span 7;
  }
  [bp~=grid][bp~="8@sm"] {
    -ms-grid-columns: (1fr)[1.5];
    grid-template-columns: repeat(1.5, 1fr);
  }
  [bp~="8@sm"] {
    -ms-grid-column-span: 8;
    grid-column: span 8/span 8;
  }
  [bp~=grid][bp~="9@sm"] {
    -ms-grid-columns: (1fr)[1.3333333333];
    grid-template-columns: repeat(1.3333333333, 1fr);
  }
  [bp~="9@sm"] {
    -ms-grid-column-span: 9;
    grid-column: span 9/span 9;
  }
  [bp~=grid][bp~="10@sm"] {
    -ms-grid-columns: (1fr)[1.2];
    grid-template-columns: repeat(1.2, 1fr);
  }
  [bp~="10@sm"] {
    -ms-grid-column-span: 10;
    grid-column: span 10/span 10;
  }
  [bp~=grid][bp~="11@sm"] {
    -ms-grid-columns: (1fr)[1.0909090909];
    grid-template-columns: repeat(1.0909090909, 1fr);
  }
  [bp~="11@sm"] {
    -ms-grid-column-span: 11;
    grid-column: span 11/span 11;
  }
  [bp~=grid][bp~="12@sm"] {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
  [bp~="12@sm"] {
    -ms-grid-column-span: 12;
    grid-column: span 12/span 12;
  }
  [bp~="offset-1@sm"] {
    -ms-grid-column: 1;
        grid-column-start: 1;
  }
  [bp~="offset-2@sm"] {
    -ms-grid-column: 2;
        grid-column-start: 2;
  }
  [bp~="offset-3@sm"] {
    -ms-grid-column: 3;
        grid-column-start: 3;
  }
  [bp~="offset-4@sm"] {
    -ms-grid-column: 4;
        grid-column-start: 4;
  }
  [bp~="offset-5@sm"] {
    -ms-grid-column: 5;
        grid-column-start: 5;
  }
  [bp~="offset-6@sm"] {
    -ms-grid-column: 6;
        grid-column-start: 6;
  }
  [bp~="offset-7@sm"] {
    -ms-grid-column: 7;
        grid-column-start: 7;
  }
  [bp~="offset-8@sm"] {
    -ms-grid-column: 8;
        grid-column-start: 8;
  }
  [bp~="offset-9@sm"] {
    -ms-grid-column: 9;
        grid-column-start: 9;
  }
  [bp~="offset-10@sm"] {
    -ms-grid-column: 10;
        grid-column-start: 10;
  }
  [bp~="offset-11@sm"] {
    -ms-grid-column: 11;
        grid-column-start: 11;
  }
  [bp~="offset-12@sm"] {
    -ms-grid-column: 12;
        grid-column-start: 12;
  }
  [bp~="hide@sm"] {
    display: none !important;
  }
  [bp~="show@sm"] {
    display: initial !important;
  }
  [bp~="first@sm"] {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  [bp~="last@sm"] {
    -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
            order: 12;
  }
}
@media (min-width: 720px) {
  [bp~=grid][bp~="1@md"] {
    -ms-grid-columns: (1fr)[12];
    grid-template-columns: repeat(12, 1fr);
  }
  [bp~="1@md"] {
    -ms-grid-column-span: 1;
    grid-column: span 1/span 1;
  }
  [bp~=grid][bp~="2@md"] {
    -ms-grid-columns: (1fr)[6];
    grid-template-columns: repeat(6, 1fr);
  }
  [bp~="2@md"] {
    -ms-grid-column-span: 2;
    grid-column: span 2/span 2;
  }
  [bp~=grid][bp~="3@md"] {
    -ms-grid-columns: (1fr)[4];
    grid-template-columns: repeat(4, 1fr);
  }
  [bp~="3@md"] {
    -ms-grid-column-span: 3;
    grid-column: span 3/span 3;
  }
  [bp~=grid][bp~="4@md"] {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
  [bp~="4@md"] {
    -ms-grid-column-span: 4;
    grid-column: span 4/span 4;
  }
  [bp~=grid][bp~="5@md"] {
    -ms-grid-columns: (1fr)[2.4];
    grid-template-columns: repeat(2.4, 1fr);
  }
  [bp~="5@md"] {
    -ms-grid-column-span: 5;
    grid-column: span 5/span 5;
  }
  [bp~=grid][bp~="6@md"] {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
  [bp~="6@md"] {
    -ms-grid-column-span: 6;
    grid-column: span 6/span 6;
  }
  [bp~=grid][bp~="7@md"] {
    -ms-grid-columns: (1fr)[1.7142857143];
    grid-template-columns: repeat(1.7142857143, 1fr);
  }
  [bp~="7@md"] {
    -ms-grid-column-span: 7;
    grid-column: span 7/span 7;
  }
  [bp~=grid][bp~="8@md"] {
    -ms-grid-columns: (1fr)[1.5];
    grid-template-columns: repeat(1.5, 1fr);
  }
  [bp~="8@md"] {
    -ms-grid-column-span: 8;
    grid-column: span 8/span 8;
  }
  [bp~=grid][bp~="9@md"] {
    -ms-grid-columns: (1fr)[1.3333333333];
    grid-template-columns: repeat(1.3333333333, 1fr);
  }
  [bp~="9@md"] {
    -ms-grid-column-span: 9;
    grid-column: span 9/span 9;
  }
  [bp~=grid][bp~="10@md"] {
    -ms-grid-columns: (1fr)[1.2];
    grid-template-columns: repeat(1.2, 1fr);
  }
  [bp~="10@md"] {
    -ms-grid-column-span: 10;
    grid-column: span 10/span 10;
  }
  [bp~=grid][bp~="11@md"] {
    -ms-grid-columns: (1fr)[1.0909090909];
    grid-template-columns: repeat(1.0909090909, 1fr);
  }
  [bp~="11@md"] {
    -ms-grid-column-span: 11;
    grid-column: span 11/span 11;
  }
  [bp~=grid][bp~="12@md"] {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
  [bp~="12@md"] {
    -ms-grid-column-span: 12;
    grid-column: span 12/span 12;
  }
  [bp~="offset-1@md"] {
    -ms-grid-column: 1;
        grid-column-start: 1;
  }
  [bp~="offset-2@md"] {
    -ms-grid-column: 2;
        grid-column-start: 2;
  }
  [bp~="offset-3@md"] {
    -ms-grid-column: 3;
        grid-column-start: 3;
  }
  [bp~="offset-4@md"] {
    -ms-grid-column: 4;
        grid-column-start: 4;
  }
  [bp~="offset-5@md"] {
    -ms-grid-column: 5;
        grid-column-start: 5;
  }
  [bp~="offset-6@md"] {
    -ms-grid-column: 6;
        grid-column-start: 6;
  }
  [bp~="offset-7@md"] {
    -ms-grid-column: 7;
        grid-column-start: 7;
  }
  [bp~="offset-8@md"] {
    -ms-grid-column: 8;
        grid-column-start: 8;
  }
  [bp~="offset-9@md"] {
    -ms-grid-column: 9;
        grid-column-start: 9;
  }
  [bp~="offset-10@md"] {
    -ms-grid-column: 10;
        grid-column-start: 10;
  }
  [bp~="offset-11@md"] {
    -ms-grid-column: 11;
        grid-column-start: 11;
  }
  [bp~="offset-12@md"] {
    -ms-grid-column: 12;
        grid-column-start: 12;
  }
  [bp~="hide@md"] {
    display: none !important;
  }
  [bp~="show@md"] {
    display: initial !important;
  }
  [bp~="first@md"] {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  [bp~="last@md"] {
    -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
            order: 12;
  }
}
@media (min-width: 960px) {
  [bp~=grid][bp~="1@lg"] {
    -ms-grid-columns: (1fr)[12];
    grid-template-columns: repeat(12, 1fr);
  }
  [bp~="1@lg"] {
    -ms-grid-column-span: 1;
    grid-column: span 1/span 1;
  }
  [bp~=grid][bp~="2@lg"] {
    -ms-grid-columns: (1fr)[6];
    grid-template-columns: repeat(6, 1fr);
  }
  [bp~="2@lg"] {
    -ms-grid-column-span: 2;
    grid-column: span 2/span 2;
  }
  [bp~=grid][bp~="3@lg"] {
    -ms-grid-columns: (1fr)[4];
    grid-template-columns: repeat(4, 1fr);
  }
  [bp~="3@lg"] {
    -ms-grid-column-span: 3;
    grid-column: span 3/span 3;
  }
  [bp~=grid][bp~="4@lg"] {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
  [bp~="4@lg"] {
    -ms-grid-column-span: 4;
    grid-column: span 4/span 4;
  }
  [bp~=grid][bp~="5@lg"] {
    -ms-grid-columns: (1fr)[2.4];
    grid-template-columns: repeat(2.4, 1fr);
  }
  [bp~="5@lg"] {
    -ms-grid-column-span: 5;
    grid-column: span 5/span 5;
  }
  [bp~=grid][bp~="6@lg"] {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
  [bp~="6@lg"] {
    -ms-grid-column-span: 6;
    grid-column: span 6/span 6;
  }
  [bp~=grid][bp~="7@lg"] {
    -ms-grid-columns: (1fr)[1.7142857143];
    grid-template-columns: repeat(1.7142857143, 1fr);
  }
  [bp~="7@lg"] {
    -ms-grid-column-span: 7;
    grid-column: span 7/span 7;
  }
  [bp~=grid][bp~="8@lg"] {
    -ms-grid-columns: (1fr)[1.5];
    grid-template-columns: repeat(1.5, 1fr);
  }
  [bp~="8@lg"] {
    -ms-grid-column-span: 8;
    grid-column: span 8/span 8;
  }
  [bp~=grid][bp~="9@lg"] {
    -ms-grid-columns: (1fr)[1.3333333333];
    grid-template-columns: repeat(1.3333333333, 1fr);
  }
  [bp~="9@lg"] {
    -ms-grid-column-span: 9;
    grid-column: span 9/span 9;
  }
  [bp~=grid][bp~="10@lg"] {
    -ms-grid-columns: (1fr)[1.2];
    grid-template-columns: repeat(1.2, 1fr);
  }
  [bp~="10@lg"] {
    -ms-grid-column-span: 10;
    grid-column: span 10/span 10;
  }
  [bp~=grid][bp~="11@lg"] {
    -ms-grid-columns: (1fr)[1.0909090909];
    grid-template-columns: repeat(1.0909090909, 1fr);
  }
  [bp~="11@lg"] {
    -ms-grid-column-span: 11;
    grid-column: span 11/span 11;
  }
  [bp~=grid][bp~="12@lg"] {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
  [bp~="12@lg"] {
    -ms-grid-column-span: 12;
    grid-column: span 12/span 12;
  }
  [bp~="offset-1@lg"] {
    -ms-grid-column: 1;
        grid-column-start: 1;
  }
  [bp~="offset-2@lg"] {
    -ms-grid-column: 2;
        grid-column-start: 2;
  }
  [bp~="offset-3@lg"] {
    -ms-grid-column: 3;
        grid-column-start: 3;
  }
  [bp~="offset-4@lg"] {
    -ms-grid-column: 4;
        grid-column-start: 4;
  }
  [bp~="offset-5@lg"] {
    -ms-grid-column: 5;
        grid-column-start: 5;
  }
  [bp~="offset-6@lg"] {
    -ms-grid-column: 6;
        grid-column-start: 6;
  }
  [bp~="offset-7@lg"] {
    -ms-grid-column: 7;
        grid-column-start: 7;
  }
  [bp~="offset-8@lg"] {
    -ms-grid-column: 8;
        grid-column-start: 8;
  }
  [bp~="offset-9@lg"] {
    -ms-grid-column: 9;
        grid-column-start: 9;
  }
  [bp~="offset-10@lg"] {
    -ms-grid-column: 10;
        grid-column-start: 10;
  }
  [bp~="offset-11@lg"] {
    -ms-grid-column: 11;
        grid-column-start: 11;
  }
  [bp~="offset-12@lg"] {
    -ms-grid-column: 12;
        grid-column-start: 12;
  }
  [bp~="hide@lg"] {
    display: none !important;
  }
  [bp~="show@lg"] {
    display: initial !important;
  }
  [bp~="first@lg"] {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  [bp~="last@lg"] {
    -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
            order: 12;
  }
}
@media (min-width: 1440px) {
  [bp~=grid][bp~="1@xl"] {
    -ms-grid-columns: (1fr)[12];
    grid-template-columns: repeat(12, 1fr);
  }
  [bp~="1@xl"] {
    -ms-grid-column-span: 1;
    grid-column: span 1/span 1;
  }
  [bp~=grid][bp~="2@xl"] {
    -ms-grid-columns: (1fr)[6];
    grid-template-columns: repeat(6, 1fr);
  }
  [bp~="2@xl"] {
    -ms-grid-column-span: 2;
    grid-column: span 2/span 2;
  }
  [bp~=grid][bp~="3@xl"] {
    -ms-grid-columns: (1fr)[4];
    grid-template-columns: repeat(4, 1fr);
  }
  [bp~="3@xl"] {
    -ms-grid-column-span: 3;
    grid-column: span 3/span 3;
  }
  [bp~=grid][bp~="4@xl"] {
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
  [bp~="4@xl"] {
    -ms-grid-column-span: 4;
    grid-column: span 4/span 4;
  }
  [bp~=grid][bp~="5@xl"] {
    -ms-grid-columns: (1fr)[2.4];
    grid-template-columns: repeat(2.4, 1fr);
  }
  [bp~="5@xl"] {
    -ms-grid-column-span: 5;
    grid-column: span 5/span 5;
  }
  [bp~=grid][bp~="6@xl"] {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
  [bp~="6@xl"] {
    -ms-grid-column-span: 6;
    grid-column: span 6/span 6;
  }
  [bp~=grid][bp~="7@xl"] {
    -ms-grid-columns: (1fr)[1.7142857143];
    grid-template-columns: repeat(1.7142857143, 1fr);
  }
  [bp~="7@xl"] {
    -ms-grid-column-span: 7;
    grid-column: span 7/span 7;
  }
  [bp~=grid][bp~="8@xl"] {
    -ms-grid-columns: (1fr)[1.5];
    grid-template-columns: repeat(1.5, 1fr);
  }
  [bp~="8@xl"] {
    -ms-grid-column-span: 8;
    grid-column: span 8/span 8;
  }
  [bp~=grid][bp~="9@xl"] {
    -ms-grid-columns: (1fr)[1.3333333333];
    grid-template-columns: repeat(1.3333333333, 1fr);
  }
  [bp~="9@xl"] {
    -ms-grid-column-span: 9;
    grid-column: span 9/span 9;
  }
  [bp~=grid][bp~="10@xl"] {
    -ms-grid-columns: (1fr)[1.2];
    grid-template-columns: repeat(1.2, 1fr);
  }
  [bp~="10@xl"] {
    -ms-grid-column-span: 10;
    grid-column: span 10/span 10;
  }
  [bp~=grid][bp~="11@xl"] {
    -ms-grid-columns: (1fr)[1.0909090909];
    grid-template-columns: repeat(1.0909090909, 1fr);
  }
  [bp~="11@xl"] {
    -ms-grid-column-span: 11;
    grid-column: span 11/span 11;
  }
  [bp~=grid][bp~="12@xl"] {
    -ms-grid-columns: (1fr)[1];
    grid-template-columns: repeat(1, 1fr);
  }
  [bp~="12@xl"] {
    -ms-grid-column-span: 12;
    grid-column: span 12/span 12;
  }
  [bp~="offset-1@xl"] {
    -ms-grid-column: 1;
        grid-column-start: 1;
  }
  [bp~="offset-2@xl"] {
    -ms-grid-column: 2;
        grid-column-start: 2;
  }
  [bp~="offset-3@xl"] {
    -ms-grid-column: 3;
        grid-column-start: 3;
  }
  [bp~="offset-4@xl"] {
    -ms-grid-column: 4;
        grid-column-start: 4;
  }
  [bp~="offset-5@xl"] {
    -ms-grid-column: 5;
        grid-column-start: 5;
  }
  [bp~="offset-6@xl"] {
    -ms-grid-column: 6;
        grid-column-start: 6;
  }
  [bp~="offset-7@xl"] {
    -ms-grid-column: 7;
        grid-column-start: 7;
  }
  [bp~="offset-8@xl"] {
    -ms-grid-column: 8;
        grid-column-start: 8;
  }
  [bp~="offset-9@xl"] {
    -ms-grid-column: 9;
        grid-column-start: 9;
  }
  [bp~="offset-10@xl"] {
    -ms-grid-column: 10;
        grid-column-start: 10;
  }
  [bp~="offset-11@xl"] {
    -ms-grid-column: 11;
        grid-column-start: 11;
  }
  [bp~="offset-12@xl"] {
    -ms-grid-column: 12;
        grid-column-start: 12;
  }
  [bp~="hide@xl"] {
    display: none !important;
  }
  [bp~="show@xl"] {
    display: initial !important;
  }
  [bp~="first@xl"] {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  [bp~="last@xl"] {
    -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
            order: 12;
  }
}
[bp~=flex] {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

[bp~=fill] {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0%;
          flex: 1 1 0%;
  -ms-flex-preferred-size: 0%;
      flex-basis: 0%;
}

[bp~=fit] {
  -ms-flex-preferred-size: auto;
      flex-basis: auto;
}

[bp~=float-center] {
  margin-left: auto;
  margin-right: auto;
  display: block;
  float: none;
}

[bp~=float-left] {
  float: left;
}

[bp~=float-right] {
  float: right;
}

[bp~=clear-fix]::after {
  content: "";
  display: table;
  clear: both;
}

[bp~=text-left] {
  text-align: left !important;
}

[bp~=text-right] {
  text-align: right !important;
}

[bp~=text-center] {
  text-align: center !important;
}

[bp~="1--max"] {
  max-width: 83.3333333333px !important;
}

[bp~="2--max"] {
  max-width: 166.6666666667px !important;
}

[bp~="3--max"] {
  max-width: 250px !important;
}

[bp~="4--max"] {
  max-width: 333.3333333333px !important;
}

[bp~="5--max"] {
  max-width: 416.6666666667px !important;
}

[bp~="6--max"] {
  max-width: 500px !important;
}

[bp~="7--max"] {
  max-width: 583.3333333333px !important;
}

[bp~="8--max"] {
  max-width: 666.6666666667px !important;
}

[bp~="9--max"] {
  max-width: 750px !important;
}

[bp~="10--max"] {
  max-width: 833.3333333333px !important;
}

[bp~="11--max"] {
  max-width: 916.6666666667px !important;
}

[bp~="12--max"] {
  max-width: 1000px !important;
}

[bp~=full-width] {
  width: 100%;
}

@media (max-width: 480px) {
  [bp~="full-width-until@sm"] {
    width: 100% !important;
    max-width: 100% !important;
  }
}
@media (max-width: 720px) {
  [bp~="full-width-until@md"] {
    width: 100% !important;
    max-width: 100% !important;
  }
}
@media (max-width: 960px) {
  [bp~="full-width-until@lg"] {
    width: 100% !important;
    max-width: 100% !important;
  }
}
@media (max-width: 1440px) {
  [bp~="full-width-until@xl"] {
    width: 100% !important;
    max-width: 100% !important;
  }
}
[bp~=margin--xs] {
  margin: 4px !important;
}

[bp~=margin-top--xs] {
  margin-top: 4px !important;
}

[bp~=margin-bottom--xs] {
  margin-bottom: 4px !important;
}

[bp~=margin-right--xs] {
  margin-right: 4px !important;
}

[bp~=margin-left--xs] {
  margin-left: 4px !important;
}

[bp~=padding--xs] {
  padding: 4px !important;
}

[bp~=padding-top--xs] {
  padding-top: 4px !important;
}

[bp~=padding-bottom--xs] {
  padding-bottom: 4px !important;
}

[bp~=padding-right--xs] {
  padding-right: 4px !important;
}

[bp~=padding-left--xs] {
  padding-left: 4px !important;
}

[bp~=margin--sm] {
  margin: 8px !important;
}

[bp~=margin-top--sm] {
  margin-top: 8px !important;
}

[bp~=margin-bottom--sm] {
  margin-bottom: 8px !important;
}

[bp~=margin-right--sm] {
  margin-right: 8px !important;
}

[bp~=margin-left--sm] {
  margin-left: 8px !important;
}

[bp~=padding--sm] {
  padding: 8px !important;
}

[bp~=padding-top--sm] {
  padding-top: 8px !important;
}

[bp~=padding-bottom--sm] {
  padding-bottom: 8px !important;
}

[bp~=padding-right--sm] {
  padding-right: 8px !important;
}

[bp~=padding-left--sm] {
  padding-left: 8px !important;
}

[bp~=margin] {
  margin: 16px !important;
}

[bp~=margin-top] {
  margin-top: 16px !important;
}

[bp~=margin-bottom] {
  margin-bottom: 16px !important;
}

[bp~=margin-right] {
  margin-right: 16px !important;
}

[bp~=margin-left] {
  margin-left: 16px !important;
}

[bp~=padding] {
  padding: 16px !important;
}

[bp~=padding-top] {
  padding-top: 16px !important;
}

[bp~=padding-bottom] {
  padding-bottom: 16px !important;
}

[bp~=padding-right] {
  padding-right: 16px !important;
}

[bp~=padding-left] {
  padding-left: 16px !important;
}

[bp~=margin--lg] {
  margin: 24px !important;
}

[bp~=margin-top--lg] {
  margin-top: 24px !important;
}

[bp~=margin-bottom--lg] {
  margin-bottom: 24px !important;
}

[bp~=margin-right--lg] {
  margin-right: 24px !important;
}

[bp~=margin-left--lg] {
  margin-left: 24px !important;
}

[bp~=padding--lg] {
  padding: 24px !important;
}

[bp~=padding-top--lg] {
  padding-top: 24px !important;
}

[bp~=padding-bottom--lg] {
  padding-bottom: 24px !important;
}

[bp~=padding-right--lg] {
  padding-right: 24px !important;
}

[bp~=padding-left--lg] {
  padding-left: 24px !important;
}

[bp~=margin--none] {
  margin: 0 !important;
}

[bp~=margin-top--none] {
  margin-top: 0 !important;
}

[bp~=margin-bottom--none] {
  margin-bottom: 0 !important;
}

[bp~=margin-right--none] {
  margin-right: 0 !important;
}

[bp~=margin-left--none] {
  margin-left: 0 !important;
}

[bp~=padding--none] {
  padding: 0 !important;
}

[bp~=padding-top--none] {
  padding-top: 0 !important;
}

[bp~=padding-bottom--none] {
  padding-bottom: 0 !important;
}

[bp~=padding-right--none] {
  padding-right: 0 !important;
}

[bp~=padding-left--none] {
  padding-left: 0 !important;
}

html, body {
  margin: 0px;
  padding: 0;
}

html {
  background-color: #fff;
  scroll-behavior: smooth;
}

body {
  color: #1F1F1F;
  background-color: #fff;
  max-width: 100%;
  font-size: 1rem;
  font-weight: normal;
  font-family: "Pangram Fragment Sans Light";
  line-height: 1.5em;
}

.bg_grijs {
  background-color: #E3E3E3;
}

.bg_oranje {
  background-color: #FF6A00;
  color: #fff;
}
.bg_oranje h1, .bg_oranje h2, .bg_oranje h3, .bg_oranje a {
  color: inherit;
}

::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

::-webkit-scrollbar-track {
  background: #fff;
}

::-webkit-scrollbar-thumb {
  background: #E3E3E3;
}

/*
:target {
	display: block;
	position: relative;
	top: -100px;
	visibility: hidden;
}
*/
::-moz-selection {
  background: #FF6A00; /* WebKit/Blink Browsers */
  color: #FF6A00;
}
::selection {
  background: #FF6A00; /* WebKit/Blink Browsers */
  color: #FF6A00;
}

::-moz-selection {
  background: #FF6A00; /* Gecko Browsers */
  color: #FF6A00;
}

*:focus {
  outline: 0 !important;
}

.fixed {
  position: fixed;
  top: 0px !important;
}

/* ------------------------------- algemene tekst en afbeelding stijlen binnen de content blokken --- */
div, p {
  position: relative;
  margin: 0;
}
div .inhoud, p .inhoud {
  padding: 20px 0;
  font-size: 1.125rem;
  font-weight: normal;
  font-family: "Pangram Fragment Sans Light";
  line-height: 1.2222222222em;
}
div .inhoud[class*=bg_], p .inhoud[class*=bg_] {
  padding: 20px 30px;
}
div .inhoud img, p .inhoud img {
  display: block;
  max-width: 100%;
  height: auto;
}
div .inhoud .inleiding, p .inhoud .inleiding {
  font-size: 1.375rem;
  font-weight: normal;
  font-family: "Pangram Fragment Sans Light";
  line-height: 1.2727272727em;
}

img {
  max-width: 100%;
  height: auto;
  border: 0px solid transparent;
  vertical-align: top;
}

.img-mask {
  padding: 1px 1px;
  display: block;
  position: relative;
}
.img-mask:after, .img-mask:before {
  content: "";
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-image: url(img/c-l.svg);
  background-size: auto 100%;
  background-repeat: no-repeat;
  z-index: 999;
}
.img-mask:after {
  right: 0px;
  left: auto;
  background-position: right;
  background-image: url(img/c-r.svg);
}
.img-mask.mask-1:before {
  background-image: url(img/c-l.svg);
}
.img-mask.mask-1:after {
  background-image: url(img/c-r.svg);
}
.img-mask.mask-2:before {
  background-image: url(img/a-l.svg);
}
.img-mask.mask-2:after {
  background-image: url(img/a-r.svg);
}
.img-mask.mask-3:before {
  background-image: url(img/r-l.svg);
}
.img-mask.mask-3:after {
  background-image: url(img/r-r.svg);
}
.img-mask.mask-4:before {
  background-image: url(img/o-l.svg);
}
.img-mask.mask-4:after {
  background-image: url(img/o-r.svg);
}
.img-mask.mask-5:before {
  background-image: url(img/l-l.svg);
}
.img-mask.mask-5:after {
  background-image: url(img/l-r.svg);
}
.img-mask.mask-6:before {
  background-image: url(img/i-l.svg);
}
.img-mask.mask-6:after {
  background-image: url(img/i-r.svg);
}
.img-mask.mask-7:before {
  background-image: url(img/n-l.svg);
}
.img-mask.mask-7:after {
  background-image: url(img/n-r.svg);
}
.img-mask.mask-8:before {
  background-image: url(img/e-l.svg);
}
.img-mask.mask-8:after {
  background-image: url(img/e-r.svg);
}
.img-mask img {
  margin: 0px 0;
}

.img-mask2 {
  -webkit-mask-image: url(img/mask-b.svg);
          mask-image: url(img/mask-b.svg);
  -webkit-mask-size: 100% 100%;
          mask-size: 100% 100%;
  aspect-ratio: 16/14;
  overflow: hidden;
}
.img-mask2 img {
  -o-object-fit: cover;
     object-fit: cover;
  margin: 0px;
  height: 100% !important;
  width: 100%;
}

[bp*="12@sm"]:nth-child(7n+1) .img-mask2 {
  -webkit-mask-image: url(img/mask-b.svg);
          mask-image: url(img/mask-b.svg);
}

[bp*="12@sm"]:nth-child(7n+2) .img-mask2 {
  -webkit-mask-image: url(img/mask-i.svg);
          mask-image: url(img/mask-i.svg);
}

[bp*="12@sm"]:nth-child(7n+3) .img-mask2 {
  -webkit-mask-image: url(img/mask-j.svg);
          mask-image: url(img/mask-j.svg);
}

[bp*="12@sm"]:nth-child(7n+4) .img-mask2 {
  -webkit-mask-image: url(img/mask-v.svg);
          mask-image: url(img/mask-v.svg);
}

[bp*="12@sm"]:nth-child(7n+5) .img-mask2 {
  -webkit-mask-image: url(img/mask-o.svg);
          mask-image: url(img/mask-o.svg);
}

[bp*="12@sm"]:nth-child(7n+6) .img-mask2 {
  -webkit-mask-image: url(img/mask-e.svg);
          mask-image: url(img/mask-e.svg);
}

[bp*="12@sm"]:nth-child(7n+7) .img-mask2 {
  -webkit-mask-image: url(img/mask-t.svg);
          mask-image: url(img/mask-t.svg);
}

[bp*="12@sm"]:nth-child(7n+8) .img-mask2 {
  -webkit-mask-image: url(img/mask-b.svg);
          mask-image: url(img/mask-b.svg);
}

[bp*="12@sm"]:nth-child(7n+9) .img-mask2 {
  -webkit-mask-image: url(img/mask-i.svg);
          mask-image: url(img/mask-i.svg);
}

[bp*="12@sm"]:nth-child(7n+10) .img-mask2 {
  -webkit-mask-image: url(img/mask-j.svg);
          mask-image: url(img/mask-j.svg);
}

[bp*="12@sm"]:nth-child(7n+11) .img-mask2 {
  -webkit-mask-image: url(img/mask-v.svg);
          mask-image: url(img/mask-v.svg);
}

[bp*="12@sm"]:nth-child(7n+12) .img-mask2 {
  -webkit-mask-image: url(img/mask-o.svg);
          mask-image: url(img/mask-o.svg);
}

[bp*="12@sm"]:nth-child(7n+13) .img-mask2 {
  -webkit-mask-image: url(img/mask-e.svg);
          mask-image: url(img/mask-e.svg);
}

[bp*="12@sm"]:nth-child(7n+14) .img-mask2 {
  -webkit-mask-image: url(img/mask-t.svg);
          mask-image: url(img/mask-t.svg);
}

blockquote {
  margin: 0;
  padding: 0;
}

.gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: auto;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 120px;
}
.gallery .gallery-item {
  height: 100%;
  margin: 0px !important;
}
@media (max-width: 48em) {
  .gallery .gallery-item {
    width: 50% !important;
  }
}
@media (max-width: 40em) {
  .gallery .gallery-item {
    width: 100% !important;
  }
}
.gallery .gallery-item a img {
  border: 10px solid #fff !important;
}
.gallery .gallery-caption {
  display: none;
}

iframe {
  width: 100%;
  max-width: 100%;
}

ul {
  padding-left: 20px;
}

ol {
  padding-left: 20px;
}

a {
  position: relative;
  -webkit-transition: color 0.1s;
  transition: color 0.1s;
  color: inherit;
  color: #FF6A00;
  /*
  	&[href$=".zip"],
  	&[href$=".doc"],
  	&[href$=".docx"],
  	&[href$=".pdf"] {
  		display: inline-block;
  		color: $zwart;
  		padding-right: 60px;
  		transition: padding 0.2s ease;
  		&:after {
  			content: "\f061";
  			position: absolute;
  			right: 20px;
  			top: 16px;
  			width: 22px;
  			height: 22px;
  			line-height: 22px;
  			color: $roze;
  			background-color: $wit;
  			text-align: center;
  			display: block;
  			font-family: "Font Awesome 5 Pro";
  			font-weight: 900;
  			font-size: 12px;
  			transition: right 0.15s ease-out;
  			border-radius: 999px;
  			transition: transform 0.2s ease;
  			transform: rotate(90deg);
  		}
  		&:hover {
  			padding: 15px 65px;
  		}
  	}
  	*/
}
a:hover {
  text-decoration: underline;
}
a.leesmeer {
  display: inline-block;
  font-size: 1.125rem;
  font-weight: normal;
  font-family: "Pangram Fragment Text Regular";
  line-height: 1.2222222222em;
  color: #1F1F1F;
  text-decoration: none;
  padding-right: 27px;
  margin: 5px 20px 0 0;
}
a.leesmeer:after {
  content: "\f054";
  position: absolute;
  right: 0px;
  top: 4px;
  width: 21px;
  height: 21px;
  line-height: 20px;
  color: #1F1F1F;
  font-family: "Font Awesome 5 Pro";
  font-weight: 300;
  font-size: 15px;
  -webkit-transition: right 0.15s ease-out;
  transition: right 0.15s ease-out;
}
a.leesmeer:hover:after {
  right: -10px;
}
a.button {
  position: relative;
  display: inline-block;
  background-color: #FF6A00;
  border: 0px solid transparent;
  color: #fff !important;
  font-size: 1.125rem;
  font-weight: normal;
  font-family: "Pangram Fragment Sans Light";
  line-height: 1.3333333333em;
  color: #fff;
  text-decoration: none;
  padding: 5px 40px;
  margin-bottom: 20px;
  -webkit-transition: opacity 0.1s ease-out;
  transition: opacity 0.1s ease-out;
  text-align: center;
  text-decoration: none;
}
a.button a {
  color: inherit;
  text-decoration: none;
}
a.button:hover {
  opacity: 0.8;
}

.clearfix:after {
  zoom: 1;
  content: ".";
  visibility: hidden;
  display: block;
  height: 0;
  clear: both;
}

#pagecontainer {
  position: relative;
  padding-top: 100px;
  min-height: calc(100vh - 210px);
}
@media (max-width: 44em) {
  #pagecontainer {
    margin: 0 !important;
  }
}
#pagecontainer hr {
  margin: 30px 0;
  border: 0px solid #fff;
  border-bottom: 1px solid #FF6A00;
}
#pagecontainer label {
  display: inline-block;
  background-color: #FF6A00;
  color: #fff;
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: normal;
  font-family: "Pangram Fragment Text Regular";
  line-height: 1.6875em;
  padding: 0 10px;
  margin-bottom: 10px;
  white-space: nowrap;
}
#pagecontainer .volgende-vorige {
  text-align: center;
  padding: 0 0 30px 0;
}
#pagecontainer .volgende-vorige a {
  width: 30px;
  height: 30px;
  font-size: 35px;
  margin: 0 5px;
}
#pagecontainer .volgende-vorige a.disabled {
  opacity: 0.3;
}
#pagecontainer input,
#pagecontainer textarea,
#pagecontainer input[type=text] {
  display: inline-block;
  color: #1F1F1F;
  background-color: #fff;
  border: 1px solid #1F1F1F;
  margin: 5px 0 5px 0;
  padding: 7px 20px;
  border-radius: 1px;
  font-size: 1.1875rem;
  font-weight: normal;
  font-family: "Pangram Fragment Sans Light";
  line-height: 1.3684210526em;
}
#pagecontainer input[type=submit] {
  display: inline-block;
  border: 0px solid #fff;
  background-color: #FF6A00;
  color: #fff;
  margin-bottom: 30px;
}
#pagecontainer input[type=checkbox],
#pagecontainer input[type=radio] {
  margin: 5px 15px 5px 0;
}
#pagecontainer b, #pagecontainer strong {
  font-weight: normal;
  font-family: "Pangram Fragment Text Bold";
}
#pagecontainer sub {
  font-size: 0.9375rem;
  font-weight: normal;
  font-family: "Pangram Fragment Sans Light";
  line-height: 1.2em;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0 0 0 0;
  font-weight: normal;
}
h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
  text-decoration: none;
  font-family: "Pangram Fragment Text Bold";
}

h1 {
  font-size: 2.8125rem;
  font-weight: normal;
  font-family: "Pangram Fragment Text Bold";
  line-height: 1.2em;
  margin-bottom: 10px;
  text-align: center;
}

h2 {
  font-size: 2.5rem;
  font-weight: normal;
  font-family: "Pangram Fragment Text Bold";
  line-height: 1.25em;
}

h3 {
  font-size: 1.5625rem;
  font-weight: normal;
  font-family: "Pangram Fragment Text Bold";
  line-height: 1.2em;
  margin-bottom: 10px;
}

h4 {
  font-size: 1.125rem;
  font-weight: normal;
  font-family: "Pangram Fragment Text Bold";
  line-height: 1.2222222222em;
  color: #FF6A00;
}

@media (max-width: 60em) {
  h1 {
    font-size: 2.8125rem;
    font-weight: normal;
    font-family: "Pangram Fragment Text Bold";
    line-height: 1.1777777778em;
  }
  h2 {
    font-size: 2.8125rem;
    font-weight: normal;
    font-family: "Pangram Fragment Text Bold";
    line-height: 1.1777777778em;
  }
  h3 {
    font-size: 1.625rem;
    font-weight: normal;
    font-family: "Pangram Fragment Text Bold";
    line-height: 1.3076923077em;
  }
}
@media (max-width: 48em) {
  h1 {
    font-size: 1.875rem;
    font-weight: normal;
    font-family: "Pangram Fragment Text Bold";
    line-height: 1.2666666667em;
  }
  h2 {
    font-size: 2.125rem;
    font-weight: normal;
    font-family: "Pangram Fragment Text Bold";
    line-height: 1.1764705882em;
  }
  h3 {
    font-size: 1.5rem;
    font-weight: normal;
    font-family: "Pangram Fragment Text Bold";
    line-height: 1.25em;
  }
}
.inhoud strong, .inhoud b {
  font-family: "Pangram Fragment Text Bold";
  font-weight: normal;
}

.textcenter {
  text-align: center;
}

.textleft {
  text-align: left;
}

.textright {
  text-align: right;
}

[bp=grid] .inhoud {
  padding: 0 20px;
}

table {
  width: 100%;
}
table tr:nth-child(even) {
  background: #efefef;
}
table tr td {
  padding: 5px 10px;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  cursor: pointer;
}
.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

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

/* ============================================= ZOEKRESULTATEN === */
.search .resultaten {
  padding: 50px 0;
}
.search .resultaten ol.resultaten {
  padding: 0 0 0 0px;
  list-style-type: none;
}
.search .resultaten ol.resultaten article {
  margin: 0 0 40px 0;
}
.search .resultaten ol.resultaten article h2 {
  font-size: 1.4em;
}

.pager div {
  display: block;
  width: 50%;
}
.pager .nieuwer {
  float: left;
  text-align: left;
}
.pager .ouder {
  float: right;
  text-align: right;
}

/* ============================= BLOK ============ */
/* --- uitklapper voor werkvelden en tekst */
.uitklappen {
  cursor: pointer;
  display: block;
  text-align: center;
  padding: 20px;
  font-size: 30px;
  color: #FF6A00;
}
.uitklappen i {
  text-align: center;
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}
.uitklappen.actief i {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.uitklaptekst {
  display: none;
  padding: 0px 0px 20px;
}

.blok .gridrow .kolom {
  font-size: 1.125rem;
  font-weight: normal;
  font-family: "Pangram Fragment Sans Light";
  line-height: 1.3333333333em;
}
.blok.tekst {
  padding: 50px 0;
}
.blok.nieuws {
  padding: 50px 0;
}
.blok.nieuws h2 {
  padding: 20px;
  text-align: center;
}
.blok.nieuws [bp=grid] [bp*="12@sm"] .inhoud {
  color: #FF6A00;
  padding: 0 20px;
}
.blok.nieuws [bp=grid] [bp*="12@sm"] .inhoud .img-mask2 {
  margin-bottom: 15px;
}
.blok.nieuws [bp=grid] [bp*="12@sm"] .inhoud h3, .blok.nieuws [bp=grid] [bp*="12@sm"] .inhoud h4, .blok.nieuws [bp=grid] [bp*="12@sm"] .inhoud a {
  text-decoration: none;
  color: #FF6A00;
}
.blok.nieuws [bp=grid] [bp*="12@sm"] .inhoud .datum {
  color: #1F1F1F;
}
.blok.home-slider {
  /* niet nesten want dat werkt het niet in de block editor */
}
.blok.home-slider .slider .slick-track {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}
.blok.home-slider .slider .slick-slide {
  height: inherit !important;
  border: 5px solid #fff;
  padding: 2px;
}
.blok.home-slider img {
  display: block;
  position: relative;
  height: 50vh;
}
.blok.drieafbeeldingen {
  padding: 50px 0;
}
.blok.drieafbeeldingen .inhoud {
  height: 100%;
}
.blok.drieafbeeldingen .inhoud img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}
@media (max-width: 48em) {
  .blok.drieafbeeldingen .inhoud img {
    height: initial;
  }
}
.blok.afbeelding {
  padding: 50px 0;
}
.blok.afbeelding .inhoud {
  width: 100%;
  height: 100%;
}
.blok.afbeelding .inhoud img {
  width: 100%;
  height: auto;
}
.blok.tekst_afbeelding {
  padding: 20px;
}
.blok.tekst_afbeelding .tekst .inhoud {
  padding: 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.blok.tekst_afbeelding .tekst .inhoud h1, .blok.tekst_afbeelding .tekst .inhoud h2, .blok.tekst_afbeelding .tekst .inhoud h3 {
  text-align: left;
}
.blok.tekst_afbeelding .afbeelding .inhoud {
  padding: 0px;
}
.blok.quote {
  color: #fff;
  background-color: #FF6A00;
  padding: 50px 0;
}
.blok.quote blockquote {
  font-size: 2.5rem;
  font-weight: normal;
  font-family: "Pangram Fragment Text Regular";
  line-height: 1.25em;
  color: #fff;
}
.blok.werkvelden {
  padding: 80px 0;
}
.blok.werkvelden h2 {
  text-align: center;
  padding: 0 0 40px 0;
}
.blok.werkvelden .inhoud h3 {
  border-bottom: 3px solid #FF6A00;
  text-align: center;
  padding: 20px 0;
  min-height: 110px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
}
.blok.werkvelden .inhoud .tekst {
  min-height: 215px;
}
@media (max-width: 48em) {
  .blok.werkvelden .inhoud .tekst {
    min-height: 0;
  }
}
.blok.tegels {
  padding: 50px 0;
}
.blok.tegels h2 {
  text-align: center;
  padding: 0 0 40px 0;
}
.blok.tegels .gridrow .kolom h3 {
  border-bottom: 3px solid #FF6A00;
  text-align: center;
  padding: 20px 0;
}
.blok.schilderijen {
  padding: 50px 0 0 20px;
}
.blok.schilderijen .inhoud {
  padding: 0;
}
.blok.schilderijen .ob-grid {
  padding: 0;
}
.blok.schilderijen .ob-grid .ob-grid-item a {
  display: block;
  width: 100%;
  position: relative;
}
.blok.schilderijen .ob-grid .ob-grid-item a img {
  display: block;
  margin-bottom: 20px;
}
.blok.schilderijen .ob-grid .ob-grid-item a .overlay {
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-out;
  transition: opacity 0.3s ease-out;
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  text-align: left;
}
.blok.schilderijen .ob-grid .ob-grid-item a .overlay:hover {
  opacity: 1;
}
.blok.schilderijen .ob-grid .ob-grid-item a .overlay .tekst {
  padding: 20px;
  position: absolute;
  right: 0px;
  bottom: 0px;
  left: 0px;
}
.blok.schilderijen .ob-grid .ob-grid-item a .overlay .tekst sub {
  font-size: 0.875rem;
  font-weight: normal;
  font-family: "Pangram Fragment Sans Light";
  line-height: 1.5714285714em;
}

.fancybox-inline {
  display: none;
}
.fancybox-inline .de-lightbox .inner {
  background-color: #fff;
  width: 80vw;
  max-width: 1200px;
  margin: 0 auto;
  padding: 5px;
  overflow: hidden;
}
.fancybox-inline .de-lightbox .inner .dehelft {
  width: 50%;
  float: left;
}
@media (max-width: 48em) {
  .fancybox-inline .de-lightbox .inner .dehelft {
    float: none;
    clear: both;
    width: 100%;
  }
}
.fancybox-inline .de-lightbox .inner .dehelft .sluiten {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 30px;
  color: #1F1F1F;
  width: 30px;
  height: 30px;
  cursor: pointer;
}
.fancybox-inline .de-lightbox .inner .dehelft .afbeelding {
  max-width: 30vw;
  max-height: 60vh;
}
.fancybox-inline .de-lightbox .inner .dehelft .tekst {
  padding: 40px 20px;
  color: #1F1F1F;
}

#fancybox-close.fancy-ico span {
  top: 0px;
  right: -50px;
  background-color: transparent !important;
  border: 0px solid transparent !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  -webkit-transition: unset !important;
  transition: unset !important;
}

#fancybox-close span::after, #fancybox-close span::before {
  width: 24px !important;
}

/* ========================================================================= footer ======== */
#footer {
  position: relative;
  background-color: #FF6A00;
  padding: 60px 20px 60px 0;
  color: #fff;
}
#footer a {
  color: #fff;
  text-decoration: none;
}
#footer a:hover {
  text-decoration: underline;
}
#footer [bp=grid] [bp*="12@sm"] .inhoud {
  font-size: 1.125rem;
  font-weight: normal;
  font-family: "Pangram Fragment Sans Light";
  line-height: 1.4444444444em;
}

/* ========================================================================= diversen ======== */
.alignleft {
  float: left;
  margin-right: 10px;
}

.alignright {
  float: right;
  margin-left: 10px;
}

.trans {
  background-color: transparent;
}

.radius {
  border-radius: 10px;
}

.fixed {
  position: fixed;
  top: 0px;
  z-index: 999;
}

.paddingT50 {
  padding-top: 50px;
}

.marginT10 {
  margin-top: 10px;
}

.paddingB20 {
  padding-bottom: 20px !important;
}

.beeld100prc {
  max-width: 100%;
}

.beeld100prc img {
  width: 100%;
  height: auto;
}

/* ========================================================================= media query 820px ======== */
.google-map {
  -webkit-filter: grayscale(75%);
  -moz-filter: grayscale(75%);
  -ms-filter: grayscale(75%);
  -o-filter: grayscale(75%);
  filter: grayscale(75%);
}

.gform_wrapper.gravity-theme .gform_validation_errors,
.gform_wrapper.gravity-theme .gfield_validation_message, .gform_wrapper.gravity-theme .validation_message {
  border: 0px solid transparent !important;
  padding: 0 !important;
  margin: 0 0 10px 0 !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

/* gravity forms title */
.gform_heading h2 {
  font-size: 1.5625rem;
  font-weight: normal;
  font-family: "Pangram Fragment Text Bold";
  line-height: 1.2em;
}