/**
 * NBBI - Wordpress theme
 *
 * @authors   Niek Heerink <teamkoen.nl>
 * @link      www.nbbi.nl
 * @version   1.0
 * @generated 2020-06-07
 * @copyright (c) 2020 NBBI
 * @license   All Rights Reserved
 */

/* Fonts
  ========================================================================== */

@font-face {
    font-family: 'Avenir';
    src: url('../fonts/Avenir-Roman.woff2') format('woff2'),
    url('../fonts/Avenir-Roman.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Avenir';
    src: url('../fonts/Avenir-Heavy.woff2') format('woff2'),
    url('../fonts/Avenir-Heavy.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

/* Globals
   ========================================================================== */

* {
    padding: 0;
    margin: 0;
}

*, *:before, *:after {
    box-sizing: border-box;
}

html, body {
    line-height: 1;
    height: 100%;
    font-family: 'Avenir';
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

iframe {
    display: block;
    width: 100%;
    border: 0;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

a, a:before, a:after, button, input[type="submit"] {
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

input[type="submit"], button {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="search"],
textarea {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

/* Container
   ========================================================================== */

.container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1280px;
    margin: auto;
    padding-left: 15px;
    padding-right: 15px;
}

/* Row
   ========================================================================== */

.row {
    display: flex;
    justify-content: space-between;
}

/* Alignments
   ========================================================================== */

.alignright {
    float: right;
}

.alignleft {
    float: left;
}

.aligncenter {
    display: block;
    margin: auto;
    text-align: center;
    clear: both;
}

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

/* Headings
   ========================================================================== */

h1 {
    font-size: 2.5rem;
    line-height: 2.5rem;
    color: #2A4F67;
    margin-bottom: 30px;
}

h2 {
    font-size: 2.125rem;
    line-height: 2.5rem;
    color: #2A4F67;
    margin-bottom: 30px;
}

h3 {
    color: #2A4F67;
    margin-bottom: 30px;
}

/* Buttons
   ========================================================================== */

.btn {
    display: inline-block;
    font-size: 1.125rem;
    line-height: 1.5625rem;
    font-weight: 900;
    color: #FFF;
    text-decoration: none;
    text-align: center;
    max-width: 340px;
    padding: 13px 30px;
    border-radius: 30px;
    cursor: pointer;
}

.btn--red {
    background: #E2625C;
    border: 3px solid #f9e0de;
}

.btn--red:hover {
    background: #fc8781;
}

/* Circle
   ========================================================================== */

.circle {
    position: absolute;
    border: 1px solid #D9DDE2;
    border-radius: 100%;
    opacity: .3;
}

/* Curve
   ========================================================================== */

.curved--block {
    position: relative;
    z-index: 1;
    border-radius: 60px 20px;
    box-shadow: 20px 20px 50px rgba(0, 0, 0, 0.2);
    background: #FFF;
    padding: 50px;
}

/* Inner
   ========================================================================== */

.inner-small {
    padding: 0 150px;
}

/* Default content
   ========================================================================== */

.default-content {
    font-size: 1.25rem;
    line-height: 2.0625rem;
}

.default-content p,
.default-content ul,
.default-content ol {
    margin-bottom: 30px;
}

.default-content ul,
.default-content ol {
    margin-left: 30px;
}

.default-content p a,
.default-content ul li a {
    color: #E2625C;
    text-decoration: none;
}

.default-content p a:hover,
.default-content ul li a:hover {
    color: #fc8781;
    text-decoration: underline;
}

.default-content blockquote {
    color: #FFF;
    background: #2A4F67;
    max-width: 80%;
    margin: 0 auto 30px;
    padding: 50px;
    border-radius: 60px 20px;
    text-align: center;
}

.default-content blockquote p {
    font-size: 1.65rem;
    line-height: 2.4625rem;
    margin-bottom: 0;
}

/* Content colors
   ========================================================================== */

.text-grey {
    color: rgba(42, 79, 103, 0.5);
}

.text-blue {
    color: #2A4F67;
}

/* Spacer
   ========================================================================== */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Spacers margin
   ========================================================================== */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Blob
   ========================================================================== */

.top-blob {
    position: absolute;
    z-index: -1;
    right: 0;
    top: 0;
    width: 57%;
}

.top-blob svg {
    display: block;
    width: 100%;
    height: 100%;
}

.bottom-blob {
    position: absolute;
    z-index: -1;
    right: 0;
    bottom: 0;
    width: 57%;
}

.bottom-blob svg {
    display: block;
    width: 100%;
    height: 100%;
}

/* Content colors
   ========================================================================== */

.content-default .top-blob {
    visibility: hidden;
}

.content-default .account .btn-account {
    border-color: #2A4F67;
    color: #2A4F67;
}

.content-default .account .btn-account:hover {
    background: #2A4F67;
    border-color: #2A4F67;
    color: #FFF;
}

.content-default .account .btn-account svg path {
    fill: #2A4F67;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.content-default .account .btn-account:hover svg path {
    fill: #FFF;
}

.content-default .menu ul li a {
    color: #2A4F67;
}

.content-default .menu ul .search-toggle a svg path {
    fill: #2A4F67;
}

.content-default .menu ul .search-toggle a:hover svg path {
    fill: #E2625C;
}

/* Header
   ========================================================================== */

#header {
    position: relative;
    z-index: 9999;
    padding: 30px 0;
    border-bottom: 1px solid rgba(196, 196, 196, 0.2);
}



/* Menu
   ========================================================================== */

.menu {
    position: relative;
    z-index: 99;
    margin-top: 98px;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.menu > ul > li {
    position: relative;
    display: inline-block;
    list-style-type: none;
    font-size: 1.25rem;
    font-weight: 900;
    margin-left: 30px;
}

.menu ul li a {
    color: #FFF;
    text-decoration: none;
}

.menu ul li a:hover,
.menu > ul > li.current-menu-item > a,
.menu > ul > li:hover > a {
    color: #E2625C;
}

.menu ul .search-toggle {
    position: relative;
    top: 2px;
}

.menu ul .search-toggle a svg path {
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.menu ul .search-toggle a:hover svg path {
    fill: #E2625C;
}

.menu ul ul {
    display: none;
    position: absolute;
    z-index: 99999;
    left: 0;
    top: 50px;
    background: #FFF;
    padding: 20px;
    width: 250px;
    border-radius: 5px;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
    transform: translateZ(0);
    transition: transform .24s ease-in-out, box-shadow .3s ease-in-out;
}

.menu > ul > li.menu-item-has-children:after {
    position: absolute;
    right: -15px;
    top: 5px;
    content: '';
    width: 10px;
    height: 10px;
    background: url(../images/chevron-down-solid-white.svg) no-repeat right;
}

.content-default .menu > ul > li.menu-item-has-children:after {
    background: url(../images/chevron-down-solid-blue.svg) no-repeat right;
}

.menu ul ul li {
    list-style-type: none;
    margin-bottom: 10px;
}

.menu ul ul li a {
    color: #2A4F67;
}

.menu ul ul li:last-child {
    margin-bottom: 0;
}

.menu ul li:hover ul {
    display: block;
}

/* Account
   ========================================================================== */

.account {
    position: absolute;
    right: 15px;
    top: 0;
}

.account ul li {
    display: inline-block;
}

.account .btn-account {
    font-size: 1rem;
    font-weight: 900;
    color: #FFF;
    padding: 10px 30px;
    margin-left: 10px;
    text-decoration: none;
    border: 1px solid #FFF;
    border-radius: 25px;
}

.account .btn-account:hover {
    background: #E2625C;
    border-color: #f9e0de;
}

.account .btn-account svg {
    position: relative;
    top: 2px;
    margin-right: 5px;
}

.account ul .nav-toggle {
    display: none;
    position: relative;
    top: 3px;
}

.account ul .nav-toggle a {
    margin-top: 10px;
}

.account ul .nav-toggle a {
    display: block;
    width: 25px;
}

.account ul .nav-toggle span {
    position: relative;
    display: block !important;
    width: 100%;
    height: 4px;
    margin-bottom: 5px;
    border-radius: 5px;
    background: #2a4f67;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.show-menu .account ul .nav-toggle a span:first-child {
    transform: rotate(45deg);
}

.show-menu .account ul .nav-toggle a span:nth-child(2) {
    transform: rotate(-45deg);
    top: -9px;
}

.show-menu .account ul .nav-toggle a span:last-child {
    display: none !important;
}


/* Sticky header & menu
   ========================================================================== */

#header {
    height: 183px;
}

header#header.sticky-header .header__inner {
    position: fixed;
    background: white;
    width: 100%;
    top: 0;
    z-index: 9999;
    box-shadow: 0 0 30px #0000005e;
}

header#header.sticky-header .header__inner .menu ul li a {
    color: #2a4f67;
    font-size: 18px;
}

#header.sticky-header li.search-toggle svg path {
    fill: #2a4f67;
}

#header.sticky-header .account .btn-account {
    border-color: #2a4f67;
    color: #2a4f67;
    font-size: 15px;
    padding: 6px 16px;
}

#header.sticky-header .account .btn-account svg path {
    fill: #2a4f67;
}



#header .logo img {
    transition: all .3s ease;
}

#header.sticky-header .logo img {
    width: 167px;
    margin-top: 10px;
}


header#header.sticky-header .header__inner nav.menu.main--menu {
    margin-top: 57px;
    padding-bottom: 20px;
}

#header.sticky-header nav.account.user--account {
    top: 14px;
}

@media (max-width: 1099px) {
    header#header {
        height: 155px;
    }
}

@media (max-width: 980px) {
    header#header.sticky-header .header__inner nav.menu.main--menu {
        margin: 0;
    }
    #header.sticky-header .account ul .nav-toggle span {
        background: #2a4f67;
    }
}

@media (max-width: 767px) {
    header#header {
        height: 85px;
    }
}

/* Block intro
   ========================================================================== */

.home .block-intro {
    padding-bottom: 100px;
}

.block-intro .content-block {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 40%;
}

.block-intro .video-block {
    width: 50%;
    height: 350px;
    box-shadow: 20px 20px 100px rgba(0, 0, 0, 0.5);
}

.block-intro .video-block iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.block-intro .intro-image {
    width: 50%;
    max-height: 400px;
}

.block-intro .intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 60px 20px;
}

.block-intro .intro-cta {
    position: relative;
}

.block-intro .intro-cta .cta-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 50px;
    top: 40px;
    width: 100px;
    height: 100px;
    border-radius: 100%;
    background: #D8E6F0;
}

.block-intro .intro-cta .more {
    color: #E2625C;
    font-weight: 900;
    text-decoration: underline;
    margin-right: 30px;
}

.block-intro .intro-cta .more:hover {
    color: #fc8781;
}

.block-intro .intro-cta .more span {
    display: inline-flex;
    position: relative;
    top: 6px;
    left: 15px;
    background: #E2625C;
    border-radius: 100%;
    width: 21px;
    height: 21px;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.block-intro .intro-cta .more:hover span {
    background: #fc8781;
}

.block-intro .intro-cta .more span svg {
    width: 22px;
    position: relative;
    left: 1px;
}

.block-intro .content-extra {
    max-width: 55%;
    margin-top: -75px;
}

.block-intro .content-extra .content-block {
    display: block;
    width: 48%;
}

/* Block cta
   ========================================================================== */

.block-cta .content-block {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 29%;
    height: 665px;
    text-align: right;
}

.block-cta .content-block h2 {
    color: #E2625C;
}

.block-cta .content-cta {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    width: 70%;
    height: 665px;
}

.block-cta .blob {
    position: absolute;
    left: 0;
    top: 12%;
    width: 115%;
}

.block-cta .content-cta .cta-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    right: 50px;
    top: 40px;
    width: 100px;
    height: 100px;
    border-radius: 100%;
    background: #D8E6F0;
}

.block-cta .content-cta .cta-icon .attachment-post-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 100%;
}

.block-cta .content-cta .circle-first {
    width: 665px;
    height: 665px;
    left: calc(50% - 665px / 2);
    top: calc(50% - 665px / 2);
}

.block-cta .content-cta .circle-second {
    width: 569px;
    height: 569px;
    left: calc(50% - 569px / 2);
    top: calc(50% - 569px / 2);
}

.block-cta .gradient-circle {
    position: absolute;
    left: calc(50% - 460px / 2);
    top: calc(50% - 460px / 2);
    width: 460px;
    height: 460px;
    border-radius: 100%;
    background: linear-gradient(41deg, #E2625C 12.62%, #6771A6 88.03%);
}

.block-cta .content-cta .cta-text {
    position: relative;
    width: 80%;
    min-height: 350px;
    margin: auto;
}

.block-cta .content-cta .cta-text .more {
    color: #E2625C;
    font-weight: 900;
    text-decoration: underline;
    margin-right: 30px;
}

.block-cta .content-cta .cta-text .more:hover {
    color: #fc8781;
}

.block-cta .content-cta .cta-text .more span {
    display: inline-flex;
    position: relative;
    top: 6px;
    left: 15px;
    background: #E2625C;
    border-radius: 100%;
    width: 21px;
    height: 21px;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.block-cta .content-cta .cta-text .more:hover span {
    background: #fc8781;
}

.block-cta .content-cta .cta-text .more span svg {
    position: relative;
    width: 22px;
    left: 1px;
}

/* About more
   ========================================================================== */

.about-more {
    position: relative;
    width: 100%;
    min-height: 770px;
    overflow: hidden;
}

.home .about-more {
    margin-bottom: 20px;
    min-height: inherit;
}

.home .about-more.about-home {
    min-height: initial;
    margin-bottom: 0;
}

/*.about-more:before {*/
/*    content: '';*/
/*    position: absolute;*/
/*    left: -5%;*/
/*    right: 0;*/
/*    top: -75px;*/
/*    width: 110%;*/
/*    height: 200px;*/
/*    background: #FFF;*/
/*    border-radius: 0 0 80% 80% / 0 0 160% 160%;*/
/*}*/

.about-more:after {
    content: '';
    position: absolute;
    left: 0;
    top: -75px;
    z-index: -1;
    width: 100%;
    height: 770px;
    background: linear-gradient(252.4deg, #5699C7 -3.42%, #6670A6 83.91%);
}


section.about-more figure.about-shield img {
    padding-top: 157px;
    position: relative;
    right: -44px;
    max-width: 249px;
}


section.about-more .about-intro {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    left: -16px;
}

section.about-more .about-intro {
    margin-top: -90px;
}

.home section.about-more .about-intro {
    margin-top: 0;
}


.home section.about-more .about-intro {
    padding-bottom: 70px;
}

.about-more .about-intro .more-link {
    font-size: 23px;
    max-width: 340px;
    padding: 13px 30px;
    cursor: pointer;
    margin: 20px auto 0;
    display: block;
}

.home .about-more .about-intro .more-link {
    position: absolute;
    left: 0;
    right: -20px;
    bottom: -50px;
}

.home .about-more {
	overflow: visible;
	margin-bottom: 175px;
}

.home .about-more:before {
    display: none;
}

.home .about-more:after {
    height: 100%;
}

.about-home {
    height: auto;
    min-height: 1px;
    overflow: visible;
}

.about-home:before,
.about-home:after {
    display: none;
}

.home .about-home .about-blocks {
    display: block !important;
}

@media (max-width: 767px) {
    .home .about-more:after {
        border-radius: 0;
        height: 100%;
    }
}

.home .about-more .inner-small {
    padding-top: 60px;
}

.about-more .about-intro .about-title {
    width: 50%;
    padding-top: 175px;
    font-size: 2.5rem;
    line-height: 3.4rem;
    color: #FFF;
}

.about-more .about-intro .about-title span {
    display: inline-block;
    padding: 0 5px;
    line-height: normal;
    background: #FFF;
    color: #5b8bbc;
}


.home .about-more .about-blocks {
    display: none;
}

.about-more .about-block {
    width: 30%;
    margin-top: 50px;
    background: #FFF;
    min-height: 230px;
    border-radius: 5px;
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.2);
    transform: translateZ(0);
    transition: transform .24s ease-in-out, box-shadow .3s ease-in-out;
}

.about-more .about-block:hover {
    box-shadow: 15px 15px 30px rgba(0, 0, 0, 0.3);
    transform: translate(0, -.375rem);
}

.about-more .about-block a {
    display: flex;
    justify-content: space-between;
    height: 100%;
    text-decoration: none;
}

.about-more .about-block figure {
    width: 40%;
    height: 100%;
}

.home .about-blocks figure {
    display: none;
}

.about-more .about-block figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.about-more .about-block .block-content {
    position: relative;
    width: 100%;
    padding: 20px;
}

.about-more .about-block .block-content .block-text {
    font-size: 1.125rem;
    line-height: 1.7025rem;
    padding-bottom: 30px;
}

.about-more .about-block .block-content .block-title {
    font-size: 1.25rem;
    line-height: 1.8125rem;
    font-weight: 900;
    color: #2A4F67;
}

.about-more .about-block .block-content .more {
    position: absolute;
    left: 20px;
    bottom: 20px;
    color: #E2625C;
    font-weight: 900;
    text-decoration: underline;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.about-more .about-block .block-content .more:hover {
    color: #fc8781;
}

.about-more .about-block .block-content .more span {
    display: inline-flex;
    position: relative;
    top: 6px;
    left: 15px;
    background: #E2625C;
    border-radius: 100%;
    width: 21px;
    height: 21px;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.about-more .about-block .block-content .more:hover span {
    background: #fc8781;
}

.about-more .about-block .block-content .more span svg {
    width: 22px;
    position: relative;
    left: 1px;
}

.home .about-more .about-block .block-content {
    width: 100%;
}

/* Vision block
   ========================================================================== */

.vision-block {
    min-height: 600px;
}

.vision-block .circle-holder {
    position: relative;
    width: 650px;
    margin: auto;
}

.vision-block .circle-holder .vision-title {
    position: relative;
    z-index: 1;
    margin-top: 60px;
}

.vision-block .vision-circles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 619px;
    height: 619px;
    margin: auto;
}

.vision-block .vision-circles .circle-first {
    width: 619px;
    height: 619px;
}

.vision-block .vision-circles .circle-second {
    width: 523px;
    height: 523px;
    left: calc(50% - 523px / 2);
    top: calc(50% - 523px / 2);
}

.vision-block .vision-circles .circle-third {
    width: 427px;
    height: 427px;
    left: calc(50% - 427px / 2);
    top: calc(50% - 427px / 2);
}

.vision-block .vision-circles .circle-fourth {
    width: 331px;
    height: 331px;
    left: calc(50% - 331px / 2);
    top: calc(50% - 331px / 2);
}

.vision-block .vision-circles .circle-fifth {
    width: 235px;
    height: 235px;
    left: calc(50% - 235px / 2);
    top: calc(50% - 235px / 2);
}

.gradient-circle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: absolute;
    border-radius: 100%;
    width: 167px;
    height: 167px;
    left: calc(50% - 167px / 2);
    top: calc(50% - 167px / 2);
    background: linear-gradient(140.77deg, #5798C6 22.47%, #666EA4 92.8%);
}

.gradient-circle span {
    font-size: 3.125rem;
    font-weight: 800;
    color: #FFF;
}

.gradient-circle p {
    color: #FFF;
    line-height: 1.225rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.vision-block .content-block {
    position: relative;
    z-index: 1;
    width: 25%;
    padding-top: 135px;
}

.vision-block .content-block.block-bottom {
    padding-top: 20px;
    width: 40%;
    margin: auto;
}

.vision-block .content-block span {
    font-size: 2.125rem;
    font-weight: 800;
    color: #2A4F67;
}

.vision-block .content-block.block-bottom span svg {
    position: relative;
    top: 8px;
}

/* Latest news
   ========================================================================== */

.latest-news {
    position: relative;
}

.latest-news .latest-carousel .flickity-slider {
    height: 100%;
}

.latest-news .news-item {
    width: 35%;
    height: 650px;
    min-height: 500px;
    margin-right: 30px;
}

.latest-news .latest-carousel {
    outline: none;
}

.latest-news .carousel-wrap {
    overflow: hidden;
    padding-bottom: 100px;
}

.latest-news .latest-carousel button {
    position: absolute;
    top: 0;
    z-index: 1;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 100%;
    cursor: pointer;
}

.latest-news .latest-carousel button svg {
    display: none;
}

.latest-news .latest-carousel button.next {
    right: 0;
    background: #FFF url(../images/angle-right-solid.svg) no-repeat center;
    background-size: 16px;
}

.latest-news .latest-carousel button.previous {
    right: 60px;
    background: #FFF url(../images/angle-left-solid.svg) no-repeat center;
    background-size: 16px;
}

/* News items
   ========================================================================== */

.news-item {
    background: #FFF;
    border-radius: 5px;
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.2);
    transform: translateZ(0);
    transition: transform .24s ease-in-out, box-shadow .3s ease-in-out;
}

.news-item:hover {
    box-shadow: 15px 15px 30px rgba(0, 0, 0, 0.3);
    transform: translate(0, -.375rem);
}

.news-item a {
    display: block;
    height: 100%;
    text-decoration: none;
}

.news-item figure {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    width: 100%;
    height: 300px;
}

.news-item figure img {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.news-item .item-content {
    padding: 30px 30px 60px;
}

.news-item .item-content .more {
    position: absolute;
    left: 30px;
    bottom: 30px;
    color: #E2625C;
    font-weight: 900;
    text-decoration: underline;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.news-item .item-content .more:hover {
    color: #fc8781;
}

.news-item .item-content .more span {
    display: inline-flex;
    position: relative;
    top: 6px;
    left: 15px;
    background: #E2625C;
    border-radius: 100%;
    width: 21px;
    height: 21px;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.news-item .item-content .more:hover span {
    background: #fc8781;
}

.news-item .item-content .more span svg {
    width: 22px;
    position: relative;
    left: 1px;
}

/* News grid
   ========================================================================== */

.news .news-grid {
    display: flex;
    flex-wrap: wrap;
}

.news .news-grid .news-item {
    width: 31%;
    margin: 0 3.5% 5% 0;
}

.news .news-grid .news-item:nth-child(3n) {
    margin-right: 0;
}

/* Single post/page
   ========================================================================== */

.single-content .post-categories {
    margin: 0 0 10px 0;
}

.single-content .post-categories li {
    list-style-type: none;
}

.single-content .post-categories li a {
    color: #E2625C;
    font-weight: 900;
}

.single-content .post-categories li a:hover {
    color: #fc8781;
}

.single-content .content-image img {
    border-radius: 60px 20px;
}

.single-content .content-date {
    display: block;
}

/* Pagenavi
   ========================================================================== */

.wp-pagenavi {
    clear: both;
    width: 100%;
    font-weight: 900;
    font-size: 1.125rem;
    text-align: center;
}

.wp-pagenavi a, .wp-pagenavi span {
    text-decoration: none;
    margin: 0 8px;
    color: #2A4F67;
}

.wp-pagenavi a:hover, .wp-pagenavi span.current {
    color: #E2625C;
}

.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
    position: relative;
    top: -2px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 25px;
    height: 25px;
    background-color: #E2625C;
    color: #FFF;
    border-radius: 100%;
    text-indent: -99999em;
}

.wp-pagenavi .previouspostslink:hover,
.wp-pagenavi .nextpostslink:hover {
    background-color: #fc8781;
}

.wp-pagenavi .nextpostslink {
    background-image: url(../images/angle-right-solid-white.svg);
    background-repeat: no-repeat;
    background-position: 8px center;
    background-size: 11px;
}

.wp-pagenavi .previouspostslink {
    background-image: url(../images/angle-left-solid-white.svg);
    background-repeat: no-repeat;
    background-position: 6px center;
    background-size: 11px;
}

/* News search
   ========================================================================== */

.news-search {
    position: relative;
    width: 31%;
}

.news-search input[type="search"] {
    background: #FFF;
    color: #2A4F67;
    width: 100%;
    padding: 18px;
    font-family: inherit;
    font-weight: 900;
    font-size: 1.125rem;
    border-radius: 5px;
    border: none;
}

.news-search input[type="search"]::placeholder {
    opacity: 1;
}

.news-search button {
    position: absolute;
    right: 18px;
    top: 18px;
    background: none;
    border: none;
    cursor: pointer;
}

.news-search button:hover {
    opacity: .7;
}

/* Tax company
   ========================================================================== */

.tax-bedrijf .member-content {
    padding-top: 20px;
    max-width: 768px;
}

.tax-bedrijf .member-content .row {
    justify-content: initial;
}

.tax-bedrijf .member-info {
    margin: 75px 0 0 0;
}

.tax-bedrijf .member-info h1 {
    padding-top: 20px;
	width: 65%;
}

.tax-bedrijf .member-info figure {
    width: 225px;
}

.tax-bedrijf .member-info figure img {
    max-width: 100px;
}

.tax-bedrijf .member-info ul {
    margin: 0 0 0 -50px;
    padding-top: 10px;
    width: calc(100% + 100px);
    background: #d8e6f0;
    border-radius: 0 0 60px 20px;
}

.tax-bedrijf .member-info ul li {
    display: flex;
    list-style-type: none;
    padding: 0 50px 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(42, 79, 103, 0.12);
    color: #2A4F67;
}

.tax-bedrijf .member-info ul li:last-child {
    border: none;
    margin-bottom: 0;
}

.tax-bedrijf .member-info ul li span:first-child {
    width: 225px;
}

.tax-bedrijf .member-info .member-content {
    min-width: 768px;
}

.tax-bedrijf .member-info ul li.workareas div {
    width: 55%;
}

.tax-bedrijf .member-info ul li.workareas div span:last-child {
    display: none !important;
}

.tax-bedrijf .member-card {
    height: 130px !important;
}

.member-card.inactive {
    filter: blur(3px);
    -webkit-filter: blur(3px);
    pointer-events: none;
}

/* Faq
   ========================================================================== */

.faq-intro {
    max-width: 768px;
    margin: auto;
}

.faq-list .ui-accordion-header {
    position: relative;
    border-bottom: 1px solid rgba(196, 196, 196, 0.2);
    padding: 20px 50px 20px 30px;
    margin-bottom: 0;
    cursor: pointer;
    outline: none;
}

.faq-list .ui-accordion-header.ui-state-active {
    background: #D8E6F0;
    border: 0;
}

.faq-list .ui-accordion-header .arrow {
    position: absolute;
    right: 30px;
    top: 20px;
    width: 20px;
}


.faq-list .ui-accordion-header .arrow .angle-up,
.faq-list .ui-accordion-header.ui-state-active .arrow .angle-down {
    display: none;
}

.faq-list .ui-accordion-header.ui-state-active .arrow .angle-up {
    display: block;
    margin-top: 10px;
}

.faq-list .answer {
    padding: 0 30px 20px;
    background: #D8E6F0;
    margin-bottom: 15px;
}

.faq-list .answer p:last-child {
    margin-bottom: 0;
}

.faq-switch {
    display: flex;
    justify-content: space-between;
    text-align: center;
    max-width: 450px;
    margin: auto;
    border-radius: 40px;
    border: 1px solid #D8E6F0;
}

.faq-switch a {
    display: block;
    text-align: center;
    width: 50%;
    height: 100%;
    padding: 22px;
    color: #2A4F67;
    font-size: 1.125rem;
    font-weight: 900;
    text-decoration: none;
}

.faq-switch a.active {
    background: #D8E6F0;
}

.faq-switch a.member {
    border-top-left-radius: 40px;
    border-bottom-left-radius: 40px;
}

.faq-switch a.general {
    border-top-right-radius: 40px;
    border-bottom-right-radius: 40px;
}

.faq-general {
    display: none;
}

/* Partners
   ========================================================================== */

.block-partners {
    border-top: 1px solid rgba(196, 196, 196, 0.2);
}

.block-partners.id-0 {
    border: none;
}

.block-partners figure {
    width: 15%;
}

.block-partners .content-block {
    width: 80%;
}

.block-partners .benefits {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
}

.block-partners .benefits li {
    list-style-type: none;
    width: 48%;
    margin: 0 4% 2% 0;
    font-size: 1.125rem;
    color: #2A4F67;
    font-weight: 900;
}

.block-partners .benefits li:nth-child(2n) {
    margin-right: 0;
}

.block-partners .benefits li:before {
    position: relative;
    top: -7px;
    content: '';
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 18px;
    height: 18px;
    margin-right: 10px;
    border-radius: 100%;
    background: url(../images/check.svg) #d8e6f0 no-repeat center;
    background-size: 60%;
}

.block-partners .more {
    color: #E2625C;
    font-weight: 900;
    text-decoration: underline;
    margin-right: 30px;
}

.block-partners .more:hover {
    color: #fc8781;
}

.block-partners .more span {
    display: inline-flex;
    position: relative;
    top: 6px;
    left: 15px;
    background: #E2625C;
    border-radius: 100%;
    width: 21px;
    height: 21px;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.block-partners .more:hover span {
    background: #fc8781;
}

.block-partners .more span svg {
    width: 22px;
    position: relative;
    left: 1px;
}

/* Map
   ========================================================================== */

.block-map .content-map {
    position: relative;
    max-width: 800px;
    pointer-events: none;
}

.block-map .content-map .mapsvg-sidebar {
    position: absolute;
    left: -300px;
    width: 450px;
    height: 250px;
    padding: 20px;
    z-index: 99;
    overflow: hidden;
}

.block-map .content-map .mapsvg-map-container .mapsvg-details-container {
    z-index: 99999;
}

.block-map .content-map .btn {
    display: inline-block;
    margin-top: 20px;
    font-size: 1.125rem;
    line-height: 1.5625rem;
    font-weight: 900;
    color: #FFF !important;
    text-decoration: none;
    text-align: center;
    max-width: 340px;
    padding: 9px 30px;
    border-radius: 30px;
    cursor: pointer;
    background: #E2625C !important;
    border: 3px solid #f9e0de !important;
}

.block-map .content-map .btn:hover {
    background: #fc8781 !important;
}

.block-map .content-map .mapsvg-controller-view-content {
    color: rgba(42, 79, 103, 0.5);
    font-size: 1.25rem;
    line-height: 2.0625rem;
}

.block-map .content-map .mapsvg-controller-view-content h5 {
    font-size: 1.475rem;
}

.block-map .content-map .mapsvg-controller-view-content h5,
.block-map .content-map .mapsvg-controller-view-content p {
    margin-bottom: 5px;
}

.block-map .content-map label {
    font-weight: 900;
    font-size: 1.3rem;
    line-height: 1.7rem;
    margin-bottom: 20px;
    padding-top: 20px;
    color: #2A4F67;
    text-transform: none;
}

.block-map .content-map .select2-container--default .select2-selection--single {
    border: 1px solid #D8E6F0 !important;
    height: 62px !important;
}

.block-map .content-map .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 62px !important;
    font-weight: bold;
    font-size: 1.125rem;
    padding-left: 20px;
}

.block-map .content-map .select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #2A4F67 !important;
}

.block-map .content-map .select2-container--default .select2-selection--single .select2-selection__arrow b {
    border: 0 !important;
    width: 15px;
    height: 10px;
    left: 0;
    margin-left: -8px !important;
    top: 30px;
    background: url(../images/chevron-down.svg) no-repeat;
    background-size: contain;
}

.block-map .content-map .select2-container--default .select2-selection--single .select2-selection__clear {
    display: none !important;
}

.select2-container--default .select2-search--dropdown .select2-search__field,
.select2-dropdown {
    border-color: #D8E6F0 !important;
}

body .mapsvg-filters-wrap, body .mapsvg-filters-wrap input, body .select2-results,
body .mapsvg-filters-wrap input[type="text"], body .select2-search__field {
    font-family: 'Avenir' !important;
}

.block-map .content-map .mapsvg-layer img {
    object-position: -99999px 99999px;
    background: url(../images/nbbi-marker.svg) no-repeat;
    background-size: contain;
    width: 28px;
    height: 25px;
}

.block-map .content-block {
    position: relative;
    z-index: 1;
    max-width: 35%;
    margin: -500px 0 0 auto;
}

/* Block members
   ========================================================================== */

.block-members {
    background: #D8E6F0;
    padding: 50px 0;
}

.block-members .list-members {
    display: flex;
    flex-wrap: wrap;
}

.block-members .list-members .member-card {
    position: relative;
    width: 31.5%;
    height: 170px;
    padding: 0;
    margin: 0 2.75% 2.75% 0;
}

.block-members .list-members .member-card a {
    display: block;
    padding: 30px;
    height: 100%;
}

.block-members .list-members .member-card:nth-child(3n) {
    margin-right: 0;
}

.block-members .list-members .member-card:nth-last-child(-n+3) {
    margin-bottom: 0;
}

.block-members .list-members .member-card a {
    text-decoration: none;
}

.block-members .list-members .member-card .card-image {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    margin-right: 20px;
    border-radius: 100%;
    background: #D8E6F0;
}

.block-members .list-members .member-card .card-image.has-thumb {
    display: inline-block;
}

.block-members .list-members .member-card .card-image .comp-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 100%;
}

.block-members .list-members .member-card figure .empty {
    max-width: 25px;
}

.block-members .list-members .member-card .card-content {
    width: 260px;
}

.block-members .list-members .member-card .card-content h3 {
    margin-bottom: 5px;
    line-height: 1.525rem;
}

.block-members .list-members .member-card .card-content .card-name {
    font-weight: bold;
    color: #2A4F67;
    margin-bottom: 20px;
}

.block-members .list-members .member-card .card-content a {
    color: #2A4F67;
}

.block-members .list-members .member-card .card-content .valid {
	position: relative;
	top: 25px;
    color: #2A4F67;
    font-size: .9rem;
}

.block-members .list-members .member-card .card-content .valid span {
    display: block;
    margin-bottom: 5px;
}

.block-members .list-members .member-card .card-content ul {
    position: absolute;
    bottom: 30px;
    display: flex;
    margin-top: 15px;
    width: 260px;
}

.block-members .list-members .member-card .card-content ul li {
    list-style-type: none;
    margin-right: 10px;
    width: 38px;
}

.block-members .list-members .member-card .card-content ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: #D8E6F0;
    border-radius: 100%;
}

.block-members .list-members .member-card .card-content ul li a:hover {
    background: #2a4f67;
}

.block-members .list-members .member-card .card-content svg path {
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.block-members .list-members .member-card .card-content ul li a:hover svg path {
    fill: #FFF;
}

.block-members .list-members .member-card .card-content ul li.company-logo {
    margin-left: auto;
}

/* Block education
   ========================================================================== */

.block-education {
    background: none;
}

.block-education .education-block {
    box-shadow: 10px 10px 15px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.block-education .comp-intro {
    background: #FFF;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    padding: 30px;
}

.block-education .comp-logo {
    display: flex;
    align-items: center;
    width: 600px;
}

.block-education .comp-logo img {
    max-width: 75%;
}

.block-education .comp-info {
    width: 70%;
    margin-top: 25px;
}

.block-education table {
    width: 100%;
    color: #2A4F67;
}

.block-education table th,
.block-education table td {
    text-align: left;
    padding: 20px 30px;
    font-size: 1rem;
    width: 150px;
    line-height: 1.725rem;
}

.block-education table td:first-child {
    width: 500px;
}

.block-education table tr {
    border-top: 1px solid rgba(42, 79, 103, 0.12);
    background: rgba(216, 230, 240, 0.2);
}

.block-education table tr:first-child {
    border: none;
}

.block-education table td .btn {
    padding: 8px 20px;
}

/* Single member
   ========================================================================== */

.single-content .back-link {
    display: block;
    margin-bottom: 10px;
    color: #E2625C;
    font-weight: 900;
}

.single-content .back-link:hover {
    color: #fc8781;
}

.block-cta.single-content {
    max-width: 665px;
    margin: auto;
}

.block-cta.single-content .content-cta {
    width: 100%;
}

.block-cta.single-content .gradient-circle {
    background: linear-gradient(41deg, #E2625C 12.62%, #ffb1ad 88.03%);
}

.block-cta.single-content .content-cta h2 {
    margin-bottom: 10px;
}

.block-cta.single-content .content-cta p {
    margin-bottom: 10px;
    color: #2A4F67;
    font-size: 1rem;
    line-height: normal;
    font-weight: 900;
}

.block-cta.single-content .content-cta .valid {
    color: #2A4F67;
    font-size: 1rem;
}

.block-cta.single-content .content-cta .valid span {
    position: relative;
    left: 5px;
    top: -3px;
}

.block-cta.single-content .content-cta .mail {
    display: block;
    font-size: 1rem;
    line-height: normal;
    color: #2A4F67;
    margin-bottom: 10px;
}

.block-cta.single-content .content-cta .mail:hover {
    color: #E2625C;
}

.block-cta.single-content .content-cta .cta-text {
    min-height: 300px;
}

.block-cta.single-content .content-cta ul {
    display: flex;
    margin: 10px 0 0 0;
}

.block-cta.single-content .content-cta ul li {
    list-style-type: none;
    margin-right: 10px;
    width: 38px;
}

.block-cta.single-content .content-cta ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: #D8E6F0;
    border-radius: 100%;
}

.block-cta.single-content .content-cta svg path {
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.block-cta.single-content .content-cta ul li a:hover {
    background: #2a4f67;
}

.block-cta.single-content .content-cta ul li a:hover svg path {
    fill: #FFF;
}

.single-map {
    min-height: 800px;
    background: #d8e6f0;
    margin-top: -332.5px;
}

.single-map div {
    display: none !important;
}

.member-info {
    margin: -332.5px 0 0;
}

.member-info .member-content {
    position: relative;
    max-width: 768px;
    margin: auto;
    padding-bottom: 0;
}

.member-info .member-content .company-info {
    position: relative;
    width: 100%;
    min-height: 100px;
}

.member-info .member-content .company-info h3 {
    margin-bottom: 15px;
}

.member-info .member-content .company-info .company-logo {
    position: absolute;
    right: 0;
    top: 0;
    width: 75px;
    height: 75px;
}

.member-info .member-content .company-info ul {
    margin: 0 0 0 -50px;
    padding-top: 10px;
    width: calc(100% + 100px);
    background: #d8e6f0;
    border-radius: 0 0 60px 20px;
}

.member-info .member-content .company-info ul li {
    display: flex;
    list-style-type: none;
    padding: 0 50px 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(42, 79, 103, 0.12);
    color: #2A4F67;
}

.member-info .member-content .company-info ul li:last-child {
    border: none;
}

.member-info .member-content .company-info ul li span {
    color: rgba(42, 79, 103, 0.5);
    width: 300px;
}

/* Block filter
   ========================================================================== */

.block-filter {
    position: relative;
    box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.05);
    min-height: 50px;
    height: auto;
    padding-bottom: 50px;
}

.block-filter .reset-filters {
    display: block;
    color: #E2625C;
    font-weight: 900;
    text-decoration: underline;
    margin-top: 10px;
}

.block-filter .row {
    justify-content: initial;
}

.block-filter #regions {
    display: none;
}

.block-filter label {
    display: block;
}

.block-filter #regions-button {
    position: relative;
    display: block;
    line-height: 62px !important;
    font-weight: bold;
    font-size: 1.125rem;
    padding-left: 20px;
    border: 1px solid #D8E6F0 !important;
    border-radius: 4px;
    height: 62px !important;
    width: 32%;
    margin-right: 1.75%;
    font-weight: bold;
    font-size: 1.125rem;
    color: #2A4F67;
    cursor: pointer;
}

.block-filter #regions-button:last-child {
	margin-right: 0;
}

.block-filter .ui-selectmenu-icon {
    position: absolute;
    width: 15px;
    height: 10px;
    right: 15px;
    top: 28px;
    background: url(../images/chevron-down.svg) no-repeat;
    background-size: contain;
}

.ui-selectmenu-menu {
    display: none;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
}

.ui-selectmenu-menu.ui-selectmenu-open {
    display: block;
}

.ui-selectmenu-menu #regions-menu {
    max-height: 200px;
    overflow-x: scroll;
}

.ui-selectmenu-menu #regions-menu li {
    list-style-type: none;
    padding: 12px 20px;
    font-family: 'Avenir' !important;
    color: #2A4F67;
    cursor: pointer;
}

.ui-selectmenu-menu #regions-menu li:first-child {
    display: none;
}

.ui-widget.ui-widget-content {
    border: 1px solid #D8E6F0 !important;
    background: #FFF;
}

/* Social share
   ========================================================================== */

.social-share {
    margin-left: 0 !important;
}

.social-share li {
    list-style-type: none;
    display: inline-block;
    margin-right: 10px;
}

.social-share li a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background: #D8E6F0;
    border-radius: 100%;
}

.social-share li a:hover {
    background: #2A4F67;
}

.social-share li a svg path {
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.social-share li a:hover svg path {
    fill: #FFF;
}

/* Form elements
   ========================================================================== */

.form-field {
    width: 49%;
    margin-bottom: 15px;
}

form span.wpcf7-list-item {
    margin-left: 0;
}

form label {
    line-height: 50px;
    font-weight: normal !important;
    color: #2A4F67;
}

input[type="text"],
input[type="tel"],
input[type="email"] {
    border: 1px solid #E9E9E9;
    font-size: inherit;
    border-radius: 5px;
    padding: 17px 15px !important;
    width: 100%;
}

textarea {
    border: 1px solid #E9E9E9;
    font-size: inherit;
    border-radius: 5px;
    padding: 17px 15px !important;
    resize: none;
    width: 100%;
}

.wpcf7 input[type="checkbox"] {
    display: none;
}

.wpcf7-list-item-label:before {
    position: relative;
    top: 2px;
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 10px;
    border: 1px solid #E9E9E9;
    cursor: pointer;
}

.wpcf7 input[type="checkbox"]:checked + .wpcf7-list-item-label:before {
    background: #e2625c;
}

.gform_button {
	display: inline-block;
	font-size: 1.125rem;
	line-height: 1.5625rem;
	font-weight: 900;
	color: #FFF;
	text-decoration: none;
	text-align: center;
	max-width: 340px;
	padding: 13px 30px;
	border-radius: 30px;
	cursor: pointer;
	background: #E2625C;
	border: 3px solid #f9e0de;
}

.gform_button:hover {
	background: #fc8781;
}

.gform_body select {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	border: 1px solid #E9E9E9;
	color: #2A4F67 !important;
    font-size: inherit;
    border-radius: 5px;
    padding: 17px 15px !important;
    width: 100% !important;
    background: url(../images/chevron-down.svg) no-repeat 97% center;
    background-size: 15px;
}

/* 404
   ========================================================================== */

.block-404 form {
    position: relative;
    width: 100%;
}

.block-404 input[type="search"] {
    border: 1px solid #D8E6F0;
    font-size: inherit;
    font-family: inherit;
    color: #2A4F67;
    font-weight: 900;
    border-radius: 5px;
    padding: 15px 15px;
    width: 100%;
}

.block-404 input[type="search"]::placeholder {
    opacity: 1;
}

.block-404 button {
    position: absolute;
    right: 20px;
    top: 20px;
    border: none;
    background: none;
    cursor: pointer;
}

.block-404 button:hover {
    opacity: .7;
}

.block-404 button svg path {
    fill: #E2625C;
}

.block-404 .to-home {
    margin-top: 30px;
    font-weight: 900;
    font-size: 1.75rem;
    line-height: 2.375rem;
}

/* Search
   ========================================================================== */

.block-search a {
    text-decoration: none;
    color: rgba(42, 79, 103, 0.5);
}

.block-search .more {
    color: #E2625C;
    font-weight: 900;
    text-decoration: underline;
    margin-right: 30px;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.block-search .more:hover {
    color: #fc8781;
}

.block-search .more span {
    display: inline-flex;
    position: relative;
    top: 6px;
    left: 15px;
    background: #E2625C;
    border-radius: 100%;
    width: 21px;
    height: 21px;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.block-search .more:hover span {
    background: #fc8781;
}

.block-search .more span svg {
    position: relative;
    left: 1px;
}

/* Search modal
   ========================================================================== */

.search-modal {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .9);
    z-index: -99;
    opacity: 0;
    transition: opacity .3s ease-in-out;
}

.show-search {
    overflow: hidden;
}

.show-search .search-modal {
    opacity: 1;
    z-index: 9999;
}

.search-modal form {
    position: relative;
    width: 100%;
    padding: 0 15px;
    max-width: 800px;
    margin: auto;
}

.search-modal input[type="search"] {
    border: 1px solid #D8E6F0;
    font-size: 1.525rem;
    font-family: inherit;
    color: #2A4F67;
    font-weight: 900;
    border-radius: 5px;
    padding: 25px 15px;
    width: 100%;
}

.search-modal input[type="search"]::placeholder {
    opacity: 1;
}

.search-modal form button {
    position: absolute;
    right: 25px;
    top: 28px;
    border: none;
    background: none;
    cursor: pointer;
}

.search-modal form button:hover {
    opacity: .7;
}

.search-modal button svg path {
    fill: #E2625C;
}

.search-modal .close-modal {
    position: absolute;
    right: 15px;
    top: 125px;
    width: 100%;
    max-width: 1280px;
    margin: auto;
}

.search-modal .close-modal a {
    position: absolute;
    right: 0;
    font-size: 1.525rem;
    font-weight: 900;
    color: #FFF;
    text-decoration: none;
}

.search-modal .close-modal a span {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    background: #e2625c;
    color: #FFF;
    border-radius: 100%;
}


/* Homepage specific CSS
   ========================================================================== */

.home section.block-cta {
    border-top: 1px solid #f4f4f4;
    position: relative;
    margin-top: 20px;
    margin-bottom: -480px;
    z-index: 2;
    padding-top: 20px;
}

.home section.block-cta .row {
    display: flex;
    flex-direction: column;
}

.home .block-cta .content-block {
    height: auto;
    text-align: center;
    width: 400px;
    text-align: center;
    margin: 0 auto;
    margin-top: 40px;
}

.home .block-cta .content-block h2 {
    margin-bottom: 11px;
}

.home .block-cta .content-cta .cta-text {
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 14;
}

.home .block-cta .content-cta {
    margin: -20px auto 150px;
    height: auto;
    margin-top: 11px;
}

.home .block-cta .blob {
    top: -21px;
    width: 683px;
    left: -12px;
    opacity: 0;
}

.home section.block-cta {
    margin-bottom: -350px;
    position: relative;
    z-index: 2;
}

.home .vision-block {
    padding-bottom: 50px;
}

/* Footer
   ========================================================================== */

#footer {
    padding: 30px 0 75px;
}

.home #footer,
.blog #footer,
.single-post #footer,
.page-template-vision-template #footer {
    padding: 30px 0;
    border-top: 1px solid rgba(196, 196, 196, 0.2);
}

#footer .footer-block {
    width: 20%;
    font-size: 1.25rem;
    line-height: 2.0625rem;
}

#footer .footer-block .block-title {
    color: #2A4F67;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

#footer .footer-block svg {
    width: 15px;
}

#footer .footer-block svg.fa-linkedin-in {
    width: 22px;
}

#footer .footer-block ul.menu {
    margin-top: 0;
}

#footer .footer-block ul li {
    list-style-type: none;
}

#footer .footer-block ul li a {
    color: #2A4F67;
    text-decoration: none;
}

#footer .footer-block ul li a:hover {
    color: #E2625C;
}

#footer .social-links a {
    display: inline-flex;
    justify-content: center;
    width: 51px;
    height: 51px;
    border-radius: 100%;
    background: #5798C6;
}

#footer .social-links a:hover {
    background: #E2625C;
}

/* Bottom
   ========================================================================== */

#bottom {
    padding: 30px 0;
    border-top: 1px solid rgba(196, 196, 196, 0.2);
    font-size: 1.25rem;
    line-height: 2.0625rem;
}

#bottom ul {
    margin: 0;
    text-align: center;
}

#bottom ul li a {
    color: #CBCBCB;
    text-decoration: none;
}

#bottom ul li a:hover {
    color: #5798c6;
}

#bottom ul li {
    color: #CBCBCB;
    list-style-type: none;
    display: inline-block;
}

#bottom ul li:after {
    content: '-';
    margin: 0 5px 0 10px;
}

#bottom ul li:last-child:after {
    display: none;
}

/* Responsive
   ========================================================================== */

/* 1360 */

@media (max-width: 1360px) {

    .top-blob {
        width: 65%;
    }

}

/* 1170 */

@media (max-width: 1170px) {

    .logo {
        width: 250px;
    }

    .top-blob {
        width: 70%;
    }

    .block-members .list-members .member-card {
        width: 49%;
        margin-right: 2% !important;
    }

    .block-members .list-members .member-card:nth-child(2n) {
        margin-right: 0 !important;
    }

    .block-members .list-members .member-card .card-content {
        width: 80%;
    }

}

/* 1099 */

@media (max-width: 1099px) {

    .top-blob {
        width: 75%;
    }

    #header .menu {
        margin-top: 70px;
    }

    .logo {
        width: 200px;
    }

}

/* 980 */

@media (max-width: 980px) {

    #header .menu {
        height: 0;
        margin: 0;
        overflow: hidden;
        background: #FFF;
        z-index: 999999;
    }

    .show-menu #header .menu {
        height: auto;
    }

    #header .menu ul {
        padding-top: 30px;
    }

    #header .menu > ul > li {
        position: relative;
        display: block;
        margin: 8px 0 0;
        padding-top: 8px;
        border-top: 1px solid rgba(196, 196, 196, 0.2);
    }

    #header .menu ul li span {
        cursor: pointer;
        font-weight: 900;
    }

    #header .menu ul li span:after {
        position: absolute;
        right: 10px;
        top: 8px;
        content: '+';
        color: #2A4F67;
    }

    #header .menu ul li.open span:after {
        content: '-';
        right: 10px;
    }

    #header .menu ul ul {
        position: relative;
        left: 0;
        top: 0;
        padding: 15px 0 15px 20px;
        display: none !important;
        background: none;
        box-shadow: none;
    }

    #header .menu ul li.open ul {
        display: block !important;
    }

    #header .menu ul li a {
        color: #2A4F67;
    }

    #header .menu ul li a svg path {
        fill: #2A4F67;
    }

    #header .row {
        display: block;
    }

    .account ul .nav-toggle {
        display: inline-block;
    }

    .block-map .content-block {
        margin: 0;
        width: 100%;
        max-width: 100%;
    }

    .about-more::after {
        top: 0;
        height: 100%;
    }

    .about-blocks .row {
        display: block;
    }

    .about-more .about-block {
        width: 100%;
        min-height: initial;
    }

    .about-more .about-block figure {
        width: auto;
    }

    .about-more .about-block .block-content {
        width: 90%;
    }

    .about-more .about-block .block-content .more {
        position: initial;
    }

    .account {
        top: 30px;
    }

    .account a {
        padding: 0 !important;
        margin: 0 0 0 10px !important;
        border: none !important;
    }

    .account a span {
        display: none;
    }

    .account .btn--login {
        position: relative;
        top: -2px;
    }

    .account .btn-account svg {
        width: 22px;
        height: 30px;
    }

    .account .btn--login svg {
        height: 28px;
    }

    .account svg path {
        fill: #FFF;
    }

    .account ul .nav-toggle span {
        background: #FFF;
    }

    .block-members .member-card .row {
        display: flex !important;
    }

}

/* 899 */

@media (max-width: 899px) {

    .pt-200 {
        padding-top: 100px;
    }

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

    .pt-150 {
        padding-top: 75px;
    }

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

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

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

    .top-blob {
        width: 55%;
    }

    section .row,
    footer .row {
        display: block;
    }

    section .content-block {
        display: block !important;
        width: 100% !important;
        height: auto !important;
        text-align: left !important;
    }

    section .video-block,
    .default-content blockquote {
        width: 100% !important;
        max-width: 100%;
    }

    section .content-block {
        margin-bottom: 30px;
    }

    .inner-small {
        padding: 0;
    }

    .block-cta .content-cta {
        width: 100%;
        margin-bottom: 80px;
    }

    .block-cta .blob {
        width: 100%;
    }

    .block-cta .content-block {
        margin-bottom: 80px !important;
    }

    .block-intro .content-extra {
        margin-top: 0;
        max-width: 100%;
    }

    .home .about-more:after {
        background: linear-gradient(252.4deg, #5699C7 -3.42%, #6670A6 83.91%);
    }

    .home .about-more {
        margin-bottom: 0;
    }

    .home .about-more .inner-small {
        padding-top: 0;
    }

    .about-shield {
        max-width: 50%;
        margin: auto;
        text-align: center;
    }

    .about-shield img {
        display: inline-block;
    }

    .about-more .about-intro .about-title {
        padding-top: 30px;
        text-align: center;
        width: 100%;
    }

    .latest-news .carousel-wrap {
        padding-bottom: 30px;
    }

    .latest-news .news-item,
    .news-search {
        width: 100%;
    }

    .news-search input[type="search"] {
        border: 1px solid #d8e6f0;
    }

    .news .news-grid .news-item:first-child a {
        display: block;
    }

    .news .news-grid .news-item:first-child figure {
        width: 100%;
        height: auto;
    }

    .news .news-grid .news-item:first-child .item-content {
        width: 100%;
    }

    .news .news-grid .news-item:first-child .more {
        left: 0;
    }

    .block-members .list-members .member-card .card-image {
        margin-bottom: 20px;
    }

    .block-intro .intro-image {
        width: 100%;
        max-height: auto;
    }

    .block-intro .intro-image img {
        object-fit: contain;
        width: auto;
        height: auto;
    }

    .vision-block .circle-holder {
        width: 100%;
    }

    .vision-block .vision-circles .circle {
        display: none;
    }

    .vision-block .vision-circles {
        position: relative;
        width: 100%;
        height: auto;
    }

    .vision-block .gradient-circle {
        position: relative;
    }

    .vision-block .content-block {
        padding: 0;
        text-align: center !important;
    }

    form .row {
        display: flex !important;
    }

    .news .news-grid .news-item {
        width: 100% !important;
        margin: 0 0 5% !important;
    }

    .block-filter #regions-button {
        margin-bottom: 30px;
        width: 100%;
    }

    #footer .footer-block {
        display: inline-block;
        vertical-align: top;
        width: 48%;
        margin: 0 3% 30px 0;
    }

    #footer .footer-block:nth-child(2n) {
        margin-right: 0;
    }

    #footer .footer-block:last-child {
        margin-bottom: 0;
    }

    .block-education .comp-logo {
        width: auto;
    }

}

/* 767 */

@media (max-width: 767px) {

    #header {
        padding: 10px 0;
    }

    #header .logo {
        width: 150px;
    }

    .top-blob,
    .bottom-blob {
        display: none;
    }

    .about-shield {
        width: 100%;
        max-width: 100%;
    }

    .circle {
        display: none;
    }

    .block-cta .content-cta {
        height: auto;
    }

    .block-cta .content-cta .cta-text {
        width: 100%;
    }

    .block-intro .intro-cta .cta-icon,
    .block-cta .content-cta .cta-icon {
        position: relative;
        top: 0;
        left: 0;
        right: 0;
        margin: 0 auto 15px;
    }

    .block-members .list-members .member-card {
        width: 100%;
        margin-right: 0 !important;
        margin-bottom: 20px !important;
    }

    .account {
        top: 20px;
    }

    .account svg path {
        fill: #2A4F67;
    }

    .account ul .nav-toggle span {
        background: #2A4F67;
    }

    .latest-news .latest-carousel button {
        top: 150px;
    }

    .latest-news .latest-carousel button.previous {
        left: 30px;
        box-shadow: 0 0 5px rgba(0, 0, 0, .1);
    }

    .latest-news .latest-carousel button.next {
        right: 30px;
        box-shadow: 0 0 5px rgba(0, 0, 0, .1);
    }

    .block-partners figure {
        width: auto;
        margin-bottom: 20px;
    }

    .block-partners .benefits {
        display: block;
    }

    .block-partners .benefits li {
        width: 100%;
    }

    .block-intro .video-block iframe {
        width: 100%;
        height: 100%;
        object-fit: initial;
    }

    .tax-bedrijf .member-info .member-content {
        min-width: 100% !important;
    }

    html,
    body {
        overflow-x: hidden;
    }

}

/* 499 */

@media (max-width: 499px) {

    #footer .footer-block {
        width: 100%;
        margin-right: 0;
    }

    .block-cta .gradient-circle {
        display: none;
    }

    .block-cta .content-cta .cta-text .more {
        display: block;
    }

    .tax-bedrijf .member-info ul li {
    	display: block;
    }

    .tax-bedrijf .member-info ul li span {
    	display: block !important;
    	font-weight: bold;
    }

    .tax-bedrijf .member-info ul li.workareas div{
        width: 100% !important;
    }

    .tax-bedrijf .member-info ul li span.comma {
        display: inline-block !important;
        width: auto !important;
    }

}

/* 450 */

@media (max-width: 450px) {

    h1 {
        font-size: 7vw;
        line-height: 8vw;
    }

    h2 {
        font-size: 6vw;
        line-height: 7vw;
    }

    h3 {
        font-size: 5vw;
        line-height: 6vw;
    }

}