h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
}
h1 {
    font-size: 60px;
    line-height: 72px;
    font-weight: 700;
}
h2 {
    font-size: 48px;
    line-height: 64px;
    font-weight: 700;
}
h3 {
    font-size: 32px;
    line-height: 40px;
    font-weight: 700;
}
h4 {
    font-size: 32px;
    line-height: 48px;
    font-weight: 400;
    font-family: 'Sriracha', cursive;
}
h5 {
    font-size: 24px;
    line-height: 42px;
    font-weight: 400;
    font-family: 'Sriracha', cursive;
    color: #25CC78;
}
h6 {
    font-size: 20px;
    line-height: 24px;
    font-weight: 700;
}
p, a, span, select, li, td, th, option, form input, b, ul, textarea, label, button, input {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 40px;
}
p a {
    font-size: inherit;
    color: inherit;
    text-decoration: underline;
}
p u {
    position: relative;
    text-decoration: none;
    display: inline-flex;
    flex-direction: column;
}
p u:before {
    content: '';
    position: absolute;
    bottom: -5px;
    height: 20px;
    width: 100%;
    background: #182434;
    z-index: 1;
    left: 0;
    transition: left 2s cubic-bezier(0.45, 0.65, 0.05, 1);
}
.cta-wrapper .tekst.in-view p u:before {
    left: 100%;
    transition-delay: .4s;
}
p u:after {
    content: url('data:image/svg+xml; utf8, <svg xmlns="http://www.w3.org/2000/svg" width="215.284" height="8.192" viewBox="0 0 215.284 8.192"><g id="Grou_431" data-name="Group 431" transform="translate(-467.403 -450.908)"><path id="Path_499" data-name="Path 499" d="M469.524,454.893c5.7,5.585,19.027,1.224,21.438,1.141s4.616-1.507,6.714-2.893c-.062,3.413,4.4,3.2,7.216,2.265,9.048-3,18.626.129,27.972,1.376,13.617,1.816,27.355-.425,41-1.888,31.861-3.416,63.931-2.586,95.918-1.754" fill="none" stroke="%2325cc78" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="3"/><path id="Path_500" data-name="Path 500" d="M658,453" transform="translate(11.785 1.296)" fill="none" stroke="%2325cc78" stroke-linecap="round" stroke-miterlimit="10" stroke-width="3"/><path id="Path_501" data-name="Path 501" d="M666,453" transform="translate(16.687 1.296)" fill="none" stroke="%2325cc78" stroke-linecap="round" stroke-miterlimit="10" stroke-width="3"/></g></svg>');
    height: 10px;
    width: 100%;
    position: relative;
    top: -30px;
    left: 2px;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}
/*SMOOTH SCROLL STYLING*/
html, body {
    width: 100vw;
    height: 100vh;
}

::-webkit-scrollbar {
    display: none;
}
#js-scroll {
    position: relative;
    overflow: hidden;
}
html.has-scroll-smooth {
    overflow: hidden; }
html.has-scroll-dragging {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
.has-scroll-smooth body {
    overflow: hidden;
}
.c-scrollbar {
    position: absolute;
    right: 0;
    top: 0;
    width: 11px;
    height: 100vh;
    transform-origin: center right;
    transition: transform 0.3s, opacity 0.3s;
    opacity: 0;
    z-index: 99;}
.c-scrollbar:hover {
    transform: scaleX(1.45); }
.c-scrollbar:hover, .has-scroll-scrolling .c-scrollbar, .has-scroll-dragging .c-scrollbar {
    opacity: 1; }
.c-scrollbar_thumb {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #25CC78;
    opacity: 0.5;
    width: 7px;
    border-radius: 10px;
    margin: 2px;
    cursor: -webkit-grab;
    cursor: grab; }
.has-scroll-dragging .c-scrollbar_thumb {
    cursor: -webkit-grabbing;
    cursor: grabbing;
}
html {
    scroll-behavior: smooth;
}
:focus {
    outline: none;
}
.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 {
    width: 100%;
    max-width: unset;
    padding-left: 14%;
    padding-right: 14%;
}
.small-container .plate--container {
    padding-left: 18.5%;
    padding-right: 18.5%;
}
.section-container {
    position: relative;
    width: 100%;
}
.render-content {
    position: relative;
}
.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 {
    position: fixed;
    width: 100%;
    z-index: 99;
    padding: 50px 80px 20px 80px;
    background-color: transparent;

    -webkit-transition: background-color .3s ease, padding .3s ease;
    -moz-transition: background-color .3s ease, padding .3s ease;
    -ms-transition: background-color .3s ease, padding .3s ease;
    -o-transition: background-color .3s ease, padding .3s ease;
    transition: background-color .3s ease, padding .3s ease;
}
.fixed-header {
    background-color: white;
    padding: 20px 80px 20px 80px;
}
nav.navbar {
    position: relative;
    height: 100%;
    padding: 0;
    display: flex;
    flex-flow: row;
}
.navbar-inner{
    position: relative;

    display: flex;
    justify-content: space-between;
}
.navbar-brand {
    position: relative;
    margin-right: 30px;
    height: 100%;
    padding-top: 0;
    padding-bottom: 0;
    z-index: 99;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.navbar-brand img {
    max-height: 100%;
    width: 260px;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;

    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}
.navbar-brand img.home-logo {
    position: absolute;
    left: 0;
    top: 1px;
    opacity: 0;
}
.fixed-header .home .navbar-brand img {
    opacity: 0;
}
.fixed-header .home .navbar-brand img.home-logo {
    opacity: 1;
}
.navbar-collapse {
    position: relative;
    width: 100%;
}
.navbar-toggler {
    display: none;
    z-index: 5;
    position: relative;
    right: 0;
    top: 0;
    padding: 0;
    cursor: pointer;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}
.navbar-toggler:focus {
    outline: none;
}
.dropdown-menu.active {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    float: none;
    min-width: 100px;
    padding: 10px 0;
    margin: 0 0 0 0;
    background-color: #fff;
    border: 1px solid #007bff;
    border-radius: .25rem;
}
.dropdown-item {
    display: block;
    width: 100%;
    padding: 5px 15px;
    clear: both;
    font-weight: 400;
    color: #007bff;
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
}
.dropdown-item:focus, .dropdown-item:hover {
    color: rgba(0, 123, 255, 0.84);
    text-decoration: none;
    background-color: #ffffff;
}
.bars {
    position: relative;
    height: auto;
    width: 35px;
}
.bar {
    width: 100%;
    height: 3px;
    background: #25cc78;
    margin-bottom: 5px;

    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}
.bar.bar-3{
    margin-bottom: 0;
}
.fixed-header .bar {
    background: #25CC78!important;
}
.home .bar {
    background: white;
}
.menu-open .bars{
    margin: 0;
}
.menu-open .bar-1 {
    transform: rotate(45deg);
}
.menu-open .bar-3 {
    transform: rotate(-45deg);
    margin-top: -16px;
}
.menu-open .bar-2{
    opacity: 0;
}
ul.navbar-nav {
    position: relative;
    width: 100%;

    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row;
    flex-flow: row;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
ul.navbar-nav li {
    padding-right: 48px;
}
ul.navbar-nav li.last {
    padding-right: 0;
    overflow: hidden;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%);
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%);
}
.nav-item {
    position: relative;
}
.nav-item .nav-link {
    position: relative;
    color: white;
    font-size: 16px;
    line-height: 18px;
    font-weight: 700;

    -webkit-transition: all .3s ease,  left .5s cubic-bezier(0, 0, 0.3, 1);
    -moz-transition: all .3s ease,  left .5s cubic-bezier(0, 0, 0.3, 1);
    -ms-transition: all .3s ease,  left .5s cubic-bezier(0, 0, 0.3, 1);
    -o-transition: all .3s ease,  left .5s cubic-bezier(0, 0, 0.3, 1);
    transition: all .3s ease,  left .5s cubic-bezier(0, 0, 0.3, 1);
}
.nav-item:hover .nav-link,
.nav-item.active .nav-link {
    color: #25CC78!important;
}
.fixed-header .nav-item .nav-link {
    color: black;
}
.navigation.green .nav-item .nav-link {
    color: black;
}
.nav-item.last {
    background-color: #22B76C;
}
.nav-item.last .nav-link {
    padding: 15px 20px;
    color: white!important;
    z-index: 1;
}

/* BUTTONS */
.button {
    position: relative;
    min-width: 170px;
    height: 64px;
    overflow: hidden;
    display: inline-block;
    cursor: pointer;
    background-color: #22B76C;
    backface-visibility: hidden;

    -webkit-clip-path: polygon(0 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%);
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 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;
}
.button:after,
ul.navbar-nav li.last:after {
    content: "";
    position: absolute;
    height: 450%;
    left: 50%;
    top: 50%;
    width: 150%;
    z-index: 0;

    background-color: #25CC78;
    -moz-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
    -ms-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
    -webkit-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
    transform: translateX(-50%) translateY(-50%) rotate(-45deg);

    -webkit-transition: all 0.75s ease 0s;
    -moz-transition: all 0.75s ease 0s;
    -o-transition: all 0.75s ease 0s;
    transition: all 0.75s ease 0s;
}
ul.navbar-nav li.last:after {
    z-index: 0;
}
ul.navbar-nav li.last:hover:after {
    height: 0;
}
.button input {
    -webkit-appearance: none;
    border: 0;
    background: none;
    color: white;
    height: 100%;
    width: 100%;
    cursor: pointer;
    outline: none;
    padding: 23px 30px 23px 30px;
}
.button a {
    position: relative;
    font-size: 16px;
    line-height: 20px;
    font-weight: 700;
    text-transform: uppercase;
    width: 100%;
    height: 100%;
    z-index: 1;
    min-width: 170px;
    text-align: center;
    display: inline-block;
    color: #FFFFFF;
    text-decoration: none;
    padding: 23px 30px 23px 30px;
}
.button:hover:after {
    height: 0;
}
.paragraph.max-width-content {
    width: 100%;
    max-width: 920px;
}
.paragraph ul {
    padding-left: 24px;
}
.paragraph ul {
    list-style: none; /* Remove default bullets */
}

.paragraph ul li::before {
    content: "\2022";
    color: #25CC78;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

/* CONTACTFORM STYLING */

.form-field {
    display: block;
    position: relative;
    z-index: 3;
    width: 100%;
}

.form-field--is-active .form-field__control::after {
    color: #000;
    opacity: .8;
    -webkit-transform: scaleX(150);
    -ms-transform: scaleX(150);
    transform: scaleX(150);
}

.form-field--is-active .form-field__label {
    color: #000;
    opacity: .8;
    font-size: 11px;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
}

.form-field--is-filled .form-field__label {
    font-size: 11px;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
}

.form-field-container .form-field--is-active .form-field__control::after {
    -webkit-transform: scaleX(150);
    -ms-transform: scaleX(150);
    transform: scaleX(150);
}

.form-field-container .form-field--is-active .form-field__label {
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
}

.form-field-container .form-field--is-filled .form-field__label {
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
}

.form-field__label {
    display: block;
    font-size: unset;
    font-weight: unset;
    font-family: unset;
    left: 0;
    margin: 0;
    padding: 0;
    position: absolute;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    width: 100%;
    z-index: -1;
    color: unset;
    opacity: .5;
}
.form-field_check_label {
    position: relative;
    margin-bottom: 5px!important;

    display: flex;
    align-items: center;
}
.form-field_check_label span {
    margin-left: 10px;
}
.form-field__control {
    background: #eee;
    border-radius: 8px 8px 0 0;
    overflow: hidden;
    position: relative;
    width: 100%;
}
.form-field__control::after {
    border-bottom: 2px solid rgba(69, 87, 96, 0.48);
    bottom: 0;
    content: "";
    display: block;
    left: 0;
    margin: 0 auto;
    position: absolute;
    right: 0;
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    width: 1%;
}
.form-field__input,
.form-field__textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: 0;
    color: #182434;
    background: rgba(224, 224, 224, .25);
    display: block;
    margin-bottom: 20px;
    outline: 0;
    width: 100%;
    z-index: 2;
    font-size: 16px;
    padding: 12px 30px;
}
.form-field-container {
    position: relative;
    overflow: hidden;
    display: inline-block;
    width: 100%;
}
.form-field-container label {
    position: relative;
    margin-bottom: 10px;
}
.form-field-container input{
    margin-top: 0;
}
.form-field.first label {
    display: block;
}
.form-field.select select{
    padding: 5px;
    border: 1px solid #333333;
}
input[type="text"],
input[type="file"],
input[type="button"],
input[type="submit"] {
    -webkit-appearance: none;
    border-radius: 0;
}
.form-field input[type="file"] {
    padding-left: 0;
    -webkit-appearance: none;
}
.form-field input[type="file"]::-webkit-file-upload-button {
    visibility: hidden;
}
.form-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-field input[type="checkbox"] {
    position: relative;
    -webkit-appearance: none;
    padding: 9px;
    width: 20px;
    height: 20px;
    border: 1px solid #333333;
}
.form-field input[type="checkbox"]:checked {
    color: #99a1a7;
}
.form-field input[type="checkbox"]:after {
    content: '';
    position: absolute;
    width: 20px!important;
    height: 20px!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-field input[type="checkbox"]:checked:after {
    background-color: #333333;
}
.form-field input[type="radio"] {
    position: relative;
    -webkit-appearance: none;
    padding: 9px;
    width: 20px;
    height: 20px;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    border: 1px solid #333333;
}
.form-field input[type="radio"]:checked {
    color: #99a1a7;
}
.form-field input[type="radio"]:after {
    content: '';
    position: absolute;
    width: 20px!important;
    height: 20px!important;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    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-field input[type="radio"]:checked:after {
    background-color: #333333;
}
textarea {
    height: 200px;
    min-height: 100px;
    max-height: 350px;
}
input.form-submit {
    background: transparent;
    border: none;
}
.submit-form-btn {
    position: relative;
    display: inline-block;
    padding: 0;
    border: none;
    color: white;
}
.submit-form-btn input {
    width: 100%;
    font-size: 16px;
    line-height: unset;
    letter-spacing: unset;
    font-weight: 700;
    text-transform: uppercase;
    padding: 20px 30px 20px 30px;
}
::-webkit-input-placeholder { /* Chrome/Opera/Safari */
    color: #182434;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}
::-moz-placeholder { /* Firefox 19+ */
    color: #182434;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}
:-ms-input-placeholder { /* IE 10+ */
    color: #182434;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}
:-moz-placeholder { /* Firefox 18- */
    color: #182434;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}
input:focus::placeholder,
textarea:focus::placeholder {
    color: #D3D3D3;
}

/*HOME HEADER*/

.home-header-wrapper {
    position: relative;
    height: 900px;
    overflow: hidden;
    background-color: #182434;
    padding: 100px 0;
    -webkit-background-size: cover;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}
.home-header-inner {
    width: 100%;
    padding-left: 9.5%;
    padding-right: 9.5%;
    position: relative;
}
.home-header-wrapper .content-wrapper {
    position: relative;
    width: 45%;
    padding-right: 4%;
    z-index: 1;
}
.home-header-wrapper .afbeelding-wrapper {
    position: relative;
    width: 55%;
    z-index: 2;
}
.home-header-wrapper .title-container {
    color: white;
    margin-bottom: 22px;
}
.home-header-wrapper .intro {
    color: white;
    max-width: 550px;
}
.home-header-wrapper .intro p {
    max-width: 375px;
    line-height: 32px;
    font-family: 'Sriracha', cursive;
    font-size: 20px;
}
.home-header-wrapper .button {
    margin-top: 5px;
}
.home-header-wrapper .image {
    position: absolute;
    overflow: hidden;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-shadow: 0 12px 48px #0000003D;
    -moz-box-shadow: 0 12px 48px #0000003D;
    box-shadow: 0 12px 48px #0000003D;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% calc(100% - 30px), calc(100% - 30px) 100%, 0 100%);
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 30px), calc(100% - 30px) 100%, 0 100%);
}
.home-header-wrapper .image.horizontal {
    width: 480px;
    height: 340px;
    z-index: 1;
    right: 260px;
}
.home-header-wrapper .image.vertical {
    width: 360px;
    height: 480px;
    right: 0;
}
.home-header-wrapper .image img {
    width: 120%;
    height: 120%;
    object-fit: cover;
    -o-object-fit: cover;
}
.squares-bg {
    position: absolute;
    width: 60%;
    height: 100%;
    top: -140px;
    right: -220px;
    z-index: 0;
    transform: rotate(45deg);
    background: rgb(17,28,43);
    background: -moz-linear-gradient(78deg, rgba(17,28,43,1) 0%, transparent 100%);
    background: -webkit-linear-gradient(78deg, rgba(17,28,43,1) 0%, transparent 100%);
    background: linear-gradient(78deg, rgba(17,28,43,1) 0%, transparent 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#111c2b",endColorstr="transparent",GradientType=1);
}
.home-header-wrapper .squares-bg:after {
    content: url("/theme/assets/images/squares.svg");
    height: auto;
    width: 100%;
    position: absolute;
    transform: rotate(-45deg);
    top: 80px;
    right: 30px;
}
.squares:before {
    content: url("/theme/assets/images/squares.svg");
    height: auto;
    width: auto;
    position: absolute;
    transform: rotate(0);
    top: -285px;
    right: unset;
    left: -890px;
    z-index: -1;
}
.header-arrow {
    position: absolute;
    top: 675px;
    z-index: 2;
    right: 21.5%;
}

/*POST HEADER*/

.post-header-wrapper {
    position: relative;
    padding-top: 290px;
    padding-bottom: 160px;
}
.post-header-wrapper.no-padding-bottom {
    padding-bottom: 0;
}
.post-header-wrapper .title-wrapper {
    margin-bottom: 90px;
    z-index: 2;
}
.title-wrapper {
    position: relative;
    margin-bottom: 25px;
}
.title-wrapper .subtitel p {
    margin-bottom: 10px;
    font-size: 20px;
    font-family: 'Sriracha', cursive;
    line-height: 24px;
    color: #25CC78;
}
.post-header-wrapper.squares:before {
    z-index: 1!important;
    top: 130px!important;
    right: -415px!important;
    width: auto!important;
    clip-path: none!important;
    transform: none!important;
}
.post-header-afbeelding {
    position: relative;
    height: 600px;
    z-index: 1;
}
.post-header-afbeelding .image {
    position: absolute;
    overflow: hidden;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}
.post-header-afbeelding .image img {
    width: 120%;
    height: 120%;
    object-fit: cover;
    -o-object-fit: cover;
}
p.kolom-kopje {
    font-family: 'Sriracha', cursive;
    font-size: 20px;
    line-height: 42px;
    margin-bottom: 0;
    color: #25CC78;
}
.footer-kolom-inner {
    position: relative;
}
.footer-kolom-inner a {
    font-size: 20px;
    line-height: 40px;
    font-weight: 700;
    color: #000000;
    padding-right: 22px;
    display: inline-block;
    text-decoration: none;
}
.rechts .footer-kolom-inner.boven {
    margin-bottom: 40px;
}
.email, .tel {
    position: relative;
}
.rechts .footer-kolom-inner.boven a {
    display: inline-block;
    text-decoration: none;
    position: relative;
    padding-right: 0;
    overflow: hidden;
}
.contact-column .link {
    position: relative;
    display: inline-block;
    overflow: hidden;
}
.rechts .footer-kolom-inner.boven a:before,
.download a:before,
.contact-column .link a:before {
    content: '';
    height: 2px;
    background: #B3EDD0;
    width: 100%;
    display: block;
    position: absolute;
    bottom: 5px;
    right: 0;

    -webkit-transition: all .7s ease-in-out;
    -moz-transition: all .7s ease-in-out;
    -ms-transition: all .7s ease-in-out;
    -o-transition: all .7s ease-in-out;
    transition: all .7s ease-in-out;
}
.rechts .footer-kolom-inner.boven a:hover:before,
.download a:hover:before,
.contact-column .link a:hover:before {
    right: -200%;
}
.rechts .footer-kolom-inner.boven a:after,
.download a:after,
.contact-column .link a:after {
    content: '';
    position: absolute;
    bottom: 5px;
    height: 2px;
    width: 100%;
    right: unset;
    left: -200%;
    background: #B3EDD0;
    z-index: 0;

    -webkit-transition: all .7s ease-in-out;
    -moz-transition: all .7s ease-in-out;
    -ms-transition: all .7s ease-in-out;
    -o-transition: all .7s ease-in-out;
    transition: all .7s ease-in-out;
}
.rechts .footer-kolom-inner.boven a:hover:after,
.download a:hover:after,
.contact-column .link a:hover:after {
    right: auto;
    left: 0;
}
.contact-column .link a:before,
.contact-column .link a:after {
    background: rgba(37, 204, 120, .2);
}
.rechts .footer-kolom-inner.onder a {
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}
.rechts .footer-kolom-inner.onder a:hover {
    color: #25CC78;
}
.adres p {
    color: rgba(24, 36, 52, .5);
    font-size: 20px;
    margin-bottom: 0;
}
.footer-kolom-inner.onder {
    margin-bottom: 14px;
}

/*CASE ITEM*/

.cases-wrapper {
    position: relative;
    padding-top: 200px;
    padding-bottom: 230px;
}
.items-container {
    position: relative;
    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;
    justify-content: space-between;
    margin-top: 50px;
    z-index: 2;
}
.items-container.cases {
    padding-bottom: 100px;
}
.items-container .case-wrapper:nth-child(2n) {
    margin-right: 0;
}
.items-container .item-column {
    width: 47%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.item-column .case-wrapper {
    width: 100%;
    margin-right: 0;
}
.case-wrapper {
    position: relative;
    width: 47%;
    height: 750px;
    margin-right: 6%;
    margin-bottom: 160px;
    overflow: hidden;

    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}
.case-wrapper:hover{

}
.case-wrapper .case-wrapper-inner{
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 60px 80px;
    color: white;
    z-index: 1;
}
.case-wrapper .case-wrapper-inner .titel h3 {
    font-size: 40px;
    line-height: 48px;
    margin-bottom: 0;
}
.case-wrapper .case-wrapper-inner .ondertitel p {
    margin-bottom: 0;
    font-family: 'Sriracha', cursive;
    line-height: 24px;
}
.case-wrapper .case-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
}
.case-image:before {
    content: '';
    background: transparent linear-gradient(180deg, transparent 0%, #000000 100%) 0 0 no-repeat padding-box;
    z-index: 1;
    width: 100%;
    height: 50%;
    position: absolute;
    bottom: 0;
    opacity: .5;

    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -ms-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}
.go-to-case {
    position: absolute;
    width: 130px;
    height: 130px;
    right: -95px;
    bottom: -95px;
    transform: rotate(45deg);
    z-index: 2;
    background: white;
    backface-visibility: hidden;

    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -ms-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}
.case-wrapper svg {
    position: absolute;
    right: 20px;
    bottom: 20px;
    opacity: 0;
    z-index: 1;
    visibility: hidden;

    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -ms-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
}
.case-wrapper svg path {
    fill: #25CC78;
}
.case-wrapper .case-image img {
    width: 120%;
    height: 120%;
    -o-object-fit: cover;
    object-fit: cover;
}
.case-wrapper:hover .go-to-case {
    right: -65px;
    bottom: -65px;
}
.case-wrapper:hover svg {
    opacity: 1;
    z-index: 2;
    visibility: visible;
    transition-delay: .05s
}
.case-wrapper:hover .case-image:before {
    height: 75%;
}
.read-more {
    position: relative;
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    height: 90px;
    width: auto;
    margin-right: 15px;
}
.read-more svg {
    position: absolute;
    right: 24px;
    top: 38px;
}
.read-more svg path {
    fill: white;

    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}
.square {
    width: 63px;
    height: 63px;
    background: #25CC78;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    margin-left: 30px;

    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}
.read-more p {
    font-family: 'Sriracha', cursive;
    font-size: 24px;
    line-height: 24px;
    margin-bottom: 0;
    letter-spacing: -0.24px;
}
.read-more:hover .square,
.slide-btn:hover .square {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}
.prev-slide:hover .square {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-135deg);
}
.prev-slide svg {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}
.titel-knop-wrapper {
    position: relative;
    text-align: center;
}
.titel-knop-wrapper .titel {
    margin-bottom: 30px;
}
.titel-knop-wrapper .titel h2 {
    font-size: 60px;
    line-height: 80px;
}
.titel-knop-wrapper .button {
    margin-left: -7.5px;
}
/*PIJL*/
.arrow {
    z-index: 3;
}
.arrow.bottom_left {
    padding-left: 18%;
    position: absolute;
    bottom: -110px;
}
.arrow.bottom_right {
    padding-right: 18%;
    position: absolute;
    bottom: -110px;
    right: 0;
}
.arrow.top_left {
    padding-left: 18%;
    position: absolute;
    top: -110px;
}
.arrow.top_right {
    padding-right: 18%;
    position: absolute;
    top: -110px;
    right: 0;
}
.arrow.top_right svg,
.arrow.bottom_right svg {
    transform: rotateY(180deg);
}
.squares.left:before {
    top: -315px;
    right: unset;
    left: -560px;
}
.squares.right:before {
    top: -315px;
    left: unset;
    right: -460px;
    transform: rotateY(180deg);
}

/*UITGELICHT ITEM*/

.uitgelicht-wrapper {
    position: relative;
    width: 100%;
}
.uitgelicht-wrapper .content {
    position: relative;
    width: 40%;
}
.uitgelicht-wrapper .content .content-inner {
    position: relative;
    background: white;
    z-index: 1;
    width: calc(100% + 50px);
    padding: 50px 80px 50px 60px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.12);
}
.uitgelicht-wrapper .content-inner .read-more {
    position: absolute;
    right: -47px;
    top: 50%;
    transform: translateY(-50%);
}
.uitgelicht-wrapper .afbeelding {
    width: 60%;
    height: 600px;
    overflow: hidden;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% calc(100% - 30px), calc(100% - 30px) 100%, 0 100%);
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 30px), calc(100% - 30px) 100%, 0 100%);

    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.uitgelicht-wrapper .afbeelding img {
    height: 120%;
    width: 120%;
    -o-object-fit: cover;
    object-fit: cover;
}
.uitgelicht-wrapper .tekst p {
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 0;
}

/*RECENSIE SLIDER*/

.recensie-images .swiper-slide {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.uitgelicht-wrapper.recensie .swiper-wrapper{
}
.uitgelicht-wrapper.recensie .afbeelding img {
    height: 120%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

/*LOGOS*/

.logo-wrapper {
    position: relative;
    width: 100%;
}
.logo-wrapper .logo {
    position: relative;
    width: 15%;
    margin-right: 13.3334%;
    margin-bottom: 40px;
}
.logo-wrapper .logo:nth-child(4n) {
    margin-right: 0;
}
.logo-wrapper .inner-logo {
    width: 100%;
    height: auto;

    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}
.logo-wrapper .logo:hover .inner-logo {
    filter: brightness(0.8);
}

/*STEPS*/
.slider-container {
    position: relative;
    overflow: hidden;
}
.slider-container.steps .swiper-wrapper {
    align-items: stretch;
}
.step-wrapper {
    position: relative;
    overflow: hidden;
    height: auto;
    width: 47.5%;
    margin-right: 5%;
    background: white;

    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease
}
.three-items .step-wrapper {
    width: 30%;
}
.step-wrapper:last-child {
    margin-right: 0;
}
.step-wrapper-inner {
    position: relative;
    height: 100%;
    padding: 50px 60px;
    border: none;
    text-align: center;
}
.step-wrapper-inner .stap p {
    font-family: 'Sriracha', cursive;
    color: #25CC78;
    font-size: 24px;
    margin-bottom: 4px;
}
.step-wrapper-inner .titel {
    position: relative;
    margin-bottom: 20px;
}
.step-wrapper-inner .tekst p {
    font-size: 16px;
    line-height: 30px;
}
.step-corner {
    position: absolute;
    width: 40px;
    height: 40px;
    right: -21px;
    bottom: -21px;
    transform: rotate(45deg);
    z-index: 1;
    background: white;
    border: 2px solid #E0E0E0;
}
.slide-btn {
    position: absolute;
    z-index: 1;
    cursor: pointer;
    opacity: 1;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0);
    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -ms-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}
.slide-btn.button-disabled {
    opacity: 0;
}
.prev-slide {
    left: -30px;
}
.next-slide {
    right: -30px;
}
.slide-btn .square {
    margin-left: 0;
}
.slide-btn svg {
    position: absolute;
    top: 24px;
    left: 24px;
}
.slide-btn svg path {
    fill: white;

    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -ms-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}
.next-slide svg {
    right: 24px;
    left: unset;
}

/*QUOTES*/

.quote-wrapper {
    width: 100%;
    position: relative;
}
.quote-wrapper .quote-inner {
    position: relative;
    padding: 140px 20%;
    text-align: center;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% calc(100% - 30px), calc(100% - 30px) 100%, 0 100%);
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 30px), calc(100% - 30px) 100%, 0 100%);
    background-color: #B3EDD0;
}
.quote-wrapper .quote-inner h3 {
     font-family: 'Sriracha', cursive;
     color: #182434;
     margin-bottom: 0;
     line-height: 48px;
     letter-spacing: -0.32px;
}
.quote-wrapper:before {
    content: url("/theme/assets/images/quote.svg");
    height: auto;
    width: auto;
    position: absolute;
    top: -25px;
    left: 7%;
    z-index: 1;
}

/*PRODUCTEN*/

.products-container {
    position: relative;
    padding-top: 120px;
    padding-bottom: 100px;
    background-color: #B3EDD0;
}
.products-container .title-wrapper {
    text-align: center;
    margin-bottom: 80px;
}
.align-center {
    text-align: center;
}

/*PRODUCT CARD*/

.product-wrapper {
    position: relative;
    margin-bottom: 60px;
    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;
}
.product-wrapper:before {
    content: '';
    position: absolute;
    width: 96%;
    height: 96%;
    top: 2%;
    left: 2%;
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.1);
    transition: all .3s ease;
    z-index: -1;
}
.product-wrapper:hover:before {
    box-shadow: 0 0 18px 20px rgba(0, 0, 0, 0.05);
}

.product-wrapper .product-inner {
    background: white;
    padding: 80px 70px 100px 70px;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% calc(100% - 25px), calc(100% - 25px) 100%, 0 100%);
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 25px), calc(100% - 25px) 100%, 0 100%);
}
.product-wrapper .icoon {
    position: relative;
    width: 30%;
    padding-left: 5%;
}
.product-wrapper .content {
    position: relative;
    width: 70%;
}
.product-wrapper .tags {
    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;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.product-wrapper .tags p {
    font-size: 20px;
    font-family: 'Sriracha', cursive;
    color: #25CC78;
    margin-bottom: 10px;
}
.product-wrapper .tags p:after {
    content: '|';
    margin-left: 10px;
    margin-right: 10px;
    position: relative;
    top: 1px;
}
.product-wrapper .tags p:last-child:after {
    content: none;
}
.product-wrapper .tekst p {
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 0;
    color: #000000;
}
.product-wrapper .download {
    position: absolute;
    right: 50px;
    bottom: 40px;
    z-index: 2;
    overflow: hidden;
}
.product-wrapper .download a {
    color: black;
    font-weight: 700;
    text-decoration: none;
}
.download-form {
    position: relative;
    width: 100%;
    max-width: 640px;
    padding-bottom: 175px;
}
.max-width-form {
    width: 100%;
    max-width: 640px;
}

/*FOOTER*/

.cta-wrapper {
    position: relative;
    margin: 25px;
    background: #182434;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% calc(100% - 30px), calc(100% - 30px) 100%, 0 100%);
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 30px), calc(100% - 30px) 100%, 0 100%);
}
.cta-wrapper .content-wrapper {
    position: relative;
    min-height: 300px;
    width: 100%;
}
.cta-wrapper .tekst p {
    color: white;
    font-family: 'Sriracha', cursive;
    font-size: 32px;
    line-height: 48px;
    text-align: center;
}
.contact-columns-wrapper {
    position: relative;
    padding-top: 100px;
    padding-bottom: 100px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.contact-column {
    position: relative;
    width: 28%;
}
.contact-column .kopje p {
    font-family: 'Sriracha', cursive;
    font-size: 24px;
    color: #25CC78;
}
.contact-column .content p {
    font-size: 20px;
    color: white;
    margin-bottom: 40px;
}
.contact-column .link a {
    color: white;
    font-weight: 600;
    text-decoration: none;
}
.footer-wrapper {
    background-color: rgba(224, 224, 224, .25);
    padding: 120px 0 120px 0;
    position: relative;
}
.footer-kolom {
    position: relative;
}
.footer-kolom.links {
    width: 45%;
}
.footer-kolom.rechts {
    width: 55%;
}
.footer-logo {
    position: relative;
    margin-bottom: 50px;
}
.footer-titel {
    position: relative;
    margin-bottom: 40px;
}
.social-media {
    position: relative;
}
.social-media a {
    color: #182434;
    padding-right: 22px;
    font-size: 20px;
    text-decoration: none;

    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}
.social-media a:hover {
    color: #25CC78;
}

/*VIDEO ELEMENT*/

.video-wrapper {
    position: relative;
    padding: 56.25% 0 0 0;
    overflow: hidden;
}
.video-wrapper .play-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    visibility: visible;
    opacity: 1;
    background-color: black;

    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;

    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}
.video_element_placeholder {
    position: relative;

    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.play-overlay.video-started {
    opacity: 0;
    visibility: hidden;
}
.play-overlay:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0, .2);
    z-index: 1;
}
.play-overlay.no-thumbnail:before {
    background-color: rgba(0,0,0, .6);
}
.play-overlay .play-btn {
    position: absolute;
    height: 90px;
    width: auto;
    margin-left: 15px;
    z-index: 2;

    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-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;
}
.play-overlay .play-btn .square {
    margin-left: unset;
    margin-right: 30px;
}
.play-overlay .play-btn svg {
    position: absolute;
    left: 25px;
}
.play-overlay .play-btn svg path {
    fill: white;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}
.play-overlay .play-btn p {
    font-family: 'Sriracha', cursive;
    font-size: 24px;
    line-height: 24px;
    margin-bottom: 0;
    letter-spacing: -0.24px;
    color: white;
}
.play-overlay .play-btn:hover .square {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}
.video-container {
    width: 100%;
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    padding: 0;
    margin: 0;
    z-index: 2;
}
.close-video {
    position: absolute;
    top: 20px!important;
    right: 20px;
    padding: 12px;
    font-size: 25px;
    color: white;
    cursor: pointer;
    z-index: 10;
}
.iframeWrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    background-color: black;
}
.vimeoPlayer {
    height: 100%;
    width: 100%;
}
.vimeoPlayer iframe {
    width: 100%;
    height: 100%;
}

/*IMAGE SLIDER*/

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}
.slider-container.images {
    position: relative;
    height: 675px;
}
.images .swiper-slide {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}
.image-slider {
    padding-bottom: 45px;
}
.image-slider .slide-btn {
    top: unset;
    transform: unset;
    bottom: 14px;
}
.image-slider .prev-slide {
    left: 42%;
}
.image-slider .next-slide {
    right: 42%;
}
.slide-btn:hover .square,
.read-more:hover .square,
.play-btn:hover .square {
    background: white;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.16);
}
.slide-btn:hover svg path,
.read-more:hover svg path,
.play-btn:hover svg path {
    fill: #25CC78;
}

/* menu element */
ul.menu {
    padding: 0 0 0 20px;
}
/* section */
.section{
    position: relative;
}
.section-content{
    position: relative;
    z-index: 3;
}

@media screen and (max-width: 1500px) {
    .case-wrapper {
        height: 650px;
    }
    .home-header-wrapper .image.vertical {
        width: 310px;
        height: 410px;
    }
    .home-header-wrapper .image.horizontal {
        width: 400px;
        height: 275px;
        right: 220px;
    }
}
@media screen and (max-width: 1300px) {
    h1 {
        font-size: 50px;
        line-height: 62px;
    }
    h2 {
        font-size: 40px;
        line-height: 56px;
    }
    h3 {
        font-size: 28px;
        line-height: 36px;
    }
    h4 {
        font-size: 28px;
        line-height: 44px;
    }
    h5 {
        font-size: 20px;
        line-height: 38px;
    }
    h6 {
        font-size: 16px;
        line-height: 20px;
    }
    .titel-knop-wrapper .titel h2 {
        font-size: 48px;
        line-height: 68px;
    }
    br {
        display: none;
    }
    .home-header-wrapper {
        position: relative;
        height: 750px;
    }
    .header-arrow {
        top: 525px;
    }
    .case-wrapper {
        height: 550px;
        margin-bottom: 100px;
    }
    .home-header-wrapper .image.horizontal {
        width: 350px;
        height: 240px;
        right: unset;
        left: 0;
    }
    .home-header-wrapper .image.vertical {
        width: 270px;
        height: 370px;
    }
    .uitgelicht-wrapper .content .content-inner {
        padding: 30px 60px 30px 30px;
        width: calc(100% + 80px);
    }
    .uitgelicht-wrapper .afbeelding {
        height: 550px;
    }
    .logo-wrapper .logo {
        width: 18%;
        margin-right: 9.3334%;
    }
    .footer-wrapper-inner {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .footer-kolom {
        width: 100%!important;
        margin-bottom: 40px;
    }
    .footer-kolom.rechts {
        margin-bottom: 0;
    }
    .footer-titel {
        max-width: 250px;
    }
    .post-header-wrapper.squares:before {
        top: 100px!important;
        transform: scale(0.9)!important;
    }
    .post-header-wrapper .title-wrapper {
        max-width: 470px;
    }
    .post-header-afbeelding {
        height: 500px;
    }
    .quote-wrapper .quote-inner {
        padding: 100px 20%;
    }
    .product-wrapper .product-inner {
        padding: 50px 40px 80px 40px;
    }
    .product-wrapper .icoon {
        padding-left: 0;
    }
    .product-wrapper .tags p {
        line-height: 24px;
    }
    .navigation {
        padding: 50px 60px 20px 60px;
    }
    .fixed-header {
        padding: 20px 60px 20px 60px;
    }
    .fixed-header.menu-open {
        padding: 50px 60px 20px 60px;
    }
    .navbar-brand img {
        width: 230px;
    }
    ul.navbar-nav li {
        padding-right: 40px;
    }
    .image-slider .prev-slide {
        left: 35%;
    }
    .image-slider .next-slide {
        right: 35%;
    }
}
@media screen and (max-width: 1024px) {
    .navigation {
        position: fixed;
        -webkit-transform: none!important;
        -moz-transform: none!important;
        -ms-transform: none!important;
        -o-transform: none!important;
        transform: none!important;
    }
    #js-scroll {
        -webkit-transform: none!important;
        -moz-transform: none!important;
        -ms-transform: none!important;
        -o-transform: none!important;
        transform: none!important;
    }
    .home-header-wrapper .afbeelding-wrapper {
        display: none;
    }
    .home-header-wrapper .content-wrapper {
        width: 85%;
    }
    .cases-wrapper {
        padding-top: 120px;
        padding-bottom: 180px;
    }
    .case-wrapper {
        height: 450px;
    }
    .uitgelicht-wrapper {
        flex-direction: column;
    }
    .uitgelicht-wrapper .content {
        width: 100%;
    }
    .uitgelicht-wrapper .afbeelding {
        width: 100%;
        height: 300px;
    }
    .uitgelicht-wrapper .content .content-inner {
        width: 100%;
        padding: 60px 60px 60px 60px;
    }
    .uitgelicht-wrapper .content-inner .read-more {
        position: absolute;
        top: unset;
        right: unset;
        bottom: -45px;
        left: 50%;
        transform: translateX(-50%);
    }
    .post-header-wrapper {
        padding-top: 240px;
        padding-bottom: 120px;
    }
    .squares:before {
        top: -230px;
        -webkit-transform: scale(.8) rotate(0);
        -moz-transform: scale(.8) rotate(0);
        -ms-transform: scale(.8) rotate(0);
        -o-transform: scale(.8) rotate(0);
        transform: scale(.8) rotate(0);
    }
    .squares.left:before {
        top: -500px;
    }
    .squares.right:before {
        top: -500px;

        -webkit-transform: scale(.8) rotateY(180deg);
        -moz-transform: scale(.8) rotateY(180deg);
        -ms-transform: scale(.8) rotateY(180deg);
        -o-transform: scale(.8) rotateY(180deg);
        transform: scale(.8) rotateY(180deg);
    }
    .post-header-wrapper.squares:before {
        top: 60px!important;
        transform: scale(0.8)!important;
    }
    .post-header-afbeelding {
        height: 400px;
    }
    .step-wrapper-inner {
        padding: 35px 55px;
    }
    .quote-wrapper .quote-inner {
        padding: 80px 10%;
    }
    .arrow svg {
        height: 175px;
    }
    .arrow.bottom_left {
        padding-left: 10%;
        bottom: -87px;
    }
    .arrow.bottom_right {
        padding-right: 10%;
        bottom: -87px;
    }
    .arrow.top_left {
        padding-left: 10%;
        top: -87px;
    }
    .arrow.top_right {
        padding-right: 10%;
        top: -87px;
    }
    .product-wrapper .product-inner {
        padding: 40px 30px 70px 30px;
    }
    .product-wrapper .icoon {
        width: 50px;
    }
    .product-wrapper .icoon img {
        width: 100%;
    }
    .product-wrapper .tags p {
        line-height: 20px;
        font-size: 16px;
    }
    .product-wrapper .tekst p {
        font-size: 14px;
        line-height: 25px;
    }
    .product-wrapper .download {
        right: 40px;
        bottom: 20px;
    }
    .product-wrapper .download a {
        font-size: 18px;
    }
    .product-wrapper .content {
        margin-left: 7%;
        width: 93%;
    }
    .products-container {
        padding-top: 100px;
        padding-bottom: 60px;
    }
    .cta-wrapper .tekst p {
        font-size: 26px;
        line-height: 38px;
    }
    .cta-wrapper .content-wrapper {
        min-height: 250px;
    }
    .post-header-wrapper .title-wrapper {
        margin-bottom: 50px;
    }
    .contact-columns-wrapper {
        justify-content: flex-start;
        flex-direction: column;
    }
    .contact-column {
        position: relative;
        width: 100%;
        margin-bottom: 30px;
    }
    .contact-column .content p {
        margin-bottom: 20px;
    }
    #navbarResponsive {
        width: 100%;
        height: 100vh;
        position: fixed;
        left: 0;
        right: 0;
        top: 0;
        background: #182434;
        padding-top: 140px;
        padding-left: 8%;
        padding-right: 8%;
        -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;
    }
    .menu-open #navbarResponsive {
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
        transform: translateX(0);
    }
    #navbarResponsive .navbar-nav {
        -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;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
    .navbar-toggler {
        display: block;
    }
    .fixed-header.menu-open .home .navbar-brand img {
        opacity: 1;
    }
    .fixed-header.menu-open .home .navbar-brand img.home-logo {
        opacity: 0;
    }
    .menu-open .nav-item .nav-link {
        color: white!important;
    }
    .menu-open .bar {
        background: white!important;
    }
    .menu-open img.home-logo {
        opacity: 1;
    }
    .menu-open img.logo {
        opacity: 0;
    }
    .menu-open .home img.logo {
        opacity: 1;
    }
    .menu-open .home img.home-logo {
        opacity: 0;
    }
    ul.navbar-nav li {
        padding-right: 0;
        margin-bottom: 20px;
        position: relative;
    }
    .nav-item .nav-link {
        left: 15px;
         transition-delay: .35s;
        opacity: 0;
    }
    .menu-open .nav-item .nav-link {
        color: white!important;
        left: 0;
        opacity: 1;
    }
    .menu-open .nav-item:nth-child(1) .nav-link {
        transition-delay: .35s;
    }
    .menu-open .nav-item:nth-child(2) .nav-link {
        transition-delay: .45s;
    }
    .menu-open .nav-item:nth-child(3) .nav-link {
        transition-delay: .55s;
    }
    .menu-open .nav-item:nth-child(4) .nav-link {
        transition-delay: .65s;
    }
    .menu-open .nav-item:nth-child(5) .nav-link {
        transition-delay: .75s;
    }
    .menu-open .nav-item:nth-child(6) .nav-link {
        transition-delay: .85s;
    }
    .menu-open .nav-item:nth-child(7) .nav-link {
        transition-delay: .95s;
    }
    .menu-open .nav-item:nth-child(8) .nav-link {
        transition-delay: 1.05s;
    }
    .uitgelicht-wrapper .square {
        margin-left: 15px;
    }
    .header-arrow {
        right: 12%;
        top: 575px;
    }
    .header-arrow svg {
        height: 300px;
    }
    .download-form {
        width: 100%;
    }
    .case-wrapper .case-wrapper-inner {
        padding: 40px;
    }
    .case-wrapper .case-wrapper-inner .titel h3 {
        font-size: 30px;
        line-height: 38px;
    }
    .slider-container.images {
        height: 450px;
    }
    p u:after {
        content: url('data:image/svg+xml; utf8, <svg xmlns="http://www.w3.org/2000/svg" width="165" height="8.192" viewBox="0 0 165 8.192"><g id="Grou_431" data-name="Group 431" transform="translate(-467.403 -450.908)"><path id="Path_499" data-name="Path 499" d="M469.524,454.893c5.7,5.585,19.027,1.224,21.438,1.141s4.616-1.507,6.714-2.893c-.062,3.413,4.4,3.2,7.216,2.265,9.048-3,18.626.129,27.972,1.376,13.617,1.816,27.355-.425,41-1.888,31.861-3.416,63.931-2.586,95.918-1.754" fill="none" stroke="%2325cc78" stroke-linecap="round" stroke-linejoin="round" stroke-miterlimit="10" stroke-width="3"/><path id="Path_500" data-name="Path 500" d="M658,453" transform="translate(11.785 1.296)" fill="none" stroke="%2325cc78" stroke-linecap="round" stroke-miterlimit="10" stroke-width="3"/><path id="Path_501" data-name="Path 501" d="M666,453" transform="translate(16.687 1.296)" fill="none" stroke="%2325cc78" stroke-linecap="round" stroke-miterlimit="10" stroke-width="3"/></g></svg>');
        top: -20px;
        left: -2px;
    }
}
@media screen and (max-width: 767px) {
    h1 {
        font-size: 42px;
        line-height: 52px;
    }
    h2 {
        font-size: 32px;
        line-height: 46px;
    }
    h3 {
        font-size: 22px;
        line-height: 30px;
    }
    h4 {
        font-size: 22px;
        line-height: 38px;
    }
    h5 {
        font-size: 18px;
        line-height: 34px;
    }
    h6 {
        font-size: 16px;
        line-height: 20px;
    }
    p, a, span, select, li, td, th, option, form input, b, ul, textarea, label, button, input {
        font-size: 16px;
        line-height: 30px;
    }
    /*.titel-knop-wrapper .titel h2 {*/
    /*    font-size: 48px;*/
    /*    line-height: 68px;*/
    /*}*/
    .home-header-wrapper .content-wrapper {
        width: 100%;
    }
    .items-container .item-column {
        width: 100%;
    }
    .uitgelicht-wrapper .content .content-inner {
        padding: 30px 30px 60px 30px;
    }
    .logo-wrapper .logo {
        width: 36%;
        margin-right: 7%;
        margin-left: 7%;
    }
    .titel-knop-wrapper .titel h2 {
        font-size: 40px;
        line-height: 56px;
    }
    .small-container .plate--container {
        padding-left: 12%;
        padding-right: 12%;
    }
    .plate--container {
        padding-left: 8%;
        padding-right: 8%;
    }
    .post-header-wrapper.squares:before {
        right: -500px!important;
    }
    .items-container .item-column {
        -webkit-transform: none!important;
        -moz-transform: none!important;
        -ms-transform: none!important;
        -o-transform: none!important;
        transform: none!important;
    }
    .navigation {
        padding: 50px 8% 20px 8%;
    }
    .fixed-header {
        padding: 20px 8% 20px 8%;
    }
    .fixed-header.menu-open {
        padding: 50px 8% 20px 8%;
    }
    .home-header-inner {
        padding-left: 8%;
        padding-right: 8%;
    }
    .header-arrow {
        top: 605px;
    }
    .header-arrow svg {
        height: 250px;
    }
    .image-slider .prev-slide {
         left: 25%;
     }
    .image-slider .next-slide {
        right: 25%;
    }
    .slider-container.images {
        height: 300px;
    }
    .quote-wrapper .quote-inner h3 {
        line-height: 38px;
    }
}
@media screen and (max-width: 600px) {

}
