@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;500&family=Roboto:wght@400;500&display=swap"); /* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

*:focus {
  outline: none;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements*/
ul[role=list],
ol[role=list] {
  list-style: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
ul li {
  margin: 0;
  padding: 0;
}
ul li a {
  display: inline-block;
  width: 100%;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
  font-size: 62.5%;
}

html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* A elements that don't have a class get default styles */
a {
  cursor: pointer;
  font-family: "Poppins", sans-serif;
  color: inherit;
  text-decoration: none;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

figcaption {
  margin-top: 10px;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}
input ::-moz-placeholder, button ::-moz-placeholder, textarea ::-moz-placeholder, select ::-moz-placeholder {
  font: inherit;
}
input :-ms-input-placeholder, button :-ms-input-placeholder, textarea :-ms-input-placeholder, select :-ms-input-placeholder {
  font: inherit;
}
input ::placeholder,
button ::placeholder,
textarea ::placeholder,
select ::placeholder {
  font: inherit;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
*::before,
*::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
h1,
h2,
h3,
h4 {
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 0.5em;
}

h1 {
  font-size: 3rem;
}

h2 {
  font-size: 2.8rem;
}

h3 {
  font-size: 2rem;
}

@media screen and (min-width: 980px) {
  h1 {
    font-size: 5rem;
    line-height: 5rem;
  }
  h2 {
    font-size: 4rem;
    line-height: 4rem;
  }
  h3 {
    font-size: 3rem;
    line-height: 3rem;
  }
}
body {
  font-family: "Poppins", sans-serif;
  color: #1d1d1b;
  line-height: 1.5;
  font-weight: 200;
  font-size: 1.7rem;
}

p + p {
  margin-top: 0.5em;
}

.wrap,
.container {
  max-width: 1240px;
  width: 90%;
  margin-right: auto;
  margin-left: auto;
}

.wrap.mobile-full-wrap {
  width: 100%;
}
@media screen and (min-width: 980px) {
  .wrap.mobile-full-wrap {
    width: 90%;
  }
}

.wrap-small {
  width: 90%;
  max-width: 820px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 620px) {
  .wrap-small {
    width: 75%;
  }
}

@media screen and (max-width: 620px) {
  .hide-mobile {
    display: none !important;
  }
}

@media screen and (min-width: 620px) {
  .hide-vanaf-mobile {
    display: none !important;
  }
}

@media screen and (max-width: 980px) {
  .hide-tot-tablet {
    display: none !important;
  }
}

@media screen and (min-width: 980px) {
  .hide-vanaf-tablet {
    display: none !important;
  }
}

.img-cont {
  position: relative;
}
.img-cont img {
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  width: 100%;
  max-width: unset;
  max-height: unset;
}
.img-cont::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.section-padding {
  padding-top: 50px;
  padding-bottom: 50px;
}

.section-margin {
  margin-top: 50px;
  margin-bottom: 50px;
}
@media screen and (min-width: 620px) {
  .section-margin {
    margin-top: 70px;
    margin-bottom: 70px;
  }
}
@media screen and (min-width: 980px) {
  .section-margin {
    margin-top: 100px;
    margin-bottom: 100px;
  }
}

.section-margin-small {
  margin-top: 10px;
  margin-bottom: 10px;
}
@media screen and (min-width: 620px) {
  .section-margin-small {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 980px) {
  .section-margin-small {
    margin-top: 50px;
    margin-bottom: 50px;
  }
}

.justify-end {
  justify-content: flex-end !important;
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.title {
  font-weight: 500;
}

.subtitle {
  font-weight: 400;
}

.two-column {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 980px) {
  .two-column {
    flex-direction: row;
  }
}

.comma:last-of-type {
  display: none;
}

.allign-left {
  text-align: left !important;
}

.align-left {
  justify-content: left !important;
}

.burger {
  cursor: pointer;
  position: relative;
  display: block;
  width: 30px;
  height: 15px;
}
.burger span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  opacity: 1;
  left: 0;
  background-color: #fff;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}
.burger > span:nth-child(1) {
  top: 0px;
}
.burger > span:nth-child(2) {
  top: 0.75rem;
}
.burger > span:nth-child(3) {
  top: 0.75rem;
}
.burger > span:nth-child(4) {
  top: 1.5rem;
}

.burger.open > span:nth-child(1) {
  top: 8px;
  width: 0%;
  left: 50%;
}
.burger.open > span:nth-child(2) {
  transform: rotate(45deg);
}
.burger.open > span:nth-child(3) {
  transform: rotate(-45deg);
}
.burger.open > span:nth-child(4) {
  top: 8px;
  width: 0%;
  left: 50%;
}

.burger.white span {
  background-color: #ffffff;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: white;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.logo-container {
  width: 100%;
  height: 100px;
  background-color: #87172b;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.logo-container img {
  display: block;
  margin: 10px;
  width: 70%;
  height: 70%;
  max-width: 430px;
  height: 75%;
  -o-object-fit: contain;
     object-fit: contain;
}

.main-menu-container {
  display: none;
}

.main-menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: calc(100vh - 80px);
  background-color: #f4f4f4;
}
.main-menu li a {
  padding: 10px;
  color: #87172b;
  font-weight: 400;
  text-transform: none;
}

.mobile-menu-button {
  display: block;
  position: absolute;
  right: 0%;
  top: 50%;
  transform: translate(-50%, -50%);
}

@media screen and (min-width: 980px) {
  .logo-container {
    width: 430px;
  }
  .mobile-menu-button {
    display: none;
  }
  .main-menu-container {
    display: block;
  }
  .main-menu {
    position: relative;
    height: unset;
    top: unset;
    left: unset;
    right: unset;
    background-color: transparent;
    text-transform: capitalize;
    flex-direction: row;
  }
  .main-menu li {
    margin: 0 5px;
    position: relative;
  }
  .main-menu li a {
    padding: 10px 0.4em;
    font-size: 15px;
    font-size: clamp(0.6rem, 1.5vw, 1.5rem);
    color: #430b15;
    position: relative;
    white-space: nowrap;
  }
  .main-menu li a::after {
    content: "";
    position: absolute;
    bottom: 4px;
    left: 0.4em;
    height: 2px;
    width: 0;
    background-color: #430b15;
    transition: all 400ms ease;
  }
  .main-menu li:hover a::after {
    width: calc(100% - 0.8em);
  }
  .main-menu li.current a {
    color: #87172b;
  }
  .main-menu li.current a::after {
    width: calc(100% - 0px);
    background-color: #87172b;
    height: calc(100% - 8px);
    z-index: -1;
    opacity: 0.2;
    left: 0px;
  }
}
.main-menu-container.open {
  display: block;
}

.landing {
  padding-top: 70px;
}
@media screen and (min-width: 620px) {
  .landing {
    padding-top: 100px;
  }
}

.landing-bg-img {
  max-width: 1920px;
  width: 100%;
  height: -webkit-min-content;
  height: -moz-min-content;
  height: min-content;
  margin: 0px auto 0 auto;
}
.landing-bg-img img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  min-height: 240px;
}
@media screen and (min-width: 980px) {
  .landing-bg-img {
    min-height: 500px;
    max-height: 700px;
  }
  .landing-bg-img img {
    min-height: 430px;
    max-height: 700px;
  }
}

.landing-cta {
  width: 100%;
  background-color: #87172b;
  color: #fff;
  padding: 35px 5%;
  padding-top: 50px;
}
.landing-cta .title {
  font-size: clamp(2.8rem, 3vw, 3.8rem);
}
@media screen and (min-width: 980px) {
  .landing-cta {
    width: 430px;
    padding: 40px;
    padding-top: 110px;
    margin-top: -340px;
    -webkit-clip-path: polygon(0% 0%, 100% 70px, 100% 100%, 0% 100%);
            clip-path: polygon(0% 0%, 100% 70px, 100% 100%, 0% 100%);
  }
}
.landing-cta .btn-container {
  justify-content: flex-end;
  margin-top: 35px;
}

.btn-container {
  margin-top: 25px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn,
.button {
  cursor: pointer;
  position: relative;
  border: none;
  text-align: center;
  padding: 0.7em 4em 0.7em 1.5em;
  font-weight: 300;
  font-size: 17px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  overflow: hidden;
  transition: all 0.2s cubic-bezier(0.42, 0, 0.58, 1);
  background-color: #430b15;
  color: white;
  z-index: 0;
}
.btn::before,
.button::before {
  content: url("https://jukschot-be.euwest01.umbraco.io/media/or0kbyim/right-arrow-24.png");
  position: absolute;
  z-index: 10;
  width: 18px;
  height: 19px;
  top: 50%;
  left: 100%;
  transform: translate(-200%, -50%);
  transition: all 0.2s cubic-bezier(0.42, 0, 0.58, 1);
}
.btn:after,
.button:after {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 75%;
  right: 0;
  height: 100%;
  mix-blend-mode: lighten;
  background-color: #8e6c72;
  -webkit-clip-path: polygon(25px 0%, 100% 0%, 100% 100%, 0% 100%);
          clip-path: polygon(25px 0%, 100% 0%, 100% 100%, 0% 100%);
  transition: all 0.2s cubic-bezier(0.42, 0, 0.58, 1);
  z-index: 3;
}
.btn:hover,
.button:hover {
  background: #55232c;
  transition: all 0.2s cubic-bezier(0.42, 0, 0.58, 1);
}
.btn:hover:after,
.button:hover:after {
  left: 100%;
  -webkit-clip-path: polygon(20px 0%, 100% 0%, 100% 100%, 0% 100%);
          clip-path: polygon(20px 0%, 100% 0%, 100% 100%, 0% 100%);
  transition: all 0.2s cubic-bezier(0.42, 0, 0.58, 1);
}

.btn.gray {
  background-color: #1d1d1b;
}
.btn.gray:after {
  background-color: #777776;
}
.btn.gray:hover {
  background: #333331;
}

.btn.gray-showmore {
  background-color: #1d1d1b;
}
.btn.gray-showmore::before {
  content: url("https://jukschot-be.euwest01.umbraco.io/media/or0kbyim/right-arrow-24.png");
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 100%;
  transform: translate(-170%, -60%) rotate(90deg);
  transition: all 0.2s cubic-bezier(0.42, 0, 0.58, 1);
}
.btn.gray-showmore:after {
  background-color: #777776;
}
.btn.gray-showmore:after:hover {
  background: #333331;
}

.btn.gray-showmore.close::before {
  transform: translate(-200%, -30%) rotate(-90deg);
}

.footer {
  background-color: #430b15;
  padding: 100px 0 30px 0;
  -webkit-clip-path: polygon(5% 0%, 100% 30px, 100% 100%, 0% 100%, 0% 20px);
          clip-path: polygon(5% 0%, 100% 30px, 100% 100%, 0% 100%, 0% 20px);
  color: #fff;
  font-size: 15px;
}
@media screen and (min-width: 620px) {
  .footer {
    -webkit-clip-path: polygon(5% 0%, 100% 50px, 100% 100%, 0% 100%, 0% 25px);
            clip-path: polygon(5% 0%, 100% 50px, 100% 100%, 0% 100%, 0% 25px);
  }
}
@media screen and (min-width: 980px) {
  .footer {
    -webkit-clip-path: polygon(5% 0%, 100% 75px, 100% 100%, 0% 100%, 0% 35px);
            clip-path: polygon(5% 0%, 100% 75px, 100% 100%, 0% 100%, 0% 35px);
  }
}
@media screen and (min-width: 1440px) {
  .footer {
    -webkit-clip-path: polygon(25% 0%, 100% 100px, 100% 100%, 0% 100%, 0% 50px);
            clip-path: polygon(25% 0%, 100% 100px, 100% 100%, 0% 100%, 0% 50px);
  }
}

.footer-layout {
  display: flex;
  flex-direction: column;
}
.footer-layout .col + .col {
  margin-top: 20px;
}
.footer-layout .col._1 {
  width: calc(100% - 60px);
  max-width: 430px;
}
.footer-layout .col._1 img {
  display: block;
  width: 70%;
  height: 70%;
}
@media screen and (min-width: 980px) {
  .footer-layout {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
  .footer-layout .col + .col {
    margin-top: 0px;
  }
}

.footer-info {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  gap:20px;
  justify-content: space-between;
}
.footer-info span {
  display: block;
}

.footer-menu {
  display: flex;
  flex-direction: column;
}
.footer-menu li {
  margin: 10px 0;
}
.footer-menu li a {
  font-weight: 500;
}
@media screen and (min-width: 620px) {
  .footer-menu {
    flex-direction: row;
  }
  .footer-menu li {
    margin: 10px 20px 0 0;
  }
}
@media screen and (min-width: 980px) {
  .footer-menu li {
    margin: 0 0 0 20px;
  }
  .footer-menu li a {
    padding: 0 5px;
  }
}

.footer-privacy {
  font-size: 11px;
  text-align: end;
  line-height: 1;
  margin-top: 10px;
}

.voorstellingen {
  margin-bottom: 50px;
}
.voorstellingen .title,
.voorstellingen h1 {
  margin: 1em 0;
}

.voorstelling {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
@media screen and (min-width: 980px) {
  .voorstelling {
    grid-template-columns: 1fr 2fr;
    gap: 100px;
  }
}
.voorstelling .item-foto {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0;
}
.voorstelling .item-foto img {
  width: 100%;
  height: auto;
  max-height: 600px;
  -o-object-fit: contain;
  object-fit: contain;
}
.voorstelling .item-text {
  position: relative;
}
.voorstelling .item-text .regie,
.voorstelling .item-text .acteurs {
  color: #4a4a48;
}
.voorstelling .item-text .regie > span:nth-child(1),
.voorstelling .item-text .acteurs > span:nth-child(1) {
  text-transform: uppercase;
  display: inline-block;
  margin-right: 5px;
}
.voorstelling .item-text .functie {
  margin-top: 5px;
  font-weight: 700;
  text-transform: uppercase;
}
.voorstelling .item-title {
  font-size: 2.2rem;
  color: #430b15;
  font-weight: 400;
}
.voorstelling .item-dates-container + .item-dates-container {
  margin-top: 10px;
}

.item-dates-container {
  margin-top: 20px;
  padding: 20px;
  background-color: #f4f4f4;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}
.item-dates-container .row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 5px 0;
  border-bottom: 1px solid #fff;
}
.item-dates-container .row .date {
  min-width: 90px;
}
.item-dates-container .row .time {
  min-width: 45px;
}
.item-dates-container .row span:not(:last-child) {
  margin-right: 25px;
}
.item-dates-container .row:last-child {
  border-bottom: none;
}
@media screen and (min-width: 980px) {
  .item-dates-container {
    padding: 20px 40px;
    margin-left: -40px;
  }
}

.voorstellingen .img-text-section .two-column.voorstel-list-item .img-container {
  display: none;
}
.voorstellingen .img-text-section .two-column.voorstel-list-item .text-container {
  padding: 30px;
  width: 100%;
}
.voorstellingen .img-text-section .two-column.voorstel-list-item .text-container .text-title {
  justify-content: flex-start;
  margin-bottom: 20px;
}
.voorstellingen .img-text-section .two-column.voorstel-list-item .text-container .text-title .title {
  margin: 0;
}
.voorstellingen .img-text-section .two-column.voorstel-list-item .text-container .text-title .date {
  font-size: 2.2rem;
  color: #430b15;
  font-weight: 400;
  margin-right: 5px;
}
.voorstellingen .img-text-section .two-column.voorstel-list-item .text-container .text-content {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.voorstellingen .img-text-section .two-column.voorstel-list-item .text-container .text-content a.btn {
  line-height: 1;
  display: inline-flex;
  white-space: nowrap;
}
@media screen and (min-width: 980px) {
  .voorstellingen .img-text-section .two-column.voorstel-list-item .text-container {
    width: 100%;
  }
  .voorstellingen .img-text-section .two-column.voorstel-list-item .text-container .text-content {
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
  }
}

.my-30 {
  margin-top: 30px;
  margin-bottom: 30px;
}

.showpage-intro {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.showpage-intro > div {
  width: 100%;
}
@media screen and (min-width: 980px) {
  .showpage-intro {
    gap: 80px;
    flex-direction: row;
  }
}

.contact-page .landing {
  margin: 100px 0 50px 0;
}

.contact {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin: 50px 0;
}
.contact .info-container {
  order: 1;
  line-height: 2;
  font-weight: 300;
}
.contact .info-container span {
  display: block;
  line-height:1.7;
}
.contact .info-container .addres{
    margin-bottom:10px;
}
.contact .info-container a {
  text-decoration: underline;
}
.contact .form-container {
  order: 2;
}
@media screen and (min-width: 980px) {
  .contact {
    grid-template-columns: 2fr 1fr;
    gap: 100px;
  }
  .contact .info-container {
    order: 2;
  }
  .contact .form-container {
    order: 1;
  }
}

.form-field:not(:first-child),
.umbraco-forms-field:not(:first-child) {
  margin: 20px 0;
}

input,
textarea {
  width: 100%;
  padding: 10px 15px;
  border-radius: 2px;
  border: 1px solid #333331;
  outline: 0;
}

.contact-logo-container {
  background-color: #87172b;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.contact-logo-container img {
  -o-object-fit: contain;
     object-fit: contain;
  height: 60%;
}

.umbraco-forms-form.contactform.form-container fieldset {
  margin: 0;
  padding: 0;
  border: none;
}
.umbraco-forms-form.contactform.form-container input[type=checkbox] {
  width: auto;
}
.umbraco-forms-form.contactform.form-container .umbraco-forms-field.consentforstoringsubmitteddata {
  font-size: 15px;
  font-weight: 300;
  margin: 15px 0 20px 0;
}
.umbraco-forms-form.contactform.form-container .umbraco-forms-field.consentforstoringsubmitteddata .umbraco-forms-field-wrapper {
  display: flex;
  align-items: center;
}
.umbraco-forms-form.contactform.form-container .umbraco-forms-field.consentforstoringsubmitteddata .umbraco-forms-field-wrapper input {
  width: auto;
}
.umbraco-forms-form.contactform.form-container .umbraco-forms-field.consentforstoringsubmitteddata .umbraco-forms-field-wrapper label {
  margin-left: 7px;
}
.umbraco-forms-form.contactform.form-container .umbraco-forms-navigation.row-fluid {
  width: 100%;
}
.umbraco-forms-form.contactform.form-container .umbraco-forms-navigation.row-fluid .col-md-12 {
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 980px) {
  .umbraco-forms-form.contactform.form-container .umbraco-forms-navigation.row-fluid .col-md-12 {
    justify-content: flex-end;
  }
}
.umbraco-forms-form.contactform.form-container .umbraco-forms-navigation.row-fluid input[type=submit] {
  width: auto;
  padding: 10px 15px;
}

.umbraco-forms-field.toestemmingcheckbox.checkbox label {
  display: none;
}
.umbraco-forms-field.toestemmingcheckbox.checkbox .umbraco-forms-tooltip.help-block {
  font-size: small;
  font-weight: 500;
}
.umbraco-forms-field.toestemmingcheckbox.checkbox .umbraco-forms-field-wrapper {
  display: none;
}

.umbraco-forms-field.dataconsent {
  font-size: small;
  font-weight: 500;
}
.umbraco-forms-field.dataconsent .umbraco-forms-tooltip.help-block {
  font-size: small;
  font-weight: 500;
}
.umbraco-forms-field.dataconsent .umbraco-forms-field-wrapper {
  display: none;
}

.contactform-temp-items h4:last-of-type,
.contactform-temp-items p:last-of-type {
  display: none;
}

.field-validation-error {
  font-size: small;
  font-weight: 500;
  color: #e30513;
}

.img-text-section {
  background-color: #f4f4f4;
}
.img-text-section .two-column .img-container {
  order: 1;
  width: 100%;
  height: 100%;
}
.img-text-section .two-column .img-container img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.img-text-section .two-column .text-container {
  order: 2;
  width: 100%;
  padding: 30px;
}
@media screen and (min-width: 980px) {
  .img-text-section .two-column {
    flex-direction: row;
    align-items: center;
  }
  .img-text-section .two-column .img-container {
    width: 35%;
  }
  .img-text-section .two-column .text-container {
    width: 65%;
    padding-left: 8%;
  }
}
.img-text-section .two-column.reverse .img-container {
  order: 1;
}
.img-text-section .two-column.reverse .text-container {
  order: 2;
}
@media screen and (min-width: 980px) {
  .img-text-section .two-column.reverse {
    flex-direction: row;
  }
  .img-text-section .two-column.reverse .img-container {
    order: 2;
  }
  .img-text-section .two-column.reverse .text-container {
    order: 1;
    padding-left: 30px;
    padding-right: 8%;
  }
}

.text-title {
  color: #430b15;
}

.page-content {
  margin-bottom: 50px;
}
@media screen and (min-width: 980px) {
  .page-content {
    margin-bottom: 70px;
  }
}

.headshots {
  display: grid;
  grid-gap: 30px;
  grid-template-columns: 1fr;
}
.headshots .card {
  display: flex;
  flex-direction: column;
  position: relative;
}
.headshots p {
  text-align: center;
}
.headshots .card-img {
  width: 100%;
  position: relative;
}
.headshots .card-img img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.headshots .card-text {
  margin-top: 10px;
}
.headshots .card-text .functie {
  margin-top: 5px;
  font-weight: 700;
  text-transform: uppercase;
}
.headshots .overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: 0.5s ease;
  background-color: #333331;
}
.headshots .card:hover .overlay {
  opacity: 0.8;
}
.headshots .card:hover .overlay .text {
  color: white;
  font-weight: 300;
  font-size: 12px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
@media screen and (min-width: 576px) {
  .headshots {
    grid-gap: 60px;
    grid-template-columns: 1fr 1fr;
  }
  .headshots .card-img {
    max-height: 360px;
  }
}
@media screen and (min-width: 980px) {
  .headshots {
    row-gap: 70px;
    -moz-column-gap: 100px;
    column-gap: 100px;
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.ereleden {
  margin: 50px 0;
}
.ereleden .column {
  -moz-columns: 3 300px;
  columns: 3 300px;
  padding: 30px 20px;
  margin-top: 30px;
  background-color: #f4f4f4;
}
.ereleden .column p {
  text-align: center;
  word-break: break-word;
}
@media screen and (min-width: 980px) {
  .ereleden {
    margin: 50px 0 100px 0;
  }
}

.expandable .column {
  display: none;
}

.img-text-section {
  display: block;
}
.img-text-section .two-column {
  display: flex;
  flex-direction: column;
}
.img-text-section .two-column .img-container {
  order: 1;
  width: 100%;
  height: 100%;
}
.img-text-section .two-column .img-container img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.img-text-section .two-column .text-container {
  order: 2;
  width: 100%;
  height: 100%;
  padding: 30px 20px;
}
.img-text-section .two-column .text-container .text-title {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}
.img-text-section .two-column .text-container .text-title .title {
  font-size: 2.2rem;
  color: #430b15;
  font-weight: 400;
}
.img-text-section .two-column .text-container .text-title .date {
  font-size: 1rem;
  font-weight: 300;
  font-size: 12px;
}
.img-text-section .two-column .text-container .text-content {
  background-color: #f4f4f4;
}
.img-text-section .two-column .text-container .text-content strong {
  font-weight: 300;
}
@media screen and (min-width: 980px) {
  .img-text-section .two-column {
    flex-direction: row;
    align-items: flex-start;
  }
  .img-text-section .two-column .img-container {
    width: 430px;
  }
  .img-text-section .two-column .img-container img {
    width: 100%;
    height: 100%;
    max-height: 285px;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
  .img-text-section .two-column .text-container {
    width: calc(100% - 430px);
    padding: 30px;
  }
}
.img-text-section .two-column.reverse .img-container {
  order: 1;
}
.img-text-section .two-column.reverse .text-container {
  order: 2;
}
@media screen and (min-width: 980px) {
  .img-text-section .two-column.reverse {
    flex-direction: row;
  }
  .img-text-section .two-column.reverse .img-container {
    order: 2;
  }
  .img-text-section .two-column.reverse .text-container {
    order: 1;
    padding-left: 30px;
    padding-right: 8%;
  }
}

.foto-album-container {
  margin-bottom: 100px;
}

.foto-album {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  grid-auto-flow: dense;
}
.foto-album .image-container {
  border: 4px solid #f4f4f4;
  transition: all 400ms ease;
}
.foto-album .image-container img {
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.foto-album .image-container:hover {
  box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 56px;
}

.slbArrow {
  position: absolute;
  top: 50%;
  margin-top: -5em;
  width: 30px;
  height: 30px;
  opacity: 0.7;
  text-indent: -999em;
  overflow: hidden;
}

.slbCloseBtn,
.slbArrow {
  margin: 0;
  padding: 0;
  border: 0;
  cursor: pointer;
  background: none;
}

.slbArrow:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -0.8em 0 0 -0.8em;
  border: 0.8em solid transparent;
}

.slbArrow.next {
  right: 0;
}

.slbArrow.next:before {
  border-left-color: #fff;
}

.slbArrow.prev {
  left: 0;
}

.slbArrow.prev:before {
  border-right-color: #fff;
}

.slbCloseBtn:hover,
.slbArrow:hover {
  opacity: 0.5;
}

.slbCloseBtn {
  -webkit-animation: slbEnter 0.3s;
  animation: slbEnter 0.3s;
  font-size: 3em;
  width: 1.66667em;
  height: 1.66667em;
  line-height: 1.66667em;
  position: absolute;
  right: -0.33333em;
  top: 0;
  color: #fff;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
}

.slbCloseBtn,
.slbArrow {
  margin: 0;
  padding: 0;
  border: 0;
  cursor: pointer;
  background: none;
}

.slbOverlay {
  opacity: 0.85 !important;
}

.foto-albums {
  margin-bottom: 100px;
}
.foto-albums .foto-album {
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}
.foto-albums .foto-album-cover {
  text-align: center;
  transition: all 400ms ease;
  background-color: #f4f4f4;
}
.foto-albums .foto-album-cover img {
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 200px;
}
.foto-albums .foto-album-cover div {
  padding: 10px 5px;
  font-weight: 500;
  font-size: clamp(14px, 2vw, 15px);
}
.foto-albums .foto-album-cover:hover {
  box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 56px;
}

.slbImageWrap {
  height: 100vh;
  display: flex;
  align-items: center;
}

.statistics {
  text-align: center;
  margin-bottom: 50px;
}
.statistics-head {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  font-weight: 500;
}
.statistics-head > div:first-child {
  text-align: left;
}
@media screen and (min-width: 620px) {
  .statistics-head {
    grid-template-columns: repeat(4, 1fr);
  }
}
.statistics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 20px;
}
.statistics-grid > div {
  padding: 5px 10px;
}
.statistics-grid > div:nth-child(8n+1), .statistics-grid > div:nth-child(8n+2), .statistics-grid > div:nth-child(8n+3), .statistics-grid > div:nth-child(8n+4) {
  background-color: #f4f4f4;
}
@media screen and (min-width: 620px) {
  .statistics-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.statistics-names {
  transition: all 400ms ease;
  text-shadow: 0;
}
.statistics-names:hover {
  color: #87172b;
  text-shadow: 0.4px 0.4px 0 #87172b;
  transition: all 400ms ease;
}

.privacyverklaring {
  margin: 100px 0 100px 0;
}

.contactgegevens {
  margin: 20px;
  text-align: center;
  font-weight: 300;
}

.item-title {
  margin-top: 12px;
  font-size: 2.2rem;
  color: #87172b;
  font-weight: 400;
}

ol {
  padding-left: 100px;
}

p:not([class]),
ul:not([class]),
li:not([class]) {
  max-width: 100ch;
  
}
  /*extra css*/
  .footer-logo-container{
      max-width:430px;
  }
  .formsecurity2 label{
      display:none;
  }
/*# sourceMappingURL=app.css.map */