 /*** Root variables ***/

:root {
    --clr-green: #D5D12C;
    --clr-light-grey: #BBBBBB;
    --clr-mid-grey: #999999;
    --clr-grey: #3D3D3D;
    --clr-dark-grey: #333333;
    --clr-white: #FFFFFF;
    --clr-black: #111111;

    --text-2xl: clamp(2.5rem, 1.672rem + 3.488vi, 4.375rem); /* 40px - 70px */
    --text-1xl: clamp(2.25rem, 1.741rem + 2.143vi, 3.75rem); /* 36px - 60px */
    --text-xl: clamp(1.75rem, 1.198rem + 2.326vi, 3rem); /* 28px - 48px */
    --text-lg: clamp(1.625rem, 1.349rem + 1.163vi, 2.25rem); /* 26px - 36px */
    --text-md: clamp(1.5rem, 1.279rem + 0.93vi, 2rem); /* 24px - 32px */
    --text-sm: clamp(1.375rem, 1.32rem + 0.233vi, 1.5rem); /* 22px - 24px */
    --text-xs: clamp(1.125rem, 1.07rem + 0.233vi, 1.25rem); /* 18px - 20px */
    --text-2xs: clamp(1rem, 0.945rem + 0.233vi, 1.125rem); /* 16px - 18px */
    --text-3xs: 1rem; /* 16px */

    --line-height-sm: 1.2em;
    --line-height-lg: 1.5em;

    --border-radius-sm: 4px;
}


/*** Font settings ***/

@font-face {
    font-family: 'bebas-neue';
    src: URL('../bebas-neue.ttf') format('truetype');
}

@font-face {
    font-family: 'museo-sans';
    src: URL('../museo-sans-100.otf') format('opentype');
    font-weight: 100;
}

@font-face {
    font-family: 'museo-sans';
    src: URL('../museo-sans-100-italic.otf') format('opentype');
    font-weight: 100;
    font-style: italic;
}

@font-face {
    font-family: 'museo-sans';
    src: URL('../museo-sans-300.otf') format('opentype');
    font-weight: 300;
}

@font-face {
    font-family: 'museo-sans';
    src: URL('../museo-sans-500.otf') format('opentype');
    font-weight: 500;
}

@font-face {
    font-family: 'museo-sans';
    src: URL('../museo-sans-700.otf') format('opentype');
    font-weight: 700;
}

.font-primary {
    font-family: "bebas-neue", sans-serif;
}
  
.font-secondary {
    font-family: "museo-sans", sans-serif;
}



/*** Text responsive classes ***/
/* https://chrisburnell.com/clamp-calculator/ min.viewport = 380px, max.viewport = 1500px */

/* 40px - 70px */
.text-2xl, .text-2xl > div > * {
	font-size: var(--text-2xl);
    line-height: var(--line-height-sm);
}

/* 36px - 60px */
.text-1xl, .text-1xl > div > * {
	font-size: var(--text-1xl);
    line-height: var(--line-height-sm);
}

/* 28px - 48px */
.text-xl, .text-xl > div > * {
	font-size: var(--text-xl) !important;
    line-height: var(--line-height-sm);
}

/* 26px - 36px */
.text-lg, .text-lg > div > * {
	font-size: var(--text-lg) !important;
    line-height: var(--line-height-sm);
}

/* 24px - 32px */
.text-md, .text-md > div > * {
	font-size: var(--text-md);
    line-height: var(--line-height-sm);
}

/* 22px - 24px */
.text-sm, .text-sm > div > * {
	font-size: var(--text-sm);
    line-height: var(--line-height-sm);
}

/* 18px - 20px */
.text-xs, .text-xs > div > * {
	font-size: var(--text-xs);
    line-height: var(--line-height-lg);
}

/* 16px - 18px */
.text-2xs, .text-2xs > div > * {
	font-size: var(--text-2xs);
    line-height: var(--line-height-lg);
}

/* 16px */
.text-3xs, .text-3xs > div > * {
	font-size: var(--text-3xs);
    line-height: var(--line-height-lg);
}

/*** Utility classes ***/

.text-white {
    color: var(--clr-white);
}

.text-green {
    color: var(--clr-green);
}

.text-dark-grey {
    color: var(--clr-dark-grey);
}

.text-light-grey {
    color: var(--clr-light-grey);
}

.text-mid-grey {
    color: var(--clr-mid-grey);
}

.text-hover-green, .text-hover-white {
    transition: color 0.3s ease;
}

.text-hover-green:hover, a.text-hover-green:hover {
    color: var(--clr-green);
}

.text-hover-white:hover, a.text-hover-white:hover {
    color: var(--clr-white);
}

.font-weight-100 {
    font-weight: 100;
}

.font-weight-300 {
    font-weight: 300;
}

.font-weight-500 {
    font-weight: 500;
}

.font-weight-700 {
    font-weight: 700;
}

.italic {
    font-style: italic;
}

.underline {
    text-decoration: underline;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

@media (max-width: 980px) {
    .text-right {
        text-align: left;
    }
}

.bg-green {
    background-color: var(--clr-green);
}

.bg-light-grey {
    background-color: var(--clr-light-grey);
}

.bg-white {
    background-color: var(--clr-white);
}

.p-0 {
    padding: 0px;
}

.p-10 {
    padding: 10px;
}

.p-15 {
    padding: 15px;
}

.p-20 {
    padding: 20px;
}

.p-30 {
    padding: 30px;
}

.pt-20 {
    padding-top: 20px;
}

.pt-50 {
    padding-top: 50px;
}

.pl-30 {
    padding-left: 30px;
}

.pl-50 {
    padding-left: 50px;
}

.pb-100 {
    padding-bottom: 100px;
}

.pb-150 {
    padding-bottom: 150px;
}

.px-20 {
    padding-left: 20px;
    padding-right: 20px;
}

.py-10 {
    padding-top: 10px;
    padding-bottom: 10px;
}

.py-30 {
    padding-top: 30px;
    padding-bottom: 30px;
}

.py-50 {
    padding-top: 50px;
    padding-bottom: 50px;
}

.mt-5 {
    margin-top: 5px;
}

.mt-10 {
    margin-top: 10px;
}

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

.mb-10 {
    margin-bottom: 10px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mr-10 {
    margin-right: 10px;
}

.border-radius-10 {
    border-radius: 10px;
}

.border-radius-tr-sm {
    border-top-right-radius: var(--border-radius-sm);
}

.border-radius-tl-sm {
    border-top-left-radius: var(--border-radius-sm);
}

.border-radius-br-sm {
    border-bottom-right-radius: var(--border-radius-sm);
}

.border-radius-bl-sm {
    border-bottom-left-radius: var(--border-radius-sm);
}

.inline-block {
    display: inline-block;
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

@media (max-width: 980px) {    
    .flex-tablet-col {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .flex-mobile-col {
        flex-direction: column;
    }
}

.flex-row {
    flex-direction: row;
}

.flex-wrap {
    flex-wrap: wrap;
}

.flex-1 {
    flex: 1;
}

.flex-wrap-reverse {
    flex-wrap: wrap;
}

.min-w-250 {
    min-width: 250px;
}

.grid {
    display: grid;
}

.grid-cols-dynamic {
    --min-card-width: 220px;
    grid-template-columns: repeat(auto-fit, minmax(min(var(--min-card-width), 100%), 1fr));
}

.grid-cols-4 {
    grid-template-columns: repeat(4, 1fr);
}

.grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-cols-1 {
    grid-template-columns: 1fr;
}

.grid-rows-3 {
    grid-template-rows: auto auto 1fr;
}

.grid-rows-subgrid {
    grid-template-rows: subgrid;
}

.grid-row-span-3 {
    grid-row: span 3;
}

@media (max-width: 1024px) {
    .grid-cols-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .grid-rows-3 {
        grid-template-rows: repeat(6, auto);
    }
}

@media (max-width: 768px) {
    .grid-cols-4 {
        grid-template-columns: 1fr;
    }
    
    .grid-rows-3 {
        grid-template-rows: none;
    }
    
    .sensbouw_stap_item {
        display: block !important;
        margin-bottom: 40px;
    }
    
    .grid-rows-subgrid {
        grid-template-rows: none;
    }
    
    .grid-row-span-3 {
        grid-row: auto;
    }
}

.gap-10 {
    gap: 10px;
}

.gap-20 {
    gap: 20px;
}

.gap-40 {
    gap: 40px;
}

@media (max-width: 768px) { 
    .mobile-gap-20 {
        gap: 20px;
    }
}

.align-center {
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

.justify-center {
    justify-content: center;
}

.justify-end {
    justify-content: flex-end;
}

.h-100 {
    height: 100%;
}

.h-800 {
    height: 800px;
}

.h-850 {
    height: 850px;
}

.h-880 {
    height: 880px;
}

.h-400 {
    height: 400px;
}

.h-350 {
    height: 350px;
}

.border-radius-sm {
    border-radius: var(--border-radius-sm);
}

.absolute {
    position: absolute;
}   

.relative {
    position: relative;
}

.top-0 {
    top: 0;
}

.top-50 {
    top: 50%;
}

.top--157px {
    top: -157px;
}

.left-0 {
    left: 0;
}

.right-0 {
    right: 0;
}

.right-25 {
    right: 25%;
}

.right-43 {
    right: 43%;
}

.bottom-0 {
    bottom: 0;
}

.bottom-50 {
    bottom: 50%;
}

.bottom-40 {
    bottom: 40%;
}

.right-40 {
    right: 40%;
}

.w-full {
    width: 100%;
}

.w-50 {
    width: 50%;
}

.max-w-560 {
    max-width: 560px;
}

.w-fit {
    width: fit-content;
}


/*** Custom css ***/

.et_pb_menu__wrap {
    justify-content: flex-end !important;
}

.current-menu-item > a {
	color: var(--clr-green) !important;
}


/* Shortcode : [sensbouw_diensten_slider] */

#sensbouw_diensten_slider_card_image_wrapper:hover #sensbouw_diensten_slider_card_image {
    transform: scale(1.03);
}

#sensbouw_diensten_slider_card_image_wrapper {
    overflow: hidden;
    border-radius: var(--border-radius-sm);
    width: 300px;
    height: 300px;
    margin-right: 8px;
    margin-left: 8px;
}

#sensbouw_diensten_slider_card_image {
    height: 300px;
    width: 300px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: var(--border-radius-sm);
    transition: transform 0.3s ease;
}

#sensbouw_diensten_slider_card_content {
    padding-top: 20px;
}

/* Hide navigation arrows on smaller screens */
@media (max-width: 768px) {
    .sensbouw_diensten_slider_prev,
    .sensbouw_diensten_slider_next {
        display: none !important;
    }
}



/* Shortcode : [sensbouw_diensten_grid] */
#sensbouw_diensten_grid {
    --min-card-width: 380px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(var(--min-card-width), 100%), 1fr));
	gap: 1rem;
}

#sensbouw_diensten_grid_card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: transform 0.3s ease;
}

#sensbouw_diensten_grid_card:hover #sensbouw_diensten_grid_card_image {
    transform: scale(1.03);
}

#sensbouw_diensten_grid_card_image_wrapper {
    overflow: hidden;
    border-radius: var(--border-radius-sm);
}

#sensbouw_diensten_grid_card_image {
    height: 300px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: var(--border-radius-sm);
    transition: transform 0.3s ease;
}

#sensbouw_diensten_grid_card_content {
    padding-top: 10px;
}


/* Shortcode : [sensbouw_inspiratie_blocks] */

#sensbouw_inspiratie_blocks {
    display: flex;
    justify-content: center;
}

#sensbouw_inspiratie_blocks_wrapper {
    display: flex;
    flex-direction: row;
    gap: 16px;
}

.sensbouw_inspiratie_block_wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
}

#sensbouw_inspiratie_blocks_left_link:hover .sensbouw_inspiratie_image_layer,
#sensbouw_inspiratie_blocks_middle_link:hover .sensbouw_inspiratie_image_layer,
#sensbouw_inspiratie_blocks_right_link:hover .sensbouw_inspiratie_image_layer {
    transform: scale(1.02);
}

.sensbouw_inspiratie_block_image {
    position: relative;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    background-color: var(--clr-light-grey);
}

#sensbouw_inspiratie_blocks_left {
    width: 500px;
    height: 300px;
}

#sensbouw_inspiratie_blocks_middle {
    width: 960px;
    height: 650px;
}

#sensbouw_inspiratie_blocks_right {
    width: 500px;
    height: 300px;
}

.sensbouw_inspiratie_image_layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 1;
    z-index: 2;
    transition: transform 0.3s ease;
}

.sensbouw_inspiratie_block_content {
    padding: 0;
    opacity: 1;
}

.sensbouw_inspiratie_block_title {
    margin: 0 0 4px 0;
}

.sensbouw_inspiratie_block_location {
    margin: 0;
}

.sensbouw_location_wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

#navigation_wrapper {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 0px;
    z-index: 10;
}

#navigation_button_left,
#navigation_button_right {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    opacity: 0.8;
}

#navigation_button_left:hover,
#navigation_button_right:hover {
    opacity: 1;
    transform: scale(1.1);
}

#navigation_button_left:disabled,
#navigation_button_right:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: scale(1);
}

#navigation_button_left svg,
#navigation_button_right svg {
    display: block;
}

#sensbouw_inspiratie_blocks_left_link,
#sensbouw_inspiratie_blocks_middle_link,
#sensbouw_inspiratie_blocks_right_link {
    text-decoration: none;
    display: block;
}

#sensbouw_inspiratie_blocks_left_link:hover,
#sensbouw_inspiratie_blocks_middle_link:hover,
#sensbouw_inspiratie_blocks_right_link:hover {
    text-decoration: none;
}

/* Responsive design for sensbouw_inspiratie_blocks */
@media (max-width: 1450px) {
    /* Hide the right block and show only 2 blocks */
    .sensbouw_inspiratie_block_wrapper:last-child {
        display: none;
    }
    
    /* Make both remaining blocks scale proportionally */
    #sensbouw_inspiratie_blocks_left {
        width: calc(45vw - 8px);
        height: calc((45vw - 8px) * 0.6);
        max-width: 500px;
        max-height: 300px;
        min-width: 300px;
        min-height: 180px;
    }
    
    #sensbouw_inspiratie_blocks_middle {
        width: calc(45vw - 8px);
        height: calc((45vw - 8px) * 0.6);
        max-width: 500px;
        max-height: 300px;
        min-width: 300px;
        min-height: 180px;
    }
    
    /* Move navigation to the second (middle) block */
    #navigation_wrapper {
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 800px) {
    /* Make blocks scale down */
    #sensbouw_inspiratie_blocks_left,
    #sensbouw_inspiratie_blocks_middle {
        width: calc(50vw - 32px);
        height: calc((50vw - 32px) * 0.6);
        min-width: 280px;
        min-height: 168px;
    }
    
    /* Reduce gap for smaller screens */
    #sensbouw_inspiratie_blocks_wrapper {
        gap: 12px;
    }
    
    /* Hide the left block and show only 1 block */
    .sensbouw_inspiratie_block_wrapper:first-child {
        display: none;
    }
    
    /* Make the middle block full width but still small */
    #sensbouw_inspiratie_blocks_middle {
        width: calc(90vw - 40px);
        height: calc((90vw - 40px) * 0.6);
        max-width: 500px;
        max-height: 300px;
    }
    
    /* Move navigation underneath the location text */
    #navigation_wrapper {
        position: static;
        margin-top: 0px;
        display: flex;
        justify-content: start;
        gap: 8px;
    }
    
    /* Adjust navigation button size for mobile */
    #navigation_button_left svg,
    #navigation_button_right svg {
        width: 40px;
        height: 40px;
    }
}


/* Shortcode : [sensbouw_quotes_slider] */

#sensbouw_quotes_slider {
    position: relative;
    padding: 40px 20px;
    text-align: center;
}

#sensbouw_quotes_slider_content {
    position: relative;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sensbouw_quote_layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 1;
    z-index: 2;
}

.sensbouw_quote_text {
    font-style: italic !important;
    margin: 0 0 30px 0;
    line-height: var(--line-height-lg) !important;
    text-align: center;
    font-size: var(--text-lg) !important;
    color: var(--clr-white) !important;
    font-family: "museo-sans", sans-serif !important;
}

.sensbouw_quote_author {
    text-align: center;
}

.sensbouw_quote_auteur {
    margin: 0 0 4px 0;
    padding: 0;
}

.sensbouw_quote_functie {
    margin: 0;
    padding: 0;
    font-weight: 300 !important;
}


/* Shortcode : [sensbouw_usps_slider] */

#sensbouw_usps_slider {
    padding: 40px 20px;
}

#sensbouw_usps_slider_wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    #sensbouw_usps_slider_wrapper {
        grid-template-columns: 1fr;
        gap: 0px;
    }
}

.sensbouw_usp_column {
    text-align: center;
}

.sensbouw_usp_content {
    position: relative;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sensbouw_usp_layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 1;
    z-index: 2;
}

.sensbouw_usp_titel {
    margin: 0px;
    text-align: center;
}

.sensbouw_usp_ondertitel {
    margin: 0;
    text-align: center;
    line-height: var(--line-height-lg) !important;
    font-weight: 300 !important;
}


/* Shortcode : [sensbouw_inspiratie_list] */

#sensbouw_inspiratie_list {
    padding: 40px 20px;
}

#sensbouw_inspiratie_filters {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    #sensbouw_inspiratie_filters {
        width: 100%;
    }
}

.sensbouw_filter_button {
    background: var(--clr-grey);
    border: none;
    color: var(--clr-white);
    padding: 12px 24px;
    border-radius: var(--border-radius-sm);
    font-family: "museo-sans", sans-serif;
    font-size: var(--text-3xs);
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.sensbouw_filter_button:hover,
.sensbouw_filter_button.active {
    background: var(--clr-green);
    color: var(--clr-dark-grey);
    font-weight: 300;
}

#sensbouw_inspiratie_posts {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.sensbouw_inspiratie_post {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 40px;
    background: var(--clr-grey);
    border-radius: var(--border-radius-sm);
}

@media (max-width: 980px) {
    .sensbouw_inspiratie_post {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.sensbouw_inspiratie_post_image {
    width: 100%;
    height: 300px;
    border-radius: var(--border-radius-sm) 0 0 var(--border-radius-sm);
    overflow: hidden;
    background-color: var(--clr-light-grey);
}

.sensbouw_inspiratie_image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.3s ease;
}

.sensbouw_inspiratie_post_content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 40px 40px 40px 0px;
    gap: 8px;
}

@media (max-width: 980px) {
    .sensbouw_inspiratie_post_image {
        border-radius: var(--border-radius-sm) var(--border-radius-sm) 0px 0px;
        height: 200px;
    }

    .sensbouw_inspiratie_post_content {
        gap: 16px;
        padding: 20px;
    }
}

.sensbouw_inspiratie_post_title {
    margin: 0;
}

.sensbouw_inspiratie_post_meta {
    display: flex;
    gap: 32px;
}

@media (max-width: 768px) {
    .sensbouw_inspiratie_post_meta {
        flex-direction: column;
        gap: 12px;
    }
}

.sensbouw_inspiratie_locatie {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sensbouw_inspiratie_locatie svg {
    flex-shrink: 0;
}

.sensbouw_inspiratie_dienst {
    font-weight: 500;
    gap: 12px;
    display: flex;
    align-items: center;
}

.sensbouw_inspiratie_samenvatting {
    margin: 0;
    line-height: var(--line-height-lg) !important;
}

.sensbouw_inspiratie_link {
    display: inline-block;
    font-weight: 500;
    transition: color 0.3s ease;
}

.sensbouw_inspiratie_link:hover {
    color: var(--clr-white);
}

#sensbouw_inspiratie_load_more {
    text-align: center;
}

#sensbouw_load_more_button {
    background: var(--clr-grey);
    border: none;
    color: var(--clr-white);
    padding: 12px 24px;
    border-radius: var(--border-radius-sm);
    font-family: "museo-sans", sans-serif;
    font-size: var(--text-xs);
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    margin-top: 0px;
}

#sensbouw_load_more_button:hover {
    background: var(--clr-green);
    color: var(--clr-dark-grey);
    font-weight: 300;
}

.sensbouw_inspiratie_post.has-gradient-overlay {
    position: relative;
}

.sensbouw_inspiratie_post.has-gradient-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(51, 51, 51, 0) 30%, rgba(51, 51, 51, 1) 75%);
    pointer-events: none;
    z-index: 1;
}

@media screen and (max-width: 980px) {
    .sensbouw_inspiratie_post.has-gradient-overlay::after {
        background: linear-gradient(180deg, rgba(51, 51, 51, 0) 30%, rgba(51, 51, 51, 1) 100%);
    }

    #sensbouw_load_more_button {
        margin-top: 20px;
    }   
}

.sensbouw_inspiratie_post.has-gradient-overlay .sensbouw_inspiratie_link {
    position: relative;
    z-index: 2;
    pointer-events: auto;
    opacity: 0.45;
}


.sensbouw_filter_buttons_desktop {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.sensbouw_filter_dropdown_mobile {
    display: none;
}

@media (max-width: 768px) {
    .sensbouw_filter_buttons_desktop {
        display: none;
    }
    
    .sensbouw_filter_dropdown_mobile {
        display: block;
        width: 100%;
        flex: 1;
    }
    
    .sensbouw_dropdown_container {
        position: relative;
        width: 100%;
        flex: 1;
    }
    
    .sensbouw_dropdown_trigger {
        background: var(--clr-grey);
        border: none;
        color: var(--clr-white);
        padding: 12px 20px;
        border-radius: var(--border-radius-sm);
        font-family: "museo-sans", sans-serif;
        font-size: var(--text-3xs);
        font-weight: 300;
        cursor: pointer;
        transition: all 0.3s ease;
        text-decoration: none;
        width: 100%;
        flex: 1;
        display: flex;
        justify-content: space-between;
        align-items: center;
        box-sizing: border-box;
    }
    
    .sensbouw_dropdown_trigger:hover,
    .sensbouw_dropdown_trigger.active {
        background: var(--clr-green);
        color: var(--clr-dark-grey);
    }
    
    .sensbouw_dropdown_trigger svg {
        transition: transform 0.3s ease;
    }
    
    .sensbouw_dropdown_trigger svg.rotated {
        transform: rotate(180deg);
    }
    
    .sensbouw_dropdown_menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--clr-grey);
        border-radius: var(--border-radius-sm);
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
        margin-top: 4px;
        width: 100%;
    }
    
    .sensbouw_dropdown_menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .sensbouw_dropdown_item {
        background: transparent;
        border: none;
        color: var(--clr-white);
        padding: 12px 20px;
        font-family: "museo-sans", sans-serif;
        font-size: var(--text-3xs);
        font-weight: 300;
        cursor: pointer;
        transition: all 0.3s ease;
        text-decoration: none;
        width: 100%;
        text-align: left;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        box-sizing: border-box;
    }
    
    .sensbouw_dropdown_item:last-child {
        border-bottom: none;
        border-radius: 0 0 var(--border-radius-sm) var(--border-radius-sm);
    }
    
    .sensbouw_dropdown_item:first-child {
        border-radius: var(--border-radius-sm) var(--border-radius-sm) 0 0;
    }
    
    .sensbouw_dropdown_item:hover,
    .sensbouw_dropdown_item.active {
        background: var(--clr-green);
        color: var(--clr-dark-grey);
    }
}


/* Shortcode : [sensbouw_breadcrumb] */

#sensbouw_breadcrumb {
    padding: 16px 0;
}

.sensbouw_breadcrumb_list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.sensbouw_breadcrumb_item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 0;
}

.sensbouw_breadcrumb_link {
    color: var(--clr-white);
    text-decoration: none;
    font-family: "museo-sans", sans-serif;
    font-size: var(--text-xs);
    font-weight: 300;
    transition: color 0.3s ease;
}

.sensbouw_breadcrumb_link:hover {
    color: var(--clr-white);
    text-decoration: underline;
}

.sensbouw_breadcrumb_current {
    color: var(--clr-green);
    font-family: "museo-sans", sans-serif;
    font-size: var(--text-xs);
    font-weight: 300;
}

.sensbouw_breadcrumb_separator {
    color: var(--clr-green);
    font-family: "museo-sans", sans-serif;
    font-size: var(--text-xs);
    font-weight: 300;
    user-select: none;
}

nav#sensbouw_breadcrumb {
    padding: 0;
}

nav#sensbouw_breadcrumb ol {
    padding: 0;
}

@media (max-width: 768px) {
    #sensbouw_breadcrumb {
        padding: 12px 0;
    }
    
    .sensbouw_breadcrumb_list {
        gap: 6px;
    }
    
    .sensbouw_breadcrumb_item {
        gap: 6px;
    }
}


/* Shortcode : [sensbouw_voordelen_list] */

#sensbouw_voordelen_list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    /* width: fit-content; */
    /* position: absolute; */
    top: 20px;
    /* transform: translateX(-200px); */
}

@media (max-width: 980px) {}

.sensbouw_voordeel_card {
    background: var(--clr-white);
    padding: 15px;
    border-radius: var(--border-radius-sm);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
}

.sensbouw_voordeel_ondertitel {
    margin: 0;
    padding: 0;
    line-height: var(--line-height-lg) !important;
    font-weight: 300 !important;
}

@media (max-width: 768px) {
    .sensbouw_voordeel_card {
        padding: 30px 20px;
    }
    
    #sensbouw_voordelen_list {
        gap: 16px;
    }
}


/* Shortcode : [sensbouw_vacature_list] */

#sensbouw_vacature_list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 100%;
}

.sensbouw_vacature_card_link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.sensbouw_vacature_card_link:hover {
    text-decoration: none;
    color: inherit;
}

.sensbouw_vacature_card {
    background: var(--clr-white);
    padding: 15px;
    border-radius: var(--border-radius-sm);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    cursor: pointer;
}

.sensbouw_vacature_card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.sensbouw_vacature_chevron {
    position: absolute;
    top: 15px;
    right: 15px;
    transform: rotate(180deg);
    transition: transform 0.3s ease;
}

.sensbouw_vacature_card:hover .sensbouw_vacature_chevron {
    transform: rotate(180deg) translateX(-2px);
}

.sensbouw_vacature_content {
    padding-right: 30px;
}

.sensbouw_vacature_title {
    margin: 0 0 8px 0;
    padding: 0;
}

.sensbouw_vacature_introductie {
    margin: 0;
    padding: 0;
    line-height: var(--line-height-lg) !important;
    font-weight: 300 !important;
}

@media (max-width: 768px) {
    .sensbouw_vacature_card {
        padding: 15px;
    }
    
    .sensbouw_vacature_content {
        padding-right: 25px;
    }
    
    #sensbouw_vacature_list {
        gap: 16px;
    }
}


/* Shortcode : [sensbouw_openingstijden] */

#sensbouw_openingstijden {
    padding: 20px 0;
}

.sensbouw_openingstijden_title {
    margin: 0 0 10px 0;
    padding: 0;
}

.sensbouw_openingstijden_list {
    display: flex;
    flex-direction: column;
}

.sensbouw_openingstijden_row {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 40px;
    align-items: center;
    transition: all 0.3s ease;
}

.sensbouw_openingstijden_day {
    margin: 0;
    padding: 0;
    text-align: left;
}

.sensbouw_openingstijden_hours {
    margin: 0;
    padding: 0;
    text-align: left;
}

.sensbouw_openingstijden_row.current-day {
    padding: 0px 16px;
    border-radius: var(--border-radius-sm);
    margin: 0 -16px;
}

@media (max-width: 768px) {
    .sensbouw_openingstijden_row {
        gap: 20px;
    }
    
    .sensbouw_openingstijden_row.current-day {
        margin: 0 -8px;
        padding: 8px;
    }
    
    #sensbouw_openingstijden {
        padding: 16px 0;
    }
    
    .sensbouw_openingstijden_title {
        margin: 0 0 24px 0;
    }
}

/* Ninja contact form */

#nf-field-1, #nf-field-2, #nf-field-3, #nf-field-5, #nf-field-6, #nf-field-7, #nf-field-8, #nf-field-9, #nf-field-10, #nf-field-12, #nf-field-13, #nf-field-30 {
    font-size: var(--text-2xs);
    color: #666666;
    padding: 20px 20px 15px 20px !important;
    border: 1px solid #DDDDDD;
    border-radius: var(--border-radius-sm);
    font-family: "museo-sans", sans-serif;
    font-weight: 300;
    background-color: var(--clr-white);
}

#nf-field-13, #nf-field-14, #nf-field-15, #nf-field-16, #nf-field-17, #nf-field-18, #nf-field-19, #nf-field-20, #nf-field-21, #nf-field-22, #nf-field-23, #nf-field-24, #nf-field-25, #nf-field-26, #nf-field-29, #nf-field-31, #nf-field-32, #nf-field-33, #nf-field-34 {
    font-size: var(--text-2xs);
    color: var(--clr-mid-grey);
    padding: 20px 20px 15px 20px !important;
    border: 0px solid #DDDDDD;
    border-radius: var(--border-radius-sm);
    font-family: "museo-sans", sans-serif;
    font-weight: 300;
    background-color: #f5f5f5;
}

@media (min-width: 601px) {
    #nf-field-7, #nf-field-16, #nf-field-24 {
        margin-left: 8px;
    }
}

#ninja_forms_required_items, .nf-field-container {
    margin-bottom: 8px !important;
}

#nf-form-title-1, #nf-form-title-2, #nf-form-title-3, .nf-form-fields-required, label[for="nf-field-1"], label[for="nf-field-2"], label[for="nf-field-3"], label[for="nf-field-5"], label[for="nf-field-6"], label[for="nf-field-7"], label[for="nf-field-8"], label[for="nf-field-9"], label[for="nf-field-10"], label[for="nf-field-12"], label[for="nf-field-13"], label[for="nf-field-14"], label[for="nf-field-15"], label[for="nf-field-16"], label[for="nf-field-17"], label[for="nf-field-18"], label[for="nf-field-19"], label[for="nf-field-20"], label[for="nf-field-21"], label[for="nf-field-22"], label[for="nf-field-23"], label[for="nf-field-24"], label[for="nf-field-25"], label[for="nf-field-26"], label[for="nf-field-29"], label[for="nf-field-30"], label[for="nf-field-31"], label[for="nf-field-32"], label[for="nf-field-33"], label[for="nf-field-34"] {
    display: none;
}

.nf-cell {
    padding: 0px !important;
}

/* File upload button */


div.nf-field-element {
    display: flex;
}

button.nf-fu-fileinput-button {
    display: flex;
    flex-grow: 1;
    background-color: #F5F5F5;
    color: var(--clr-mid-grey);
    font-size: var(--text-2xs);
    padding: 20px 20px 15px 20px;
    font-family: "museo-sans", sans-serif;
    border: 0px solid var(--clr-white);
    font-weight: 300;
    margin-bottom: 0px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    position: relative;
    border-radius: var(--border-radius-sm) 0px 0px var(--border-radius-sm);
}

div#nf-field-30-wrap > div.nf-field-element > button.nf-fu-fileinput-button {
    background-color: var(--clr-white);
}

button.nf-fu-fileinput-button::after {
    content: url("/wp-content/uploads/2025/07/icon-file-upload.png");
    position: absolute;
    top: 34%;
    right: 0;
}

button.nf-fu-fileinput-button:hover {
    background-color: #F5F5F5;
    color: var(--clr-mid-grey);
}

button.nf-fu-fileinput-button:hover ~ .files_uploaded {
    background-color: #F5F5F5;
}

button.nf-fu-fileinput-button > span {
    color: #666666;
}

.files_uploaded.visible {
    display: flex;
    align-items: center;
    background-color: #F5F5F5;
    font-size: var(--text-2xs);
    color: var(--clr-mid-grey);
    padding: 10px;
    font-weight: 300;
    font-family: "museo-sans", sans-serif;
    transition: all 0.3s ease;
}

.files_uploaded {
    display: flex;
    align-items: center;
    background-color: #F5F5F5;
    font-size: var(--text-2xs);
    color: var(--clr-mid-grey);
    padding: 10px;
    font-weight: 300;
    font-family: "museo-sans", sans-serif;
    transition: all 0.3s ease;
    border-radius: 0px var(--border-radius-sm) var(--border-radius-sm) 0px;
}

div#nf-field-30-wrap > div.nf-field-element > .files_uploaded {
    background-color: var(--clr-white);
}

a.delete {
    color: #F5F5F5;
    font-size: var(--text-2xs);
    font-weight: 300;
    font-family: "museo-sans", sans-serif;
    text-decoration: none;
}

.nf-response-msg {
    background-color: #fff;
    padding: 20px;
    border-radius: 4px;
}

.nf-response-msg p {
    font-size: var(--text-2xs);
    font-weight: 300;
    font-family: "museo-sans", sans-serif;
    color: var(--clr-blue-dark);
}

/* Submit button */
#nf-field-13, #nf-field-21, #nf-field-28 {
    margin-top: 10px;
    cursor: pointer;
    background-color: var(--clr-green);
    border-radius: var(--border-radius-sm);
    color: var(--clr-dark-grey);
    font-size: var(--text-sm);
    padding: 12px 20px;
    font-family: "bebas-neue", sans-serif;
    border: 0px solid var(--clr-green);
}

/* Shortcode : [sensbouw_vacature_detailpagina_afbeelding] */

#sensbouw_vacature_detailpagina_afbeelding {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 500px;
    border-radius: var(--border-radius-sm);
}


/* Shortcode : [sensbouw_footer_diensten_list] */

#sensbouw_footer_diensten_list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sensbouw_footer_dienst_link {
    color: var(--clr-green);
    text-decoration: none;
    font-family: "museo-sans", sans-serif;
    font-size: var(--text-xs);
    font-weight: 300;
    line-height: var(--line-height-lg);
    transition: color 0.3s ease;
}

.sensbouw_footer_dienst_link:hover {
    color: var(--clr-white);
    text-decoration: none;
}

@media (max-width: 768px) {
    #sensbouw_footer_diensten_list {
        gap: 10px;
    }
}


/* Shortcode : [sensbouw_footer_projecten_list] */

#sensbouw_footer_projecten_list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sensbouw_footer_project_link {
    color: var(--clr-green);
    text-decoration: none;
    font-family: "museo-sans", sans-serif;
    font-size: var(--text-xs);
    font-weight: 300;
    line-height: var(--line-height-lg);
    transition: color 0.3s ease;
}

.sensbouw_footer_project_link:hover {
    color: var(--clr-white);
    text-decoration: none;
}

.sensbouw_footer_all_projects_link {
    font-weight: 300;
    color: var(--clr-green);
}

.sensbouw_footer_all_projects_link:hover {
    color: var(--clr-white);
}

@media (max-width: 768px) {
    #sensbouw_footer_projecten_list {
        gap: 10px;
    }
    
    .sensbouw_footer_all_projects_link {
        margin-top: 6px;
    }
}

/* Shortcode : [sensbouw_dienst_detailpagina_hero] */

.sensbouw_hero_photo_gallery {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.sensbouw_hero_photo_slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.sensbouw_hero_photo_slide.active {
    opacity: 1;
}

/* Homepage-specific hero gallery styles */
.sensbouw_homepage_hero_photo_gallery {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.sensbouw_homepage_hero_photo_slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.sensbouw_homepage_hero_photo_slide.active {
    opacity: 1;
}

.sensbouw_homepage_hero_dots_container {
    padding: 30px;
    z-index: 10;
}

.sensbouw_homepage_hero_dots {
    display: flex;
    gap: 12px;
    align-items: center;
}

.sensbouw_homepage_hero_dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background-color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.sensbouw_homepage_hero_dot:hover {
    background-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.1);
}

.sensbouw_homepage_hero_dot.active {
    background-color: var(--clr-green);
}

.sensbouw_homepage_hero_dot.active:hover {
    background-color: var(--clr-green);
}

/* Mobile homepage-specific hero gallery styles */
.sensbouw_homepage_hero_mobile_photo_gallery {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.sensbouw_homepage_hero_mobile_photo_slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.sensbouw_homepage_hero_mobile_photo_slide.active {
    opacity: 1;
}

/* Service detail page hero gallery styles */
.sensbouw_dienst_hero_photo_gallery {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.sensbouw_dienst_hero_photo_slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.sensbouw_dienst_hero_photo_slide.active {
    opacity: 1;
}

.sensbouw_dienst_hero_dots_container {
    padding: 30px;
    z-index: 10;
}

.sensbouw_dienst_hero_dots {
    display: flex;
    gap: 12px;
    align-items: center;
}

.sensbouw_dienst_hero_dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background-color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.sensbouw_dienst_hero_dot:hover {
    background-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.1);
}

.sensbouw_dienst_hero_dot.active {
    background-color: var(--clr-green);
}

.sensbouw_dienst_hero_dot.active:hover {
    background-color: var(--clr-green);
}

/* Service detail page mobile hero gallery styles */
.sensbouw_dienst_hero_mobile_photo_gallery {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.sensbouw_dienst_hero_mobile_photo_slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.sensbouw_dienst_hero_mobile_photo_slide.active {
    opacity: 1;
}

#sensbouw-fullscreen-dialog {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    max-width: 100vw !important;
    width: 100vw;
    max-height: 100vh !important;
    height: 100vh;
    margin: 0;
    padding: 0;
    border: none;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 999999;
}

#sensbouw-video-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

video.sensbouw-fullscreen-video {
    max-width: 90%;
    max-height: 80%;
    width: auto;
    height: auto;
}

button#sensbouw-close-dialog-btn {
    background-color: #d5d12c;
    border-radius: 4px;
    font-size: 16px;
    color: #000;
    font-weight: 500;
    border: none;
    padding: 10px 20px;
    margin-top: 20px;
    transition: .3s all;
    cursor: pointer;
    font-family: inherit;
}

button#sensbouw-close-dialog-btn:hover {
    background-color: #fff;
}

#sensbouw-play-button:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

/* Navigation dots for photo gallery */
.sensbouw_hero_dots_container {
    padding: 30px;
    z-index: 10;
}

.sensbouw_hero_dots {
    display: flex;
    gap: 12px;
    align-items: center;
}

.sensbouw_hero_dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background-color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.sensbouw_hero_dot:hover {
    background-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.1);
}

.sensbouw_hero_dot.active {
    background-color: var(--clr-green);
}

.sensbouw_hero_dot.active:hover {
    background-color: var(--clr-green);
}

/* Mobile navigation buttons for homepage hero */
#mobile_navigation_wrapper {
    gap: 0px;
    z-index: 10;
}

#mobile_navigation_button_left,
#mobile_navigation_button_right {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    opacity: 0.8;
}

#mobile_navigation_button_left:hover,
#mobile_navigation_button_right:hover {
    opacity: 1;
    transform: scale(1.1);
}

#mobile_navigation_button_left:disabled,
#mobile_navigation_button_right:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: scale(1);
}

#mobile_navigation_button_left svg,
#mobile_navigation_button_right svg {
    display: block;
}

/* Project carousel mobile gallery */
.sensbouw_project_gallery {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: var(--border-radius-sm);
}

.sensbouw_project_slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.sensbouw_project_slide.active {
    opacity: 1;
}

/* Mobile only visibility for 980px and below */
.mobile-only-980 {
    display: block;
}

@media (min-width: 981px) {
    .mobile-only-980 {
        display: none;
    }
}

/* Hero content backdrop */

@media (min-width: 980px) {
#hero-content-backdrop::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 115%;
        height: 880px;
        background: linear-gradient(0deg, rgba(51, 51, 51, 0.5) 0%, rgba(51, 51, 51, 0.8) 25%, rgba(51, 51, 51, 0.8) 75%, rgba(51, 51, 51, 0.5) 100%);
        transform: translateX(-40px);
    }
}

/* Mobile menu */

#mobile_menu_wrapper {
    padding-top: 20px;
}

#mobile_menu_dialog {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    max-width: 100vw !important;
    width: 100vw;
    max-height: 100vh !important;
    height: 100vh;
    margin: 0;
    padding: 20px;
    border: none;
    background-color: var(--clr-dark-grey);
}

button#mobile_menu_open_button {
    background-color: transparent;
    border: none;
    cursor: pointer;
    height: 40px;
    width: 40px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -20px;
}

button#mobile_menu_close_button {
    background-color: var(--clr-green);
    border-radius: var(--border-radius-sm);
    border: none;
    cursor: pointer;
    height: 40px;
    width: 40px;
    margin-top: 0px;
}

button#mobile_menu_close_button svg {
    margin-top: 4px;
}

img#mobile_menu_logo {
    max-width: 300px;
    border-radius: 0px 0px var(--radius-sm) var(--radius-sm);
}

ul#menu-main-menu-1 {
    list-style: none;
    padding: 0;
    margin: 0;
}

ul#menu-main-menu-1 li a {
    color: var(--clr-white);
    font-size: var(--text-md);
    font-family: "museo-sans", sans-serif;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.3s ease;
}

ul#menu-main-menu-1 li {
    margin-bottom: 15px;
}

#mobile_menu_wrapper {
    margin-top: 20px;
}

.menu-mobile-menu-container {
    padding-left: 20px;
}

/* Shortcode : [sensbouw_cta_homepage] */

#sensbouw_cta_homepage_content_wrapper {
    background-color: var(--clr-white);
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 50px 0px 50px 50px;
}

#sensbouw_cta_homepage_content_container {
    max-width: 560px;
}

#sensbouw_cta_homepage_contact_wrapper {
    gap: 40px;
    padding-left: 50px;
    padding-top: 20px;
}

@media (max-width: 1300px) {
    #sensbouw_cta_homepage_wrapper {
        flex-direction: column;
        align-items: center;
    }
    
    #sensbouw_cta_homepage_image {
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        width: 85%;
        height: 400px;
        border-radius: var(--border-radius-sm) var(--border-radius-sm) 0px 0px;
    }

    #sensbouw_cta_homepage_content {
        width: 85%;
        height: 100%;
    }

    #sensbouw_cta_homepage_content_wrapper {
        width: 100%;
        padding: 20px;
        border-radius: 0px 0px var(--border-radius-sm) var(--border-radius-sm);
    }

    #sensbouw_cta_homepage_content_container {
        max-width: 100%;
        width: 100%;
    }

    #sensbouw_cta_homepage_contact_wrapper {
        padding-left: 0px;
        display: flex;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    #sensbouw_cta_homepage_contact_wrapper {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        padding-left: 0px;
        padding-top: 30px;
    }

    #sensbouw_cta_homepage_contact_wrapper p {
        margin-top: 8px;
    }
}

/* Shortcode : [sensbouw_cta_bouw_verbouw] */

#sensbouw_cta_bouw_verbouw_content_wrapper {
    background-color: var(--clr-white);
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 50px 0px 50px 50px;
}

#sensbouw_cta_bouw_verbouw_content_container {
    max-width: 560px;
}

#sensbouw_cta_bouw_verbouw_contact_wrapper {
    gap: 40px;
    padding-left: 50px;
    padding-top: 20px;
}

@media (max-width: 1300px) {
    #sensbouw_cta_bouw_verbouw_wrapper {
        flex-direction: column;
        align-items: center;
    }
    
    #sensbouw_cta_bouw_verbouw_image {
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        width: 85%;
        height: 400px;
    }

    #sensbouw_cta_bouw_verbouw_content {
        width: 85%;
        height: 100%;
        margin-top: 20px;
    }

    #sensbouw_cta_bouw_verbouw_content_wrapper {
        width: 100%;
        padding: 20px;
    }

    #sensbouw_cta_bouw_verbouw_content_container {
        max-width: 100%;
        width: 100%;
    }

    #sensbouw_cta_bouw_verbouw_contact_wrapper {
        padding-left: 0px;
    }
}

@media (max-width: 768px) {
    #sensbouw_cta_bouw_verbouw_contact_wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
        padding-left: 0px;
        padding-top: 30px;
    }

    #sensbouw_cta_bouw_verbouw_contact_wrapper p {
        margin-top: 8px;
    }
}

/* Shortcode : [sensbouw_cta_projecten] */

#sensbouw_cta_projecten_content_wrapper {
    background-color: var(--clr-white);
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 50px 0px 50px 50px;
}

#sensbouw_cta_projecten_content_container {
    max-width: 560px;
}

#sensbouw_cta_projecten_contact_wrapper {
    gap: 40px;
    padding-left: 50px;
    padding-top: 20px;
}

@media (max-width: 1300px) {
    #sensbouw_cta_projecten_wrapper {
        flex-direction: column;
        align-items: center;
    }
    
    #sensbouw_cta_projecten_image {
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        width: 85%;
        height: 400px;
    }

    #sensbouw_cta_projecten_content {
        width: 85%;
        height: 100%;
        margin-top: 20px;
    }

    #sensbouw_cta_projecten_content_wrapper {
        width: 100%;
        padding: 20px;
    }

    #sensbouw_cta_projecten_content_container {
        max-width: 100%;
        width: 100%;
    }

    #sensbouw_cta_projecten_contact_wrapper {
        padding-left: 0px;
    }
}

@media (max-width: 768px) {
    #sensbouw_cta_projecten_contact_wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
        padding-left: 0px;
        padding-top: 30px;
    }

    #sensbouw_cta_projecten_contact_wrapper p {
        margin-top: 8px;
    }
}



