/* Stijling Helemaal de bom */
html {
  scroll-behavior: smooth;
}

html, body {
  width: 100%;
  overflow-x: hidden;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Ranade", sans-serif;
  line-height: 1.6;
  background-color: var(--background-color);
}

a {
  color: var(--tertiary-color);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

input, textarea, select, button {
  font-family: "Ranade", sans-serif;
  font-size: 1em;
  padding: 0.5em;
  margin-bottom: 1em;
  border: 1px solid #ccc;
  border-radius: 4px;
}

input:focus, textarea:focus, select:focus {
  border-color: var(--secondary-color);
  outline: none;
}

input::-moz-placeholder, textarea::-moz-placeholder {
  color: #999;
}

input::placeholder, textarea::placeholder {
  color: #999;
}

button {
  background-color: var(--tertiary-color);
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
button:hover {
  background-color: var(--tertiary-color);
}

button:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}

ul, ol {
  padding-left: 1.5em;
  margin-bottom: 1em;
}

ul li, ol li {
  margin-bottom: 0.5em;
}

hr {
  border: 0;
  height: 1px;
  background-color: rgba(204, 204, 204, 0.231372549);
}

blockquote {
  padding: 1em;
  margin: 1em 0;
  background-color: #e9e9e9;
  border-left: 5px solid var(--background-color);
  color: var(--tertiary-color);
  font-style: italic;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Ranade", sans-serif;
  margin: 0;
}

/* Desktop */
@media (min-width: 1025px) {
  h1 {
    font-size: 3rem;
  }
  h2 {
    font-size: 2.5rem;
  }
  h3 {
    font-size: 2rem;
  }
  h4 {
    font-size: 1.75rem;
  }
  h5 {
    font-size: 1.5rem;
  }
  h6 {
    font-size: 1.25rem;
  }
  .hdb-container {
    padding: 100px 30px;
  }
  .hdb-flex {
    justify-content: space-between;
    align-items: center;
  }
  .hdb-c-second {
    flex: 50%;
  }
  .hdb-reverse {
    flex-direction: row-reverse;
  }
}
/* Tablet */
@media (min-width: 768px) and (max-width: 1024px) {
  h1 {
    font-size: 2.5rem;
  }
  h2 {
    font-size: 2rem;
  }
  h3 {
    font-size: 1.75rem;
  }
  h4 {
    font-size: 1.5rem;
  }
  h5 {
    font-size: 1.25rem;
  }
  h6 {
    font-size: 1rem;
  }
  .hdb-container {
    padding: 80px 30px;
  }
  .hdb-flex {
    justify-content: space-between;
    align-items: center;
  }
  .hdb-c-second {
    flex: 50%;
  }
  .hdb-reverse {
    flex-direction: row-reverse;
  }
}
/* Mobiel */
@media (max-width: 767px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.75rem;
  }
  h3 {
    font-size: 1.5rem;
  }
  h4 {
    font-size: 1.25rem;
  }
  h5 {
    font-size: 1rem;
  }
  h6 {
    font-size: 0.875rem;
  }
  .hdb-container {
    padding: 70px 30px;
  }
  .hdb-flex {
    justify-content: space-between;
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }
  .hdb-c-second {
    flex: 100%;
  }
  .hdb-reverse {
    flex-direction: column-reverse;
  }
  .hdb-column h2 {
    margin-bottom: 10px;
  }
  .credit-footer .hdb-flex {
    gap: unset;
  }
}
/* Mobiel Landscape */
@media (max-width: 767px) and (orientation: landscape) {
  h1 {
    font-size: 1.75rem;
  }
  h2 {
    font-size: 1.5rem;
  }
  h3 {
    font-size: 1.25rem;
  }
  h4 {
    font-size: 1rem;
  }
  h5 {
    font-size: 0.875rem;
  }
  h6 {
    font-size: 0.75rem;
  }
}
/* Hide ReCaptcha & cookie*/
.grecaptcha-badge {
  display: none !important;
}

/* Scroll to top */
.scroll-top-top svg {
  width: 35px;
  height: 35px;
  background: #0C6031;
  fill: white;
  border-radius: 50%;
  padding: 8px;
}

.scroll-top-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 100;
}

.scroll-top-top svg {
  transition: 0.3s;
}

.informatie-404 a:hover {
  text-decoration: underline;
}

.scroll-top-top svg:hover {
  transition: 0.3s;
  background-color: white;
  fill: #0C6031;
}

/* Maximale breedte */
.hdb-container {
  max-width: var(--hdb-max-width);
  width: 100%;
  margin: 0 auto;
}

.hdb-flex {
  display: flex;
}

footer, .credit-footer {
  background-color: #E9E7E2;
}

.credit-footer-inner {
  padding: 30px 30px 15px;
  max-width: 1400px;
  display: flex;
}

.credit-footer-inner-content {
  padding: 10px 0 30px;
  gap: 20px;
}

.credit-footer-inner-content-c1, .credit-footer-inner a, .credit-footer-inner span {
  color: black;
  font-size: 12px;
  font-family: "Ranade", sans-serif;
  font-weight: 300;
}

.hdb-button {
  background-color: var(--secondary-color);
  color: white;
  font-family: "Ranade", sans-serif;
  padding: 12px 18px;
  display: inline-block;
}

.hdb-button:hover {
  text-decoration: unset;
}

.hdb-button-hover {
  border: 1px solid var(--secondary-color);
  transition: 0.3s;
}

.hdb-button-hover:hover {
  background-color: transparent;
  color: var(--secondary-color);
}

.hdb-radius {
  border-radius: 20px;
}

img {
  width: 100%;
}

.hdb-column {
  flex: 100%;
}

.hdb-left {
  justify-content: flex-start;
  text-align: left;
}

.hdb-center {
  text-align: center;
  justify-content: center;
}

.hdb-right {
  justify-content: flex-end;
  text-align: right;
}

/* Informatie pagina */
.hdb-informatie-page p {
  font-size: 20px;
  line-height: 30px;
}

.hdb-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (max-width: 767px) {
  .hdb-informatie-page p {
    font-size: 18px;
    line-height: 25px;
  }
}
/* Header */
.hdb-header {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 60px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#menu-hoofdmenu {
  list-style: none;
  /* display: flex; */
  gap: 20px;
  justify-content: flex-end;
  margin: 0;
}

#menu-hoofdmenu li a {
  color: white;
}

.hdb-header .hdb-column img {
  max-width: 200px;
  height: unset;
}

/* Sub menu */
.hdb-menu-container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.hdb-menu-toggle {
  display: none;
}

.hdb-submenu {
  position: fixed;
  top: 0;
  right: -100%;
  max-width: 900px; 
	width: 100%;
  height: 100%;
  background-color: #0C6031;
  color: white;
  z-index: 1000;
  transition: right 0.5s ease;
  padding-top: 50px;
}

#hdb-hamburger-icon, #hdb-close-icon {
  fill: var(--tertiary-color);
}

.hdb-submenu img {
  padding: 20px;
}

.hdb-submenu.open {
  right: 0;
  padding: 60px;
}

.hdb-submenu-content {
  margin: 50px 20px;
}

.hdb-submenu #hdb-close-icon {
  position: absolute;
  top: 66px;
  right: 23px;
  cursor: pointer;
}

.hdb-submenu-list {
  list-style: none;
  padding: 0;
  text-align: left;
}

.hdb-submenu-list li {
  margin: 20px 0;
}

body.hdb-no-scroll {
  overflow-y: hidden;
  height: 100vh;
}

.hdb-submenu-list li a {
  color: white;
}

.button-and-hamburger {
  display: flex;
  justify-content: flex-end;
  gap: 50px;
  align-items: center;
}

#hdb-hamburger-icon {
  fill: #0C6031;
}

.button-header {
  background: transparent;
  color: #0C6031;
  border: 1px solid #0C6031;
  padding: 6px 24px 6px;
  border-radius: 10px;
  transition: 0.3s;
}

.button-header:hover {
  background-color: #0C6031;
  color: white;
  transition: 0.3s;
  text-decoration: unset;
}

.hdb-menu-toggle.hdb-right {
  height: 20px;
}

/* Media Query voor mobiele weergave */
.hdb-menu-toggle {
  display: block;
  cursor: pointer;
}

/* Footer */
.hdb-footer-list {
  list-style: none;
  padding-left: unset;
}

.hdb-footer-list li a {
  color: white;
}

/* Image */
.hdb-box-shadow {
  box-shadow: 4px 5px 11px 2px rgba(0, 0, 0, 0.2509803922);
}

/* Sterke en Emfasiserende tekst */
strong {
  font-weight: bold; /* Vetgedrukt */
}

em {
  font-style: italic; /* Cursief */
}

/* Kleine tekst */
small {
  font-size: 0.8em; /* Kleinere tekst */
}

/* Gemarkeerde tekst */
mark {
  background-color: yellow; /* Achtergrondkleur voor gemarkeerde tekst */
}

/* Ongesorteerde lijst */
ul {
  list-style-type: disc; /* Punten */
  padding-left: 20px; /* Ruimte aan de linkerkant */
}

/* Gesorteerde lijst */
ol {
  list-style-type: decimal; /* Genummerde lijst */
  padding-left: 20px; /* Ruimte aan de linkerkant */
}

/* Lijstitems */
li {
  margin-bottom: 0.5em; /* Ruimte onder lijstitems */
}

/* Tabel */
table {
  width: 100%; /* Volledige breedte */
  border-collapse: collapse; /* Geen ruimte tussen cellen */
  margin-bottom: 1em; /* Ruimte onder de tabel */
}

/* Tabelkop */
th {
  background-color: #f2f2f2; /* Achtergrondkleur voor tabelkop */
  text-align: left; /* Tekst links uitlijnen */
  padding: 8px; /* Ruimte binnen de cellen */
}

/* Tabelcellen */
td {
  border: 1px solid #ddd; /* Grijze rand */
  padding: 8px; /* Ruimte binnen de cellen */
}

/* Hover effect voor rijen */
tr:hover {
  background-color: #f1f1f1; /* Achtergrondkleur bij hover */
}

/* Off canvas menu */
.LinkedIn-offcanvas svg, .Facebook-offcanvas svg, .Instagram-offcanvas svg {
  max-width: 45px;
  width: 45px;
  height: 45px;
  background: white;
  padding: 7px;
  fill: #0C6031;
  border-radius: 10px;
}

.adres-offcanvas h4 {
  font-size: 20px;
}

.hdb-submenu-list ul {
  padding-left: unset;
  list-style: none;
}

.contact-offcanvas {
  display: flex;
  flex-direction: column;
  margin: 30px 0;
}

.tel-offcanvas,
.mail-offcanvas {
  font-size: 20px;
  color: white;
}
.tel-offcanvas:hover,
.mail-offcanvas:hover {
  text-decoration: underline;
}

.contact-offcanvas-title,
.socialMedia-offcanvas-title {
  font-size: 20px;
}

.adres-offcanvas h4 {
  font-weight: 300;
}

.titel-adres-offcanvas {
  font-weight: bold !important;
}

.socialMedia-offcanvas-title {
  margin-bottom: 10px;
}

.button-header-offcanvas {
  background-color: white;
  padding: 8px 32px;
  border-radius: 5px;
  color: #0C6031;
  font-size: 16px;
  font-weight: 800;
  transition: 0.3s;
  border: 1px solid white;
	position: relative;
	top: 10px;
}
.button-header-offcanvas:hover {
  background-color: transparent;
  transition: 0.3s;
  text-decoration: unset;
  color: white;
}

#hdb-close-icon {
  fill: white;
}

.hdb-submenu-content {
  padding: 30px 0;
  margin: 20px 0;
}

.hdb-submenu-list a {
  font-size: 20px;
  font-weight: 800;
}
.hdb-submenu-list a:hover {
  text-decoration: underline;
}

@media (max-width: 830px) {
  .hdb-submenu.open {
    width: 100%;
    max-width: 100%;
  }
}
@media (max-width: 600px) {
  .button-and-hamburger {
	    justify-content: space-evenly;
    gap: 15px;
  }
  .button-header {
    font-size: 14px;
    padding: 6px 14px 6px;
  }
	
	.hdb-submenu-content {
		padding: 10px 0;
    	margin: 30px 0 0;
	}
	
	.hdb-submenu-list li {
		margin: 10px 0;
	}
}
@media (max-width: 440px) {
  .hdb-submenu.open {
    width: 100%;
    max-width: 100%;
    padding: 60px 30px;
  }
  .hdb-header {
    padding: 60px 15px;
  }
  .button-and-hamburger {
    gap: 10px;
  }
  .button-header {
    padding: 6px 8px;
    white-space: pre;
  }
  .hdb-header .hdb-column img {
    padding-right: 20px;
  }
}
#notfound {
  max-width: 1400px;
  padding: 30px 30px 100px;
  margin: 0 auto;
}
#notfound .not-found-c1 {
  max-width: 800px;
}

.informatie-404 {
  margin: 30px 0;
}
.informatie-404 a {
  color: #0C6031;
  font-weight: 800;
}
.informatie-404 a:hover {
  text-decoration: underline;
}

.informatie-404 p {
  font-size: 20px;
	margin-bottom: 50px;
}

.titel-niks {
  line-height: 50px;
  font-size: 42px;
  color: #0C6031;
}

a.button.button-hover.radius.button-404 {
  background-color: #0C6031;
  padding: 12px 16px;
  border: 1px solid #0C6031;
  color: white;
  font-size: 17px;
  text-decoration: unset;
  border-radius: 5px;
  transition: 0.3s;
}
a.button.button-hover.radius.button-404:hover {
  background-color: transparent;
  color: #0C6031;
  transition: 0.3s;
  text-decoration: unset;
}

.afbeelding-home-slider {
	height: unset;
}

@media screen and (max-width: 650px) {
  .titel-niks {
        font-size: 26px;
        line-height: 32px;
  }
}/*# sourceMappingURL=hdb-styling.css.map */