@charset "UTF-8";
.u-spacer:before, .c-holder--dark:before, .u-spacer:after, .c-holder--dark:after {
  display: table;
  content: "";
}
.u-spacer:after, .c-holder--dark:after {
  clear: both;
}

/*
 * Keyframes
 */
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@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;
  }
}
/* Box sizing rules */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  border: none;
}

/* Prevent font size inflation */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

/* Remove default margin in favour of better control in authored CSS */
body, h1, h2, h3, h4, p,
figure, blockquote, dl, dd {
  margin-block-end: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  line-height: 1.5;
}

/* Set shorter line heights on headings and interactive elements */
h1, h2, h3, h4,
button, input, label {
  line-height: 1.1;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
  color: currentColor;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input, button,
textarea, select {
  font: inherit;
}

/* Make sure textareas without a rows attribute are not tiny */
textarea:not([rows]) {
  min-height: 10em;
}

/* Anything that has been anchored to should have extra scroll margin */
:target {
  scroll-margin-block: 5ex;
}

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

.container-text {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  padding: 0 1.5em;
}
@media (min-width: 1200px) {
  .container-text {
    padding: 0;
  }
}

.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: -10px;
  margin-left: -10px;
}

.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: 10px;
  padding-left: 10px;
}

.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: 550px) {
  .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: 10px;
    padding-left: 10px;
  }
  .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: 750px) {
  .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: 10px;
    padding-left: 10px;
  }
  .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: 1000px) {
  .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: 10px;
    padding-left: 10px;
  }
  .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: 1200px) {
  .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: 10px;
    padding-left: 10px;
  }
  .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;
  }
}
body {
  background-color: #fffbf5;
  color: #2D2D2D;
  font-family: "Lato", sans-serif;
  font-size: 18px;
  margin-right: -5px;
}

header,
main,
footer {
  overflow-x: hidden;
}

img {
  max-width: 100%;
}

a {
  border-bottom: 1px dotted #2D2D2D;
  transition: background-color 0.5s ease, border 0.5s ease, color 0.5s ease;
  text-decoration: none;
}

a:hover {
  color: #3C4454;
  border-bottom: 1px dotted #3C4454;
}

.current_page_item a {
  padding-bottom: 3px;
  border-bottom: 1px dotted #fffbf5;
}

p + p {
  margin-top: 1em;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Playfair Display", serif;
  color: #3C4454;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 22px;
}

.template_plain-text p,
.template_plain-text h1,
.template_plain-text h2,
.template_plain-text h3,
.template_plain-text h4,
.template_plain-text h5,
.template_plain-text h5 {
  margin-bottom: 1em;
}

header {
  background-image: url("../img/headerPhoto.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.header__inner {
  padding: 10px 10px;
  background-color: transparent;
  background-color: rgba(0, 0, 0, 0.3);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#4D000000,endColorstr=#4D000000);
  zoom: 1;
  position: relative;
}
@media (min-width: 750px) {
  .header__inner {
    padding: 20px 40px;
  }
}

.header__logo a {
  font-family: "Playfair Display", serif;
  font-size: 36px;
  font-weight: 700;
  color: #fffbf5;
  padding: 10px 0;
  text-decoration: none;
  border: none;
}
@media (min-width: 750px) {
  .header__logo a {
    padding: 0;
  }
}

.toggle__nav {
  position: absolute;
  right: 30px;
  top: 20px;
}

@media (max-width: 750px) {
  .header__nav {
    position: absolute;
    top: 4em;
    right: 100em;
    left: -100em;
    background-color: transparent;
    background-color: rgba(0, 0, 0, 0.9);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#E6000000,endColorstr=#E6000000);
    zoom: 1;
    transition: left 0.5s ease, right 0.5s ease; /* Transities voor beide richtingen */
    z-index: 9999;
  }
}
.header__nav li {
  padding: 10px;
  list-style: none;
}
@media (min-width: 750px) {
  .header__nav {
    text-align: right;
    display: block !important;
  }
}
@media (min-width: 750px) {
  .header__nav li {
    display: inline-block;
  }
}
@media (min-width: 750px) {
  .header__nav li + li {
    margin-left: 10px;
  }
}
.header__nav a {
  text-decoration: none;
  border: none;
  color: #fffbf5;
}
.header__nav .sub-menu {
  display: none;
}
@media (min-width: 750px) {
  .header__nav .sub-menu {
    display: none;
    position: absolute;
    left: 10px;
    background-color: #2D2D2D;
    text-align: left;
  }
  .header__nav .sub-menu li {
    width: 220px;
    padding: 0.5em 0.75em;
  }
  .header__nav .sub-menu li:hover {
    background-color: #3C4454;
  }
  .header__nav .sub-menu li + li {
    margin-left: 0;
  }
}
.header__nav .menu-item-has-children {
  position: relative;
}
.header__nav .menu-item-has-children:hover .sub-menu {
  display: block;
}

.header__intro {
  margin-bottom: 10em;
}

.header__title {
  font-size: 2.25em;
  color: #fffbf5;
  margin: 1.75em 0 1.25em 0;
  padding: 0;
}
@media (min-width: 750px) {
  .header__title {
    margin: 3em 0 2em 0;
    font-size: 3em;
  }
}

.header__intro-text {
  color: #fffbf5;
  padding: 0;
}
@media (min-width: 750px) {
  .header__intro-text {
    font-size: 1.25em;
  }
}

.menu-icon {
  width: 40px;
  height: 40px;
  position: absolute;
  right: 20px;
  top: 10px;
  cursor: pointer;
  transition: transform 0.5s ease;
}
@media (min-width: 750px) {
  .menu-icon {
    display: none;
  }
}

.menu-icon__line {
  width: 100%;
  height: 2px;
  background-color: #fffbf5;
  position: absolute;
  left: 0;
  transition: all 0.25s ease;
}

.menu-icon__line--1 {
  top: 10px;
}

.menu-icon__line--2 {
  top: 20px;
}

.menu-icon__line--3 {
  top: 30px;
}

.menu-icon.open .menu-icon__line--1 {
  transform: rotate(45deg);
  top: 20px;
}

.menu-icon.open .menu-icon__line--2 {
  opacity: 0;
}

.menu-icon.open .menu-icon__line--3 {
  transform: rotate(-45deg);
  top: 20px;
}

.h-show {
  left: 1em;
  right: 1em;
}

.c-holder {
  padding: 50px 1em;
}
@media (min-width: 1000px) {
  .c-holder {
    padding: 90px 20px;
  }
}

.c-holder--cta {
  background-color: #0891b2;
}

.c-holder--cta div {
  margin: 0 auto;
  color: white;
}
.c-holder--cta div h2 {
  color: white;
  margin-bottom: 0.75em;
}
.c-holder--cta div {
  text-align: center;
}

.c-holder--inner {
  background-color: #0891b2;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 750px) {
  .c-holder__push-down {
    margin-top: 5em;
    margin-bottom: 5em;
  }
}

.c-holder--inner-text {
  padding: 0 18px;
}

.c-holder--alpha {
  background-color: #fceac3;
}

.c-holder--dark {
  background-color: #2D2D2D;
}
.c-holder--dark h2, .c-holder--dark h3, .c-holder--dark p {
  color: white;
}
.c-holder--dark {
  display: block;
}

.c-holder.c-holder--dark-with-inner {
  position: relative;
  display: block;
  overflow: hidden;
  background-color: #0891b2;
}
.c-holder.c-holder--dark-with-inner h2, .c-holder.c-holder--dark-with-inner h3, .c-holder.c-holder--dark-with-inner p {
  color: white;
}
@media (min-width: 1000px) {
  .c-holder.c-holder--dark-with-inner {
    padding-top: 0;
    background-color: transparent;
  }
  .c-holder.c-holder--dark-with-inner::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 80%;
    background-image: url("../img/background.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center bottom;
    z-index: 0;
  }
}

.c-holder--title {
  padding: 30px 0;
}
@media (min-width: 1000px) {
  .c-holder--title {
    padding: 50px 0;
  }
}

.c-holder--subtitle {
  margin: 30px 0;
}

.c-holder--image {
  display: none;
}
@media (min-width: 750px) {
  .c-holder--image {
    display: block;
    position: absolute;
    max-width: 400px;
    right: 1em;
  }
}
@media (min-width: 1200px) {
  .c-holder--image {
    right: 0;
  }
}

.u-spacer {
  display: block;
  height: 60px;
}

.u-nm {
  margin-top: 0 !important;
}

.u-np {
  padding: 0 !important;
}

.u-plr {
  padding-left: 10px;
  padding-right: 10px;
}

@media (min-width: 750px) {
  .u-ptb-desktop {
    padding-top: 10px;
    padding-bottom: 50px;
  }
}

.u-mb-1 {
  margin-bottom: 1em;
}

.u-mb-2 {
  margin-bottom: 2em;
}

.u-mb-3 {
  margin-bottom: 3em;
}

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

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

table {
  width: 100%; /* Optioneel: maak de tabel breder */
  border-collapse: collapse; /* Optioneel: verwijder dubbele grenzen */
}

th, td {
  border-bottom: 1px solid #ddd6ca; /* Optioneel: voeg een rand toe */
  padding: 24px 0; /* Optioneel: voeg ruimte rondom de tekst toe */
  text-align: left; /* Optioneel: tekst uitlijnen naar links */
}

/*
  Buttons
*/
input[type=submit],
input[type=submit].wpcf7-submit,
.hs-button.primary.large,
.c-button {
  text-decoration: none;
  display: inline-block;
  text-align: center;
  vertical-align: middle;
  touch-action: manipulation;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  font-size: 18px;
  white-space: nowrap;
  transition: all 0.1s ease-in-out;
  transition-property: background, color, border;
  outline: none;
  line-height: normal;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-font-smoothing: antialiased;
  border-radius: 3px;
}
input[type=submit]:hover,
input[type=submit]:focus,
input[type=submit].wpcf7-submit:hover,
input[type=submit].wpcf7-submit:focus,
.hs-button.primary.large:hover,
.hs-button.primary.large:focus,
.c-button:hover,
.c-button:focus {
  text-decoration: none;
}
input[type=submit]:active,
input[type=submit].wpcf7-submit:active,
.hs-button.primary.large:active,
.c-button:active {
  outline: 0;
  background-image: none;
}

input[type=submit].wpcf7-submit {
  margin-top: 1.25em;
  float: right;
}

.c-button--block {
  display: block;
  width: 100%;
}

.c-button--fll {
  float: left;
}

.c-button--flr {
  float: right;
}

.c-button--sm {
  padding: 0.25em 0.75em;
}

.search-form-wrapper input[type=submit] {
  margin-top: 10px;
  background-color: #4A5568;
  color: white;
  width: 100%;
}

.search-form-wrapper input[type=submit],
.hs-button.primary.large,
.c-button--md {
  padding: 0.5em 1.25em !important;
}

.c-button--lg {
  padding: 0.5em 1.5em;
}

a.elementor-button,
.cta-button {
  border: none !important;
}

input[type=submit].wpcf7-submit,
input[type=submit].c-button--alpha,
.c-button--alpha {
  border: none;
  background: #2D2D2D;
  color: white;
  padding: 7px 30px;
  border-radius: 3px;
}
input[type=submit].wpcf7-submit,
input[type=submit].wpcf7-submit:visited,
input[type=submit].c-button--alpha,
input[type=submit].c-button--alpha:visited,
.c-button--alpha,
.c-button--alpha:visited {
  color: #fff !important;
}
input[type=submit].wpcf7-submit:hover,
input[type=submit].wpcf7-submit:focus,
input[type=submit].c-button--alpha:hover,
input[type=submit].c-button--alpha:focus,
.c-button--alpha:hover,
.c-button--alpha:focus {
  border: none;
  color: #fff !important;
}
input[type=submit].wpcf7-submit:active,
input[type=submit].c-button--alpha:active,
.c-button--alpha:active {
  background-color: #fceac3 !important;
}
input[type=submit].wpcf7-submit img,
input[type=submit].c-button--alpha img,
.c-button--alpha img {
  width: 18px;
  margin-left: 10px;
}

.page-title {
  font-size: 2.25em;
  padding: 100px 0 20px 0;
  text-align: center;
  color: #fffbf5;
}
@media (min-width: 750px) {
  .page-title {
    font-size: 3em;
  }
}

.page-title__border {
  border: none; /* Verwijder de standaardlijn */
  height: 4px; /* Stel de dikte in */
  background-color: #fceac3; /* Kies een achtergrondkleur */
  max-width: 50px;
  margin: 0 auto 100px auto;
}

footer {
  text-align: center;
  padding: 50px 0;
  border-top: 1px solid #ddd6ca;
  margin-top: 50px;
}

.c-footer {
  padding: 50px 0;
  border-top: 1px solid #ddd6ca;
}
@media (max-width: 750px) {
  .c-footer .footer__nav {
    margin-top: 1em;
    margin-bottom: 2em;
  }
}
.c-footer li {
  display: block;
  text-align: center;
}
@media (min-width: 750px) {
  .c-footer li {
    text-align: left;
  }
}

.c-footer__partners a {
  display: inline-block;
  text-decoration: none;
  border: none;
}
.c-footer__partners a + a {
  margin-left: 1.5em;
}
.c-footer__partners img {
  max-height: 70px;
  filter: grayscale(1);
}
.c-footer__partners img:hover {
  filter: unset;
}

.c-footer__newsletter {
  margin-top: 1em;
}
@media (min-width: 750px) {
  .c-footer__newsletter {
    max-width: 500px;
    float: right;
  }
}

.c-footer--socials {
  text-align: center;
}
@media (min-width: 750px) {
  .c-footer--socials {
    text-align: right;
  }
}

.footer__title {
  font-family: "Playfair Display", serif;
  color: #3C4454;
  font-weight: 700;
  font-size: 2.5em;
  padding: 0;
}

.footer_slagzin {
  margin: 0 auto;
}
@media (min-width: 750px) {
  .footer_slagzin {
    max-width: 320px;
    padding: 20px 0;
    margin: unset;
  }
}

.c-footer--socials {
  padding-top: 10px;
}
.c-footer--socials li {
  display: inline-block;
}
.c-footer--socials li + li {
  margin-left: 10px;
}
.c-footer--socials img {
  width: 20px;
}

a .c-card__inner {
  transition: background-color 0.5s ease;
}

a:hover .c-card__inner {
  background-color: #ddd6ca;
}

.c-card {
  margin-bottom: 1.25em;
}
.c-card .c-card__inner {
  border: 1px solid #ddd6ca;
  padding: 1em 2em 2em 2em;
  display: table-cell;
}
.c-card .c-card__inner.project {
  display: block;
}
.c-card .c-card__icon {
  width: 35px;
  margin: 2em auto 0 auto;
}
.c-card .c-card__photo {
  display: block;
  margin: 0 0 2em 0;
  padding-top: 62%;
  background-size: cover;
  background-position: center center;
}
.c-card {
  text-align: center;
}
@media (min-width: 750px) {
  .c-card {
    display: table;
  }
}

legend,
label {
  display: block;
  width: 100%;
  cursor: pointer;
}

input[type=input],
input[type=text],
input[type=email],
input[type=password],
input[type=search],
input[type=tel],
input[type=url],
input[type=number],
input[type=date],
input[type=month],
input[type=week],
input[type=time],
input[type=datetime],
input[type=datetime-local],
input[name=field_country_code],
input[name=field_city_code],
input[name=field_phone_int],
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  appearance: none;
  background-color: white;
  margin: 0;
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  outline: none;
  padding: 0.5em;
  border-color: transparent;
  border: 1px solid #ddd6ca;
}
input[type=input]:focus,
input[type=text]:focus,
input[type=email]:focus,
input[type=password]:focus,
input[type=search]:focus,
input[type=tel]:focus,
input[type=url]:focus,
input[type=number]:focus,
input[type=date]:focus,
input[type=month]:focus,
input[type=week]:focus,
input[type=time]:focus,
input[type=datetime]:focus,
input[type=datetime-local]:focus,
input[name=field_country_code]:focus,
input[name=field_city_code]:focus,
input[name=field_phone_int]:focus,
textarea:focus {
  color: #2D2D2D;
  border: 1px solid #fceac3;
}
input[type=input].input--error,
input[type=text].input--error,
input[type=email].input--error,
input[type=password].input--error,
input[type=search].input--error,
input[type=tel].input--error,
input[type=url].input--error,
input[type=number].input--error,
input[type=date].input--error,
input[type=month].input--error,
input[type=week].input--error,
input[type=time].input--error,
input[type=datetime].input--error,
input[type=datetime-local].input--error,
input[name=field_country_code].input--error,
input[name=field_city_code].input--error,
input[name=field_phone_int].input--error,
textarea.input--error {
  border-color: red;
}
input[type=input].input--error:focus,
input[type=text].input--error:focus,
input[type=email].input--error:focus,
input[type=password].input--error:focus,
input[type=search].input--error:focus,
input[type=tel].input--error:focus,
input[type=url].input--error:focus,
input[type=number].input--error:focus,
input[type=date].input--error:focus,
input[type=month].input--error:focus,
input[type=week].input--error:focus,
input[type=time].input--error:focus,
input[type=datetime].input--error:focus,
input[type=datetime-local].input--error:focus,
input[name=field_country_code].input--error:focus,
input[name=field_city_code].input--error:focus,
input[name=field_phone_int].input--error:focus,
textarea.input--error:focus {
  border-color: red;
  box-shadow: 0 0 2px rgba(255, 0, 0, 0.5);
}

textarea {
  height: auto;
  resize: none;
}

.input--option {
  margin: 0;
  display: inline-block;
  vertical-align: middle;
}

.label--option {
  margin: 0;
  padding: 0;
  width: auto;
  display: inline-block;
}

::-webkit-input-placeholder {
  font-style: italic;
}

::-moz-placeholder {
  font-style: italic;
}

:-ms-input-placeholder {
  font-style: italic;
}

.form__error {
  display: block;
  color: red;
  padding-top: 0.25em;
}

@media (max-width: 1000px) {
  .hide-on-mobile {
    display: none;
  }
}

@media (max-width: 750px) {
  .hide-on-tablet {
    display: none;
  }
}

.wp-block-latest-posts li {
  margin-bottom: 1em;
  background: url("../img/check.svg") no-repeat left top; /* <-- change `left` & `top` too for extra control */
  padding: 0 0px 0 30px;
  list-style: none;
  text-align: left;
}
.wp-block-latest-posts li a {
  color: inherit;
}
.wp-block-latest-posts li .wp-block-latest-posts__post-date {
  font-style: italic;
}

.customized--list li {
  margin-bottom: 1em;
  background: url("../img/check-white.svg") no-repeat left top; /* <-- change `left` & `top` too for extra control */
  padding: 0 0px 0 30px;
  list-style: none;
  text-align: left;
}

ol {
  list-style: none;
  counter-reset: num;
}

ol li {
  counter-increment: num;
  padding-bottom: 30px;
}

ol li::before {
  content: "0" counter(num) ". ";
  font-weight: bold;
  color: #fceac3;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-size: 20px;
  padding-right: 10px;
}

.is-relative {
  position: relative;
}

form.mailpoet_form {
  margin-top: 1.5em;
  padding: 0 !important;
}

.mailpoet_form .mailpoet_submit {
  background-color: #4A5568;
  border-color: #4A5568;
  color: white;
}

.mailpoet_checkbox_label {
  margin-top: 7px;
}

#mp_form_popup2 {
  max-height: 75% !important;
}
@media (max-width: 750px) {
  #mp_form_popup2 {
    height: auto !important;
  }
}

/* Vervangt standaard bullets door een zacht V-teken (✓) */
ul.wp-block-list {
  list-style: none;
  padding-left: 0;
}

ul.wp-block-list li::before {
  content: "✓";
  color: #3E4E47; /* Donkergroen (aangepast aan jouw stijl) */
  margin-right: 0.5em;
  font-weight: bold;
  display: inline-block;
  width: 1em;
}

.wpcf7-list-label input[type=checkbox] {
  margin-right: 7px;
}

.post-views {
  display: none;
}

.post-categories, .post-tags {
  font-size: 0.9em;
}

.post-categories a, .post-tags a {
  text-decoration: none;
  margin-right: 0.5em;
}

.u-divider {
  border-top: 1px solid #ddd6ca;
  margin-top: 50px;
  padding-bottom: 50px;
}

@media screen and (max-width: 768px) {
  table, tr, td {
    display: block;
    width: 100%;
  }
  tr {
    padding-bottom: 2rem; /* ruimte tussen de rijen */
    border-bottom: 1px solid #ddd6ca; /* Optioneel: voeg een rand toe */
  }
  td {
    border: none;
    padding: 0.5rem 0;
  }
}
.template_blog-single h2, .template_blog-single h3 {
  margin: 1.5em 0 1em 0;
}

.c-blog__list-meta {
  font-size: 0.8em;
  color: #aaa;
  margin-top: 7px;
}

.post-category {
  font-size: 0.7em;
  background-color: #4A5568;
  color: white;
  border: 0;
  padding: 5px 10px;
  border-radius: 3px;
  margin-right: 7px;
}
.post-category:hover {
  color: #eee;
  border: 0;
}

.c-blog-single__sidebar {
  background-color: #d8e6f2;
  padding: 2rem 2rem;
}
.c-blog-single__sidebar .wp-block-heading {
  margin-top: 0;
}

/* Breadcrumbs */
.breadcrumbs {
  font-size: 0.9rem;
  color: #6b7280;
  margin: 0.75rem 0 1rem;
}

.breadcrumbs ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.breadcrumbs ol li {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.breadcrumbs ol li::before {
  content: "";
}

.breadcrumbs a {
  color: #374151;
  text-decoration: none;
}

.breadcrumbs a:hover {
  text-decoration: none;
}

.breadcrumbs .bc-sep {
  margin: 0 0.5rem;
  color: #9ca3af;
}

.breadcrumbs .is-current {
  color: #111827;
  font-weight: 600;
}

.c-blog__item {
  background-color: white;
  padding: 1em;
  margin-bottom: 1em;
}
.c-blog__item img {
  height: auto;
  margin-bottom: 1em;
}

.c-blog__title {
  font-size: 24px;
  margin-bottom: 18px;
}

.c-blog__date {
  margin-bottom: 18px;
}

.error-404 {
  max-width: 600px;
  margin: 4rem auto;
  text-align: center;
}

.error-404 h1 {
  margin-bottom: 1rem;
}

.error-404 p {
  margin-bottom: 2rem;
  color: #666;
}

.search-form-wrapper {
  margin: 2rem 0;
}

.helpful-links {
  margin-top: 3rem;
}

.helpful-links h2 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.helpful-links ul {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}
.helpful-links ul .sub-menu {
  display: none;
}

.nav-404 .sub-menu {
  display: none;
}
.nav-404 a {
  text-decoration: none;
}

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