/*Default css*/

@font-face {
    font-family: 'HelveticaNowDisplay';
    src: url('/theme/assets/fonts/HelveticaNowDisplay-ExtraBold.woff2') format('woff2'),
        url('/theme/assets/fonts/HelveticaNowDisplay-ExtraBold.woff') format('woff');
    font-weight: 800;
    font-style: normal;
}
@font-face {
    font-family: 'HelveticaNowDisplay';
    src: url('/theme/assets/fonts/HelveticaNowDisplay-Bold.woff2') format('woff2'),
        url('/theme/assets/fonts/HelveticaNowDisplay-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: 'HelveticaNowDisplay';
    src: url('/theme/assets/fonts/HelveticaNowDisplay-Regular.woff2') format('woff2'),
        url('/theme/assets/fonts/HelveticaNowDisplay-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'HelveticaNowDisplay';
    src: url('/theme/assets/fonts/HelveticaNowDisplay-Light.woff2') format('woff2'),
        url('/theme/assets/fonts/HelveticaNowDisplay-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
}
@font-face {
    font-family: 'HelveticaNowText';
    src: url('/theme/assets/fonts/HelveticaNowText-Medium.woff2') format('woff2'),
        url('/theme/assets/fonts/HelveticaNowText-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'HelveticaNowDisplay';
}
h1.hidden {
  display: none;
}
h2 {
    font-size: 36px;
    line-height: 40px;
    font-weight: 700;
}
h3 {
    font-size: 36px;
    line-height: 40px;
    font-weight: 300;
}
h4 {
    font-size: 18px;
    line-height: 22px;
    font-weight: 800;
}
h5 {
    font-size: 17px;
    line-height: 30px;
}
h6 {
    font-size: 15px;
    line-height: 30px;
}
h6 b {
    font-weight: 700;
}
p, a, span, select, li, td, th, option, form input, b, ul, textarea, label, button, input {
    font-family: 'HelveticaNowDisplay';
    font-weight: 400;
    font-size: 15px;
    line-height: 22px;
    letter-spacing: .15px;
}
html {
    scroll-behavior: smooth;
}
:focus {
    outline: none;
}
.black {
    background: black;
}
.white {
    background: white;
}
.lockScroll {
    width: 100%;
    overflow: hidden;
    position: fixed;
}
.full-link-btn {
    position: absolute;
    height: 100%;
    width: 100%;
    display: block;
    z-index: 2;
    top: 0;
    left: 0;
}
.main-content-wrapper {
    width: 100%;
    position: relative;
}
.plate--container {
    position: relative;
    width: 100%;
    max-width: unset;
    padding-left: 10%;
    padding-right: 10%;
}
.section-container {
    position: relative;
    width: 100%;
}
.none {
    width: 100%;
    max-width: unset;
    padding-left: 0;
    padding-right: 0;
}
.fl-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.fl-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}
.fl-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.fl-wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.jc-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.ai-center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
/* 404 message */
.error-message {
    width: 100%;
    height: 500px;
    z-index: 3;
    margin-top: -276px;
    background: #dddddd;
    position: relative;
}
/*Navigation styling*/

#navigation {
    width: 100%;
    height: 120px;
    position: fixed;
    z-index: 99;
}
nav.navbar {
    position: relative;
    height: 100%;
    padding: 0;
    background: transparent;

    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row;
    flex-flow: row;
}
.navbar-inner {
    position: relative;

    display: flex;
    justify-content: space-between;
}
.navbar-brand {
    height: 80px;
    width: auto;
    position: relative;
    z-index: 100;
    margin-left: -13px;
    margin-right: 60px
}
.navbar-collapse {
    width: 30%;
    height: 100vh;
    position: fixed;
    right: 0;
    top: 0;
    padding: 150px 20px 150px 40px;
    background: #0030DD;
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    z-index: 2;
}
.menu-open #navbarResponsive {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
}
.navbar-toggler {
    display: flex;
    align-items: center;
    z-index: 100;
    color: white;
    font-size: 15px;
    padding: 0;
    background: transparent;
    border: 0;
}
.black .navbar-toggler,
.menu-open .navbar-toggler {
    color: white!important;
}
.white .navbar-toggler {
    color: black;
}
.navbar-toggler:focus {
    outline: none;
}
.dropdown-menu.active {
    display: block;
    position: absolute;
}
.dropdown-item {
    display: block;
    width: 100%;
    padding: 5px 15px;
    clear: both;
    font-weight: 400;
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
}
.dropdown-item:focus,
 .dropdown-item:hover {
    text-decoration: none;
    background-color: #ffffff;
}
.bars {
    position: relative;
    height: auto;
    width: 26px;
    margin-left: 15px;
}
.bar {
    width: 100%;
    height: 1px;
    background: white;
    margin-bottom: 5px;

    -webkit-transition: all .15s linear;
    -moz-transition: all .15s linear;
    -o-transition: all .15s linear;
    transition: all .15s linear;
}
.black .bar,
.menu-open .bar {
    background: white!important;
}
.white .bar {
    background: black;
}
.bar.bar-3{
    margin-bottom: 0;
}
.menu-open .bar-1 {
    transform: rotate(45deg);
    margin-top: 2px;
}
.menu-open .bar-3 {
    transform: rotate(-45deg);
    margin-top: -12px;
}
.menu-open .bar-2{
    opacity: 0;
}
ul.navbar-nav {
    position: relative;
    width: 100%;

    display: flex;
    flex-direction: column;
}
.navbar-nav .nav-link {
    padding-right: 0;
    padding-left: 0;
    font-size: 40px;
    line-height: 80px;
    font-weight: 300;
    color: white;
}
.nav-item.active .nav-link {
    color: #439af7;
}
img.logo {
    position: relative;
    height: 100%;
    width: auto;
}
/* BUTTONS */
.button {
    display: inline-block;
    position: relative;
    min-width: 180px;
    height: 50px;

    background-color: #0030DD;

    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}
.button a {
    position: relative;
    min-width: 100%;
    text-align: center;
    display: inline-block;
    color: black;
    text-decoration: none;
    padding: 18px 15px;
    height: 100%;
    z-index: 1;

    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}
.form-field.file:hover .button {
    background-color: #000000;
    border: 1px solid #e6e6e6;
}
.form-field.file:hover .button a {
    color: #e6e6e6;
}
/* CONTACTFORM STYLING */
form .form-subtitle {
    position: relative;
    margin-bottom: 25px;
}
form .form-subtitle p {
    font-size: 18px;
}
form .form-wrapper {
    position: relative;
}
form .form-wrapper:before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    width: 3px;
    height: 3px;
    background: black;
}
form .form-fields {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}
form label {
    position: absolute;
    top: 14px;
    cursor: auto;
    z-index: -1;
    line-height: normal;
    opacity: .4;

    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}
form .input-field.select select {
    color: rgba(255, 255, 255, 0.4);
    -webkit-appearance: none;
    -moz-appearance: none;
}
form .input-field.select select option {
    color: black;
}
form .input-field.select .select_arrow {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%) rotate(135deg);
}
form .input-field.select .select_arrow path {
    fill: #FFFFFF;
}
form .input-field.active label,
form .input-field.filled label,
form .input-field.filled-active label {
    top: -9px;
    font-size: 10px;
    margin-bottom: 0;
    color: white;
    z-index: 0;
    opacity: 1;
}
form.white .input-field.active label,
form.white .input-field.filled label,
form.white .input-field.filled-active label {
    color: black;
}
form .input-field {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
    width: 100%;
    height: 100%;
    min-height: 52px;
    border-bottom: 1px solid #ffffff;
    z-index: 1;

    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}
form.white .input-field {
    border-bottom: 1px solid black;
}
form .input-field:focus,
form .input-field input:focus,
form .input-field textarea:focus,
form .input-field select:focus {
    outline: none;
}
form .input-field input[type="file"] {
    padding-left: 0;
    -webkit-appearance: none;
}
form .input-field input[type="file"]::-webkit-file-upload-button {
    visibility: hidden;
}
form .input-field input[type="file"]:before {
    content: 'Bestand kiezen';
    display: inline-block;
    padding: 5px 15px;
    outline: none;
    white-space: nowrap;
    -webkit-user-select: none;
    cursor: pointer;
    font-weight: 500;
    font-size: 14px;
}
form .input-field input[type="checkbox"] {
    position: relative;
    -webkit-appearance: none;
    padding: 9px;
    width: 24px;
    height: 24px;
    border: 1px solid #312D2F;
}
form .input-field.AVG input[type="checkbox"] {
    display: inline-block;
    float: left;
    margin: -2.5px 15px 0 0;
    cursor: pointer;
    border: 1px solid #FFFFFF;
}
form .input-field input[type="checkbox"]:checked {
    color: #99a1a7;
}
form .input-field input[type="checkbox"]:after {
    content: '';
    position: absolute;
    width: 24px!important;
    height: 24px!important;
    top: -1px;
    left: -1px;
    background-color: transparent;

    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}
form .input-field input[type="checkbox"]:checked:after {
    background-color: white;
}
form .input-field input,
form .input-field textarea,
form .input-field select {
    border: none;
    padding: 15px 0;
    width: 100%;
    background: transparent;
}
form .input-field textarea {
    min-height: 150px;
}
form .input-field p {
    margin-bottom: 0;
}
form .submit_button {
    margin-top: 20px;
    cursor: pointer;
    border: 0;
    color: white;
}
form .submit_button:focus {
    outline: none;
}
form .input-field.AVG {
    border: none;
}
form .input-field.AVG label {
    display: inline-block;
    margin-top: 8px;
    position: relative;
    top: unset;
    left: 0;
    padding-left: 0;
    bottom: 0!important;
    cursor: pointer;
    margin-bottom: unset!important;
    font-size: 12px;
    z-index: 0;
    color: white;
}
form .button .form-button {
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: 65px 22px;
    padding-left: 20px;
}
form:before {
    content: '';
    top: 0;
    left: 0;
    width: 1px;
    height: 1px;
    position: absolute;
    background: black;
    z-index: 1;
}
form.white:before {
    background: white;
}
.button input {
    padding: 0 25px;
    -webkit-appearance: none;
    border: 0;
    background: none;
    color: white!important;
    height: 100%;
    width: 100%;
    cursor: pointer;
    outline: none;
}
.black input,
.black textarea {
    color: white;
}
.white input,
.white textarea {
    color: black;
}
/* post header & home header */
.post-header-wrapper,
.home-header-wrapper {
    position: relative;
    padding: 150px 0;
    background-size: cover;
    background-position: center center;
}
.post-header-wrapper,
.home-header-wrapper {
    color: #ffffff;
}
.post-header-wrapper {
    padding: 250px 0 25px 0;
}
.post-header h1 {
    font-size: 89px;
    line-height: 86px;
    color: black;
}

/* HOME HEADER */

.home-header-wrapper{
    height: 800px;
}
.home-header-wrapper .plate--container {
    height: 100%;
    z-index: 2;
}
.home-header-wrapper .line {
    background-image: url('/theme/assets/images/line.svg');
    background-position: bottom center;
    background-size: contain;
    background-repeat: repeat-x;
    width: 100%;
    height: 375px;
    position: absolute;
    z-index: 2;
    bottom: 35px;
}
.home-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: rgb(0,0,0);
    background: -moz-linear-gradient(15deg, rgba(0,0,0,1) 35%, rgba(255,255,255,0) 100%);
    background: -webkit-linear-gradient(15deg, rgba(0,0,0,1) 35%, rgba(255,255,255,0) 100%);
    background: linear-gradient(15deg, rgba(0,0,0,1) 35%, rgba(255,255,255,0) 100%);
    filter:progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#ffffff",GradientType=1);
    -webkit-filter:progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#ffffff",GradientType=1);
}

/*BLOKKEN WRAPPER*/

.blokken-wrapper,
.blokken-inner {
    position: relative;
}
.blokken-wrapper .blok {
    position: absolute;

    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid white;
    padding: 18px;
}
.blokken-wrapper .blok.opacity {
    border: 1px solid rgba(255,255,255, .2);
}
.blokken-wrapper .blok p {
    font-size: 18px;
    text-transform: capitalize;
    margin-bottom: 0;
}
.blokken-wrapper .blok:nth-child(1) {
    width: 78px;
    height: 78px;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);

    right: 492px;
    top: 95px;
}
.blokken-wrapper .blok:nth-child(2) {
    width: 131px;
    height: 131px;
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);

    right: 302px;
    top: 0;
}
.blokken-wrapper .blok:nth-child(3) {
    width: 113px;
    height: 113px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    right: 120px;
    top: 60px;
}
.blokken-wrapper .blok:nth-child(4) {
    width: 78px;
    height: 78px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);

    right: 0;
    top: 30px;
}
.blokken-wrapper .blok:nth-child(5) {
    width: 94px;
    height: 94px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    right: 376px;
    top: 188px;
}
.blokken-wrapper .blok.small {
    padding: 0;
}
.blokken-wrapper .small.one {
    width: 16px;
    height: 16px;
    right: 634px;
    top: 223px;
    border: 1px solid #0030DD;
    background-color: #0030DD;
}
.blokken-wrapper .small.two {
    width: 6px;
    height: 6px;
    right: 528px;
    top: 24px;
    background-color: white;
}
.blokken-wrapper .small.three {
    width: 16px;
    height: 16px;
    right: 279px;
    top: 168px;
}
.blokken-wrapper .small.four {
    width: 6px;
    height: 6px;
    right: 68px;
    top: 156px;

    border: 1px solid #0030DD;
    background-color: #0030DD;
}

/* CTA SECTIE */

.cta-wrapper {
    position: relative;
    width: 100%;
}
.cta-wrapper .cta-inner {
    position: relative;
    padding: 40px 50px;

    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
        align-items: center;
}
.cta-wrapper h3,
.cta-wrapper a {
    color: white;
}
.cta-wrapper a {
    font-size: 18px;
    line-height: 25px;

    border-bottom: 1px solid white;
    text-decoration: none;
}
.black .cta-wrapper {
    background: rgb(0,48,221);
    background: -moz-linear-gradient(90deg, rgba(0,48,221,0) 0%, rgba(0,48,221,1) 100%);
    background: -webkit-linear-gradient(90deg, rgba(0,48,221,0) 0%, rgba(0,48,221,1) 100%);
    background: linear-gradient(90deg, rgba(0,48,221,0) 0%, rgba(0,48,221,1) 100%);
    filter:progid:DXImageTransform.Microsoft.gradient(startColorstr="#0030dd",endColorstr="#0030dd",GradientType=1);
    -webkit-filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0030dd",endColorstr="#0030dd",GradientType=1);
}
.white .cta-wrapper {
    background: rgb(17,155,255);
    background: -moz-linear-gradient(90deg, rgba(17,155,255,1) 0%, rgba(0,48,221,1) 100%);
    background: -webkit-linear-gradient(90deg, rgba(17,155,255,1) 0%, rgba(0,48,221,1) 100%);
    background: linear-gradient(90deg, rgba(17,155,255,1) 0%, rgba(0,48,221,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#119bff",endColorstr="#0030dd",GradientType=1);
    -webkit-filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#119bff",endColorstr="#0030dd",GradientType=1);
}

/* post item */

.items-container{
    position: relative;
    margin-top: 35px;

    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row;
    flex-flow: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.items-container .blog-wrapper:nth-child(3n) {
    margin-right: 0;
}
.blog-wrapper {
    position: relative;
    width: 32%;
    margin-right: 2%;
    margin-bottom: 70px;
    overflow: hidden;

    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
}
.blog-wrapper .blog-image {
    position: relative;
    height: 200px;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    margin-bottom: 25px;
}
.blog-wrapper .blog-wrapper-inner {
    padding: 0 15px 0 0;
}
.blog-wrapper .blog-wrapper-inner .excerpt {
    margin-bottom: 18px;
}
.blog-wrapper .blog-wrapper-inner p {
    margin-bottom: 0;
    display: inline;
}
p.date {
    color: #0030DD;
}
.blog-wrapper .read-more p {
    border-bottom: 1px solid black;
    padding-bottom: 2px;
}

/* menu element */

ul.menu {
    padding: 0 0 0 20px;
}

/* section */

.section-content{
    position: relative;
    z-index: 2;
}

/* DIENST SECTION */

.black .title-wrapper,
.black .dienst-usp {
    color: white;
}
.white .title-wrapper,
.white .dienst-usp {
    color: black;
}
.title-wrapper {
    position: relative;
    margin-bottom: 35px;
}
.diensten-wrapper {
    justify-content: space-between;
}
.dienst-usp {
    position: relative;
    width: 30%;
    margin-bottom: 50px;
}
.dienst-usp .icon {
    position: relative;
    margin-bottom: 25px;
}
.dienst-usp .icon .icon-inner {
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 35px;
    height: 35px;
}

/*REFERENTIE SLIDER*/

.black .quote,
.black .naam-functie {
    color: white;
}
.white .quote,
.white .naam-functie {
    color: black;
}
.referentie-container {
    position: relative;
}
.referentie-container .title-wrapper {
    top: 40px;
    z-index: 1;
    position: absolute;
    margin-bottom: 0;
}
.referentie-slider {
    position: relative;
    height: 500px;
    width: 100%;
}
.referentie {
    width: 100%;
    height: 100%;
    padding-top: 80px;
    padding-bottom: 80px;
}
.referentie .bg-image {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}
.referentie .bg-image .bg-overlay {
    width: 101%;
    height: 100%;
    position: relative;
    left: -1px;
}
.black .referentie .bg-image .bg-overlay {
    background: rgb(0,0,0);
    background: -moz-linear-gradient(90deg, rgba(0,0,0,1) 40%, rgba(0,0,0,0) 100%);
    background: -webkit-linear-gradient(90deg, rgba(0,0,0,1) 40%, rgba(0,0,0,0) 100%);
    background: linear-gradient(90deg, rgba(0,0,0,1) 40%, rgba(0,0,0,0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#000000",GradientType=1);
}
.white .referentie .bg-image .bg-overlay {
    background: rgb(0,0,0);
    background: -moz-linear-gradient(90deg, rgba(255,255,255,1) 40%, rgba(0,0,0,0) 100%);
    background: -webkit-linear-gradient(90deg, rgba(255,255,255,1) 40%, rgba(0,0,0,0) 100%);
    background: linear-gradient(90deg, rgba(255,255,255,1) 40%, rgba(0,0,0,0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#000000",GradientType=1);
}
.referentie .quote,
.referentie .naam-functie {
    position: relative;
    z-index: 2;
}
.referentie .quote {
    max-width: 60%;
    margin-bottom: 40px;
}
.referentie .naam-functie p {
    margin-bottom: 0;
}
.slider-navigation {
    position: absolute;
    bottom: 30px;
}
.next-prev-slide {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}
.next-slide, .prev-slide {
    width: 53px;
    height: 53px;
    margin-right: 15px;
    cursor: pointer;
}
.next-slide .cls-1,
.prev-slide .cls-1 {
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}
.prev-slide {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}
.prev-slide:hover .cls-1 {
    fill: #0030DD!important;
}
.next-slide:hover .cls-1 {
    fill: #0030DD!important;
}
.white .next-slide .cls-1,
.white .prev-slide .cls-1 {
    fill: #E5E5E5;
}
.white .next-slide .cls-2,
.white .prev-slide .cls-2 {
    fill: white;
}
.referentie-slider .flickity-slider {
    -webkit-transform: none!important;
    -moz-transform: none!important;
    -ms-transform: none!important;
    -o-transform: none!important;
    transform: none!important;
}
.referentie-slider .referentie {
    left: 0 !important;
    opacity: 0;
    -webkit-transition: opacity .5s ease-in-out;
    -moz-transition: opacity .5s ease-in-out;
    -ms-transition: opacity .5s ease-in-out;
    -o-transition: opacity .5s ease-in-out;
    transition: opacity .5s ease-in-out;
    z-index: 0;
}
.referentie-slider .referentie.is-selected {
    opacity: 1;
    z-index: 0
}

/* SWITCHER SECTIE */

.tekst-switcher-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}
.tekst-switcher-wrapper .switcher-overzicht {
    position: relative;
    width: 100%;
}
.tekst-switcher-wrapper .switcher-titels,
.tekst-switcher-wrapper .switcher-info {
    position: relative;
    width: 50%;
    height: 100%;
}
.tekst-switcher-wrapper .switcher-titels {
    padding-right: 10%;
    margin-top: 30px;
}
.tekst-switcher-wrapper .switch-titel {
    display: flex;
    flex-direction: row;
}
.tekst-switcher-wrapper .switch-titel h5 a.switch-click {
    font-size: inherit;
    line-height: inherit;
    text-decoration: none;
    color: white;
}
.tekst-switcher-wrapper .switch-titel h5.count {
    color: white;
    min-width: 55px;

    -webkit-transition: all .1s ease;
    -moz-transition: all .1s ease;
    -ms-transition: all .1s ease;
    -o-transition: all .1s ease;
    transition: all .1s ease;
}
.tekst-switcher-wrapper .switch-titel.active h5.count {
    color: #0030DD;
}
.tekst-switcher-wrapper .switch-titel.active h5 a.switch-click {
    font-weight: 800;
}
.tekst-switcher-wrapper .switcher-overzicht .switcher-info .switch {
    position: absolute;
    padding-right: 15%;
    opacity: 0;
    color: white;

    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
    -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;
}
.tekst-switcher-wrapper .switcher-overzicht .switcher-info .switch.active {
    opacity: 1;
    -webkit-transform: translateY(0%);
    -ms-transform: translateY(0%);
    transform: translateY(0%);
}
.tekst-switcher-wrapper .switch-afbeelding {
    position: relative;
    width: 100%;
    height: 275px;
    margin-bottom: 30px;
}
.image-inner {
    position: relative;
    background-position: center left;
    background-repeat: no-repeat;
    background-size: contain;
    width: 100%;
    height: 100%;
}
.blog-header .image-inner {
    background-size: cover;
    max-height: 80%;
    min-height: 350px;
}

/*PRODUCTEN SECTIE*/

.producten-overflow {
    overflow: hidden;
}
.producten-overflow .title-wrapper {
    margin-bottom: 40px;
}
.producten-overflow .title-wrapper h2 {
    margin-bottom: 20px;
}
.producten-overflow .title-wrapper p {
    max-width: 640px;
}
.product-slider .flickity-viewport {
    overflow: visible;
}

/*PRODUCT CARD*/
.product-wrapper .full-link-btn {
    z-index: 3;
}
.product-wrapper {
    position: relative;
    width: 29%;
    margin-right: 5%;
    color: white;
    padding: 0 45px 35px 35px;
    border-radius: 10px;
    overflow: hidden;

    transform-style: preserve-3d;

    background: #151515;

    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}
.product-wrapper:hover {
    background: transparent;
}
.product-wrapper:before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    background: rgb(0,48,221);
    background: -moz-linear-gradient(214deg, rgba(0,48,221,1) 0%, rgba(0,48,221,0) 100%);
    background: -webkit-linear-gradient(214deg, rgba(0,48,221,1) 0%, rgba(0,48,221,0) 100%);
    background: linear-gradient(214deg, rgba(0,48,221,1) 0%, rgba(0,48,221,0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0030dd",endColorstr="#0030dd",GradientType=1);
    opacity: 0;

    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}
.product-wrapper:hover:before {
    opacity: 1;
}
.product-images {
    position: relative;
    z-index: 2;
    height: 235px;

    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;

    -webkit-perspective: 1000px;
    perspective: 1000px;

    transform-style: preserve-3d;
}
.product-images .icon {
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 100%;
    height: 99px;
    position: absolute;
    opacity: 0;

    -webkit-transform: translateZ(20px);
    -moz-transform: translateZ(20px);
    -ms-transform: translateZ(20px);
    -o-transform: translateZ(20px);
    transform: translateZ(20px);

    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}
.product-images .icon.blue-icon {
    opacity: 1;
}
.product-wrapper:hover .product-images .icon.blue-icon {
    opacity: 0;
}
.product-wrapper:hover .product-images .icon.white-icon {
    opacity: 1;
}
.product-wrapper-inner {
    position: relative;
    z-index: 2;
}
.product-wrapper-inner p {
    margin-bottom: 0;
}

/*BELVERZOEK SECTIE*/

.belverzoek-wrapper {
    border: 1px solid #0030DD;
    padding: 50px 50px 70px 50px;
}
.left, .right {
    width: 50%;
    position: relative;
}
.black .form-wrapper {
    color: white;
}
.white .form-wrapper {
    color: black;
}
.content.left h3 {
    margin-bottom: 25px;
}
.content {
    padding-right: 10%;
}

/*BLOG HEADER*/

.blog-header {
    position: relative;
    padding: 225px 10% 50px 10%;
}
.blog-header .title-wrapper {
    margin-bottom: 10px;
}
.blog-header .title-wrapper h1 {
    font-size: 36px;
    line-height: 40px;
    font-weight: 700;
    margin-bottom: 20px;
}
.blog-header .title-wrapper {
    margin-bottom: 10px;
}
.blog-header .date {
    margin-bottom: 50px;
}
.render-content {
    position: relative;
}
.meer-blogs {
    padding-top: 60px;
}

/*DIENST HEADER*/

.dienst-header {
    position: relative;
    padding-bottom: 100px;
}
.dienst-header .title-wrapper h2 {
    max-width: 480px;
}
.dienst-header .tekst {
    position: relative;
    -webkit-columns: 2;
    -moz-columns: 2;
    columns: 2;
    padding-right: 20%;
}

/*SIDEBAR*/
.body-container {
    position: relative;
    height: 100%;
    overflow: hidden;
}
.site-container {
    position: relative;
    width: 100%;
}
.page-wrapper {
    position: relative;
    width: 100%;
}
.sidebar {
    position: relative;
    width: 115px;
    background: #0030DD;
    right: 0;
}
.sidebar .sentence {
    position: relative;
    top: 0;
    height: 100vh;
}
.sidebar .sentence p {
    color: white;
    font-size: 18px;
    transform: rotate(-180deg);
    width: max-content;
    position: absolute;
    writing-mode: vertical-lr;
    margin: 0;
    right: 44px;
    padding-bottom: 50px;

    top: calc(50% - 35px);
    transform: translateY(-50%) rotate(-180deg);

    background: rgb(0,48,221);
    background: -moz-linear-gradient(0deg, rgba(0,48,221,0) 0%, rgba(0,48,221,1) 10%);
    background: -webkit-linear-gradient(0deg, rgba(0,48,221,0) 0%, rgba(0,48,221,1) 10%);
    background: linear-gradient(0deg, rgba(0,48,221,0) 0%, rgba(0,48,221,1) 10%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0030dd",endColorstr="#0030dd",GradientType=1);

}
/* footer */

.footer {
    padding: 160px 0 120px 0;
    position: relative;
}
.footer-container {
    position: relative;

    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}
.footer-column {
    position: relative;
    width: 30%;
}
.black .footer-column,
.black .footer-scroll-up,
.black .copyright {
    color: white;
}
.white .footer-column,
.white .footer-scroll-up,
.white .copyright {
    color: black;
}
.footer a {
    color: inherit;
}
.footer-scroll-up {
    margin-top: -5px;
}
.footer-scroll-up h5 {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: .18px;
}
.footer-item {
    line-height: 19px;
    margin-bottom: 5px;
}
.footer-item p,
.footer-item a {
    margin-bottom: 0;
}
.footer-column a {
    border-bottom: 1px solid;
    padding-bottom: 2px;
    text-decoration: none;
}
.copyright {
    margin-top: 60px;
}
.copyright p,
.navbar-text p {
    font-family: 'HelveticaNowText';
    font-size: 11px;
    line-height: 18px;
    margin-bottom: 0;
    font-weight: 500;
}
.navbar-text p {
    position: absolute;
    bottom: 14px;
    margin-bottom: 0;
}
.black .navbar-text p {
    color: white;
}
.white .navbar-text p {
    color: black;
}
.footer .back-to-top {
    color: #0030DD;
    font-size: 18px;
    font-weight: 800;
    line-height: 30px;
    letter-spacing: 0.18px;
    text-decoration: none;
    border-bottom: 1px solid;
    padding-bottom: 4px;
}

@media screen and (max-width: 1400px){

}

@media screen and (max-width: 1024px) {
    /* menu */
    .navbar-collapse .navbar-nav {
        flex-flow: column;
    }
    .dropdown-menu{
        display: block;
        background: #ffffff00;
        border: 0;
        border-radius: 0;
        margin: 0;
        padding: 0;
    }
    .product-wrapper {
        width: 40%;
    }
    h1 {
        font-size: 50px;
        line-height: 28px;
    }
    h2 {
        font-size: 30px;
        line-height: 34px;
    }
    h3 {
        font-size: 30px;
        line-height: 34px;
    }  
    .dienst-usp {
        width: 45%;
    }
    .blokken-wrapper {
        margin-top: 30px;
    }
    .cta-wrapper .cta-inner {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;

        padding: 40px 30px 40px 30px;
    }
    .cta-wrapper a {
        margin-top: 25px;
    }
    .tekst-switcher-wrapper .switcher-titels,
     .tekst-switcher-wrapper .switcher-info {
        width: 100%;
    }
    .tekst-switcher-wrapper .switcher-info {
        margin-top: 40px;
    }
    .tekst-switcher-wrapper .switcher-overzicht {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    }
    .tekst-switcher-wrapper .switcher-overzicht .switcher-info .switch {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;

        padding-right: 0;
    }
    .tekst-switcher-wrapper .switch-afbeelding {
        height: 175px;
        margin-bottom: 0;
        margin-right: 30px;
    }
    .belverzoek-wrapper, .footer-container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    }
    .left, .right {
        width: 100%;
    }
    .footer-column {
        width: 100%;
        margin-bottom: 30px;
    }
    .home-header-wrapper .line {
        width: 200%;
    }
    .sidebar {
        display: none;
    }
    .post-header-wrapper {
        padding: 180px 0 25px 0;
    }
    .dienst-header .tekst {
        -webkit-columns: 1;
        -moz-columns: 1;
        columns: 1;
        padding-right: 0;
    }
    .navbar-text {
        display: none;
    }
    #navigation {
        height: 100px;
    }
    .navbar-brand {
        height: 60px;
        margin-right: 0;
    }
    .footer {
        padding: 80px 0 80px 0;
    }
    .post-header h1 {
        font-size: 69px;
        line-height: 66px;
        color: black;
    }
    .navbar-collapse {
        width: 100%;
        padding: 150px 10% 150px 10%;
    }
    .items-container .blog-wrapper:nth-child(3n) {
        margin-right: 2%;
    }
    .items-container .blog-wrapper:nth-child(2n) {
        margin-right: 0;
    }
    .blog-wrapper {
        width: 49%;
        margin-bottom: 50px;
    }
}
@media screen and (max-width: 767px) {
    .product-wrapper {
        width: 60%;
    }
    .belverzoek-wrapper {
        padding: 30px 30px 50px 30px;
    }
    br {
        display: none;
    }
    .home-header-wrapper {
        height: 700px;
        padding: 120px 0;
    }
    .blokken-wrapper .blok p {
        font-size: 12px;
    }
    .blokken-wrapper .blok:nth-child(1) {
        width: 48px;
        height: 48px;

        left: 0;
        right: unset;
        top: 95px;
    }
    .blokken-wrapper .blok:nth-child(2) {
        width: 85px;
        height: 85px;

        left: 30%;
        right: unset;
        top: 0;
    }
    .blokken-wrapper .blok:nth-child(3) {
        width: 83px;
        height: 83px;

        top: 130px;
        right: 19%;
    }
    .blokken-wrapper .blok:nth-child(4) {
        width: 58px;
        height: 58px;

        right: 0;
        top: 30px;
    }
    .blokken-wrapper .blok:nth-child(5) {
        width: 64px;
        height: 64px;

        left: 20%;
        right: unset;
        top: 188px;
    }
    .blokken-wrapper .small.one {
        right: unset;
        left: 2%;
        top: 223px;
    }
    .blokken-wrapper .small.two {
        right: unset;
        left: 17%;
        top: 20px;
    }
    .blokken-wrapper .small.three {
        left: 30%;
        top: 135px;
    }
    .blokken-wrapper .small.four {
        right: 10%;
    }
    .blog-header .image-inner {
        min-height: 250px;
    }
}
@media screen and (max-width: 600px) {
    
    .home-header-wrapper h1 {
        font-size: 40px;
        line-height: 12px;
    }
    .dienst-usp {
        width: 100%;
        margin-bottom: 30px;
    }
    .navbar-brand{
        max-width: 50%;
    }

    .item-wrapper {
        width: 100%;
        margin-right: 0;
        margin-bottom: 30px;
    }
    .referentie .quote {
        max-width: 90%;
    }
    .product-wrapper {
        width: 80%;
    }
    .belverzoek-wrapper form .submit_button {
        width: 100%;
    }
    .navbar-nav .nav-link {
        line-height: 50px;
    }
    .blokken-wrapper {
        margin-top: 10px;
    }
    .blog-wrapper {
        width: 100%;
        margin-right: 0!important;
    }
}
.form-input__label--radio {
    display: block;
    top: 0;
    cursor: default;
    margin-right: 30px;
    position: relative;
    padding-left: 45px;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    line-height: 33px;
  }
  
  .form-input__label--radio .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 31px;
    width: 31px;
    background-color: #fff;
    border: 1px solid #E2E5E5;
  }
  
  .form-input__label--radio .checkmark:after {
    content: "";
    position: absolute;
    display: none;
    top: 8px;
    left: 8px;
    width: 14px;
    height: 14px;
    background: #000;
  }
  
  .form-input__label--radio .checkmark {
    border-radius: 50%;
  }
  
  .form-input__label--radio .checkmark:after {
    border-radius: 50%;
  }
  .form-input__radio {
    position: absolute;
    opacity: 0;
    cursor: pointer;
  }
  
  .form-input__radio:checked ~ .checkmark {
    background-color: #fff;
    border-color: #000;
  }
  
  .form-input__radio:checked ~ .checkmark:after {
    display: block;
  }
  input[type=checkbox],
input[type=radio] {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0
}
input[type=checkbox],
input[type=radio] {
    position: absolute;
    visibility: hidden
}

input[type=checkbox] + label,
input[type=radio] + label {
    position: relative;
    color: #000
}

input[type=checkbox] + label:after,
input[type=checkbox] + label:before,
input[type=radio] + label:after,
input[type=radio] + label:before {
    border: 2px solid #000;
    border-radius: 50%;
    content: "";
    display: inline-block;
    height: 1.25rem;
    margin-right: .5rem;
    position: relative;
    top: .25rem;
    width: 1.25rem
}

input[type=checkbox] + label:after,
input[type=radio] + label:after {
    border: none;
    height: .625rem;
    position: absolute;
    top: .55rem;
    left: .325rem;
    width: .625rem
}

input[type=checkbox]:checked + label:after,
input[type=radio]:checked + label:after {
    background-color: #000
}
