/* Color */
/* 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: "Saira Condensed", sans-serif;
  line-height: 1.6;
  background-color: var(--background-color);
}

a {
  color: #0C1618;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

input, textarea, select, button {
  font-family: "Saira Condensed", 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: #FF6C02;
  outline: none;
}

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

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

button {
  background-color: #0C1618;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
button:hover {
  background-color: #0C1618;
}

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: #0C1618;
  font-style: italic;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Saira Condensed", 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: #033372;
  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: #033372;
}

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

.hdb-flex {
  display: flex;
}

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

.credit-footer-inner {
  padding: 0 30px;
}

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

.credit-footer-inner-content-c1, .credit-footer-inner a, .credit-footer-inner span {
  color: white;
  font-size: 12px;
  font-family: "Roboto", sans-serif;
}

.hdb-button {
  background-color: #FF6C02;
  color: white;
  font-family: "Saira Condensed", sans-serif;
  padding: 12px 18px;
  display: inline-block;
}

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

.hdb-button-hover {
  border: 1px solid #FF6C02;
  transition: 0.3s;
}

.hdb-button-hover:hover {
  background-color: transparent;
  color: #FF6C02;
}

.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 */
header {
  background-color: transparent;
}

.hdb-header {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 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;
}

.hdb-header li a {
  font-family: "Bitter", serif;
  font-size: 16px;
  color: #033372;
  text-transform: uppercase;
  font-weight: 500;
}


.custom-logo-link {
	    position: absolute;
    z-index: 3;
}
.hdb-header .hdb-column img {
  max-width: 310px;
  height: unset;
  background-color: white;
	position: relative;
    top: -15px;
    z-index: 3;
    background: white;
    box-shadow: 0px 35px 23px 0px rgba(0, 0, 0, 0.2509803922);
    padding: 15px;
	margin-left: 10px;
}

@media (max-width: 1050px) and (min-width: 700px)  { 
	.hdb-header .hdb-column img {
		max-width: 240px;
	}
}

@media (max-width: 500px) {
	.hdb-header .hdb-column img {
		max-width: 200px;
	}
	
	#hdb-hamburger-icon {
		position: relative;
		top: 20px;
	}
}

.hdb-submenu .custom-logo-link {
	position: unset !important;
	
}


.hdb-submenu .custom-logo-link img {
	box-shadow: unset !important;
}

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

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

.hdb-menu ul {
  list-style: none;
  display: flex;
  gap: 10px;
  margin-bottom: 0;
  justify-content: flex-end;
}

.hdb-submenu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%; /* Submenu nu 50% breed */
  height: 100%;
  background-color: #033372;
  color: white;
  z-index: 1000;
  transition: right 0.5s ease;
  padding-top: 50px;
}

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

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

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

.hdb-submenu.open {
  right: 0;
}

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

.hdb-submenu svg {
  position: absolute;
  top: 35px;
  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;
}

/* Media Query voor mobiele weergave */
@media (max-width: 768px) {
  .hdb-menu-container {
    display: none;
  }
  .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 */
}

a.btn {
  padding: 14px 40px;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  display: inline-block;
  line-height: 100%;
}
a.btn.btn-primary {
  background-color: #FF6C02;
  color: white;
  transition: 0.3s;
  text-decoration: unset;
  border: 1px solid #FF6C02;
}
a.btn.btn-primary:hover {
  transition: 0.3s;
  text-decoration: unset;
  background-color: transparent;
  color: #FF6C02;
}
a.btn.btn-secondary {
  background-color: white;
  color: #033372;
  transition: 0.3s;
  text-decoration: unset;
  border: 1px solid white;
}
a.btn.btn-secondary:hover {
  transition: 0.3s;
  text-decoration: unset;
  background-color: transparent;
  color: white;
}

.footer-inner {
  gap: 5%;
  align-items: flex-start;
}

.hdb-column-1 {
  background-color: white;
  padding: 40px;
}
.hdb-column-1 img {
  background-color: white;
  -o-object-fit: contain;
     object-fit: contain;
	height: 100px;
}

.hdb-column-2 .hdb-menu-container {
  justify-content: flex-start;
}

.titel_boven_menu_footer,
.titel_boven_adres_footer,
.titel_contactgegevens_footer {
  color: white;
  font-family: "Saira Condensed", sans-serif;
  font-weight: 600;
  font-size: 22px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.hdb-column-2 #menu-hoofdmenu-2 {
  list-style: none;
  padding-left: 0;
}

.hdb-column {
  flex: 25%;
  width: 100%;
}
.hdb-column a {
  color: white;
  font-size: 20px;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  line-height: 30px;
}

.hdb-column-3 p {
  color: white;
  font-size: 20px;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  line-height: 30px;
  white-space: pre;
}

@media only screen and (max-width: 1240px) {
  .footer-inner {
    flex-wrap: wrap;
  }
  .footer-inner {
    gap: 50px;
  }
  .footer-inner .hdb-column {
    flex: 40%;
    width: 40%;
  }
  .footer-inner .hdb-column .hdb-menu-container {
    display: unset !important;
  }
}
@media only screen and (max-width: 700px) {
  .footer-inner .hdb-column {
    width: 100%;
  }
  .hdb-column-4 {
    display: flex;
    flex-direction: column;
  }
}
.hdb-column-4 svg {
  width: 14px;
  fill: white;
}

.footer-inner {
  display: flex;
}

.hdb-column a {
  display: flex;
  gap: 10px;
}

.footer-inner {
  padding: 80px 0;
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
}

.footer_wrapper {
  display: flex;
  width: 100%;
  max-width: 1000px;
  margin-right: auto;
  gap: 5%;
  padding: 0 30px;
}

.hdb-column-1 {
  margin: 30px;
}

.titel-niks {
	line-height: 40px;
    margin-bottom: 40px;
}

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

/* Basisstructuur submenu verbergen */
.hdb-menu li ul.sub-menu {
    display: none;
    position: absolute;
    background-color: #fff;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    margin: 0;
    padding: 0.5rem 0;
    list-style: none;
    z-index: 999;
    min-width: 200px;
}

/* Toon submenu bij hover op parent */
.hdb-menu li:hover > ul.sub-menu {
    display: block;
}

/* Zorg dat de parent li goed gepositioneerd is */
.hdb-menu li {
    position: relative;
}

/* Styling submenu items */
.hdb-menu li ul.sub-menu li {
    padding: 0;
}

.hdb-menu li ul.sub-menu li a {
    display: block;
    padding: 0.75rem 1rem;
    color: #333;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s ease-in-out;
}

/* Hover effect submenu items */
.hdb-menu li ul.sub-menu li a:hover {
    background-color: #f5f5f5;
    color: #000;
}

/* Optioneel: pijltje bij parent items die submenu hebben */
.hdb-menu li.menu-item-has-children > a::after {
	position: relative;
    content: " ▼";
    font-size: 1em;
    margin-left: -5px;
    bottom: 1px;
}

.footer_wrapper .hdb-menu li.menu-item-has-children > a::after {
	font-size: 0.5em;
    position: relative;
    right: 1px;
    top: 2px;
}

/* Submenu in canvas-menu standaard verborgen */
.hdb-submenu-list .sub-menu {
    display: none;
    padding-left: 1rem;
    border-left: 2px solid #eee;
    margin-top: 0.5rem;
}

.hdb-submenu-list .menu-item-has-children.open > .sub-menu {
    display: block;
}

.hdb-submenu-list .sub-menu {
	list-style: unset;
}


@media only screen and (max-width: 870px) {
  .footer_wrapper {
    flex-wrap: wrap;
    gap: 50px;
  }
}

.menu-item-has-children {
  color: inherit;           /* Verandert tekstkleur niet */
  text-decoration: none;    /* Geen onderstreping bij hover */
  cursor: default;          /* Cursor als gewone tekst */
}

.no-click-parent > a:hover {
	text-decoration: unset;
}

@media (max-width: 850px) and (orientation: landscape) {
	header .hdb-submenu {
		padding-top: 0px !important;
	}
	
	header .hdb-submenu-list li {
		margin: 15px 0;
	}
	
	header .hdb-submenu-content {
		margin-top: 0;
		margin-bottom: 0;
	}
	
	header .hdb-submenu img {
		padding: 10px;
	}
}

.hdb-menu li ul.sub-menu {
	background-color: #033372;
	padding-top: unset !important;
	padding-bottom: unset !important;
}

.hdb-menu li ul.sub-menu li {
	margin-bottom: 0px;
}

.hdb-menu li ul.sub-menu li a {
	color: white !important;
	padding: 10px 1rem !important;
}

.hdb-menu li ul.sub-menu li a:hover {
	color: white !important;
	background-color: #FF6C02;
}


/*# sourceMappingURL=hdb-styling.css.map */