/*STANDAARD STYLING*/

h1 {
    font-size: 45px;
    line-height: 55px;
    font-weight: 700;
    color: #FFFFFF;
    text-shadow: 5px 5px 10px rgba(0, 0, 0, .25);
}

h2 {
    font-size: 35px;
    line-height: 45px;
    font-weight: 700;
    color: #FFFFFF;
}

h3 {
    font-size: 28px;
    line-height: 33px;
    font-weight: 700;
    color: #0A5B80;
}

h4 {
    font-size: 30px;
    line-height: 45px;
    font-weight: 700;
    color: #FFFFFF;
}

h5 {
    font-size: 20px;
    line-height: 25px;
    font-weight: 500;
    color: #0A5B80;
}

.white-block h6 {
    font-size: 25px;
    line-height: 40px;
    font-weight: 700;
    color: #008BCB;
    text-align: center;
    max-width: 675px;
    margin: 60px auto 30px auto;
}

.white-block h6:before {
    content: ' " ';
    font-family: 'Rubik', sans-serif;
    font-size: 90px;
    margin-top: -20px;
    color: #CFCFCF;
    position: absolute;
    left: 50%;
    -webkit-transform: translate(-50%);
    -moz-transform: translate(-50%);
    -ms-transform: translate(-50%);
    -o-transform: translate(-50%);
    transform: translate(-50%);
}

p, a, span {
    font-size: 16px;
    line-height: 25px;
    font-weight: 500;
    color: #98ABB4;
}

h1, h2, h3, h4, h5, h6, p, a, span {
    font-family: 'Rubik', sans-serif;
}

a.nav-link {
    font-size: 16px;
    color: #3E3E3E;
    padding: 15px!important;
    margin-left: 8px;
    margin-right: 8px;
}

.button {
    min-width: 155px;
    height: 55px;
    border-radius: 5px;
    display: inline-block;
    margin-top: 15px;
    overflow: hidden;
}

.button.blue {
    background-color: #008BCB;
    border-bottom: 5px solid #0870A0;
    width: auto;
    min-width: 150px;
}

.button.white {
    background-color: #FFFFFF;
    border-bottom: 5px solid #F0F0F0;
    width: auto;
    min-width: 150px;
}

.button.white a {
    color: #008BCB;
}

.button a {
    position: relative;
    width: auto;
    text-align: center;
    display: inline-block;
    color: #FFFFFF;
    text-decoration: none;
    padding: 14px 15px;
    font-weight: 500;
    height: 100%;
}

.button .icon, .btn-prevnext .icon {
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: -webkit-inline-flex;
    display: inline-flex;

    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;

    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;

    width: 26px;
    height: 26px;
    border-radius: 100%;
    position: relative;
    margin-left: 10px;
    top: -3px;
}

.button .icon:after, .btn-prevnext .icon:after {
    content: '\f054';
    font-family: 'FontAwesome';
    font-weight: 700;
    display: inline-block;
    font-size: 12px;
    position: relative;
    left: 1px;
    top: 1px;
}

.button.white .icon {
    border: 2px solid #2C9BCD;
}

.button.white .icon:after {
    color: #2C9BCD;
}

.button.blue .icon {
    border: 2px solid #FFFFFF;
}

.button.blue .icon:after {
    color: #FFFFFF;
}

.button .nav-link {
    width: 100%;
    margin: 0;
}

.button.over .icon {
    -webkit-animation: iconSlide .5s forwards;
    -o-animation: iconSlide .5s forwards;
    animation: iconSlide .5s forwards;
}

.button.over a {
    -webkit-animation: textSlide .5s forwards;
    -o-animation: textSlide .5s forwards;
    animation: textSlide .5s forwards;
}

.button.out .icon {
    -webkit-animation: iconSlideBack .5s forwards;
    -o-animation: iconSlideBack .5s forwards;
    animation: iconSlideBack .5s forwards;
}

.button.out a {
    -webkit-animation: textSlideBack .5s forwards;
    -o-animation: textSlideBack .5s forwards;
    animation: textSlideBack .5s forwards;
}

.button:hover a {
    left: 16px;
}

@keyframes iconSlide {
    0% {
        left: 0;
    }
    30% {
        left: 15px;
    }
    60% {
        left: 5px;
    }
    100% {
        left: 60px;
    }
}

@keyframes iconSlideBack {
    from {
        left: 60px;
    }
    to{
        left: 0;
    }
}

@keyframes textSlide {
    0%, 62% {
        left: 0;
    }
    100% {
        left: 16px;
    }
}

@keyframes textSlideBack {
    from {
        left: 16px;
    }
    to{
        left: 0;
    }
}

.full_link_btn {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: transparent;
    z-index: 4;
    border-radius: 2px;
}

.grecaptcha-badge {
    visibility: hidden;
}

.navigation img.logo {
    width: 120px;
    height: 100%;
}

.cc-message {
    color: white;
}

.error-page {
    height: 159px;
}

.error-page h1 {
    margin-bottom: 0;
    color: #0A5B80;
    text-shadow: none;
    font-size: 30px;
}

/*MENU*/

.navigation {
    position: relative;
    background: #FFFFFF;
    height: 100px;
    z-index: 2;
    -webkit-box-shadow: 2px 2px 15px 0 rgba(0,0,0,0.25);
    -moz-box-shadow: 2px 2px 15px 0 rgba(0,0,0,0.25);
    box-shadow: 2px 2px 15px 0 rgba(0,0,0,0.25);
}

.navbar {
    padding: 10px 50px;
    height: 100%;
}

#navigation.sticky {
    position: fixed;
    border-radius: 0;
    top: 0;
    z-index: 999;
    width: 100%;
    height: 75px;

    -webkit-transition: height .3s ease-in-out;
    -moz-transition: height .3s ease-in-out;
    -ms-transition: height .3s ease-in-out;
    -o-transition: height .3s ease-in-out;
    transition: height .3s ease-in-out;
}

#navigation.sticky .nav-item.active:before {
    top: -10px;
}

.nav-item {
    position: relative;
}

.nav-item:after {
    content: '';
    width: 0;
    height: 0;
    border-left: 18px solid transparent;
    border-right: 18px solid transparent;
    border-top: 15px solid #008BCB;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -38px;

    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.nav-item:hover:after {
    top: -23px;
}

.nav-item.active:before {
    content: '';
    width: 0;
    height: 0;
    border-left: 18px solid transparent;
    border-right: 18px solid transparent;
    border-top: 15px solid #008BCB;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -23px;
}

.nav-item.active .nav-link {
    color: #008BCB;
}

.nav-item.button.blue {
    display: inline-block;
    margin-top: 0;
    margin-left: 8px;
}

.nav-item.button:after {
    display: none;
}

.top_bar {
    position: relative;
    height: 80px;
    width: 100%;
    background-color: #008BCB;
    padding: 10px 50px;
    z-index: 3;
}

.top_bar .call {
    text-align: right;
    right: 0;
}

.top_bar .call p {
    margin-bottom: 0;
    color: white;
}

.top_bar .call a {
    color: white;
    font-weight: 700;
}

.top_bar .wrapper {
    height: 100%;
    position: relative;
}

.top_bar .social_media, .top_bar .call {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.lockScroll {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

/*DROPDOWN*/

ul.navbar-nav li.dropdown .dropdown-menu.open {
    transform: translateY(0px);
    opacity: 1;
    visibility: visible;
}

ul.navbar-nav li.dropdown .dropdown-menu {
    transform: translateY(34px);
    display: block;
    opacity: 0;
    visibility: hidden;
    margin-top: 0;
    -webkit-transition: all .25s ease;
    -moz-transition: all .25s ease;
    -ms-transition: all .25s ease;
    -o-transition: all .25s ease;
    transition: all .25s ease;
    padding-top: 20px;
}

.dropdown-item:active {
    background-color: #008BCB;
}

a.dropdown-item {
    color: black!important;
}
.dropdown-menu {
    border: 0;
    -webkit-box-shadow: 0 9px 15px 0 rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0 9px 15px 0 rgba(0, 0, 0, 0.15);
    box-shadow: 0 9px 15px 0 rgba(0, 0, 0, 0.15);
}
.dropdown-toggle::after {
    position: relative!important;
    top: 3px;
    display: inline-block!important;
    width: 0!important;
    height: 0!important;
    background: none!important;
}

/*HEADER STYLING*/

.home_header {
    position: relative;
    overflow: hidden;
}

.header-bg {
    height: 550px;
    background-position: center center;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
}

.header-bg:before {
    content: '';
    width: 500px;
    height: 500px;
    display: block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    top: -75px;
    background: #008BCB;
    opacity: .6;
    z-index: 0;
}

.header_content_wrapper {
    height: 100%;
    position: relative;
}

.header_content_wrapper .header_content {
    position: relative;
    width: 100%;
    height: 100%;
}

.header_content_wrapper .header_content_inner {
    text-align: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    left: 0;
}

.header_content_wrapper .header_content .intro_subtitle p {
    color: #FFFFFF;
    text-shadow: 5px 5px 10px rgba(0, 0, 0, .25);
}

.header_content_wrapper .header_content .button.blue {
    margin-top: 80px;
}

/*INFO COLUMNS*/

.info_columns {
    height: 300px;
    position: relative;
    background-color: #F3F9FC;
}

.info_columns .plate--container {
    margin-top: -60px;
}

.info_columns .content_wrapper {
    min-height: 205px;
}

.column,
.column .title,
.column .title h5,
.column .title .icon,
.column .title .icon:after {
    -webkit-transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    -ms-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

.column {
    position: relative;
}

.column:hover {
    -webkit-box-shadow: 2px 2px 10px 0 rgba(0,0,0,0.25);
    -moz-box-shadow: 2px 2px 10px 0 rgba(0,0,0,0.25);
    box-shadow: 2px 2px 10px 0 rgba(0,0,0,0.25);
    cursor: pointer;
}

.column:hover .column_wrapper .title {
    background-position: left bottom;
}

.column:hover .column_wrapper .title h5,
.column:hover .title .icon,
.column:hover .title .icon:after {
    color: #FFFFFF;
    border-color: #FFFFFF;
}

.column:hover .column_wrapper .title:before {
    -webkit-transition: all .35s ease-in-out;
    -moz-transition: all .35s ease-in-out;
    -ms-transition: all .35s ease-in-out;
    -o-transition: all .35s ease-in-out;
    transition: all .35s ease-in-out;
    transition-delay: .08s;
}

.column:hover .column_wrapper .title:before {
    top: -20px;
    opacity: 1;
}

.column_wrapper {
    position: relative;
}

.column_wrapper .title {
    height: 60px;
    background-color: #FFFFFF;
    padding-left: 20px;
    padding-right: 20px;
    border-top-left-radius: 2px;
    border-top-right-radius: 2px;
    border-bottom: 2px solid #9FB1B9;
    background-image: linear-gradient(to right, #008BCB 50%, white 50%);
    background-size: 202% 100%;
    background-position: right bottom;
}

.column_wrapper .title h5 {
    line-height: 60px;
    margin-bottom: 0;
    display: inline-block;
}

.column_wrapper .title .icon {
    display: -moz-inline-box;
    display: -ms-inline-flexbox;
    display: -webkit-inline-flex;
    display: inline-flex;

    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;

    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;

    width: 26px;
    height: 26px;
    border-radius: 100%;
    border: 2px solid #2C9BCD;
    top: 17px;
    position: relative;
    float: right;
}

.column_wrapper .title .icon:after {
    content: '\f054';
    font-family: 'FontAwesome';
    font-weight: 700;
    display: inline-block;
    color: #2C9BCD;
    font-size: 12px;
    position: relative;
    left: 1px;
}

.column_wrapper .content_wrapper {
    background-color: #FFFFFF;
    padding: 32px 20px;
    border-bottom-left-radius: 2px;
    border-bottom-right-radius: 2px;
}

/*UITGELICHTE PAGINA'S SECTIE*/

.uitgelichte_paginas {
    height: 300px;
    position: relative;
    background-color: #0A5B80;
    padding-top: 50px;
}

.uitgelichte_paginas .column:hover {
    cursor: default;
}

.uitgelichte_paginas:before {
    content: '';
    width: 0;
    height: 0;
    border-left: 338px solid transparent;
    border-right: 338px solid transparent;
    border-top: 339px solid #008bcb;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.sectie_titel {
    margin-bottom: 30px;
    width: 100%;
}

.uitgelichte_paginas .sectie_titel,
.uitgelichte_paginas .plate--container {
    z-index: 2;
}

.uitgelichte_paginas .sectie_titel h2 {
    margin-bottom: 40px;
    position: relative;
}

.uitgelichte_paginas .sectie_titel h2:after {
    content: '';
    width: 160px;
    height: 2px;
    display: block;
    position: relative;
    background: #FFFFFF;
    left: 50%;
    transform: translateX(-50%);
    top: 20px;
}

.uitgelichte_paginas .sectie_titel p {
    color: #FFFFFF;
    z-index: 1;
}

.featured_col_wrapper {
    background: #FFFFFF;
    padding: 20px;
    min-height: 280px;
}

.featured_col_wrapper .icon_img {
    height: 100px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.featured_col_wrapper .icon_img .icon_inner {
    background-position: center center;
    background-repeat: no-repeat;
    -webkit-background-size: contain;
    background-size: contain;
    position: relative;
    width: 100%;
    height: 80px;
}

.featured_col_wrapper .title,
.featured_col_wrapper .content_text {
    text-align: center;
}

.featured_col_wrapper .button_wrap {
    display: none;
}

/*PORTFOLIO SECTIE*/

.portfolio_sectie {
    position: relative;
    height: 950px;
    background: #F3F9FC;
    padding-top: 250px;
}

.plate--section .text-align {
    width: 100%;
    text-align: center;
}

.portfolio_sectie .sectie_titel h3,
.materials_sectie .sectie_titel h3,
.nieuws_sectie .sectie_titel h3 {
    margin-bottom: 40px;
    position: relative;
}

.portfolio_sectie .sectie_titel h3:after,
.materials_sectie .sectie_titel h3:after,
.nieuws_sectie .sectie_titel h3:after {
    content: '';
    width: 160px;
    height: 2px;
    display: block;
    position: relative;
    background: #9FB1B9;
    left: 50%;
    transform: translateX(-50%);
    top: 20px;
}

.portfolio_sectie .sectie_titel p {
    color: #98ABB4;
    z-index: 1;
}

.portfolio_sectie .img_container.big {
    position: relative;
    height: 410px;
}

.portfolio_sectie .img_container.small {
    height: 200px;
    margin-bottom: 10px;
}

.portfolio_sectie .img_container .img_inner {
    background-position: center center;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    position: relative;
    width: 100%;
    height: 100%;
}

.portfolio_sectie .col-md-4.left {
    padding-right: 5px;
}

.portfolio_sectie .col-md-4.middle {
    padding-left: 5px;
    padding-right: 5px;
}

.portfolio_sectie .col-md-4.right {
    padding-left: 5px;
}

/*MATERIALS SECTIE*/

.materials_sectie {
    height: 650px;
    position: relative;
    background-color: #F3F9FC;
    padding: 20px 0 50px 0;
}

.material_items, .nieuws_items {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    -ms-flex-direction: row;
    -webkit-flex-direction: row;
    flex-flow: row wrap;
    margin-bottom: 10px;
}

.column_wrapper .img_wrapper {
    height: 230px;
    position: relative;
}

.column_wrapper .img_wrapper .img_inner {
    background-position: center center;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    height: 100%;
}

/*OVER ONS SECTIE*/

.over_ons_sectie {
    min-height: 400px;
    position: relative;
    background-color: #0A5B80;
    overflow: hidden;
}

.over_ons_sectie .over_ons_bg {
    position: relative;
    padding-right: 0;
    padding-left: 0;
}

.over_ons_sectie .over_ons_background {
    background-position: center center;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    height: 400px;
}

.over_ons_sectie .over_ons_content {
    padding: 70px 0 70px 70px;
    position: relative;
}

.over_ons_sectie .over_ons_content:before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-top: 330px solid transparent;
    border-bottom: 330px solid transparent;
    border-left: 330px solid #008BCB;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 0;
}

.over_ons_sectie .over_ons_content:after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    border-left: 20px solid #0A5B80;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.over_ons_sectie .over_ons_content .plate--column {
    z-index: 2;
}

.over_ons_sectie .over_ons_content p {
    color: #FFFFFF;
}

/*NIEUWS SECTIE*/

.nieuws_sectie {
    height: 730px;
    position: relative;
    background-color: #F3F9FC;
    padding: 100px 0;
}

.nieuws_items .title {
    height: 100px;
    padding: 20px 50px 20px 20px;
    position: relative;
}

.nieuws_items .title:before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 20px solid #008BCB;;
    left: 50%;
    top: 0;
    opacity: 0;
    transform: translateX(-50%);
    z-index: 1;
}

.nieuws_items .title h5 {
    line-height: 25px;
}

.nieuws_items .title .icon {
    top: inherit;
    float: none;
    position: absolute;
    right: 12px;
    bottom: 37px;
}

/*FOOTER*/

.footer {
    min-height: 430px;
    position: relative;
    background-color: #008BCB;
    padding: 50px 0;
    color: white;
}

.footer:before {
    content: '';
    width: 0;
    height: 0;
    border-left: 338px solid transparent;
    border-right: 338px solid transparent;
    border-top: 339px solid #0478AE;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
}

.footer .plate--column {
    z-index: 1;
}

.footer h5 {
    color: #FFFFFF;
    margin-bottom: 25px;
}

.footer p {
    color: #FFFFFF;
    font-weight: 400;
    line-height: 30px;
}

.footer p b {
    color: #FFFFFF;
}

.footer p a {
    text-decoration: none;
    color: #FFFFFF;
    font-weight: 400;
}

.footer p a:before {
    content: '\f054';
    font-family: 'FontAwesome';
    opacity: 0;
    position: relative;
    margin-left: -10px;
    font-size: 14px;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;

}

.footer p a:hover:before {
    opacity: 1;
    margin-left: 0;
    margin-right: 5px;
    position: relative;
}

.footer .container-fluid.copyright {
    background-color: #0A5B80;
    height: 50px;
    position: absolute;
    bottom: -50px;
}

.footer .container-fluid.copyright p {
    line-height: 50px;
    color: white;
    font-size: 14px;
}

.footer .links {
    line-height: 50px;
    opacity: 1;
    font-size: 14px;
    font-weight: 700;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.footer .links:hover {
    text-decoration: none;
    color: white;
}

.footer .links:after {
    content: ' | ';
    margin-right: 5px;
    margin-left: 5px;
    color: #98ABB4;
}

.footer .links:last-child:after {
    display: none;
}

.mandelo_logo {
    position: relative;
    top: 18px;
}

.mandelo_logo img {
    width: 100px;
    opacity: 0.5;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.mandelo_logo:hover img {
    opacity: 1;
}

.social_media a:before,
.share-block a:before {
    content: '';
    display: inline-block;
    height: 40px;
    width: 40px;
    line-height: 40px;
    text-align: center;
    margin-right: 3px;
    font-family: 'FontAwesome';
    font-weight: 700;
    border: 2px solid white;
    border-radius: 5px;
    color: white;
    font-size: 15px;

    -webkit-transition: all .3s ease-in;
    -moz-transition: all .3s ease-in;
    -ms-transition: all .3s ease-in;
    -o-transition: all .3s ease-in;
    transition: all .3s ease-in;
}

.social_media a:hover:before {
    background: #FFFFFF;
    color: #008BCB;
}

.share-block a:hover:before {
    background: #008BCB;
    color: #FFFFFF!important;
}

.social_media a.facebook:before,
.share-block a.facebook:before {
    content: '\f09a';
}

.social_media a.twitter:before,
.share-block a.twitter:before {
    content: '\f099';
}

.social_media a.google:before {
    content: '\f1a0';
}

/*PROJECTEN*/

.gallery_container {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: row;
    -ms-flex-direction: row;
    -webkit-flex-direction: row;
    margin-bottom: 30px;
}

.foto_container .image {
    height: auto!important;
}

.foto_container {
    padding-left: 15px;
    padding-right: 15px;
    width: 50%;
}

.foto_container img {
    width: 100% !important;
    height: auto !important;
}

.container .plate--container,
.container .plate--container .plate--row,
.container .container {
    padding-left: 0;
    padding-right: 0;
    margin-right: 0;
    margin-left: 0;
}


/*POST PAGES*/

.post-header-bg {
    background-color: #F3F9FC;
    position: relative;
    height: 150px;
}

.post_header_content .intro_title h1 {
    text-shadow: none;
    color: #0A5B80;
    font-size: 35px;
    line-height: 45px;
    text-align: center;
    font-weight: 700;
}

.post_header_content .breadcrumbs {
    text-align: center;
    height: auto;
    padding-top: 30px;
    font-family: 'Rubik', sans-serif;
    color: #98ABB4;
}

.post_header_content .breadcrumbs a {
    line-height: 50px;

    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.post_header_content .breadcrumbs a:hover {
    text-decoration: none;
    color: #2C9BCD;

}

.content, .news_articles {
    background-color: #F3F9FC;
}

.content .row_content {
    margin-bottom: 50px;
}

.content .white-block {
    position: relative;
    min-height: 400px;
    padding: 40px 300px;
    background-color: #FFFFFF;
    border-radius: 2px;
    -webkit-box-shadow: 1px 2px 10px 0 rgba(0,0,0,0.25);
    -moz-box-shadow: 1px 2px 10px 0 rgba(0,0,0,0.25);
    box-shadow: 1px 2px 10px 0 rgba(0,0,0,0.25);
}

.content p a {
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.content p a,
.content li a {
    color: #008BCB;
    text-decoration: none;
    border-bottom: 1px solid #008BCB;
}

.material .content .white-block {
    padding: 40px 100px;
}

.content h3 {
    font-weight: 700;
}

.content .social_media a:before {
    border: 2px solid #B2C0C7;
    color: #008BCB;
}

.content .material_items, .content .nieuws_items, .news_articles .nieuws_items {
    width: 100%;
    margin-bottom: 30px;
}

.single_news {
    display: table;
}

.single_news .image_container {
    margin-bottom: 25px;
}

.share_next {
    position: relative;
    width: 100%;
    height: auto;
    display: table-footer-group;
}

.share_next:before {
    content: '';
    display: block;
    border-top: 1px solid #98ABB4;
    position: relative;
    margin-bottom: 20px;
}

.share_next .share-block {
    float: left;
}

.share_next .share-block h5 {
    display: inline-block;
    margin-right: 8px;
}

.share_next .share-block a:before {
    border: 1px solid #B2C0C7;
    color: #008BCB;
}

.share_next .newsnextprev {
    float: right;
}

.share_next .newsnextprev .btn-prevnext {
    background: #FFFFFF;
    border: 1px solid #B2C0C7;
    border-radius: 4px;
    display: inline-block;
    margin-left: 10px;
}

.share_next .newsnextprev .btn-prevnext .icon {
    border: 2px solid #2C9BCD;
    color: #2C9BCD;
    width: 22px;
    height: 22px;

    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.share_next .newsnextprev .btn-prevnext .icon:after {
    font-size: 10px;
}

.share_next .newsnextprev .btn-prevnext .paginate-icon:hover {
    text-decoration: none;
}

.share_next .newsnextprev .btn-prevnext .paginate-icon:hover .col {
    background-color: #008BCB;
}

.share_next .newsnextprev .btn-prevnext .paginate-icon:hover .col p {
    color: #FFFFFF;

    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.share_next .newsnextprev .btn-prevnext .paginate-icon:hover .col .icon {
    border: 2px solid #FFFFFF;
    color: #FFFFFF;
}

.share_next .newsnextprev .btn-prevnext .col {
    padding-top: 8px;
    padding-bottom: 7px;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.share_next .newsnextprev .btn-prevnext .col p {
    font-size: 14px;
    margin-bottom: 0;
    display: inline-block;
}

.share_next .newsnextprev .btn-prevnext .btn-prev .icon {
    margin-left: inherit;
    margin-right: 10px;
}

.share_next .newsnextprev .btn-prevnext .btn-prev .icon:after {
    content: '\f053';
    left: inherit;
    right: 1px;
}

.row.form {
    margin: 0 0 50px;
    border-bottom: 1px solid #979797;
    padding: 10px;
}

.row.form_title h3 {
    margin: 0 auto;
}



/*FORM STYLING*/

form label {
    display: none;
}

form .input_field {
    position: relative;
    top: -1px;
    display: block;
}

form .input_field input,
form .input_field textarea {
    border: none;
    padding: 15px;
    color: #9c9c9c;
    width: 100%;
    background: #FFFFFF;
    border-radius: 4px;
    font-weight: 500;
}

form .input_field textarea {
    min-height: 150px;
}

form .submit_button {
    left: 50%;
    position: relative;
    transform: translateX(-50%);
}

form .submit_button a {
    -webkit-appearance: none;
    width: 100%;
    height: 100%;
    border: 0;
    font-family: 'Rubik', sans-serif;
    color: #FFFFFF!important;
    cursor: pointer;
}

form.aanvraag_form {
    width: 500px;
    margin: 40px auto;
}

::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: #98ABB4;
}
::-moz-placeholder { /* Firefox 19+ */
    color: #98ABB4;
}
:-ms-input-placeholder { /* IE 10+ */
    color: #98ABB4;
}
:-moz-placeholder { /* Firefox 18- */
    color: #98ABB4;
}

/*MATERIALS SINGLE*/

.white-block .col-md-5, .white-block .col-md-7 {
    display: inline-block;
    float: left;
    padding: 0;
}

.white-block .col-md-7 {
    padding-left: 10px;
}


.white-block .image_container {
    width: 100%;
    height: 450px;
}

.white-block .image_inner {
    background-position: center center;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    position: relative;
    width: 100%;
    height: 100%;
}

.white-block .col-md-7 h3 {
    color: #008BCB;
}

.material_content .plate--column {
    padding-left: 0;
    padding-right: 0;
}

.material_price {
    padding-top: 20px;
    border-top: 2px solid #9FB1B9;
    width: 160px;
}

.material_price .price {
    margin-bottom: 0;
    font-weight: 700;
}

.material_price .price_day, .material_price .price_week {
    font-weight: 400;
}

/*MEDIA QUERIES*/

@media only screen and (max-width: 1529px) {
    .info_columns .column_wrapper .content_wrapper {
        padding: 20px;
        height: 231px;
    }

    [data-id="row_35794"] .plate--column:nth-of-type(2),
    [data-id="row_35794"] .plate--column:nth-of-type(3),
    [data-id="row_36245"] .plate--column:nth-of-type(2),
    [data-id="row_36245"] .plate--column:nth-of-type(3) {
        flex-basis: 33.3333334%;
        max-width: 33.333334%;
    }

    [data-id="row_35794"] .plate--column:nth-of-type(1),
    [data-id="row_35794"] .plate--column:nth-of-type(4),
    [data-id="row_36245"] .plate--column:nth-of-type(1),
    [data-id="row_36245"] .plate--column:nth-of-type(4) {
        flex-basis: 16.6666667%;
        max-width: 16.6666667%;
    }
}

@media only screen and  (max-width: 1200px){
    .info_columns .plate--column,
    .material_items .col-md-3,
    .nieuws_items .col-md-3 {
        flex-basis: 50%;
        max-width: 50%;
        margin-bottom: 30px;
    }

    .info_columns, .materials_sectie, .nieuws_sectie {
        height: auto;
    }

    .content .material_items, .content .nieuws_items, .news_articles .nieuws_items {
        margin-bottom: 0;
        margin-left: 0;
        margin-right: 0;
    }

    .info_columns .column_wrapper .content_wrapper {
        padding: 20px;
        height: 165px;
        min-height: 165px;
    }

    .portfolio_sectie {
        height: 1000px;
        padding-top: 300px;
    }

    .featured_col_wrapper {
        min-height: 330px;
    }

    .uitgelichte_paginas .button_wrap .button {
        margin-top: 45px;
    }

    .top_bar,
    .navbar {
        padding: 10px 25px;
    }

    a.nav-link {
        padding: 15px 6px!important;
        margin-left: 4px;
        margin-right: 4px;
    }

    .content .white-block {
        padding: 40px 200px;
    }

}

@media only screen and (max-width: 991px) {

    h1 {
        font-size: 40px;
        line-height: 50px;
    }

    h2 {
        font-size: 30px;
        line-height: 40px;
    }

    h3 {
        font-size: 26px;
        line-height: 30px;
    }

    h4 {
        font-size: 25px;
        line-height: 40px;
    }

    h5 {
        font-size: 18px;
    }

    h6 {
        font-size: 22px;
        line-height: 35px;
    }

    .material_items, .nieuws_items {
        flex-direction: column;
        -ms-flex-direction: column;
        -webkit-flex-direction: column;
    }

    .info_columns .plate--column,
    .material_items .col-md-3,
    .footer .container-fluid.copyright .col-md-6,
    .over_ons_sectie .col-md-6 {
        flex-basis: 100%;
        max-width: 100%;
        flex: auto;
    }

    .uitgelichte_paginas .plate--column,
    .nieuws_items .col-md-3,
    .footer .plate--column,
    #section-vakgebieden .plate--column {
        flex-basis: 100%;
        max-width: 100%;
        margin-bottom: 30px;
        flex: auto;
    }

    .uitgelichte_paginas, .portfolio_sectie, .nieuws_sectie, .portfolio_sectie {
        height:  auto;
        padding-bottom: 50px;
    }

    .nieuws_sectie {
        padding: 50px 0;
    }

    .portfolio_sectie {
        padding-top: 50px;
    }

    .portfolio_sectie .col-md-4 {
        flex-basis: 100%;
        max-width: 100%;
        padding-left: 15px!important;
        padding-right: 15px!important;
        margin-bottom: 10px;
    }

    .portfolio_sectie .img_container.big,
    .portfolio_sectie .img_container.small {
        height: 250px;
    }

    .featured_col_wrapper {
        min-height: 265px;
        height: 265px;
    }

    .uitgelichte_paginas {
        overflow: hidden;
    }

    .uitgelichte_paginas .button_wrap .button {
        margin-top: 15px;
    }

    .over_ons_sectie .over_ons_background {
        height: 200px;
    }

    .over_ons_sectie .over_ons_content {
        padding: 50px 0 50px 0;
    }

    .over_ons_sectie .over_ons_content:before {
        content: '';
        position: absolute;
        width: 0;
        height: 0;
        border-top: 330px solid #008BCB;
        border-bottom: 330px solid transparent;
        border-left: 330px solid transparent;
        border-left: 300px solid transparent;
        border-right: 300px solid transparent;
        border-top: 300px solid #008BCB;
        left: 50%;
        top: 0;
        transform: translateX(-50%);
        z-index: 0;
    }

    .over_ons_sectie .over_ons_content:after {
        top: inherit;
        right: inherit;
        bottom: -40px;
        left: 50%;
        transform: translateX(-50%);

        border-left: 20px solid transparent;
        border-right: 20px solid transparent;
        border-top: 20px solid #0A5B80;
    }

    [data-id="column_52527"],
    [data-id="element_88632"] .text-left {
        text-align: center!important;
    }

    .footer {
        overflow: hidden;
        height: 1195px;
    }

    .footer .container-fluid.copyright {
        bottom: 0;
        height: 100px;
    }

    .footer .text-align {
        text-align: center!important;
    }

    .top_bar {
        height: 55px;
    }

    .top_bar .call a {
        font-size: 15px;
        line-height: 20px;
    }

    .top_bar .call p {
        font-size: 15px;
        line-height: 15px;
    }

    .navigation {
        height: 70px;
    }

    .navigation img.logo {
        width: 90px;
    }

    .social_media a:before {
        height: 30px;
        width: 30px;
        line-height: 30px;
    }

    .header-bg:before {
        top: -124px;
    }

    .content .white-block {
        padding: 40px 100px;
    }

    .gallery_container {
        flex-direction: column;
        -ms-flex-direction: column;
        -webkit-flex-direction: column;
        margin-bottom: 0;
    }

    .foto_container {
        width: 100%;
        margin-bottom: 30px;
    }

    [data-id="row_35794"] .plate--column:nth-of-type(1),
    [data-id="row_35794"] .plate--column:nth-of-type(4),
    [data-id="row_36245"] .plate--column:nth-of-type(1),
    [data-id="row_36245"] .plate--column:nth-of-type(4) {
        display: none;
    }

    .navbar-toggler:focus {
        outline: 0;
    }

    .navbar-toggler-icon {
        width: auto;
    }

    .navbar-toggler-icon:after {
        content: '\f0c9';
        font-family: "FontAwesome";
        font-weight: 900;
        margin-left: 8px;
        font-size: 30px;
        vertical-align: sub;
    }

    .navbar-toggler,
    .navbar-brand {
        z-index: 6;
    }

    .navbar-collapse a.nav-link {
        padding-top: 8px;
        padding-bottom: 8px;
    }

    .navbar-collapse .nav-item:after,
    .navbar-collapse .nav-item.active:before {
        display: none;
    }

    .navbar-collapse {
        position: absolute;
        left: 0;
        top: 0;
        margin-top: 0;
        background-color: #F3F9FC;
        width: 100%;
        height: 100%;
        z-index: 0;
        opacity: 0;
        -webkit-transition: all .2s ease;
        -moz-transition: all .2s ease;
        -ms-transition: all .2s ease;
        -o-transition: all .2s ease;
        transition: all .2s ease;
    }

    .lockScroll .navbar:before {
        content: '';
        background: white;
        width: 100%;
        height: 70px;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 6;
    }

    .navbar-collapse .navbar-nav {
        padding-top: 130px;
        padding-left: 20px;
        padding-bottom: 50px;
    }

    .collapse:not(.show) {
        display: none;
    }

    .collapsing {
        position: absolute;
        visibility: hidden;
        display: none;
    }

    .lockScroll .navbar {
        top: 0;
        left: 0;
    }

    .lockScroll .navbar,
    .lockScroll .top_bar {
        width: 100%;
    }

    .lockScroll .navbar-collapse {
        opacity: 1;
        z-index: 5;
        display: block;
        position: fixed;
        overflow-y: scroll;
    }

    .navbar-collapse .nav-item.button.blue {
        width: 150px;
        margin-top: 10px;
    }

    .lockScroll .navbar-toggler-icon {
        -webkit-transition: all 4s ease-in-out;
        -moz-transition: all 4s ease-in-out;
        -ms-transition: all 4s ease-in-out;
        -o-transition: all 4s ease-in-out;
        transition: all 4s ease-in-out;
    }

    .lockScroll .navbar-toggler-icon:after {
        content: '\f00d';
    }

    .lockScroll .full_link_btn {
        z-index: 1;
    }

    .dropdown-menu {
        transform: translateY(0px)!important;
        opacity: 1!important;
        visibility: visible!important;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
        background-color: transparent;
    }

    a.dropdown-item {
        color: #3E3E3E!important;
    }

    a.dropdown-item:hover {
        color: #008BCB!important;
    }

    .dropdown-item:hover,
    .dropdown-item:active,
    .dropdown-item:visited,
    .dropdown-item::selection {
        background-color: transparent;
    }

    a.nav-link {
        padding: 12px 6px!important;
    }

    .modaal-wrapper .modaal-close {
        top: 90px;
    }

    #navigation.sticky {
        height: 55px;
    }

}

@media only screen and (max-width: 767px) {
    .featured_col_wrapper {
        height: 290px;
    }

    .container, .plate--container {
        padding: 0 7.5%;
        max-width: none;
    }

    .content .white-block, .material .content .white-block {
        padding: 25px;
    }

    .post-header-bg {
        height: auto;
    }

    .white-block .col-md-7 {
        margin-top: 20px;
    }
}

@media only screen and (max-width: 540px) {
    .share_next .newsnextprev {
        float: left;
        clear: left;
        margin-top: 20px;
        left: 50%;
        position: relative;
        transform: translateX(-50%);
    }

    .share_next .newsnextprev .btn-prevnext .col {
        padding: 5px 8px;
    }

    .share_next .share-block {
        float: left;
        clear: left;
        left: 50%;
        position: relative;
        transform: translateX(-50%);
    }
    .share_next .newsnextprev .btn-prevnext:first-child {
        margin-left: 0;
    }

}

@media only screen and (max-width: 400px) {
    .info_columns .column_wrapper .content_wrapper {
        height: auto;
    }

    .uitgelichte_paginas .featured_col_wrapper {
        height: auto;
        min-height: 329px;
    }

    .uitgelichte_paginas .button_wrap .button {
        margin-top: 35px;
    }

    .footer .links {
        font-size: 13px;
    }
}

/*EVEN CONTAINERS*/

@media screen and (min-width: 768px) {
    .container {
        width: 100%;
        max-width: 738px;
    }
}

@media screen and (min-width: 992px) {
    .container {
        width: 100%;
        max-width: 962px;
    }
}

@media screen and (min-width: 1200px) {
    .container {
        width: 100%;
        max-width: 1170px;
    }
}

@media (min-width: 1530px) {
    .container, .plate--container {
        max-width: 1470px;
    }
}
