body {
  font-family: "Poppins", sans-serif;
  color: #132F28;
  font-size: 20px;
  font-weight: 400;
}

.color-highlight,
.highlight {
  color: #C6E758;
}

.color-primary {
  color: #132F28;
}

.bg-highlight {
  background-color: #C6E758;
}

.bg-primary {
  background-color: #132F28;
}

.bg-secondary {
  background-color: #F3F5F5;
}

.hamburger {
  width: 38px;
  flex-direction: column;
  gap: 10px;
}
.hamburger div {
  background: #fff;
  height: 2px;
  width: 100%;
}

body {
  margin: 0;
  font-family: sans-serif;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  /* voorkomt klikken als verborgen */
  transition: opacity 0.3s ease;
  z-index: 9;
}

/* Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: -300px;
  /* verborgen buiten scherm */
  width: 300px;
  height: 100%;
  background: #132F28;
  color: #fff;
  padding: 20px;
  transition: left 0.3s ease;
  z-index: 10;
}

.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu li {
  margin-bottom: 20px;
}

.mobile-menu a {
  color: #fff;
  text-decoration: none;
}

/* Actieve staat */
.mobile-menu.active {
  left: 0;
}

.overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.main-nav {
  width: 100%;
}
.main-nav > ul {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 5%;
}
.main-nav a {
  color: #fff;
  text-decoration: none;
  padding: 10px;
  justify-content: space-evenly;
  transition: background-color 0.3s ease;
}
.main-nav a:hover {
  text-decoration: underline;
}

.main-nav {
  position: relative;
}
.main-nav .sub-menu {
  position: absolute;
  top: 100%;
  padding: 20px;
  background-color: rgba(65, 88, 83, 0.95);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  z-index: 50;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
}
.main-nav .sub-menu.submenu-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.main-nav .current-menu-item a {
  color: #C6E758;
}

.mobile-menu {
  text-align: center;
}
.mobile-menu .current-menu-item a {
  color: #C6E758;
}
.mobile-menu .sub-menu {
  margin-bottom: 0 !important;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: all 0.3s ease;
  background-color: rgba(65, 88, 83, 0.95);
  padding: 10px;
}
.mobile-menu .sub-menu.submenu-active {
  max-height: 500px;
  opacity: 1;
}

.button {
  padding: 15px;
  border-radius: 9999px;
  text-decoration: none;
  display: inline-flex;
  gap: 10px;
  font-size: 17px;
  align-items: center;
  font-weight: 500;
  cursor: pointer;
}
@media (min-width: 768px) {
  .button {
    padding: 10px 24px;
    gap: 15px;
    font-size: 20px;
  }
}
.button.button-primary {
  background-color: #132F28;
  color: #fff;
}
.button.button-primary::after {
  content: "";
  display: inline-block;
  width: 29px;
  height: 29px;
  border: 1px solid #C6E758;
  border-radius: 50px;
  background: url("../../assets/images/button-arrow-highlight.svg") no-repeat center/contain transparent;
}
.button.button-primary:hover {
  background-color: #040b09;
}
.button.button-secondary {
  background-color: #C6E758;
  color: #132F28;
  border: 1px solid #C6E758;
}
.button.button-secondary::after {
  content: "";
  display: inline-block;
  width: 29px;
  height: 29px;
  margin-left: 10px;
  border: 1px solid #132F28;
  border-radius: 50px;
  background: url("../../assets/images/button-arrow.svg") no-repeat center/contain #fff;
}
.button.button-secondary:hover {
  color: #fff;
  background-color: #132F28;
}
.button.button-secondary-inv {
  background-color: transparent;
  color: #fff;
  border: 1px solid #C6E758;
}
.button.button-secondary-inv::after {
  content: "";
  display: inline-block;
  width: 29px;
  height: 29px;
  margin-left: 10px;
  border: 1px solid #F3F5F5;
  border-radius: 50px;
  background: url("../../assets/images/button-arrow.svg") no-repeat center/contain #C6E758;
}
.button.button-secondary-inv:hover {
  color: #132F28;
  background-color: #C6E758;
}

.container {
  position: relative;
  margin: auto;
  width: 100%;
  max-width: 1470px;
  padding-left: 20px;
  padding-right: 20px;
}

h1,
.h1 {
  font-size: clamp(2.5rem, calc(1.9141rem + 2.6786vw), 4.375rem);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 20px;
}

h2,
.h2 {
  font-size: clamp(2rem, calc(1.6484rem + 1.6071vw), 3.125rem);
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 20px;
}

h3,
.h3 {
  font-size: 35px;
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 20px;
}

p {
  margin-block-end: 20px;
}

.subtitle {
  font-size: 24px;
}

.navbar-container {
  padding: 0 20px;
}
.navbar-container .navbar {
  margin: auto;
  width: 100%;
  margin-top: 30px;
  max-width: 1470px;
  padding-left: 20px;
  padding-right: 20px;
  border-radius: 50px;
  background-color: rgba(65, 88, 83, 0.8);
  transition: all 0.3s ease-in-out;
}
.navbar-container.scrolled {
  padding: 0;
}
.navbar-container.scrolled > .navbar {
  border-radius: 0 !important;
  margin-top: 0;
  max-width: 100%;
  background-color: rgba(65, 88, 83, 0.9);
  transition: all 0.3s ease-in-out;
  padding-left: 0;
  padding-right: 0;
}

.home .hero {
  width: 100%;
  background-image: url("../images/header-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 0 0 20px 20px;
  color: #fff;
}

.hero .subtitle {
  font-size: 24px;
  color: #C6E758;
}

.foto-walter-home {
  max-width: 100%;
  height: max-content;
  position: relative;
}
@media (min-width: 1024px) {
  .foto-walter-home {
    right: -80px;
    transform: rotate(-18deg);
  }
}
.foto-walter-home > .button-primary {
  position: absolute;
  bottom: 30px;
  left: 30px;
  z-index: 10;
}

.foto-arjan-home {
  max-width: 100%;
  height: max-content;
  position: relative;
}
@media (min-width: 1024px) {
  .foto-arjan-home {
    left: -80px;
    transform: rotate(18deg);
  }
}
.foto-arjan-home > .button-primary {
  position: absolute;
  bottom: 30px;
  right: 30px;
  z-index: 10;
}

.over-ons-blok {
  position: relative;
  z-index: 10;
  max-width: 470px;
  border-radius: 10px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.016);
  border-radius: 30px;
}

.courtage-line {
  height: 50px;
  background-color: rgba(198, 231, 88, 0.2);
  box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.16);
  width: 100%;
  -webkit-appearance: none;
  border-radius: 25px;
  cursor: pointer;
}

.courtage-line::-webkit-slider-thumb {
  display: flex;
  -webkit-appearance: none;
  background-color: transparent;
  height: 50px;
  width: 140px;
  border-radius: 25px;
  position: relative;
  z-index: 10;
}

.prijsoverzicht {
  display: grid;
  width: 100%;
  gap: 10px;
  margin-bottom: 55px;
}
@media (min-width: 1024px) {
  .prijsoverzicht {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.prijsoverzicht .makelaarsprijs,
.prijsoverzicht .pommeprijs,
.prijsoverzicht .prijsverschil {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 1024px) {
  .prijsoverzicht .makelaarsprijs .desc *,
.prijsoverzicht .pommeprijs .desc *,
.prijsoverzicht .prijsverschil .desc * {
    text-align: center !important;
  }
}
@media (max-width: 1023px) {
  .prijsoverzicht .makelaarsprijs,
.prijsoverzicht .pommeprijs,
.prijsoverzicht .prijsverschil {
    align-items: start;
    border-bottom: 1px solid #C6E758;
    padding-bottom: 10px;
  }
}
.prijsoverzicht span {
  line-height: 1;
  font-weight: 700;
  display: inline-block;
  font-size: 1.6em;
  padding: 10px 0;
}
@media (min-width: 1024px) {
  .prijsoverzicht span {
    font-size: 50px;
  }
}

.courtage-index {
  margin-top: 10px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-content: center;
}
@media (min-width: 1024px) {
  .courtage-index {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.courtage-index .label:nth-child(1) {
  font-weight: 600;
}
.courtage-index .label:nth-child(2) {
  order: 3;
  font-weight: 600;
  text-align: right;
}
.courtage-index .label:nth-child(3) {
  order: 3;
  text-align: center;
  grid-column: span 2;
}
@media (min-width: 1024px) {
  .courtage-index .label:nth-child(3) {
    order: 2;
    grid-column: span 1;
  }
}

.courtage {
  position: relative;
}

.courtage-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  position: absolute;
  top: 0px;
  width: 140px;
  height: 50px;
  border-radius: 25px;
  pointer-events: none;
  transition: transform 0.05s linear;
  z-index: 100;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.16));
  background-color: #132F28;
}
@media (min-width: 768px) {
  .courtage-button {
    width: 240px;
  }
}
.courtage-button .price {
  color: #fff;
}

.accordion-item {
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.rotate-0 {
  transform: rotate(180deg);
}

.reviews {
  color: #fff;
  max-width: 100%;
}
.reviews .leading-relaxed {
  line-height: 1.82;
}
@media (min-width: 1024px) {
  .reviews .leading-relaxed {
    font-size: 35px;
  }
}
.reviews .review-slider-nav svg circle {
  stroke: #C6E758;
}
.reviews .review-slider-nav svg path {
  fill: #C6E758;
}
.reviews .review-slider-nav svg:hover circle {
  fill: #C6E758;
  stroke: transparent;
}
.reviews .review-slider-nav svg:hover path {
  fill: #132F28;
}

footer {
  background-color: #132F28;
  color: #FCF6F1;
  background-image: url("../../assets/images/pomme-footer.png");
  background-repeat: no-repeat;
  background-position: 99% 101%;
  background-size: 420px;
}

.speech-blocks-section {
  background-color: #F3F5F5;
}

.speechblocks .leading-text {
  line-height: 1.5;
  font-size: 35px;
  font-weight: 600;
}
.speechblocks .leading-text span {
  color: #fff;
}

.steps .step-item {
  display: flex;
  gap: 20px;
  align-items: center;
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.16);
}
.steps .step-item .step-title {
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 20px;
}
.steps .step-item .icon {
  background-color: #C6E758;
  color: #132F28;
  font-weight: 700;
  font-size: 24px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}
.steps .step-item p {
  margin: 0;
  color: #555;
}

.fluentform .ff-el-form-control {
  background-color: #fff;
  border: none;
}

.fluentform .ff-el-form-control::placeholder {
  opacity: 1;
}

:where(figure) {
  margin: 0;
}

#menu-footermenu-1 li,
#menu-footermenu-2 li {
  margin-bottom: 10px;
}
#menu-footermenu-1 li:hover,
#menu-footermenu-2 li:hover {
  text-decoration: underline;
}

.searchbar .ajax-search-wrapper {
  width: 100%;
}
.searchbar input,
.searchbar select {
  height: 40px;
  width: 100%;
  padding-left: 10px;
  padding-right: 10px;
  border-radius: 5px;
  border: 1px solid #132F28;
}

.eigenschappen ul li {
  background-color: #F3F5F5;
  padding: 5px;
}

@media (min-width: 768px) {
  #tpom-regeltante-logo {
    display: flex;
  }
}
#tpom-regeltante-logo svg {
  fill: #fff;
}
#tpom-regeltante-logo svg:first-child {
  margin-right: 15px;
}
#tpom-regeltante-logo svg [data-rel=x_stroke] {
  stroke: #fff;
}