:root {
    --kleur1: #fff;
    --kleur2: #555;
    --kleur3: #777;
}

/* ======== STANDAARD STYLING ======== */

html {
    scroll-behavior: smooth;
}

.container {
    max-width: 1400px;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: #fff;
}

a {
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    text-decoration: none;
}

p {
    color: #221E1F;
    font-size: 16px;
    line-height: 27px;
    font-family: "krub", sans-serif;
}

input:focus,
textarea {
    outline: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "krub", sans-serif;
    font-weight: 700;
}

/* ======== HEADER ======== */
.header-afbeelding {
    aspect-ratio: 16 / 8;
    object-fit: cover;
}

img.logo {
    width: 190px;
    top: 0;
    z-index: 20;
}

img.logo-small {
    width: 160px;
    position: absolute;
    top: 10px;
    z-index: 20;
}

.menubalk {
    padding-top: 20px;
    padding-bottom: 20px;
    background: #fff;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    z-index: 500;
}

.menu-fixed {
    position: fixed;
    top: -120px;
    width: 100%;
    z-index: 1000;
    transform: translateY(-100%);
    transition: transform 0.6s;
}

.menu-fixed.visible {
    transform: translateY(0);
    -webkit-box-shadow: 0 0 50px 1px rgba(0, 0, 0, .1);
    -moz-box-shadow: 0 0 50px 1px rgba(0, 0, 0, .1);
    box-shadow: 0 0 50px 1px rgba(0, 0, 0, .1);
    top: 0;
    background: #fff;
    padding-top: 25px;
    padding-bottom: 25px;
    z-index: 20;
}

.menu-fixed h1 {
    font-size: 28px;
    margin-bottom: 0;
    color: #719454;
    font-weight: 700;
}

.menubalk h1 {
    font-size: 30px;
    margin-bottom: 0;
    color: #719454;
    font-weight: 700;
}

.innermenu {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

ul#menu-hoofdmenu,
ul#menu-hoofdmenu-1 {
    list-style: none;
    display: flex;
    gap: 15px;
    margin-bottom: 0;
}

.sub-menu a {
    padding-top: 15px !important;
    padding-bottom: 15px !important;
    font-size: 20px !important;
    color: #fff !important;
    border-bottom: 1px solid #ffffff20;
}

ul#menu-hoofdmenu a, ul#menu-hoofdmenu-1 a {
    font-size: 22px;
    font-weight: 400;
    color: #000;
    padding-top: 25px;
    padding-bottom: 25px;
    font-family: "krub", sans-serif;
}

.current-menu-item a {
    font-weight: 600 !important;
    color: #7b659c !important;
}

ul.sub-menu.scroll {
    top: 52px !important;
}

#interesse {
    scroll-margin-top: 100px;
    text-align: center;
}

.innermenu ul li {
    position: relative;
    list-style: none;
    padding-left: 0;
}

.innermenu ul li ul.sub-menu {
    position: absolute;
    top: 57px;
    left: 0;
    z-index: 999;
    min-width: 230px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
    display: block !important;
    background-color: #719454;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

ul.sub-menu {
    padding-left: 0;
}

.innermenu ul li ul.sub-menu.is-active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    padding-left: 0px!important;
}

.innermenu ul li ul.sub-menu li a {

    display: block;
    padding: 10px 15px;
    color: #333;
    text-decoration: none;
}



.header-groot {
    height: 800px;
    background: linear-gradient(to top, rgb(0 0 0 / 55%) 0px, rgba(0, 0, 0, 0) 400px), url("../img/header.jpg");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding-bottom: 60px;
}

.header-klein {
    height: 600px;
    background: url("../img/divider.jpg");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding-bottom: 50px;
}

a.ronde-knop {
    background-color: #000;
    padding: 10px 30px;
    display: inline-flex;
    color: #fff;
    border-radius: 40px;
}

.header-groot h2 {
    color: #fff !important;
    font-size: 55px;
    text-shadow: 2px 2px 15px rgb(0 0 0 / 70%);
    opacity: 0;
}

.header-klein h2 {
    color: #fff !important;
    font-size: 60px;
}

h2.vervolg-titel {
    font-weight: 400;
    font-size: 45px;
    margin-bottom: 15px;
    color: #7b659c;
}

.inner-header p {
    color: #fff;
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    text-shadow: 2px 2px 4px rgb(0 0 0 / 70%);
    opacity: 0;
}

/* ======== CONTENT ======== */

section.hero {
    position: relative;
    overflow: hidden;
    background-color: var(--kleur1);
    padding: 5rem 0;
    min-height: 900px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

section.hero h1 {
    color: #709454;
    font-weight: 700;
    font-size: 35px;
    text-transform: uppercase;
    margin-bottom: 18px;
    text-wrap-style: balance;
}

section.hero p {
    margin-bottom: 24px;
    font-family: "myriad-pro-black", sans-serif;
}

.hero .map-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 50vw;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.map-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform-origin: center center;
    transition: transform 0.1s ease-out;
}

.text-col {
    padding-left: 70px;
}

/* ======== INTRO GEEDELTE ======== */

a.knop-home {
    background: #7b659c;
    padding: 12px 60px;
    border-radius: 50px;
    font-family: "stolzl", sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
    font-size: 15px;
    min-width: 200px;
    text-align: center;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
}

.innerknoppen-groep {
    display: flex;
    margin-top: 40px;
    gap: 10px;
}

.introgedeelte {
    padding-top: 70px;
    padding-bottom: 70px;
    background-color: var(--kleur1);
}

.introgedeelte strong {
    margin-bottom: -10px;
    display: flex;
}

.introgedeelte h1 {
    font-size: 45px;
    margin-bottom: 30px;
    color: #7b659c;
    font-weight: 500;
}

.intro-afbeelding {
    -webkit-box-shadow: 0 0 50px 1px rgba(0, 0, 0, .1);
    -moz-box-shadow: 0 0 50px 1px rgba(0, 0, 0, .1);
    box-shadow: 0 0 50px 1px rgba(0, 0, 0, .1);
    border-radius: 10px;
}

.introgedeelte h2 {
    color: #719454;
    font-weight: 700;
    font-size: 54px;
    margin-bottom: 15px;
}

.padding-right {
    padding-right: 80px;
}


img.img-fluid.locatie-afbeelding {
    border-radius: 20px;
}

/* ======== ZUTPHEN ======== */

.zutphen {
    padding-top: 80px;
    padding-bottom: 80px;
}

.zutphen h2 {
    color: #719454;
    font-weight: 700;
    font-size: 56px;
    margin-bottom: 30px;
    text-wrap-style: balance;
}

.afbeelding-offset {
    position: relative;
    top: 50px;
    height: 500px;
}

.paddding-rechts {
    padding-right: 0;
}

.paddding-rechts p {
    column-count: 2;
    column-gap: 25px;
}

.inner-intro {
    padding-left: 40px;
}

/* ======== DUURZAAMHEID ======== */

.duurzaamheid h1 {
    font-size: 50px;
    margin-bottom: 20px;
}

.duurzaamheid img {
    background: #fff;
    -webkit-box-shadow: 0 0 50px 1px rgba(0, 0, 0, .1);
    -moz-box-shadow: 0 0 50px 1px rgba(0, 0, 0, .1);
    box-shadow: 0 0 50px 1px rgba(0, 0, 0, .1);
    border-radius: 10px;
}

.duurzaamheid p {
    color: #fff;
    font-size: 17px;
}

/* ======== WONEN ======== */

h2.title-small {
    font-size: 52px;
    padding-right: 40px;
}

p.tekst-wonen {
    padding-right: 50px;
}

a.ronde-knop {
    background-color: #000;
    padding: 10px 30px;
    display: inline-flex;
    color: #fff;
    border-radius: 40px;

    font-size: 21px;
    margin-top: 15px;
    background: #4E663A;
}

a.ronde-knop:hover {
    background: #719454;
}

/* ======== DOWNLOADS ======== */

.downloads-blok {
    background: #fff;
    color: #7b659c;
    padding-top: 70px;
    padding-bottom: 80px;
}

/* ======== PLATTEGRONDEN ======== */

.plattegronden {
    padding-top: 40px;
    padding-bottom: 50px;
    background: #dadada;
}

/* ======== PLANNING ======== */

.planning {
    padding-top: 70px;
    padding-bottom: 70px;
    background: #f4f4f4;
}

.innerplanning {
    background: #FFFFFF;
    padding: 40px 30px;
    -webkit-box-shadow: 0 0 20px 1px rgba(0, 0, 0, .05);
    -moz-box-shadow: 0 0 50px 1px rgba(0, 0, 0, .1);
    text-align: center;
    border-radius: 10px;
}

p.planning-title {
    font-size: 24px;
    font-weight: 600;
    margin-top: 10px;
}

.planning h2 {
    color: #000;
    font-size: 40px;
    margin-bottom: 40px;
    font-weight: 700;
}

p.datum {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 14px;
    color: #555555;
}

/* ======== INTERESSE ======== */

.interesse {
    background: #7b659c;
    padding-top: 80px;
    padding-bottom: 80px;
    color: #fff;
}

p.interesse-tekst {
    font-size: 17px;
    line-height: 27px;
}

.interesse-knop a {
    background: #719454;
    color: #fff !important;
    padding: 7px 15px !important;
    border-radius: 60px;
}

.interesse h2 {

    font-weight: 700;
}

.interesse p {
    color: #fff;
    margin-bottom: 40px;
}

.inner-interesse {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.contact {
    margin-top: 30px;
    font-size: 20px;
}

.contact p {
    font-size: 17px;
    line-height: 27px;
}

.contact strong {
    font-size: 23px;
}

/* ========  WONINGEN  ======== */

.tekst-groot p {
    font-size: 18px;
    line-height: 28px;
    font-weight: 500;
}

.intro-kleur {
    padding-top: 60px;
    padding-bottom: 60px;
    background-color: var(--kleur1);
}

.innerwoning {
    background: #FFFFFF;
    padding: 40px 30px;
    margin-bottom: 50px;
    -webkit-box-shadow: 0 0 50px 1px rgba(0, 0, 0, 0);
    -moz-box-shadow: 0 0 50px 1px rgba(0, 0, 0, 0);
    box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0);
    transition: all 0.3s ease-in-out;
}

.innerwoning-modal-body h2 {
    font-size: 50px;
    font-weight: 700;
}

.innerwoning:hover {
    transform: translate(0px, -5px);
    -webkit-box-shadow: 0 0 50px 1px rgba(0, 0, 0, .1);
    -moz-box-shadow: 0 0 50px 1px rgba(0, 0, 0, .1);
    box-shadow: 0 0 50px 1px rgba(0, 0, 0, .1);
}

.woningen-wrap {
    padding-top: 60px;
    padding-bottom: 20px;
}

.titel-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 30px;
    border-bottom: 2px solid #719454;
    margin-bottom: 29px;
}

.woningen-intro {
    margin-bottom: 40px;
}

.woningen-intro p {
    font-size: 17px;
    line-height: 30px;
}

.titel-wrap h2 {
    color: #719454;
}

.info p {
    line-height: 25px;
    margin-bottom: 0;

    font-weight: 500;
    font-size: 18px;
    text-align: right;
}

span.kleinetwee {
    font-size: 13px;
    position: relative;
    top: -4px;
    font-weight: 600;
}

.afbeelding {
    padding: 0 50px;
    margin-bottom: 40px;
}

.zutphen img {
    -webkit-box-shadow: 0 0 50px 1px rgba(0, 0, 0, .1);
    -moz-box-shadow: 0 0 50px 1px rgba(0, 0, 0, .1);
    box-shadow: 0 0 50px 1px rgba(0, 0, 0, .1);
    border-radius: 10px;
}

/* ======== FOOTER ======== */

img.onder-logo {
    width: 205px;
}

.ondermenu {
    padding-top: 30px;
    padding-bottom: 50px;
    background: #fff;
}

.innerwrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
}

label {
    font-family: "myriad-pro-black", sans-serif;
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 10px;

}

input,
textarea {
    font-size: 16px;
    border: none;
    padding: 7px 5px;
    font-family: "myriad-pro-black", sans-serif;

}

textarea {
    min-height: 50px;
    max-height: 200px;
    resize: vertical;
}

input.wpcf7-form-control.wpcf7-submit.has-spinner {
    width: auto;
    background: #000;
    color: #fff;
    font-size: 21px;
    height: auto !important;
    padding: 10px 30px;
    border-radius: 10px;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    font-weight: 600;
}

input.wpcf7-form-control.wpcf7-submit.has-spinner:hover {
    background: #709454;
}

.wpcf7-form p {
    margin-bottom: 10px !important;
}

button.btn-close {
    position: absolute;
    right: 10px;
    top: 10px;
}
.header-image {
    display: none;
    aspect-ratio: 16 / 8;
    object-fit: cover;
}

.slider-top img {
    aspect-ratio: 16 / 8;
    object-fit: cover;
}

img.onder-logo.faro {
    width: 110px;
}

img.onder-logo.schutte {
    width: 124px;
}

body.stop-scrolling {
    height: 100vh;
    overflow: hidden;
}

.menu-btn {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    display: none;
}

.menu-btn__burger,
.menu-btn__burger::after,
.menu-btn__burger::before {
    width: 30px;
    height: 3px;
    background: #333;
    border-radius: 5px;
    transition: all 0.3s ease-in-out;
    position: absolute;
}

.menu-btn__burger::before {
    content: '';
    transform: translateY(-10px);
}
.menu-btn__burger::after {
    content: '';
    transform: translateY(10px);
}

/* Hamburger naar Kruis Animatie */
.menu-btn.open .menu-btn__burger {
    transform: translateX(-50px);
    background: transparent;
}

.menu-btn.open .menu-btn__burger::before {
    transform: rotate(45deg) translate(35px, -35px);
    background: #fff;
    /* Kleur verandert naar wit voor zichtbaarheid op menu */
}

.menu-btn.open .menu-btn__burger::after {
    transform: rotate(-45deg) translate(35px, 35px);
    background: #fff;
}

.nav-menu {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100%;
    background-color: #7b659c;
    z-index: 998;
    transition: all 0.4s ease-in-out;
    padding-top: 80px;
    padding-left: 20px;
    padding-right: 30px;
}

.mobiel-menu ul#menu-hoofdmenu {
    list-style: none;
    display: flex;
    gap: 10px;
    margin-bottom: 0;
    flex-direction: column;
    justify-content: flex-start;
}

.mobiel-menu ul#menu-hoofdmenu a {
    font-size: 25px;
    font-weight: 400;
    color: #fff;

    padding-top: 0;
    padding-bottom: 0;
}

.nav-menu.open {
    right: 0;
}

.nav-menu ul {
    list-style: none;
    padding: 0 40px;
}

.nav-menu ul li a {
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    display: block;
    margin-bottom: 10px;
    margin-top: 10px;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    z-index: 997;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
}

.overlay.open {
    opacity: 1;
    visibility: visible;
}

.mobiel-menu {
    position: relative;
    width: 100%;
    max-width: 400px;
    overflow: hidden;
    transition: height 0.3s ease;
}

.mobiel-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
    transition: transform 0.3s ease-in-out;
}

div#leefgalerij {
    padding-top: 50px;
    padding-bottom: 50px;
}

.mobiel-menu > ul {
    position: relative;
}

.mobiel-menu ul .sub-menu {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 100%;
    background: #4E663A;
    transform: translateX(100%);
    z-index: 10;
    visibility: hidden;
    transition: transform 0.3s ease-in-out, visibility 0s linear 0.3s;
}

.mobiel-menu ul .sub-menu.is-active {
    transform: translateX(0);
    visibility: visible;
    transition-delay: 0s;
}

.mobiel-menu li a {
    display: block;
    padding: 15px 20px;
    color: #333;
    text-decoration: none;
}

.menu-back-button {
    display: block;
    padding: 15px 20px;
    background: #3f5330;
    font-weight: bold;
    cursor: pointer;
    color: #fff;

    font-size: 19px;
}

ul#menu-hoofdmenu-2 {
    list-style: none;
    display: flex;
    gap: 20px;
    margin-bottom: 0;
}

ul#menu-hoofdmenu-2 a {
    font-size: 22px;
    font-weight: 400;
    color: #000;
    padding-top: 25px;
    padding-bottom: 25px;
    font-family: "krub", sans-serif;
}

/*===== FAQ =====*/

.faq-wrapper {
    margin: 40px auto;
}

.faq-group-title {
    font-size: 24px;
    color: #2c3e50;
    margin-top: 30px;
    margin-bottom: 15px;
    padding-left: 5px;
}

.faq-container {
    background: #ffffff;
    padding: 10px 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
}

.faq-item {
    border-bottom: 1px solid #eef2f5;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    font-size: 17px;
    font-weight: 600;
    color: #2c3e50;
    padding: 18px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    outline: none;
}

.arrow {
    width: 10px;
    height: 10px;
    border-right: 3px solid #719454;
    border-bottom: 3px solid #719454;
    transform: rotate(45deg);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-right: 5px;
    flex-shrink: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: #555;
    line-height: 1.6;
}

.faq-answer-content {
    padding-bottom: 18px;
}

.faq-item.active .arrow {
    transform: rotate(-135deg);
}

.onderfooter {
    padding-top: 10px;
    padding-bottom: 15px;
    background: #ebebeb;
}

.onderfooter a {
    color: #000;
    font-size: 13px;
    font-weight: 500;
}

.linksonder {
    display: flex;
    gap: 14px;
    justify-content: flex-end;
}

.ondermenu {
    padding-top: 50px;
    padding-bottom: 70px;
    background: #fff;
    text-align: center;
}

p.titel-footer {
    font-weight: 600;
    font-size: 17px;
    margin-bottom: 30px;
    border-bottom: 1px solid #dadada;
    padding-bottom: 20px;
    font-family: "krub", sans-serif;
    text-transform: uppercase;
}

.fluid-container.duurzaamheid {
    color: #fff;
    background: #55AF7F;
    padding-top: 80px;
    padding-bottom: 70px;
}

/* ======== SITUATIE ======== */

a.button-bekijk-woning {
    color: #fff;
    padding: 25px 20px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    letter-spacing: 2px;
    background: #000;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    font-family: "gotham", sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    margin-left: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

i.fa-solid.fa-arrow-right {
    margin-left: 10px;
    font-size: 17px;
}

span.onder.optie {
    pointer-events: none;
    opacity: 1 !important;
    background: #ffc200;
    padding: 5px 10px;
    border-radius: 50px;
    font-size: 15px;
}

.controls {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 5px;
    z-index: 10;
    font-family: "gotham", sans-serif;
    font-weight: 800;
}

.controls button {
    background: rgb(169 116 93);
    color: #fff;
    border: none;
    border-radius: 0;
    padding: 5px 10px;
    font-size: 16px;
    cursor: pointer;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    font-family: "gotham", sans-serif;
    font-weight: 800;
    background: #000;
}
#image-container {
    position: relative;
}

button#reset {
    font-size: 13px;
}

span.verkocht.onder.voorbehoud {
    pointer-events: none;
    opacity: 1 !important;
    background: #ffc200;
    color: #000;
    padding: 7px 10px;
    border-radius: 50px;
    font-size: 15px;
    top: 4px;
    position: relative;
}

span.verkocht {
    pointer-events: none;
    opacity: 1;
    background: #c60d0d;
    color: #fff;
    padding: 7px 10px;
    border-radius: 50px;
    font-size: 15px;
    top: 4px;
    position: relative;
}

.modal tr {
    height: 60px;
    padding-left: 5px;
    padding-right: 5px;
    font-size: 16px;
    border-bottom: 1px dotted #dadada;
}

.modal tr:last-child {
    border-bottom: 0 dotted #dadada;
}

.modal-body.woning-modal {
    padding: 0;
}

.woning-modal img {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

span.smalltwee {
    font-size: 12px;
    position: relative;
    top: -5px;
    font-weight: 400;
}

.infogedeelte {
    padding: 35px 30px;
}

.blok-legenda.kavel-blok {
    background: #bb9d1c;
    border: none!important;
}

.blok-legenda.kavel-tok2 {
    background: #e5923e;
    border: none !important;
}

.kavel-starter {
    background: #88c169;
    border: none !important;
}

.blok-legenda.kavel-tok {
    background: #a9a2c1;
    border: none !important;
}

.blok-legenda.kavel-huur {
    background: #74689a;
    border: none !important;
}

.kavel-middenhuur {
    background: #e0b888;
    border: none !important;
}

h3.titel-legenda {
    margin-bottom: 30px;
    padding-bottom: 20px;
    font-size: 25px;
    font-weight: 700;
}

.blok-legenda.kavel-blok {
    background: #78a45a;
    border: none !important;
}

.blok-legenda {
    min-width: 50px;
    height: 30px;
    border-radius: 0;
}

.item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 0;
    border-bottom: 0;
    padding-bottom: 20px;
}

.item:last-child {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 25px;
    border-bottom: 0 dashed #dadada;
    padding-bottom: 25px;
}

.inner-legenda {
    padding: 50px 40px;
}

h2.bouwnummer-title {
    display: none;
}

.infogedeelte h1 {
    font-size: 17px;
    font-weight: 300;
}

h2.woningtype-info {
    font-size: 30px;
    font-weight: 600;
}

.modal table {
    margin-top: 20px;
    margin-bottom: -30px;
}

.modal-content {
    border-radius: 10px !important;
    border: 0;
    -webkit-box-shadow: 0 0 50px 1px rgba(0, 0, 0, .1);
    -moz-box-shadow: 0 0 50px 1px rgba(0, 0, 0, .1);
    box-shadow: 0 0 50px 1px rgba(0, 0, 0, .1);
}

.modal {
    background: rgb(0 0 0 / 6%);
    -webkit-backdrop-filter: blur(5px) brightness(90%);
    backdrop-filter: blur(5px) brightness(90%);
}

.legenda-blok {
    background-color: #fff;
    padding: 40px;
    display: flex;
    justify-content: space-between;
}

.legenda-blok-inner {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.blok {
    width: 40px;
    height: 25px;
    display: flex;
    margin-right: 10px;
}

.kleur1 {
    background: #5b327b;
}

.kleur2 {
    background: #5b327b;
}

.kleur3 {
    background: #5b327b;
}

.kleur4 {
    background: #5b327b;
}

button.sluitknlop {
    position: absolute;
    background: #000;
    color: #fff;
    border: none;
    font-size: 18px;
    padding: 8px 15px;
    font-weight: 500;
    right: 0;
    font-family: "gotham", sans-serif;
    border-top-right-radius: 10px;
    border-bottom-left-radius: 10px;
}

.legendablok {
    background: #fff;
}

div#situatie {
    background: #eaf3e9;
    padding-top: 90px;
    padding-bottom: 90px;
}

.schaduw {
    -webkit-box-shadow: 0 0 50px 1px rgba(0, 0, 0, .1);
    -moz-box-shadow: 0 0 50px 1px rgba(0, 0, 0, .1);
    box-shadow: 0 0 50px 1px rgba(0, 0, 0, .1);
    border-radius: 20px;
}

.kavel.vrij {
    fill: #00800000;
    opacity: 1;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    stroke-width: 10px;
    stroke: #000;
}

a.button-bekijk-woning.Vrijstaande.woning-button {
    background: var(--vrijstaand);
}

a.button-bekijk-woning.Rijwoning-button {
    background: var(--rij);
}

a.button-bekijk-woning.Twee-onder-een-kap-woning-button {
    background: var(--tok);
}

.vrij:hover {
    fill: #008000 !important;
    opacity: 0.85;
    cursor: pointer;
    stroke-width: 10px;
    stroke: #008000 !important;
}

polygon.kavel.Te.koop {
    fill: green;
    opacity: 0;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

polygon.kavel.Te.koop:hover {
    fill: green;
    opacity: 0.8;
    cursor: pointer;
}
.verkocht {
    fill: red;
    opacity: 0.75;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    pointer-events: none;
}

.witte-content-vervolg {
    padding-top: 10px;
    padding-bottom: 20px;
}

.verkocht2 {
    color: red;
}

.optie2 {}

.vrij2 {
    color: green;
}

.verkocht:hover {
    fill: red;
    opacity: 0.8;
    cursor: pointer;
}

.optie {
    fill: #ffc200;
    opacity: 0.5;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
}

.optie:hover {
    fill: #ffc200;
    opacity: 0.8;
    cursor: pointer;
}

.voorbehoud {
    pointer-events: all;
    fill: #ffc200;
    opacity: 0.5;
}

.voorbehoud:hover {
    fill: #ffc200;
    opacity: 0.8;
    cursor: pointer;
}

span.voorbehoud {
    fill: #000 !important;
    opacity: 1;
    pointer-events: none;
}

.innerwit-informatie tr {
    height: 65px;
    border-bottom: 1px solid #ffffff4f;
    font-size: 17px;
    line-height: 30px;
    font-family: "gotham", sans-serif;
}

.innerwit-informatie tr:last-child {
    height: 55px;
    border-bottom: none;
}

.inner {
    background: #ffffff;
    padding: 20px;
    -webkit-box-shadow: 0 -5px 50px 0 rgb(0 0 0 / 1%);
    -moz-box-shadow: 0 -5px 50px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 20px 0 rgb(0 0 0 / 5%);
    border-radius: 0;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.21s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
}

.inner:hover {
    transform: translate(0px, -5px);
}

.inner .mt-2 {
    font-size: 18px;
    font-weight: 600;
}

img.contact-logo {
    width: 290px;
    margin-bottom: 20px;
}

p.gespiegeld-getekend {
    text-align: center;
    font-size: 19px;
    margin-bottom: 40px;
    font-weight: 600;
}


a.button-bekijk-woning.levensloop-hoek-button {
    background: #6d9f3d;
}

a.button-bekijk-woning.starterswoning-tussen-button {
    background: #87c168;
}

a.button-bekijk-woning.eengezinswoning-hoek-button {
    background: #7b659d;
}

a.button-bekijk-woning.eengezinswoning-tussen-button {
    background: #b7accb;
}

a.button-bekijk-woning.vrijstaand-bnr18-button {
    background: #ed8a09;
    color: #2b2b2b;
}

a.button-bekijk-woning.vrijstaand-bnr19-button {
    background: #eabd84;
    color: #2b2b2b;
}

input#q77525,
input#q77525_confirmation,
input#q77526,
input#q77527,
input#q77528,
input#q77529,
input#q77943,
input#q77946,
input#q77948,
input#q77949,
input#q77950,
input#q77951,
input#q77952,
input#q77953,
input#q77954,
input#q77955,
input#q77955_confirmation,
input#q77956,
input#q77957,
input#q77958,
input#q77976,
select#q77947,
select#q77958,
select#q77959,
select#q77961,
select#q77977_119489,
select#q77977_119490,
select#q77977_119491,
select#q77977_119492,
select#q77977_119493,
select#q77977_119494,
select#q77977_119495,
select#q77977_119496,
textarea#q77530 {
    background: #dadada;
    width: 100% !important;
    background-color: #fff;
    border: 1px solid #cdcdcd;
    height: 45px;
    margin-top: 5px;
    padding: 10px;
    color: #000;
    font-size: 16px;
    border-radius: 10px;
}

div#tq77973 label,
div#tq77974 label,
div#tq77981 label {
    display: inline-flex;
}

div#tq77945 label {
    font-family: "krub", sans-serif;
    font-size: 20px;
    margin-top: 30px;
    font-weight: 800 !important;
}

div#tq77944 label {
    font-size: 31px;
    font-weight: 600;
    font-family: "krub", sans-serif;
}

#q77944 label.question {display:none!important;}

textarea#q77530 {
    min-height: 150px;
}

.formulier {
    margin-top: -20px;
}

.formulier label {
    display: inline-block;
    color: #000;
    line-height: 30px;
    margin-top: 10px;
    font-weight: 400;
    font-family: "open-sans", sans-serif;
}

.formulier {
    background: #fff;
    border-radius: 30px;
    padding-top: 60px;
    padding-left: 50px;
    padding-right: 50px;
    text-align: left;
    padding-bottom: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.fluid-container.witte-content.content-plattegronden {
    padding-top: 60px;
    padding-bottom: 60px;
}




.fluid-container.contact-wrap {
    padding-top: 60px;
    padding-bottom: 60px;
}

input#q77943,
input#q77946,
input#q77947,
input#q77948,
input#q77949,
input#q77950,
input#q77951,
input#q77952,
input#q77953,
input#q77954,
input#q77955,
input#q77955_confirmation,
input#q77956,
input#q77957,
input#q77958,
input#q77976,
input#q77977,
input#q77978,
input#q77979,
input#q77980,
input#q77981,
input#q77982,
input#q77983,
input#q77984,
input#q77985,
input#q77986,
input#q77987,
input#q77988,
input#q77989,
input#q77990,
select#q77947,
select#q77958,
select#q77959,
select#q77961,
select#q77977_119489,
select#q77977_119490,select#q77977_119491,
select#q77977_119492,select#q77977_119493,
select#q77977_119494,select#q77977_119495,
select#q77977_119496 {
    background: #dadada;
    width: 100% !important;
    background-color: #f1f1f1;
    border: 1px solid #cdcdcd;
    height: 45px;
    margin-top: 5px;
    padding: 10px;
    color: #000;
    font-size: 16px;
    border-radius: 10px;
}

button.btn-style {
    background: #7b659c;
    padding: 12px 60px;
    border-radius: 50px;
    font-family: "stolzl", sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
    font-size: 18px;
    min-width: 200px;
    text-align: center;
    letter-spacing: 1px;
    border: none;
    margin-top: 50px;
}

div#tq77979 p {
    font-family: "myriad-pro-black", sans-serif;
    font-size: 16px;
}

div#tq77975 .question {
    font-weight: 800 !important;
    font-size: 20px;
    margin-top: 30px;
    font-family: "krub", sans-serif;
}

div#tq77973 input[type="radio"] {
    margin-right: 5px;
}

div#tq77974 input[type="radio"] {
    margin-right: 5px;
}

#q77944 .question{
    display:none!important;
}

div#formname {
    font-size: 30px;
    font-weight: 700;
}

.formulier label {
    display: inline-block;
    color: #000;
    line-height: 30px;
    margin-top: 10px;
    font-weight: 400;
}

label {
    font-family: "myriad-pro-black", sans-serif;
    font-weight: 500;
    font-size: 16px;
    margin-top: 10px;
    padding-top: 0;
    margin-bottom: 0px !important;
}
.plattegronden-levensloop-hoek {
    background: #edf4ec;
}



.plattegronden-starterswoning-tussen {
    background: #e8f3e8;
}

.plattegronden-eengezinswoning-hoek {
    background: #dedeea;
}

.plattegronden-eengezinswoning-tussen {
    background: #e4e3ed;
}

.plattegronden-vrijstaand-bnr18 {
    background: #f7dcc1;
}

.plattegronden-vrijstaand-bnr19 {
    background: #f8e1c6;
}

.content-plattegronden h1 {
    color: #7b659c;
    font-weight: 500;
    margin-bottom: 20px;
}

.innerwit-informatie {
    background: #7b659c;
    color: #fff !important;
    padding: 30px;
    border-radius: 0;
    position: relative;
}

.download-button {
    color: #000;
    border: 1px solid #000;
    background: #fff;
    padding: 20px 20px;
    font-size: 16px;
    display: block;
    font-weight: 400;
    flex-direction: row;
    border-radius: 125px;
    display: flex;
    align-items: center;
    width: 32.3333%;
    font-weight: 600;
    margin-bottom: 13px;
    text-align: center;
    justify-content: space-between;
}

.download-button:hover {
    background: #7c659d;
    color: #fff;
    border: 1px solid #7c659d;
}

.downloads-rij {
    gap:10px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: flex-start;
}

.downloads-blok h4 {
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 40px;
}


a.interesse-knop {
    background: #fff;
    padding: 12px 60px;
    border-radius: 50px;
    font-family: "stolzl", sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    color: #000;
    font-size: 15px;
    min-width: 200px;
    text-align: center;
    letter-spacing: 1px;
}

div#formname {
    display: none;
}

li {
    font-size: 17px;
    line-height: 30px;
	font-family: "krub", sans-serif;
}

form#survey {
    border: 1px solid #dadada;
    padding: 40px 40px;
    border-radius: 11px;
    margin-top: 0;
}

div#tq77981 input[type="radio"] {
    margin-right: 5px;
}

a.linkspelregels {
    text-decoration: underline;
    color: #000;
}


a.knop-home.alt-button {
    border: 2px solid #7b659c;
    background: #fff;
    color: #7b659c;
}

h2.wp-block-heading.title-architiect {
    font-size: 30px;
    margin-top: 40px;
}

.arctitect-aan-het-woord {
    background: #eaf3e9;
    padding-top: 80px;
    padding-bottom: 80px;
}

.inner-wrap {
    padding: 40px 40px;
}

.inner-wrap h2 {
    font-weight: 500;
    font-size: 37px;
    margin-bottom: 20px;
}

img.img-fluid.img-arc {
    border-radius: 20px;
    -webkit-box-shadow: 0 0 50px 1px rgba(0, 0, 0, .1);
    -moz-box-shadow: 0 0 50px 1px rgba(0, 0, 0, .1);
    box-shadow: 0 0 50px 1px rgba(0, 0, 0, .1);
}

img.logo-arch {
    display: block;
    width: 240px;
    margin-top: 20px;
}

.inner-wrap strong {
    font-weight: 600;
}

a.meer-margin {
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
}

.inschrijfprocedure a {
    background: #7b659c;
    padding: 12px 35px;
    border-radius: 50px;
    font-family: "stolzl", sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
    font-size: 15px;
    min-width: 200px;
    text-align: center;
    letter-spacing: 1px;
    margin-bottom: 40px;
    display: inline-flex;
    align-items: center;
}

.inschrijfprocedure a:hover {
    background: #000;
    color: #fff;

}