/* 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: "Satoshi", 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: "Satoshi", sans-serif;
  font-size: 1em;
  padding: 0.5em;
  margin-bottom: 1em;
  border: 1px solid #ccc;
  border-radius: 4px;
}

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

.btn-black:hover {
  background: transparent;
}

.btn-animated {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 1.8rem;
  border-radius: 9999px;
  background-color: #4A4A4A;
  color: white;
  border: 1px solid #4A4A4A;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 1rem;
  text-decoration: none;
  overflow: hidden;
  transition: 0.3s ease;
  transition: background 0.3s ease;
  font-family: "Satoshi", sans-serif;
  font-size: 17px;
}
.btn-animated:hover {
  border: 1px solid #4A4A4A;
  color: black;
  transition: 0.3s ease;
  background-color: transparent;
  text-decoration: unset;
}
.btn-animated:hover .btn-circle {
  background-color: #4A4A4A;
  border: 2px solid transparent;
}

.site-header .btn-animated {
	background-color: #4A4A4A; 
	border: 1px solid #4A4A4A;
}

.site-header .btn-animated:hover {
	color: #4A4A4A;
	border: 1px solid #4A4A4A;
	background: transparent;
}

.site-header .btn-animated:hover .btn-circle { 
	background-color: #4A4A4A;
}

.btn-animated .btn-label,
.btn-animated .btn-circle {
  position: relative;
  z-index: 2;
}
.btn-animated .btn-circle {
  display: inline-block;
  width: 10px;
  height: 10px;
  border: 2px solid white;
  border-radius: 50%;
  transition: border-color 0.3s ease;
}

header ul.langswitcher_module {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
  display: inline-block;
  max-width: 95px;
  width: 95px;
}

/* Alleen de current-lang zichtbaar initieel */
ul.langswitcher_module > li.lang-item {
  display: none;
}

ul.langswitcher_module > li.lang-item.current-lang {
  display: inline-block;
  position: relative;
  z-index: 2;
}

/* Toon alles bij hover */
ul.langswitcher_module:hover > li.lang-item {
  display: block;
  max-width: 95px;
}

/* Dropdown-items gepositioneerd door JS */
ul.langswitcher_module > li.lang-item:not(.current-lang) {
  position: absolute;
  left: 0;
  top: 100%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  white-space: nowrap;
  z-index: 1;
}

ul.langswitcher_module:hover > li.lang-item:not(.current-lang) {
  opacity: 1;
  visibility: visible;
}

ul.langswitcher_module > li.lang-item a {
  text-decoration: none;
  padding: 8px 12px;
  display: block;
  color: transparent;
  position: relative;
  background: transparent;
  transition: background 0.3s;
}

ul.langswitcher_module > li.lang-item a:hover {
  background: rgba(0, 0, 0, 0.0784313725);
}

/* Toon taalcode */
ul.langswitcher_module > li.lang-item a::before {
  content: attr(data-langcode);
}

body.home ul.langswitcher_module > li.lang-item a::before {
  color: white;
}

body:not(.home) ul.langswitcher_module > li.lang-item a::before {
  color: black;
}

.header-actions svg {
  width: 13px;
  fill: black;
  position: relative;
  right: 45px;
  bottom: 0px;
}

/* 404 */
#notfound {
  padding: 260px 30px 200px;
  display: flex;
  align-items: center;
  max-width: 90%;
  margin: 0 auto;
}
#notfound h1 {
  font-family: "Boska", serif;
  font-size: 72px;
  font-weight: 400;
  text-align: center;
  line-height: 70px;
  margin-bottom: 20px;
}
#notfound p {
  font-size: 24px;
  margin: 20px 0;
  font-family: "Satoshi", sans-serif;
  text-align: center;
}

#notfound p a {
	color: #28a745 !important;
}

#notfound a {
  font-family: "Satoshi", sans-serif;
}
#notfound a.button.button-hover.radius.button-404 {
  background: black;
  color: white;
  padding: 8px 18px;
  font-size: 20px;
  text-transform: uppercase;
  margin-top: 20px;
  transition: 0.3s;
  border: 1px solid black;
}
#notfound a.button.button-hover.radius.button-404:hover {
  background-color: transparent;
  color: black;
  text-decoration: unset;
}

.not-found-c1.hdb-c-second {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
}

@media only screen and (max-width: 899px) and (min-width: 600px) {
  #notfound h1 {
    font-size: 46px;
    line-height: 48px;
  }
  #notfound p {
    font-size: 22px;
  }
}
@media only screen and (max-width: 599px) {
  #notfound h1 {
    font-size: 36px;
    line-height: 44px;
  }
  #notfound p {
    font-size: 20px;
  }
  #notfound {
    padding: 150px 30px 100px;
  }
  #notfound a {
    font-size: 20px;
  }
  #notfound a.button.button-hover.radius.button-404 {
    font-size: 16px;
  }
	
	.mobile-menu .mobile-nav-link {
		font-size: 18px !important;
	}
	
	
}/*# sourceMappingURL=hdb-styling.css.map */