@import url(../font/stylesheet.css);

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
}

body {
    background: #ffffff;
    font-size: 20px;
    line-height: 1;
    color: #000000;
    font-family: 'NeueHaasUnicaW1G';
    font-weight: normal;
}

ul {
    list-style: none;
    padding: 0;
}

p {
    margin-bottom: 40px;
    font-size: 20px;
    line-height: 28px;
}

#map-canvas {
    width: 100%;
    height: 720px;
}

a {
    color: #ff878f;
    text-decoration: none;
}
/* ----- Heading Font CSS ------ */

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 25px;
    line-height: 1.2;
    font-weight: 400;
    color: #6651ca;
    font-family: 'Gotham' !important;
    font-weight: bold;
}

h1 {
    font-size: 50px;
}

h2 {
    font-size: 47px !important;
}

h3 {
    font-size: 32px;
}

h4 {
    font-size: 25px;
}

h5 {
    font-size: 20px;
}

h6 {
    font-size: 18px;
}

strong {
    font-weight: bold;
}

a:focus, .btn:focus, button:focus, .btn-primary:not(:disabled):not(.disabled):active:focus {
    outline: none;
    box-shadow: none;
}

input:focus {
    border: none;
    outline: none;
}

input, select, textarea {
    font-family: 'Gotham';
    font-weight: 500;
}
/* global css start */

.wrapper {
    max-width: 1370px;
    margin: 0 auto;
    width: 100%;
    padding: 0 20px;
}
/* button with arrow */
.button {
    position: relative;
    transition: 0.4s;
    padding: 13px 45px 13px 15px !important;
    padding-right: 85px;
    font-family: 'Gotham';
    font-weight: bold;
    font-size: 20px;
    text-align: center;
    border-radius: 12px;
    line-height: 1;
    margin-top: 3px;
    color: #fff;
    background-color: #fc801a;
}

    .button:hover {
        background-color: #ff878f;
    }

    .button::after {
        width: 31px;
        height: 39px;
        content: "";
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        background: url(../images/arrow.svg)center right no-repeat;
        background-size: 26px;
        margin-top: 2px;
    }

    .button.purpel {
        background-color: #6651ca;
    }

        .button.purpel:hover {
            background-color: #fc801a;
        }

        .button.purpel::after {
            background: url(../images/arrow-white.svg)center right no-repeat;
            background-size: 26px;
        }
/* button with border */
.btn {
    transition: 0.4s;
    padding: 15px 20px;
    background: transparent;
    border: 2px solid #ff878f;
    color: #ff878f;
    border-radius: 15px;
    font-family: 'Gotham';
    font-weight: bold;
    display: inline-block;
}

    .btn:hover {
        background: #ff878f;
        color: #fff;
    }

.p-tb-100 {
    padding: 100px 0;
}

.p-tb-70 {
    padding: 70px 0;
}

.center {
    text-align: center;
}

.clearfix {
    overflow: auto;
}

.pb-100 {
    padding-bottom: 100px;
}

.clearfix::after {
    content: "";
    clear: both;
    display: table;
}

.main-content {
    padding-top: 131px;
}
/* global css end */
/* ******************************* main css ***************************** */

/* header css start */
.header {
    padding: 32px 50px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    position: fixed;
    z-index: 99;
    width: 100%;
    background: #fff;
    transition: 0.4s;
    box-shadow: 0;
}

    .header.sticky {
        box-shadow: 1px 1px 10px rgba(0,0,0,0.4);
    }

    .header .logo {
        width: 262px;
    }

        .header .logo a {
            display: block;
        }

    .header .nav-bar {
        width: calc(100% - 262px);
        padding-left: 24px;
        text-align: right;
        margin-top: 15px;
    }

        .header .nav-bar > ul > li {
            margin-left: 59px;
            color: #6751ca;
            font-family: 'Gotham';
            font-weight: bold;
            position: relative;
        }

            .header .nav-bar > ul > li:first-child {
                margin-left: 0;
            }

            .header .nav-bar > ul > li::after {
                content: "";
                position: absolute;
                left: 0;
                bottom: -4px;
                height: 3px;
                background: #F9961E;
                width: 0%;
                transition: 0.4s;
            }

            .header .nav-bar > ul > li:hover::after, .header .nav-bar > ul li.active::after {
                width: 100%;
            }

        .header .nav-bar a {
            color: #6751ca;
            display: block;
        }

        .header .nav-bar li {
            display: inline-block;
            font-size: 24px;
            line-height: 1;
        }

            .header .nav-bar li ul {
                padding-top: 15px;
                z-index: 1;
                text-align: left;
                transition: all 0.3s;
                -webkit-transition: all 0.3s;
                -ms-transition: all 0.3s;
                transform: scale(1, 0);
                -webkit-transform: scale(1, 0);
                -ms-transform: scale(1, 0);
                opacity: 0;
                transform-origin: 0 0;
                -webkit-transform-origin: 0 0;
                -ms-transform-origin: 0 0;
                position: absolute;
                left: -15px;
                top: 100%;
                width: 320px;
                overflow: hidden;
            }

            .header .nav-bar li:hover ul {
                transform: scale(1, 1);
                -webkit-transform: scale(1, 1);
                -ms-transform: scale(1, 1);
                opacity: 100;
            }

            .header .nav-bar li ul li {
                font-size: 18px;
                color: #ffffff;
                display: block;
            }

                .header .nav-bar li ul li a {
                    color: #ffffff;
                    display: block;
                    padding: 20px;
                    border-bottom: 1px solid #fff;
                    background-color: #F9961E;
                }

                    .header .nav-bar li ul li a:hover {
                        background-color: #fc801a;
                    }

                .header .nav-bar li ul li:last-child a {
                    border-bottom: 0;
                }

.menu_bar {
    display: none;
}

/* header css end */

/* hero css start */
.hero_section {
    background: #6651ca;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    overflow: hidden;
}

    .hero_section .left_image {
        width: 66.5%;
    }

        .hero_section .left_image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            max-height: 463px;
            height: 100vh;
        }

    .hero_section .right_text {
        width: 33.5%;
        text-align: left;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        padding: 30px 3%;
        padding-right: 50px;
    }

        .hero_section .right_text .text {
            max-width: 470px;
            display: flex;
            flex-wrap: wrap;
        }

    .hero_section h1 {
        color: #ffffff !important;
        word-break: break-all;
        margin-bottom: 40px;
        width: 100%;
    }

        .hero_section h1 strong {
            color: #fc801a;
            display: block;
        }

    .hero_section .button {
        padding-right: 50px;
    }

        .hero_section .button:hover {
            background-color: #ff878f;
        }

    .hero_section h1:last-child {
        margin-bottom: 0;
    }

/* short text css start */
.short_text_box h2 {
    margin-bottom: 25px;
}

.short_text_box .inner_wrap {
    max-width: 1045px;
    margin: 0 auto;
}


/* blog section start */

.blog_section {
    background: #f2f2f2;
    display: block;
}
    /* .blog_section .blog_wrapper .blog_card {margin-bottom: 0;} */
    .blog_section .title {
        margin-bottom: 40px;
    }

        .blog_section .title h2 {
            margin-bottom: 0;
        }

.blog_wrapper .blog_card a {
    display: block;
}

.blog_wrapper {
    display: flex;
    flex-wrap: wrap;
}

    .blog_wrapper .blog_card {
        width: 32%;
        position: relative;
        z-index: 2;
        background: #fff;
        border-radius: 12px;
        overflow: hidden;
        margin-right: 2%;
        margin-bottom: 40px;
    }

    .blog_wrapper .blog_huur {
        width: 32%;
        position: relative;
        z-index: 2;
        background: #fc801a;
        border-radius: 12px;
        overflow: hidden;
        margin-right: 2%;
        margin-bottom: 40px;
    }

.blog_huur .text_box {
    padding: 25px 20px 20px;
}

    .blog_huur .text_box h4 {
        margin-bottom: 25px;
        line-height: 1.2;
        font-weight: 400;
        color: #fff !important;
        font-family: 'Gotham' !important;
        font-weight: bold;
    }

    .blog_huur .text_box h5 {
        min-height: 52px;
        margin-bottom: 25px;
        line-height: 1.2;
        font-weight: 400;
        color: #fff !important;
        font-family: 'Gotham' !important;
    }

.blog_wrapper .blog_huur:nth-child(3n) {
    margin-right: 0;
}

.button.white {
    background-color: #6651ca;
}

    .button.white:hover {
        background-color: #FCB812;
    }

    .button.white::after {
        background: url(../images/arrow-white.svg)center right no-repeat;
        background-size: 26px;
    }

.blog_card figcaption {
    font-size: 19px;
}

.blog_wrapper .blog_card:nth-child(3n) {
    margin-right: 0;
}

.blog_card figcaption {
    position: absolute;
    left: 0;
    top: 0;
    width: 155px;
    height: 140px;
    z-index: 1;
    background: #6751ca;
    display: block;
    padding: 15px 10px;
    color: #fff;
}

    .blog_card figcaption strong {
        font-weight: bold;
        font-family: 'Gotham';
        margin-bottom: 4px;
        display: block;
    }

    .blog_card figcaption span {
        display: block;
    }

.blog_card .text_box {
    padding: 25px 20px 20px;
}

.blog_card h5 {
    color: #000000;
    letter-spacing: 1px;
    font-size: 20px;
    margin-bottom: 8px;
}

.blog_card .place-location {
    color: #000000;
    letter-spacing: 1px;
    font-size: 20px;
    margin-bottom: 38px;
    display: block;
}

.meta-data {
    margin-bottom: 0;
    padding-left: 0;
    display: flex;
    flex-wrap: wrap;
}

    .meta-data li::before {
        position: absolute;
        content: "";
        left: 0;
        top: 50%;
        transform: translateY(-50%);
    }

    .meta-data li {
        display: inline-block;
        font-size: 16px;
        position: relative;
        padding-left: 25px;
        margin-right: 15px;
    }

        .meta-data li:last-child {
            margin-right: 0;
        }

        .meta-data li::before {
            position: absolute;
            content: "";
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            left: -12px;
            background-size: 30px !important;
            width: 43px;
            height: 37px;
        }

        .meta-data li.distance::before {
            background: url(../images/pluse.svg)center no-repeat;
        }

        .meta-data li.home-type::before {
            background: url(../images/home.svg)center no-repeat;
        }

        .meta-data li.bed-no::before {
            background: url(../images/bed.svg)center no-repeat;
        }

body .te_huur {
    background: #6751ca;
}

body .huur_voorrang {
    background: #fcb812;
}

body .verhuurd {
    background: #f96153;
}

.blog_section .btn_box {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.blog_section.all {
    background: transparent;
}
/* blog section end */

/* filter css */
.filter_section {
    padding: 25px 0;
    background: #f2f1f1;
}

    .filter_section .views_wrap {
        padding-right: 30px;
    }

    .filter_section .wrapper {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }

    .filter_section .total-result {
        color: #656565;
        font-family: 'Gotham';
        font-weight: 500;
        font-size: 28px;
        font-weight: 400;
        line-height: 50px;
    }

.living_req a {
    color: #656565;
    font-family: 'Gotham';
    font-size: 26px;
    font-weight: 400;
    position: relative;
    padding-right: 10px;
    line-height: 48px;
    display: block;
}

    .living_req a span {
        border-radius: 50%;
        text-align: center;
        display: inline-block;
        color: #ffffff;
        font-family: "Gotham";
        font-weight: bold;
        width: 35px;
        line-height: 35px;
        background: #891d4e;
        font-size: 20px;
    }

    .living_req a::after {
        background: url(../images/down-arrow.svg) no-repeat center/25px;
        content: "";
        position: absolute;
        top: 18px;
        right: -30px;
        width: 34px;
        height: 22px;
    }

.views_wrap ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.views_wrap li {
    display: inline-block;
}

    .views_wrap li.img {
        padding-right: 10px;
    }

        .views_wrap li.img a {
            display: block;
        }

        .views_wrap li.img .grid-icon {
            width: 34.5px;
            height: 28.5px;
            background: url(../images/grid.png)no-repeat center;
            display: block;
            background-size: 28px !important;
        }

        .views_wrap li.img:hover .grid-icon {
            background: url(../images/grid-hover.png)no-repeat center;
        }

.shorting {
    padding-bottom: 50px;
    text-align: right;
    text-align: right;
    color: #656565;
    font-family: 'Gotham';
    font-size: 26px;
    font-weight: 500;
}

    .shorting select {
        padding: 8px;
        border-radius: 7px;
        border: 1px solid #656565;
        margin-left: 20px;
        -webkit-appearance: none;
        background: url(../images/select.png)right -1px center no-repeat #fff;
        padding-right: 40px;
    }

    .shorting label {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        justify-content: flex-end;
    }
/* filter css */

/* aanbod Voorrang teller */
.date-wrap {
    position: absolute;
    top: 259px;
    left: 0;
    display: block;
    background-color: #FCB813;
    padding: 10px 11px 10px;
    text-align: center;
}

.hoofdfotos {
    position: relative;
}

.date-wrap.detail {
    position: absolute !important;
    bottom: 0px;
    top: auto;
    left: 50px;
    display: block;
    background-color: #FCB813;
    padding: 10px 11px 10px;
    text-align: center;
    z-index: 9999 !important;
}

.date-wrap li {
    display: inline-block;
    padding: 0 5px;
}

.date-wrap strong,
.date-wrap span {
    display: block;
    color: #fff;
    font-family: 'Gotham';
    font-size: 18px;
    font-weight: 900;
}

.date-wrap span {
    font-size: 16px;
    font-weight: 300;
}
/* End */

/* text and image css */
.text_and_image {
    display: block;
    padding-top: 90px;
}

    .text_and_image .outer_part {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .text_and_image .left_text {
        width: 48%;
        padding-bottom: 50px;
    }

    .text_and_image .right_image {
        margin-top: auto;
        width: 44%;
    }

        .text_and_image .right_image img {
            display: block;
        }
/* text and image css */

/* hero slider css start */
.hero_slider .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 33px;
    background: transparent;
    border: none;
    font-size: 0 !important;
    cursor: pointer;
    z-index: 2;
}

    .hero_slider .slick-arrow.slick-prev {
        left: 30px;
    }

    .hero_slider .slick-arrow.slick-next {
        right: 30px;
    }

    .hero_slider .slick-arrow::before {
        content: "";
        width: 100%;
        height: 100%;
        opacity: 1 !important;
        display: inline-block;
    }

    .hero_slider .slick-arrow.slick-prev::before {
        background: url(../images/prev.png)center no-repeat;
    }

    .hero_slider .slick-arrow.slick-next::before {
        background: url(../images/next.png)center no-repeat;
    }

.hero_slider .slick-current {
    position: relative;
}

    .hero_slider .slick-current::after {
        content: "";
        position: absolute;
        right: 0;
        width: 2px;
        height: 100%;
        background: #FC801B;
        top: 0;
    }

.hero_slider a, .hero_slider a img {
    display: block !important;
}
/* hero slider css end */

/* page nav css star */
.page_menu {
    background: #f2f1f1;
    padding: 30px 0 30px;
}

    .page_menu li {
        display: inline-block;
        font-size: 26px;
        margin-right: 30px;
        position: relative;
    }

        .page_menu li:last-child {
            margin-right: 0;
        }

        .page_menu li a {
            color: #656565;
            font-family: 'Gotham';
            font-weight: 500;
        }

            .page_menu li a:hover {
                color: #fc801a;
            }

        .page_menu li.back-page a {
            padding-left: 35px;
        }

            .page_menu li.back-page a::before {
                content: "";
                position: absolute;
                top: 0px;
                left: 0;
                width: 30px;
                height: 30px;
                background: url(../images/down-arrow.svg) no-repeat center/20px;
                transform: rotate(90deg);
            }
/* page nav css end */

/* blog details css start */
.blog_details_section {
    display: block;
}

    .blog_details_section .outer_part {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        align-items: flex-start;
    }

    .blog_details_section .left_part {
        width: 62%;
    }

    .blog_details_section .right_part {
        width: 35%;
        display: flex;
        justify-content: flex-end;
        flex-wrap: wrap;
    }

    .blog_details_section .links_wrap {
        display: flex;
        flex-wrap: wrap;
    }

        .blog_details_section .links_wrap li {
            display: inline-block;
            width: 30%;
            min-width: 230px;
            position: relative;
            padding: 20px 30px 20px 80px;
            margin-right: 1%;
            transition: all 300ms ease-in-out;
            cursor: pointer;
            border: 1px solid #6651ca;
            margin-bottom: 30px;
            color: #6651ca;
            font-family: 'Gotham';
            font-weight: bold;
        }

            .blog_details_section .links_wrap li a {
                color: #6651ca;
                font-size: 20px;
                display: block;
                font-family: 'Gotham';
                font-weight: bold;
                display: flex;
                align-items: center;
            }

            .blog_details_section .links_wrap li:hover {
                background: #6651ca;
                color: #fff;
            }

                .blog_details_section .links_wrap li:hover a {
                    color: #fff;
                }

        .blog_details_section .links_wrap li {
            display: inline-block;
        }

            .blog_details_section .links_wrap li::before {
                content: "";
                position: absolute;
                top: 50%;
                transform: translateY(-50%);
                left: 22px;
                width: 41px;
                height: 30px;
                background: url(../images/downloaden.svg) no-repeat center/30px;
            }

            .blog_details_section .links_wrap li.heart::before {
                background: url(../images/heart-hover.svg) no-repeat center/30px;
            }

            .blog_details_section .links_wrap li.heart:hover::before {
                background: url(../images/heart-white.svg) no-repeat center/30px;
            }

    .blog_details_section .place-location {
        font-size: 26px;
        color: #656565;
        margin-bottom: 20px;
        display: block;
    }

    .blog_details_section h1 {
        margin-bottom: 5px;
        color: #000;
    }

    .blog_details_section .meta-data li {
        font-size: 25px;
        color: #656565;
        padding-left: 35px;
        margin-right: 25px;
    }

        .blog_details_section .meta-data li:last-child {
            margin-right: 0;
        }

    .blog_details_section .meta-data {
        margin-bottom: 30px;
    }

    .blog_details_section .btn_box {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
    }

        .blog_details_section .btn_box a:not(:last-child) {
            margin-right: 15px;
        }

        .blog_details_section .btn_box br {
            display: none;
        }

    .blog_details_section .meta-data li::before {
        width: 47px;
        height: 35px;
        background-size: 47px !important;
    }

.details_price {
    float: right;
    display: block;
    width: 160px;
    padding: 10px 11px 50px;
    height: 160px;
    color: #fff;
    font-size: 25px;
    line-height: 1.2;
}

    .details_price strong {
        display: block;
    }

.widgets_wrap {
    display: block;
    width: 100%;
    text-align: center;
    padding: 40px 20px;
    background: #f2f1f1;
    clear: both;
    text-align: center
}

    .widgets_wrap .button {
        display: inline-block;
        margin-bottom: 50px;
    }

    .widgets_wrap .social_heading {
        display: block;
        margin-bottom: 40px;
        color: #656564;
        font-size: 25px;
    }

    .widgets_wrap .interst {
        margin-bottom: -60px;
    }

    .widgets_wrap ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
    }

    .widgets_wrap li {
        display: inline-block;
        padding: 0 7px;
    }

        .widgets_wrap li img {
            max-height: 40px;
        }

        .widgets_wrap li a {
            display: block;
            width: 75%;
        }
/* blog details css end */

/* default page  css start */
.fullwidth_text h6 {
    margin-bottom: 2px;
}

.fullwidth_text h3 {
    margin-bottom: 31px;
}

.fullwidth_text .inner_part {
    max-width: 1130px;
    width: 100%;
}

.fullwidth_text ul, .fullwidth_text ol, .twoblock_section ul, .twoblock_section ol {
    padding-left: 18px;
    margin-bottom: 40px;
}

.fullwidth_text li, .twoblock_section li {
    line-height: 28px;
}

.fullwidth_text ul li, .twoblock_section ul li {
    list-style-type: disc;
}

.twoblock_section .inner_part {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.twoblock_section .left_part {
    width: 47%;
}

.twoblock_section .right_part {
    width: 44%;
}

.video_section {
    width: 100%;
    position: relative;
    display: block;
}

    .video_section a {
        display: block;
    }

        .video_section a img {
            display: block;
            width: 100%;
        }

        .video_section a::before {
            position: absolute;
            content: "";
            left: 50%;
            top: 50%;
            background: url(../images/play-btn.png)center center no-repeat;
            width: 61px;
            height: 73px;
            transform: translate(-50%, -50%);
            z-index: 3;
            background-size: 61px;
        }

.fullwidth_text.gray, .twoblock_section.gray {
    background: #f2f2f2;
}

.hurra_btn {
    background: #ff878f;
    margin-right: 40px;
    display: inline-block;
    text-align: left;
    min-width: 302px;
    padding-right: 60px;
}

h2 strong {
    color: #fc801a;
}
/* default page  css end */

/* contact css start */
.grijs {
    padding: 40px;
    background: #F2F2F2;
}

.contactgegevens {
    list-style: none;
    padding-left: 0px !important;
}

    .contactgegevens li {
        list-style-type: none !important;
        color: #FC801A;
        border-bottom: 1px solid #E1E1E1;
        padding: 20px 0px;
    }

        .contactgegevens li a {
            color: #6651CA;
            padding-left: 35px !important;
        }

    .contactgegevens a:hover {
        color: #FC801A;
    }

    .contactgegevens li.tel a {
        background: url(../images/contact_call.svg)left center no-repeat;
    }

    .contactgegevens li.mail a {
        background: url(../images/contact_mail.svg)left center no-repeat;
    }

    .contactgegevens li.chat a {
        background: url(../images/contact_chat.svg)left center no-repeat;
    }

    .contactgegevens li.whatsapp a {
        background: url(../images/contact_whatsapp.svg)left center no-repeat;
    }

    .contactgegevens .chat a:after {
        content: "(tussen 8.30 uur en 17.00 uur)";
        display: block;
        padding-left: 35px !important;
        font-size: 13px;
    }

    .contactgegevens .tel a:after {
        content: "(tussen 9.00 uur en 16.00 uur)";
        display: block;
        padding-left: 35px !important;
        font-size: 13px;
    }

    .contactgegevens .whatsapp a:after {
        content: "(Wij helpen je binnen 2 minuten op werkdagen tussen 8.30 uur - 17.00 uur)";
        display: block;
        padding-left: 35px !important;
        font-size: 13px;
    }
/* contact  css end */

/* Filter css start */
.filter-wrap-bar > div.filter-header {
    padding: 20px 0px 20px 0px;
    margin-bottom: 0px;
    border-bottom: 1px solid #ffffff;
}

.filter-header .close {
    margin-top: -40px;
}

.filter-pheading strong {
    color: #6651CA !important;
}

.red {
    background: #F29201 !important;
}

.range_slider {
    padding-bottom: 170px !important;
}

    .range_slider .ix-slider-bar {
        top: 20px !important;
    }

    .range_slider .ix-min-icon, .range_slider .ix-max-icon {
        border: #F29201 solid 10px !important;
    }

.ix-min-input-label, .ix-max-input-label, .divfrom-to, .ix-min-input, .ix-max-input {
    font-family: 'Gotham' !important;
    color: #6651CA !important;
}

.divfrom-to {
    color: #6651CA !important;
    font-size: 17px !important;
}

.labels-groups span {
    color: #6651CA !important;
    font-size: 17px !important;
    font-family: 'Gotham' !important;
}

.where-live .labels-groups {
    display: flex;
}

    .where-live .labels-groups label {
        margin-bottom: 0px !important;
    }

.close img {
    height: 100%;
    width: 100%;
}
/* contact  css end */

/* team css start */
.team h2, .team p {
    text-align: center;
}

.team .inner_part {
    margin: 0 auto;
}

.employees-bar {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

.employees-panel {
    padding: 10px;
    position: relative;
}

.emp-details {
    position: absolute;
    bottom: 40px;
    left: 0px;
    width: 100%;
    text-align: center;
}

    .emp-details h5, .emp-details span {
        margin-bottom: 0px;
        color: #fff;
    }
/* team css end */


/*  faq start  */
.faq {
    width: 100%;
}

    .faq .accordion {
        width: 100%;
    }

    .faq .acc_item {
        width: 100%;
        margin-bottom: 35px;
    }

    .faq .accordion h2 {
        margin-bottom: 60px;
        text-align: center;
    }

    .faq .acc_title {
        cursor: pointer;
        padding: 25px 50px 25px 25px;
        position: relative;
        width: 100%;
        background: #f2f2f2;
        border-radius: 4px;
    }

        .faq .acc_title h4 {
            margin-bottom: 0;
            line-height: 1.2;
            font-weight: bold;
        }

    .faq .acc_content {
        padding: 20px 10px 1px;
        display: none;
        width: 100%;
    }

        .faq .acc_content p:last-child {
            margin-bottom: 0;
        }

    .faq .acc_title::before {
        content: "";
        position: absolute;
        right: 26px;
        top: 38px;
        transition: 0.4s;
        background: #ff8916;
        width: 18px;
        height: 2px;
    }

    .faq .acc_title::after {
        content: "";
        position: absolute;
        right: 34px;
        top: 30px;
        transition: 0.4s;
        background: #ff8916;
        width: 2px;
        height: 18px;
    }

    .faq .acc_title.active::after {
        display: none;
    }

    .faq .acc_item:last-child {
        margin-bottom: 0;
    }

.accordion ul, .accordion ol {
    padding-left: 18px;
    margin-bottom: 40px;
}

    .accordion ul li {
        list-style-type: disc;
    }

.accordion li {
    line-height: 28px;
}
/* faq end  */

/* footer css start */
.footer-primary {
    background: #6651ca;
}

    .footer-primary h2 {
        color: #fff;
        margin-bottom: 35px;
    }

    .footer-primary .group-input {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        max-width: 720px;
        margin: 0 auto 25px;
    }

    .footer-primary .form-input {
        width: 27%;
        height: 50px;
        color: #726f6f;
        font-size: 16px;
        font-weight: 400;
        border: none;
        border-right: 1px solid #726f6f;
        padding: 10px 15px;
    }

    .footer-primary .formify-error-message {
        color: #fff !important;
        padding: 10px;
    }

    .footer-primary .submit {
        transition: 0.4s;
        cursor: pointer;
        border-radius: 0 25px 25px 0;
        height: 50px;
        width: 19%;
        font-size: 16px;
        line-height: 19px;
        background: #ff878f;
        border: none;
        font-family: 'Gotham';
        font-weight: bold;
        color: #fff;
    }

        .footer-primary .submit:hover {
            background-color: #fcb812;
        }

    .footer-primary .form-input:nth-child(1) {
        border-radius: 25px 0 0 25px;
    }

    .footer-primary .form-input:nth-child(3) {
        border-right: 0;
    }

    .footer-primary label {
        color: #fff;
    }

        .footer-primary label a {
            text-decoration: underline;
        }

    .footer-primary input[type="checkbox"] {
        width: 20px;
        height: 20px;
    }

.footer-secondary {
    background: #513ea8;
    padding: 32px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

    .footer-secondary li {
        display: inline-block;
        margin-right: 22px;
        color: #ff878f;
    }

        .footer-secondary li:last-child {
            margin-right: 0;
        }

    .footer-secondary .left_link {
        width: 50%;
    }

    .footer-secondary .right_link {
        width: 50%;
        text-align: right;
    }

        .footer-secondary .right_link li a {
            padding-left: 25px;
            background-size: 20px !important;
        }

    .footer-secondary a:hover {
        color: #fff;
    }

    .footer-secondary .right_link li.tel a {
        background: url(../images/Phone_Icon.svg)left center no-repeat;
    }

    .footer-secondary .right_link li.mail a {
        background: url(../images/Mail_Icon.svg)left center no-repeat;
    }

/* Responsive css start */

@media only screen and (max-width: 1600px) {

    h1 {
        font-size: 35px;
    }

    h2 {
        font-size: 30px;
    }

    h3 {
        font-size: 25px;
    }

    .hero_section h1 {
        font-size: 50px;
    }

    p {
        line-height: 28px;
        margin-bottom: 25px;
    }

    p, body {
        font-size: 18px;
    }

    .wrapper {
        max-width: 1280px;
    }

    .header, .footer-secondary {
        padding: 25px 30px;
    }

        .header .logo {
            width: 200px;
        }

        .header .nav-bar li {
            font-size: 20px;
        }

        .header .nav-bar > ul > li {
            margin-left: 45px;
        }

    .hero_section .left_image {
        width: 60%;
    }

    .hero_section .right_text {
        width: 40%;
    }

    .hero_section .right_text {
        padding: 30px;
    }

    .button {
        font-size: 18px;
        padding-right: 60px;
    }

    .main-content {
        padding-top: 95px;
    }

    .header .nav-bar {
        margin-top: 0;
    }

    .accordion ul, .accordion ol, .fullwidth_text ul, .fullwidth_text ol, .twoblock_section ul, .twoblock_section ol {
        margin-bottom: 25px;
    }
}

@media only screen and (max-width: 1280px) {
    .header, .footer-secondary {
        padding: 25px 20px;
    }

    .hero_section h1 {
        font-size: 40px;
    }

    .p-tb-100 {
        padding: 70px 0;
    }

    .p-tb-70 {
        padding: 50px 0;
    }

    .pb-100 {
        padding-bottom: 80px;
    }

    .hero_section .right_text {
        padding: 50px 30px;
    }

    .blog_card .place-location, .blog_huur .place-location {
        margin-bottom: 25px;
    }

    .meta-data li {
        margin-bottom: 5px;
    }

    .footer-secondary li {
        margin-right: 15px;
    }

    .text_and_image {
        padding-top: 80px;
    }

    .page_menu li {
        font-size: 22px;
    }

        .page_menu li.back-page a::before {
            height: 22px;
        }

    .blog_details_section .btn_box br {
        display: block;
    }

    .page_menu {
        padding: 20px 0;
    }

        .page_menu li {
            display: block;
            font-size: 18px;
            margin-bottom: 15px;
        }

            .page_menu li:last-child {
                margin-bottom: 0;
            }

            .page_menu li:not(.back-page) a::before {
                content: "";
                position: absolute;
                top: 0px;
                left: 0;
                width: 20px;
                height: 20px;
                background: url(../images/down-arrow.svg) no-repeat center/15px;
                transform: rotate(-90deg);
            }

            .page_menu li a {
                padding-left: 30px !important;
            }

            .page_menu li.back-page a::before {
                height: 20px;
                background-size: 15px;
                width: 20px;
            }

    .date-wrap {
        top: 169px;
    }
}

@media only screen and (max-width: 1023px) {
    .hero_section h1 {
        font-size: 35px;
    }

    .header .nav-bar {
        display: none;
    }

    .hero_section .left_image {
        width: 50%;
    }

    .hero_section .right_text {
        width: 50%;
    }

    .hero_section .right_text {
        padding: 50px 20px;
    }

    .button {
        font-size: 16px;
    }

    .hero_section h1 {
        margin-bottom: 35px;
    }

    .blog_wrapper .blog_card, .blog_wrapper .blog_huur {
        width: 49%;
        margin-right: 2%;
    }

        .blog_wrapper .blog_card:nth-child(3n), .blog_wrapper .blog_huur:nth-child(3n) {
            margin-right: 2%;
        }

        .blog_wrapper .blog_card:nth-child(2n), .blog_wrapper .blog_huur:nth-child(2n) {
            margin-right: 0%;
        }

    .text_and_image .right_image {
        width: 48%;
    }

    .footer-secondary li {
        margin: 5px 0;
        margin-right: 20px;
    }

    .filter_section .total-result, .living_req a, .shorting, .blog_details_section .place-location, .blog_details_section .meta-data li, .widgets_wrap .social_heading, .page_menu li {
        font-size: 22px;
    }

        .living_req a span {
            font-size: 16px;
        }

        .living_req a::after {
            background-size: 20px;
            top: 14px;
        }

    .filter_section {
        padding: 15px 0;
    }

    .menu_bar {
        display: block;
        width: 42px;
    }

        .menu_bar span {
            display: block;
            width: 100%;
            height: 5px;
            background: #513ea8;
            margin-bottom: 6px;
        }

            .menu_bar span:last-child {
                margin-bottom: 0;
            }

            .nav-bar ul.open-menu {
            display: block;
            }

    .blog_details_section .left_part {
        width: 100%;
    }

    .blog_details_section .right_part {
        width: 100%;
        max-width: 435px;
        justify-content: flex-start;
    }

    .blog_details_section .links_wrap li {
        width: 48%;
    }

    .twoblock_section .left_part {
        width: 100%;
        margin-bottom: 25px;
    }

    .twoblock_section .right_part {
        width: 100%;
    }

    .date-wrap {
        top: 199px;
    }
}

@media only screen and (max-width: 767px) {
    .fullwidth_text h3 {
        margin-bottom: 20px;
    }

    .hero_section .left_image {
        width: 100%;
    }

    .hero_section .right_text {
        width: 100%;
    }

    .text_and_image .left_text {
        width: 100%;
    }

    .text_and_image .right_image {
        width: 100%;
    }

        .text_and_image .right_image img {
            margin: 0 auto;
        }

    .footer-primary .form-input {
        width: 100%;
        margin-bottom: 12px;
        border-right: 5px;
    }

        .footer-primary .form-input:nth-child(2) {
            border-radius: 0;
        }

    .footer-primary .submit {
        width: 100%;
        border-radius: 25px;
    }

    .footer-secondary .left_link {
        width: 100%;
    }

    .footer-secondary .right_link {
        width: 100%;
        text-align: left;
    }

    .footer-secondary li {
        margin-bottom: 10px;
    }

    .footer-primary label {
        line-height: 1.2;
    }

    .text_and_image {
        padding-top: 60px;
    }

    .p-tb-100 {
        padding: 60px 0;
    }

    .pb-100 {
        padding-bottom: 60px;
    }

    .p-tb-70 {
        padding: 40px 0;
    }

    .hero_section .right_text {
        padding: 40px 20px;
    }

    .blog_section .btn_box {
        margin-bottom: 0;
    }

    .filter_section .total-result {
        width: 100%;
        text-align: center;
    }

    .filter_section .views_wrap {
        width: 100%;
    }

    .views_wrap ul {
        justify-content: center;
    }

    .video_section a::before {
        background-size: 30px;
    }

    .hero_slider .slick-arrow.slick-prev {
        left: 10px;
    }

    .hero_slider .slick-arrow.slick-next {
        right: 10px;
    }

    .employees-bar {
        display: block;
    }

        .employees-bar img {
            width: 100%;
            max-height: 500px;
            object-fit: cover;
            object-position: 0% 10% !important;
        }

    .where-live .labels-groups {
        display: block;
    }

    .date-wrap {
        top: 139px;
    }
}

@media only screen and (max-width: 600px) {
    h1 {
        font-size: 30px;
    }

    h2 {
        font-size: 25px;
    }

    h3 {
        font-size: 22px;
    }

    h4 {
        font-size: 20px;
    }

    h5 {
        font-size: 18px;
    }

    h6 {
        font-size: 16px;
    }

    .blog_card h5, .blog_card .place-location, .blog_huur h5, .blog_huur .place-location {
        font-size: 18px;
    }

    .blog_card .text_box, .blog_huur .text_box {
        padding: 20px 15px;
    }

    .blog_wrapper .blog_card, .blog_wrapper .blog_huur {
        width: 100%;
        margin-right: 0 !important;
    }

        .blog_wrapper .blog_card figure img, .blog_wrapper .blog_huur figure img {
            width: 100%;
        }

    .header .logo {
        width: 150px;
    }

    .footer-secondary li {
        display: block;
        margin-right: 0;
        margin-bottom: 15px;
    }

    .footer-secondary .right_link li:last-child {
        margin-bottom: 0;
    }

    .meta-data li {
        margin-bottom: 10px;
    }

    .shorting select {
        margin: 10px 0 10px 15px;
    }

    .filter_section {
        display: none;
    }

    p, body {
        font-size: 16px;
    }

    .blog_details_section .links_wrap li {
        width: 100%;
        min-width: auto;
    }

    .blog_details_section .btn_box a {
        display: block;
        width: 100%;
        margin-right: 0 !important;
        margin-bottom: 15px;
    }

    .blog_details_section .meta-data li {
        font-size: 18px;
    }

    .widgets_wrap .interst {
        margin-bottom: -48px;
        position: relative;
        z-index: 1;
        pointer-events: none;
    }

    .widgets_wrap {
        padding: 35px 10px;
    }

    .hero_section .left_image img {
        min-height: 250px;
    }

    .filter_section .total-result, .living_req a, .shorting, .blog_details_section .place-location, .blog_details_section .meta-data li, .widgets_wrap .social_heading, .page_menu li {
        font-size: 20px;
    }

    .footer-secondary .right_link li a {
        background-size: 16px !important;
    }

    .blog_details_section .links_wrap li {
        margin-bottom: 20px;
    }

        .blog_details_section .links_wrap li a {
            font-size: 18px;
        }

    .main-content {
        padding-top: 85px;
    }

    .faq .acc_title h4 {
        font-size: 18px;
    }

    .faq .acc_title {
        padding: 20px 38px 20px 15px;
    }

        .faq .acc_title::before {
            right: 10px;
            top: 28px;
        }

        .faq .acc_title::after {
            right: 18px;
            top: 20px;
        }

    .hurra_btn {
        min-width: 260px;
    }

    .date-wrap {
        top: 199px;
    }
}



/* toegevoegd door Netfactor 06-04-2023 */
@media only screen and (max-width: 1023px) {
	.header .nav-bar.open-menu {
display: block;
position: fixed;
left: 0;
top: 85px;
background: #6751ca;
width: unset;
border: 1px solid #6751ca;
padding-right: 1em;
padding-top: 1em;
width: 100%;
	}
	
	.header .nav-bar a {
            color: #fff;
            display: block;
        }
        
	.header .nav-bar.open-menu li {
		display: block;
		margin-bottom: 1em;
		text-align: left;
	}
	
	.header .nav-bar > ul > li {
margin-left: 0px;
color: #fff;
}

	.header .nav-bar.open-menu li ul {
		position: relative !important;
	}
	.header .nav-bar.open-menu li ul {
		transform: scale(1, 1);
		-webkit-transform: scale(1, 1);
		-ms-transform: scale(1, 1);
		opacity: 100;
	}
	.header .nav-bar.open-menu li ul li {
		text-align: left;
	}
	
	.header .nav-bar.open-menu li ul li a:hover {
	color: #FC801A;
	}
	
	.header .nav-bar.open-menu li ul li a {
		color: #fff;
		display: block;
		padding: 0px 15px;
		border-bottom: 0;
		background-color: transparent;
		font-weight: normal;
	}
	.header .nav-bar.open-menu li ul li a:hover {
		background-color: transparent;
	}	
}
/* einde toegevoegd door Netfactor 06-04-2023 */


