@charset "UTF-8";
/* CSS Reset */
@import url("https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,400;0,700;1,400;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Manrope:ital,wght@0,400;0,700;1,400;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Outfit:ital,wght@0,400;0,700;1,400;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,400;0,700;1,400;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Sora:ital,wght@0,400;0,700;1,400;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,400;0,700;1,400;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,400;0,700;1,400;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap");
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset voor oudere browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

/* Lijststijlen resetten */
/* Quotes resetten */
blockquote, q {
  quotes: none;
}

blockquote::before, blockquote::after,
q::before, q::after {
  content: "";
  content: none;
}

/* Tabellen reset */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

.ckeditor-content ol,
.ckeditor-content ul {
  list-style: initial;
  margin-left: initial;
}

.dropdown-toggle::after {
  display: none !important;
}

/* Hamburger Button aanpassen */
.navbar-toggler {
  border: none;
  outline: none;
  box-shadow: none;
}

/* Overschrijf de .navbar-nav */
.navbar-nav {
  font-family: "Noto Sans", sans-serif;
  background-color: #f8f9fa !important;
  padding: 0;
}

/* Overschrijf de .nav-item */
.nav-item {
  margin-right: 1rem;
}
.nav-item a {
  color: #252857;
  text-decoration: none;
  transition: color 0.3s;
}
.nav-item a:hover {
  color: #87ad12;
}

/* Overschrijf de actieve link */
.nav-item.active a,
.nav-item .active {
  font-weight: bold;
  border-bottom: 2px solid #87ad12;
}

/* Voor dropdowns, als dat nodig is */
.dropdown-menu {
  background-color: #fff;
  border: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.dropdown-menu a {
  color: #252857;
  padding: 0.5rem 1rem;
}
.dropdown-menu a:hover {
  background-color: #f1f1f1;
}

.dropdown:hover > .dropdown-menu {
  display: block;
  z-index: 10000;
  transition: all 0.2s ease-in-out;
}

.dropdown-menu {
  display: none; /* Zorgt ervoor dat het standaard verborgen is */
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  padding: 0.5rem 0;
  margin: 0.125rem 0 0;
  background-color: #fff; /* Of gebruik je Bootstrap variabele, bv. $body-bg */
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
}

/* Toon dropdown als de ouder hover staat of als de 'show' class aanwezig is */
.dropdown:hover .dropdown-menu,
.dropdown.show .dropdown-menu {
  display: block;
}

@media (max-width: 767.98px) {
  /* Definieer een keyframe-animatie die de items van links naar rechts laat schuiven */
  @keyframes slideIn {
    from {
      transform: translateX(-20px);
      opacity: 0;
    }
    to {
      transform: translateX(0);
      opacity: 1;
    }
  }
  /* Hoofdmenu-items: basisinstellingen zonder animatie */
  .offcanvas-body ul.list-unstyled > li.nav-item {
    opacity: 0;
    margin-bottom: 0.8rem;
    padding: 6px;
    padding-left: 10px;
    background-color: rgba(135, 173, 18, 0.1);
  }
  /* Animatie toepassen wanneer .animate aanwezig is */
  .offcanvas-body ul.list-unstyled > li.nav-item.animate {
    animation: slideIn 0.4s ease-out forwards;
  }
  /* Geef een incrementele delay per item zodat ze één voor één verschijnen */
  .offcanvas-body ul.list-unstyled > li.nav-item.animate:nth-child(1) {
    animation-delay: 0s;
  }
  .offcanvas-body ul.list-unstyled > li.nav-item.animate:nth-child(2) {
    animation-delay: 0.1s;
  }
  .offcanvas-body ul.list-unstyled > li.nav-item.animate:nth-child(3) {
    animation-delay: 0.2s;
  }
  .offcanvas-body ul.list-unstyled > li.nav-item.animate:nth-child(4) {
    animation-delay: 0.3s;
  }
  .offcanvas-body ul.list-unstyled > li.nav-item.animate:nth-child(5) {
    animation-delay: 0.4s;
  }
  .offcanvas-body ul.list-unstyled > li.nav-item.animate:nth-child(6) {
    animation-delay: 0.5s;
  }
  .offcanvas-body ul.list-unstyled > li.nav-item.animate:nth-child(7) {
    animation-delay: 0.6s;
  }
  .offcanvas-body ul.list-unstyled > li.nav-item.animate:nth-child(8) {
    animation-delay: 0.7s;
  }
  .offcanvas-body ul.list-unstyled > li.nav-item.animate:nth-child(9) {
    animation-delay: 0.8s;
  }
  .offcanvas-body ul.list-unstyled > li.nav-item.animate:nth-child(10) {
    animation-delay: 0.9s;
  }
  .offcanvas-body ul.list-unstyled > li.nav-item:last-child {
    margin-bottom: 0;
  }
  /* Submenu-items (optioneel: je kunt hier ook een animatie toevoegen) */
  .offcanvas-body ul.list-unstyled .sub-menu li.nav-item {
    margin-bottom: 0.8rem;
    background-color: transparent;
    padding: 6px;
    padding-left: 10px;
  }
  .offcanvas-body ul.list-unstyled .sub-menu li.nav-item:first-child {
    margin-top: 20px;
  }
  .offcanvas-body ul.list-unstyled .sub-menu li.nav-item:last-child {
    margin-bottom: 20px;
  }
  /* Zorgt ervoor dat het actieve item op mobiel geen border-bottom heeft */
  .offcanvas-body .nav-item.active a,
  .offcanvas-body .nav-item .active {
    border-bottom: none;
  }
}
.header {
  position: relative;
  overflow: hidden;
}
.header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.header-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%; /* Zorgt dat de container de volledige breedte gebruikt */
  padding: 0 20px; /* Eventuele padding zodat de tekst niet tot de rand loopt */
  z-index: 2; /* Zorgt ervoor dat de tekst voor de overlay komt */
}

.header-title {
  font-family: "Outfit", sans-serif;
  font-size: clamp(1rem, 6vw, 3rem);
  font-weight: 400;
  line-height: 1.5rem;
  padding-bottom: 0.7em; /* Past zich automatisch aan de tekstgrootte aan */
}

.header-subtitle {
  font-family: "Outfit", sans-serif;
  font-size: clamp(1rem, 3vw, 1.5rem);
  font-weight: 400;
  line-height: 1.5rem;
}

footer {
  font-size: clamp(0.8rem, 3vw, 1rem) !important;
  color: white;
}
footer a {
  color: white;
  text-decoration: underline;
  transition: color 0.3s ease;
}
footer a:hover {
  color: #010101;
}
footer h1, footer h2, footer h3 {
  font-size: clamp(1rem, 3vw, 1.5rem) !important;
  font-weight: 400;
}
footer .copyright-regel {
  color: #969696;
}
footer .copyright-regel a {
  color: #87ad12;
  text-decoration: underline;
  transition: color 0.3s ease;
}
footer .copyright-regel a:hover {
  color: #010101;
}

html, body {
  font-family: "Open Sans", sans-serif;
  font-size: clamp(0.8rem, 4vw, 1rem);
  font-weight: 400;
  line-height: 1.6;
  color: #252857;
  background-color: rgba(89, 116, 8, 0.1);
}

h1, h2, h3, h4, h5 {
  font-family: "Outfit", sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.3;
}

h1 {
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(1.1rem, 3.5vw, 1.5rem);
  font-weight: 700;
  margin-bottom: 0.7rem;
}

h3 {
  font-size: clamp(1.1rem, 3.5vw, 1.5rem);
  font-weight: 700;
  margin-bottom: 0.7rem;
}

h4 {
  font-size: clamp(1.1rem, 3.5vw, 1.5rem);
  font-weight: 700;
  margin-bottom: 0.7rem;
}

h5 {
  font-size: clamp(1.1rem, 3.5vw, 1.5rem);
  font-weight: 700;
  margin-bottom: 0.6rem;
}

b, strong {
  font-weight: bold;
}

i, em {
  font-style: italic;
}

.navbar-toggler {
  border: none;
  outline: none;
  background: transparent;
  padding: 0.25rem 0.75rem;
}

.toggler-icon {
  display: block;
  position: relative;
  width: 24px;
  height: 21px;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.toggler-icon .line {
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  background: #87ad12;
  transition: transform 0.3s ease, top 0.3s ease, opacity 0.3s ease;
}

/* Positioneer de lijnen als een hamburger */
.toggler-icon .line.line1 {
  top: 0;
}

.toggler-icon .line.line2 {
  top: 9px;
}

.toggler-icon .line.line3 {
  top: 18px;
}

/* Wanneer de knop open staat (class .open toegevoegd) */
.navbar-toggler.open .toggler-icon .line.line1 {
  top: 9px;
  transform: rotate(45deg);
}

.navbar-toggler.open .toggler-icon .line.line2 {
  opacity: 0;
}

.navbar-toggler.open .toggler-icon .line.line3 {
  top: 9px;
  transform: rotate(-45deg);
}

.btn1 {
  background-color: #87ad12;
  border: none;
  color: white;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 0rem;
  transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}
.btn1:hover {
  background-color: #7d7d7d;
  transform: scale(1.05);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.btn1small {
  background-color: #87ad12;
  border: none;
  color: white;
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  cursor: pointer;
  border-radius: 0rem;
  transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}
.btn1small:hover {
  background-color: #7d7d7d;
  transform: scale(1.05);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.tekstkleur {
  color: #87ad12;
}

.banner-card {
  position: relative;
  height: 0;
  padding-top: 50%;
  overflow: hidden;
  border: 0;
  border-radius: 0;
}
.banner-card .banner-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}
.banner-card .banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #fff;
  background: rgba(0, 0, 0, 0.4);
}
.banner-card .banner-icon {
  margin: 0;
}
.banner-card .banner-title {
  margin-bottom: 0.5rem;
}
.banner-card .banner-text {
  margin: 0;
}
.banner-card .btn1 {
  margin: 0;
}

.blog h1, .blog h2, .blog h3, .blog h4, .blog h5 {
  margin: 0;
  padding: 0;
  line-height: 1.3;
  margin-bottom: 10px;
  margin-top: 30px;
}

#return-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #759eb3;
  width: 40px;
  height: 40px;
  display: block;
  text-decoration: none;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
  display: none;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  z-index: 9999;
}

#return-to-top i {
  color: #fff;
  margin: 0;
  position: relative;
  left: 7px;
  top: 0px;
  font-size: 26px;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

#return-to-top:hover {
  background-color: rgba(15, 116, 163, 0.8);
}

#return-to-top:hover i {
  color: #fff;
  top: -5px;
}

#cookie-banner {
  position: fixed;
  bottom: 0; /* Initiele staat buiten het zichtbare gebied */
  left: 0;
  width: 100%;
  padding: 15px;
  background-color: #87ad12;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 9999999;
  font-size: 14px;
  transition: bottom 0.5s ease-in-out;
}

#cookie-banner.show {
  bottom: 0; /* Het triggeren van de animatie naar boven */
}

#cookie-banner a {
  color: white;
  text-decoration: underline;
  margin-right: 20px;
}

#accept-cookies {
  background-color: #969696;
  color: white;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 0;
}

body {
  margin: 0; /* Verwijder de margin */
  padding-bottom: 60px; /* Voeg padding toe aan de onderkant in plaats van margin */
}/*# sourceMappingURL=eigen.css.map */