/*GENERAL STYLING*/
@font-face {
    font-family: 'Eina';
    src: url('../FONTS/Eina01-Regular.woff2') format('woff2'),
    url('../FONTS/Eina01-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Eina';
    src: url('../FONTS/Eina01-Light.woff2') format('woff2'),
    url('../FONTS/Eina01-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
}
html {
    scroll-behavior: smooth;
}
/*body.lock-scroll {
    position: fixed;
    width: 100%;
}*/
h1, h2, h3, h4, h5, h6 {
    font-family: 'Eina';
    font-weight: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: white;
}
p, a, span, select, li, td, th, option, form input, b, ul, textarea, label, button, input {
    font-size: 16px;
    line-height: 25px;
    color: white;
    font-family: 'Eina';
    font-weight: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
h1 {
    font-size: 32px;
    line-height: 41px;
}
h1 span,
h2 span {
    font-size: inherit;
    line-height: inherit;
    font-family: inherit;
}
h2, h2 a  {
    font-size: 32px;
    line-height: 41px;
}
h3 {
    font-size: 21px;
    line-height: 41px;
}
h4 {
    font-size: 18px;
    line-height: 25px;
}
h5 {
    font-size: 16px;
    line-height: 25px;
}
h6 {
    font-size: 16px;
    line-height: 25px;
    margin-bottom: 0;
}
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;
}
.button {
    position: relative;
    min-width: 240px;
    height: 52px;
    display: inline-block;
    overflow: hidden;
    cursor: pointer;
    margin-top: 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;
}
.button input {
    -webkit-appearance: none;
    border: 0;
    background: none;
    color: white;
    height: 100%;
    width: 100%;
    cursor: pointer;
    outline: none;

}
.button a {
    position: relative;
    width: auto;
    min-width: 240px;
    text-align: center;
    display: inline-block;
    color: #FFFFFF;
    text-decoration: none;
    padding: 11px 15px;
    font-weight: 400;
    height: 100%;
}
.button:after {
    content: '';
    width: 130%;
    height: 100%;
    position: absolute;
    left: -130%;
    top: 0;
    z-index: -1;

    -webkit-transition: all .5s cubic-bezier(0.91, -0.01, 0.28, 0.98);
    -moz-transition: all .5s cubic-bezier(0.91, -0.01, 0.28, 0.98);
    -ms-transition: all .5s cubic-bezier(0.91, -0.01, 0.28, 0.98);
    -o-transition: all .5s cubic-bezier(0.91, -0.01, 0.28, 0.98);
    transition: all .5s cubic-bezier(0.91, -0.01, 0.28, 0.98);
    border-right: 50px solid transparent;
}
.button:hover:after {
    left: 0;
}
.button:hover .triangle path {
    fill: white !important;
}
.button:hover a {
    color: white;
}
.button .triangle {
    margin-right: 15px;
}
.button .triangle path {
    -webkit-transition: all .4s cubic-bezier(0.91, -0.01, 0.28, 0.98);
    -moz-transition: all .4s cubic-bezier(0.91, -0.01, 0.28, 0.98);
    -ms-transition: all .4s cubic-bezier(0.91, -0.01, 0.28, 0.98);
    -o-transition: all .4s cubic-bezier(0.91, -0.01, 0.28, 0.98);
    transition: all .4s cubic-bezier(0.91, -0.01, 0.28, 0.98);
}
.paragraph.intro p a {
    font-size: 18px;
}
p a {
    text-decoration: underline;
    text-underline-position: under;
}
p a:hover {
    text-decoration: none;
}
.paragraph h1,
.paragraph h2,
.paragraph h2 a,
.paragraph h3,
.paragraph h4,
.paragraph h5,
.paragraph h6,
.paragraph p {
    color: inherit;
}
.paragraph.intro p {
    font-size: 18px;
}
.paragraph h2 a {
    text-decoration: none;
}
.white-color {
    color: white;
}
.full-link-btn {
    position: absolute;
    height: 100%;
    width: 100%;
    display: block;
    z-index: 1;
    top: 0;
    left: 0;
}
.main-content-wrapper {
    width: 100%;
    position: relative;
    padding-top: 140px;
}
.section-container, section {
    position: relative;
    background: #000000;
}
.plate--container {
    position: relative;
    max-width: none!important;
    padding-left: 10%;
    padding-right: 15%;
    z-index: 0;
}
.plate--element__h1_titel {
    margin-bottom: 20px;
}
.plate--element__h1_titel h1 {
    margin-bottom: 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;
}
.al-center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
/*PARALLAX IMAGE EFFECT*/

.bg-parallax {
    position: absolute!important;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-size: cover;
    background-position: center;
}
/*.bg-parallax-fix {
    top: -1.875rem;
    bottom: -1.875rem;
}*/
/*PAGE TRANSITION*/
.animsition-overlay-slide {
    height: 100vh;
}
.bg-init,
.animsition-overlay-slide {
    background-color: #000000!important;
    overflow: hidden;
}
.animsition-overlay-slide,
.animsition-loading,
.animsition-loading:after {
    z-index: 999;
}
.animsitions-loading {
    margin-left: 0;
    margin-top: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: absolute;

    -webkit-transition: opacity .3s ease;
    -moz-transition: opacity .3s ease;
    -ms-transition: opacity .3s ease;
    -o-transition: opacity .3s ease;
    transition: opacity .3s ease;
}
/*SMOOTH SCROLL STYLING*/
::-webkit-scrollbar {
    display: none;
}
#js-scroll {
    background-color: black!important;
    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;
    background: black;}
.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; }
.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: white;
    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; }

/*NAVIGATION STYLING*/
.navigation {
    position: fixed;
    background-color: #000000;
    width: 100%;
    z-index: 1;

    -webkit-transition: background-color .3s ease;
    -moz-transition: background-color .3s ease;
    -ms-transition: background-color .3s ease;
    -o-transition: background-color .3s ease;
    transition: background-color .3s ease;
}
.navigation.fixed-header {
    background-color: #FFFFFF;
    z-index: 99;
}

.top-bar {
    position: relative;
    height: 40px;
    opacity: 1;
    border-bottom: 1px solid #121212;

    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}
.top-bar-left {
    width: 100%;
    position: relative;
}
.top-bar-left {
    padding-left: 10%;
    padding-right: 15%;
}
.top-bar-left a {
    font-size: 13px;
    text-decoration: none;
}
.top-bar-left a svg {
    margin-right: 8px;
}
.navbar {
    position: relative;
    height: 100px;
    padding: 0 0 0 10%;
}
.navbar .beeldmerk {
    position: relative;
    height: 100px;
    width: 100px;
    min-width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 25px;
}
.navbar .beeldmerk .beeldmerk-inner {
    display: block;
    width: 30px;
    height: 29px;
    background-position: center center;
    background-repeat: no-repeat;
    -webkit-background-size: contain;
    background-size: contain;
    filter: brightness(0) invert(1);
}
.navbar .phone {
    position: absolute;
    right: 30px;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    top: 130px;
    height: 310px;
}
.navbar .phone p {
    margin: 0;
    font-size: 16px;
    color: rgba(255,255,255, .2);
    cursor: default;
}
.navbar .phone a {
    margin: 0;
    font-size: 32px;
    line-height: 42px;
    color: white;
    text-decoration: none;
}
.navbar .navbar-nav a.nav-link {
    padding-right: 22px;
    padding-left: 22px;
    font-size: 15px;
    color: 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;
}
.navbar-brand {
    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;
    filter: brightness(0) invert(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;
}
.navbar-toggler {
    display: block;
    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 .bars {
    display: inline-block;
    vertical-align: middle;
}
.navbar-toggler:focus {
    outline: 0;
}
.navbar-toggler .bar {
    width: 30px;
    height: 2px;
    border-radius: 3px;
    margin-bottom: 6px;
    -webkit-transition: all 100ms ease-in-out;
    -moz-transition: all 100ms ease-in-out;
    -o-transition: all 100ms ease-in-out;
    transition: all 100ms ease-in-out;
    background-color: white;
}
.navigation.menu-open .bars {
    margin-top: 0;
    position: relative;
}
.navigation.menu-open .bar-1 {
    transform: rotate(45deg);
}
.navigation.menu-open .bar-3 {
    transform: rotate(-45deg);
    margin-top: -16px;
}
.navigation.menu-open .bar-2 {
    opacity: 0;
}
.navigation .bar-3 {
    margin-bottom: 0;
}
.nav-item.dropdown .triangle {
    transform: rotate(135deg);
    position: relative;
    top: -4px;
    margin-left: 9px;
}
.navbar-nav .dropdown-menu {
    position: absolute;
    border-radius: 0;
    margin: 0;
    border: 0;
}
.dropdown-item.active, .dropdown-item:active {
    color: #fff;
    text-decoration: none;
}
.dropdown-item {
    font-size: 15px;
}

/*FIXED HEADER CLASS*/

.navigation.fixed-header .navbar-brand img {
    filter: brightness(1) invert(0);
}
.navigation.fixed-header .navbar .navbar-nav a.nav-link {
    color: black;
}
.navigation.fixed-header .top-bar {
    height: 0;
    opacity: 0;
    border-bottom: 0;
}
.navigation.fixed-header .navbar-toggler .bar {
    background-color: black;
}

/*AFBEELDING SECTIE*/

.afbeelding-section-wrapper {
    position: relative;
    height: 60vh;
    background-color: #000000;
    margin-right: 15%;
    overflow: hidden;

    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;
}
.afbeelding-section-wrapper .afbeelding {
    position: absolute;
    width: 100%;
}
.afbeelding-section-wrapper .afbeelding.slider{
    height: 100%;
    top: 0;
    left: 0;
}
.afbeelding-section-wrapper .afbeelding.slider.image-wrapper .image-inner{
    height: 100%;
}

.afbeelding-section-wrapper .afbeelding.slider.image-wrapper .image{
    width: 100%;
    height: 120%;
    top: -5%;
    object-fit: cover;
}

/*DIENSTEN SECTIE*/

.diensten-section-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}
.diensten-section-wrapper .afbeelding-wrapper {
    position: relative;
    width: 35%;
    overflow: hidden;

    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;
}
.diensten-section-wrapper .afbeelding-wrapper .afbeelding {
    position: absolute;
    width: 100%;
}
.diensten-section-wrapper .diensten-info-wrapper {
    position: relative;
    width: 65%;
    padding: 60px 15% 60px 100px;
}
.diensten-info-wrapper .title-wrapper h2 {
    margin-bottom: 58px;
}
.diensten-info-wrapper .diensten-overzicht {
    position: relative;
    width: 100%;
}
.diensten-info-wrapper .diensten-overzicht .dienst-titels {
    position: relative;
    width: 25%;
    min-width: 150px;
}
.diensten-info-wrapper .diensten-overzicht .dienst-titel h3 {
    margin-bottom: 0;
}
.diensten-info-wrapper .diensten-overzicht .dienst-titel h3 a.dienst-click {
    font-size: inherit;
    line-height: inherit;
    text-decoration: none;
    color: inherit;
}
.diensten-info-wrapper .diensten-overzicht .dienst-info {
    position: relative;
    width: 100%;
    margin-top: 8px;
    max-width: 420px;
}
.diensten-info-wrapper .diensten-overzicht .dienst-info .dienst {
    position: absolute;
    opacity: 0;
    -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;
}

.diensten-info-wrapper .diensten-overzicht .dienst-info .dienst.active {
    opacity: 1;
    -webkit-transform: translateY(0%);
    -ms-transform: translateY(0%);
    transform: translateY(0%);
}
.diensten-info-wrapper .diensten-overzicht .dienst-info .dienst.was-active {
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
}

/*TEXT SLIDER*/

.text-slider-wrapper {
    position: relative;
    padding-top: 100px;
    padding-bottom: 100px;
}
.text-slide {
    position: relative;
    white-space: nowrap;
}
.text-slide.rtl {
    left: -60%;
}
.text-slide.ltr {
    left: -40%;
}
.text-slide .word {
    display: inline-block;
}
.text-slide .word span {
    font-size: 70px;
    line-height: 90px;
    font-weight: 300;
}
.text-slide .line {
    color: white;
    font-size: 70px;
    line-height: 90px;
    font-weight: 300;
    margin-left: 25px;
    margin-right: 25px;
    display: inline-block;
}

/*REFERENTIE SECTIE*/

.referentie-wrapper {
    position: relative;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.uitgelichte_referentie {
    height: 630px;
    width: 55%;
    position: relative;
    overflow: hidden;

    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;
}
.uitgelichte_referentie .image {
    position: absolute;
    width: 100%;
}
.referentie_text {
    width: 45%;
    padding: 30px 100px 30px 10%;
    height: auto;
    position: relative;
}
.referentie_text .intro-wrapper {
    position: relative;
}
.referentie_text .intro-wrapper h2 {
    margin-bottom: 50px;
}
.referentie_blok {
    background: white;
    height: auto;
    padding: 70px 23% 70px 70px;
    position: absolute;
    z-index: 2;
    width: 100%;
    bottom: 100px;
}
.referentie_blok .referentie_inner {
    position: relative;
    margin-bottom: 40px;
}
.referentie_blok .referentie_inner p,
.referentie_blok .recensent p {
    color: black;
    font-size: 18px;
    margin-bottom: 0;
}
.footer {
    position: relative;
    padding-top: 130px;
    padding-bottom: 140px;
}
.footer-wrapper {
    width: 100%;
    position: relative;
}
.footer .footer-arrow {
    position: absolute;
    right: 24px;
    bottom: 15px;
    cursor: pointer;
}
.copyright {
    position: absolute;
    bottom: 22px;
    left: 10%;
}
.copyright p {
    margin-bottom: 0;
    font-size: 12px;
    line-height: 18px;
}
.social_media {
    position: relative;
}
.social_media a {
    position: relative;
    height: 25px;
    width: 25px;
    display: inline-block;
    margin-right: 10px;
    opacity: 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;
}
.social_media a:before {
    content: '';
    background: transparent;
    height: 25px;
    width: 25px;
    font-size: 22px;
    display: inline-block;
    vertical-align: baseline;
    font-family: 'FontAwesome';
    text-align: center;
    z-index: 2;
    position: relative;
}
.social_media a.instagram:before {
    content: '\f16d';
}
.social_media a.facebook:before {
    content: '\f230';
}
.social_media a.linkedin:before {
    content: '\f0e1';
}

/*PROJECTS*/

.render-content {
    position: relative;
    width: 100%;
}
.projects-container {
    position: relative;
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
}

/*PROJECT CARD*/

.project-wrapper {
    position: relative;
    width: 45%;
    margin-right: 8%;
    margin-bottom: 85px;
    overflow: hidden;
}
.project-wrapper:nth-child(2n) {
    top: 56px;
    margin-right: 0;
}
.project-wrapper:nth-child(2n + 2) {
    top: 140px;
}

.project-wrapper .swiper-button-next, 
.project-wrapper .swiper-button-prev,
.afbeelding-section-wrapper .swiper-button-next, 
.afbeelding-section-wrapper .swiper-button-prev 
{
    height: 100%;
    width: 40%;
    background-color: rgba(0,0,0, .6);
    top: 0;
    margin-top: 0;
    opacity: 0;
    transition: all .4s ease-in-out;
}

.afbeelding-section-wrapper .swiper-button-next, 
.afbeelding-section-wrapper .swiper-button-prev {
    width: 200px;
}

.project-wrapper .swiper-button-next svg.footer-arrow line, 
.project-wrapper .swiper-button-next svg.footer-arrow path, 
.project-wrapper .swiper-button-prev svg.footer-arrow line,
.project-wrapper .swiper-button-prev svg.footer-arrow path,
.afbeelding-section-wrapper .swiper-button-next svg.footer-arrow line, 
.afbeelding-section-wrapper .swiper-button-prev svg.footer-arrow line,
.afbeelding-section-wrapper .swiper-button-next svg.footer-arrow path, 
.afbeelding-section-wrapper .swiper-button-prev svg.footer-arrow path
{
    stroke: white;
}

.project-wrapper .swiper-button-next svg.footer-arrow, .afbeelding-section-wrapper .swiper-button-next svg.footer-arrow {
    animation: slide2 1.5s linear infinite; 
} 

.project-wrapper .swiper-button-prev svg.footer-arrow, .afbeelding-section-wrapper .swiper-button-prev svg.footer-arrow {  
    animation: slide1 1.5s linear infinite; 
}


@keyframes slide1 {
  0%,
  100% {
    transform: rotate(-90deg) translateY(0);
  }

  50% {
    transform: rotate(-90deg) translateY(10px);
  }
}
@keyframes slide2 {
  0%,
  100% {
    transform: rotate(90deg) translateY(0);
  }

  50% {
    transform: rotate(90deg) translateY(10px);
  }
}

.swiper-button-next:after, 
.swiper-button-prev:after{
    display: none;
}
.project-wrapper .swiper-button-next:hover, 
.project-wrapper .swiper-button-prev:hover,
.afbeelding-section-wrapper .swiper-button-next:hover,
.afbeelding-section-wrapper .swiper-button-prev:hover
{
    opacity: 1;
}

.project-wrapper .swiper-button-prev, .afbeelding-section-wrapper .swiper-button-prev  {
    left: 0;
}
.project-wrapper .swiper-button-next, .afbeelding-section-wrapper .swiper-button-next {
    right: 0;
}

.project-inner {
    position: relative;
}
.image-wrapper {
    position: relative;
}
.image-wrapper .image-inner {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    border: 0 solid 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;
}

.project-wrapper .image-wrapper {
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}



.image-wrapper .image {
    position: absolute;
    width: 120%;
}

.image-wrapper .image-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    background-color: rgba(0,0,0, .6);

    -webkit-transition: all .4s cubic-bezier(0, 0, 0.2, 1);
    -moz-transition: all .4s cubic-bezier(0, 0, 0.2, 1);
    -ms-transition: all .4s cubic-bezier(0, 0, 0.2, 1);
    -o-transition: all .4s cubic-bezier(0, 0, 0.2, 1);
    transition: all .4s cubic-bezier(0, 0, 0.2, 1);

    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;
}
.image-overlay .footer-arrow {
    position: relative;
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
}
.image-overlay .footer-arrow path,
.image-overlay .footer-arrow line,
.slider-navigation .footer-arrow path,
.slider-navigation .footer-arrow line {
    stroke: 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;
}
.project-wrapper:hover .image-overlay {
    opacity: 1;
}
.project-wrapper:hover .image-wrapper {
    border: unset;
}
.project-wrapper .title-wrapper {
    position: relative;
    margin-top: 25px;
}

/*SINGLE PROJECT*/
.single-project-container {
    position: relative;
}
.single-project-container .title-wrapper.post-title {
    position: relative;
    padding-top: 120px;
    padding-bottom: 100px;
}
.single-project-slider {
    position: relative;
    height: 60vh;
    background-color: #000000;
}
.single-project-slider .image-slider {
    position: relative;
    width: 100%;
    height: 100%;
}
.single-project-slider .image-slider.is-sliding .slide {
    -webkit-transform: scale(.8);
    -moz-transform: scale(.8);
    -ms-transform: scale(.8);
    -o-transform: scale(.8);
    transform: scale(.8);
}
.single-project-slider .image-slider .slide {
    position: relative;
    width: 85%;
    margin-right: 15%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;

    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -ms-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
}
.single-project-slider .slider-navigation {
    position: absolute;
    right: calc(15% + 52px);
    bottom: -97px;
    z-index: 1;
}
.slider-navigation .next-slide {
    transform: rotate(90deg);
    margin-bottom: 85px;
    cursor: pointer;
}
.slider-navigation .prev-slide {
    transform: rotate(-90deg);
    cursor: pointer;
}
.prev-slide.disable {
    cursor: default;
}
.next-slide.disable {
    cursor: default;
}
.prev-slide.disable .footer-arrow line,
.prev-slide.disable .footer-arrow path,
.next-slide.disable .footer-arrow line,
.next-slide.disable .footer-arrow path {
    stroke: rgba(255,255,255, .2);
}
.project-intro {
    position: relative;
    padding-top: 70px;
    padding-bottom: 20px;
}
.project-intro p {
    max-width: 500px;
    font-size: 18px;
}

/*FORM 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;
    left: 20px;
    color: rgba(255, 255, 255, 0.4);
    background-color: #000000;
    cursor: auto;
    z-index: -1;
    padding-left: 5px;
    padding-right: 5px;
    line-height: normal;

    -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 option.disabled {

}
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;
}
form .input-field {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
    width: 100%;
    height: 100%;
    min-height: 52px;
    border: 1px solid #121212;

    -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: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 20px;
    width: 100%;
    background: transparent;
}
form .input-field textarea {
    min-height: 150px;
}
form .input-field p {
    margin-bottom: 0;
}
form .submit_button {
    margin-top: 40px;
    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-image: url('../IMAGES/Triangle_kreitech.svg');
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: 65px 22px;
    padding-left: 20px;
}

/*GOOGLE MAPS*/

.google-maps {
    height: 500px;
    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;
    z-index: 1;
}
.locatie-map {
    height: 100%;
    position: relative;
    width: 100%;
}
#maps-section,
#maps-container {
    position: relative;
    height: 100%;
}
.google-maps.contact {
    margin-top: 90px;
}
.gmnoprint, .gmnoscreen, .gm-style-cc {
    display:none;
}
.pluspunt-wrapper {
    position: relative;
}
.pluspunt-wrapper .pluspunt svg {
    position: relative;
    margin-top: -4px;
    margin-right: 10px;
}

/*LANDINGSPAGE*/

.landings-page .beeldmerk {
    background-color: white;
}
.landings-page .navbar .beeldmerk .beeldmerk-inner {
    filter: brightness(0) invert(0);
}
.landings-page .navbar-nav.ml-auto {
    display: none;
}
.landings-page .top-bar {
    display: none;
}
.landings-page .paragraph.primaire {
    color: white;
}
.landings-page .footer-arrow line,
.landings-page .footer-arrow path {
    stroke: white;
}
.landings-page .navigation.fixed-header .navbar-brand img {
    filter: brightness(0) invert(0);
}
.landings-page .navbar-toggler,
.landings-page .footer .footer-arrow {
    display: none;
}
.landings-page .main-content-wrapper {
    padding-top: 100px;
}
.landing-container {
    position: relative;
    padding-right: 15%;
}
.inner-landing-container {
    position: relative;
}
.landing-block {
    position: relative;
    width: 49%;
    height: 350px;
    margin-right: 2%;
    overflow: hidden;
}
.landing-block:nth-child(2) {
    margin-right: 0;
}
.landing-block .landing-inner {
    position: relative;
    width: 100%;
    height: 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;
}
.landing-block .landing-inner .afbeelding {
    position: absolute;
    width: 100%;
}
.landing-block .landing-inner .title-wrapper {
    position: relative;
    height: 100%;
    width: 100%;
    background: rgba(0,0,0, .4);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 70px;
    text-align: 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;
}
.landing-block:hover .landing-inner .title-wrapper {
    background: rgba(0,0,0, .77);
}
.medewerker .image-inner {
    height: 400px;
}
.medewerker .image-wrapper .image-inner,
.medewerker:hover .image-inner {
    border: none;
}
.medewerker .title-wrapper a {
    text-decoration: none;
    border-bottom: 1px solid transparent;
}
.medewerker .title-wrapper a:hover {
    border-bottom: 1px solid;
}

/*LIJNEN*/

/*.line-wrapper.bottom {
    position: absolute;
    transform: rotate(-45deg);
    display: block;
    z-index: 2;
    bottom: 20%;
    left: 100%;
}
.bottom-line {
    height: 200vw;
    width: 1px;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
}
.line-wrapper.top {
    position: absolute;
    transform: rotate(-45deg);
    display: block;
    z-index: 2;
    top: 20%;
    right: 100%;
}
.top-line {
    height: 200vw;
    width: 1px;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
}*/

/*MANDELO TRIANGLE*/

.copyright_mandelo{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 78px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: auto;

    position: absolute;
    bottom: 60px;
    left: 10%;
}
#mandelo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    text-decoration: none;
}
#mandelo.mandelo_triangle svg path {
    fill: white;
}
#mandelo svg.text {
    position: relative;
    margin-left: 10px;
    margin-top: 3px;
    display: none;
}
#mandelo.animate svg.text:before{
    height: 0;
}

.swiper__slider__single{
    width: 100%;
    height: 100%;
    position: relative;
}

.project-wrapper .image-wrapper .image-inner{
    height: 320px;
    overflow: visible;
    padding-top: 70%;
}

.project-wrapper .image-wrapper .swiper-slide{
    padding-top: 63%!important;
}

.project-wrapper .image-wrapper .image{
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
}

.project-wrapper .title-wrapper{
    margin-top: 30px;
    padding-left: 42px;
    padding-right: 42px;
}

.project-wrapper .title-wrapper h2{
    margin-bottom: 35px;
}

.swiper__slider .project-wrapper{
    width: 100%;
}

.swiper__slider .swiper-slide{
    transition: all .3s ease-in-out;
    padding-top: 140px;
}
.swiper__slider .swiper-slide.swiper-slide-prev{
    padding-top: 0;   
}
.swiper__slider .swiper-slide.swiper-slide-active{
    padding-top: 140px;
}
.swiper__slider .swiper-slide.swiper-slide-next{
    padding-top: 55px;
}
/*MEDIA QUERIES*/

@media (min-width: 1025px){
    .navbar-expand-custom {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: flex-start;
    }
    .navbar-expand-custom .navbar-nav {
        flex-direction: row;
    }
    .navbar-expand-custom .navbar-nav .nav-link {
        padding-right: .5rem;
        padding-left: .5rem;
    }
    .navbar-expand-custom .navbar-collapse {
        display: flex!important;
    }
    .navbar-expand-custom .navbar-toggler {
        display: none;
    }
}
@media only screen and (max-width: 1500px){
    .diensten-section-wrapper .afbeelding-wrapper .afbeelding,
    .uitgelichte_referentie .image,
    .afbeelding-section-wrapper .afbeelding {
        width: 110%;
    }
    .image-wrapper .image-inner {
        height: 200px;
    }
    .medewerker .image-wrapper .image-inner {
        height: 320px;
    }
}
@media only screen and (max-width: 1350px){
    .afbeelding-section-wrapper {
        height: 45vh;
    }
    .referentie_blok {
        padding: 40px 10% 40px 40px;
    }
    .diensten-section-wrapper .diensten-info-wrapper {
        padding: 40px 15% 40px 40px;
    }
    .diensten-info-wrapper .diensten-overzicht .dienst-info {
        max-width: none;
    }
    .diensten-info-wrapper .title-wrapper h2 {
        margin-bottom: 40px;
    }
    .image-wrapper .image-inner {
        height: 150px;
    }
    .medewerker .image-wrapper .image-inner {
        height: 250px;
    }
    .project-wrapper:nth-child(3n + 2) {
        top: 100px;
    }
    .project-wrapper:nth-child(3n) {
        top: 35px;
    }
    .project-wrapper {
        margin-bottom: 65px;
    }
    .google-maps.contact {
        margin-top: 40px;
    }
    .google-maps {
        height: 300px;
    }
    .landing-block {
        height: 250px;
    }
}
@media only screen and (max-width: 1024px) {
    .navbar .beeldmerk, .phone {
        display: none;
    }
    .navbar {
        padding: 0 10% 0 10%;
    }
    .afbeelding-section-wrapper {
        height: 35vh;
    }
    .diensten-section-wrapper,
    .diensten-info-wrapper .diensten-overzicht {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .diensten-section-wrapper .diensten-info-wrapper {
        padding: 40px 15% 40px 10%;
        width: 100%;
    }
    .diensten-section-wrapper .afbeelding-wrapper {
        height: 225px;
    }
    .diensten-info-wrapper .diensten-overzicht .dienst-titels {
        width: 100%;
        margin-bottom: 10px;
    }
    .dienst-titel {
        position: relative;
        display: inline-block;
        margin-right: 10px;
    }
    .diensten-info-wrapper .diensten-overzicht .dienst-info {
        min-height: 225px;
    }
    .text-slider-wrapper {
        position: relative;
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .referentie-wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end;
    }
    .referentie_text {
        padding: 30px 15% 0 10%;
        width: 100%;
    }
    .referentie_text .intro-wrapper h2 {
        margin-bottom: 20px;
    }
    .uitgelichte_referentie {
        height: 200px;
        width: 100%;
    }
    .referentie_blok {
        position: relative;
        padding: 20px;
        width: 100%;
        bottom: -60px;
        height: auto;
        left: 0;
    }
    .footer {
        padding-top: 60px;
        padding-bottom: 210px;
    }
    .plate--column {
        flex-basis: 100%;
        max-width: 100%;
    }
    .social_media {
        position: absolute;
    }
    .copyright {
        position: absolute;
    }
    .text-slide.ltr {
        left: unset;
        right: 0;
    }
    .project-wrapper:nth-child(3n + 2) {
        top: 0;
    }
    .project-wrapper:nth-child(3n) {
        top: 0;
        margin-right: 8%;
    }
    .project-wrapper {
        width: 46%;
    }
    .project-wrapper:nth-child(even) {
        margin-right: 0;
        top: 70px;
    }
    .image-wrapper .image-inner {
        height: 200px;
    }
    .text-slide .word span {
        font-size: 50px;
        line-height: 70px;
    }
    .text-slide .line {
        font-size: 50px;
        line-height: 70px;
        margin-left: 15px;
        margin-right: 15px;
    }
    .single-project-container .title-wrapper.post-title {
        padding-top: 60px;
        padding-bottom: 50px;
    }
    .single-project-slider .slider-navigation {
        bottom: -60px;
        right: calc(15% + 20px);
    }
    .next-prev-slide svg.footer-arrow {
        width: 40px;
    }
    .slider-navigation .next-slide {
        margin-bottom: 10px;
    }
    .landing-block {
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
    }
    #navbarResponsive {
        width: 100%;
        height: 100vh;
        position: fixed;
        left: 0;
        right: 0;
        top: 0;
        background: black;
        -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;
        padding-top: 140px;
        padding-left: 10%;
        padding-right: 15%;
    }
    .menu-open #navbarResponsive {
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
        transform: translateX(0);
    }
    .menu-open #navbarResponsive.pushed {
        -webkit-transform: translateX(-100%);
        -moz-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
        -o-transform: translateX(-100%);
        transform: translateX(-100%);
    }
    .main-content-wrapper {
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
        transform: translateX(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;
    }
    .main-content-wrapper.pushed {
        -webkit-transform: translateX(-100%);
        -moz-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
        -o-transform: translateX(-100%);
        transform: translateX(-100%);
    }
    .navbar .navbar-nav a.nav-link {
        padding-left: 0;
        padding-right: 0;
    }
    .navigation.menu-open .navbar-brand img {
        filter: brightness(0) invert(1);
    }
    .navigation.menu-open .navbar-toggler .bar {
        background-color: white;
    }
    .navigation.menu-open .navbar .navbar-nav a.nav-link {
        color: white;
        font-size: 24px;
        line-height: 33px;
    }
    .navigation.menu-open .top-bar {
        height: 40px;
    }
    .navbar-nav .dropdown-menu {
        position: relative;
        background: black;
        margin-top: 0;
        border-radius: 0;
        display: block;
        padding: 0;
    }
    .dropdown-item {
        color: white;
        font-size: 20px;
        line-height: 32px;
    }
    .dropdown-item:focus, .dropdown-item:hover {
        color: white;
        text-decoration: none;
        background-color: black;
    }
}
@media only screen and (max-width: 600px) {
    h1, h2, h2 a {
        font-size: 28px;
        line-height: 38px;
    }
    h1 br,
    h2 br {
        display: none;
    }
    h3 {
        font-size: 18px;
        line-height: 38px;
    }
    .paragraph.intro p br {
        display: none;
    }
    .navbar-brand {
        margin-right: 0;
        width: 80%;
    }
    .navbar-brand img {
        width: 190px;
    }
    .afbeelding-section-wrapper {
        height: 25vh;
        margin-right: 0;
    }
    .diensten-section-wrapper .afbeelding-wrapper {
        width: 65%;
    }
    .referentie_blok .referentie_inner {
        margin-bottom: 20px;
    }

    .project-wrapper .title-wrapper{
        padding-left: 0;
        padding-right: 0;
    }
    .referentie_blok .referentie_inner p, .referentie_blok .recensent p {
        color: black;
        font-size: 16px;
        margin-bottom: 0;
    }
    .project-wrapper {
        width: 100%;
        margin-right: 0;
        margin-bottom: 35px;
    }
    .project-wrapper:nth-child(even) {
        top: 0;
    }
    form .input-field input[type="checkbox"] {
        width: 18px;
        height: 18px;
    }
    form .input-field.AVG input[type="checkbox"] {
        margin: -11.5px 15px -10px -35px;
    }
    form .input-field.AVG {
        padding-left: 35px;
    }
    .landing-block {
        height: 200px;
    }
    .medewerker .image-wrapper .image-inner {
        height: 320px;
    }
    .project-wrapper:nth-child(3n) {
        margin-right: 0;
    }
}

@media only screen and (max-width: 374px) {
    h1, h2, h2 a {
        font-size: 26px;
        line-height: 36px;
    }
    .footer .footer-arrow {
        display: none;
    }
    .diensten-info-wrapper .diensten-overzicht .diensten-info p {
        font-size: 14px;
    }
}
