/* Navigation menu styles */
.logo {
  width: 200px;
  padding-top: 5px;
  opacity: 0;
}
@media only screen and (min-width: 767px) {
  .logo {
    width: 240px;
  }
}
@media only screen and (min-width: 970px) {
  .logo {
    padding-top: 10px;
    width: 340px;
  }
}

nav {
  display: flex;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}
nav li {
  display: inline;
  font-size: 1.1rem;
}
nav a {
  text-decoration: none;
  color: #FFF;
  transition: color 0.3s;
  letter-spacing: 1px;
}
nav a:hover {
  color: #ed7102;
}
nav .hamburger-menu {
  display: none;
}
nav .bar {
  width: 25px;
  height: 2px;
  background-color: #FFF;
  margin: 3px 0;
  transition: all 0.3s;
}
nav .close-icon {
  display: none;
  width: 24px;
  height: 24px;
  background-color: transparent;
  position: absolute;
  cursor: pointer;
  right: 1rem;
}
@media only screen and (min-width: 767px) {
  nav .close-icon {
    right: 3rem;
  }
}
nav .close-icon:before, nav .close-icon:after {
  content: "";
  position: absolute;
  width: 24px;
  height: 2px;
  background-color: #FFF;
  top: 50%;
  left: 0;
  transform: translate(0%, -50%);
}
nav .close-icon:before {
  transform: rotate(45deg);
}
nav .close-icon:after {
  transform: rotate(-45deg);
}

/* Responsive Design MOBILE */
@media (max-width: 970px) {
  nav ul {
    flex-direction: column;
    font-size: 1.2rem;
  }
  nav .hamburger-menu {
    display: flex;
    order: 2;
    flex-direction: column;
    position: relative;
    z-index: 10;
    cursor: pointer;
  }
  nav .hamburger-menu.hide {
    display: none;
  }
  nav .close-icon {
    display: none;
    transform: rotate(0deg);
  }
  nav .close-icon.show {
    display: block;
    z-index: 1000;
  }
  nav .menu {
    display: none;
    flex-direction: column;
  }
  nav .menu.active {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    clear: both;
    float: right;
    background-color: #5d3623;
    position: absolute;
    right: 0;
    top: 0;
    padding: 3rem;
    text-align: left;
    animation: slideIn 0.5s ease;
    height: 100vh;
    z-index: 11;
    margin-top: 0;
  }
  nav .menu.active li {
    margin-top: 10px;
    font-size: 1.4rem;
  }
  nav .menu.active li a:hover {
    color: #ed7102;
  }
  nav .menu .slideOut {
    animation: slideOut 1s ease;
  }
  .menu.active + .hamburger-menu .close-icon {
    display: block;
  }
}
.menus {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  order: 1;
  padding-right: 20px;
}
@media only screen and (min-width: 767px) {
  .menus {
    gap: 60px;
  }
}
@media only screen and (min-width: 970px) {
  .menus {
    padding: 0;
  }
}
.menus .language-menu {
  gap: 4px;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.menus .language-menu .language-link {
  font-size: 1rem;
  cursor: pointer;
}
.menus .language-menu .active {
  font-weight: bold;
  color: #ed7102;
}
.menus .language-menu span {
  font-size: 0.8rem;
  margin-top: 3px;
}

.mt-20 {
  margin-top: 20px !important;
}

.scroll-downs {
  align-self: flex-end;
  position: relative;
  width: 100%;
  justify-content: center;
  align-items: center;
  bottom: 60px;
  position: absolute;
  display: none;
}
@media only screen and (min-width: 767px) {
  .scroll-downs {
    display: flex;
  }
}
.scroll-downs .mousey {
  width: 5px;
  padding: 10px 15px;
  height: 35px;
  border: 4px solid #ed7102;
  border-radius: 25px;
  opacity: 0.75;
  box-sizing: content-box;
}
.scroll-downs .mousey .scroller {
  width: 5px;
  height: 15px;
  border-radius: 25%;
  background-color: #FFF;
  animation-name: scroll;
  animation-duration: 2.2s;
  animation-timing-function: cubic-bezier(0.15, 0.41, 0.69, 0.94);
  animation-iteration-count: infinite;
}

@keyframes scroll {
  0% {
    opacity: 0;
  }
  10% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(15px);
    opacity: 0;
  }
}
.fade-in {
  position: relative;
  opacity: 1;
}
@media only screen and (min-width: 767px) {
  .fade-in {
    opacity: 0;
  }
}

.mobile-fade {
  opacity: 0;
}
@media only screen and (min-width: 767px) {
  .mobile-fade {
    opacity: 1;
  }
}

.mobile-hidden {
  display: none;
}
@media only screen and (min-width: 767px) {
  .mobile-hidden {
    display: inline;
  }
}

.modal {
  display: none;
  position: fixed;
  z-index: 10;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.8);
  transition: all 0.3s ease;
}

.modal-content {
  background-color: #5d3623;
  position: relative;
  margin: 15% auto;
  padding: 20px;
  border: 2px solid #FFF;
  border-radius: 30px;
  width: 80%;
  max-width: 600px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  animation: modalopen 0.5s;
}
.modal-content h3 {
  font-size: 2.3rem;
  margin-top: 10px;
}
.modal-content p {
  margin-bottom: 20px;
}
.modal-content .contact-info {
  display: flex;
  gap: 20px;
  margin-top: 5px;
}
.modal-content .contact-info a {
  text-decoration: none;
  color: #ed7102;
}

@keyframes modalopen {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.close {
  color: #FFF;
  position: absolute;
  right: 20px;
  top: 5px;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  text-decoration: none;
  cursor: pointer;
}

.cookie-popup {
  font-family: "nimbus-sans", Arial, Helvetica, sans-serif;
  position: fixed;
  bottom: 0;
  font-size: 1rem;
  width: 100%;
  background-color: #333;
  color: #fff;
  padding: 15px;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  gap: 20px;
}
@media only screen and (min-width: 767px) {
  .cookie-popup {
    flex-direction: row;
  }
}

.cookie-popup p {
  margin: 0;
  padding-right: 10px;
}

.cookie-popup button {
  background-color: #ed7102;
  font-weight: 900;
  font-size: 1rem;
  color: #5d3623;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
}

.cookie-popup button:hover {
  background-color: #5d3623;
  color: #ed7102;
}

/* Reset default styles for cross-browser consistency */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html.sr .load-hidden {
  visibility: hidden;
}

/* Base styles for the website */
body {
  font-family: "Bodoni-URW", "Bodoni MT", "Didot", serif;
  font-weight: 400;
  font-style: normal;
  background-color: #5d3623;
  background: linear-gradient(30deg, rgb(17, 14, 18) 80%, rgb(238, 114, 3) 100%);
  color: #FFF;
  font-size: 1.2rem;
  line-height: 1.2;
}

h1,
h2,
h3,
h4 {
  font-family: "nimbus-sans-condensed", "Arial Narrow", "Impact", sans-serif;
  font-weight: 900;
  font-style: normal;
}

h2 {
  font-size: 2.5rem;
  margin-top: 1rem;
  margin-bottom: 2rem;
}

h3 {
  font-size: 1.5rem;
  color: #ed7102;
}

.container {
  margin: 0 auto;
  max-width: 1300px;
  display: flex;
  position: relative;
  padding: 2.5rem 1.5rem;
}
@media only screen and (min-width: 767px) {
  .container {
    padding: 6rem 5rem;
  }
}

.navbar {
  height: 66px;
  width: 100%;
  z-index: 10;
  position: fixed;
  background-color: none;
  transition: background-color 0.3s ease;
}
@media only screen and (min-width: 767px) {
  .navbar {
    position: fixed;
  }
}
.navbar .container {
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 1rem;
}
@media only screen and (min-width: 767px) {
  .navbar .container {
    padding: 0 5rem;
  }
}

.wrapper {
  overflow: hidden;
}

#intro {
  position: relative;
  width: 100%;
  color: #ed7102;
}
#intro .container {
  flex-direction: column;
  justify-content: center;
  flex-wrap: wrap;
  overflow: hidden;
  min-height: 100vh;
  min-height: 100dvh;
}
#intro .container .big-logo {
  width: 100%;
  padding-bottom: 7%;
}
@media only screen and (min-width: 767px) {
  #intro .container .big-logo {
    width: 55%;
    margin-left: 0;
  }
}
#intro .container h1 {
  z-index: 2;
  height: auto;
  padding-top: 80px;
  font-size: 3rem;
  line-height: 1;
  color: #FFF;
}
#intro .container h1 .orange {
  color: #ed7102;
}
@media only screen and (min-width: 767px) {
  #intro .container h1 {
    font-size: 5rem;
  }
}

#kernwaarden {
  background-color: #FFF;
  color: #5d3623;
  position: relative;
  padding-bottom: 0;
}
#kernwaarden .container {
  flex-direction: column;
  gap: 20px;
}
#kernwaarden .block {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 5px;
}
@media only screen and (min-width: 767px) {
  #kernwaarden .block {
    gap: 30px;
  }
}
#kernwaarden .block h2 {
  font-size: 2.7rem;
  margin: 0;
  text-transform: uppercase;
}
@media only screen and (min-width: 767px) {
  #kernwaarden .block h2 {
    font-size: 4rem;
  }
}
#kernwaarden .block .txt {
  width: 100%;
}
#kernwaarden .block .txt h3 {
  font-size: 2rem;
  margin: 10px 0 5px 0;
  text-transform: uppercase;
}
@media only screen and (min-width: 767px) {
  #kernwaarden .block .txt h3 {
    font-size: 3rem;
    margin: 0 0 10px 0;
  }
}
#kernwaarden .block .txt p {
  font-size: 1.4rem;
  color: #5e5d5d;
  font-weight: 400;
  margin: 0;
}
@media only screen and (min-width: 767px) {
  #kernwaarden .block .txt p {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 1024px) {
  #kernwaarden .block .txt p {
    font-size: 2.2rem;
  }
}
@media only screen and (min-width: 1440px) {
  #kernwaarden .block .txt p {
    font-size: 2.4rem;
  }
}

#dienstverlening {
  background: linear-gradient(30deg, rgb(17, 14, 18) 80%, rgb(238, 114, 3) 100%);
  position: relative;
}
#dienstverlening .container {
  flex-direction: column;
  gap: 20px;
}
#dienstverlening .block {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 5px;
}
@media only screen and (min-width: 767px) {
  #dienstverlening .block {
    gap: 50px;
  }
}
#dienstverlening .block h2 {
  font-size: 2.7rem;
  margin: 0;
  color: #FFF;
  text-transform: uppercase;
}
@media only screen and (min-width: 767px) {
  #dienstverlening .block h2 {
    font-size: 4rem;
  }
}
#dienstverlening .block .txt {
  width: 100%;
}
#dienstverlening .block .txt h3 {
  font-size: 2rem;
  margin: 10px 0 5px 0;
  text-transform: uppercase;
}
@media only screen and (min-width: 767px) {
  #dienstverlening .block .txt h3 {
    font-size: 3rem;
    margin: 0 0 10px 0;
  }
}
#dienstverlening .block .txt p {
  font-size: 1.4rem;
  color: #FFF;
  font-weight: 300;
  margin: 0;
}
@media only screen and (min-width: 767px) {
  #dienstverlening .block .txt p {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 1024px) {
  #dienstverlening .block .txt p {
    font-size: 2.2rem;
  }
}
@media only screen and (min-width: 1440px) {
  #dienstverlening .block .txt p {
    font-size: 2.4rem;
  }
}

#wij-bemiddelen {
  background-color: #FFF;
}
@media only screen and (min-width: 767px) {
  #wij-bemiddelen {
    padding: 2rem 0;
  }
}
#wij-bemiddelen h3 {
  color: #5d3623;
  font-weight: 900;
  font-size: 2rem;
  margin: 0 0 10px 0;
  text-align: left;
  text-transform: uppercase;
}
@media only screen and (min-width: 767px) {
  #wij-bemiddelen h3 {
    min-height: 80px;
    font-size: 3rem;
  }
}
#wij-bemiddelen .container {
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-around;
}
#wij-bemiddelen .container ul.expertises {
  display: flex;
  justify-content: space-around;
  flex-direction: column;
  list-style-type: disc;
  list-style-position: inside;
  flex-wrap: wrap;
  font-weight: 600;
  font-size: 1.3rem;
}
@media only screen and (min-width: 767px) {
  #wij-bemiddelen .container ul.expertises {
    font-size: 2rem;
  }
}
@media only screen and (min-width: 1024px) {
  #wij-bemiddelen .container ul.expertises {
    font-size: 1.5rem;
    flex-direction: row;
    list-style-type: none;
    flex-wrap: nowrap;
    justify-content: space-between;
    font-weight: 600;
  }
}
#wij-bemiddelen .container ul.expertises li {
  color: #a3a3a3;
}

/* Footer Styles */
#contact {
  color: #FFF;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media only screen and (min-width: 767px) {
  #contact {
    margin-top: 2rem;
  }
}
#contact .container {
  flex-direction: column;
  gap: 60px;
  width: 100%;
  height: 100%;
}
#contact .container h4 {
  text-transform: uppercase;
  color: #ed7102;
  font-weight: 900;
  margin-top: 1rem;
  margin-bottom: 0;
  font-size: 2rem;
  line-height: 1.1;
}
#contact .container h4 .white {
  color: #FFF;
}
@media only screen and (min-width: 767px) {
  #contact .container h4 {
    min-height: 80px;
    font-size: 3rem;
  }
}
#contact .container .contactbox {
  width: 100%;
  font-size: 1.3rem;
  color: #FFF;
  gap: 20px;
}
@media only screen and (min-width: 767px) {
  #contact .container .contactbox {
    display: flex;
    flex-direction: row;
    width: 100%;
    flex-wrap: wrap;
    gap: 60px;
    font-size: 1.6rem;
  }
}
@media only screen and (min-width: 1024px) {
  #contact .container .contactbox {
    font-size: 1.6rem;
    gap: 100px;
  }
}
#contact .container .contactbox div {
  display: flex;
  flex-direction: column;
  margin-bottom: 12px;
  /* Ruimte tussen de blokken */
}
#contact .container .contactbox span {
  display: block;
  /* Elk stukje contactinfo op een nieuwe regel */
  margin-bottom: 4px;
}
#contact .container .contactbox a {
  color: #ed7102;
  /* Mooie blauwe linkkleur */
  text-decoration: none;
}
#contact .container .contactbox a:hover {
  text-decoration: underline;
}
#contact .algemene-voorwaarden {
  display: flex;
  justify-content: flex-start;
  gap: 10px;
  font-size: 1rem;
  line-height: 1rem;
  font-weight: bold;
  margin-top: 30px;
}

footer {
  font-size: 1.1rem;
  color: #5d3623;
  background-color: #ed7102;
}
footer .container {
  flex-wrap: wrap;
  gap: 20px;
  font-weight: 400;
  justify-content: space-between;
  font-size: 0.9rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
@media only screen and (min-width: 767px) {
  footer .container {
    gap: 30px;
    flex-direction: row;
    justify-content: space-between;
    font-size: 1.2rem;
  }
}
footer a {
  color: #FFF;
  text-decoration: none;
  font-weight: normal;
}

.algemene-voorwaarden {
  flex-direction: column;
  padding-top: 100px;
  gap: 10px;
}
.algemene-voorwaarden h1 {
  font-size: 2rem;
  padding: 0;
}
.algemene-voorwaarden h2,
.algemene-voorwaarden h3,
.algemene-voorwaarden p,
.algemene-voorwaarden ul,
.algemene-voorwaarden li {
  font-family: "nimbus-sans", Arial, Helvetica, sans-serif;
}
.algemene-voorwaarden h2 {
  font-size: 1.5rem;
  padding: 0;
  margin: 5px 0;
  color: #ed7102;
}
.algemene-voorwaarden h3 {
  color: #FFF;
  font-size: 1.2rem;
  padding: 0;
  margin: 0;
}
.algemene-voorwaarden p,
.algemene-voorwaarden ul,
.algemene-voorwaarden li {
  font-size: 1rem;
  font-weight: 300;
  font-style: normal;
}
.algemene-voorwaarden b {
  font-weight: 700;
}
.algemene-voorwaarden ul {
  margin-left: 20px;
  list-style-position: outside;
}
.algemene-voorwaarden ol {
  list-style-type: none;
}
.algemene-voorwaarden ol ul {
  list-style-type: disc;
}
.algemene-voorwaarden p {
  margin: 0;
}

#error {
  position: relative;
  width: 100%;
  color: #ed7102;
}
#error .container {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  overflow: hidden;
  min-height: 100vh;
  min-height: 100dvh;
}
#error .container .btn {
  color: #FFF;
}
#error .container h1 {
  z-index: 2;
  height: auto;
  padding-top: 80px;
  font-size: 3rem;
  line-height: 1;
  color: #FFF;
}
#error .container h1 .orange {
  color: #ed7102;
}
@media only screen and (min-width: 767px) {
  #error .container h1 {
    font-size: 5rem;
  }
}/*# sourceMappingURL=style.css.map */