/*
    01. Common CSS
    02. Header Section CSS
    03. Footer Section CSS
    04. Homepage Page CSS
    05. Over willem Page CSS
    06. Solliciteren Page CSS
    07. Vacatures Page CSS
    08. Single Vacatures Page CSS
    09. General blocks CSS
*/
/* 01. Common CSS*/
:root {
    --baseColor: #7a7a7a;
    --baseDarkColor: #525252;
    --baseDarkerColor: #292929;
    --baseDarkestColor: #000;
    --baseLightColor: #a3a3a3;
    --baseLighterColor: #ccc;
    --baseLightestColor: #f5f5f5;
    /* --General-Dark: #000; */
    /* --General-Light: #fff; */
    /* --General-Color: #dbe200; */
    /* --General-Text-Dark: #000; */
    /* --General-Text-Light: #fff; */
    /* --General-Text-Color: #dbe200; */
    --General-Dark: #1d2851;
    --General-Light: #ffffff;
    --General-Color: #d29e27;
    --General-Text-Dark: #1d2851;
    --General-Text-Light: #ffffff;
    --General-Text-Color: #d29e27;
    --Extra-Dark: #283030;
    --Extra-Light: #fff;
    --Extra-Color: #e2e2dc;
    --Extra-Text-Dark: #283030;
    --Extra-Text-Light: #fff;
    --Extra-Text-Color: #e2e2dc;
    --Alert: #f55200;
    --Alert-Light: #ffc9ad;
    --Alert-Dark: #b83d00;
    --Shadow-Dark: 0, 0, 0, 2px, rgba(219, 226, 0, .5);
    --Shadow-Color: rgba(219, 226, 0, .5);
}

* {
    box-sizing: border-box;
}

@font-face {
    font-family: 'Druk Wide';
    src: url('../fonts/DrukWide-Bold.eot');
    src: url('../fonts/DrukWide-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/DrukWide-Bold.woff2') format('woff2'),
        url('../fonts/DrukWide-Bold.woff') format('woff'),
        url('../fonts/DrukWide-Bold.ttf') format('truetype'),
        url('../fonts/DrukWide-Bold.svg#DrukWide-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    font-family: "Titillium Web", sans-serif;
    transition: all 0.3s ease 0s;
    width: 100%;
    font-size: 16px;
    line-height: 24px;
    font-weight: 300;
    color: var(--General-Text-Dark);
    /* overflow-x: hidden; */
}

.rich-text>* {
    margin-top: 28px;
}

.rich-text>*:first-child {
    margin-top: 0;
}

.rich-text ul li {
    position: relative;
    padding-left: 20px;
}

.rich-text ul li+li {
    margin-top: 4px;
}

.rich-text ul li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 8px;
    height: 8px;
    background-color: var(--General-Text-Dark);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

.rich-text h1+*,
.rich-text h2+*,
.rich-text h3+*,
.rich-text h4+*,
.rich-text h5+*,
.rich-text h6+* {
    margin-top: 4px;
}

.rich-text h1,
.rich-text h2,
.rich-text h3,
.rich-text h4,
.rich-text h5,
.rich-text h6 {
    font-weight: 700;
    font-size: 20px;
    text-transform: uppercase;
    font-family: "Titillium Web", sans-serif;
    line-height: 1.2;
}

.rich-text h1 strong,
.rich-text h2 strong,
.rich-text h3 strong,
.rich-text h4 strong,
.rich-text h5 strong {
    font-weight: 700;
}

section.padding-md {
    padding: 64px 0;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
}

.rich-text a:not(.common-btn) {
    text-decoration: underline;
}

.rich-text a:not(.common-btn):hover {
    text-decoration: none;
}

.big-h2 h2 {
    font-size: 40px;
    line-height: 1.05;
    font-family: 'Druk Wide';
    margin-bottom: 20px;
}

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

button:focus {
    outline: none;
}

a:visited {
    color: var(--General-Text-Dark);
}

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

a {
    display: inline-block;
    color: var(--General-Text-Dark);
    text-decoration: none;
    transition: all 0.3s ease 0s;
}

a:hover {
    color: var(--General-Text-Dark);
}

.bgBase h1 em,
.bgBase h2 em,
.bgBase h3 em,
.bgBase h4 em,
.bgBase h5 em,
.bgBase h6 em,
.bgBase .rnSubTitle em,
.bgBase .rnElementTitle em {
    color: var(--General-Text-Color);
}

h1 em,
h2 em,
h3 em,
h4 em,
h5 em,
h6 em,
.rnSubTitle em,
.rnElementTitle em,
.rnSubHeader em {
    font-style: normal;
}

h1,
h2,
h3,
h4,
h5 {
    text-rendering: optimizelegibility;
    font-family: 'Druk Wide';
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08rem;
}

h2 {
    font-size: 32px;
    line-height: 1.0625;
}

p,
h1,
h2,
h3,
h4,
h5,
h6,
blockquote,
ul,
ol {
    margin-top: 28px;
    margin-bottom: 0;
}

.rich-text b,
.rich-text strong {
    font-weight: bold;
}

.page-banner {
    position: relative;
}

.page-banner img {
    min-height: 370px;
    object-fit: cover;
}

.page-banner-content {
    position: absolute;
    left: 0;
    right: 0;
    z-index: 1;
    bottom: 56px;
}

.bgPrimary {
    color: var(--General-Text-Dark);
    background-color: var(--General-Light);
}

.custom-breadcrumbs ul {
    display: flex;
    flex-wrap: wrap;
}

.bgBase .custom-breadcrumbs a,
.bgBase .custom-breadcrumbs span {
    color: var(--General-Text-Light);
}

.custom-breadcrumbs ul li:not(:last-child) {
    padding-right: 21px;
    position: relative;
}

.custom-breadcrumbs ul li:not(:last-child):after {
    content: "\f054";
    font-family: "Font Awesome 5 free";
    position: absolute;
    font-size: 11px;
    top: 1px;
    right: 7px;
    font-weight: 900;
}

.has-mouse {
    position: relative;
}

.bgBase .form-row-acceptance .wpcf7-list-item .wpcf7-list-item-label:before {
    border-color: #fff;
    background: #fff !important;
}

.bgBase .form-row-acceptance .wpcf7-list-item input:checked+.wpcf7-list-item-label:after {
    border-color: var(--General-Color) !important;
}

.bgBase .custom-form-design input[type="submit"] {
    border: 1px solid var(--General-Light);
    color: var(--General-Text-Dark);
    background-color: var(--General-Light);
}

.bgBase .custom-form-design input[type="submit"]:hover {
    background-color: transparent;
    color: var(--General-Text-Light);
    text-decoration: none;
}

.page-banner:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, .8) 100%);
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.bgBase {
    background-color: var(--General-Dark);
    color: var(--General-Text-Light);
}

p:first-child,
h1:first-child,
h2:first-child,
h3:first-child,
h4:first-child,
h5:first-child,
h6:first-child,
blockquote:first-child,
ul:first-child,
ol:first-child {
    margin-top: 0;
}

.f-right-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 22px;
    height: 22px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    transition: all 0.3s ease 0s;
    border: 1px solid var(--General-Dark);
    font-size: 10px;
    margin-right: 12px;
}

.grow-footer-links-wrapper a:hover .f-right-icon {
    background-color: var(--General-Dark);
    color: #fff;
}

.container {
    max-width: 75%;
}

.bgSecondary {
    color: var(--General-Text-Dark);
    background-color: var(--General-Color);
}

blockquote,
q {
    font-size: 22px;
    font-weight: 300;
    font-style: italic;
    line-height: 1.36364;
}

h1 span,
h2 span,
h3 span,
h4 span,
h5 span,
h6 span,
.rnSubTitle span,
.rnElementTitle span,
.rnSubHeader span {
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-width: 1px;
    text-decoration: none !important;
}


b,
strong {
    font-weight: bold;
}

p strong {
    font-weight: bold;
}

span {
    display: inline-block;
}

h4 {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.08333;
}

section {
    padding: 96px 0;
}

.mb-common h3 {
    margin-bottom: 0;
}

.mb-common {
    margin-bottom: 28px;
}

.mt-common {
    margin-top: 28px;
}

.mb-common-lg {
    margin-bottom: 72px;
}

.mt-common-lg {
    margin-top: 72px;
}

.mb-common h2 {
    margin-bottom: 0 !important;
}

.nav-border-light.owl-carousel .owl-nav button {
    color: var(--General-Text-Light) !important;
    border-color: var(--General-Text-Light) !important;
    background: transparent !important;
}

.owl-carousel .owl-nav button.owl-next {
    margin-left: 12px !important;
}

.nav-border-light.owl-carousel .owl-nav button:hover {
    background: var(--General-Text-Light) !important;
    color: var(--General-Dark) !important;
}

.common-btn-outer {
    margin-top: 16px;
}

.common-btn {
    margin-top: 12px;
    font-size: 16px;
    line-height: 1.25;
    display: inline-block;
    padding: 9px 19px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: .08rem;
    border: 1px solid var(--General-Dark);
    color: var(--General-Text-Light);
    background-color: var(--General-Dark);
    border-radius: 100px;
}

.common-btn:hover,
.common-btn:focus {
    background-color: transparent !important;
    color: var(--General-Text-Dark) !important;
    text-decoration: none !important;
}

.common-btn:visited {
    border: 1px solid var(--General-Dark);
    color: var(--General-Text-Light);
    background-color: var(--General-Dark);
}

.common-btn-yellow,
.common-btn-yellow:visited {
    border: 1px solid var(--General-Color);
    color: var(--General-Text-Dark);
    background-color: var(--General-Color);
}

.common-btn-yellow:hover {
    background-color: transparent !important;
    color: var(--General-Text-Color) !important;
    text-decoration: none !important;
}

.owl-carousel .owl-nav button {
    margin: 0 !important;
    width: 40px;
    height: 40px;
    border: 1px solid #fff !important;
    border-radius: 100% !important;
    font-size: 24px !important;
    transition: all 0.3s ease 0s !important;
}

.owl-carousel .owl-nav {
    margin-top: 24px;
    display: flex;
}

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

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

.bg-overlay {
    position: relative;
}

.bg-overlay:before {
    content: "";
    background-image: url(/wp-content/themes/willemiiwerkt/assets/images/werktalent-text-pattern-ondark.svg);
    width: 100%;
    background-position: center center;
    background-repeat: repeat;
    background-size: 70%;
    position: absolute;
    display: block !important;
    left: 0;
    top: 20%;
    bottom: 20%;
}

.bg-overlay-dark {
    position: relative;
}

.bg-overlay-dark:before {
    content: "";
    background-image: url(/wp-content/themes/willemiiwerkt/assets/images/text-bg.svg);
    width: 100%;
    background-position: center center;
    background-repeat: repeat;
    background-size: 70%;
    position: absolute;
    display: block !important;
    left: 0;
    top: 20%;
    bottom: 20%;
}

.favorieten-vacatures {
    margin-top: 20px;
}

.favorieten-vacatures .vacatures_listing_box {
    color: #fff;
    background: var(--General-Text-Dark);
}

.favorieten-vacatures .vacatures_listing_box a {
    color: #fff;
}

.favorieten-vacatures .vacatures_listing_box .vlb_features li img {
    filter: brightness(0) invert(1);
}

.favorieten-vacatures .vacatures_listing_box a.vlb_delete_btn {
    border-color: #fff;
}

.common-btn-yellow-border,
.common-btn-yellow-border:visited {
    border: 1px solid var(--General-Color);
    color: var(--General-Color);
    background-color: transparent;
}

.favorieten-vacatures .vacatures_listing_box a.solliciteer-btn {
    color: var(--General-Color);
}

.common-btn.common-btn-yellow-border:hover {
    background-color: var(--General-Color) !important;
    color: #fff;
}

.favorieten-vacatures .vacatures_listing_box a.solliciteer-btn:hover {
    color: #fff !important;
}

/*****************************/

/* 02. Header Section CSS */
.sidebar-wrapper {
    position: fixed;
    left: -360px;
    top: 114px;
    width: 310px;
    bottom: 0;
    background-color: #fff;
    color: var(--General-Dark);
    overflow: hidden;
    padding: 25px 19px 25px 25px;
    transition: all 0.3s ease 0s;
    z-index: 99;
}

.sidebar-wrapper-inner::-webkit-scrollbar {
    width: 6px;
}

.sidebar-wrapper-inner::-webkit-scrollbar-track {
    background: rgb(128 128 128 / 0%);
}

.sidebar-wrapper-inner::-webkit-scrollbar-thumb {
    background-color: var(--General-Text-Color);
    border-radius: 3px;
}

.header-logo {
    line-height: 0;
    padding: 10px 0;
}

.header-logo img.custom-logo {
    max-width: 150px;
    height: 100%
}

.nav-trigger.nav-trigger-active .menu-bar-icon {
    display: none;
}

.nav-trigger.nav-trigger-active .menu-close-icon {
    display: block;
}

.nav-trigger-outer {
    line-height: 0;
    margin-left: 20px;
}

.nav-trigger {
    cursor: pointer;
    position: relative;
    color: var(--General-Dark);
    transition: auto;
    background: transparent;
    padding: 0;
    border: none;
    line-height: 0;
}

.menu-close-icon {
    display: none;
}

.nav-trigger img {
    /* filter: brightness(10) invert(1); */
    width: 22px;
}

.header-section {
    padding: 0px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    background-color: #fff;
    z-index: 999;
    top: 0;
}

.header-right-outer {
    margin-left: auto;
}

.header-right {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    padding: 2px;
    border-radius: 100px;
}

.favorieten-btn-header {
    width: 32px;
    height: 32px;
    border: 1px solid var(--General-Dark);
    display: flex;
    align-items: center;
    min-width: 32px;
    justify-content: center;
    border-radius: 100%;
}

.favorieten-btn-header {
    position: relative;
}

.favorieten-btn-header img {
    /* filter: brightness(0) invert(1); */
    width: 15px;
}

.favorieten-count {
    /* display: none; */
    min-width: 18px;
    height: 18px;
    background: var(--General-Color);
    font-size: 14px;
    position: absolute;
    top: -5px;
    color: var(--General-Dark);
    font-weight: bold;
    text-align: center;
    line-height: 18px;
    padding: 0 2px;
    border-radius: 10px;
    right: -8px;
}


.header-main-menu {
    padding-left: 40px;
}

.header-main-menu .header-menus {
    display: flex;
}

.header-main-menu .header-menus>li:not(:last-child) {
    margin-right: 20px;
}

.menu-item-has-children>a {
    position: relative;
    padding-right: 25px;
}

.header-main-menu .header-menus>li>a {
    text-transform: uppercase;
    padding-top: 28px;
    padding-bottom: 28px;
}

.header-main-menu .header-menus>.menu-item-has-children>a:before {
    content: "\f078";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    right: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.sub-menu {
    display: none;
}

.childrens-menu,
.sub-menu {
    margin-left: 0;
    margin-top: 16px;
}

.header-main-menu .header-menus>li>.sub-menu {
    display: block;
    position: absolute;
    background: #fff;
    z-index: 1;
    margin: 0;
    top: calc(100% - -10px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease 0s;
}

.header-main-menu .header-menus>li:hover>.sub-menu {
    opacity: 1;
    visibility: visible;
    top: 100%;
}

.header-main-menu .header-menus>li>.sub-menu li {
    padding: 0;
}

.childrens-menu>li>a,
.sub-menu>li>a {
    text-transform: uppercase;
    color: var(--General-Dark);
}

.header-main-menu .header-menus>li>.sub-menu a {
    color: var(--General-Dark);
    padding: 8px 16px;
    white-space: nowrap;
    text-decoration: none;
    display: block;
}

.header-main-menu .header-menus>li>.sub-menu a:hover {
    background: var(--General-Color);
}

body.navbar-active .sidebar-wrapper {
    left: 0;
}

.sidebar-wrapper-inner {
    height: 100%;
    overflow-y: scroll;
    padding-right: 6px;
}

.sidebar-menus>li {
    padding-top: 16px;
    position: relative;
}

.sidebar-menus>li>a {
    display: block;
    border-bottom: 1px solid rgb(128 128 128 / 20%);
    color: var(--General-Dark) !important;
    text-rendering: optimizelegibility;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 16px;
    line-height: 24px;
    padding-bottom: 16px;
}


.custom-search-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.custom-search-box {
    position: fixed;
    padding: 20px 0;
    top: -100%;
    left: 0;
    width: 100%;
    z-index: 1000;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.custom-search-box.custom-search-box-active {
    top: 0;
}

span.csl-title {
    margin-right: 24px;
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 1.2;
    text-transform: uppercase;
    font-weight: 600;
}

.custom-search-left {
    display: flex;
    width: calc(100% - 113px);
    align-items: center;
}

.custom-search-left input[type="text"] {
    width: calc(100% - 309px);
    border: 1px solid var(--General-Text-Light);
    background-color: var(--General-Light);
    padding: 7px 16px;
    border-radius: 20px;
    font-weight: 400;
}

.custom-search-left button img {
    width: 20px;
}



.custom-search-left input[type="text"]:focus {
    outline: none;
}

.custom-search-left button {
    padding: 0;
    width: 40px;
    height: 40px;
    background: var(--General-Color);
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    border: 1px solid var(--General-Color);
    margin-left: 16px;
    transition: all 0.3s ease 0s;
}

.custom-search-left button:hover {
    color: var(--General-Color);
    background: transparent;
}

.close-search-bar {
    background: transparent;
    padding: 0;
    border: none;
    font-size: 18px;
    line-height: 1.44444;
    color: #fff;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.close-search-bar i {
    display: inline-flex;
    justify-content: center;
    width: 32px;
    height: 32px;
    font-size: 13px;
    background: transparent;
    color: var(--General-Text-Light);
    border: 1px solid var(--General-Text-Light);
    border-radius: 100%;
    align-items: center;
    margin-right: 10px;
}

/*****************************/


/* 03. Footer Section CSS */
.footer-copyright {
    margin: 0;
    text-align: right;
}

.footer-bottom {
    padding: 48px 0 !important;
}

.grow-footer-links-wrapper {
    padding: 48px;
    background: #fff;
    margin-top: -48px;
    display: flex;
    flex-wrap: wrap;
}

.grow-footer-title {
    padding: 48px 0 96px 0;
}

.grow-footer-links-wrapper a {
    width: 33.33%;
}

.grow-footer-links-wrapper a {
    color: var(--General-Dark);
}

.grow-footer-links-wrapper a {
    display: flex;
    align-items: center;
    padding-right: 10px;
}

.grow-footer-links-wrapper a:nth-child(3)~a {
    margin-top: 16px;
}

/*****************************/

/* 04. Homepage Page CSS */

p.empty-fav-text {
    display: none;
}

.page-template-template-favourite-vacatures .vlb_delete_btn {
    display: flex;
}

.page-template-template-favourite-vacatures .vlb_favorieten_btn {
    display: none;
}

div#loom-companion-mv3 {
    display: none !important;
}

.mlb-img img {
    width: 100%;
    border-radius: 100%;
}

.home-hero-section .rank-with-google {
    margin-top: 20px;
}


.home-hero-section .job-search-option {
    width: 42%;
}

.home-hero-section .search-geo {
    width: 50%;
}

.home-hero-section .postcode-option {
    width: 60%;
}

.home-hero-section .selectbox-option {
    width: 40%;
}

.home-hero-section .vacatures-filters-row label {
    font-weight: 600;
    font-size: 22px;
    line-height: 1.18182;
}

.home-hero-section .job-search-submit input:hover {
    background: #000;
    color: var(--General-Color);
    border-color: #000;
}

.home-hero-section .vacatures-filters-row input,
.home-hero-section .vacatures-filters-row select {
    background-color: var(--baseLightestColor);
    width: 100%;
    padding: 7px 16px;
    border-radius: 100px;
    border: none;
    transition: all 0.3s ease 0s;
    appearance: none;
}

.home-hero-section .search-geo {
    width: calc(50% - 166px);
    display: flex;
    align-items: flex-end;
    gap: 12px;
}

.home-hero-section .get-location img {
    width: 17px;
}

.home-hero-section .job-search-submit input:hover {
    background: #000;
    color: var(--General-Color);
    border-color: #000;
}

.home-hero-section .get-location {
    position: absolute;
    right: 10px;
    top: 12px;
    width: 24px;
    height: 24px;
    border: 1px solid var(--General-Text-Dark);
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 15px;
}

.home-hero-section .vacatures-filters-row input,
.home-hero-section .vacatures-filters-row select {
    padding: 11px 16px;
    min-height: 53px;
    font-size: 20px;
    line-height: 31px;
}

.home-hero-section .selectbox-arrow {
    top: 15px;
}

.home-hero-section .get-location {
    top: 15px;
}

.home-hero-section {
    background-image: url(/wp-content/uploads/2024/07/Hero-1-min.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.vacatures-filters-top {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    margin-bottom: 12px;
}

.home-hero-section:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    bottom: 0;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, .8) 100%);
}

.full-width-inner-container>div:first-child .rich-text {
    padding-right: 12.5%;
    padding-left: 12.5%;
    margin-left: calc(12.5% + 12px);
    padding-top: 16px;
    padding-bottom: 16px;
}

.full-width-inner-container>div:last-child .about-img {
    width: calc(67.5% - 12px);
    position: relative;
}

.full-width-inner-container>div:last-child .about-img img {
    width: 100%;
}

.full-width-inner-container>div:last-child .about-img:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, .8) 100%);
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.custom-form-design input[type="submit"]:hover {
    background-color: transparent;
    color: var(--General-Text-Dark);
    text-decoration: none;
}

.custom-form-design input[type="submit"] {
    margin-top: 20px;
}

.custom-form-design input[type="submit"] {
    border: 1px solid var(--General-Dark);
    color: var(--General-Text-Light);
    background-color: var(--General-Dark);
    text-align: center;
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.25;
    display: inline-block;
    padding: 9px 19px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: .08rem;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    -webkit-border-radius: 21px;
    -moz-border-radius: 21px;
    border-radius: 21px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    cursor: pointer;
}

.home-hero-form-outer .svhc-buttons .open-sollicitatie-btn {
    font-size: 17px;
}

.home-hero-form-outer .svhc-buttons a {
    text-decoration: underline;
    font-weight: 600;
    font-size: 17px;
}

.home-hero-form-outer {
    margin-top: 30px;
}

.form-row-box label {
    font-weight: 600;
    margin-bottom: 8px;
}

.form-row-box .q-field {
    display: flex;
    align-items: center;
    font-size: 14px;
    line-height: 1.57143;
    margin-top: 4px;
}

.mouse-animation {
    position: absolute;
    left: 50%;
    z-index: 4;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: 32px;
    width: 22px;
    height: 34px;
    border: 1px solid var(--General-Light);
    -webkit-border-radius: 16px;
    -moz-border-radius: 16px;
    border-radius: 16px;
}

.mouse-animation:before {
    content: "";
    position: absolute;
    left: 50%;
    z-index: 4;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    bottom: 18px;
    background: var(--General-Light);
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    animation: moveUpDown 2s .5s infinite;
}

@keyframes moveUpDown {
    0% {
        bottom: 18px;
    }

    25% {
        bottom: 12px;
    }

    50% {
        bottom: 18px;
    }
}

.form-row-box .q-field i {
    font-size: 18px;
}

.home-hero-section .svhc-buttons a {
    color: #fff;
    font-size: 18px;
    line-height: 1.22222;
    text-transform: uppercase;
    font-weight: 200;
    text-decoration: none;
}

.home-hero-section .svhc-buttons a:hover {
    text-decoration: underline;
}

.form-row-box .q-field i {
    margin-right: 6px;
}

.form-row-box input,
.form-row-box textarea,
.form-row-box select {
    border: 1px solid var(--baseColor);
    background-color: var(--General-Light);
    padding: 7px 16px;
    width: 100%;
    outline: 0;
    font-weight: 300;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.form-row-box .wpcf7-form-control-wrap {
    display: block;
}

.form-row-box br {
    display: none;
}

.form-row-box input:hover,
.form-row-box textarea:hover,
.form-row-box select:hover {
    background-color: var(--baseLightestColor);
    border: 1px solid var(--General-Dark);
}

.form-row-box {
    margin-bottom: 16px;
}

.form-row-box input:focus,
.form-row-box textarea:focus,
.form-row-box select:focus {
    border: 1px solid var(--General-Dark);
    background-color: var(--General-Light);
    -webkit-box-shadow: 0 0 0 2px rgba(0, 0, 0, .5);
    -moz-box-shadow: 0 0 0 2px rgba(0, 0, 0, .5);
    box-shadow: 0 0 0 2px rgba(0, 0, 0, .5);
}

.custom-upload-box {
    position: relative;
}

.custom-upload-box label {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    cursor: pointer;
}

.custom-upload-box .file-select-box {
    border: 1px solid var(--baseColor);
    background-color: var(--General-Light);
    padding: 7px 16px;
    width: 100%;
    font-weight: 300;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    width: calc(100% - 142px);
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.custom-upload-box .file-upload-box {
    display: inline-block;
    padding: 9px 19px;
    border: 1px solid var(--General-Dark);
    color: var(--General-Text-Light);
    background-color: var(--General-Dark);
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: .08em;
    width: 126px;
    margin-top: 0;
    text-align: center;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-border-radius: 21px;
    -moz-border-radius: 21px;
    border-radius: 21px;
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.25;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.form-row-box input[type="file"].error+label .file-select-box {
    background: var(--Alert-Light);
}

.custom-checkbox-label input.error+span:before {
    background: var(--Alert-Light);
}

.form-row-box input[type="file"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.custom-form-design p {
    margin: 0;
}

.form-row-acceptance label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
}

.form-row-acceptance .wpcf7-list-item .wpcf7-list-item-label:before {
    content: "";
    position: absolute;
    width: 24px;
    height: 24px;
    border: 1px solid var(--General-Dark);
    border-radius: 4px;
    left: 0;
    top: 1px;
}

.form-row-acceptance .wpcf7-list-item .wpcf7-list-item-label {
    padding-left: 35px !important;
}

.form-row-acceptance br {
    display: none;
}

.form-row-acceptance .wpcf7-list-item input:checked+.wpcf7-list-item-label:before {
    background: var(--General-Dark);
}

.form-row-acceptance .wpcf7-list-item input:checked+.wpcf7-list-item-label:after {
    content: "";
    position: absolute;
    left: 9px;
    top: 6px;
    width: 6px;
    height: 11px;
    border: solid white;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.wpcf7-form-control-wrap {
    position: relative;
}

.form-row-acceptance .wpcf7-list-item input {
    display: none;
}

/*****************************/

/* 05. Over willem Page CSS */
.small-titles h2,
.small-titles h3,
.small-titles h4,
.small-titles h5,
.small-titles h6 {
    font-family: "Titillium Web", sans-serif;
    font-size: 20px;
    line-height: 1.2;
    font-weight: 700;
}

.small-titles h2+*,
.small-titles h3+*,
.small-titles h4+*,
.small-titles h5+*,
.small-titles h6+* {
    margin-top: 4px;
}

.medewerkers-listing {
    margin-top: 32px;
    display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}

.medewerkers-listing-box {
    padding: 0 15px;
    width: 50%;
    display: flex;
    margin-top: 32px;
}

.mlb-img {
    width: 122px;
    height: 122px;
    flex: 0 0 122px;
}

.large-h2 h2 {
    font-size: 48px;
    line-height: 1.08333;
}

.large-h2 h1 {
    font-size: 48px;
    line-height: 1.08333;
}

.mlb-content {
    padding-left: 16px;
}

.mlb-content .mlb-title {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 16px;
    line-height: 1.25;
}

.mlb-content .mlb-position {
    margin-bottom: 16px;
    margin-top: 4px;
}

.mlb-content .mlb-phone {
    margin-top: 5px;
}

.mlb-content .mlb-email {
    margin-top: 3px;
}


.mlb-content .mlb-email a {
    color: var(--General-Dark);
    text-decoration: none;
}

.mlb-teaser .mlb-moretext {
    display: none;
}

.rnMoreTeaser .rnLess,
.mlb-teaser a.rnLess {
    display: none;
}

.mlb-teaser p {
    display: inline;
}

.mlb-teaser .rnMoreTeaser {
    color: var(--General-Dark) !important;
}

.mlb-teaser a.rnMore,
.mlb-teaser a.rnLess {
    text-decoration: underline;
}

.mlb-teaser.more-text-active .mlb-moretext {
    display: inline;
}

.mlb-teaser.more-text-active .rnMoreTeaser .rnMore {
    display: none;
}

.mlb-teaser.more-text-active .rnMoreTeaser .rnLess {
    display: inline;
}

.mlb-social {
    display: flex;
    margin-top: 16px;
}

.mlb-social a {
    width: 32px;
    height: 32px;
    background: var(--General-Dark);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 100%;
    border: 1px solid var(--General-Dark);
    text-decoration: none;
}

.mlb-social a:hover {
    background: transparent;
    color: var(--General-Dark);
}

.mlb-social li+li {
    margin-left: 8px;
}

/*****************************/

/* 06. Solliciteren Page CSS */
.subtitle-text {
    font-size: 20px;
    line-height: 1.2;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0;
}

.intl-tel-input.allow-dropdown {
    display: block;
}

.vacatures-head-inner h1 {
    font-size: 24px;
    line-height: 1.08333;
    margin-bottom: 24px;
    margin-top: 12px;
}

.vacatures-head-inner ul {
    display: flex;
    flex-wrap: wrap;
}

.vacatures-head-inner ul li {
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: .08rem;
}

.vacatures-head-inner ul li:not(:last-child):after {
    content: "|";
    padding: 0 8px;
}



.apply-vacatures-form-box {
    margin-top: 16px;
    padding: 32px;
}

.apply-vacatures-form-box-inner {
    max-width: 95%;
    margin: 0 auto;
}

.custom-breadcrumbs li a {
    text-transform: capitalize;
}

.form-row-box input.error,
.form-row-box textarea.error,
.form-row-box select.error {
    background-color: var(--Alert-Light);
}

.apply-vacatures-form-box-inner h6 {
    font-size: 20px;
    line-height: 1.2;
    text-rendering: optimizelegibility;
    font-family: 'Druk Wide';
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08rem;
    margin: 0 0 16px 0;
}

.apply-vacatures-form-box-inner .row {
    margin-left: -9px;
    margin-right: -9px;
}

.apply-vacatures-form-box-inner .row>div {
    padding-left: 9px;
    padding-right: 9px;
}



.custom-checkbox-label input.error+span:before {
    background: var(--Alert-Light);
}

.custom-checkbox-label {
    font-weight: 600;
    position: relative;
    margin-top: 15px;
}

.custom-checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.custom-checkbox-label span {
    padding-left: 35px;
}

.custom-checkbox-label span:before {
    content: "";
    position: absolute;
    width: 24px;
    height: 24px;
    border: 1px solid var(--General-Dark);
    border-radius: 4px;
    left: 0;
    top: 1px;
}

.custom-checkbox-label input:checked+span:after {
    content: "";
    position: absolute;
    left: 9px;
    top: 6px;
    width: 6px;
    height: 11px;
    border: solid var(--General-Color);
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.custom-checkbox-label input:checked+span:before {
    background: var(--General-Dark);
}

.custom-form-design button[type="submit"] {
    border: 1px solid var(--General-Dark);
    color: var(--General-Text-Light);
    background-color: var(--General-Dark);
    text-align: center;
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.25;
    display: inline-block;
    padding: 12px 23px 13px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: .08rem;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    border-radius: 100px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    cursor: pointer;
}

.custom-form-design button[type="submit"]:hover {
    background: transparent;
    color: var(--General-Dark);
}

/*****************************/

/* 07. Vacatures Page CSS */

.vacatures_main_filter {
    background: #334278;
    padding: 24px;
    margin-bottom: 20px;
}

.vmf-filter {
    display: flex;
    gap: 24px;
}

.vmf-filter-left {
    width: 100%;
    display: flex;
}

.vmf-filter-left .filter-box:first-child {
    width: 47%;
}

.vmf-filter-left .filter-box {
    width: 33%;
    border-right: 2px solid var(--General-Dark);
}

.vmf-filter-left .selectbox-option {
    width: 20%;
}

.vmf-filter .job-search-submit input {
    transition: all 0.3s ease 0s;
    border-radius: 100px !important;
    padding: 13px 10px;
}

.vmf-filter .filter-box>input {
    width: 100%;
    border: none;
    padding: 12px 20px 12px 35px;
}

.vmf-filter-left .filter-box:first-child>input {
    border-radius: 100px 0 0 100px;
}

.vmf-filter-left .selectbox-option select {
    width: 100%;
    padding: 12px 35px 12px 35px;
    border: none;
    border-radius: 0 100px 100px 0;
    appearance: none;
}

.vmf-filter-left .selectbox-option .selectbox-arrow {
    top: 13px;
}

.vmf-filter-left .filter-box:first-child>input.suggestions-active {
    border-radius: 100px 0 0 100px !important
}

.vmf-filter-left>div>img {
    position: absolute;
    top: 15px;
    left: 10px;
}

.vmf-filter-left .filter-box.search-filter .extra-filter-options {
    border-radius: 20px;
    background: var(--baseLightestColor);
    padding: 0;
    position: absolute;
    width: 100%;
    top: calc(100% + 10px);
    z-index: 1;
    min-width: 430px;
    display: none;
}

.vmf-filter-left .filter-box.autosuggest-filter.search-filter .extra-filter-options {
    min-width: 100%;
}

.vmf-filter-left .filter-box.search-filter .extra-filter-options.active {
    display: block;
}

.extra-filter-box span.filter-count {
    font-weight: 700;
}

.extra-filter-box {
    width: calc(33.33% - 8px);
}

.extra-filter-box:hover .extra-filter-placeholder {
    border-radius: 20px 20px 0 0;
    overflow: hidden;
}

.extra-filter-box {
    position: relative;
}

.extra-filter-box:hover .extra-filter-options {
    display: block;
}

.extra-filter-options li {
    margin-top: 12px;
}

.vacatures-main-wrapper .container {
    max-width: 1260px;
}

.search-filter li {
    font-weight: 600;
    font-size: 16px;
    line-height: 1.5;
    position: relative;
    color: var(--General-Dark);
    margin-top: 0;
    padding: 8px 16px;
    cursor: pointer;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.search-filter li a:before {
    content: none;
}

.search-filter li a,
.NoBgcolor .location-suggestion-text a {
    padding: 0;
}

.search-filter .extra-filter-options {
    padding: 3px;
}

.filter-box {
    position: relative;
}

.selectbox-option {
    width: 112px;
}

.selectbox-option {
    position: relative;
}

.selectbox-option:hover .selectbox-arrow {
    background: var(--General-Dark);
    color: #fff;
}

.selectbox-option {
    position: relative;
}

.selectbox-option:hover .selectbox-arrow {
    background: var(--General-Dark);
    color: #fff;
}

.filter-box input {
    border-radius: 0;
}

.extra-filter-placeholder:hover .selectbox-arrow {
    background: var(--General-Dark);
    color: #fff;
}

.selectbox-arrow {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--General-Dark);
    position: absolute;
    bottom: 7px;
    color: var(--General-Dark);
    border-radius: 100%;
    right: 6px;
    pointer-events: none;
}

.selectbox-arrow i {
    position: relative;
    top: -3px;
}

.selectbox-arrow {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--General-Dark);
    position: absolute;
    bottom: 7px;
    color: var(--General-Dark);
    border-radius: 100%;
    right: 6px;
    pointer-events: none;
}

.selectbox-arrow i {
    position: relative;
    top: -3px;
}

.job-search-submit input {
    border: 1px solid var(--General-Color);
    color: var(--General-Text-Dark);
    background-color: var(--General-Color);
    width: 160px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: .08rem;
    font-size: 1rem;
    line-height: 1.25;
    display: inline-block;
    padding: 9px 19px;
    cursor: pointer;
}

.job-search-submit input:hover {
    background-color: transparent;
    color: var(--General-Text-Color);
    text-decoration: none;
    border-color: var(--General-Color);
}

.home-hero-section .job-search-submit input[type="submit"] {
    width: 160px;
    border: 1px solid var(--General-Color);
    color: var(--General-Text-Dark);
    background-color: var(--General-Color);
}

.home-hero-section .job-search-submit input[type="submit"]:hover {
    background: var(--General-Dark);
    color: var(--General-Color);
    border-color: var(--General-Dark);
}

.home-hero-section .search-geo {
    width: 50%;
}

.extra-filter-options {
    border-radius: 0 0 20px 20px;
    background: var(--baseLightestColor);
    padding: 0 16px 12px;
    position: absolute;
    width: 100%;
    top: 100%;
    z-index: 2;
    display: none;
}

.extra-filter-options ul {
    position: relative;
    max-height: 200px;
    padding: 0 4px;
    overflow: auto;
}

.extra-filter-options ul::-webkit-scrollbar {
    width: 6px;
}

.extra-filter-options ul::-webkit-scrollbar-track {
    background: transparent;
}

.extra-filter-options ul::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, .4);
    border-radius: 3px;
}



.extra-filter-options a {
    font-weight: 600;
    padding-left: 36px;
    font-size: 16px;
    line-height: 1.5;
    position: relative;
}

/* .extra-filter-options a:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 24px;
    height: 24px;
    border: 1px solid var(--baseColor);
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
} */


/* .extra-filter-options a.checked:before {
    background-color: var(--General-Dark);
    border-color: var(--General-Dark);
}

.extra-filter-options a.checked:after {
    content: "";
    position: absolute;
    left: 9px;
    top: 5px;
    width: 6px;
    height: 12px;
    border: solid var(--General-Color);
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
} */
.extra-filter-options.active {
    display: block;
}

.suggestions-active {
    border-radius: 20px 20px 0 0 !important;
    overflow: hidden;
}

section.home-hero-section .extra-filter-options a {
    padding-left: 0;
}

.filter-trigger {
    position: absolute;
    top: 0;
    right: 0;
}

.sticky-filter-trigger .filter-trigger {
    position: initial !important;
    display: flex;
    align-items: center;
}

.sticky-filter-trigger .filter-trigger img {
    width: 30px;
    margin-right: 10px;
}

.filter-trigger.new-filter-trigger {
    position: inherit !important;
}

.alles-wissen {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    /* display: none; */
}

.filters-result-text {
    font-size: 14px;
    line-height: 1.57143;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .08rem;
}

.filters-result-text span {
    color: var(--General-Color);
}

.custom-pagination .prev.page-numbers,
.custom-pagination .next.page-numbers {
    height: 32px;
    width: 32px;
    background: #FFF;
    color: var(--General-Dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    border-radius: 100%;
    text-decoration: none;
}


.custom-pagination.pagination-light .page-numbers.dots {
    text-decoration: none;
}

.custom-pagination .prev.page-numbers.disabled,
.custom-pagination .next.page-numbers.disabled {
    opacity: 0.7;
}

.cp-numbers {
    margin: 0 24px;
    display: flex;
    align-items: center;
}

.cp-numbers>* {
    margin: 0 8px;
    font-size: 20px;
}

.custom-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 32px;
}

.cp-numbers span {
    text-decoration: underline;
}

.custom-pagination .prev.page-numbers,
.custom-pagination .next.page-numbers {
    background: var(--General-Dark);
    color: #fff;
}

.custom-pagination.pagination-light a,
.custom-pagination.pagination-light span {
    color: #fff;
}

.vacatures_listing_box+.vacatures_listing_box {
    margin-top: 8px;
}

.vacatures_listing_box {
    background: #fff;
    color: var(--General-Text-Dark);
    padding: 24px;
}

.vlb_header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.vlb_features p {
    margin: 0;
}

.vlb_header_left h6 {
    font-size: 22px;
    font-weight: 600;
    line-height: 28px;
}

.vlb_header_left {
    padding-right: 15px;
}


.vlb_features img {
    margin-right: 5px;
}


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

.vlb_features li {
    display: flex;
    align-items: center;
}

.vlb_features li:not(:last-child) {
    margin-right: 12px;
}

.vlb_features li img {
    margin-right: 5px;
}

.vlb-header-right {
    width: 74px;
    height: 74px;
}

.vlb-vlb-discription-with-img {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.vacatures-slider-wrap .vlb-vlb-discription-with-img>img {
    width: 80px;
    margin-left: 10px;
}

.vlb-header-right:empty {
    display: none;
}

.vlb_body_text {
    margin: 12px 0;
}


.vlb_footer_actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.vlb_footer {
    display: flex;
    /* flex-wrap: wrap; */
    gap: 16px;
    justify-content: space-between;
}

.vlb_footer .common-btn {
    white-space: nowrap;
}

.vlb_favorieten_btn {
    width: 32px;
    min-width: 32px;
    height: 32px;
    border: 1px solid var(--General-Dark);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
}

.active-favorite .heart-border {
    display: none;
}

.vlb_favorieten_btn .heart-full {
    display: none;
}

.vlb_favorieten_btn:hover,
.vlb_favorieten_btn.active-favorite {
    background: var(--General-Text-Dark);
    color: #fff;
    text-decoration: none;
}

.vlb_favorieten_btn.active-favorite .heart-full {
    display: inline-block;
}

.vlb_delete_btn {
    width: 32px;
    height: 32px;
    border: 1px solid var(--General-Text-Dark);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    font-size: 12px;
    color: var(--General-Text-Dark);
    display: none;
}

.page-template-template-favoriete-vacatures .vlb_delete_btn {
    display: flex;
}

.vlb_delete_btn:hover {
    background: var(--General-Text-Dark);
    color: #fff;
}

.page-template-template-favoriete-vacatures .vlb_delete_btn {
    display: flex;
}

.page-template-template-favoriete-vacatures .vlb_favorieten_btn {
    display: none;
}

.vacatures-sidebar {
    background: #334278;
    padding: 24px;
}

.vacatures-sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.vacatures-sidebar-header h4 {
    margin: 0;
    font-family: "Titillium Web", sans-serif;
}


.alles-wissen {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    display: none;
}

.alles-wissen.active {
    display: flex;
}

.alles-wissen i {
    margin-left: 10px;
}

.active-filter-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 24px;
}

.active-filter-wrap:empty {
    display: none;
}

.active-filter_badge {
    border: 1px solid rgb(128 128 128 / 30%);
    border-radius: 100px;
    font-size: 14px;
    padding: 2px 10px;
    display: flex;
    cursor: pointer;
    align-items: center;
}


.active-filter_badge img {
    margin-left: 5px;
}


.filter-collapse-box {
    border-top: 1px solid #475e70;
    padding-top: 24px;
    margin-top: 24px;
}


.filter-collapse-box>h6 {
    display: flex;
    font-size: 20px;
    align-items: center;
    justify-content: space-between;
    font-weight: 600;
    line-height: 24px;
    margin-bottom: 0;
    cursor: pointer;
}

.filter-collapse-box>h6 i {
    margin-left: 10px;
    font-size: 16px;
}

.filter-collapse-box.filter-collapse-active>h6 i {
    transform: rotate(180deg);
}

.filter-collapse-box.filter-collapse-active .filter-collapse-body {
    display: block;
}

.filter-collapse-body a {
    color: #fff !important;
    position: relative;
    padding-left: 25px;
}

.filter-collapse-body a:before {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    border: 1px solid #fff;
    left: 0;
    top: 4px;
}

.filter-collapse-body li+li {
    margin-top: 8px;
}

.filter-collapse-body a.checked:before {
    background: #000000;
    border-color: #000000;
}

.filter-collapse-body a.checked:after {
    content: "";
    position: absolute;
    left: 6px;
    top: 6px;
    width: 4px;
    height: 10px;
    border: solid var(--General-Color);
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}


.filter-collapse-body {
    margin-top: 15px;
    display: none;
    max-height: 313px;
    overflow-y: scroll;
}

.filter-collapse-body::-webkit-scrollbar {
    width: 6px;
    border-radius: 3px;
}

.filter-collapse-body::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 3px;
}

.filter-collapse-body::-webkit-scrollbar-thumb {
    background-color: var(--General-Color);
    border-radius: 3px;
}

.bgBase .bgPrimary .custom-breadcrumbs a,
.bgBase .bgPrimary .custom-breadcrumbs span {
    color: var(--General-Dark);
}

/*****************************/

/* 08. Single Vacatures Page CSS */
.single-vestigingen-hero {
    display: flex;
    align-items: center;
}

.employer-logo {
    border: 1px solid var(--Extra-Color);
    padding: 24px 16px;
    max-width: 160px;
}

.job-company-description-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.job-company-description-wrapper .employer-logo {
    width: 100%;
}

.single-vestigingen-hero-wrap {
    display: flex;
    margin: 0 -8px;
    align-items: center;
    flex-wrap: wrap;
}

.single-vestigingen-hero-img {
    width: 50%;
    padding: 0 8px;
    position: relative;
}

.single-vestigingen-hero-img:before {
    content: "";
    position: absolute;
    right: 8px;
    top: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, .8) 100%);
}

.single-vestigingen-hero-content {
    width: 60%;
    margin-left: -10%;
    column-gap: 24px;
    row-gap: 48px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    position: relative;
}

.single-vacatures-section h1 {
    font-size: 24px;
    line-height: 1.08333;
    margin: 0;
}

.hero-vacancy-features {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
}

.hero-vacancy-features li {
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: .08rem;
    margin-top: 2px;
}

.hero-vacancy-features li:not(:last-child):after {
    content: "|";
    padding: 0 8px;
    color: #fff;
}

.hero-vacancy-extra-features {
    margin-top: 24px;
}

.hero-vacancy-extra-features li {
    display: flex;
    margin-top: 10px;
    position: relative;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 16px;
    line-height: 1.5;
    align-items: flex-start;
}

.hero-vacancy-extra-features li i {
    position: relative;
    top: 4px;
    margin-right: 10px;
}

.job-apply-buttons {
    display: flex;
    align-items: center;
    margin-top: 24px;
}

.job-apply-buttons .common-btn {
    margin-top: 0;
    margin-right: 16px;
}

.job-apply-buttons .add-in-favorieten {
    width: 34px;
    height: 34px;
    border: 1px solid var(--General-Text-Dark);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    text-decoration: none !important;
}

.single-vacatures-section .job-apply-buttons .add-in-favorieten {
    border-color: #FFF;
    color: #fff;
}

.job-apply-buttons .add-in-favorieten .heart-full {
    display: none;
}

.job-apply-buttons .add-in-favorieten.active-favorite .heart-border {
    display: none;
}

.job-apply-buttons .add-in-favorieten.active-favorite .heart-full {
    display: inline-block;
}

.hero-vacancy-extra-features p {
    margin: 0;
}

.job-summary-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 48px;
}

.custom-ul ul {
    margin: 20px 0;
}

.custom-ul li {
    padding-left: 20px;
    position: relative;
}

.custom-ul li+li {
    margin-top: 4px;
}

.job-recruiter {
    margin-top: 32px;
}


.custom-ul li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 8px;
    height: 8px;
    background-color: var(--General-Color);
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

.custom-ul ul li:before {
    background: var(--General-Color);
}

.job-recruiter-contact a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.job-recruiter-contact a i {
    margin-right: 10px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--General-Dark);
    font-size: 15px;
    border-radius: 100%;
}

.single-vacatures-row>div {
    margin-top: 48px;
}

.job-recruiter-body .job-recruiter-contact a i {
    transition: all 0.3s ease 0s;
}

.job-summery {
    margin: 48px 0 0 0;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.44444;
}

.steps-outside {
    position: relative;
}

.job-text h3 {
    font-family: "Titillium Web", sans-serif;
    font-size: 20px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 8px;
}

.job-text p+p {
    margin-top: 28px;
}

.job-recruiter-header span {
    font-weight: 700;
    text-transform: uppercase;
}

.job-recruiter-header ul {
    display: flex;
    flex-wrap: wrap;
    margin-top: 0;
}

.job-recruiter-header ul li:not(:last-child) {
    position: relative;
    padding-right: 16px;
    margin-right: 12px;
}

.job-recruiter-header ul li:not(:last-child):before {
    content: "";
    position: absolute;
    border-radius: 50%;
    width: 4px;
    height: 4px;
    inset: 11px 0 auto auto;
    background-color: var(--General-Light);
}

.job-recruiter-header ul a {
    color: #fff;
}

.job-recruiter-body {
    padding: 24px;
    gap: 24px;
    flex-wrap: nowrap;
    display: flex;
    color: var(--General-Text-Dark);
    background-color: var(--General-Color);
    align-items: center;
}

.job-recruiter-header {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 12px;
    padding: 16px 24px;
    background-color: var(--General-Dark);
    color: var(--General-Text-Light);
}

.job-recruiter-img {
    width: 152px;
}

.job-recruiter-content>span {
    display: block;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.2;
    font-size: 20px;
    margin-top: 16px;
}

.job-recruiter-content>p {
    margin-top: 4px;
    font-weight: 600;
    letter-spacing: .08rem;
    text-transform: uppercase;
    font-size: 14px;
    line-height: 1.57143;
}

.job-recruiter-contact {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.job-text p {
    margin: 0;
}

img {
    max-width: 100%;
}

.steps-outside:before {
    content: "";
    position: absolute;
    left: -46px;
    top: 0;
    height: 100%;
    width: 1px;
    background-color: var(--General-Dark);
}

.steps-outside:after {
    position: absolute;
    top: 50%;
    text-align: center;
    border: 1px solid var(--General-Dark);
    border-width: 1px 0 1px 1px;
    background-color: var(--General-Light);
    -webkit-border-radius: 15px 0 0 15px;
    -moz-border-radius: 15px 0 0 15px;
    border-radius: 15px 0 0 15px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 50px;
    line-height: 28px;
    left: -95px;
}

.job-details.steps-outside:after {
    content: "01";
}

.job-benefits-description:after {
    content: "02";
}

.job-requirements-description:after {
    content: "03";
}

.job-company-description:after {
    content: "04";
}

.job-apply-part:after {
    content: "05";
}

.apply-fix-footer {
    border-top: 1px solid #fff;
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    z-index: 2;
    padding: 12px 0;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.apply-fix-footer.aff-active {
    bottom: 0;
}

.apply-fix-footer.aff-active.remove-apply-fix-footer {
    bottom: -100%;
}

.aff-inner {
    display: flex;
    align-items: center;
}

.job-apply-buttons {
    display: flex;
    align-items: center;
    margin-top: 24px;
}

.small-avatar {
    display: flex;
    align-items: center;
}

.small-avatar img {
    width: 40px;
    border-radius: 100%;
    margin-right: 10px;
}

.cso-content {
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cso-img:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, .8) 100%);
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.cso-img {
    position: relative;
}

.neem-contact-section .cso-content h4 {
    margin-bottom: 0;
}

.contact-card {
    margin-top: 30px;
    display: flex;
    align-items: center;
}

.contact-card-img {
    width: 122px;
    line-height: 0;
    margin-right: 16px;
    border-radius: 100%;
    overflow: hidden;
}

.contact-card-details span {
    display: block;
    font-size: 20px;
    line-height: 1.2;
    font-weight: 700;
    text-transform: uppercase;
}

.contact-card-details p {
    margin-top: 4px;
    font-weight: 600;
    letter-spacing: .08rem;
    text-transform: uppercase;
    font-size: 14px;
    line-height: 1.57143;
}

.neem-contact-contact-outer {
    margin-top: 30px;
}

.neem-contact-contact-outer>span {
    margin-bottom: 12px;
    display: block;
    font-size: 20px;
    line-height: 1.2;
    font-weight: 700;
    text-transform: uppercase;
}

.custom-contact-list a {
    text-decoration: none;
    display: flex;
    align-items: center;

}

.neem-contact-title {
    margin-bottom: 32px;
}

.custom-contact-list i {
    margin-right: 10px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--General-Dark);
    font-size: 13px;
    border-radius: 100%;
}

.neem-contact-contact-outer .custom-contact-list a i {
    transition: all 0.3s ease 0s;
}

.custom-contact-list li+li {
    margin-top: 8px;
}

.vacatures-listing-box {
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.vlb-content {
    padding: 24px;
    color: #000;
}

.vlb-content h3 {
    line-height: 1.5;
    font-size: 16px;
}

.vlb-features {
    margin-top: 16px;
    display: flex;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.vlb-features li:not(:last-child):after {
    content: "|";
    padding: 0 5px;
}

.vlb-features li {
    font-size: 14px;
}

.vlb-extra-features {
    margin-top: 16px;
}

.vlb-extra-features li {
    display: flex;
    align-items: flex-start;
}

.vlb-extra-features li i {
    position: relative;
    top: 5px;
    margin-right: 10px;
    font-size: 14px;
}

.vlb-extra-features li * {
    font-size: 14px;
}

.vlb-buttons {
    padding: 16px 24px;
    background: var(--General-Color);
}

.vlb-buttons a {
    margin: 0;
    width: 100%;
    text-align: center;
    padding: 7px 16px;
}

.vlb-buttons a+a {
    margin-top: 12px;
}

.vacatures-slider-title {
    margin-bottom: 32px;
}

.vlb-extra-features p {
    margin: 0;
}

.vlb-extra-features p {
    margin: 0;
}

.owl-item .vacatures-listing-box {
    height: 100%;
}

.common-btn-black-border,
.common-btn-black-border:visited {
    background-color: transparent;
    color: var(--General-Text-Dark);
}

.common-btn-black-border:hover,
.common-btn-black-border:focus {
    background-color: var(--General-Dark);
    color: var(--General-Text-Light);
}

/*09. General blocks CSS*/

.vacatures-hero:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.7973783263305322) 0%, rgba(0, 0, 0, 0) 100%);
}

.banner-content-btn-wrapper {
    display: none;
}

.vacatures-hero {
    background-image: url(/wp-content/uploads/2024/10/header-banner-1920x421-willemiiwerkt2023-2.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    position: relative;
}

.page-banner img {
    max-height: 370px;
    width: 100%;
}

.categories-sec-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.categories-listing-box:hover h3 em {
    color: var(--General-Color);
}

.categories-listing-box {
    position: relative;
    overflow: hidden;
    margin: 0;
    width: 100%;
    color: #fff !important;
}

.categories-listing-box>img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.categories-listing-box:nth-child(-n+3) {
    grid-row: 1 / 3;
}

.categories-sec-listing {
    width: 100%;
    margin-top: 32px;
    justify-content: center;
    display: grid;
    grid-gap: 32px;
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

.categories-listing-box:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, .8) 100%);
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    z-index: 2;
}

.categories-listing-box h3 {
    position: absolute;
    bottom: 24px;
    left: 24px;
    width: calc(100% - 48px);
    z-index: 2;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    font-size: 22px;
    -ms-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    margin: 0;
}

.vakgebieden-listing-row {
    grid-column-gap: 30px;
    background-color: transparent;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    display: grid;
}

.vakgebieden-listing-row.vakgebieden-listing-end-split .categories-listing-box {
    grid-row: none !important;
}

.vakgebieden-listing-row {
    grid-row-gap: 30px;
}

.vakgebieden-listing-row .categories-listing-box h3 {
    font-size: 20px;
    line-height: 1.2;
    font-weight: 700;
}

.categories-listing-box:hover .categories-listing-box-title>* {
    bottom: 48px;
}

.categories-listing-box:nth-child(4) img,
.categories-listing-box:nth-child(5) img {
    position: absolute;
    top: 0;
    left: 0;
    padding-top: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/*****************************/

@media only screen and (min-width: 992px) {
    .bgPrimaryBase {
        background: linear-gradient(90deg, var(--General-Light) 50%, var(--General-Dark) 50%, var(--General-Dark) 100%);
    }
}



@media only screen and (max-width: 1679px) {
    h1 {
        font-size: 36px;
        line-height: 1.05556;
    }

    h4 {
        font-size: 22px;
        font-size: 1.375rem;
        line-height: 1.09091;
    }

    .neem-contact-contact-outer {
        margin-top: 24px;
    }

    .full-width-inner-container>div:last-child .about-img {
        width: 100%;
    }

    .full-width-inner-container>div:first-child .rich-text {
        padding-right: 8.5%;
        padding-left: 8.5%;
        margin-left: calc(8.5% + 8px);
    }

    section {
        padding: 64px 0;
    }

    .job-summery {
        margin: 32px 0 0 0;
    }

    h2 {
        font-size: 28px;
        line-height: 1.07143;
    }

    .container {
        max-width: 83%;
    }

    .big-h2 h2 {
        font-size: 36px;
        line-height: 1.05556;
    }

    .job-recruiter {
        margin-top: 24px;
    }

    .contact-card-details span {
        font-size: 18px;
        line-height: 1.22222;
    }
}

@media only screen and (max-width: 1439px) {
    h1 {
        font-size: 24px;
        line-height: 1.08333;
    }

    .grow-footer-links-wrapper {
        padding: 32px;
    }

    .grow-footer-links-wrapper {
        margin-top: -22px;
    }

    .vmf-filter {
        flex-direction: column;
        gap: 12px;
    }

    .contact-card-details span {
        font-size: 16px;
        line-height: 1.25;
    }

    .page-banner-content {
        bottom: 40px;
    }

    .job-recruiter {
        margin-top: 16px;
    }

    .footer-bottom {
        padding: 32px 0 !important;
    }

    blockquote,
    q {
        font-size: 18px;
        line-height: 1.44444;
    }

    .neem-contact-contact-outer>span {
        font-size: 18px;
        line-height: 1.22222;
    }

    .grow-footer-title {
        padding: 32px 0 64px 0;
    }

    p,
    h1,
    h2,
    h3,
    h4,
    h5,
    h6,
    blockquote,
    ul,
    ol {
        margin-top: 24px;
    }

    .job-text p+p {
        margin-top: 24px;
    }

    .big-h2 h2 {
        font-size: 24px;
        line-height: 1.08333;
    }

    .cso-content {
        padding: 32px;
    }

    .apply-vacatures-form-box-inner {
        max-width: 100%;
    }

    h4 {
        font-size: 18px;
        font-size: 1.125rem;
        line-height: 1.11111;
    }

    h2 {
        font-size: 22px;
        line-height: 1.09091;
    }

    .mb-common {
        margin-bottom: 24px;
    }

    .mt-common {
        margin-top: 24px;
    }

    .mb-common-lg {
        margin-bottom: 40px;
    }

    .mt-common-lg {
        margin-top: 40px;
    }

    .rich-text>* {
        margin-top: 24px;
    }

    .rich-text>*:first-child {
        margin-top: 0;
    }

    .single-vacatures-row>div {
        margin-top: 32px;
    }
}


@media only screen and (max-width: 1199px) {
    .vakgebieden-listing-row {
        grid-gap: 20px;
    }
}

@media only screen and (max-width: 1079px) {
    .grow-footer-links-wrapper {
        padding: 24px 16px;
    }

    section.padding-md {
        padding: 32px 0;
    }

    .rich-text>* {
        margin-top: 20px;
    }

    .rich-text>*:first-child {
        margin-top: 0;
    }

    .grow-footer-links-wrapper a {
        width: 50%;
    }

    .page-banner-content {
        bottom: 24px;
    }

    section {
        padding: 32px 0;
    }

    .job-text p+p {
        margin-top: 20px;
    }

    .large-h2 h2 {
        font-size: 28px;
        line-height: 1.14286;
    }

    .large-h2 h1 {
        font-size: 28px;
        line-height: 1.14286;
    }

    .mlb-content .mlb-position {
        margin-bottom: 5px;
    }

    .neem-contact-contact-outer>span {
        font-size: 16px;
        line-height: 1.25;
    }

    .grow-footer-links-wrapper a:nth-child(3) {
        margin-top: 16px;
    }

    .cso-content {
        padding: 24px 16px;
    }

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

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

    .mb-common-lg {
        margin-bottom: 25px;
    }

    .mt-common-lg {
        margin-top: 25px;
    }

    .medewerkers-listing-box {
        width: 100%;
    }

    .mlb-img {
        width: 72px;
        height: 72px;
        flex: 0 0 72px;
    }

    .medewerkers-listing {
        margin-top: 10px;
    }

    p,
    h1,
    h2,
    h3,
    h4,
    h5,
    h6,
    blockquote,
    ul,
    ol {
        margin-top: 20px;
    }

    section.padding-md {
        padding: 32px 0;
    }

    .single-vestigingen-hero.has-mouse {
        padding-bottom: 90px !important;
    }

    .single-vestigingen-hero .single-vestigingen-hero-img {
        bottom: -90px;
    }
}

@media only screen and (max-width: 991px) {
    .header-logo img.custom-logo {
        max-width: 100px;
    }

    .banner-content-btn-wrapper .read-less {
        display: none;
    }

    .banner-content-wrapper.no-clamp {
        display: initial;
    }

    .banner-content-wrapper {
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
    }

    .banner-content-btn-wrapper {
        display: block;
    }


    .banner-content-btn-wrapper a,
    .banner-content-btn-wrapper a:hover {
        color: #FFF;
        font-weight: 700;
        text-decoration: underline;
    }

    .header-logo {
        padding: 0;
    }

    .home-hero-section .vacatures-filters-top {
        flex-wrap: wrap;
    }

    .home-hero-section .search-geo {
        width: 56%;
    }

    .full-width-inner-container>div:first-child .rich-text {
        margin: 0;
        padding: 0 15px;
        width: 100%;
    }

    .vacatures_main_filter {
        padding: 0;
        margin-top: 30px;
        background: var(--General-Dark);
    }

    .header-section {
        padding-top: 20px;
        padding-bottom: 20px;
        padding-left: 10px;
        padding-right: 10px;
    }

    .about-img {
        padding-top: 32px;
    }

    .sidebar-wrapper {
        top: 103px;
    }

}

@media only screen and (max-width: 839px) {
    .grow-footer-links-wrapper a {
        width: 100%;
    }

    .vakgebieden-listing-row {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }

    .categories-listing-box {
        width: calc(33.33% - 14px);
    }

    .categories-listing-box:nth-child(4) img,
    .categories-listing-box:nth-child(5) img {
        position: initial !important;
    }

    .job-recruiter-header {
        padding: 12px 16px;
    }

    .vacatures-head-inner h1 {
        font-family: "Titillium Web", sans-serif;
        font-weight: 700;
    }

    .single-vacatures-section h1 {
        font-family: "Titillium Web", sans-serif;
        font-weight: 700;
    }

    .grow-footer-links-wrapper a:nth-child(2) {
        margin-top: 16px;
    }

    .single-vestigingen-hero-img:before {
        right: 0;
        width: 100%;
        background: rgba(0, 0, 0, .8);
    }

    .job-recruiter-body {
        padding: 16px;
    }

    .single-vestigingen-hero-img img {
        height: 100%;
        object-fit: cover;
    }

    .container {
        max-width: 100%;
    }

    .job-summery {
        margin: 24px 0 0 0;
    }

    .single-vestigingen-hero-content {
        width: 100%;
        margin: 0;
        row-gap: 20px;
    }

    .steps-outside:before {
        content: none;
    }

    .single-vestigingen-hero-img {
        position: absolute;
        top: -32px;
        left: 0;
        width: 100%;
        margin: 0;
        overflow: hidden;
        padding: 0;
        bottom: -32px;
    }

    .single-vacatures-row>div {
        margin-top: 24px;
    }

    .page-banner img {
        min-height: 290px;
        object-fit: cover;
    }

    .single-vestigingen-hero-wrap {
        margin: 0;
    }

    .single-vestigingen-hero {
        padding-bottom: 32px !important;
    }

    .neem-contact-title {
        margin-bottom: 24px;
    }

    .job-summary-wrapper {
        margin-top: 36px;
    }
}

@media only screen and (max-width: 767px) {
    .footer-copyright {
        text-align: center;
    }

    .hide-mobile {
        display: none !important;
    }

    .vlb_footer {
        flex-wrap: wrap;
    }

    .custom-search-row {
        align-items: flex-end;
    }


    .home-hero-section .job-search-option {
        width: 100%;
    }

    .home-hero-section .search-geo {
        width: 100%;
        flex-wrap: wrap;
        margin-top: 10px;
    }

    .home-hero-section .postcode-option {
        width: 100%;
    }

    .home-hero-section .selectbox-option {
        width: 100%;
    }

    .home-hero-section .job-search-submit {
        width: 100%;
    }

    .home-hero-section .job-search-submit input {
        width: 100%;
    }

    .home-hero-section .vacatures-filters-row input,
    .home-hero-section .vacatures-filters-row select {
        font-size: 16px;
        min-height: auto;
        line-height: normal;
    }

    .job-recruiter-img {
        width: 104px;
    }

    .home-hero-section .selectbox-arrow {
        top: 9px;
    }

    .home-hero-section .get-location {
        top: 10px;
    }

    .custom-search-left {
        flex-wrap: wrap;
    }

    .job-recruiter-contact li {
        width: 100%;
    }

    span.csl-title {
        width: 100% !important;
        display: block;
        margin: 0 0 10px 0;
    }

    .job-recruiter-body>h5 {
        width: calc(100% - 120px);
    }

    .cp-numbers>* {
        margin: 0 8px;
        font-size: 18px;
    }

    .contact-card-img {
        width: 74px;
    }

    .custom-search-left input[type="text"] {
        width: calc(100% - 56px);
    }

    .job-recruiter-body {
        gap: 16px;
        flex-wrap: wrap;
    }

    .job-recruiter-content>span {
        margin-top: 8px;
        font-size: 16px;
    }
}

@media only screen and (max-width: 575px) {
    h2 {
        font-size: 17px;
        line-height: 1.09091;
    }

    .active-fixed-filter-trigger .sticky-filter-trigger {
        bottom: 0;
    }

    .sticky-filter-trigger {
        position: fixed;
        bottom: 0;
        z-index: 99;
        background: var(--General-Color);
        width: 100%;
        left: 0;
        padding: 13px 15px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        transition: all 0.3s ease 0s;
    }

    .sticky-filter-trigger .filter-trigger {
        color: #fff;
    }

    .sticky-filter-trigger .alles-wissen {
        color: #fff;
    }

    div#educationlevels-filter {
        border: none;
    }

    .vakgebieden-listing-row {
        grid-gap: 0;
    }

    .categories-listing-box {
        width: 100%;
    }

    .categories-listing-box+.categories-listing-box {
        margin-top: 20px;
    }

    .vacatures_main_filter {
        margin-top: 0;
    }

    .custom-upload-box label {
        flex-direction: column;
        gap: 10px;
    }

    .apply-vacatures-form-box-inner h6 {
        font-size: 16px;
        line-height: normal;
    }

    .home-hero-section .vacatures-filters-row label {
        display: none;
    }

    .home-hero-section .search-geo {
        margin: 0;
    }

    /* .home-hero-section .vacatures-filters-top {
    margin-bottom: 20px;
} */
    .home-hero-section {
        min-height: auto;
        padding: 70px 0 90px;
    }

    .apply-vacatures-form-box {
        padding: 32px 20px;
    }

    .custom-upload-box .file-select-box {
        width: 100%;
    }

    .custom-upload-box .file-upload-box {
        width: 100%;
    }

    .new-filter-trigger-mobile {
        padding: 14px 16px;
        color: var(--General-Text-Dark);
        background-color: var(--General-Color);
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .new-filter-trigger-mobile span {
        display: block;
        text-transform: uppercase;
        font-weight: 700;
        line-height: 20px;
    }

    .new-filter-trigger-mobile i {
        width: 24px;
        height: 24px;
        display: flex;
        justify-content: center;
        border: 1px solid var(--General-Dark);
        color: var(--General-Dark);
        border-radius: 100%;
        pointer-events: none;
    }

    .new-filter-trigger-mobile:hover i {
        background: var(--General-Dark);
        color: #fff;
        box-shadow: 0 0 0 2px rgba(0, 0, 0, .5);
    }

    .new-filter-trigger-mobile.nftm-active i {
        transform: rotate(180deg);
    }

    .vmf-filter-left {
        flex-wrap: wrap;
    }

    .vmf-filter-left .filter-box:first-child {
        width: calc(100% - 50px);
        margin-bottom: 15px;
        border: none;
    }

    .vmf-filter-left .filter-box:first-child>input {
        border-radius: 100px;
        padding: 8px 20px 8px 35px;
    }

    .vmf-filter-left .filter-box:first-child>input.suggestions-active {
        border-radius: 100px !important;
    }

    .vmf-filter-left .filter-box.search-filter .extra-filter-options {
        top: calc(100% + 5px);
        min-width: auto;
    }

    .vmf-filter-left .filter-box>input {
        border-radius: 100px 0 0 100px;
        padding: 8px 20px 8px 35px;
    }

    .vmf-filter-left .filter-box:nth-child(3) {
        width: 60%;
        margin-top: 15px;
    }

    .vmf-filter-left .selectbox-option {
        width: 40% !important;
        margin-top: 15px;
    }

    .vmf-filter {
        gap: 15px;
    }

    .vmf-filter-left>div>img {
        top: 10px;
    }

    .vmf-filter-left .selectbox-option select {
        padding: 8px 35px 8px 35px;
    }

    .vmf-filter-left .selectbox-option .selectbox-arrow {
        top: 8px;
    }

    .vmf-filter {
        position: relative;
    }

    .new-filter-design-mobile .vmf-filter-left .filter-box:first-child {
        width: 100%;
        margin-bottom: 15px;
        border: none;
        position: relative;
        margin-top: 28px;
    }

    .new-filter-design-mobile .vmf-filter-left .filter-box:first-child .new-filter-title {
        position: absolute;
        top: -32px;
        left: 0;
        margin: 0;
        font-weight: 600;
        margin-bottom: 8px;
        color: var(--General-Text-Dark);
        font-size: 18px;
        line-height: 1.44444;
        font-weight: 600;
    }

    .new-filter-design-mobile .vmf-filter-left .filter-box:first-child img {
        display: none;
    }

    .new-filter-design-mobile .vmf-filter-left .filter-box:first-child #search-vacatures {
        padding: 7px 16px;
    }

    .new-filter-design-mobile .vmf-filter-left .filter-box:nth-child(3) img {
        display: none;
    }

    .new-filter-design-mobile .vmf-filter-left .filter-box:nth-child(3) #location-field {
        padding: 7px 16px;
        border-radius: 100px;
    }

    .new-filter-design-mobile .vmf-filter-left .filter-box:nth-child(3) .new-filter-title {
        position: absolute;
        top: -32px;
        left: 0;
        margin: 0;
        font-weight: 600;
        margin-bottom: 8px;
        color: var(--General-Text-Dark);
        font-size: 18px;
        line-height: 1.44444;
        font-weight: 600;
    }

    .new-filter-design-mobile .vmf-filter-left .filter-box:nth-child(3) {
        margin-top: 28px;
        border: none;
        width: calc(100% - 121px);
    }

    .new-filter-design-mobile .vmf-filter-left .selectbox-option {
        margin-top: 26px;
        display: block;
        width: 111px !important;
        margin-left: auto;
    }

    .new-filter-design-mobile .vmf-filter-left .selectbox-option #distance-filter {
        border-radius: 100px;
        padding: 8px 16px !important;
    }

    .new-filter-design-mobile .vmf-filter-left .selectbox-option>img {
        display: none !important;
    }

    .new-filter-design-mobile .job-search-submit input {
        text-align: center;
        font-size: 16px;
        line-height: 1.25;
        display: inline-block;
        padding: 9px 19px !important;
        font-weight: 300;
        text-transform: uppercase;
        letter-spacing: .08rem;
        transition: .3s;
        border-radius: inherit;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        width: 100%;
        box-sizing: border-box;
        border: 1px solid var(--General-Dark) !important;
        color: var(--General-Text-Light);
        background-color: var(--General-Dark);
    }

    .new-filter-design-mobile .job-search-submit input:hover {
        background-color: transparent;
        color: var(--General-Text-Dark);
    }

    .new-style-filter-footer {
        margin-top: 4px;
        display: flex;
        justify-content: space-between;
        padding: 12px 16px;
    }

    .new-style-filter-footer {
        margin-top: 4px;
        display: flex;
        justify-content: space-between;
        padding: 12px 16px;
    }

    .new-filter-trigger img {
        width: 24px;
        margin-right: 10px;
    }

    .new-filter-trigger {
        display: flex;
        align-items: center;
    }

    .new-clear-filters i {
        margin: 0 10px 0 0;
        width: 24px;
        height: 24px;
        border: 1px solid var(--General-Dark);
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 100%;
        font-size: 11px;
    }

    .new-filter-design-mobile {
        background: var(--General-Color);
        padding: 5px 16px 14px 16px;
    }

    .vacatures_listing_box>h6 {
        font-size: 20px;
        margin-bottom: 10px;
        font-weight: 600;
    }

    .vlb_footer_actions {
        width: 100%;
        flex-wrap: wrap;
    }

    .vlb_footer_actions .common-btn {
        width: calc(100% - 42px);
        text-align: center;
    }

    .vlb_footer_actions .common-btn.solliciteer-btn {
        width: 100%;
    }

    .vacatures_listing_box>h6 {
        font-size: 20px;
        margin-bottom: 10px;
        font-weight: 600;
    }

    .vlb_header_left {
        padding: 0 15px 0 0;
    }

    .vlb_footer ul.vlb_features {
        display: block;
        margin-bottom: 20px;
    }

    .filters-main-sidebar {
        padding: 15px;
        position: fixed;
        top: 0;
        z-index: 999;
        min-height: 100vh;
        background: var(--General-Dark);
        transition: all 0.3s ease 0s;
        left: -100vw;
    }

    .filters-main-sidebar.main-filter-active {
        left: 0;
    }


    .vacatures-sidebar {
        padding: 0;
        max-height: calc(100vh - 30px);
        overflow-y: scroll;
    }

    .vacatures-sidebar-header {
        padding: 20px 24px;
        position: sticky;
        background: #334278;
        top: 0;
        z-index: 9;
        border-bottom: 1px solid #475e70;
    }

    .vacatures-sidebar-header .alles-wissen {
        display: none;
    }

    .active-filter-wrap {
        padding: 0 24px;
    }

    .filter-collapse-box {
        padding-left: 24px;
        padding-right: 24px;
    }

    .filter-collapse-box:last-child {
        padding-bottom: 24px;
    }

    .filter-collapse-body {
        max-height: initial !important;
    }


    .home-hero-form-outer {
        margin-top: 20px;
    }


}


@media only screen and (max-width: 479px) {
    .job-recruiter-img {
        width: 104px;
    }

    .job-recruiter-content>span {
        margin-top: 8px;
    }

    .vlb-content {
        padding: 24px 15px;
    }
}