:root {
  --font-size: 16px;
  --container-width: 100%;
  --light: #f4f2eb;
  --white: #ffffff;
  --primary: #d39471;
  --secondary: #29362d;
  --tertiary: #e1d6bb;
  --primary-hover: #df9a73;
}

/* -- Font weights ----------------------------*/
.text-400 { font-weight: 400; }
.text-600 { font-weight: 600; }
.text-700 { font-weight: 700; }
.text-800 { font-weight: 800; }

.ff-bely,
.text-writing { 
  font-family: "bely-display", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.title-flex {
  display: flex;
  gap: 2.5rem;
}

.title-flex .h5 {
  margin: 0;
}

.text-balance {
  display: block;
  text-wrap: balance;
}

/* -- Font modifiers --------------------------*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
}

.h1,
.h2,
.h3,
.h4,
.h5 {
  display: block;
  font-weight: 700;
}
h1.lower,
h2.lower,
h3.lower,
h4.lower,
h5.lower,
.h1.lower,
.h2.lower,
.h3.lower,
.h4.lower,
.h5.lower{
  text-transform: none;
}
.h6 {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin: 0;
  line-height: 1;
}

.display-4,
.display-5 {
  display: block;
  line-height: .9;
  font-weight: 800; 
  margin-bottom: 1.5rem;
}

.display-4 strong,
.display-5 strong {
  font-family: "bely-display", sans-serif;
  font-weight: 400;
}

p {
  line-height: 1.78;
  margin-bottom: 1.5rem;
}

.lead {
  font-size: 1.25rem;
  font-weight: 400;
}

.list-checks {
  font-size: 1.15rem;
  list-style: none;
  padding: 0 0 0 1.65rem;
  position: relative;
}

.list-checks li:before {
  content: '\f00c';
  position: absolute;
  left: 0;
  font-family: 'Font Awesome 6 Pro';
  font-weight: 900;
  color: var(--primary);
}



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


body {
  font-family: "Geologica", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 300;
  font-variation-settings: "slnt" 0, "CRSV" 0, "SHRP" 0;
  color: var(--secondary);
  background: var(--light);
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  overflow-x: hidden;
}

.menu--active {
  height: 100vh;
  overflow: hidden;
}

html, body {
  font-size: 15px;
}

.container {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

@media all and (min-width: 1200px) {
  html, body {
    font-size: 16px; 
  }
}
@media all and (min-width: 1700px) {
  .container {
    max-width: 1640px;
  }
}

/* -- Links ---------------------------------*/
a, a:hover, a:focus, a:active {
  text-decoration: none;
  outline: none;
  color: inherit;
  -webkit-box-shadow: none;
          box-shadow: none;
}

/* -- Buttons -------------------------------*/
.btns-wrapper {
  display: flex;
  gap: .5rem;
}

.btn {
  font-size: 1.125rem;
  font-weight: 500;
  padding: 0.85rem 1.35rem;
  border-radius: 3rem;
  border: none;
}

.btn--white {
  background: #fff;
  color: var(--secondary);
}

.btn--white i {
  margin-right: 0.25rem;
  color: var(--secondary);
}

.btn--white:hover,
.btn--white:focus,
.btn--white:active {
  background: #fff !important;
  color: var(--secondary) !important;
}

.btn--white:hover i,
.btn--white:focus i,
.btn--white:active i {
  color: var(--secondary) !important;
}

.btn--primary {
  background: var(--primary);
  color: var(--secondary);
}

.btn--primary i {
  margin-right: 0.25rem;
  color: #fff;
}

.btn--primary:hover,
.btn--primary:focus,
.btn--primary:active {
  background: var(--primary-hover) !important;
 color: var(--secondary); !important;
}

.btn--secondary {
  background: var(--secondary);
  color: #fff;
}

.btn--secondary i {
  margin-right: 0.25rem;
  color: #fff;
}

.btn--secondary:hover,
.btn--secondary:focus,
.btn--secondary:active {
  background: var(--secondary) !important;
  color: #fff !important;
}

.btn--secondary-dark:hover,
.btn--secondary-dark:focus,
.btn--secondary-dark:active {
  background: #002C46 !important;
  color: #fff !important;
}

.btn--tertiary { 
  background: var(--tertiary);
  color: var(--secondary);
}

.btn--tertiary i {
  margin-right: 0.25rem;
  color: #fff;
}

.btn--tertiary:hover,
.btn--tertiary:focus,
.btn--tertiary:active {
  background: var(--tertiary) !important;
  color: var(--secondary) !important; 
}

/* -- Links ---------------------------------*/
.link--white {
  color: #fff;
}

.link--primary {
  color: var(--primary);
}
.link--primary:hover {
  color: var(--primary);
}

.link--secondary {
  color: var(--secondary);
}

.link--secondary:hover {
  color: var(--secondary);
}

p:not([class]) a:not([class]) {
  color: var(--primary);
  text-decoration: underline;
}

p:not([class]) a:not([class]):hover {
  text-decoration: none;
}

/* -- Backgrounds ---------------------------*/
.bcg--white { background: #fff; }
.bcg--light { background: var(--light); }
.bcg--primary { background: var(--primary); }
.bcg--secondary { background: var(--secondary); }
.bcg--tertiary { background: #D67047; }
.bcg--quaternary { background: var(--tertiary); }

/* -- Colors --------------------------------*/
.clr--white { color: #fff; }
.clr--primary { color: var(--primary); }
.clr--secondary { color: var(--secondary); }
.clr--tertiary {  color: #D67047; }
.clr--quaternary {  color: var(--tertiary); }

/* -- Images --------------------------------*/
.img-fit-cover {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.img-fit-contain {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  height: 100%;
}

.size-header-md {
  width: 100%;
  height: auto;
}


.introductie-contactpersoon {
  padding: 0 0 2rem 0;
  color: var(--secondary);
}

.contactpersoon__naam {
  display: block;
  font-size: 2rem;
  font-weight: 400;
}

.introductie-contactpersoon a {
  color: var(--secondary);
}

.introductie-contactpersoon a:hover {
  color: var(--secondary);
  text-decoration: underline;
}

/* -- Lists ---------------------------------*/
.downloads-list {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin: 1.75rem 0 1rem 0;
}

/* -- Lists ---------------------------------*/

ul:not([class]) {
  padding-left: 1rem;
}

.list-usp {
  list-style: none;
  padding: 0;
  margin: 0;
}

.list-usp li + li {
  margin-top: 1rem;
}

.list-usp li {
  position: relative;
  font-size: 1.25rem;
  color: #fff;
  padding-left: 60px;
  min-height: 48px;
}

.list-usp li i {
  position: absolute;
  -webkit-transform: translateY(-25%);
          transform: translateY(-25%);
  left: 0;
  font-size: 1.25rem;
  width: 48px;
  height: 48px;
  line-height: 48px; 
  text-align: center;
  border-radius: 100%;
  background: #474775;
  margin-right: .5rem;
  -webkit-transition: all .5s;
  transition: all .5s;
}

/* -- Carousel ------------------------------*/
.owl-carousel .owl-dots {
  margin-top: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}

.owl-slider .owl-dots {
  position: absolute;
  bottom: 7%;
}

.owl-carousel .owl-dots .owl-dot {
  display: block;
  width: 34px;
  height: 8px;
  background: transparent;
  border: 2px solid var(--tertiary);
  float: left;
  border-radius: .5rem;
}

.owl-slider .owl-dots .owl-dot {
  background: #fff;
  border: 2px solid #fff;
}

.owl-carousel .owl-dots .owl-dot:hover {
  background: var(--tertiary);
}

.owl-carousel .owl-dots .owl-dot + .owl-dot {
  margin-left: 6px;
}

.owl-carousel .owl-dots .owl-dot.active,
.owl-carousel .owl-dots .owl-dot.active:hover {  
  border-color: var(--secondary);
  background: var(--secondary);
}

.animated  {
  -webkit-animation-duration : 1000 ms  ;
  animation-duration : 1000 ms  ;
  -webkit-animation-fill-mode : both  ;
  animation-fill-mode : both  ;
}  

.owl-animated-out {
  z-index : 1 
}

.owl-animated-in {
  z-index : 0 
}

.fadeOut  {
  -webkit-animation-name : fadeOut  ;
  animation-name : fadeOut  ;
} 

.owl-bouwnummers .owl-stage { 
  display: flex; 
}
.owl-bouwnummers .owl-stage-outer { 
  overflow: visible;
}
.owl-bouwnummers .item,
.owl-bouwnummers .tile-appartement { 
  height: 100%; 
}

@-webkit-keyframes  fadeOut  {
  0% {
    opacity : 1   ;
  }  
  100% {
    opacity : 0   ;
  }  
}
@keyframes  fadeOut  {
  0% {
    opacity : 1   ;
  }  
  100% {
    opacity : 0   ;
  }  
}

/* -- Hamburger ----------------------*/
.hamburger {
  padding: 3px 3px;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}

.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
  background-color: var(--tertiary);
}

.hamburger-box {
  width: 15px;
  height: 12px;
  display: inline-block;
  position: relative;
  top: 1px;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -1px;
  transition: all .5s;
}
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 15px;
  height: 2px;
  background-color: var(--tertiary);
  border-radius: 3px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}

.hamburger-inner {
  width: 9px;  
}

.menu-open {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--tertiary);
  z-index: 99;
  cursor: pointer;
}

.menu-open:hover {
  color: #fff;
}

.menu-open:hover .hamburger-inner {
  width: 15px;
}

.hamburger.is-active .hamburger-inner {
  width: 15px;
}

.hamburger-inner::before, .hamburger-inner::after {
  content: "";
  display: block;
}
.hamburger-inner::before {
  top: -5px;
}
.hamburger-inner::after {
  bottom: -5px;
}

.hamburger--collapse .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0.13s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse .hamburger-inner::after {
  top: -10px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1);
}
.hamburger--collapse .hamburger-inner::before {
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--collapse.is-active .hamburger-inner {
  transform: translate3d(0, -5px, 0) rotate(-45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--collapse.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333);
}
.hamburger--collapse.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(-90deg);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.menu-open:hover .hamburger .hamburger-inner,
.menu-open:hover .hamburger .hamburger-inner::before,
.menu-open:hover .hamburger .hamburger-inner::after,
.menu-open:hover .hamburger.is-active .hamburger-inner,
.menu-open:hover .hamburger.is-active .hamburger-inner::before,
.menu-open:hover .hamburger.is-active .hamburger-inner::after {
  background-color: #fff;
}

/* -- Overlay-Navigation ---------------------*/
.overlay-navigation {
  display: grid;
  grid-auto-columns: 1fr;
  grid-auto-rows: 1fr;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr max-content;
  gap: 3rem 0;
  width: 0;
  pointer-events: none;
  height: 100%;
  min-height: 100dvh;
  overflow-y: scroll;
  position: absolute;
  top: 0;
  left: 0;
  padding: 10rem .75rem 4rem .75rem;
  background: var(--secondary);
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
  z-index: 88;
}

.menu--active .overlay-navigation:after {
  opacity: 1;
  transition: opacity .5s;
  transition-delay: .75s;
}

.overlay-navigation-header {
  position: absolute;
  top: 0;
  width: 100%;
  height: auto;
  padding: 4.5rem 0 2rem;
  pointer-events: none;
  z-index: 98;
}

.admin-bar .overlay-navigation-header {
  top: 32px;
}

.menu--active .overlay-navigation-header {
  pointer-events: auto;
}
.overlay-navigation-body {
  align-self: center;
  z-index: 99;
}
.overlay-navigation-footer {
  opacity: 0;
}

.overlay-navigation__menu {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  opacity: 0;
  margin: 0;
  padding: 0;
}

.overlay-navigation__menu .nav-link {
  font-size: 1.5rem;
  font-weight: 700; line-height: 1;
  text-transform: uppercase;
  padding: 0;
  color: var(--tertiary);
}
.overlay-navigation__menu .nav-link.active,
.overlay-navigation__menu .nav-link:hover {
  color: #ffffff;
}

.overlay-navigation__contact {
  opacity: 0;
}

.overlay-navigation__contact p,
.overlay-navigation__title {
  color: var(--tertiary);
}

.menu--active .overlay-navigation {
  width: 100vw;
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.menu--active .overlay-navigation__menu {
  opacity: 1;
  transition: opacity 1s;
  transition-delay: .75s;
}

.menu--active .overlay-navigation__contact {
  opacity: 1;
  transition: opacity 1s;
  transition-delay: 1.25s;
}

@media all and (min-width: 768px) {  
  .overlay-navigation {
    padding: 4rem 2rem;
  }
  .overlay-navigation__menu .nav-link {
    font-size: 1.75rem;
  }
}

@media all and (min-width: 992px) {  
  .overlay-navigation__menu .nav-link {
    font-size: 2rem;
  }
}

@media all and (min-width: 1200px) {
  .overlay-navigation__menu .nav-link {
    font-size: 2.25rem;
  }
}

/* -- Header ------------------------------*/
.ontwikkeling {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--tertiary);
  opacity: .6;
}
.ontwikkeling__text {
  font-size: 0.8rem;
  text-align: right;
  line-height: 1.1;
}
.ontwikkeling__text strong {
  font-weight: 700;
  display: none;
}


.site-header {
  position: relative;
  background: var(--secondary);
}

#header {
  padding: 1.75rem 0 2rem;
  flex-wrap: nowrap;
  justify-content: flex-start;
  position: relative;
  z-index: 1;
}

.navbar-brand {
  padding: 0;
  margin: 0;
}

.navbar-brand img {
  max-width: 150px;
}

#header .navbar-nav {
  flex-direction: row;
  gap: 1.5rem;
}

#header .nav-link {
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--tertiary);
}

#header .nav-link:hover {
  color: var(--white);
}

#header .active .nav-link {
  color: var(--primary);
}

#header .menu-open.is-active {
  position: relative;
  z-index: 99999;
}

#topnav .nav-link {
  font-size: .9rem;
  opacity: .6;
}

#topnav .nav-link:hover {
  color: var(--tertiary);
  opacity: 1;
}

@media all and (min-width: 768px) {  
  .ontwikkeling__text {
    font-size: 0.7rem;
  }
  .ontwikkeling__text strong {
    display: block;
  }
}

@media all and (min-width: 992px) {
  .navbar-brand img {
    max-width: 200px;
    margin-top: 1.5rem;
  }
}

/* -- Hero --------------------*/
#hero {
  position: relative;
  background: var(--secondary);
}

#hero:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2.5rem;
  background: var(--tertiary);
}

#hero.frontpage {
  padding: 2.5rem 0;
}

#hero.subpage {
  height: 2.5rem;
}

.hero-logo {
  padding: 0 0 2.5rem 0;
}

.hero-content {
  padding: 2rem 0 3rem 0;
}
.hero-content__title {
  display: block;
  font-weight: 200;
  font-size: 2.5rem;
  line-height: 1.1;
  color: #8BC9AC;
  margin-bottom: 1.5rem;
}
.hero-content__title strong {
  font-weight: 700;
  display: block;
  color: #ffffff;
}
.hero-content__subtitle {
  font-weight: 200;
  font-size: 1.125rem;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 2rem;
}

.hero-video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
}

.hero-video-btn {
  position: absolute;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  z-index: 11;
}

.hero-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 10;
}

.hero-content__label {
  position: absolute;
  right: 1rem;
  bottom: -40px;
}

.hero-content__label img {
  max-width: 140px;
}

@media all and (min-width: 768px) {
  .hero-content {
    padding: 4rem 0;
  }
  .hero-content__title {
    font-size: 3rem;
  }
  .hero-content__subtitle {
    font-size: 1.5rem;
  }  
}

@media all and (min-width: 992px) {
  .hero-content__label {
    right: 5rem;
  }
}

@media all and (min-width: 1200px) {
  .hero__brand img {
    width: 260px;
  }
  
  .hero-content {
    padding: 5rem 0;
  }
  .hero-content__title {
    font-size: 3.5rem;
  }
}

/* -- Masthead ----------------------*/
.masthead-cta-link {
  position: absolute;
  top: 1.5rem;
  right: 0;
  z-index: 50;
}

.masthead-cta-link__media {
		width: 180px;
	}
@media all and (min-width: 768px) {

	.masthead-cta-link__media {
		width: 220px;
	}
}

#masthead-slider {
  position: relative;
  background: var(--secondary);
  overflow: hidden;
}

#masthead-slider:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 7rem;
  background: var(--light);
  z-index: 4;
}


#masthead-slider.frontpage {
  overflow: visible;
}

.hero-wrapper {
  aspect-ratio: 16/8;
  min-height: 320px;
}

.home .hero-wrapper {
  min-height: 420px;
  aspect-ratio: 16/9;
}

.hero-wrapper .hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-wrapper .owl-slider {
  height: 100%;
  min-height: 320px;
}

.home .hero-wrapper .owl-slider {
  min-height: 420px;
}

.hero-wrapper .owl-slider .owl-stage-outer,
.hero-wrapper .owl-slider .owl-stage-outer .owl-stage,
.hero-wrapper .owl-slider .owl-stage-outer .owl-stage .owl-item,
.hero-wrapper .owl-slider .owl-stage-outer .owl-stage .owl-item .item {
  height: 100%;
}

.hero-wrapper .owl-slider .img-fluid {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.masthead-slider__content {
  position: absolute;
  width: calc(100% - var(--bs-gutter-x));
  height: 100%;
  top: 0;
  left: calc(var(--bs-gutter-x) * .5);
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.masthead-slider__content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(55deg, rgb(41, 54, 45, .75) 12%, rgba(41, 54, 45, 0) 60%);
  z-index: 1;
}

.masthead-slider__content-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  z-index: 2;
}

.header__title {
  display: block;
  text-transform: uppercase;
  margin: 0;
}

.header__subtitle {
  display: block;
  max-width: 50ch;
  text-wrap: balance;
}

.frontpage__label {
  position: absolute;
  right: 2rem;
  bottom: -3rem;
  z-index: 888;
  max-width: 120px;
}

@media all and (min-width: 768px) {
  #masthead-slider:before {
    height: 10rem;
  }
  
  .frontpage__label {
    max-width: 150px;
    right: 3rem;
    bottom: -2.5rem;
  }
  
  .masthead-slider__content {
    padding: 2rem;
  }
}
@media all and (min-width: 992px) {
  #masthead-slider:before {
    height: 13rem;
  }
  
  .frontpage__label {
    max-width: 170px;
    right: 4rem;
    bottom: -3rem;
  }
  
  .masthead-slider__content {
    padding: 3rem;
  }
}
@media all and (min-width: 1200px) {
  #masthead-slider:before {
    height: 16rem;
  }
  
  .frontpage__label {
    max-width: 220px;
  }
  
  .masthead-slider__content {
    padding: 4rem;
  }
}

.single-bouwnummer #masthead-slider:before,
.single-woningtype #masthead-slider:before {
  background: var(--light);
}

#masthead-slider .container {
  position: relative;
  z-index: 5;
}

.masthead-slider-bcg {
  position: absolute;
  top: 0; 
  left: 0;
  width: 100%;
  height: 85%;
  background-image: url("../images/hero-bcg.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.masthead-slider-bcg .element {
  position: absolute;
}
.masthead-slider-bcg .element--right {
  bottom: -6rem;
  right: -23rem;
  width: 50vw;
  height: 80%;
  z-index: 3;
}
.masthead-slider-bcg .element--right img {
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: bottom left;
     object-position: bottom left;
  -webkit-transform: rotate(109deg);
  transform: rotate(109deg);
  width: 100%;
  height: 100%;
}

/* -- Brochure ---------------------------*/
.module-brochure {
  position: relative;
  padding: 5rem 0 4rem 0;
  background: var(--light);
}

/* -- Introductie ---------------------------*/
.module-introductie {
  position: relative;
  padding: 7rem 0 4rem 0;
  background: var(--light);
}

/* -- Gebouw ---------------------------------*/
.module-gebouw {
  position: relative;
  padding: 0 0 4rem 0;
  background: var(--light);
}

.owl-verdiepingen {
  padding-bottom: 4rem;
}

.owl-verdiepingen strong {
  font-weight: 700;
}

/* -- Stappenplan ---------------------------*/
.module-stappen {
  padding: 2rem 0 4.5rem 0;
  background: var(--light);
}

.stappen-grid {
  grid-template-columns: repeat(auto-fill, minmax(min(440px, 100%), 1fr));
  display: grid;
  gap: 1.5rem;
}

.tile-stap {
  padding: 1rem;
  border-radius: .75rem;
  height: 100%;
}

.tile-stap.tile--information { background: var(--secondary); color: var(--white); }
.tile-stap.tile--step { background: var(--white); }

.tile-stap__number {  
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  font-weight: normal;
  font-size: 1.125rem;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.tile-stap__number strong {
  display: block;
  font-weight: 700;
  font-size: 2.5rem;  
  line-height: 0.75;
  vertical-align: middle;
  color: var(--primary);
  margin-left: .5rem;
}

.tile-stap.tile--step .tile-stap__title {  
  display: block;
  font-weight: 700;
  font-size: 1.35rem;
  text-transform: uppercase;
  letter-spacing: .025em;
  margin-bottom: .75rem;
}

.tile-stap.tile--information .tile-stap__title {  
  display: block;
  font-weight: 500;
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.tile-stap ul,
.tile-stap ol {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  padding-left: 1rem;
}

.tile-stap ul a:not([class]),
.tile-stap ol a:not([class]),
.tile-stap p a:not([class]) {
  color: var(--secondary);
  text-decoration: underline;
}

.tile-stap ul a:not([class]):hover,
.tile-stap ol a:not([class]):hover,
.tile-stap p a:not([class]):hover {
  color: var(--primary);
  text-decoration: none;
}

.tile-stap hr {
  border: none;
  height: 10px;
  background: rgb(255,255,255);  
  background: -webkit-linear-gradient(rgba(255,255,255,.8) 0%, rgba(255,255,255,0) 100%);
  background: -o-linear-gradient(rgba(255,255,255,.8) 0%, rgba(255,255,255,0) 100%);
  background: linear-gradient(rgba(255,255,255,.8) 0%, rgba(255,255,255,0) 100%); 
  border-radius: 0 0 .5rem .5rem;
}


@media all and (min-width: 1200px) {
  .tile-stap {
    padding: 2rem;
  }
}


/* -- Blokken -------------------------------*/
.module-blokken {
  position: relative;
  background: var(--light);
}

.module-blokken .container {
  position: relative;
  z-index: 1;
}

.module-blokken:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5rem;
  background: var(--light);
  z-index: 0;
}

.card {
  border: none;
  border-radius: 0;
}

.card .card-img {
  border-radius: 0;
}

.card .card-img-overlay {
  display: grid;
  place-items: end center;
  border-radius: 0;
}

.card .card-img-overlay a {
  margin-bottom: 1rem;
}

/* -- Plangebied ---------------------------*/
.module-plangebied {
  position: relative;
  padding: 4rem 0 0 0;
}

.kavel-grid {
  margin-top: 3rem;
  display: grid;
  grid-column-gap: .5rem; 
  grid-row-gap: 1.5rem; 
  grid-template-columns: repeat(2, 1fr);
}

.kavel__kleurlabel {
  margin-bottom: 1rem;
}

.kavel__woningtype {
  font-weight: 700;
  margin: 0;
}

.kavel__description {
  line-height: 1.4;
  display: block;
  font-weight: 700;
  font-size: .75rem;
  margin: 0;
}

.kavel__numbers {
  display: block;
  font-size: .75rem;
}

@media all and (min-width: 1400px) {
  .kavel-grid {
    grid-column-gap: 1.5rem; 
    grid-template-columns: repeat(3, 1fr);
  }
}

/* -- Kavels --------------------------------*/
.module-kavels {
  position: relative;
  padding: 4rem 0;
  background: #ffffff;
}

.mapplic-tooltip-title {
  text-transform: uppercase;
  color: #114256 !important;
}

.mapplic-tooltip-content{
  overflow: hidden;
}

/* -- Beschikbaarheid ----------------------*/
.module-beschikbaarheid {
  position: relative;
}

/* -- Bouwnummers --------------------------*/
.module-bouwnummers {
  padding: 3rem 0;
  overflow: hidden;
}

.tile-appartement {
  padding: 2rem 1.25rem;
  background: var(--white);
  border-radius: 1rem;
}

.tile-appartement-floorplan {
  margin: 0;
  max-width: 300px;
}

  .tile-appartement-floorpan .img-lightbox {
    padding: 0 1.5rem;
  }

.tile-appartement-information {
  padding: 1.125rem 1rem;
  background: var(--light);
  border-radius: 1rem;
}

  .tile-appartement-specificaties {
    font-size: 1.125rem;
    display: flex;
    justify-content: space-around;
  }

    .tile-appartement-specificaties-item__label {        
      display: block;  
    }

    .tile-appartement-specificaties-item__value {
      font-weight: 800;
      display: block;  
    }

/* -- Iframe -------------*/
.module-iframe {
  padding: 5rem 0;
  position: relative;
}

/* -- Interactieve plattegrond -------------*/
.module-interactive {
  padding: 5rem 0;
  position: relative;
}

.home .module-interactive {
  background: var(--white);
}


.module-financieel {
  padding: 0 0 5rem 0;
}

.grid-adviseurs {
  display: grid; 
  grid-template-columns: repeat(auto-fill, minmax(min(360px, 100%), 1fr));
  gap: 1rem; 
}

.grid-adviseurs-item {
  display: flex;
  flex-direction: column;
  background: var(--white);
  padding: 2rem 1.5rem;
  border-radius: 1rem;
}

  .grid-adviseurs-item__logo {
    max-height: 160px;
    margin: 0 auto 1.5rem auto;
  }

  .grid-adviseurs-item__name {
    font-weight: 800;
    display: block;
  }

  .grid-adviseurs-item span a {
    font-weight: 500;
    text-decoration: underline;
  }

/* -- Downloads -----------------------------*/
.module-downloads {
  padding: 0 0 4rem 0;
}

.accordion-item {
  border-color: var(--tertiary);
}

.accordion-button {
  box-shadow: none !important;
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='114256'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/></svg>");
}

.accordion-button:not(.collapsed) {
  color: var(--secondary);
  background-color: var(--tertiary);
  box-shadow: none;
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='114256'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/></svg>");
}

.list-downloads {
  list-style: none;
  margin: 0;
  padding: 0;
}

.list-downloads .download-clear {
  height: 16px;
}

  .list-downloads .download-item + .download-item {
    margin-top: .5rem;
  }

  .list-downloads .download-item .download-link {
    display: flex;
    justify-content: space-between;
    color: var(--secondary);
  }

  .list-downloads .download-item .download-link:hover {
    color: var(--primary);
  }

  .list-downloads .download-item .download-link span {
    text-transform: uppercase;
  }

/* -- Woningtypes ---------------------------*/
.module-woningtypes {
  padding-top: 4rem;
  position: relative;
  background: var(--white);
  overflow: hidden;
}

.page-id-152 .module-woningtypes {
  background: var(--light);
}

.module-woningtypes .container {
  position: relative;
  z-index: 1;
}

.module-woningtypes:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5rem;
  background: var(--light);
  z-index: 0;
}

.page-id-152 .module-woningtypes:after {
  background: var(--white);
}

.home .module-woningtypes {
  background: var(--white);
}

.home .module-woningtypes:after {
 background: var(--light);
}
.woningtype-status{
  font-size: 0.75rem;
  color: #ffffff;
  margin: 1rem 0 2rem;

}

.owl-nav {
  display: flex;
  gap: 1.75rem;
  position: absolute;
  z-index: 10;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  padding: 0.45rem 1.35rem;
  border-radius: 3rem;
}

.owl-nav button {
  font-size: 1.65rem;
  background: none;
  color: var(--secondary);
}

.owl-nav button.disabled {
  opacity: .25;
}

.owl-woningtypes-inner {
  padding: 4rem 15px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  width: 100%;
  background: var(--secondary);
}

.owl-woningtypes-inner .specificaties {
  margin-bottom: 0;
}

@media all and (min-width: 768px) {
  .owl-woningtypes .owl-stage-outer {
    overflow: visible;
  }
  .owl-woningtypes-inner {
    padding: 2rem 15%;
  }
}

/* -- Videos --------------------------------*/
.module-videos {
  position: relative;
  padding: 5rem 0;
  background: var(--tertiary);
}

.module-videos .container {
  position: relative;
  z-index: 2;
}

.module-videos:after {
  content: '';
  height: 60%;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  background: var(--tertiary);
  z-index: 0;
}

.card-video {
  height: 100%;
}

.card-video .card-body {
  background: var(--primary);
  padding: 2rem 1rem;
}

.card-video .card-body .h2 {
  font-weight: 400;
  font-size: 2rem;
  text-transform: none;
  color: #fff;
  margin-bottom: .75rem;
}

.card-video .card-body .h6 {
  color: var(--secondary);
}

.card-video .card-media {
  position: relative;
}

.card-video .card-media-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: start center;
}

.card-video .card-media-overlay .btn {
  transform: translateY(-50%);
}

@media all and (min-width: 992px) {
  .card-video .card-body {
    padding: 3rem 2rem;
  }
}

@media all and (min-width: 1200px) {
  .card-video .card-body {
    padding: 3rem 3rem;
  }
}

/* -- Nieuws --------------------------------*/
.module-nieuws {
  position: relative;
  padding: 5rem 0;
  background: var(--tertiary);
}

/* -- Omgeving ------------------------------*/
.module-omgeving {
  position: relative;
  padding: 5rem 0;
/*  background: var(--tertiary);*/
}

/* -- omgeving feature ----------------------*/
.woningtype-feature {
  padding-top: 5rem;
}

.woningtype-feature,
.module-omgeving-feature {
  position: relative;
  background: var(--light);
}

.module-omgeving-feature:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 5rem;
  width: 100%;
  background: #fff;
  z-index: 0;
}

.woningtype-feature:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 5rem;
  width: 100%;
  background: var(--white);
  z-index: 0;
}

.woningtype-feature:after {
  content: '';
  position: absolute;
  bottom: 5rem;
  left: 0;
  height: calc(100% - 5rem);
  width: 100%;
  background-image: url('../images/bcg-visual-light-left.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom left;
}

.woningtype-feature .container,
.module-omgeving-feature .container {
  position: relative;
  z-index: 1;
}

.omgeving-feature-inner {
  position: relative;
  padding: 3rem 1rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  width: 100%;
  color: var(--tertiary);
  background: var(--secondary);
}

@media all and (min-width: 768px) {
  .omgeving-feature-inner {
    padding: 4rem;
  }
}

@media all and (min-width: 1200px) {
  .omgeving-feature-inner {
    padding: 6rem;
  }
}

/* -- Woningtypes list ----------------------*/
.module-woningtypes-list {
  padding: 4rem 0;
}

/* -- Planning ------------------------------*/
.module-planning {
  padding: 4rem 0;
}

.owl-timeline {
  position: relative;
  overflow: visible;
  padding-bottom: 6rem;
}

.owl-timeline .owl-nav {
  bottom: 0;
}

.owl-timeline:after {
  content: "";
  position: absolute;
  top: 56px;
  border-top: 2px dotted var(--secondary);
  width: 100%;
  height: 1px;
  z-index: -1;
}

.owl-timeline .item {
  align-items: flex-start;
  justify-content: center;
}

.timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  z-index: 2;
}

.timeline-icon {
  display: grid;
  place-items: center;
  width: 7rem;
  height: 7rem;
  border-radius: 100%;
  background: var(--tertiary);
}
.timeline-icon i {
  font-size: 2rem;
  color: var(--secondary);
}
.timeline-body {
  text-align: center;
}
.timeline-body p {
  font-weight: 300;
  margin: 0;
}
.timeline__quarter {
  display: block;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

/* -- Usps --------------------------------*/
.module-usps {
  padding: 3rem 0;
}

.usps-wrapper {
  display: grid;
  grid-template-columns: repeat(1, minmax(max-content, 1fr));
  gap: 0.5rem;
}

.usp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}
.usp__value {
  font-size: clamp(1.1rem, 0.803rem + 0.8309vw, 1.8rem);
  color: var(--primary);
}
.usp__description {
  color: var(--secondary);
  font-size: .9rem;
  font-weight: 900;
  text-transform: uppercase;
}

@media all and (min-width: 576px) {
  .usps-wrapper {
    display: grid;
    grid-template-columns: repeat(2, minmax(max-content, 1fr));
  }
}
@media all and (min-width: 1200px) {
  .usps-wrapper {
    display: grid;
    grid-template-columns: repeat(4, minmax(max-content, 1fr));
  }
}

/* -- Woningtype -----------------------------*/
.woningtype-introductie {
  padding: 5rem 0;
}

.woningtype-indeling {
  padding: 5rem 0;
}

.plattegrond__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.img-lightbox {
  cursor: zoom-in;
}

.specificaties {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 3rem;
  max-width: 740px;
  margin: 2rem 0 2.5rem;
}


.specificaties-list {
  margin-top: 3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 5rem;
}

.specificaties-list-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

  .specificaties-list-item i {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    border-radius: 100%;
    font-size: 1.55rem;
    background: var(--tertiary);
    color: var(--secondary);
    flex-shrink: 0;
  }

  .specificaties-list-item span {
    display: block;
    font-weight: 400;
    font-size: 13px;
    line-height: 1.2;
    text-transform: uppercase;
  }

    .specificaties-list-item span + span {
      margin-top: .25rem;
    }

  .specificaties-list-item span strong {
    font-size: 1.125rem;
    font-weight: 800;
    display: block;
  }

  .specificaties-list--xs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 0;
    margin-bottom: 1rem;
  }

  .specificaties-list--xs .specificaties-list-item i {
    width: 42px;
    height: 42px;
    font-size: 1.125rem;
    background: var(--light);
  }

@media all and (min-width: 1200px) {  
  .specificaties-list  {
    flex-wrap: nowrap;
  }
  
  .specificaties-list-item i {
    width: 55px;
    height: 55px;
    font-size: 1.75rem;
  }

  .specificaties-list-item span {
    font-size: 14px;
  }
}


.specificaties-oppervlaktes {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-grow: 1;
  padding: 3rem;
  background: var(--tertiary);
  border-radius: 1rem;
}

.oppervlaktes-item {
  display: flex;
  text-transform: uppercase;
}

.oppervlaktes-item + .oppervlaktes-item {
  margin-top: .5rem;
}

.mw-70 {
  display: inline-block;
  min-width: 70px;
}

.oppervlaktes-item strong {
  font-weight: 800;
  min-width: 100px;
}

/* -- Introductie ----------------------------*/
.page-introductie {
  position: relative;
  padding: 4.5rem 0;
}

/* -- Page -----------------------------------*/
#page {
  padding: 4.5rem 0;
}

#page h3,
#page h4,
#page h5 {
  font-weight: 700;
}

#page p + h3,
#page p + h4,
#page p + h5 {
  margin-top: 1.5rem;
}

#page p strong {
  font-weight: 700;
}

#page p a:not([class]) { 
  color: inherit;
  text-decoration: underline;
}

#page p a:not([class]):hover { 
  color: var(--primary);
  text-decoration: none;
}
#page figure,
.single-content figure{
  position: relative;
  max-width: 100%;
  height: auto;
  margin: 3rem 0 3.5rem;
}
#page figcaption,
.single-content figcaption{
  position: absolute;
  display: inline-block;
  bottom: 1.5rem;
  right: 1.5rem;
  font-size: 0.8rem;
  padding: 0.5rem 1rem;
  border-radius: 5em;
  background: var(--secondary);
  color: white;
}
#page img.alignnone,
.single-content img.alignnone{
  margin: 2rem 0;
}
blockquote p{
  position: relative;
  font-size: 1.5rem;
  line-height: 1.6rem;
  font-weight: 700;
  text-transform: uppercase;
  z-index: 2;
}
blockquote{
  position: relative;
  max-width: 100%;
  padding-left: 2.5rem;
  margin: 3rem 0 3rem 3rem;
}
@media all and (min-width: 768px) {
  blockquote{
   max-width: 60%;
  }
}
blockquote:before{
  position: absolute;
  font-size: 3rem;
  top: -1rem;
  left: 0;
  display: block;
  width: 3rem;
  height: 3rem;
  text-align: center;
  line-height: 5rem;
  content: '"';
  background: white;
  border-radius: 5rem;
  z-index: 1;
}
blockquote p:after{
  content: '"';
  display: inline-block;
}



/* -- News -----------------------------------*/
.news-heading {
  position: relative;
  padding: 7rem 0 9rem 0;
}

.news-heading .container {
  position: relative;
  z-index: 1;
}

.news-latest {
  background: var(--tertiary)
}

.news-latest .container {
  position: relative;
  top: -5rem;
  z-index: 2;
}

.card-featured {
  display: grid;
  grid-template-rows: 1fr fit-content; 
  background: var(--primary);
}

.card-news {
  height: 100%;
}

.card-featured .card-visual ,
.card-news .card-visual {
  overflow: hidden;
}

.card-featured:hover .card-visual:not(.no-zoom) img,
.card-news:hover .card-visual:not(.no-zoom) img {
  transform: scale(1.05);
}

.card-news .card-visual img,
.card-featured .card-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}

.card-news .card-body,
.card-featured .card-body {
  padding: 2rem 1.25rem;
}

.news-overview {
  padding: 0 0 4rem 0;
  background: var(--tertiary);
}

.card-news .h6 {
  color: var(--primary);
}

.card-news--verhaal {
  background: var(--secondary);
}

.card-news .h4,
.card-news p {
  color: var(--secondary);
}

.card-news--verhaal .h4,
.card-news--verhaal p {
  color: #fff;
}

@media all and (min-width: 768px) {
  .card-featured {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr; 
  }
  
  .card-featured .card-body {    
    display: flex;
    flex-direction: column;
    align-self: center;
    align-items: flex-start;
    padding: 4rem 8.3333%;
  }
  
  .card-news .card-body {
    padding: 3rem 1.75rem;
  }
}

@media all and (min-width: 1200px) {
  .card-featured .card-body {
    padding: 4rem 16.6666%;
  }
  
  .card-news .card-body {
    padding: 3rem 2.5rem;
  }
}

/* -- Single -----------------------------------*/
.single-heading {
  position: relative;
  padding: 6rem 0 0 0;
}

.single-heading .container {
  position: relative;
  z-index: 1;
}

.single-heading:before {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  height: 4rem;
  width: 100%;
  background: var(--tertiary);
  z-index: 0;
}

.single-content {
  padding: 4rem 0;
  background: var(--tertiary);
}

/* -- Inschrijven ----------------------------*/
#inschrijven-introductie {
  padding: 5rem 0;
  color: #fff;
  background: #114256;
}

#inschrijven-contact {
  padding: 5rem 0 3rem 0;
  background: #fff;
}

.formulier-wrapper {
  position: relative;
  margin-top: -8rem;
  padding: 8.33333%;
  background: #EDF6F1;
}

@media all and (min-width: 768px) {
  .formulier-wrapper {
    margin-top: -45%;
  }
}

/* -- Footer upper --------------------------*/
#footer-upper {
  padding: 5rem 0;
  background: #fff;
}

.footer__title {
  font-family: "bely-display", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.35rem;
  text-wrap: balance;
  display: block;
  margin-bottom: 1rem;
  color: var(--secondary);
}

.contact__address{
 margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
}
.contact__address a {
  color: var(--secondary);
}

.contact__address a:hover {
  color: var(--primary);
}

.contactpersoon {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 2rem;
  gap: 1rem;
}

.contactpersoon__photo {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 100%;
}

.contactpersoon__name {
  display: block;
  font-size: 2.125rem;
}

.contactpersoon__link {
  display: block;
  color: var(--secondary);
}

.contactpersoon__link:hover {
  color: var(--primary);
}

/* -- Footer middle -------------------------*/
#footer-middle {
  padding: 2.5rem 0;
  background: rgba(41,54,45,.05);
}

  #footer-middle p {
    margin: 0;
  }

    #footer-middle p a {
      text-decoration: underline;
    }

/* -- Footer base ---------------------------*/
#footer-base {
  padding: 1.5rem 0;
  background: var(--light);
}

#footer-base span {
  font-size: .9rem;
  opacity: .4; 
  color: var(--secondary); 
  
}

#footer-base span a {
  color: var(--secondary);
}

#footer-base span a:hover {
  color: var(--secondary);
  opacity: 1;
}
/*# sourceMappingURL=stylesheet.css.map */