/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v7.0.29,
* Autoprefixer: v9.7.6
* Browsers: last 4 version
*/

@font-face {
    font-family: "Ruberoid";
    src: url("../fonts/Ruberoid-Bold.woff") format("woff"), /* Modern Browsers */
      url("../fonts/Ruberoid-Bold.woff2") format("woff2"); /* Modern Browsers */
    font-weight: 700;
    font-style: normal;
}

@font-face {
  font-family: "Ruberoid";
  src: url("../fonts/Ruberoid-SemiBold1.woff") format("woff"), /* Modern Browsers */
    url("../fonts/Ruberoid-SemiBold1.woff2") format("woff2"); /* Modern Browsers */
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "Ruberoid";
  src: url("../fonts/Ruberoid-Regular1.woff") format("woff"), /* Modern Browsers */
    url("../fonts/Ruberoid-Regular1.woff2") format("woff2"); /* Modern Browsers */
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Gordita";
  src: url("../fonts/Gordita-Regular.woff") format("woff"), /* Modern Browsers */
    url("../fonts/Gordita-Regular.woff2") format("woff2"); /* Modern Browsers */
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Gordita";
  src: url("../fonts/GorditaMedium.woff") format("woff"), /* Modern Browsers */
    url("../fonts/GorditaMedium.woff2") format("woff2"); /* Modern Browsers */
  font-weight: 600;
  font-style: normal;
}

:root {
    --color-white: #ffffff;
    --color-white-op: rgba(255, 255, 255, 0.25);
    --color-transparent: rgba(255, 255, 255, 0);
    --color-black: #000000;
    --color-navy: #0A0A1A;
    --color-navy-op: rgba(10, 10, 26, 0.25);
    --color-black-op: rgba(0, 0, 0, 0.25);
    --color-black-op-extreme: rgba(0, 0, 0, 0.05);
    --smooth-animation: all 275ms cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html, body {
    width: 100vw;
    height: 100vh;
    background-color: var(--color-navy);
}

/* FONT & TEXT STYLING */

h1, h2, h3, h4, h5, h6 {
    font-family: 'Ruberoid', sans-serif;
    color: var(--color-white);
    font-weight: 600;
}

h1 {
    font-size: 47px;
    line-height: 49px;
}

h2 {
    font-size: 47px;
    line-height: 49px;
}

h3 {
    font-size: 30px;
    line-height: 32px;
}

h4 {
    font-size: 16px;
    line-height: 21px;
}

h5 {
    font-size: 20px;
    line-height: 30px;
}

h6 {
    font-size: 13px;
    line-height: 19px;
}

p, a, u, span, select, section, td, th, option, form, input, b, strong, ul, ol, li, textarea, label, button, input, iframe, table {
    font-family: 'Gordita', sans-serif;
    font-size: 17px;
    line-height: 26px;
    color: var(--color-white);
    font-weight: 400;
    letter-spacing: 0;
}

/* GENERAL STYLING */

:focus {
    outline: none;
}

.lockScroll {
    width: 100%;
    overflow: hidden;
    position: fixed;
}

.render-content {
    position: relative;
}

.cover-square {
    position: absolute;
    height: 100%;
    width: 100%;
    display: block;
    z-index: 2;
    top: 0;
    left: 0;
}

.bg-cover {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.bg-contain{
    background-size: contain;
    -webkit-background-size: contain;
    border-width: 100px;
    border-style: solid;
    border-color: transparent;
    background-position: center center;
    background-repeat: no-repeat;
    height: 100%;
    width: 100%;
}

.main-content-wrapper {
    margin-top: 100px;
    width: 100%;
    position: relative;
}

/* SCROLLCONTAINER */
::-webkit-scrollbar {
    display: none;
}

#js-scroll {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

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;
    -webkit-transform-origin: center right;
        -ms-transform-origin: center right;
            transform-origin: center right;
    -webkit-transition: opacity 0.4s, -webkit-transform 0.4s;
    transition: opacity 0.4s, -webkit-transform 0.4s;
    -o-transition: transform 0.4s, opacity 0.4s;
    transition: transform 0.4s, opacity 0.4s;
    transition: transform 0.4s, opacity 0.4s, -webkit-transform 0.4s;
    opacity: 0;
    z-index: 99;
}

.c-scrollbar:hover {
            -webkit-transform: scaleX(1.45);
            -ms-transform: scaleX(1.45);
            transform: scaleX(1.45);
            -moz-transform: scaleX(1.45);
            -o-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: #dbdbdb;
    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;
}
/* SECTION STYLING */

.section-container {
    position: relative;
    width: 100%;
}

.section-container .subtitel {
    text-align: left;
    position: absolute;
    top: unset;
    bottom: 60px;
    width: 100%;
    left: 25%;
}

.section-content {
    position: relative;
    z-index: 2;
}

.plate--container {
    position: relative;
    width: 100%;
    max-width: unset;
    padding-left: 8%;
    padding-right: 8%;
}

.plate--page-content-wrapper{
    position: relative;
    z-index: 2;
}

.config-mode .is-inview{
    transform: translate(0, 0)!important;
    -webkit-transform: translate(0, 0)!important;
    -moz-transform: translate(0, 0)!important;
    -ms-transform: translate(0, 0)!important;
    -o-transform: translate(0, 0)!important;
}

/* DISPLAY FLEX STYLING */

.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-row.fl-reverse{
    flex-direction: row-reverse;
}

.fl-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.fl-column.fl-reverse{
    flex-direction: column-reverse;
}

.fl-wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}


.jc-start {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.jc-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.jc-end {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.jc-between {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.ai-center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.marb{
    margin-bottom: 35px;
}

* {
    outline: none!important;
}
/* 404 MESSAGE  */

.error-message {
    position: relative;
    width: 100%;
    height: 500px;
    z-index: 3;
}

/* NAVIGATION STYLING */

.navigation {
    top: 0;
    position: absolute;
    width: 100%;
    z-index: 1000;
}

.navbar {
    position: relative;
    height: 100%;
    padding: 15px 0;
    transition: all .25s ease-in-out;
    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
}

.navbar-user{
    padding: 5px 12px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    margin-right: 5px;
    transition: all .25s ease-in-out;
    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
}

.navbar-user:hover, .navbar-user:nth-last-child(1):hover{
    background-color: #ffffff;
   
}


.navbar-user a{
    font-size: 14px;
    line-height: 19px;
    transition: all .25s ease-in-out;
    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
}


.navbar-user:hover a{
    color: var(--color-navy);
}

.navbar-user a:hover{
    color: var(--color-navy);
    text-decoration: none;
}


.navbar-user:nth-last-child(1){
    background-color: #6f3a0c;
}

.navigation.fixed-header .navbar{
    background-color: var(--color-navy);
    /* padding: 25px 0; */
    padding: 5px 0 15px;
}

.navigation.fixed-header.nav-down .navbar{
    transform: translateY(-100%);
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
}
.navbar-inner {
    position: relative;
}

.navbar-brand {
    position: relative;
    margin-right: 30px;
    height: 100%;
    padding-top: 0;
    padding-bottom: 0;
    z-index: 99;
    margin-top: auto;
    
    transition: all .25s ease-in-out;
    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
}

.navbar-brand img {
    max-height: 100%;
    width: 215px;
    transition: all .25s ease-in-out;
    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
}

.navbar-upper-nav{
     height: 20px;
     margin-bottom: 17.5px;
     transition: all .25s ease-in-out;
     -webkit-transition: all .25s ease-in-out;
     -moz-transition: all .25s ease-in-out;
     -ms-transition: all .25s ease-in-out;
     -o-transition: all .25s ease-in-out;
}
.navbar-upper-nav.navbar-nav .nav-link{
    font-size: 14px;
    line-height: 19px;
} 

.navigation.fixed-header .navbar-upper-nav.navbar-nav{
    height: 0px;
    margin-bottom: 0;
    opacity: 0;
    visibility: hidden;
}

.navbar-main{
    padding-top: 0px;
    padding-bottom: 20px;
    transition: all .25s ease-in-out;
     -webkit-transition: all .25s ease-in-out;
     -moz-transition: all .25s ease-in-out;
     -ms-transition: all .25s ease-in-out;
     -o-transition: all .25s ease-in-out;
}

.navigation.fixed-header .navbar-main{
    padding-top: 0;
    padding-bottom: 0;
}
.navbar-nav .nav-link{
    padding-bottom: 0;
    padding-top: 0;
    position: relative;
    transition: all .25s ease-in-out;
    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
}

.navbar-nav .nav-link:hover{
    color: white;
}

.navigation.fixed-header .navbar-nav .nav-link:hover, .nav-item.active .nav-link, .navigation.fixed-header .navbar-nav .nav-item.active .nav-link {
    color: white;
}

.header-image .video-wrapper{
    padding-top: 54%;
}

.vid-end .header-image .video-wrapper .video-container{
    display: block;
    z-index: -1;
    opacity: 0;
    visibility: hidden;
}

.video-container, .video-element .item{
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
}
/* .navigation.fixed-header .navbar-nav .nav-link{
    color: black;
} */
.navigation.fixed-header .navbar-brand img{
    padding-top: 10px;
    /* filter: grayscale(111);
    -webkit-filter: grayscale(111) invert(1) brightness(0); */
}

.navbar-collapse {
    position: relative;
    width: 100%;
}

.navbar-nav {
    position: relative;
    width: 100%;

    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.navbar-nav .nav-item {
    padding-right: 20px;
}

.navbar-nav .nav-item.last {
    padding-right: 0;
}

/* DROPDOWN STYLING */

.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;
    border-radius: 0;
}

.dropdown-item {
    display: block;
    width: 100%;
    padding: 5px 15px;
    clear: both;
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
}

.dropdown-item:focus,
.dropdown-item:hover {
    text-decoration: none;
}

/* NAVBAR TOGGLER STYLING */

.navbar-toggler {
    display: none;
    padding-right: 0;
    z-index: 100;
}

.navbar-toggler:focus {
    outline: none;
}

.bars {
    position: relative;
    height: auto;
    width: 35px;
}

.bar {
    width: 100%;
    height: 1px;
    background: var(--color-white);
    margin-bottom: 7px;
    transition: var(--smooth-animation);
    -webkit-transition: var(--smooth-animation);
    -moz-transition: var(--smooth-animation);
    -ms-transition: var(--smooth-animation);
    -o-transition: var(--smooth-animation);
}

.bar.bar-3 {
    margin-bottom: 0;
}

.menu-open .bars {
    margin: 0;
}

.menu-open .bar-1 {
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
}

.menu-open .bar-3 {
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
    margin-top: -16px;
}

.menu-open .bar-2 {
    opacity: 0;
}

/* BUTTONS */

.button, body #mc_embed_signup .button {
    margin: 0 0 0 0;
    padding: 0 0 0 0;
    position: relative;
    min-width: 230px;
    height: 45px;
    display: inline-block;
    cursor: pointer;
    background-color: #6f3a0c;
    transition: var(--smooth-animation);
    -webkit-transition: var(--smooth-animation);
    -moz-transition: var(--smooth-animation);
    -ms-transition: var(--smooth-animation);
    -o-transition: var(--smooth-animation);
    border-radius: 50px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    overflow: hidden;
}

.button.cta{
    background-color: #007FFF;
}

.button.white{
    background-color: #ffffff;
}


.button.white a, .button.white a span, .button.white:after  {
    color:  black;
}

.button.white:hover a{
    color:  white;
}

.button::before{
    display: none;
    content: '';
    height: 100%;
    left: 0;
    top: 0;
    width: 100%;
    position: absolute;
    background: white;
    border-radius: 100px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    -ms-border-radius: 100px;
    -o-border-radius: 100px;
    transition: var(--smooth-animation);
    -webkit-transition: var(--smooth-animation);
    -moz-transition: var(--smooth-animation);
    -ms-transition: var(--smooth-animation);
    -o-transition: var(--smooth-animation);
    transform: translateX(-102%);
    -webkit-transform: translateX(-102%);
    -moz-transform: translateX(-102%);
    -ms-transform: translateX(-102%);
    -o-transform: translateX(-102%);
}
.button.white::before{
    background-color: #6f3a0c;
}

.button:hover::before{
    transform: translateX(-0%);
    -webkit-transform: translateX(-0%);
    -moz-transform: translateX(-0%);
    -ms-transform: translateX(-0%);
    -o-transform: translateX(-0%);
}
/* .button:hover a, .button:hover input{
    color: black;
} */
.button.dark {
    background-color: var(--color-navy);
}

.button:hover, .item-wrapper:hover .button{
    background-color: white;
}


form .button, body #mc_embed_signup .button {
    margin-top: 50px;
} 
.button input, body #mc_embed_signup .button input{
    margin: 0 0 0 0;
    clear: unset;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    position: absolute!important;
    -webkit-appearance: none;
    font-size: 16px;
    line-height: 20px;
    border: 0;
    min-width: 170px;
    text-align: center;
    background: none;
    color: var(--color-white);
    height: 100%;
    width: 100%;
    cursor: pointer;
    outline: none;
    padding: 10px 31px 13px 31px;
    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;
    z-index: 3;
    position: relative;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
}

.button a, .button::after, .button.send .send-inner, body #mc_embed_signup .button .send-inner {
    position: relative;
    font-size: 17px;
    line-height: 20px;
    width: 100%;
    height: 100%;
    min-width: 170px;
    text-align: center;
    color: var(--color-white);
    text-decoration: none;
    padding: 10px 31px 13px 31px;
    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;
    z-index: 1;
}

body #mc_embed_signup .button:hover .send-inner{
    background-color: white;
}

.button a{
    z-index: 2;
}

.button .text::after, .button span{
    -webkit-transition: all 275ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -o-transition: all 275ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
    transition: all 275ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -moz-transition: all 275ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -ms-transition: all 275ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

.text{
    position: relative;
    display: inline-block;
    overflow: hidden;
}
.button .text::after, .button input:after {
    content: attr(data-text);
    opacity: 0;
    position: absolute;
    top: 10px;
    height: auto;
    left: 0;
    width: 100%;
    font-family: 'Gordita', sans-serif;
    transform: translateY(15px);
    -webkit-transform: translateY(15px);
    -moz-transform: translateY(15px);
    -ms-transform: translateY(15px);
    -o-transform: translateY(15px);
}

.button.white .text::after, .button.white input:after{
    color: black;
}


.button:hover .text::after, .button span, .item-wrapper:hover .button .text::after{
    opacity: 1;
    transform: translateY(0px);
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    display: block;
}

.button:hover .text::after, .item-wrapper:hover .button .text::after{
    transform: translateY(-7px);
    -webkit-transform: translateY(-7px);
    -moz-transform: translateY(-7px);
    -ms-transform: translateY(-7px);
    -o-transform: translateY(-7px);
    color: var(--color-navy);
}

.button:hover .text span, .item-wrapper:hover .button .text span{
    opacity: 0;
    transform: translateY(-75%);
    -webkit-transform: translateY(-75%);
    -moz-transform: translateY(-75%);
    -ms-transform: translateY(-75%);
    -o-transform: translateY(-75%);
}

/* HOME HEADER */

.home-header-wrapper {
    position: relative;
    width: 100%;
    height: auto;
    padding: 100px 0;
}

.home-header-inner {
    position: relative;
    width: 100%;
    padding-left: 8%;
    padding-right: 8%;
}

/*LANGUAGE DROPDOWN*/

.language-switcher {
    position: relative;
    display: inline-block;
    margin-right: 0px;
    padding-right: 20px;
    margin-left: 20px;
}

.mobile .language-switcher .language-dropdown-btn {
    padding: 4px;
}

.mobile-switcher {
    display: none;
}

.language-dropdown-btn {
    text-align: center;
    display: block;
    position: relative;
}

.language-dropdown-btn:after{
    position: absolute;
    content: '';
    width: 7px;
    height: 7px;
    border-width: 0px 1px 1px 0;
    border-style: solid;
    border-color: white;
    transform: translateY(4px) rotate(45deg);
    -webkit-transform: translateY(4px) rotate(45deg);
    -moz-transform: translateY(4px) rotate(45deg);
    -ms-transform: translateY(4px) rotate(45deg);
    -o-transform: translateY(4px) rotate(45deg);
    right: -17px;
}

.language-dropdown {
    display: block;
    position: absolute;
    background-color: white;
    z-index: 200;
    top: 19px;
    list-style: none;
    padding-left: 0;
    min-width: 23px;
    text-align: center;
    margin-bottom: 0;
    margin-top: 10px;
    visibility: visible;
    opacity: 0;
    right: 14px;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    border-radius: 30px;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    -o-border-radius: 30px;
}

.language-dropdown li {
    position: relative;
    overflow: hidden;
    padding: 5px;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
}

.language-dropdown li:nth-last-child(1), .language-dropdown .current{
    margin-bottom: 0;
}

.flag{
    height: 18px;
    width: 18px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
}
.nl{
    background-image: url('../images/flags/nl.svg');
}
.de{
    background-image: url('../images/flags/de.svg');
}
.es{
    background-image: url('../images/flags/es.svg');
}
.en{
    background-image: url('../images/flags/gb.svg');
}
.fr{
    background-image: url('../images/flags/fr.svg');
}
.pt {
    background-image: url('../images/flags/pt.svg');
}

.language-dropdown li.current {
    display: none;
}

.language-dropdown a {
    display: block;
    text-decoration: none;
}

.language-switcher:hover .language-dropdown {
    visibility: visible;
    opacity: 1;
    margin-top: 10px;
}

/* BRANDLIST */
.brandlist{
    position: relative;
    background-color: #6f3a0c;
}

.brandlist .content-left{
    width: 50%;
    padding: 75px calc(7% + 35px);
}
.brandlist .content-right{
    width: 50%;
    padding: 75px calc(7% + 35px) 75px 0;
}


.brandlist .button{
    margin-top: 50px;
    margin-bottom: 10px;
}

.logo-wrapper{
    width: calc(100% / 3);
}
.brandlist .logo-image{
    background-position: center center;
    height: 110px;
    width: 110px;
    background-repeat: no-repeat;
    background-size: contain;
    margin-bottom: 60px;
    filter: grayscale(50) brightness(0) invert(1);
    -webkit-filter: grayscale(50) brightness(0) invert(1);
    border-left: 0px solid transparent;
    border-right: 0px solid transparent;
    border-top: 0px solid transparent;
    border-bottom: 0px solid transparent;    
}

.brandlist .logo-image:nth-last-child(1), 
.brandlist .logo-image:nth-last-child(2) {
    margin-bottom: 0;
}
/* POST HEADER */
.swiper-container{
    width: 100%;
}

.swiper-button-next, .swiper-button-prev{
    background: #2d2d3a;
    width: 60px;
    height: 60px;
    opacity: 1!important;
    right: unset;
    left: unset;
    position: relative;
    top: unset;
    bottom: unset;
    margin: 0 0 0 15px;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
}

.swiper-button-next:after, 
.swiper-button-prev:after,
.swiper-button-next::before, 
.swiper-button-prev::before,
.brand--header .list::after
{
    display: block;
    content: url('../images/arrow.svg');
    position: absolute;
    left: 50%;
    top: 0;
    height: 100%;
    width: auto;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    font-family: swiper-icons;
    font-size: var(--swiper-navigation-size);
    text-transform: none!important;
    letter-spacing: 0;
    text-transform: none;
    font-variant: initial;
    line-height: 100%;
    transition: all 275ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -webkit-transition: all 275ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -moz-transition: all 275ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -ms-transition: all 275ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -o-transition: all 275ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

.brand--header .list::after{
    left: unset;
    right: 0;
    line-height: 90px;
}


.swiper-button-prev:after{
    transform: translateX(-50%) rotate(180deg);
    -webkit-transform: translateX(-50%) rotate(180deg);
    -moz-transform: translateX(-50%) rotate(180deg);
    -ms-transform: translateX(-50%) rotate(180deg);
    -o-transform: translateX(-50%) rotate(180deg);
}

.swiper-button-next::before, 
.swiper-button-prev::before{
    opacity: 0;
}

.swiper-button-next:hover::before, 
.swiper-button-prev:hover::before{
    opacity: 1;
}
.swiper-button-prev::before{
    transform: translateX(31px) rotate(180deg);
    -webkit-transform: translateX(31px) rotate(180deg);
    -moz-transform: translateX(31px) rotate(180deg);
    -ms-transform: translateX(31px) rotate(180deg);
    -o-transform: translateX(31px) rotate(180deg);
}

.swiper-button-next::before{
    transform: translateX(-51px);
    -webkit-transform: translateX(-51px);
    -moz-transform: translateX(-51px);
    -ms-transform: translateX(-51px);
    -o-transform: translateX(-51px);
}

.swiper-button{
    overflow: hidden;
}
.swiper-button.swiper-button-next:hover::before{
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}

.swiper-button.swiper-button-prev:hover::before{
    transform: translateX(-50%)  rotate(180deg);
    -webkit-transform: translateX(-50%)  rotate(180deg);
    -moz-transform: translateX(-50%)  rotate(180deg);
    -ms-transform: translateX(-50%)  rotate(180deg);
    -o-transform: translateX(-50%)  rotate(180deg);
}

.swiper-button.swiper-button-next:hover::after{
    transform: translateX(31px);
    opacity: 0;
}

.swiper-button.swiper-button-prev:hover::after{
    transform: translateX(-51px) rotate(180deg);
    opacity: 0;
    -webkit-transform: translateX(-51px) rotate(180deg);
    -moz-transform: translateX(-51px) rotate(180deg);
    -ms-transform: translateX(-51px) rotate(180deg);
    -o-transform: translateX(-51px) rotate(180deg);
}

.swiper-pagination-fraction{
    width: auto;
    bottom: 0;
    margin-right: 10px;
    position: relative;
    transform: none;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    color: white;
}
.swiper-buttons{
    position: absolute;
    width: 50%;
    top: 75%;
    transform: translateY(-50%);
    padding-left: 8%;
    z-index: 5;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
} 

.post-header-wrapper .shadow{
    left: 0;
    top: 90%;
    position: absolute;
    height: 50vh;
    width: 100%;
    background: rgb(0,0,0);
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(0,0,0,1)), to(rgba(0, 0, 0, 0)));
    background: -o-linear-gradient(bottom, rgba(0,0,0,1) 0%, rgba(0, 0, 0, 0) 100%);
    background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0, 0, 0, 0) 100%);
}
.post-header-wrapper .swiper-wrapper{
    width: 65%;
    margin-left: auto;
}
.show .post-header-inner .title-container h1{
    max-width: unset;
}
.post-header-inner .title-container h1{
    max-width: 80%;
}
.post-header-wrapper .swiper-container .button{
    margin-top: 20px;
}

.post-header-wrapper.index-header{
    margin-bottom: 100px;
    position: relative;
}

.post-header-wrapper.landing--header.index-header{
    margin-bottom: 0;
    height: 100vh;
}
.post-header-wrapper.show .swiper-wrapper .title-container{
    padding-left: 10%;
}
.post-header-wrapper.show .swiper-wrapper h1{
    padding-left: 0;
    padding-right: 10%;
}


.post-header-wrapper .swiper-wrapper .swiper-slide{
    padding-top: 100px;
    padding-bottom: 100px;
}

.post-header-wrapper.home-header .swiper-wrapper .swiper-slide{
    padding-bottom: 0;
}



/* .post-header-wrapper.brand--header .content-wrapper {
    position: relative;
    width: 100%;
    height: auto;
    padding: 100px 0;
} */

.post-header-wrapper.show.brand--header .header-list{
    transform: translateY(-132px);
    -webkit-transform: translateY(-132px);
    -moz-transform: translateY(-132px);
    -ms-transform: translateY(-132px);
    -o-transform: translateY(-132px);
}

.post-header-wrapper.show.brand--header .header-list p.reference{
    margin-bottom: 35px;
    font-weight: 600;
}

.post-header-wrapper .subtitel{
    position: absolute;
    top: 0;
    left: -6%;
    white-space: nowrap;
    width: 100%;
}

.post-header-wrapper.solution--header .subtitel{
    left: unset;
    right: 13%;
    text-align: right;
}

.post .post-header-wrapper .subtitel, .landing--header.post-header-wrapper .subtitel, .download .post-header-wrapper .subtitel{
    text-align: center;
    left: 0;
}

.landings-page .post-header-wrapper.show .post-header-inner{
    padding-left: 8%;
    padding-right: 8%;
}

.landings-page .post-header-wrapper.show .content-wrapper{
    max-width: 60%;
    margin: 0 auto;
}

.landings-page .landing--header.post-header-wrapper .button{
    margin-left: 10px;
    margin-right: 10px;
}

.landings-page .landing--header.post-header-wrapper {
    height: 100vh;
    position: fixed;
    z-index: 11111111111;
    width: 100%;
    background-color: black;
}

.session-loaded .landing--header.post-header-wrapper{
    display: none;
}

.landings-page .post-header-wrapper{
    height: 100vh;
}
.landings-page .c-scrollbar{
    display: none;
}

.landings-page .show .post-header-inner .title-container h1{
    padding-right: 0%;
    padding-left: 0%;
}

.landing--header.post-header-wrapper .subtitel{
    height: 100%;
    top: 0;
    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;
}

.subtitel span{
    font-family: 'Ruberoid';
    font-weight: 700;
    color: white;
    font-size: 26vw;
    line-height: 26vw;
    letter-spacing: -0.9vw;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-color: #6F3A0C;
    -webkit-text-stroke-width: 1px;
}

.post-header-inner {
    position: relative;
    width: 100%;
    padding-left: 8%;
    padding-right: 8%;
}

.post--header .post-header-inner{
    margin-bottom: -25px;
}
.post-header-wrapper .content-wrapper {
    position: relative;
    width: 50%;
    height: auto;
    padding: 100px 100px 100px 0;
}
.post .post-header-wrapper .content-wrapper, 
.download .post-header-wrapper .content-wrapper{
    width: 100%;
    padding-right: 50px;
    padding-left: 50px;
}

.post .post-header-inner .title-container h1,
.download .post-header-inner .title-container h1{
    max-width: unset;
    text-align: center;
}
.post .show .post-header-inner .title-container h1,
.download .show .post-header-inner .title-container h1{
    max-width: unset;
    text-align: left;
}

.post-header-wrapper.show .content-wrapper{
    width: 100%;
    padding: 100px 0;
}

.post-header-wrapper .title-container{
    position: relative;
    z-index: 3;
    width: 100%;
}

.post-header-wrapper.show h1{
    font-size: 88px;
    line-height: 100px;
    padding-left: 13%;
    padding-right: 27%;
    width: 100%;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
}

.playing .post-header-wrapper.show h1{
    opacity: 0;
    transform: translateY(-70px);
    -webkit-transform: translateY(-70px);
    -moz-transform: translateY(-70px);
    -ms-transform: translateY(-70px);
    -o-transform: translateY(-70px);
}

.post-header-wrapper.show .post-header-inner{
    padding-left: 0%;
    padding-right: 0%;
}

.post-header-wrapper.show .header-image{
    width: 65%;
}

.post-header-wrapper.show .header-list{
    position: relative;
    z-index: 10;
    width: 35%;
    padding: 0px 8%;
}

.header-list .list:hover{
    border-bottom: 1px solid white;
}

.header-list .list:hover a{
    color: white;
    text-decoration: none;
}

.list-wrapper{
    height: 100%;
}

.project--header .list-wrapper p{
    width: 35%;
}

.list-wrapper .brands img {
    opacity: 1;
    width: 55px;
    margin-right: 15px;
    margin-bottom: 15px;
    filter: grayscale(50) brightness(0) invert(1);
    -webkit-filter: grayscale(50) brightness(0) invert(1);
    transition: var(--smooth-animation);
    -webkit-transition: var(--smooth-animation);
    -moz-transition: var(--smooth-animation);
    -ms-transition: var(--smooth-animation);
    -o-transition: var(--smooth-animation)
}

.list-wrapper .brands img:hover {
    opacity: .4;
}

.list-wrapper .brands{
    padding-top: 5px;
}

.list:nth-child(1){
    border-top: 1px solid #2d2d3a;
}
.list{
    position: relative;
    border-bottom: 1px solid #2d2d3a;
    padding-top: 40px;
    padding-bottom: 40px;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
}

.list .data{
    width: 65%;
    position: relative;
}

.list .data p{
    width: 100%;
}

.post-header-wrapper.show .title-container, .post-header-wrapper.show .header-image img  {
    width: 100%;
}


.post-header-wrapper.show .header-image img{
    max-height: 65vh;
    -o-object-fit: cover;
       object-fit: cover;
}

.dealer .post-header-wrapper.show .header-image img{
    max-height: 67vh;
}

button.gm-ui-hover-effect{
    opacity: 1;
}
.post-header-wrapper.show .header-bottom{
    padding: 0 0 0 0;
}
.post-header-wrapper.show .header-image, .post-header-wrapper.show .header-list{
    transform: translateY(-70px);
    -webkit-transform: translateY(-70px);
    -moz-transform: translateY(-70px);
    -ms-transform: translateY(-70px);
    -o-transform: translateY(-70px);
}

.post-header-wrapper.show .swiper-wrapper .header-image{
    transform: translateY(-165px);
    -webkit-transform: translateY(-165px);
    -moz-transform: translateY(-165px);
    -ms-transform: translateY(-165px);
    -o-transform: translateY(-165px);
}

.home-header{
    margin-bottom: 150px;
}
.post-header-wrapper.home-header.show .swiper-wrapper .header-image{
    margin-bottom: -165px;
}
/* POST ITEM */

.items-container {
    position: relative;
}

.item-wrapper {
    position: relative;
    width: calc(86% / 3);
    margin-right: 7%;
    margin-bottom: 2%;
    overflow: hidden;
    border: none;
    border-radius: 0;
}

.item-wrapper .button{
    z-index: 4;
}
.item-wrapper .item-inner {
    position: relative;
}

.item-wrapper.oplossing .item-content{
    padding: 30px 100px 30px 0;
} 
.item-wrapper .item-content {
    padding: 30px 0;
    color: #000000;
}

.item-wrapper .item-inner p {
    margin-bottom: 0;
}

.item-wrapper .item-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.item-wrapper.download .item-image{
    height: 0;
    padding-top: 130.5%;
}

.item-wrapper.download h3{
    font-size: 21px;
    line-height: 22px;
}


.item-wrapper.download .item-image .image-inner{
    background-color: black
}

.item-wrapper.download .bg-contain{
    border-width: 30px;
}

.item-wrapper.download .item-image .image-inner, .item-wrapper.oplossing .item-image .image-inner{
    position: absolute;
    top: 0;
    left: 0;
}

.item-wrapper.oplossing .item-image{
    height: 0px;
    padding-top: 70.5%;
}
.item-wrapper .item-image .image-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
}

.item-wrapper.project:hover .item-image .image-inner, .item-wrapper.blogpost:hover .item-image .image-inner, .item-wrapper.oplossing:hover .item-image .image-inner, .item-wrapper.download:hover .item-image .image-inner {
    transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
}

/* FEATURED PROJECTS */
.projects-featured h2{
    margin-bottom: 30px;
}

/* VIDEO */
.embed-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
    height: auto;
  }
  
  .embed-container iframe,
  .embed-container object,
  .embed-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

/* POST */

.container-small{
    padding-left: 13%;
    padding-right: 13%;
    width: 100%;
}

.brand-list{
    margin-bottom: 150px;
}
.brand-list .list{
    width: calc((100% - 40px) / 3);
    border-top: 1px solid #2d2d3a;
}

.brand-list .list p{
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
}

.brand-list .list:hover, .brand-list .list:nth-child(-n+3):hover{
    border-bottom-color: white;
    z-index: 1;
}

.brand-list .list:hover p{
    opacity: 1;
}

.brand-list .list:nth-child(n+3){
    margin-top: -1px;
}

.creator{
    padding: 75px 6% 90px 6%;
    background: #6f3a0c;
}

.intro.container-small h2{
    padding-right: 40%;
} 
.intro .columns{
    -webkit-columns: 2;
       -moz-columns: 2;
            columns: 2;
    width: 100%;
    padding-right: 40%;
    -webkit-column-gap: 25px;
       -moz-column-gap: 25px;
            column-gap: 25px;
}

.intro .intro-text {
    width: 70%;
    padding-right: 15%;
}

.intro .intro-categories{
    position: relative;
    width: 30%;
    
}


.intro .intro-categories .intro-cat-wrapper{
    position: relative;
    padding: 20px 0;
    border-top: 1px solid var(--color-white-op);
    border-bottom: 1px solid var(--color-white-op);
    width: 100%;
}

.intro .intro-categorie{
    position: relative;
    opacity: .25;
}

.intro .intro-categorie.active{
    opacity: 1;
}

.intro .intro-categorie p{
    position: relative;
    padding-left: 20px;
    line-height: 35px;
    margin-bottom: 0px;
}

.intro .intro-categorie div{
    position: relative;
    width: 22px;

}
.intro .intro-categorie div:before{
    font-size: 17px;
    line-height: 0;
    height: 22px;
    width: 22px;
    text-align: center;
    left: 0;
    top: 4px;
    position: absolute;
    filter: grayscale(50) brightness(0) invert(1) ;
    -webkit-filter: grayscale(50) brightness(0) invert(1) ;
}
.intro .intro-categorie:nth-child(1) div:before{
    content: url('../images/categories/nood.svg');
}

.intro .intro-categorie:nth-child(2) div:before{
    content: url('../images/categories/home.svg');
}

.intro .intro-categorie:nth-child(3) div:before{    
    content: url('../images/categories/audio.svg');
}

.intro .intro-categorie:nth-child(4) div:before{
    content: url('../images/categories/licht.svg');
}
.intro.container-small {
    margin-bottom: 125px;
}

.block-inner{
    width: 50%;
    position: relative;
}

.block-inner.contain{
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    border: 80px solid transparent;
}

.right.block-inner{
    /* padding-top: 50%; */
    padding-top: unset;
}

.project-image {
    max-width: 60%;
    margin-left: auto;
    margin-bottom: 125px;
}

.project-image .image{
    padding-top: 57.47%;
}
/* USP */
.usps {
    padding-left: 10%;
    padding-right: 10%;
}
.usp {
    padding-left: 36px;
    padding-right: 36px;
    height: 100px;
    position: relative;
}

.usp-divider{
    transform: rotate(8deg);
    -webkit-transform: rotate(8deg);
    -moz-transform: rotate(8deg);
    -ms-transform: rotate(8deg);
    -o-transform: rotate(8deg);
    width: 1px;
    height: 100px;
    background: #6f3a0c;
    position: relative;
}

/* FILTER */
.post-category-selection{
    margin-bottom: 60px;
}
.post-category-selection .filter-category{
    margin-right: 60px;
    margin-bottom: 0;
}

.post-category-selection .category-selection-field{
    margin-right: 30px;
    position: relative;
    margin-bottom: 0;
}


.post-category-selection .category-selection-field input {
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 4;
    position: absolute;
    opacity: 0;
    -webkit-appearance: none;
    cursor: pointer;
}
.post-category-selection .category-selection-field::after, .nav-link::after{
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 1px;
    width: 100%;
    opacity: 0;
    background-color: #6f3a0c;
    transform: translateY(6px);
    -webkit-transform: translateY(6px);
    -moz-transform: translateY(6px);
    -ms-transform: translateY(6px);
    -o-transform: translateY(6px);
    transition: all .35s ease-in-out;
    -webkit-transition: all .35s ease-in-out;
    -moz-transition: all .35s ease-in-out;
    -ms-transition: all .35s ease-in-out;
    -o-transition: all .35s ease-in-out;
}

.post-category-selection .checked::after, .nav-link:hover::after, .nav-item.active .nav-link:after  {
    opacity: 1;
    transform: translateY(3px);
    -webkit-transform: translateY(3px);
    -moz-transform: translateY(3px);
    -ms-transform: translateY(3px);
    -o-transform: translateY(3px);
}

/* BRANDS */
.item-wrapper.merk .titel{
    display: none;
}

.item-wrapper.merk .item-image .image-inner{
    background-color: #2d2d3a;
    transition: var(--smooth-animation);
    -webkit-transition: var(--smooth-animation);
    -moz-transition: var(--smooth-animation);
    -ms-transition: var(--smooth-animation);
    -o-transition: var(--smooth-animation);
}


.item-wrapper.merk:hover .item-image .image-inner{
    background-color: #6F3A0C;
}

.item-wrapper.merk .item-image .image-inner .image {
    filter: grayscale(50) brightness(0) invert(1) ;
    -webkit-filter: grayscale(50) brightness(0) invert(1) ;
}

/* CONTACTFORM STYLING */

.form-field {
    display: block;
    position: relative;
    z-index: 3;
    width: 100%;
}

.form-field--is-active .form-field__control::after {
    color: #ffffff;
    opacity: .8;
    -webkit-transform: scaleX(150);
    -ms-transform: scaleX(150);
    transform: scaleX(150);
}

.form-field--is-filled .form-field__label, .form-field--is-active .form-field__label {
    top: 0;
    font-size: 11px;
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
    -moz-transform: translateY(-5px);
    -o-transform: translateY(-5px);
}

.form-field__label {
    position: absolute;
    display: block;
    left: 0;
    margin: 0;
    padding: 0;
    width: 100%;
    z-index: 0;
    color: white;
    opacity: 1;
    transition: var(--smooth-animation);
    -webkit-transition: var(--smooth-animation);
    -moz-transition: var(--smooth-animation);
    -ms-transition: var(--smooth-animation);
    -o-transition: var(--smooth-animation);
}

.form-field_check_label {
    position: relative;

    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.form-field_check_label span {
    margin-left: 10px;
}

.form-field__control {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.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);
    width: 1%;
    transition: var(--smooth-animation);
    -webkit-transition: var(--smooth-animation);
    -moz-transition: var(--smooth-animation);
    -ms-transition: var(--smooth-animation);
    -o-transition: var(--smooth-animation);
}

body .modal #mc_embed_signup input{
    color: var(--color-navy);
}

.leaflet-tile-loaded{
    filter: invert(1);
    -webkit-filter: invert(1);
}

.form-field__input,
.form-field__textarea, 
body #mc_embed_signup input, body .mc-embedded-subscribe  {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: transparent;
    border: 0;
    border-bottom: 1px solid #6F3A0C;
    color: #ffffff;
    display: block;
    margin-top: 24px;
    outline: 0;
    width: 100%;
    z-index: 5;
    line-height: 50px;
}

body #mc_embed_signup .send-inner input{
    margin-top: 0;
    margin-bottom: 0;
}



.form-field-container {
    position: relative;
    display: inline-block;
    overflow: hidden;
    padding-top: 24px;
    width: 100%;
    z-index: 2;
}

.form-field-container.textarea label {
    top: 0;
}

.form-field-container label {
    position: absolute;
    margin-bottom: 0px;
    line-height: 0px;
    top: 50%;
    z-index: -1;
}

.form-field-container input {
    margin-top: 0;
}

.form-field.first label {
    display: block;
}

.form-field.select select {
    padding: 5px;
    border: 1px solid var(--color-navy);
}

textarea,
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"], body #mc-embedded-subscribe-form input[type=checkbox] {
    position: relative;
    display: inline-block;
    -webkit-appearance: none;
    padding: 9px;
    width: 20px;
    height: 20px;
    border: 1px solid #6f3a0c;
    margin-right: 10px;
    -webkit-appearance: none;
    transform: translateY(1px);
    -webkit-transform: translateY(1px);
    -moz-transform: translateY(1px);
    -ms-transform: translateY(1px);
    -o-transform: translateY(1px);
    border-radius: 0 0 0 0;
    -webkit-border-radius: 0 0 0 0;
    -moz-border-radius: 0 0 0 0;
    -ms-border-radius: 0 0 0 0;
    -o-border-radius: 0 0 0 0;
}

body #mc-embedded-subscribe-form input[type=checkbox] {
    margin-top: 0;
}

.form-field-container .checkbox label{
    position: relative;
    top: 0;

}

.form-field input[type="checkbox"]:checked {
    color: var(--color-navy);
}

.form-field input[type="checkbox"]:after,
.form-field input[type="radio"]:after {
    content: '';
    position: absolute;
    width: 20px !important;
    height: 20px !important;
    top: -1px;
    left: -1px;
    background-color: transparent;
    transition: var(--smooth-animation);
    -webkit-transition: var(--smooth-animation);
    -moz-transition: var(--smooth-animation);
    -ms-transition: var(--smooth-animation);
    -o-transition: var(--smooth-animation);
}

label a:hover{
    color: inherit;
}

form .form-field input[type="checkbox"]:checked:after{
    content: '\2714';
    position: absolute;
    width: 20px!important;
    height: 20px!important;
    font-size: 14px;
    line-height: 16px;
    text-align: center;
    padding: 3px;
    display: block;
    padding-left: 6px;
    top: -3px;
    left: -3px;
    color: white;
}

.form-field input[type="radio"]:after {
    top: 0;
    left: 0;
    border-radius: 100%;
}

/* .form-field input[type="checkbox"]:checked:after {
    background-color: #6f3a0c;
} */

.form-field input[type="radio"] {
    position: relative;
    -webkit-appearance: none;
    padding: 10px;
    width: 20px;
    height: 20px;
    border-radius: 100%;
    border: 1px solid var(--color-navy);
}

.form-field input[type="radio"]:checked {
    color: var(--color-navy);
}

.form-field input[type="radio"]:checked:after {
    background-color: var(--color-navy);
}

textarea {
    min-height: 150px;
    max-height: 350px;
}

/* FOOTER */

.footer {
    position: relative;
    padding: 0px 0;
    padding-top: 150px;
}


.footer .footer-column{
    position: relative;
    min-height: 200px;
    padding-left: 8%;
    padding-bottom: 90px;
}

.footer .footer-column.footer-column-left{
    width: 25%;
}

.footer .footer-column.footer-column-right{
    width: 75%;
    padding-top: 75px;
    padding-left: 100px;
    padding-right: 8%;
}

.footer .footer-column.footer-column-right::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0%;
    background-image: -o-linear-gradient(324deg, #6f3a0c, transparent) ;
    background-image: linear-gradient(0.35turn, #6f3a0c, transparent) ;
    z-index: 0;
    transition: all .8s cubic-bezier(0.09, 0.29, 0.72, 0.38);
    -webkit-transition: all .8s cubic-bezier(0.09, 0.29, 0.72, 0.38);
    -moz-transition: all .8s cubic-bezier(0.09, 0.29, 0.72, 0.38);
    -ms-transition: all .8s cubic-bezier(0.09, 0.29, 0.72, 0.38);
    -o-transition: all .8s cubic-bezier(0.09, 0.29, 0.72, 0.38);
}

.footer .footer-column.footer-column-right.is-inview::before, .config-mode .footer .footer-column.footer-column-right::before{
    width: 100%;
}

.footer .footer-column-right h4{
    margin-bottom: 25px;

}

.footer .footer-column-right p, .footer .footer-column-left h6, .list .data p{
    opacity: .4;
}

.footer .footer-column.footer-column-right .first_column{
    position: relative;
    height: 100%;
    width: calc(100% / 3);
}
.footer .footer-column.footer-column-right .second_column{
    position: relative;
    height: 100%;
    width: calc(100% / 3);
}
.footer .footer-column.footer-column-right .third_column{
    position: relative;
    height: 100%;
    width: calc(100% / 3 - 20px);
}

.footer .footer-column-right .third_column p{
    opacity: 1;
}

.footer .footer-column-right .third_column p a{
    opacity: .4;
}

.tekst{
    position: relative;
    z-index: 3;
}
.tekst p a{
    text-decoration: underline;
    opacity: .6;
}

.tekst p a:hover{
    opacity: 1;
    color: white;
}

p a{
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
}

.footer .footer-column-right .third_column p a:hover{
    opacity: 1;
    color: white;
    text-decoration: none;
}

.column-inner{
    padding-right: 100px;
}
.footer .footer-column.footer-column-right .last_column{
    position: relative;
    height: 100%;
    width: 20px;
}

.social-link{
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
}

.footer .footer-column.footer-column-right .last_column .social-link:hover{
    color: var(--color-white-op);
}
.footer .footer-column.footer-column-right .last_column svg{
    margin-bottom: 25px;
}

/* MAP */
.ev-loaded .modal{
    display: none;
}

.session-loaded .modal{
    display: none!important;
}

.loader{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.33);;
}

.loader-animation{
    left: 50%;
    top: 50%;
    height: 100px;
    width: 36px;
    position: relative;
    background: transparent;
    
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    border-radius: 0%;
    -webkit-border-radius: 0%;
    -moz-border-radius: 0%;
    -ms-border-radius: 0%;
    -o-border-radius: 0%;
}

/* .loader-animation::before{
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    border: 5px solid #dbdbdb;
    border-top: 5px solid #ffffff;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    animation: spin 2s linear infinite;
} */

.lds-facebook {
    display: inline-block;
    position: relative;
    width: 100%;
    height: 100%;
}
.lds-facebook div {
    display: inline-block;
    position: absolute;
    left: 8px;
    width: 10px;
    background: #6f3a0c;
    animation: lds 1.2s cubic-bezier(0, 0.5, 0.5, 1) infinite;
    -webkit-animation: lds 1.2s cubic-bezier(0, 0.5, 0.5, 1) infinite;
}
.lds-facebook div:nth-child(1) {
    left: 0px;
    -webkit-animation-delay: -0.24s;
            animation-delay: -0.24s;
}
.lds-facebook div:nth-child(2) {
    left: 13px;
    -webkit-animation-delay: -0.12s;
            animation-delay: -0.12s;
}
.lds-facebook div:nth-child(3) {
    left: 26px;
    -webkit-animation-delay: 0;
            animation-delay: 0;
}


.dealer-container {
    padding-right: 0;
}
.locatie-overzicht {
    width: 36%;
    height: 100vh;
}

.locaties{
    top: 150px;
    position: relative;
    overflow-y: scroll;
    height: calc(100vh - 200px);
    padding-right: 100px;
}

.locaties::-webkit-scrollbar {
    width: 4px;
    right: -30px;
    position: absolute;
    display: block;
}

.locaties::-webkit-scrollbar-track {
    background: transparent;
}

.locaties::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.dealer-link {
    position: absolute;
    background-color: #6f3a0c;
    top: 0;
    height: 53px;
    width: 53px;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
    right: 0;
    top: 25px;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
}

.location-wrapper:hover .leaflet-top{
    opacity: 1;
}
.leaflet-top {
    top: unset;
    bottom: 15px;
    opacity: 0;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -webkit-transition-delay: .5s;
         -o-transition-delay: .5s;
            transition-delay: .5s;
}

.leaflet-bottom{
    opacity: 0;
    visibility: hidden;
}
.dealer-link-url{
    position: relative;
    height: 100%;
    width: 100%;
}
.dealer__result__item h3, .dealer__result__item h3 a, .dealer__result__item h3 span {
    font-size: 19px;
    line-height: 26px;
    font-family: 'Gordita', sans-serif;
    font-weight: 600;
}

.dealer__result__item h3, .dealer__result__item h3 a:hover, .dealer__result__item h3 span{
    color: white;
}

.dealer__result__item p{
    font-size: 15px;
    line-height: 26px;
    margin-bottom: 0;

}
.dealer-link-url:after, .dealer-link-url:before{
    display: block;
    content: url('../images/arrow.svg');
    position: absolute;
    left: 50%;
    top: 0;
    height: 100%;
    width: auto;
    transform: translateX(-50%) rotate(-45deg);
    -webkit-transform: translateX(-50%) rotate(-45deg);
    -moz-transform: translateX(-50%) rotate(-45deg);
    -ms-transform: translateX(-50%) rotate(-45deg);
    -o-transform: translateX(-50%) rotate(-45deg);
    font-family: swiper-icons;
    font-size: 40px;
    text-transform: none!important;
    letter-spacing: 0;
    text-transform: none;
    font-variant: initial;
    line-height: 1;
    -webkit-transition: all 275ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -o-transition: all 275ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
    transition: all 275ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -moz-transition: all 275ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -ms-transition: all 275ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

.dealer-link{
    overflow: hidden;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
    z-index: 23;
}

/* .dealer-link.inactive{
    z-index: -1;
} */
.dealer-link-url:before{
    opacity: 0;
    transform: translateX(-40px) translateY(30px) rotate(-45deg);
    -webkit-transform: translateX(-40px) translateY(30px) rotate(-45deg);
    -moz-transform: translateX(-40px) translateY(30px) rotate(-45deg);
    -ms-transform: translateX(-40px) translateY(30px) rotate(-45deg);
    -o-transform: translateX(-40px) translateY(30px) rotate(-45deg);
}

.dealer-link:hover .dealer-link-url:before{
    opacity: 1;
    transform: translateX(-50%) rotate(-45deg);
    -webkit-transform: translateX(-50%) rotate(-45deg);
    -moz-transform: translateX(-50%) rotate(-45deg);
    -ms-transform: translateX(-50%) rotate(-45deg);
    -o-transform: translateX(-50%) rotate(-45deg);
}

.dealer-link:hover .dealer-link-url:after{
    opacity: 0;
    transform: translateX(20px) translateY(-30px) rotate(-45deg);
    -webkit-transform: translateX(20px) translateY(-30px) rotate(-45deg);
    -moz-transform: translateX(20px) translateY(-30px) rotate(-45deg);
    -ms-transform: translateX(20px) translateY(-30px) rotate(-45deg);
    -o-transform: translateX(20px) translateY(-30px) rotate(-45deg);
}
.dealer__result__item {
    position: relative;
    padding-top: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(236, 231, 227, 0.2);
}

.dealer__result__item.not-active{
    opacity: .6;
}

.dealer__result__item.active{
    opacity: 1;
}

.dealer__result__item:nth-child(1){
    border-top: 1px solid rgba(236, 231, 227, 0.2);
}

.dealerindex .main-content-wrapper{
    margin-top: 0;
}

.location-wrapper {
    width: 64%;
    height: 100vh;
    margin-bottom: 0px;
    position: relative;
    border-radius: 0px;
    overflow: hidden;
    -ms-border-radius: 0px;
    -o-border-radius: 0px;
}

.maps, #maps, #maps-container{
    height: 100%;
}

.location-wrapper .map,
.location-wrapper .location-info {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #676768;
    overflow: hidden;
}

.location-wrapper .map {
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
}

.location-wrapper .location-info {
    padding: 50px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

.location-wrapper .location-info .location-info-title {
    color: red;
    font-size: 14px;
    line-height: 20px;
}

.location-wrapper .location-info p,
.location-wrapper .location-info a {
    margin-bottom: 0;
    color: white;
}

.location-wrapper .location-info h4 {
    color: white;
    margin-bottom: 16px;
}

.location-wrapper .location-info a {
    margin-top: 16px;
    display: block;
    text-decoration: underline;
}

.locaties {
    position: relative;
    overflow-y: scroll;
    height: calc(100vh - 200px);
    margin-right: 100px;
    padding-right: 40px;
}

.dealer__result .panel .inner-panel{
    padding-top: 10px;
    padding-bottom: 10px;
}

.dealer__result .panel .dealer__result__item, .dealer__result .panel{
    padding: 0 0 0 0;
}

.dealer__result .panel .dealer__result__item.not-active{
    opacity: .7;
}

.dealer__result .panel .dealer__result__item.active{
    opacity: 1;
}

.mob {
    display: none;
    width: 100%;
}

.brandlist h2{
    margin-bottom: 30px;
}

.brandlist .content-right .mob{
    margin-top: 50px;
}

.desk {
    display: block;
}

.leaflet-fade-anim .leaflet-map-pane .leaflet-popup{
    visibility: hidden;
}

.items-container .item-wrapper.download{
    width: calc(76% / 4);
    margin-right: 8%;
    margin-bottom: 2%;
}


.items-container .item-wrapper.download:nth-child(4n){
    margin-right: 0;
}

.item-wrapper.download .button{
    min-width: unset;
}

body #mc_embed_signup{
    background-color: transparent;
}

body #mc_embed_signup form{
    padding: 0 0 0 0;
}

body #mc_embed_signup h2, 
body #mc_embed_signup p,
body #mc_embed_signup .mc-field-group .hide-element{
    display: none;
}

body #mc_embed_signup .mc-field-group{
    width: 100%;
    padding-bottom: 0;
}

.dealer .post-header-wrapper.show .dealer-info{
    background-color: #6F3A10;
    height: 100%;
    position: relative;
    padding: 50px 40px 55px 55px;
}

.post-header-wrapper.show .dealer-link-url:after, .post-header-wrapper.show .dealer-link-url:before{
    content: url('../images/arrowdia.svg');
}

.dealer__result__item{
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
}
.dealer__result__item h3, .dealer__result__item h3 span{
    display: inline-block;
    position: relative;
    background-color: var(--color-navy);
    padding: 0 0 0 0;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
}

.dealer__result__item h3 span{
    position: relative;
    z-index: 4;

    padding-right: 20px;
}

.dealer__result__item.active h3 span{
    background: #54545d;
}
.dealer__result__item .dealer-title{
    overflow: hidden;
    width: 100%;
    position: relative;
}

.dealer__result__item.active {
    background: #54545d;
    padding-left: 20px;
    padding-right: 20px;
}

.dealer__result__item.active .dealer-link{
    right: 20px;
}

.dealer__result__item.active h3{
    background: #54545d;
}

.dealer__result__item:hover h3::after{
    left: unset;
    transform: translateX(0%);
    -webkit-transform: translateX(0%);
    -moz-transform: translateX(0%);
    -ms-transform: translateX(0%);
    -o-transform: translateX(0%);
}

.dealer__result__item.active h3::after{
    color: white;
}


.dealer-info .dealer-link.inactive {
    z-index: 4;
    background: white;
    width: 56px;
    height: 56px;
    top: 42px;
    right: 40px;
}
.day, .time {
    color: white;
}

.dealer .post-header-wrapper.show .header-list{
    padding-left: 20px;
}

.dealer .day{
    width: 50px;
}

.dealer .time{
    width: calc(100% - 50px);
}
/* VIDEO */
/*EXTERNE VIDEO*/

.video-element {
    position: relative;
    padding-top: 56.25%;
    z-index: 1;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    overflow: hidden;
}

.video_placeholder {
    height: 100%;
}

.video-element .item {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: none;
}

.video_placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video_element_button, .close-video {
    top: 50%;
    position: absolute;
    left: 50%;
    transform: translate(-50%, -0%);
    border: 0;
    cursor: pointer;
    opacity: 1;

    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -ms-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}

.video_element_button:focus {
    outline: none;
}

.video-wrapper:hover .video_element_button,
.video-wrapper:hover .close-video {
    transform: translate(-50%, -50%);
    opacity: 1;
}

.video-wrapper {
    width: 100%;
}

.close-video {
    opacity: 1;
    z-index: 1;

    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.iframeWrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.iframeWrapper iframe {
    width: 100%;
    height: 100%;
}

.play-button {
    background-color: #007FFF;
    width: 74px;
    height: 74px;
    border-radius: 100%;
    transform: translate(-50%, 0);
    opacity: 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;
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
}

.play-button svg {
    width: 38px;
    height: 38px;
}

.play-button svg path {
    fill: white;
}

.play-button.close-btn {
    position: absolute;
    display: none;
}

.play-button.open-btn {
    z-index: 2;
}

/* MAPS */
.cluster div{
    top: -7px!important;
}

.cluster div span{
    font-size: 17px;
}

.cons{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column;
}

.cons a{
    text-decoration: underline;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
}

.cons a:hover{
    color: #6f3a0b;
}
.gm-style .gm-style-iw-c{
    background-color: black;
    border-radius: 0;
    padding: 10px;
    padding-right: 10px!important;
    padding-bottom: 10px!important;
}

.gm-style .gm-style-iw-t::after{
    background: linear-gradient(45deg,rgb(0 0 0) 50%,rgba(255,255,255,0) 51%,rgba(255,255,255,0) 100%);
}

button.gm-ui-hover-effect img{
    filter: invert(1);
    -webkit-filter: invert(1);
}

.gmnoprint, button.gm-control-active.gm-fullscreen-control, .gm-svpc{
    display: none;
}
/* MEDIA QUERIES */

@media screen and (max-width: 1500px) {
    .items-container .item-wrapper.download{
        width: calc(85% / 4);
        margin-right: 5%;
        margin-bottom: 2%;
    }
    
    
    .intro.container-small h2{
        padding-right: 20%;
    }

    .intro .columns{
        padding-right: 20%;
    }

    .usps{
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-flow: row wrap;
                flex-flow: row wrap;
        padding-left: 0;
        padding-right: 0;
    }

    .usp{
        width: auto;
        padding-left: 0;
        padding-right: 0;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
    }

    .footer-column-left img{
        width: 140px;
    }
}

@media screen and (max-width: 1300px) {
    .post-header-wrapper.show h1{
        font-size: 60px;
        line-height: 70px;
    }
    .bg-contain{
        border-width: 75px;
    }

    .locaties{
        margin-right: 10px;
        padding: 14px;
    }

    /* .brandlist .logo-image{
        border-left: 30px solid transparent;
        border-right: 30px solid transparent;
    } */
    
    .post-header-wrapper .swiper-wrapper, .post-header-wrapper.show .header-image{
        width: 80%;
    }
    
    
    .post-header-wrapper.show .header-list{
        width: 100%;
        margin-top: 40px;
        padding-right: 0;
        width: 80%;
    }

    .post-header-wrapper.show .header-list .list:nth-child(1){
        border-top: none;

    }

    .logo-wrapper{
        width: 50%
    }

}


@media screen and (max-width: 1024px) {
    .dealer__result__item h3, .dealer__result__item h3 span, .dealer__result__item.active h3 span{
        background-color: transparent!important;
    }
    .dealer__result__item h3::after{
        display: none;
    }
    .button, .button a, .button::after, .button.send .send-inner{
        min-width: 100px;
    }
    .footer .footer-column.footer-column-right::before{
        width: 100%;
        left: 8%;
    }

    .navbar-user{
        box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
    }


    .location-wrapper:before{
        content: '';
        position: absolute;
        bottom: 0;
        width: 100%;
        height: 30%;
        background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(var(--color-navy)));
        background-image: -o-linear-gradient(rgba(0, 0, 0, 0), var(--color-navy));
        background-image: linear-gradient(rgba(0, 0, 0, 0), var(--color-navy));
        left: 0;
        z-index: 1000;
    }

    .dealer__result__item.active{
        background-color: var(--color-black);
        margin-bottom: 200px;
        border-bottom: none;
    }
    .dealer-container {
        padding-right: 0;
        padding-left: 0;
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
            -ms-flex-direction: column-reverse;
                flex-direction: column-reverse;
    }

    .locatie-overzicht, .location-wrapper{    
        width: 100%;
    }

    .locatie-overzicht{
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        height: auto;
        width: 100%;
        position: relative;
        z-index: 1001;
        bottom: 0px;
        top: 0;
        margin-top: 0;
        transition: all .7s ease-in-out;
        -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;
}

    .active-locations{
        margin-top: -250px;
    }

    .locaties{
        top: 0;
        height: 100vh;
    }
    .location-wrapper:hover .leaflet-top{
        display: none;
    }
    .dealer__result__item:nth-child(1){
        border-top: 1px solid rgba(236, 231, 227, 0);
    }

    .dealer__result__item.active{
        display: block;
        order: 1;
    }

    .dealer__result__item{
        order: 2;
        width: 100%
    }
    .locaties{
        margin-right: 0;
        height: auto;
        width: 100%;
        padding-right: 8%;
        padding-left: 8%;
        display: flex;
        flex-flow: row wrap;
    }
    .marb {
        margin-bottom: 1rem;
    }

    .footer .footer-column.footer-column-left{
        width: 100%;
        padding-left: 8%;
        padding-right: 8%;
    }

    .footer .footer-column.footer-column-right{
        width: 100%;
        padding-left: 16%;
        padding-right: 8%;
    }

    .footer .footer-column.footer-column-right .first_column, .footer .footer-column.footer-column-right .second_column, .footer .footer-column.footer-column-right .third_column, .footer .footer-column.footer-column-right .last_column {
        width: 50%;
        padding-right: 0;
        height: auto;
        padding-bottom: 40px;
    }

    .item-wrapper.merk, .item-wrapper.project, .item-wrapper.blog-post{
        width: calc(93% / 2);
    }

    .items-container .item-wrapper.project:nth-child(2n), 
    .items-container .item-wrapper.merk:nth-child(2n), 
    .items-container .item-wrapper.blogpost:nth-child(2n) {
        margin-right: 0;
    }
    .item-wrapper.oplossing .item-content{
        padding: 30px 0 30px 0;
    }

    .index-header .post-header-inner{
        padding-top: 100px;
    }

    .post-header-wrapper .content-wrapper{
        width: 100%;
        padding-left: 0;
        padding-right: 0;
        padding-top: 0;
        padding-bottom: 50px;
    }

    .post-header-wrapper .content-wrapper:nth-last-child(1){
        padding-bottom: 0;
    }

    .post-header-wrapper .subtitel{
        top: 50px;
    }

    .subtitel span{
        font-size: 30vw;
        line-height: 30vw;
    }

    .plate--column{
        min-height: unset;
    }

    .footer .footer-column.footer-column-left{
        padding-bottom: 40px;
        min-height: unset;
    }

    .copyright{
        margin-bottom: 0;
        margin-top: 30px;
    }

    .navbar .plate--container{
        padding-left: 0;
        padding-right: 0;
    }

    .navbar .navbar-inner{
        padding-left: 8%;
        padding-right: 8%;  
    }

    .navbar-toggler{
        display: block;
    }


    .navbar-main, .navigation.fixed-header .navbar-main{
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: flex-start;
        -webkit-box-pack: start;
            -ms-flex-pack: start;
                justify-content: flex-start;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        padding-top: 100px;
    }

    .navbar-collapse {
        position: absolute;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
            -ms-flex-direction: column-reverse;
                flex-direction: column-reverse;
        -webkit-box-pack: end;
            -ms-flex-pack: end;
                justify-content: flex-end;
        width: 100%;
        top: -15px;
        height: 100vh;
        background: -o-linear-gradient(324deg, #6f3a0c, #000000);
        background: linear-gradient(0.35turn, #6f3a0c, #000000);
        right: 100%;
        transition: all .3s ease-in-out;
        -webkit-transition: all .3s ease-in-out;
        -moz-transition: all .3s ease-in-out;
        -ms-transition: all .3s ease-in-out;
        -o-transition: all .3s ease-in-out;
        padding: 8%;
    }

    .nav-link::after{
        display: none;
    }

    .navigation.fixed-header.nav-down.menu-open .navbar{
        transform: translate(0);
        -webkit-transform: translate(0);
        -moz-transform: translate(0);
        -ms-transform: translate(0);
        -o-transform: translate(0);
    }
    .navigation.fixed-header .navbar-upper-nav.navbar-nav{
        height: unset;
        margin-bottom: 0;
        opacity: 1;
        visibility: visible;
    }
    .navbar-nav .nav-link:hover, .navbar-nav .nav-item.active .nav-link, .navbar-nav .nav-link:hover, .navigation.fixed-header .navbar-nav .nav-link:hover, .nav-item.active .nav-link, .navigation.fixed-header .navbar-nav .nav-item.active .nav-link {
        color: rgba(255, 255, 255, 0.6);
        padding-left: 10px;
    }
    .menu-open .navbar-collapse{
        right: 0%;
    }

    .navbar-nav a.nav-link {
        font-size: 32px;
        line-height: 60px;
    }

    
 

    .navbar-upper-nav{
        padding-top: 50px;
        -webkit-box-pack: start;
            -ms-flex-pack: start;
                justify-content: flex-start;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-flow: column;
                flex-flow: column;
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: flex-start;
        height: auto;
    }

    .landings-page .post-header-wrapper.show .content-wrapper{
        max-width: 100%;
    }

    .landings-page .landing--header.post-header-wrapper .button {
        width: fit-content;
        display: flex;
        margin: 5px auto;
    }

    .landings-page .landing--header.post-header-wrapper .knoppen{
        flex-flow: column;
    }

    .mobile-switcher {
        margin-left: auto;
        margin-right: 10px;
    }
    .desktop-switcher { 
        display: none;
    }
    .flag {
        width: 24px;
        height: 24px;
    }
    .language-switcher:hover .language-dropdown {
        margin-top: 20px;
    }
    .language-dropdown-btn:after{
        transform: translateY(6px) rotate(45deg);
        -webkit-transform: translateY(6px) rotate(45deg);
        -moz-transform: translateY(6px) rotate(45deg);
        -ms-transform: translateY(6px) rotate(45deg);
        -o-transform: translateY(6px) rotate(45deg);
    }
    .mobile-switcher {
        display: inline-block;
    }
    /*
    .language-switcher{
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        margin-top: 30px;
    }
    .language-dropdown-btn{
        display: none;
    }

    .language-dropdown{
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        position: relative;
        background-color: transparent;
        right: 0;
        margin-top: 0;
        top: unset;
        margin-bottom: 0;
        visibility: visible;
        opacity: 1;
        border-radius: 0;
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        -ms-border-radius: 0;
        -o-border-radius: 0;
    }

    .language-dropdown li:nth-child(1){
        padding-left: 0;
    }

    .language-dropdown li.current{
        display: block;
    }
    .language-switcher:hover .language-dropdown{
        margin-top: 0;
    }

    .language-dropdown li{
        padding: 0 6px;
    }*/
    li.upper-nav-item.nav-item{
        margin-bottom: 15px;
    }

    .item-wrapper.download{
        width: calc(93% / 2);
    }

    .item-wrapper.download:nth-child(2n){
        margin-right: 0;
    }

}

@media screen and (min-width: 992px) {
    .dealerindex .navbar-nav .nav-link{
        color: var(--color-navy);
    }

   
    .dealerindex .navbar-nav .nav-link:hover, .dealerindex .navigation.fixed-header .navbar-nav .nav-link:hover, .dealerindex  .nav-item.active .nav-link, .dealerindex .navigation.fixed-header .navbar-nav .nav-item.active .nav-link{
        color: #6f3a0c;
    }

    .dealerindex .language-dropdown-btn:after{
        border-color: var(--color-navy);
    }
}
@media screen and (max-width: 992px) {

    .navigation{
        position: fixed;
    }
    .usp-divider{
        transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        width: 100%;
        height: 1px;
    }

    .mob {
        display: block;
    }
    
    .desk {
        display: none;
    }

    .is-inview{
        transform: translate(0, 0)!important;
        -webkit-transform: translate(0, 0)!important;
        -moz-transform: translate(0, 0)!important;
        -ms-transform: translate(0, 0)!important;
        -o-transform: translate(0, 0)!important;
    }

    

   .filter-category {
       display: none;
   }
    .brandlist .content-left{
        width: 100%;
        padding: 30px;
    }

    .brandlist .content-right{
        width: 100%;
        padding: 0 30px 30px;
    }

    .brandlist .button{
        margin-top: 15px;
        margin-bottom: 0px;
    }

    /* .brandlist .logo-image{
        border-left: 20px solid transparent;
        border-right: 20px solid transparent;
    } */

    .section-container .subtitel{
        text-align: right;
        bottom: 70px;
        left: unset;
        right: 8%;
    }

    .intro.container-small h2{
        padding-right: 0%;
    }

    .item-wrapper.download .item-image{
        padding-top: calc(130.5% / 2);
        width: 50%;
    
    }

}

@media screen and (max-width: 767px) {

    .post-header-wrapper.show .header-image img{
        max-height: 30vh;
        object-fit: contain;
        -o-object-fit: contain;
    }

    .home-header.post-header-wrapper.show.page--header{
        min-height: 80vh;
        height: auto;
        margin-bottom: 5vh;
    }

    p:empty {
        display: none
    }
    .post-header-wrapper.show .header-list{
        width: 100%;
        padding-right: 8%;
    }

    .post-header-wrapper.show .header-image{
        width: 92%;
    }

   
    h1, .post-header-wrapper.show h1{
        font-size: 47px;
        line-height: 49px;
    }

    h2{
        font-size: 30px;
        line-height: 40px;
    }


    .brandlist .content-right .mob{
        margin-top: 10px;
    }

    .brand-list .list{
        width: 100%;
    }
    .brand-list .list:nth-child(n+1){
        margin-top: -1px;
    }
    .intro .columns {
        -webkit-columns: 1;
           -moz-columns: 1;
                columns: 1;
        width: 100%;
        padding-right: 0;
        -webkit-column-gap: 0px;
           -moz-column-gap: 0px;
                column-gap: 0px;
    }

    .post-header-wrapper.show h1{
        padding-left: 8%;
        padding-right: 25%;
    }

    .container-small{
        padding-left: 8%;
        padding-right: 8%;
    }
    .post-header-wrapper.show .header-image{
        transform: translateY(-30px);
        -webkit-transform: translateY(-30px);
        -moz-transform: translateY(-30px);
        -ms-transform: translateY(-30px);
        -o-transform: translateY(-30px);
    }
    /* .home-header .swiper-container{
        min-height: 100vh;
    } */

    .post-header-wrapper .swiper-wrapper{
        width: 100%;
    }

    .post-header-wrapper.show .swiper-wrapper .title-container{
        padding-left: 8%;
        margin-top: -50px;
    }

    .post-header-wrapper.home-header .swiper-wrapper .swiper-slide{
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
            -ms-flex-flow: row-reverse wrap;
                flex-flow: row-reverse wrap;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        padding-top: 50px;
    }

    .post-header-wrapper.home-header.show .swiper-wrapper .header-image {
        width: 84%;
        position: relative;
        margin-bottom: 0px!important;
        transform: translate(0px, 40px);
        -webkit-transform: translate(0px, 40px);
        -moz-transform: translate(0px, 40px);
        -ms-transform: translate(0px, 40px);
        -o-transform: translate(0px, 40px);
        margin-right: auto;
        margin-left: auto;
}

    .swiper-buttons{
        width: 100%;
        margin-top: 0px;
        position: relative;
        -webkit-transform: translate(0px, 0px);
            -ms-transform: translate(0px, 0px);
                transform: translate(0px, 0px);
    }
    .post-category-selection .filter-category {
        margin-right: 0px;
        margin-bottom: 0;
        width: 100%;
    }
    
    .post-category-selection .category-selection-field {
        margin-bottom: 5px;
        margin-top: 5px;
    }

    .item-wrapper{
        width: 100%!important;
        margin-right: 0!important;
    }

    .item-wrapper.download{
        width: calc(96% / 2)!important;
        margin-right: 4%!important;
    }

    .item-wrapper.download:nth-child(2n){
        margin-right: 0!important;
    }

    .item-wrapper.download .item-image{
        padding-top: 130.5%;
        width: 100%;
    }

    .footer{
        padding-top: 75px;
    }

    .footer .footer-column.footer-column-right .first_column, .footer .footer-column.footer-column-right .second_column, .footer .footer-column.footer-column-right .third_column, .footer .footer-column.footer-column-right .last_column {
        width: 100%;
    }

    .footer .footer-column.footer-column-right .last_column svg {
        margin-bottom: 25px;
        margin-right: 13px;
    }

    .creator{
        padding: 6%;
    }

    .creator-text{
        margin-bottom: 20px!important;
    }
    .block-inner{
        width: 100%;
    }
    .right.block-inner{
        padding-top: 56.25%;
    }

    .logo-wrapper{
        justify-content: flex-start;
    }

    
}



@media screen and (min-width: 1500px){
}
@media screen and (min-width: 1024px){
    .items-container .item-wrapper.project:nth-child(3n), 
    .items-container .item-wrapper.merk:nth-child(3n), 
    .items-container .item-wrapper.blogpost:nth-child(3n) {
        margin-right: 0;
    }

    .items-container .item-wrapper.oplossing{
        width: calc(93% / 2);
        margin-right: 7%;
        margin-bottom: 4%;
    }

    .items-container .item-wrapper.oplossing:nth-child(2n) {
        margin-right: 0;
        /* top: 55px; */
    }
}

@-webkit-keyframes lds {
    0% {
        top: 50%;
        height: 64px;
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
}
    50%, 100% {
        top: 50%;
        height: 32px;
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
    }
}

@keyframes lds {
    0% {
        top: 50%;
        height: 64px;
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
}
    50%, 100% {
        top: 50%;
        height: 32px;
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
    }
}


@-webkit-keyframes spin {
    0% { transform: rotate(0deg); -webkit-transform: rotate(0deg); -moz-transform: rotate(0deg); -ms-transform: rotate(0deg); -o-transform: rotate(0deg); }
    100% { transform: rotate(360deg); -webkit-transform: rotate(360deg); -moz-transform: rotate(360deg); -ms-transform: rotate(360deg); -o-transform: rotate(360deg); }
}


@keyframes spin {
    0% { transform: rotate(0deg); -webkit-transform: rotate(0deg); -moz-transform: rotate(0deg); -ms-transform: rotate(0deg); -o-transform: rotate(0deg); }
    100% { transform: rotate(360deg); -webkit-transform: rotate(360deg); -moz-transform: rotate(360deg); -ms-transform: rotate(360deg); -o-transform: rotate(360deg); }
}
