@font-face {
    font-family: "Arial Nova";
    src: url("/fonts/Arial-Nova.woff2");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Arial Nova Light";
    src: url("/fonts/Arial-Nova-Light.woff2");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

html {
  height: 100%;
}

body {
  background-color: #fff;
  font-family: "Arial Nova", sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 1rem;
  padding: 0;
  margin: 0;
  height: 100%;
  line-height: 1.25rem;
  color: #343434;
}

body h1 {
  color: #000000;
  font-size: 3rem;
  font-style: normal;
  font-weight: normal;
  line-height: 120%;
  letter-spacing: -0.04rem;
  margin: 0 0 2rem 0;
}
body h2 {
  color: #000000;
  font-size: 2rem;
  font-style: normal;
  font-weight: normal;
  line-height: 120%;
  letter-spacing: -0.03rem;
  margin: 0 0 1.5rem 0;
}
body h3 {
  color: #000000;
  font-size: 1.5rem;
  font-style: normal;
  font-weight: normal;
  line-height: 120%;
  letter-spacing: -0.025rem;
  margin: 0;
}
body h4 {
  color: #000000;
  font-size: 1rem;
  font-style: normal;
  font-weight: normal;
  line-height: 120%;
  letter-spacing: -0.02rem;
  margin: 0;
}
body p {
  margin: 0;
}
body a {
  color: #000000;
}
body blockquote {
  font-family: "Arial Nova Light", sans-serif;
  font-size: 2.5rem;
  font-style: italic;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: -0.025rem;
  margin: 0;
}
body blockquote strong {
  color: #80680A;
  font-size: 2.5rem;
  font-weight: normal;
  font-style: italic;
  line-height: 150%;
  letter-spacing: -0.025rem;
}

footer {
  background-color: #E2E2DD;
  padding-top: calc(8px + 5rem);
  padding-bottom: calc(8px + 5rem);
  padding-left: 4rem;
  padding-right: 4rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}
@media (max-width: 767px) {
  footer {
    padding-top: 2rem;
    padding-bottom: 2rem;
    flex-direction: column;
    align-items: center;
  }
}

footer a, footer span {
  color: #fff;
}

.site-header {
    background-color: #E2E2DD;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
}

.logo {
    height: 70px;
    margin-bottom: 0.5rem;
}

.page {
  display: grid;
  align-items: center;
  height: 100%;
  overflow: auto;
}

.overlay {
  height: 100vh;
  width: 100%;
  max-width: 1920px;
  max-height: 1080px;
  margin: auto;
}

.hero-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding-bottom: calc(8px + 2.5rem);
    padding-top: calc(8px + 2.5rem);
}

.hero-section .text-container {
    max-width: 35vw;
    text-align: left;
}

.hero-section .text-container h2 {
    margin-top: 4rem;
}

@media (max-width: 768px) {
    .hero-section {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 0;
    }

    .hero-section .text-container {
        max-width: 100%;
        text-align: left;
        padding: 1.5rem;
    }

    .hero-section .image-wide-container {
        order: -1;
    }
}

@media (min-width: 900px) {
  .hero-container {
    padding: 5rem 0 5rem 5rem;
  }

  .hero-section {
    padding-left: calc(3vw);
    padding-right: calc(8px + 6vw);
  }
}

.text-container {
  display: grid;
  place-content: center;
}

.logo-container {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-content: flex-start;
}
.logo-container .logo img {
  height: 3rem;
}

.buttons {
  display: flex;
  gap: 0.5rem;
  flex-direction: column;
  width: 100%;
}
@media (min-width: 900px) {
  .buttons {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.button {
  display: flex;
  padding: 0.75rem 1.125rem;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  border-radius: 0.125rem;
}
.button a {
  text-decoration: none;
}

.button-primary {
  background: #343434;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}
.button-primary a {
  color: white;
  white-space: nowrap;
  min-width: auto;
}

.button-secondary {
  border: 1px solid #343434;
  background: #F5F5F5;
}
.button-secondary a {
  color: #343434;
  white-space: nowrap;
  min-width: auto;
}

.address {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}
@media (min-width: 900px) {
  .address {
    margin-top: auto;
  }
}
.address p {
  margin: 0;
}

.image-container {
  display: grid;
  place-content: center;
}
.image-container img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

@media (min-width: 900px) {
  .image-wide-container {
    order: 1;
  }
}
.image-wide-container img {
  object-fit: cover;
  width: 100%;
  height: 20rem;
}
@media (min-width: 900px) {
  .image-wide-container img {
    height: 100%;
  }
}

.margin-bottom {
  margin-bottom: 1rem;
}

.quote-container {
    margin-top: 1rem;
    white-space: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.quote-container blockquote {
    font-family: "Arial Nova Light", cursive;
    font-size: 1.5rem;
    color: #444;
    font-weight: 400;
    margin: 0 auto;
    display: inline-block;
}

.quote-container blockquote strong {
    color: #80680A;
    font-size: 1.5rem;
}

.quote-container blockquote::before {
    color: #d4c278;
    margin-right: 0.25rem;
}

.quote-container blockquote::after {
    color: #d4c278;
    margin-left: 0.25rem;
}

@media (max-width: 768px) {
    .quote-container {
        white-space: normal;
    }
    .quote-container blockquote {
        font-size: 1.25rem;
    }
}

.quote-text {
    display: none;
}
.quote-image {
    display: block;
}

/* Mobiel */
@media (max-width: 768px) {
    .quote-text {
        display: block;   /* tekst-quote verbergen */
    }
    .quote-image {
        display: none;  /* afbeelding-quote tonen */
    }
}

.image-right-section {
    background: #FAFAFA;
    padding-top: calc(8px + 1.5rem);
    padding-left: calc(8px + 6vw);
    padding-right: calc(8px + 6vw);
    padding-bottom: calc(8px + 1.5rem);
    display: grid;
    grid-gap: 5rem;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 27rem), 1fr));

    .image-container {
        display: none;
    }
}
@media (max-width: 767px) {
  .image-right-section {
    padding-top: 2rem;

      .image-container {
            display: block;
      }
  }
}
@media (max-width: 767px) {
  .image-right-section {
    grid-gap: 2rem;
  }
}

.image-left-section {
  padding-left: calc(8px + 6vw);
  padding-right: calc(8px + 6vw);
  padding-top: calc(8px + 2.5rem);
  padding-bottom: calc(8px + 2.5rem);
  display: grid;
  grid-gap: 5rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 27rem), 1fr));
}
@media (max-width: 767px) {
  .image-left-section {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

}
@media (max-width: 767px) {
  .image-left-section {
    grid-gap: 2rem;
  }
}
.image-left-section .text-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.image-left-section .image-container {
  order: 1;
}

.image-left-section .image-container img{
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
}

.text-two-columns-section {
    background: #FAFAFA;
    padding-left: calc(8px + 6vw);
    padding-right: calc(8px + 6vw);
    padding-top: calc(8px + 2.5rem);
    padding-bottom: calc(8px + 2.5rem);
    display: grid;
    grid-gap: 5rem;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 27rem), 1fr));
}

.text-two-columns-section .text-container {
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* garandeert dat de h2 echt aan de bovenkant blijft */
}

.text-two-columns-section ul {
    margin: 0;
}

.text-two-columns-section h2 {
    margin-top: 0; /* voorkomt onverwachte extra ruimte */
}

@media (max-width: 767px) {
  .text-two-columns-section {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .text-two-columns-section {
    grid-gap: 2rem;
  }
}

.contact-section {
  padding-left: calc(8px + 6vw);
  padding-right: calc(8px + 6vw);
  padding-top: calc(8px + 2.5rem);
  padding-bottom: calc(8px + 2.5rem);
  display: grid;
  gap: 2rem;
}
@media (max-width: 767px) {
  .contact-section {
    padding-top: 2rem;
    padding-bottom: 2rem;

      .image-container {
          display: none;
      }
  }
}
@media (min-width: 768px) {
  .contact-section {
    gap: 5rem;
    grid-template-columns: 1fr 2fr;
  }
}
.contact-section .contact-text {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.contact-section .contact-text p {
  margin: 0;
}
.contact-section .contact-icon {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 0.5rem;
  align-self: stretch;
}
.contact-section .image-container {
    justify-self: flex-end;
    max-width: 800px;
}
.contact-section .button {
    max-width: 20vw;
    min-width: 250px;
}

ol li {
    font-weight: bold;

    p {
        font-weight: normal;
    }
}

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