@charset "UTF-8";
@font-face {
  font-family: "EB Garamond";
  src: url("../../fonts/EBGaramond.ttf") format("truetype");
  font-style: normal;
}
@font-face {
  font-family: "EB Garamond Italic";
  src: url("../../fonts/EBGaramond-Italic.ttf") format("truetype");
  font-style: italic;
}
@font-face {
  font-family: "Open Sans";
  src: url("../../fonts/OpenSans.ttf") format("truetype");
  font-style: normal;
}
@font-face {
  font-family: "Open Sans Italic";
  src: url("../../fonts/OpenSans-Italic.ttf") format("truetype");
  font-style: italic;
}
/*
 * Keyframes
 */
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fade-in {
  animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
/*! 
https://serp.co/tools/css-reset/
<link rel="stylesheet" href="https://css.serp.co/css-reset/normalize.css/">
*/
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

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

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

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

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

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

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

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

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

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

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

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.container {
  max-width: 1140px;
  margin: 0 auto;
  position: relative;
  padding: 0 16px;
}
@media (min-width: 1280px) {
  .container {
    padding: 0;
  }
}

.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  padding: 0 16px;
}
@media (min-width: 1280px) {
  .container-wide {
    padding: 0;
  }
}

.container-text {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
}

.row {
  box-sizing: border-box;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex: 0 1 auto;
  -webkit-box-flex: 0;
  flex: 0 1 auto;
  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: 0, 5em;
  margin-left: 0, 5em;
}

.row.reverse {
  -ms-flex-direction: row-reverse;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  flex-direction: row-reverse;
}

.col {
  margin-bottom: 1em;
}

.col.reverse {
  -ms-flex-direction: column-reverse;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  flex-direction: column-reverse;
}

.col-12 {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  max-width: 100%;
}

.col-xs,
.col-xs-1,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9,
.col-xs-10,
.col-xs-11,
.col-xs-12 {
  box-sizing: border-box;
  -ms-flex: 0 0 auto;
  -webkit-box-flex: 0;
  flex: 0 0 auto;
  padding-right: 0.5em;
  padding-left: 0.5em;
}

.col-xs {
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  -webkit-box-flex: 1;
  flex-grow: 1;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  max-width: 100%;
}

.col-xs-1 {
  -ms-flex-preferred-size: 8.333%;
  flex-basis: 8.333%;
  max-width: 8.333%;
}

.col-xs-2 {
  -ms-flex-preferred-size: 16.667%;
  flex-basis: 16.667%;
  max-width: 16.667%;
}

.col-xs-3 {
  -ms-flex-preferred-size: 25%;
  flex-basis: 25%;
  max-width: 25%;
}

.col-xs-4 {
  -ms-flex-preferred-size: 33.333%;
  flex-basis: 33.333%;
  max-width: 33.333%;
}

.col-xs-5 {
  -ms-flex-preferred-size: 41.667%;
  flex-basis: 41.667%;
  max-width: 41.667%;
}

.col-xs-6 {
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
  max-width: 50%;
}

.col-xs-7 {
  -ms-flex-preferred-size: 58.333%;
  flex-basis: 58.333%;
  max-width: 58.333%;
}

.col-xs-8 {
  -ms-flex-preferred-size: 66.667%;
  flex-basis: 66.667%;
  max-width: 66.667%;
}

.col-xs-9 {
  -ms-flex-preferred-size: 75%;
  flex-basis: 75%;
  max-width: 75%;
}

.col-xs-10 {
  -ms-flex-preferred-size: 83.333%;
  flex-basis: 83.333%;
  max-width: 83.333%;
}

.col-xs-11 {
  -ms-flex-preferred-size: 91.667%;
  flex-basis: 91.667%;
  max-width: 91.667%;
}

.col-xs-12 {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  max-width: 100%;
}

.col-xs-offset-1 {
  margin-left: 8.333%;
}

.col-xs-offset-2 {
  margin-left: 16.667%;
}

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

.col-xs-offset-4 {
  margin-left: 33.333%;
}

.col-xs-offset-5 {
  margin-left: 41.667%;
}

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

.col-xs-offset-7 {
  margin-left: 58.333%;
}

.col-xs-offset-8 {
  margin-left: 66.667%;
}

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

.col-xs-offset-10 {
  margin-left: 83.333%;
}

.col-xs-offset-11 {
  margin-left: 91.667%;
}

.start-xs {
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  justify-content: flex-start;
  text-align: start;
}

.center-xs {
  -ms-flex-pack: center;
  -webkit-box-pack: center;
  justify-content: center;
  text-align: center;
}

.end-xs {
  -ms-flex-pack: end;
  -webkit-box-pack: end;
  justify-content: flex-end;
  text-align: end;
}

.top-xs {
  -ms-flex-align: start;
  -webkit-box-align: start;
  align-items: flex-start;
}

.middle-xs {
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
}

.bottom-xs {
  -ms-flex-align: end;
  -webkit-box-align: end;
  align-items: flex-end;
}

.around-xs {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.between-xs {
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
  justify-content: space-between;
}

.first-xs {
  -ms-flex-order: -1;
  -webkit-box-ordinal-group: 0;
  order: -1;
}

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

@media (min-width: 600px) {
  .col-sm,
  .col-sm-1,
  .col-sm-2,
  .col-sm-3,
  .col-sm-4,
  .col-sm-5,
  .col-sm-6,
  .col-sm-7,
  .col-sm-8,
  .col-sm-9,
  .col-sm-10,
  .col-sm-11,
  .col-sm-12 {
    box-sizing: border-box;
    -ms-flex: 0 0 auto;
    -webkit-box-flex: 0;
    flex: 0 0 auto;
    padding-right: 0.5em;
    padding-left: 0.5em;
  }
  .col-sm {
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    -webkit-box-flex: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }
  .col-sm-1 {
    -ms-flex-preferred-size: 8.333%;
    flex-basis: 8.333%;
    max-width: 8.333%;
  }
  .col-sm-2 {
    -ms-flex-preferred-size: 16.667%;
    flex-basis: 16.667%;
    max-width: 16.667%;
  }
  .col-sm-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    -ms-flex-preferred-size: 33.333%;
    flex-basis: 33.333%;
    max-width: 33.333%;
  }
  .col-sm-5 {
    -ms-flex-preferred-size: 41.667%;
    flex-basis: 41.667%;
    max-width: 41.667%;
  }
  .col-sm-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    -ms-flex-preferred-size: 58.333%;
    flex-basis: 58.333%;
    max-width: 58.333%;
  }
  .col-sm-8 {
    -ms-flex-preferred-size: 66.667%;
    flex-basis: 66.667%;
    max-width: 66.667%;
  }
  .col-sm-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    -ms-flex-preferred-size: 83.333%;
    flex-basis: 83.333%;
    max-width: 83.333%;
  }
  .col-sm-11 {
    -ms-flex-preferred-size: 91.667%;
    flex-basis: 91.667%;
    max-width: 91.667%;
  }
  .col-sm-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
  .col-sm-offset-1 {
    margin-left: 8.333%;
  }
  .col-sm-offset-2 {
    margin-left: 16.667%;
  }
  .col-sm-offset-3 {
    margin-left: 25%;
  }
  .col-sm-offset-4 {
    margin-left: 33.333%;
  }
  .col-sm-offset-5 {
    margin-left: 41.667%;
  }
  .col-sm-offset-6 {
    margin-left: 50%;
  }
  .col-sm-offset-7 {
    margin-left: 58.333%;
  }
  .col-sm-offset-8 {
    margin-left: 66.667%;
  }
  .col-sm-offset-9 {
    margin-left: 75%;
  }
  .col-sm-offset-10 {
    margin-left: 83.333%;
  }
  .col-sm-offset-11 {
    margin-left: 91.667%;
  }
  .start-sm {
    -ms-flex-pack: start;
    -webkit-box-pack: start;
    justify-content: flex-start;
    text-align: start;
  }
  .center-sm {
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
    text-align: center;
  }
  .end-sm {
    -ms-flex-pack: end;
    -webkit-box-pack: end;
    justify-content: flex-end;
    text-align: end;
  }
  .top-sm {
    -ms-flex-align: start;
    -webkit-box-align: start;
    align-items: flex-start;
  }
  .middle-sm {
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
  }
  .bottom-sm {
    -ms-flex-align: end;
    -webkit-box-align: end;
    align-items: flex-end;
  }
  .around-sm {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
  .between-sm {
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }
  .first-sm {
    -ms-flex-order: -1;
    -webkit-box-ordinal-group: 0;
    order: -1;
  }
  .last-sm {
    -ms-flex-order: 1;
    -webkit-box-ordinal-group: 2;
    order: 1;
  }
}
@media (min-width: 768px) {
  .col-md,
  .col-md-1,
  .col-md-2,
  .col-md-3,
  .col-md-4,
  .col-md-5,
  .col-md-6,
  .col-md-7,
  .col-md-8,
  .col-md-9,
  .col-md-10,
  .col-md-11,
  .col-md-12 {
    box-sizing: border-box;
    -ms-flex: 0 0 auto;
    -webkit-box-flex: 0;
    flex: 0 0 auto;
    padding-right: 0.5em;
    padding-left: 0.5em;
  }
  .col-md {
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    -webkit-box-flex: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }
  .col-md-1 {
    -ms-flex-preferred-size: 8.333%;
    flex-basis: 8.333%;
    max-width: 8.333%;
  }
  .col-md-2 {
    -ms-flex-preferred-size: 16.667%;
    flex-basis: 16.667%;
    max-width: 16.667%;
  }
  .col-md-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }
  .col-md-4 {
    -ms-flex-preferred-size: 33.333%;
    flex-basis: 33.333%;
    max-width: 33.333%;
  }
  .col-md-5 {
    -ms-flex-preferred-size: 41.667%;
    flex-basis: 41.667%;
    max-width: 41.667%;
  }
  .col-md-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }
  .col-md-7 {
    -ms-flex-preferred-size: 58.333%;
    flex-basis: 58.333%;
    max-width: 58.333%;
  }
  .col-md-8 {
    -ms-flex-preferred-size: 66.667%;
    flex-basis: 66.667%;
    max-width: 66.667%;
  }
  .col-md-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }
  .col-md-10 {
    -ms-flex-preferred-size: 83.333%;
    flex-basis: 83.333%;
    max-width: 83.333%;
  }
  .col-md-11 {
    -ms-flex-preferred-size: 91.667%;
    flex-basis: 91.667%;
    max-width: 91.667%;
  }
  .col-md-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
  .col-md-offset-1 {
    margin-left: 8.333%;
  }
  .col-md-offset-2 {
    margin-left: 16.667%;
  }
  .col-md-offset-3 {
    margin-left: 25%;
  }
  .col-md-offset-4 {
    margin-left: 33.333%;
  }
  .col-md-offset-5 {
    margin-left: 41.667%;
  }
  .col-md-offset-6 {
    margin-left: 50%;
  }
  .col-md-offset-7 {
    margin-left: 58.333%;
  }
  .col-md-offset-8 {
    margin-left: 66.667%;
  }
  .col-md-offset-9 {
    margin-left: 75%;
  }
  .col-md-offset-10 {
    margin-left: 83.333%;
  }
  .col-md-offset-11 {
    margin-left: 91.667%;
  }
  .start-md {
    -ms-flex-pack: start;
    -webkit-box-pack: start;
    justify-content: flex-start;
    text-align: start;
  }
  .center-md {
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
    text-align: center;
  }
  .end-md {
    -ms-flex-pack: end;
    -webkit-box-pack: end;
    justify-content: flex-end;
    text-align: end;
  }
  .top-md {
    -ms-flex-align: start;
    -webkit-box-align: start;
    align-items: flex-start;
  }
  .middle-md {
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
  }
  .bottom-md {
    -ms-flex-align: end;
    -webkit-box-align: end;
    align-items: flex-end;
  }
  .around-md {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
  .between-md {
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }
  .first-md {
    -ms-flex-order: -1;
    -webkit-box-ordinal-group: 0;
    order: -1;
  }
  .last-md {
    -ms-flex-order: 1;
    -webkit-box-ordinal-group: 2;
    order: 1;
  }
}
@media (min-width: 1024px) {
  .col-lg,
  .col-lg-1,
  .col-lg-2,
  .col-lg-3,
  .col-lg-4,
  .col-lg-5,
  .col-lg-6,
  .col-lg-7,
  .col-lg-8,
  .col-lg-9,
  .col-lg-10,
  .col-lg-11,
  .col-lg-12 {
    box-sizing: border-box;
    -ms-flex: 0 0 auto;
    -webkit-box-flex: 0;
    flex: 0 0 auto;
    padding-right: 0.5em;
    padding-left: 0.5em;
  }
  .col-lg {
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    -webkit-box-flex: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }
  .col-lg-1 {
    -ms-flex-preferred-size: 8.333%;
    flex-basis: 8.333%;
    max-width: 8.333%;
  }
  .col-lg-2 {
    -ms-flex-preferred-size: 16.667%;
    flex-basis: 16.667%;
    max-width: 16.667%;
  }
  .col-lg-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    -ms-flex-preferred-size: 33.333%;
    flex-basis: 33.333%;
    max-width: 33.333%;
  }
  .col-lg-5 {
    -ms-flex-preferred-size: 41.667%;
    flex-basis: 41.667%;
    max-width: 41.667%;
  }
  .col-lg-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    -ms-flex-preferred-size: 58.333%;
    flex-basis: 58.333%;
    max-width: 58.333%;
  }
  .col-lg-8 {
    -ms-flex-preferred-size: 66.667%;
    flex-basis: 66.667%;
    max-width: 66.667%;
  }
  .col-lg-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    -ms-flex-preferred-size: 83.333%;
    flex-basis: 83.333%;
    max-width: 83.333%;
  }
  .col-lg-11 {
    -ms-flex-preferred-size: 91.667%;
    flex-basis: 91.667%;
    max-width: 91.667%;
  }
  .col-lg-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
  .col-lg-offset-1 {
    margin-left: 8.333%;
  }
  .col-lg-offset-2 {
    margin-left: 16.667%;
  }
  .col-lg-offset-3 {
    margin-left: 25%;
  }
  .col-lg-offset-4 {
    margin-left: 33.333%;
  }
  .col-lg-offset-5 {
    margin-left: 41.667%;
  }
  .col-lg-offset-6 {
    margin-left: 50%;
  }
  .col-lg-offset-7 {
    margin-left: 58.333%;
  }
  .col-lg-offset-8 {
    margin-left: 66.667%;
  }
  .col-lg-offset-9 {
    margin-left: 75%;
  }
  .col-lg-offset-10 {
    margin-left: 83.333%;
  }
  .col-lg-offset-11 {
    margin-left: 91.667%;
  }
  .start-lg {
    -ms-flex-pack: start;
    -webkit-box-pack: start;
    justify-content: flex-start;
    text-align: start;
  }
  .center-lg {
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
    text-align: center;
  }
  .end-lg {
    -ms-flex-pack: end;
    -webkit-box-pack: end;
    justify-content: flex-end;
    text-align: end;
  }
  .top-lg {
    -ms-flex-align: start;
    -webkit-box-align: start;
    align-items: flex-start;
  }
  .middle-lg {
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
  }
  .bottom-lg {
    -ms-flex-align: end;
    -webkit-box-align: end;
    align-items: flex-end;
  }
  .around-lg {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
  .between-lg {
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }
  .first-lg {
    -ms-flex-order: -1;
    -webkit-box-ordinal-group: 0;
    order: -1;
  }
  .last-lg {
    -ms-flex-order: 1;
    -webkit-box-ordinal-group: 2;
    order: 1;
  }
}
@media (min-width: 1280px) {
  .col-xl,
  .col-xl-1,
  .col-xl-2,
  .col-xl-3,
  .col-xl-4,
  .col-xl-5,
  .col-xl-6,
  .col-xl-7,
  .col-xl-8,
  .col-xl-9,
  .col-xl-10,
  .col-xl-11,
  .col-xl-12 {
    box-sizing: border-box;
    -ms-flex: 0 0 auto;
    -webkit-box-flex: 0;
    flex: 0 0 auto;
    padding-right: 0.5em;
    padding-left: 0.5em;
  }
  .col-xl {
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    -webkit-box-flex: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }
  .col-xl-1 {
    -ms-flex-preferred-size: 8.333%;
    flex-basis: 8.333%;
    max-width: 8.333%;
  }
  .col-xl-2 {
    -ms-flex-preferred-size: 16.667%;
    flex-basis: 16.667%;
    max-width: 16.667%;
  }
  .col-xl-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }
  .col-xl-4 {
    -ms-flex-preferred-size: 33.333%;
    flex-basis: 33.333%;
    max-width: 33.333%;
  }
  .col-xl-5 {
    -ms-flex-preferred-size: 41.667%;
    flex-basis: 41.667%;
    max-width: 41.667%;
  }
  .col-xl-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }
  .col-xl-7 {
    -ms-flex-preferred-size: 58.333%;
    flex-basis: 58.333%;
    max-width: 58.333%;
  }
  .col-xl-8 {
    -ms-flex-preferred-size: 66.667%;
    flex-basis: 66.667%;
    max-width: 66.667%;
  }
  .col-xl-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }
  .col-xl-10 {
    -ms-flex-preferred-size: 83.333%;
    flex-basis: 83.333%;
    max-width: 83.333%;
  }
  .col-xl-11 {
    -ms-flex-preferred-size: 91.667%;
    flex-basis: 91.667%;
    max-width: 91.667%;
  }
  .col-xl-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
  .col-xl-offset-1 {
    margin-left: 8.333%;
  }
  .col-xl-offset-2 {
    margin-left: 16.667%;
  }
  .col-xl-offset-3 {
    margin-left: 25%;
  }
  .col-xl-offset-4 {
    margin-left: 33.333%;
  }
  .col-xl-offset-5 {
    margin-left: 41.667%;
  }
  .col-xl-offset-6 {
    margin-left: 50%;
  }
  .col-xl-offset-7 {
    margin-left: 58.333%;
  }
  .col-xl-offset-8 {
    margin-left: 66.667%;
  }
  .col-xl-offset-9 {
    margin-left: 75%;
  }
  .col-xl-offset-10 {
    margin-left: 83.333%;
  }
  .col-xl-offset-11 {
    margin-left: 91.667%;
  }
  .start-xl {
    -ms-flex-pack: start;
    -webkit-box-pack: start;
    justify-content: flex-start;
    text-align: start;
  }
  .center-xl {
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
    text-align: center;
  }
  .end-xl {
    -ms-flex-pack: end;
    -webkit-box-pack: end;
    justify-content: flex-end;
    text-align: end;
  }
  .top-xl {
    -ms-flex-align: start;
    -webkit-box-align: start;
    align-items: flex-start;
  }
  .middle-xl {
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
  }
  .bottom-xl {
    -ms-flex-align: end;
    -webkit-box-align: end;
    align-items: flex-end;
  }
  .around-xl {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
  .between-xl {
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }
  .first-xl {
    -ms-flex-order: -1;
    -webkit-box-ordinal-group: 0;
    order: -1;
  }
  .last-xl {
    -ms-flex-order: 1;
    -webkit-box-ordinal-group: 2;
    order: 1;
  }
}
* {
  transition: all 0.3s ease-in-out;
}

/* Default for small screens (mobile-first approach) */
html {
  font-size: 16px; /* Slightly smaller for compact screens */
}

/* For tablets and larger screens */
@media (min-width: 768px) {
  html {
    font-size: 17px; /* Slightly larger for tablets */
  }
}
/* For desktops and larger screens */
@media (min-width: 1024px) {
  html {
    font-size: 18px; /* Ideal size for desktops */
  }
}
/* For HD screens */
@media (min-width: 1280px) {
  html {
    font-size: 19px; /* Slightly larger for HD displays */
  }
}
/* For 4K screens and ultra-wide displays */
@media (min-width: 1920px) {
  html {
    font-size: 20px; /* Maximum size for ultra-wide screens */
  }
}
body {
  background-color: #fffdf9;
  font-family: "Quicksand", sans-serif;
  color: #2D2D2D;
  font-size: 18px;
  margin-right: -5px;
  font-size: 18px;
  line-height: 1.75;
  overflow-x: hidden;
}

/* Base styling for all headings */
h1, h2, h3, h4, h5, h6 {
  font-family: "Quicksand", sans-serif;
  font-weight: 700; /* Make all headings bold */
  line-height: 1; /* Ensure good readability */
  margin: 0 0 1rem; /* Add spacing below each heading */
  color: #D99873;
}

/* Default font sizes for smaller screens (mobile-first) */
h1 {
  font-size: 2.5rem; /* Large titles for small screens */
}

h2 {
  font-size: 1.8rem;
  margin-bottom: 1em;
}

h3 {
  font-size: 1.25rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

small {
  font-size: 0.875rem; /* Slightly smaller text */
}

em {
  font-style: italic;
  text-decoration: none;
}

strong {
  font-weight: bold;
}

var {
  font-style: italic;
  font-weight: bold;
}

code var {
  color: #4A5568;
  background-color: #f9f9f9;
  padding: 2px 4px;
  border-radius: 4px;
}

figure a,
figure a:hover {
  border: 0;
}

img {
  max-width: 100%;
}

/* Algemene Styling voor <address> */
address {
  font-style: normal; /* Verwijder de cursieve standaardstijl */
  margin: 20px 0; /* Ruimte boven en onder */
  line-height: 1.6; /* Goede leesbaarheid */
  font-size: 1rem; /* Standaard tekstgrootte */
}

/* Links Binnen <address> */
address a {
  color: #D99873; /* Terracotta kleur voor links */
  text-decoration: none; /* Verwijder onderstreping */
  font-weight: bold; /* Maak links vetgedrukt */
}

address a:hover {
  color: #4A5568; /* Donkerdere kleur bij hover */
  text-decoration: underline; /* Onderstreep bij hover */
}

/* Specifieke Styling Binnen Containers */
.post-content address {
  font-size: 0.95rem; /* Iets kleinere tekstgrootte */
}

/* Responsiviteit */
@media (max-width: 768px) {
  address {
    font-size: 0.9rem; /* Kleinere tekst op mobiele apparaten */
    padding: 10px; /* Minder padding op kleinere schermen */
  }
}
.u-npl {
  padding-left: 0 !important;
}

.u-npr {
  padding-right: 0 !important;
}

/* Basic styling */
.site-header {
  background-color: #E8ECEB;
  padding: 1rem 2rem;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  max-width: 100px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  z-index: 9999;
}

.nav-links a {
  text-decoration: none;
  color: #3E4E47;
}

.nav-links .button {
  background-color: #B6C7B2;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  color: white;
}

/* Mobile menu */
.menu-icon {
  display: none;
  font-size: 2rem;
  cursor: pointer;
}

#menu-toggle {
  display: none;
}

.menu-icon {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  position: relative;
  z-index: 10000;
}

.menu-icon .close {
  display: none;
}

#menu-toggle:checked + .menu-icon .open {
  display: none;
}

#menu-toggle:checked + .menu-icon .close {
  display: inline;
}

@media (max-width: 768px) {
  .menu-icon {
    display: block;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    background: #E8ECEB;
    position: absolute;
    top: 25px;
    right: 50px; /* aangepast van 2rem naar 0 voor betere zichtbaarheid */
    width: 275px; /* iets breder voor comfort */
    padding: 1rem;
    box-shadow: -4px 0 12px rgba(0, 0, 0, 0.1);
  }
  #menu-toggle:checked + .menu-icon + .nav-links {
    display: flex;
  }
  .menu-icon {
    display: block;
  }
}
input[type=email],
input[type=number],
input[type=search],
input[type=text],
input[type=tel],
input[type=url],
input[type=password],
textarea {
  height: 38px;
  width: 100%;
  padding: 28px 20px;
  background-color: #fff;
  border: 1px solid #2D2D2D;
  border-radius: 0;
  box-shadow: none;
  box-sizing: border-box;
  font-weight: normal;
  color: #2D2D2D;
}
input[type=email].wpcf7-not-valid, input[type=email].has-error,
input[type=number].wpcf7-not-valid,
input[type=number].has-error,
input[type=search].wpcf7-not-valid,
input[type=search].has-error,
input[type=text].wpcf7-not-valid,
input[type=text].has-error,
input[type=tel].wpcf7-not-valid,
input[type=tel].has-error,
input[type=url].wpcf7-not-valid,
input[type=url].has-error,
input[type=password].wpcf7-not-valid,
input[type=password].has-error,
textarea.wpcf7-not-valid,
textarea.has-error {
  border: 1px solid red;
}

input[type=email], input[type=number], input[type=search], input[type=text], input[type=tel], input[type=url], input[type=password] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  min-height: 135px;
  padding-top: 6px;
  padding-bottom: 6px;
}

input[type=email]:focus, input[type=number]:focus, input[type=search]:focus, input[type=text]:focus, input[type=tel]:focus, input[type=url]:focus, input[type=password]:focus {
  border: 1px solid #D99873;
  outline: 0;
}

select:focus,
textarea:focus {
  border: 1px solid #D99873;
  outline: 0;
}

label,
legend {
  display: block;
}

fieldset {
  padding: 0;
  border-width: 0;
}

.error-message {
  font-size: 14px;
  line-height: 27px;
  color: red;
}

.c-blog {
  padding: 32px 16px;
}

.sticky-container {
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .normal-container {
    column-count: 2; /* 3 kolommen */
  }
}
@media (min-width: 1024px) {
  .normal-container {
    column-count: 3; /* 3 kolommen */
    column-gap: 16px; /* Ruimte tussen kolommen */
  }
}

.c-blog__article {
  break-inside: avoid; /* Voorkom dat items worden gebroken */
  background-color: white;
  margin-bottom: 16px;
  padding: 16px;
  box-sizing: border-box;
  overflow-x: hidden;
}
.c-blog__article h2 {
  padding-bottom: 10px;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
}
.c-blog__article.sticky {
  padding: 0 0 40px 0;
  background-color: transparent;
}

.sticky {
  width: 100%;
}

/* Artikel Styling */
article {
  margin-bottom: 40px;
  padding: 20px;
}

article header {
  margin-bottom: 20px;
}

article h1 {
  margin: 16px 0 0 0;
}

#post-title {
  -ms-word-wrap: break-word;
  word-wrap: break-word;
}

.post-meta {
  font-size: 0.9rem;
}

.post-meta a {
  color: #D99873;
  text-decoration: none;
}

.post-meta a:hover {
  text-decoration: underline;
}

/* Inhoud Styling */
.post-content {
  font-size: 1rem;
  margin-bottom: 20px;
}

.post-content img {
  max-width: 100%;
  height: auto;
  margin: 8px 0;
  display: block;
}

.wp-block-pullquote {
  padding: 16px 0;
}

/* Footer Styling */
.post-footer {
  font-size: 0.9rem;
  border-top: 1px solid #ddd;
  padding-top: 30px;
}

.post-footer p {
  margin: 0 0 10px;
}

.post-footer a {
  text-decoration: none;
  font-weight: bold;
}

/* Geen inhoud */
.no-content {
  text-align: center;
  font-size: 1.2rem;
  margin-top: 40px;
}

/* Comments Container */
.comments-area {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid #ddd;
}

.comments-area h2 {
  font-size: 1.8rem;
  color: #4A5568;
  margin-bottom: 20px;
}

/* Individuele Reacties */
.comment {
  margin-bottom: 30px;
  padding: 15px 0;
  border-bottom: 1px solid #ddd;
}

.comment:last-child {
  margin-bottom: 0;
}

.comment-list {
  list-style: none;
  padding-left: 0;
}

/* Auteur en Meta-info */
.comment-author {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.comment-author img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 10px;
  border: 2px solid #D99873;
}

.comment-author-name {
  font-weight: bold;
  font-size: 1rem;
}

.comment-author span {
  margin-left: 6px;
}

.comment-meta {
  font-size: 0.85rem;
}

/* Reactie Inhoud */
.comment-content {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-top: 10px;
}

.comment-content p {
  margin-bottom: 10px;
}

/* Beantwoorden Knop */
.comment-reply-link {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.9rem;
  color: #D99873;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.comment-reply-link:hover {
  color: #4A5568;
  text-decoration: underline;
}

/* Threaded Reacties */
.children {
  margin-left: 20px;
  border-left: 2px solid #D99873;
  padding-left: 15px;
}

/* Formulier Styling */
.comment-respond {
  margin-top: 40px;
  padding: 20px 0;
}

.comment-form-comment textarea {
  display: block;
  width: 100%;
}

/* Standaardknop Styling */
.comment-form input[type=submit] {
  background-color: #D99873;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.comment-form input[type=submit]:hover {
  background-color: white;
  color: #2D2D2D;
}

.comment-form input[type=submit]:active {
  background-color: #333;
  box-shadow: none;
  transform: scale(1);
}

.comment-form input[type=submit]:focus {
  outline: 3px solid #D99873;
  outline-offset: 2px;
}

.post-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 1rem;
}

.post-content table th,
.post-content table td {
  border: 1px solid #ddd;
  padding: 12px;
  text-align: left;
}

.post-content table th {
  background-color: #4A5568;
  color: white;
  font-weight: bold;
  text-transform: uppercase;
}

.post-content table tr:nth-child(even) {
  background-color: #f9f9f9;
}

.post-content table tr:hover {
  background-color: #D99873;
  color: white;
  transition: background-color 0.3s ease;
}

.wp-block-image :where(figcaption),
figcaption,
figcaption.wp-element-caption {
  color: #4A5568;
  font-size: 0.8rem;
  text-align: center;
  margin-top: 0px;
  font-style: italic;
}

.wp-block-verse {
  font-family: "Georgia", serif;
  font-size: 1.2rem;
  line-height: 1.8;
  background-color: white;
  border-left: 4px solid #D99873;
  padding: 20px;
  margin: 20px 0;
  white-space: pre-wrap;
}

.c-footer {
  text-align: center;
  padding: 1em;
  color: #2D2D2D;
  background: #f7f1d1;
}
.c-footer a {
  color: #2D2D2D;
  text-decoration: none;
}
.c-footer a:hover {
  text-decoration: underline;
}
.c-footer ul {
  display: inline-block;
  padding: 0;
}
.c-footer ul li {
  display: inline-block;
  padding: 0;
}
.c-footer ul li + li::before {
  content: "- ";
}

.post-pagination,
.pagination {
  text-align: center;
  margin: 20px 0;
}

.page-links,
.post-page-numbers,
.page-numbers {
  display: inline-block;
  padding: 8px 12px;
  margin: 0 4px;
  color: inherit;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
  border-bottom: none;
}

.page-numbers:hover {
  background-color: #D99873;
  color: white;
  border: 0;
}

.post-page-numbers.current,
.page-numbers.current {
  background-color: white;
  font-weight: bold;
}

.post-pagination a,
.post-pagination a:visited {
  border-bottom: none;
}

.wp-caption {
  display: inline-block;
  max-width: 100%; /* Beperkt de breedte van de caption tot de breedte van de afbeelding */
  text-align: center; /* Centreert het bijschrift */
  margin: 1.5em auto; /* Voeg ruimte toe boven en onder de caption */
}

.wp-caption-text {
  font-size: 0.9em; /* Kleiner dan gewone tekst */
  margin-top: 0.5em; /* Ruimte tussen afbeelding en bijschrift */
}

.gallery-caption {
  font-size: 0.9em; /* Kleiner dan standaardtekst */
  text-align: center; /* Tekst gecentreerd onder de afbeelding */
  margin-top: 0.5em; /* Ruimte tussen afbeelding en bijschrift */
}

.bypostauthor {
  padding: 10px;
  margin: 10px 0;
}

.alignright {
  text-align: right;
}

.alignleft {
  text-align: left;
}

.aligncenter {
  text-align: center;
}

/* Standaard container-breedte */
.wp-block {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Full-width blokken */
.alignfull {
  width: 100vw; /* 100% van de viewportbreedte */
  max-width: 100vw;
  margin-left: calc(-50vw + 50%); /* Trekt de breedte uit buiten de container */
}

.screen-reader-text {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px); /* Verbergt de tekst visueel */
  word-wrap: normal;
}

/* Maak .screen-reader-text zichtbaar wanneer het focus krijgt (bv. bij tabben) */
.screen-reader-text:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 10px 0;
  padding: 5px;
  background: #f8f9fa;
  color: #333;
  border: 1px solid #ddd;
  clip: auto;
  left: auto;
  text-decoration: none;
}

.wpcf7-list-item {
  display: block;
  margin-left: 0px;
}

header {
  background: linear-gradient(45deg, #f7c59f, #f7f1d1);
  padding: 2em 1em;
  text-align: center;
  color: #4d3e3e;
}

header h1 {
  margin: 0;
  font-size: 2.5em;
}

header p {
  margin-top: 0.5em;
}

main {
  margin-top: 100px;
}

.c-holder__alpha {
  background-color: #e6f0ed;
}

ul.pootjes-lijst {
  list-style: paw;
  padding-left: 1.5em;
}

ul.pootjes-lijst li {
  list-style: none;
  position: relative;
  padding-left: 0.5em;
}

ul.pootjes-lijst li::before {
  content: "🐾";
  position: absolute;
  left: -24px;
}

.elementor-button.elementor-button-link.elementor-size-sm,
a.elementor-button,
.elementor-widget-button .elementor-button,
a.elementor-button.elementor-button-link.elementor-size-sm,
[type=submit].button,
.button a,
a.button {
  display: inline-block !important;
  background: #81b29a !important;
  color: white !important;
  padding: 13px 22px !important;
  text-decoration: none !important;
  border: 0 !important;
  border-radius: 25px !important;
  font-weight: 600 !important;
  font-size: 18px;
}

[type=submit].button,
a.button:hover {
  background: #6d9d88;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
}

.container-text {
  max-width: 760px;
  margin: 0 auto;
}

.grafiek-section {
  padding: 4em 0;
}

.weetje {
  background-color: #fff8e6;
  border-left: 5px solid #e07a5f;
  padding: 1em;
  margin-top: 4em;
  color: #333;
}
@media (max-width: 600px) {
  .weetje .weetje {
    font-size: 0.95em;
    line-height: 1.4;
  }
}

.weetje strong {
  color: #e07a5f;
}

.weetje-lijst {
  list-style: none;
  padding-left: 0;
  margin-top: 1em;
}

.weetje-lijst li {
  margin-bottom: 0.5em;
  font-size: 1em;
}

.accent {
  color: #e07a5f;
  font-weight: bold;
}

.grafiek-section .inner {
  padding: 2em;
  border-radius: 8px;
  max-width: 1140px;
  margin: 2em auto;
}

.grafiek-content {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
}

@media (min-width: 768px) {
  .grafiek-tekst {
    flex: 2 1 60%;
    max-width: 66.66%;
    color: #333;
  }
}

.grafiek-container {
  width: 300px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .grafiek-container {
    flex: 1 1 30%;
    max-width: 33.33%;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

.logo {
  max-height: 200px;
}

.diensten-pakketten {
  padding: 2em 0;
  margin: 0 auto;
}

.pakketten {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.pakket {
  background: #f4f7f5;
  border-radius: 12px;
  padding: 1.5em;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  border: 1px solid #e0e0e0;
}

.pakket h3 {
  margin-top: 0;
  font-size: 1.25rem;
  margin-bottom: 0.5em;
}

.pakket .prijs {
  font-weight: bold;
  font-size: 1.1rem;
  margin-bottom: 0.25em;
}

.pakket .beschikbaar {
  color: #555;
  font-style: italic;
  margin-bottom: 1em;
}

.pakket ul {
  padding-left: 1em;
  list-style-type: disc;
  color: #333;
}

.pakket em a {
  color: #3e4e47;
  text-decoration: underline dotted;
}

.opmerking {
  background: #eef1ee;
  margin-top: 2rem;
  padding: 1em;
  border-radius: 8px;
  text-align: center;
}

.annulering {
  margin-top: 3rem;
  background: #f9faf9;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.04);
}

.annulering h3 {
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  color: #2f3e37;
}

.annuleringslijst {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
}
.annuleringslijst ::before {
  content: "";
}

.annuleringslijst .regel {
  padding: 1rem 1.5rem;
  border-left: 6px solid transparent;
  background: #fff;
  border-radius: 8px;
  box-shadow: inset 0 0 0 1px #e0e0e0;
}

.annuleringslijst .label {
  display: block;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.blauw {
  border-left-color: #7dd3fc;
}

.oranje {
  border-left-color: #fbbf24;
}

.rood {
  border-left-color: #f87171;
}

.annuleringslijst p {
  margin: 0;
  line-height: 1.5;
}

.over-mij {
  padding: 3rem 1rem;
  background: #f4f7f5;
}

.over-mij {
  padding: 3rem 1rem;
  background: #f4f7f5;
}

.over-mij-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  margin: 0 auto;
  flex-wrap: nowrap;
}

.over-mij-tekst {
  line-height: 1.7;
  color: #333;
}
@media (min-width: 768px) {
  .over-mij-tekst {
    width: 75%;
  }
}

.over-mij-foto {
  text-align: center;
}
@media (min-width: 768px) {
  .over-mij-foto {
    margin-top: 110px;
    width: 25%;
  }
}

.over-mij-foto img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.over-mij-tekst strong {
  color: #3e4e47; /* accentkleur van je site */
}

/* 📱 Responsieve aanpassing */
@media (max-width: 768px) {
  .over-mij-content {
    flex-direction: column;
  }
  .over-mij-tekst,
  .over-mij-foto {
    flex: 1 1 100%;
  }
}
.galerij {
  padding: 3rem 1rem;
}

.galerij-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  max-width: 1140px;
  margin: 0 auto;
}

.galerij-item {
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.galerij-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.insta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
}

.insta-icon {
  width: 16px;
  height: 16px;
  vertical-align: middle;
}

.c-cta-holder {
  padding: 60px 0;
  text-align: center;
}

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