:root {

}

@font-face {
    font-family: 'FrankRuhlLibre';
    src: url('../fonts/FrankRuhlLibre-Regular.woff2') format('woff2'),
    url('../fonts/FrankRuhlLibre-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;


}

@font-face {
    font-family: 'NewsGothicMT';
    src: url('../fonts/NewsGothicMT.woff2') format('woff2'),
    url('../fonts/NewsGothicMT.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}


html {
    scroll-behavior: smooth;
}

/* FONT & TEXT STYLING */

h1, h2, h3, h4, h5, h6 {
    font-family: 'NewsGothicMT';
    color: #5c5c5c;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-transform: uppercase;
}

h1 {
    /* font-size: 90px;
    line-height: 107px; */
    font-size: 45px;
    line-height: 50px;
}

h2 {
    font-size: 26px;
    line-height: 28px;
}

h3 {
    font-size: 26px;
    line-height: 28px;
}

h4, .product-cat-link a {
    font-size: 26px;
    line-height: 28px;
    font-family: 'NewsGothicMT';
    text-transform: uppercase;
}

h5 {
    font-size: 25px;
    line-height: 32px;
}

h6 {
    font-size: 18px;
    line-height: 26px;
}

p, p.text-uppercase, a, u, span, select, section, td, th, option, form, input, b, strong, ul, ol, li, textarea, label, button, input, iframe, table {
    font-family: 'NewsGothicMT';
    font-size: 16px;
    line-height: 28px;
    color: #484848;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

span{
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
    letter-spacing: inherit;
    line-height: inherit;
    font-family: inherit;
}
P{
    font-family: 'FrankRuhlLibre';
}

body{
    max-width: 100vw;
    overflow-x: hidden;
}
/*SMOOTH SCROLL STYLING*/

/* html, body {
    width: 100vw;
    height: 100vh;
}

::-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;
    transform-origin: center right;
    transition: transform 0.4s, opacity 0.4s;
    opacity: 0;
    z-index: 99;
}

.c-scrollbar:hover {
    transform: scaleX(1.45);
}

.c-scrollbar:hover, .has-scroll-scrolling .c-scrollbar, .has-scroll-dragging .c-scrollbar {
    opacity: 1;
}

.c-scrollbar_thumb {
    position: absolute;
    top: 0;
    right: 0;
    background-color: #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;
} */

/* GENERAL STYLING */

.language-switcher {
    position: relative;
    width: 100%;
    height: 67px;
    z-index: 4;
}

.language-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    padding-top: 65px;
}

.language-list li {
    position: relative;
    margin-right: 20px;
}

.language-list li:last-child {
    margin-right: 0;
}

.language-list li a {
    font-size: 14px;
    color: rgba(103, 103, 104, 0.5);
    text-decoration: none;
    -webkit-transition: all .4s cubic-bezier(0.22, 0.61, 0.36, 1);
    -moz-transition: all .4s cubic-bezier(0.22, 0.61, 0.36, 1);
    -ms-transition: all .4s cubic-bezier(0.22, 0.61, 0.36, 1);
    -o-transition: all .4s cubic-bezier(0.22, 0.61, 0.36, 1);
    transition: all .4s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.language-list li.current a,
.language-list li:hover a {
    color: rgba(103, 103, 104, 1);;
}

:focus {
    outline: none;
}

.lockScroll {
    width: 100%;
    overflow: hidden;
}

.render-content {
    position: relative;
}

.render-content-blog {
    margin-top: 65px;
}

.full-link-btn {
    position: absolute;
    height: 100%;
    width: 100%;
    display: block;
    z-index: 3;
    top: 0;
    left: 0;
}

.full-link-btn.rel {
    position: relative;
}

.bg-cover {
    -webkit-background-size: cover;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.main-content-wrapper {
    width: 100%;
    position: relative;
    padding-top: 185px;
}

.main-content-wrapper.less-padding {
    padding-top: 125px;
}

.left,
.right {
    position: relative;
    width: calc(50% - 10px);
}

.right .product-subtitel p{
    text-align: right;
}
/*LOADER STYLING*/

#loader-wrapper {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    background: #dbdbdb;
    z-index: 1000;

    opacity: 1;

    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);

    -webkit-transition: all 1s cubic-bezier(0.22, 0.61, 0.36, 1), opacity .6s cubic-bezier(0.22, 0.61, 0.36, 1);
    -moz-transition: all 1s cubic-bezier(0.22, 0.61, 0.36, 1), opacity .6s cubic-bezier(0.22, 0.61, 0.36, 1);
    -ms-transition: all 1s cubic-bezier(0.22, 0.61, 0.36, 1), opacity .6s cubic-bezier(0.22, 0.61, 0.36, 1);
    -o-transition: all 1s cubic-bezier(0.22, 0.61, 0.36, 1), opacity .6s cubic-bezier(0.22, 0.61, 0.36, 1);
    transition: all 1s cubic-bezier(0.22, 0.61, 0.36, 1), opacity .6s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.loaded #loader-wrapper {
    opacity: 0;

    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    transform: translateY(-100%);
}

.already-loaded #loader-wrapper {
    display: none;
}

#loader {
    position: relative;
    height: 55px;
    overflow: hidden;
}

.letters {
    position: relative;
    overflow: hidden;
    height: 100%;

    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.letter {
    position: relative;
    margin-right: 7px;
    overflow: hidden;

    -webkit-transition: all .6s cubic-bezier(0.34, 1.56, 0.64, 1);
    -moz-transition: all .6s cubic-bezier(0.34, 1.56, 0.64, 1);
    -ms-transition: all .6s cubic-bezier(0.34, 1.56, 0.64, 1);
    -o-transition: all .6s cubic-bezier(0.34, 1.56, 0.64, 1);
    transition: all .6s cubic-bezier(0.34, 1.56, 0.64, 1);

    -webkit-transform: translateY(102%);
    -moz-transform: translateY(102%);
    -ms-transform: translateY(102%);
    -o-transform: translateY(102%);
    transform: translateY(102%);
}

.start .letter {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);

    transition-delay: .15s;
}

.letter.ls {
    margin-right: 4px;
}

.letter.o {
    margin-right: 4px;

    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.start .letter.o {
    -webkit-transform: translateY(-12%);
    -moz-transform: translateY(-12%);
    -ms-transform: translateY(-12%);
    -o-transform: translateY(-12%);
    transform: translateY(-12%);

    transition-delay: 0s!important;
}

.start .letter.i {
    transition-delay: .12s;
}


.words {
    position: relative;
    height: 100%;
    margin-left: 26px;
    overflow: hidden;

    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;

    -webkit-transition: all .6s cubic-bezier(0.34, 1.56, 0.64, 1);
    -moz-transition: all .6s cubic-bezier(0.34, 1.56, 0.64, 1);
    -ms-transition: all .6s cubic-bezier(0.34, 1.56, 0.64, 1);
    -o-transition: all .6s cubic-bezier(0.34, 1.56, 0.64, 1);
    transition: all .6s cubic-bezier(0.34, 1.56, 0.64, 1);

    -webkit-transform: translateY(102%);
    -moz-transform: translateY(102%);
    -ms-transform: translateY(102%);
    -o-transform: translateY(102%);
    transform: translateY(102%);
}

.word {
    position: relative;
    line-height: 12px;

    -webkit-transform: translateY(102%);
    -moz-transform: translateY(102%);
    -ms-transform: translateY(102%);
    -o-transform: translateY(102%);
    transform: translateY(102%);

    -webkit-transition: all .6s cubic-bezier(0.34, 1.56, 0.64, 1);
    -moz-transition: all .6s cubic-bezier(0.34, 1.56, 0.64, 1);
    -ms-transition: all .6s cubic-bezier(0.34, 1.56, 0.64, 1);
    -o-transition: all .6s cubic-bezier(0.34, 1.56, 0.64, 1);
    transition: all .6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.start .words {
    transition-delay: .15s;
}

.start .words,
.start .word {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}

.word:nth-child(1) {
    transition-delay: .15s;
}
.word:nth-child(2) {
    transition-delay: .25s;
}
.word:nth-child(3) {
    transition-delay: .35s;
}



/* SECTION STYLING */

.section-container {
    position: relative;
    width: 100%;
}

.section-content {
    position: relative;
    z-index: 2;
}

.plate--container {
    width: 100%;
    max-width: 1100px;
    padding-left: 15px;
    padding-right: 15px;
}

.plate--container-fluid{
    padding-left: 20px;
    padding-right: 20px;
    max-width: 100%; /* HIGHLIGHT -- 1500PX */
}
/* 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-reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.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-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;
}

.plate--column {
    padding-right: 10px;
    padding-left: 10px;
}

.plate--row {
    margin-right: -10px;
    margin-left: -10px;
}

.img-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #dbdbdb;
}

/* 404 MESSAGE  */

.error-message {
    position: relative;
    width: 100%;
    height: 500px;
    z-index: 3;
}

.top-bar {
    position: relative;
    height: 35px;
    width: 100%;
    text-align: center;
    background-color: #dbdbdb;
    overflow: hidden;
    z-index: 99;

    -webkit-transition: height .5s ease;
    -moz-transition: height .5s ease;
    -ms-transition: height .5s ease;
    -o-transition: height .5s ease;
    transition: height .5s ease;
}

.fixed-header .top-bar,
.lockScroll .top-bar {
    height: 0;
}

.top-bar p {
    font-size: 14px;
    color: white;
    margin-bottom: 0;
    line-height: 35px;
}

.cta-bar {
    position: fixed;
    width: 100%;
    height: 60px;
    top: calc(100vh - 60px);
    z-index: 98;
    background-color: #dbdbdb;

    /* -webkit-transform: translateY(100%);
    -moz-transform: translateY(100%);
    -ms-transform: translateY(100%);
    -o-transform: translateY(100%);
    transform: translateY(100%);

    /* -webkit-transition: transform .5s ease;
    -moz-transition: transform .5s ease;
    -ms-transition: transform .5s ease;
    -o-transition: transform .5s ease;
    transition: transform .5s ease; */
}

.cta-bar.show-cta {
    /* -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0); */

}

.cta-bar .plate--container{
    height: 100%;
}

.cta-bar .cta-item {
    position: relative;
    height: 100%;
    width: calc(1/2 * 100% - (1 - 1/2) * 1px);
    border: 0;
    border-left: none;
}
.cta-bar .cta-item:nth-last-child(1){
    border-right: none;
}

.cta-bar .cta-item a {
    color: #484848;
    font-size: 14px;
    text-decoration: none;
    padding: 20px 22px;
    transition: all .4s ease-in-out;
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -ms-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
}
.cta-bar .cta-item .button:hover a{
    color: white;
}
/* NAVIGATION STYLING */

.navigation {
    position: fixed;
    width: 100%;
    height: auto;
    background: white;
    z-index: 99;
    opacity: 1;
    top: 0;
    visibility: visible;

    /* -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease; */
}

.navigation.nav-down {
    opacity: 0;
    visibility: hidden;
}

.config-mode .navigation {
    -webkit-transform: none!important;
    -moz-transform: none!important;
    -ms-transform: none!important;
    -o-transform: none!important;
    transform: none!important;
}

.navbar {
    position: relative;
    height: 125px;
    padding: 0;

    -webkit-transition: height .5s ease;
    -moz-transition: height .5s ease;
    -ms-transition: height .5s ease;
    -o-transition: height .5s ease;
    transition: height .5s ease;
}

.fixed-header .navbar {
    height: 67px;
}

.fixed-header .menu-open .navbar{
    height: 125px;
}

.product-cat-list{
    width: 100%;
}


.navbar-inner {
    position: relative;
    z-index: 400;
}

.navbar-brand {
    position: relative;
    margin-right: 30px;
    height: 100%;
    padding-top: 0;
    padding-bottom: 0;
    z-index: 1000;
}

.menu-open .navbar-brand{
    z-index: 400;
}
.navbar-brand img {
    max-height: 100%;
    width: 260px;
    backface-visibility: hidden;
    object-fit: contain;
}

#navbarResponsive {
    width: 100%;
    height: 100vh;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    opacity: 0;
    z-index: 98;
    background-color: white;
    -webkit-transform: translateY(-101%);
    -moz-transform: translateY(-101%);
    -ms-transform: translateY(-101%);
    -o-transform: translateY(-101%);
    transform: translateY(-101%);
    transition: transform .4s cubic-bezier(0.22, 0.61, 0.36, 1), opacity .4s cubic-bezier(0.22, 0.61, 0.36, 1);
    -webkit-transition: transform .4s cubic-bezier(0.22, 0.61, 0.36, 1), opacity .4s cubic-bezier(0.22, 0.61, 0.36, 1);
    -moz-transition: transform .4s cubic-bezier(0.22, 0.61, 0.36, 1), opacity .4s cubic-bezier(0.22, 0.61, 0.36, 1);
    -ms-transition: transform .4s cubic-bezier(0.22, 0.61, 0.36, 1), opacity .4s cubic-bezier(0.22, 0.61, 0.36, 1);
    -o-transition: transform .4s cubic-bezier(0.22, 0.61, 0.36, 1), opacity .4s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.menu-open #navbarResponsive {
    background-color: white;
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: transform .4s cubic-bezier(0.22, 0.61, 0.36, 1), opacity .4s cubic-bezier(0.22, 0.61, 0.36, 1);
    -moz-transition: transform .4s cubic-bezier(0.22, 0.61, 0.36, 1), opacity .4s cubic-bezier(0.22, 0.61, 0.36, 1);
    -ms-transition: transform .4s cubic-bezier(0.22, 0.61, 0.36, 1), opacity .4s cubic-bezier(0.22, 0.61, 0.36, 1);
    -o-transition: transform .4s cubic-bezier(0.22, 0.61, 0.36, 1), opacity .4s cubic-bezier(0.22, 0.61, 0.36, 1);
    transition: transform .4s cubic-bezier(0.22, 0.61, 0.36, 1), opacity .4s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.menu-wrapper {
    position: relative;
    width: 100%;
    height: 100%;

    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}

.navbar-nav {
    position: relative;
    width: 100%;
    height: calc(100% - 50px);
}

.menu-product-cats {
    position: absolute;
    background-color: transparent;
    width: 40%;
    height: 15%;
    padding-left: 0;
    padding-right: 5%;
    overflow: visible;
    z-index: 10;
    opacity: 0;
    visibility: hidden;

    -webkit-transition: transform 1s cubic-bezier(0.22, 0.61, 0.36, 1), opacity .8s cubic-bezier(0.22, 0.61, 0.36, 1);
    -moz-transition: transform 1s cubic-bezier(0.22, 0.61, 0.36, 1), opacity .8s cubic-bezier(0.22, 0.61, 0.36, 1);
    -ms-transition: transform 1s cubic-bezier(0.22, 0.61, 0.36, 1), opacity .8s cubic-bezier(0.22, 0.61, 0.36, 1);
    -o-transition: transform 1s cubic-bezier(0.22, 0.61, 0.36, 1), opacity .8s cubic-bezier(0.22, 0.61, 0.36, 1);
    transition: transform 1s cubic-bezier(0.22, 0.61, 0.36, 1), opacity .8s cubic-bezier(0.22, 0.61, 0.36, 1);

    -webkit-transform: translateY(202%);
    -moz-transform: translateY(202%);
    -ms-transform: translateY(202%);
    -o-transform: translateY(202%);
    transform: translateY(202%);
}

.menu-open .menu-product-cats {
    opacity: 1;
    visibility: visible;

    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    position: absolute;
    top: 10px;
}

.menu-product-cats:before,
.quote-afbeelding:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color:#676768;
}

.quote-afbeelding:before{
    opacity: .75;
}

.menu-product-cats:before{
    left: unset;
    right: 0;
    width: 400%;
    display: none;
}
/* .menu-product-cats:after {
    content: '';
    position: absolute;
    height: 40%;
    width: 100%;
    z-index: 2;
    top: 0;
    left: 0;
    mix-blend-mode: multiply;
    background: rgb(136,137,138);
    background: -moz-linear-gradient(180deg, rgba(136,137,138,1) 0%, transparent 100%);
    background: -webkit-linear-gradient(180deg, rgba(136,137,138,1) 0%, transparent 100%);
    background: linear-gradient(180deg, rgba(136,137,138,1) 0%, transparent 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#676768",endColorstr="#ffffff",GradientType=1);
} */

.menu-image {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    opacity: 0;

    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);

    -webkit-transition: all 1s cubic-bezier(0.22, 0.61, 0.36, 1);
    -moz-transition: all 1s cubic-bezier(0.22, 0.61, 0.36, 1);
    -ms-transition: all 1s cubic-bezier(0.22, 0.61, 0.36, 1);
    -o-transition: all 1s cubic-bezier(0.22, 0.61, 0.36, 1);
    transition: all 1s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.menu-image.active {
    opacity: 1;
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
    transform: scale(1.05);
}
.menu-content {
    position: relative;
    width: 100%;
    height: 100%;
    padding-right: 0;
    padding-left: 0;
    z-index: 1;
}

.menu-content:before {
    content: '';
    position: absolute;
    width: 400%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: white;
    display: none;
}

.menu-column-wrapper {
    position: relative;
    height: calc(100% - 250px);
    margin: auto 0;
    background-color: #dbdbdb;
    padding: 150px 50px;
}

.menu-column {
    position: relative;
    width: 60%;
    height: 100%;
    padding-left: 7%;
}

.menu-column-inner {
    position: relative;
    height: 100%;
    width: 100%;
    max-height: 320px;
}

.menu-column-inner .column-title {
    margin-bottom: 20px;
}

.menu-column-inner p,
.menu-column-inner a {
    position: relative;
    margin-bottom: 0;
    display: inline-block;
    color: #484848;
    padding-top: 0;
    padding-bottom: 0;
    text-decoration: none;
}

.navbar-nav .nav-item a {
    margin-bottom: 10px;
    text-transform: uppercase;
}

.nav-item{
    display: block;
    position: relative;
    width: 50%;
}

.nav-item a:after,
.footer-item a:after,
.designers a:after,
.index-link:after,
.breadcrumbs a:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 1px;
    width: 100%;
    background-color: #dbdbdb;
    backface-visibility: hidden;
    opacity: 0;

    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);

    -webkit-transition: all .8s ease;
    -moz-transition: all .8s ease;
    -ms-transition: all .8s ease;
    -o-transition: all .8s ease;
    transition: all .8s ease;
}

.nav-item a:hover:after,
.footer-item a:hover:after,
.designers a:hover:after,
.index-link:hover:after,
.cta-item a:hover:after,
.breadcrumbs a:hover:after {
    opacity: 1;

    -webkit-transform: translateY(-3px);
    -moz-transform: translateY(-3px);
    -ms-transform: translateY(-3px);
    -o-transform: translateY(-3px);
    transform: translateY(-3px);
}

.menu-content .social-media {
    position: absolute;
    bottom: 100px;
    width: auto;
    left: -100%;
}

.menu-content .social-media a {
    position: relative;
    color: #484848;
    font-size: 14px;
    margin-right: 24px!important;
    text-decoration: none;
}

.button.menu-button {
    position: relative;
    margin-left: auto;
    margin-right: 50px;
    z-index: 99;
    height: 32px;
    background-color: transparent;
    border: 1px solid #dbdbdb;
}

.button.cta-item:after{
    background-color: white;
}
.button.menu-button:after, .button.cta-item:after{
    opacity: 0;
    transform: translateY(0%);
    -webkit-transform: translateY(0%);
    -moz-transform: translateY(0%);
    -ms-transform: translateY(0%);
    -o-transform: translateY(0%);
    transition: all .4s cubic-bezier(.22,.61,.36,1);
    -webkit-transition: all .4s cubic-bezier(.22,.61,.36,1);
    -moz-transition: all .4s cubic-bezier(.22,.61,.36,1);
    -ms-transition: all .4s cubic-bezier(.22,.61,.36,1);
    -o-transition: all .4s cubic-bezier(.22,.61,.36,1);
}

.button.white{
    border: 1px solid #484848
}

.button.white::after{
    background-color: white;
}
.button.menu-button:hover a{
    color: #484848;
}
.button.menu-button:after,  .button.cta-item:hover:after, form .button.submit-form-btn::after{
    opacity: 1;
}

.button.menu-button:after{
    background: #dbdbdb;
}

.button.menu-button:hover:after{
    opacity: 0;
}

.button.menu-button a{
    padding: 8px 12px;
    color: #484848;
    transition: all .4s cubic-bezier(.22,.61,.36,1);
    -webkit-transition: all .4s cubic-bezier(.22,.61,.36,1);
    -moz-transition: all .4s cubic-bezier(.22,.61,.36,1);
    -ms-transition: all .4s cubic-bezier(.22,.61,.36,1);
    -o-transition: all .4s cubic-bezier(.22,.61,.36,1);
}
.product-cat-list {
    position: relative;
    list-style: none;
    padding-left: 0;
    height: 100%;
    z-index: 3;
    margin-top: 0px;
    width: 40%;
}

.product-cat-link {
    position: relative;
    margin-bottom: 19px;
}

.product-cat-link:last-child {
    margin-bottom: 0;
}

.product-cat-link a {
    font-family: 'NewsGothicMT';
    color: #484848;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-decoration: none;
    text-transform: uppercase;
    transition: all .3s cubic-bezier(0.22, 0.61, 0.36, 1);
    -webkit-transition: all .3s cubic-bezier(0.22, 0.61, 0.36, 1);
    -moz-transition: all .3s cubic-bezier(0.22, 0.61, 0.36, 1);
    -ms-transition: all .3s cubic-bezier(0.22, 0.61, 0.36, 1);
    -o-transition: all .3s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.product-cat-link:hover a, .menu-column-inner p:hover, .menu-column-inner a:hover {
    color: rgba(103, 103, 104, 0.5);
}

/*TITEL ANIMATIE*/

.anim-title {
    position: relative;
}

.anim-menu {
    position: relative;
}

.anim-title__wrapper {
    display: block;
    position: relative;
    overflow: hidden;
}

.anim-title__inner {
    display: block;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    will-change: transform;

    -webkit-transition: transform 1s cubic-bezier(.22,.61,.36,1);
    -moz-transition: transform 1s cubic-bezier(.22,.61,.36,1);
    -ms-transition: transform 1s cubic-bezier(.22,.61,.36,1);
    -o-transition: transform 1s cubic-bezier(.22,.61,.36,1);
    transition: transform 1s cubic-bezier(.22,.61,.36,1);
}

.anim-title__inner--pos {
    -webkit-transform: translate3d(0,110%,0);
    transform: translate3d(0,110%,0);
}

.anim-title.is-shown .anim-title__inner--pos,
.anim-menu.is-shown .anim-title__inner--pos {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.is-shown .anim-title__wrapper:first-child .anim-title__inner {
    -webkit-transition-delay: .15s;
    transition-delay: .15s
}

.is-shown .anim-title__wrapper:nth-child(2) .anim-title__inner {
    -webkit-transition-delay: .2s;
    transition-delay: .2s
}

.is-shown .anim-title__wrapper:nth-child(3) .anim-title__inner {
    -webkit-transition-delay: .25s;
    transition-delay: .25s
}

.is-shown .anim-title__wrapper:nth-child(4) .anim-title__inner {
    -webkit-transition-delay: .3s;
    transition-delay: .3s
}

.is-shown .anim-title__wrapper:nth-child(5) .anim-title__inner {
    -webkit-transition-delay: .35s;
    transition-delay: .35s
}

.is-shown .anim-title__wrapper:nth-child(6) .anim-title__inner {
    -webkit-transition-delay: .4s;
    transition-delay: .4s
}

.is-shown .anim-title__wrapper:nth-child(7) .anim-title__inner {
    -webkit-transition-delay: .45s;
    transition-delay: .45s
}

.is-shown .anim-title__wrapper:nth-child(8) .anim-title__inner {
    -webkit-transition-delay: .5s;
    transition-delay: .5s
}

.is-shown .anim-title__wrapper:nth-child(9) .anim-title__inner {
    -webkit-transition-delay: .55s;
    transition-delay: .55s
}

.is-shown .anim-title__wrapper:nth-child(10) .anim-title__inner {
    -webkit-transition-delay: .6s;
    transition-delay: .6s
}

.is-shown .anim-title__wrapper:nth-child(11) .anim-title__inner {
    -webkit-transition-delay: .65s;
    transition-delay: .65s
}

.is-shown .anim-title__wrapper:nth-child(12) .anim-title__inner {
    -webkit-transition-delay: .7s;
    transition-delay: .7s
}

.is-shown .anim-title__wrapper:nth-child(13) .anim-title__inner {
    -webkit-transition-delay: .75s;
    transition-delay: .75s
}

.is-shown .anim-title__wrapper:nth-child(14) .anim-title__inner {
    -webkit-transition-delay: .8s;
    transition-delay: .8s
}

.is-shown .anim-title__wrapper:nth-child(15) .anim-title__inner {
    -webkit-transition-delay: .85s;
    transition-delay: .85s
}

.is-shown .anim-title__wrapper:nth-child(16) .anim-title__inner {
    -webkit-transition-delay: .9s;
    transition-delay: .9s
}

.is-shown .anim-title__wrapper:nth-child(17) .anim-title__inner {
    -webkit-transition-delay: .95s;
    transition-delay: .95s
}

.is-shown .anim-title__wrapper:nth-child(18) .anim-title__inner {
    -webkit-transition-delay: 1s;
    transition-delay: 1s
}

/* 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 {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-right: 0;
    z-index: 200;
    cursor: pointer!important;

}

.navbar-toggler p {
    margin-bottom: 0;
    margin-right: 10px;
    color: #484848;
    font-size: 13px;
    line-height: 15px;
}

.navbar-toggler:focus {
    outline: none;
}

.bars {
    position: relative;
    height: auto;
    width: 23px;
}

.bar {
    width: 100%;
    height: 2px;
    background: #484848;
    margin-bottom: 4px;

    -webkit-transition: all .15s linear;
    -moz-transition: all .15s linear;
    -o-transition: all .15s linear;
    transition: all .15s linear;
}

.bar.bar-3 {
    margin-bottom: 0;
}

.menu-open .bars {
    margin: 0;
}

.menu-open .bar-1 {
    transform: rotate(45deg);
}

.menu-open .bar-3 {
    transform: rotate(-45deg);
    margin-top: -12px;
}

.menu-open .bar-2 {
    opacity: 0;
}

/* BUTTONS */

.button {
    position: relative;
    height: 44px;
    display: inline-block;
    cursor: pointer;
    background-color: transparent;
    border: 1px solid #dbdbdb;
    overflow: hidden;

    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -ms-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
    text-transform: uppercase;
}

.button:hover a{
    color: #484848;
}
.cta .button:after{
    opacity: 1;
}
.cta .button:hover:after{
    opacity: 0;
}
.button:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    background-color: #dbdbdb;
    -webkit-transition: all .4s cubic-bezier(.22,.61,.36,1);
    -moz-transition: all .4s cubic-bezier(.22,.61,.36,1);
    -ms-transition: all .4s cubic-bezier(.22,.61,.36,1);
    -o-transition: all .4s cubic-bezier(.22,.61,.36,1);
    transition: all .4s cubic-bezier(.22,.61,.36,1);
    -webkit-transform: translateY(0%);
    -moz-transform: translateY(0%);
    -ms-transform: translateY(0%);
    -o-transform: translateY(0%);
    transform: translateY(0%);
}

.button:hover:after {
    opacity: 1;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}

/* .button:hover a {
    color: white;
} */

.button input {
    -webkit-appearance: none;
    border: 0;
    background: none;
    color: white;
    height: 100%;
    width: 100%;
    cursor: pointer;
    outline: none;
    padding: 14px 20px;
}

.button a {
    position: relative;
    font-size: 13px;
    line-height: 15px;
    width: 100%;
    height: 100%;
    text-align: center;
    display: inline-block;
    color: #484848;
    text-decoration: none;
    padding: 14px 20px;
    z-index: 1;

    -webkit-transition: color 1s cubic-bezier(.22,.61,.36,1);
    -moz-transition: color 1s cubic-bezier(.22,.61,.36,1);
    -ms-transition: color 1s cubic-bezier(.22,.61,.36,1);
    -o-transition: color 1s cubic-bezier(.22,.61,.36,1);
    transition: color 1s cubic-bezier(.22,.61,.36,1);
}

/* HOME HEADER */

.home-header-wrapper {
    position: relative;
    width: 100%;
    /* height: calc(100vh - 150px); */
    max-height: calc(100vh - 200px);
    height: calc(100vh - 150px);
}


.page .home-header-wrapper.project-show{
    position: relative;
    width: 100%;
    height: unset;
    max-height: unset;
}

.home-header-wrapper.project-show .hotel-afbeelding {
    width: 100%;
}

.page .home-header-wrapper.project-show .home-header-inner{
    width: 100%;
    height: 0;
    padding-top: 65.5%;
}
.home-header-inner .swiper-slide img{
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transition: all 7s cubic-bezier(0.04, 0.46, 0.68, 0.7);
    -webkit-transition: all 7s cubic-bezier(0.04, 0.46, 0.68, 0.7);
    -moz-transition: all 7s cubic-bezier(0.04, 0.46, 0.68, 0.7);
    -ms-transition: all 7s cubic-bezier(0.04, 0.46, 0.68, 0.7);
    -o-transition: all 7s cubic-bezier(0.04, 0.46, 0.68, 0.7);
}

.home-header-inner .swiper-slide.swiper-slide-active img{
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
}

.home-header-inner {
    position: relative;
    /* padding-top: 70%; */
    width: 100%;
    height: 100%;
    max-height: unset;
}

.slider-container.projecten {
    position: absolute;
    height: 100%;
    width: 100%;
    overflow: hidden;
    padding-bottom: 20px;
    top: 0;
}

.slider-container.projecten .swiper-pagination {
    bottom: 10px!important;
    left: 50%!important;
    transform: translateX(-50%);
    position: relative;
}

.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #5c5c5c;
    opacity: .35;
}

.swiper-pagination-bullet-active {
    opacity: 1!important;
}

.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 4px;
}

/*PARALLAX*/

.parallax {
    position: relative;
    overflow: hidden;

    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;

}

.home-header-wrapper.project-show img{
    background-color: #676768;
}

.parallax img {
    width: 100%;
    height: 120%;
    object-fit: cover;
    -o-object-fit: cover;
    pointer-events: none;
}

.parallax-xs {
    height: 350px;
}

.parallax-min-xs {
    min-height: 375px;
    height: 100%;
}

.parallax-s {
    height: 575px;
}

.parallax-min-s {
    min-height: 575px;
    height: 100%;
}

.parallax-m {
    height: 625px;
}

.parallax-min-m {
    min-height: 625px;
    height: 100%;
}

.parallax-l {
    height: 750px;
}

.parallax-min-l {
    min-height: 750px;
    height: 100%;
}

.fancybox {
    height: 100%;
    width: 100%;

    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.fancybox-progress {
    background: #dbdbdb;
}

.fancybox-button[disabled] {
    opacity: 0!important;
}

/*PROJECT ITEM*/

.items-container .parent-item-wrapper{
    width: calc(1/2 * 100% - (1 - 1/2) * 20px);
    margin-right: 20px;
    position: relative;
}
.items-container .project-wrapper, .items-container .hotel-wrapper  {
    height: auto;
    /* max-height: 700px; */
    width: calc(1/2 * 100% - (1 - 1/2) * 20px);
    margin-right: 20px;
    padding-top: 32%;
    position: relative;
}


.items-container .parent-item-wrapper .hotel-wrapper{
    width: 100%;
    margin-right: 0;
    padding-top: 64%;
}

.items-container .project-wrapper .titel h1 {
    font-size: 40px;
    line-height: 51px;
}

.items-container .project-wrapper .project-inner {
    justify-content: center;
}

.items-container.project-index .project-wrapper .project-inner{
    justify-content: flex-start;
}
.items-container .project-wrapper .project-inner .project-content {
    text-align: left;
    padding-bottom: 0;
}

/* .items-container .project-wrapper .project-inner .project-content h4{
    color: white;
    font-family: 'NewsGothicMT';
    text-transform: inherit;
    text-transform: uppercase;
} */
.project-wrapper {
    position: relative;
    height: 100%;
    margin-bottom: 20px;
}

.project-afbeelding, .hotel-afbeelding {
    position: absolute;
    height: 100%;
    z-index: 1;
    top: 0;
}

.project-wrapper .project-afbeelding:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 4;
    background-color: rgba(103, 103, 104, 0.75);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    transition: all .8s cubic-bezier(.22,.61,.36,1);
    -webkit-transition: all .8s cubic-bezier(.22,.61,.36,1);
    -moz-transition: all .8s cubic-bezier(.22,.61,.36,1);
    -ms-transition: all .8s cubic-bezier(.22,.61,.36,1);
    -o-transition: all .8s cubic-bezier(.22,.61,.36,1);
}

.home-header-wrapper .project-wrapper .project-afbeelding:before{
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: rgba(0,0,0, .25);
    top: 0;
    left: 0;
    z-index: 4;
    opacity: 1;
}

.home-header-wrapper .project-wrapper .project-afbeelding:before{
    display: block;
}

.home-header-wrapper .project-wrapper .full-link-btn{
    z-index: 30;
}

.project-wrapper:hover .project-afbeelding:before{
    opacity: 1;
}
.home-header-wrapper .highlights-container{
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: 5;
    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;
}

img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.home-header-wrapper .header__highlights{
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: 5;
    top: 0;
    max-width: 100%;

}

.home-header-wrapper .swiper-slide.swiper-slide-active .product-detail-container{
    opacity: 1;
}
.home-header-wrapper .swiper-slide .product-detail-container{
    opacity: 0;
}
.home-header-wrapper .product-detail-container{
    z-index: 15;
}

.project-wrapper .project-inner {
    position: absolute;
    padding: 20px;
    z-index: 3;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    bottom: 0px;
    width: 100%;
    z-index: 5;
}
.mobile {
    display: none;
}

.project-wrapper .project-inner .project-content {
    position: relative;
    color: white;
    text-align: center;

    /* padding-bottom: 85px; */
    padding-bottom: 0px;
}

.project-wrapper .project-inner .project-content h1,
.project-wrapper .project-inner .project-content .ondertitel p {
    color: white;

}

.ondertitel p {
    margin-bottom: 0;
    text-transform: uppercase;
    font-family: 'NewsGothicMT';
}

.title-image h3, .title-image h2, .title-image h1, .title-image h4{
    font-family: 'FrankRuhlLibre';
    text-transform: initial;
    color: white;
}

.quote h2, .quote h3{
    font-family: 'FrankRuhlLibre';
    text-transform: initial;
    font-size: 40px;
    line-height: 45px;
}

.project-content h3{

}
/*HOTEL ITEM*/

.items-container .hotel-wrapper {
    width: calc(1/2 * 100% - (1 - 1/2) * 20px);
    margin-right: 20px;
}

.hotel-wrapper, .project-wrapper.-wrapper {
    position: relative;
    /* height: 375px; */
    margin-bottom: 20px;
}

.home-header-wrapper .project-wrapper.-wrapper{
    height: unset;
    opacity: 0!important;
}

.home-header-wrapper  .project-wrapper.-wrapper.swiper-slide-active{
    z-index: 10;
    opacity: 1!important;
}


.hotel-afbeelding:before {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: rgba(103, 103, 104, 0.75);
    top: 0;
    left: 0;
    z-index: 1;
    opacity: 0;
    transition: all .8s cubic-bezier(.22,.61,.36,1);
    -webkit-transition: all .8s cubic-bezier(.22,.61,.36,1);
    -moz-transition: all .8s cubic-bezier(.22,.61,.36,1);
    -ms-transition: all .8s cubic-bezier(.22,.61,.36,1);
    -o-transition: all .8s cubic-bezier(.22,.61,.36,1);
}

.hotels .swiper-slide:hover .hotel-afbeelding:before{
    opacity: 1;
}

.hotel-wrapper .hotel-inner {
    position: absolute;
    height: 100%;
    padding: 20px 20px 20px 20px;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    z-index: 1;
    bottom: 0;
    width: 100%;
}

.hotel-wrapper:hover .hotel-afbeelding:before{
    opacity: 1;
}
.home-hotels-container .content.left{
    margin-bottom: 40px;
    width: 70%;
}
.hotel-wrapper .hotel-inner .hotel-content {
    position: relative;
    margin: 0 auto;
    text-align: center;
}

.hotel-content .ondertitel {
    text-transform: uppercase;
}

.hotel-wrapper .hotel-content .titel {
    margin-bottom: 0px;
}

.hotel-inner .hotel-content h3 {
    color: white;
    margin-bottom: 0;

}

.hotel-wrapper .hotel-inner .hotel-content .ondertitel p {
    color: rgba(255,255,255, 1);
}
.hotels-index .slide-in-wrapper {
    width: calc(50% - 10px);
    margin-bottom: 0;
    z-index: 4;
}
.slider-container.hotels {
    position: relative;
    width: 100%;
    padding-bottom: 50px;
    overflow: hidden;
}

h3 a{
    color:  inherit;
    font-size: inherit;
    font-weight: inherit;
}
.slider-container.hotels .swiper-pagination {
    text-align: left;
    bottom: 0;
    width: auto;
    bottom: -26px!important;

    position: relative;
}

.slider-container.hotels .swiper-slide {
    width: 50%!important;
}

.slider-container.hotels .swiper-pagination:after {
    content: '';
    width: 180px;
    height: 1px;
    background-color: #AFAFAF;
    position: absolute;
    top: 50%;
    margin-left: 29px;
}

.slider-container.hotels .swiper-pagination .swiper-pagination-bullet,
.slider-container.images .swiper-pagination .swiper-pagination-bullet,
.slider-container.blogs .swiper-pagination .swiper-pagination-bullet {
    background: #dbdbdb;
    opacity: .35;
}

/*HOTEL / PROJECT SHOW*/

.hotel-show .hotel-inner,
.project-show .project-inner {
    position: absolute;
    width: 100%;
    padding: 60px 60px 20px 60px;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    bottom: 0;
    z-index: 1;
}

.hotel-show .hotel-inner .hotel-content,
.project-show .project-inner .project-content {
    position: relative;
    color: white;
    text-align: center;
}

.hotel-show .hotel-content .titel,
.project-show .project-content .titel {
    margin-bottom: -10px;
}

.hotel-show .hotel-inner .hotel-content .titel h1,
.project-show .project-inner .project-content .titel h1,
.hotel-show .hotel-inner .hotel-content .ondertitel p,
.project-show .project-inner .project-content .ondertitel p {
    position: relative;
    color: white;
}

.hotel-intro-container,
.project-intro-container {
    position: relative;
    padding-top: 0px;
    padding-bottom: 40px;
}

.text-image .intro-tekst {
    margin-bottom: auto;
    max-width: 85%;
}

.afbeeldingen-tekst .intro-tekst p{
    margin-bottom:  0;
}
.afbeeldingen-tekst .intro-tekst{
    margin-bottom: 40px;
}
/* .hotel-intro-container .text-image .parallax,
.project-intro-container .text-image .parallax {
    margin-top: 50px;
} */

.sleep-test-container,
.project-content-wrapper {
    position: relative;
    padding-top: 0px;
    padding-bottom: 80px;
    max-width: 850px;
}

.sleep-test-container .titel {
    position: relative;
    margin-bottom: 40px;
}

.sleep-test-container .tekst {
    position: relative;
    margin-bottom: 25px;
}

.sleep-test-container .tekst p {
    display: inline;
    margin-bottom: 0;
}

.sleep-test-container .verwijzing {
    margin-bottom: 50px;
}

.sleep-test-container .verwijzing p {
    position: relative;
    font-size: 12px;
    display: inline;
    margin-bottom: 0;
}

.slider-container.images {
    position: relative;
    margin-bottom: 80px;
    height: 600px;
}

.slider-container.images .swiper-pagination {
    bottom: -10px !important;
    left: 50% !important;
    transform: translateX(-50%);
}

/*PRODUCT CATEGORIES*/
/*PRODUCT CATEGORIES*/

.product-categories {
    position: relative;
    padding-top: 40px;
    padding-bottom: 50px;
}

.product-categories.bottom-categories{
    padding-bottom: 80px;
}

.product-container{
    width: 100%;

}

.product-categories .inner-categories {
    position: relative;
}

.product-cat-wrapper {
    position: relative;
    width: calc(1/3 * 100% - (1 - 1/3) * 20px);
    height: 600px;
    margin-right: 20px;
    margin-bottom: 20px;
}

.product-categories .inner-categories .item-wrapper{
    width: calc(50% - 10px);
    margin-bottom: 30px;
}

.product-categories.pt-0 .inner-categories .item-wrapper{
    margin-bottom: 0;
}

.product-cat-wrapper .product-cat-afbeelding {
    position: absolute;
    height: 100%;
}

.product-cat-afbeelding:before {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: rgba(0,0,0, .25);
    top: 0;
    left: 0;
    z-index: 1;
}

.product-cat-wrapper .product-cat-inner {
    position: relative;
    height: 100%;
    z-index: 1;
    padding: 40px;
}

.product-cat-wrapper .product-cat-naam h3 {
    position: relative;
    color: white;
}


/*HOME INTRO CONTAINER*/

.home-intro-container {
    position: relative;
    background-color: #dbdbdb;;
    padding-top: 80px;
    padding-bottom: 60px;
}
.home-intro-container .items-container{
    margin-top: 40px;
}

.home-intro-container .home-quote,
.product-show .quote {
    position: relative;
    width: 100%;
}

.home-intro-container .home-quote .home-quote-inner,
.product-show .quote .quote-inner {
    position: relative;
    max-width: 950px;
    margin: 0 auto;
}

.home-intro-container .home-quote .home-quote-inner h2,
.product-show .quote .quote-inner h2 {
    color: #5c5c5c;
    text-align: center;
}

.home-intro-container .afbeeldingen-tekst {
    position: relative;
    margin-top: 160px;
}

.home-intro-container .afbeeldingen-tekst .intro-tekst {
    margin: 0 auto auto auto;
}

.home-intro-container .afbeeldingen-tekst .intro-tekst p {
    color: #484848;
    max-width: 100%;
}

.home-intro-container .afbeeldingen-tekst .text-image .parallax {
    margin-top: 10%;
}

/*PRODUCT CAT PAGE*/

.product-cat-page {
    position: relative;
    padding-top: 0px;
    padding-bottom: 40px;
}

.product-cat-page-wrapper,
.cat-page-header {
    position: relative;
}

.cat-page-header .categorie-naam {
    position: relative;
    margin-bottom: 25px;
}

.cat-page-header .categorie-naam p {
    color: #484848;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.cat-page-header .categorie-naam p:before {
    content: '';
    width: 30px;
    height: 1px;
    display: inline-block;
    background-color: #dbdbdb;
    position: relative;
    margin-right: 18px;
    display: none;
}

.cat-page-header .titel {
    position: relative;
    margin-bottom: 65px;
    max-width: 850px;
}

/* .cat-page-header .titel h1 {
    font-size: 52px;
    line-height: 62px;
} */

.cat-page-header .cat-page-image {
    position: relative;
    height: 450px;
}

.cat-page-content {
    position: relative;
    padding-top: 80px;
    padding-bottom: 80px;
}

.cat-page-content .tekst {
    position: relative;
    max-width: 540px;
}

.cat-page-quote {
    position: relative;
    background: #dbdbdb;
    padding: 80px 10%;
    margin-top: 80px;
    margin-bottom: 80px;
}

.cat-page-quote .quote-afbeelding {
    position: absolute;
    height: 100%;
    left: 0;
    top: 0;
}

.cat-page-quote .quote {
    position: relative;
    z-index: 1;
}

.cat-page-quote .quote h2 {
    text-align: center;
    color: white;
}

.cat-page-cats .text-image .intro-tekst {
    margin-bottom: 35px;
    max-width: 85%;
    margin-top: -20px;
}


.cat-page-cats .image.right .item-wrapper{
    margin-top: auto;
}
.cat-page-cats .text-image .intro-tekst h2 {
    margin-bottom: 30px;
}

.cat-page-cats .text-image .intro-tekst p {
    margin-bottom: 0;
}

.cat-page-cats .product-cat-wrapper {
    width: 100%;
}

.cat-page-cats .text-image .product-cat-wrapper {
    height: 500px;
    margin-top: 80px;
}

.cat-page-cats .image .product-cat-wrapper {
    height: 100%;
    min-height: 800px;
}

.home-video-container .designers-container{
    padding-top: 0;
}
/*SCROLL INDICATOR*/

.scroll-indicator {
    position: absolute;
    overflow: hidden;
    height: 28px;
    top: 140px;
    width: 100%;
    left: 50%;
    z-index: 1;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}

.scroll-indicator__text {
    position: absolute;
    color: white;
    font-size: 16px;
    line-height: 28px;
    -webkit-animation: scrolling 2.75s infinite 0s ease-in-out;
    animation: scrolling 2.75s infinite 0s ease-in-out;
}

@-webkit-keyframes scrolling {
    0%{
        -webkit-transform: translateY(-40px);
        transform: translateY(-40px);
        opacity: .6;
    }
    25% {
        -webkit-transform: translateY(0) skewX(0deg);
        transform: translateY(0) skewX(0deg);
        opacity: 1;
    }
    50% {
        -webkit-transform: translateY(0) skewX(0deg);
        transform: translateY(0) skewX(0deg);
        opacity: 1;
    }
    75% {
        -webkit-transform: translateY(0) skewX(0deg);
        transform: translateY(0) skewX(0deg);
        opacity: 1;
    }
    100%{
        -webkit-transform: translateY(40px);
        transform: translateY(40px);
        opacity: .6;
    }
}

/*DESIGNERS BLOK*/

.designers-container {
    position: relative;
    padding-top: 80px;
    padding-bottom: 80px;
}

.designers-wrapper {
    position: relative;
}

.designers-wrapper .video-wrapper {
    position: relative;
    padding: 33% 0 0 0;
    overflow: hidden;
    width: 50%;
    height: 0;
}


.designers-wrapper .afbeelding {
    height: 0;
    padding-top: 33%;
}

.designers-wrapper .afbeelding img{
    top: -10%;
    position: absolute;
}


.designers-wrapper .content-inner {
    position: relative;
    padding-left: 15%;
    padding-right: 2%;
    width: 100%;
}

.designers-wrapper .left .content-inner{
    padding-left: 0;
}

.designers-wrapper .video-wrapper{
    width: calc(50% - 10px);
}
.designers-wrapper .right .content-inner{
    padding-left: 2%;
    padding-right: 15%;
}

.designers-wrapper .content-inner .titel {
    position: relative;
    margin-bottom: 5px;
    color: #484848;
}
.image--inner{
    width: 100%;
    height: 100%;
    top: 0;
    position: absolute;

}

.titel-container .titel h2{
    margin-bottom: 20px;
}
.designers-wrapper .content-inner .designers p,
.designers-wrapper .content-inner .designers a
 {
    position: relative;
    font-family: 'FrankRuhlLibre';
    font-size: 26px;
    line-height: 28px;
    margin-bottom: 0;
    color: #484848;
    text-decoration: none;
}

.designers-wrapper .content-inner .designers a{
    margin-bottom: 10px;
}
.image--inner h3{
    color: white;
    opacity: 0;
    text-align: center;
    transition: all .8s cubic-bezier(.22,.61,.36,1);
    -webkit-transition: all .8s cubic-bezier(.22,.61,.36,1);
    -moz-transition: all .8s cubic-bezier(.22,.61,.36,1);
    -ms-transition: all .8s cubic-bezier(.22,.61,.36,1);
    -o-transition: all .8s cubic-bezier(.22,.61,.36,1);
}

.image--inner:hover a{
    text-decoration: none!important;
}
.image--inner:hover h3{
    opacity: 1;
    transition: all .4s cubic-bezier(.22,.61,.36,1);
    -webkit-transition: all .4s cubic-bezier(.22,.61,.36,1);
    -moz-transition: all .4s cubic-bezier(.22,.61,.36,1);
    -ms-transition: all .4s cubic-bezier(.22,.61,.36,1);
    -o-transition: all .4s cubic-bezier(.22,.61,.36,1);
}
.designers-wrapper .content-inner .tekst {
    position: relative;
    margin-top: 0px;
}

/*VIDEO ELEMENT*/

.video-wrapper {
    position: relative;
    padding: 65.421% 0 0 0;
    overflow: hidden;
}
.video-wrapper .item {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
}
.video-wrapper .play-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    visibility: visible;
    opacity: 1;
    background-color: black;

    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;

    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -ms-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}
.video_element_placeholder {
    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;
}
.video_element_placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -o-object-fit: cover;
}
.play-overlay.video-started {
    opacity: 0;
    visibility: hidden;
}
.play-overlay:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0, .1);
    z-index: 1;
}
.play-overlay.no-thumbnail:before {
    background-color: rgba(0,0,0, .1);
}
.video-btn {
    position: absolute;
    height: 90px;
    width: 90px;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    z-index: 2;
    border: 1px solid rgba(255,255,255, .35);

    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;

    -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-btn:before {
    content: '';
    width: 24px;
    height: 24px;
    border-width: 12px 0 12px 24px;
    position: absolute;
    border-color: transparent transparent transparent #ffffff;
    border-style: solid;
    margin-left: 2px;
}
.close-video .video-btn:before {
    border-color: #ffffff #ffffff #ffffff #ffffff;
    margin-left: 0;
}
.video-container {
    width: 100%;
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    padding: 0;
    margin: 0;
    z-index: 2;
}
.close-video {
    position: absolute;
    top: 0;
    right: 0;
    padding: 20px;
    font-size: 30px;
    color: white;
    cursor: pointer;
    z-index: 10;
    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;
}
.close-video .video-btn {
     opacity: 0;
}
.close-video:hover .video-btn {
    opacity: 1;
}
.iframeWrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    background-color: black;
}
.vimeoPlayer {
    height: 100%;
    width: 100%;
}
.vimeoPlayer iframe {
    width: 100%;
    height: 100%;
}

/* VIDEO REPLACEMENT */
.content-inner.replacement{
    padding-left: 0;
    padding-right: 15%;
}

.padding-section{
    padding-top: 100px;
    padding-bottom: 100px;
}

/*NEW VIDEO STYLING*/

.video-element .item .video_element_button i.playme {
    font-size: 65px;
    color: white;
}

.video-element .item .video_element_button i.playme:before {
    color: white;
}

.video-element .video-container {
    width: 100%;
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    padding: 0;
    margin: 0;
    z-index: 2;
}

.video-element {
    position: relative;
    overflow: hidden;
}

.video-element #vimeoElement {
    position: relative;
    width: 100%;
    height: 100%;
    background: black;
}

.video-element #vimeoElement iframe {
    width: 100%;
    height: 100%;
}

.video-element .video {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

/*UITGELICHTE HOTELS HOME*/

.home-hotels-container {
    position: relative;

    padding-top: 80px;
    padding-bottom: 80px;
    margin: 0 auto;
}

.hotels-wrapper {
    position: relative;
}

.hotel-section {
    background: #dbdbdb;;
    margin-top: 0px;
}

.hotels-wrapper .swiper-pagination-bullet:nth-child(1){
    margin-left: 0;
}

.hotels-wrapper .titel {
    position: relative;
    margin-bottom: 45px;
}

.hotels-wrapper .titel h2 {
    color: #5c5c5c;
}

.hotels-wrapper .tekst {
    position: relative;
    margin-bottom: 55px;
}

/* POST HEADER */

.post-header-wrapper {
    position: relative;
    width: 100%;
    height: auto;
    padding: 100px 0;
}

.post-header-inner {
    position: relative;
    width: 100%;
    padding-left: 8%;
    padding-right: 8%;
}

.fancybox-container *{
    color: white;
}

/* POST ITEM */

.items-container {
    position: relative;
}

.items-container .item-wrapper:nth-child(4n) {
    margin-right: 0;
}


.item-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 0;

}



.designers-wrapper, .item-wrapper, .parallax, .parent-item-wrapper{
    opacity: 1;
    transition: opacity 2.5s cubic-bezier(.22, .61, .36, 1);
    -webkit-transition: opacity 2.5s cubic-bezier(.22, .61, .36, 1);
    -moz-transition: opacity 2.5s cubic-bezier(.22, .61, .36, 1);
    -ms-transition: opacity 2.5s cubic-bezier(.22, .61, .36, 1);
    -o-transition: opacity 2.5s cubic-bezier(.22, .61, .36, 1);
}
.item-wrapper.in-view, .designers-wrapper.in-view, .parallax.in-view, .parent-item-wrapper.in-view{
    opacity: 1;
}



.product-wrapper .product-afbeelding:before{
    z-index: 1;
}
.item-wrapper .image-wrapper::after, .afbeeldingen-tekst .parallax::after, .product-wrapper .product-afbeelding:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    background-color: rgba(103, 103, 104, 0.75);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    transition: all .4s cubic-bezier(.22,.61,.36,1);
    -webkit-transition: all .4s cubic-bezier(.22,.61,.36,1);
    -moz-transition: all .4s cubic-bezier(.22,.61,.36,1);
    -ms-transition: all .4s cubic-bezier(.22,.61,.36,1);
    -o-transition: all .4s cubic-bezier(.22,.61,.36,1);
}
.item-wrapper:hover .image-wrapper::after, 
.afbeeldingen-tekst .parallax:hover::after, 
.product-wrapper:hover .product-afbeelding:before{
    opacity: 1;
}
.active_highlight .product-detail-container, .active_highlight .product-detail-container .close-container {
    z-index: 17;
    /* background-color: red; */
}

.item-wrapper .image-wrapper {
    position: relative;
    height: auto;
    overflow: hidden;
    margin-bottom: 10px;
    width: 100%;
    max-width: 525px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 67%;
}


.afbeeldingen-tekst-element .parallax, .afbeeldingen-tekst .parallax{
    padding-top: 67%;
    height: 0;
}

.afbeeldingen-tekst .parallax img{
    position: absolute;
}
.afbeeldingen-tekst-element .parallax img, .afbeeldingen-tekst .parallax img{
    top: -10%;
}

.item-wrapper .image-wrapper .item-afbeelding {
    position: absolute;
    height: 100%;
    top: 0;
    left: 0;
    width: 100%;
}

.item-wrapper .item-content {
    text-align: center;
}

.item-wrapper .item-inner .tekst p {
    max-width: 85%;
    text-align: center;
    margin: 0px auto 35px auto;
}

/*PRODUCT ITEM*/

.cat-page-products .product-wrapper:nth-child(2n) {
    margin-right: 0;
}

.product-wrapper {
    position: relative;
    width: calc(1/2 * 100% - (1 - 1/2) * 20px);
    height: 0;
    margin-right: 20px;
    margin-bottom: 20px;
    padding-top: 32%;
}

.product-wrapper .product-afbeelding {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
}
/*
.product-afbeelding:before {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: rgba(0,0,0, .25);
    top: 0;
    left: 0;
    z-index: 1;
} */
.product-wrapper .product-inner{
    position: absolute;
    height: unset;
    z-index: 1;
    padding: 20px 30px;
    text-align: left;
    width: 100%;
    bottom: 0;
}

.right .product-subtitel svg{
    fill: white;
    margin-bottom: 4.5px;
    margin-left: 9px;
}
.left .product-subtitel svg{
    fill: white;
    margin-bottom: 4.5px;
    margin-right: 9px;
    transform: rotate(180deg);
}

.prev-next-products .product-wrapper{
    padding-top: 67%;
}

.prev-next-products .product-wrapper .product-subtitel p{
    color: white;
}
.product-wrapper .product-naam h3 {
    position: relative;
    color: white;
    margin-bottom: 0;
}

.product-wrapper .product-subtitel p, .datum p {
    position: relative;
    color: rgba(255,255,255, .5);
    margin-bottom: 0;
    text-transform: uppercase;
}

/*PRODUCT SHOW*/

.product-show .hotel-afbeelding:before {
    background-color: unset;
    mix-blend-mode: multiply;
    background: -moz-linear-gradient(180deg, rgba(136,137,138,1) 0%, transparent 100%);
    background: -webkit-linear-gradient(180deg, rgba(136,137,138,1) 0%, transparent 100%);
    background: linear-gradient(180deg, rgba(136,137,138,1) 0%, transparent 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#676768",endColorstr="#ffffff",GradientType=1);
}

.product-show .scroll-indicator,
.project-show .scroll-indicator,
.hotel-show .scroll-indicator {
    bottom: 20px;
    top: unset;
}
.product-tabs-container{
    position: relative;
}
.product-tabs-container::before {
    content: '';
    position: absolute;
    left: 0;
    width: 500%;
    height: 100%;
    background-color: #ffffff;
    top: 0;
    transform: translateX(-50%);
}

.lds-facebook {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
  }
  .lds-facebook div {
    display: inline-block;
    position: absolute;
    left: 0px;
    width: 2px;
    background: #5c5c5c;
    animation: lds-facebook 1.2s cubic-bezier(0, 0.5, 0.5, 1) infinite;
  }
  .lds-facebook div:nth-child(1) {
    left: 0px;
    animation-delay: -0.24s;
  }
  .lds-facebook div:nth-child(2) {
    left: 7px;
    animation-delay: -0.12s;
  }
  .lds-facebook div:nth-child(3) {
    left: 14px;
    animation-delay: 0;
  }
  @keyframes lds-facebook {
    0% {
      top: 8px;
      height: 40px;
    }
    50%, 100% {
      top: 17.5px;
      height: 15px;
    }
  }

  
.project-show .slide-in,
.hotel-show .slide-in {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
}

.product-show .intro-container {
    position: relative;
    padding-top: 40px;
    padding-bottom: 80px;
}

.product-show .subtitel p {
    color: #484848;
    margin-bottom: 25px;
    margin-left: -48px;
}

.product-show .subtitel p:before {
    content: '';
    width: 30px;
    height: 1px;
    display: inline-block;
    background-color: #dbdbdb;
    position: relative;
    margin-right: 18px;
}

.index-link {
    position: relative;
    color: #484848!important;
    text-decoration: none!important;
    display: inline-block;
}

.product-show .quote {
    margin-bottom: 40px;
}

.product-show .quote-inner .intro-tekst {
    position: relative;
    margin-top: 20px;
}

.product-show .quote-inner .intro-tekst p {
    text-align: center;
}

.share-product {
    position: relative;
}

.share-product p {
    margin-bottom: 0;
    margin-right: 20px;
}

.product-show .afbeeldingen-tekst,
.product-show .afbeeldingen-galerij {
    margin-top: 80px;
}


.galerij-afbeelding {
    position: relative;
    height: 400px;
    margin-bottom: 20px;
}

.galerij-afbeelding.one_fourth {
    width: calc(1/4 * 100% - (1 - 1/4) * 20px);
}

.galerij-afbeelding.two_fourth {
    width: calc(2/4 * 100% - (1 - 2/4) * 20px);
}

.galerij-afbeelding.three_fourth {
    width: calc(3/4 * 100% - (1 - 3/4) * 20px);
}

.galerij-afbeelding.four_fourth {
    width: calc(4/4 * 100% - (1 - 4/4) * 20px);
}

.product-show .afbeeldingen-tekst .left .parallax {
    margin-top: 80px;
}

.product-show .cat-page-cats.afbeeldingen-tekst .left .parallax {
    margin-top: 0;
}

.product-show .right .parallax:nth-child(1) {
    margin-bottom: 20px;
}

.product-tabs-container {
    position: relative;
    background-color: #dbdbdb;
    padding-top: 50px;
    padding-bottom: 50px;
    overflow: hidden;
}

.product-tabs-container .tab-row {
    position: relative;
    padding: 6px 0;
    border-bottom: 1px solid rgba(103, 103, 104, 0.1);

    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}

.product-tabs-container .tab-row:last-child {
    border-bottom: 0;
}

.product-tabs-wrapper {
    position: relative;
}

.product-tabs-container .tab {
    padding: 20px;
    position: absolute;
    width: 100%;
    visibility: hidden;
    opacity: 0;

    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -ms-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.product-tabs-container .tab.active {
    visibility: visible;
    opacity: 1;
    background-color: white;
    padding: 20px;
}

.product-tab-links .tab-links .active{
    background-color: white;
    border: 1px solid rgba(72%, 72%, 72%, 72%);
    border-bottom: 1px solid white;
}

ul.tab-links {
    position: relative;
}

ul.tab-links.main:before {
    content: "";
    height: 1px;
    background: rgba(72%, 72%, 72%, 72%);
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
}

.tab-links li a {
    padding: 10px 15px;
}

.tab-links {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0px;
}

.tab-links li {
    position: relative;
    color: #484848;
    border-bottom: 1px solid rgba(72%, 72%, 72%, 72%);
    opacity: 1;
    height: 45px;
}

.tab-links li.active {
    opacity: 1!important;
}

.tab-links li:last-child {
    margin-right: 0;
}

.tab-links li a {
    color: #484848;
    text-decoration: none;
}

#tab-specs .tab-row .name {
    position: relative;
    width: 120px;
    padding-right: 20px;
}

#tab-options .tab-row .name {
    position: relative;
    width: 300px;
    border-right: 1px solid rgba(103, 103, 104, 0.1);
    padding: 6px 25px 6px 0;
}

#tab-options .tab-row .value {
    position: relative;
    display: inline-block;
    padding: 6px 25px;
}

#tab-options .tab-row {
    padding: 0;
}

#tab-options .value.standard {
    border-right: 1px solid rgba(103, 103, 104, 0.1);
}

#tab-options .value.optional {
    padding-right: 0;
}

.tab-row .name p,
.tab-row .value p,
.tab-row .value a {
    color: #484848!important;
    margin-bottom: 0;
    width: 100%;
    position: relative;
    display: inline;
    text-decoration: none;
}

.option-color {
    width: 16px;
    height: 16px;
    display: inline-block;
    position: relative;
    border-radius: 100%;
    vertical-align: text-bottom;
    top: -2px;
}

.option-color:last-of-type {
    margin-right: 20px;
}

.stofgroepen-tabs-container .tab-links {
    margin-bottom: 20px;
}

.stofgroepen-tabs-container .tab-links li {
    border-bottom: 0;
    height: 35px;
    width: auto;
    margin-right: 2%;
}

.stofgroepen-tabs-container .tab-links li a {
    font-family: 'FrankRuhlLibre';
    font-size: 25px;
    position: relative;
}

.stoffen-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(24%, 1fr));
    grid-gap: 3px;
}

.stof {
    position: relative;
    width: 100%;
    height: 100%;
    margin-right: 3px;

    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;
    padding: 20px;

    -webkit-transition: all .4s cubic-bezier(0.6, -0.01, 0.32, 1.01);
    -moz-transition: all .4s cubic-bezier(0.6, -0.01, 0.32, 1.01);
    -ms-transition: all .4s cubic-bezier(0.6, -0.01, 0.32, 1.01);
    -o-transition: all .4s cubic-bezier(0.6, -0.01, 0.32, 1.01);
    transition: all .4s cubic-bezier(0.6, -0.01, 0.32, 1.01);
}

.stof.bigger {
    grid-column-start: 1;
    grid-column-end: 3;
    grid-row-start: 1;
    grid-row-end: 3;
}

.stof:before {
    content: '';
    padding-top: 100%;
}

.stof .stof-naam {
    position: relative;
    opacity: 1;

    -webkit-transition: all .4s cubic-bezier(0.6, -0.01, 0.32, 1.01);
    -moz-transition: all .4s cubic-bezier(0.6, -0.01, 0.32, 1.01);
    -ms-transition: all .4s cubic-bezier(0.6, -0.01, 0.32, 1.01);
    -o-transition: all .4s cubic-bezier(0.6, -0.01, 0.32, 1.01);
    transition: all .4s cubic-bezier(0.6, -0.01, 0.32, 1.01);
}

.stof:hover .stof-naam {
    opacity: 1;

    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}

.stof .stof-naam p {
    color: white;
    margin-bottom: 0;
}

.highlights-container {
    position: relative;
    height: auto;
    max-height: 70vw;
    overflow: hidden;
}

.home-header-wrapper .project-wrapper .project-inner{
    padding: 20px;
}

.header__highlights {
    position: relative;
    height: auto;
    width: 100%;
    max-height: 70vw;
}

.highlights-container-show{
    margin-top: 80px;
}

.header__highlights img {
    position: relative;
    width: 100%;
    height: 100%;
}

.header__highlight {
    width: 15px;
    height: 15px;
    margin-left: -7.5px;
    margin-top: -7.5px;
    position: absolute;
    z-index: 16;
    cursor: pointer;
}

.pulse-dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: white;
    z-index: 1;
    position: relative;
}

.pulse-ring {
    position: absolute;
    width: 15px;
    height: 15px;
    top: 0;
    left: 0;
}

.header__highlight .pulse-ring:before {
    content: '';
    position: absolute;
    display: block;
    width: 300%;
    height: 300%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin-left: -100%;
    margin-top: -100%;
    border-radius: 50%;
    background-color: rgba(0,0,0, .1);
    z-index: 0;
    opacity: 1;
    -webkit-animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
    animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;

    -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-keyframes pulse-ring {
    0% {
        -webkit-transform: scale(0.33);
        transform: scale(0.33);
    }
}
@keyframes pulse-ring {
    0% {
        -webkit-transform: scale(0.33);
        transform: scale(0.33);
    }
}

.product-detail-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: visible;
    z-index: 20;

    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);

    -webkit-transition: all .6s cubic-bezier(0.24, 1, 0, 1.1);
    -moz-transition: all .6s cubic-bezier(0.24, 1, 0, 1.1);
    -o-transition: all .6s cubic-bezier(0.24, 1, 0, 1.1);
    transition: all .6s cubic-bezier(0.24, 1, 0, 1.1);
}

.home-header-wrapper .product-detail-container,
.product-detail-container.modal-open {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
}

.home-header-wrapper .close-container{
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    right: 0;
    display: block;
}
.close-container {
    position: relative;
    width: 70%;
}

.close-container:hover {
    cursor: url("/theme/assets/images/close.svg") 22 22, pointer;
}

.home-header-wrapper .close-container:hover{
    cursor: default
}
.modal-dialog .menu-open .bar{
    background-color: white;
}

.home-header-wrapper .product-detail-container .product-detail {
    position: absolute;
    width: auto;
    height: auto;
    max-width: 200px;
    margin-right: 0;
    margin-left: auto;
    background: white;
    font-size: 13px;
    padding: 14px 20px;
    text-align: center;
    position: absolute;
    opacity: 0;
    -webkit-transform: translateX(calc(-100% - 30px)) translateY(-50%);
    -moz-transform: translateX(calc(-100% - 30px)) translateY(-50%);
    -ms-transform: translateX(calc(-100% - 30px)) translateY(-50%);
    -o-transform: translateX(calc(-100% - 30px)) translateY(-50%);
    transform: translateX(calc(-100% - 30px)) translateY(-50%);
    transition: all .2s ease-in-out;
    -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;
}

.home-header-wrapper .product-detail-container.ls .product-detail{
    -webkit-transform: translateX(30px) translateY(-50%);
    -moz-transform: translateX(30px) translateY(-50%);
    -ms-transform: translateX(30px) translateY(-50%);
    -o-transform: translateX(30px) translateY(-50%);
    transform: translateX(30px) translateY(-50%);
}

/* .home-header-wrapper .product-detail-container.rsb--align .product-detail,
.home-header-wrapper .product-detail-container.lsb--align .product-detail{
    -webkit-transform: translateX(-50%) translateY(calc(-100% - 30px));
    -moz-transform: translateX(-50%) translateY(calc(-100% - 30px));
    -ms-transform: translateX(-50%) translateY(calc(-100% - 30px));
    -o-transform: translateX(-50%) translateY(calc(-100% - 30px));
    transform: translateX(-50%) translateY(calc(-100% - 30px));
} */

.product-detail-container .product-detail{
    z-index: 44;
    background-color: #5c5c5c;
    padding: 5% 11% 5% 6%;
    margin-right: -5%;
    position: absolute;
    left: 70%;
    height: 100%;
}


.product-detail-container.modal-open .product-detail {
    opacity: 1;
}

.product-detail .product-image {
    position: relative;
    margin-bottom: 45px;
}

.product-detail .product-image img {
    width: 100%;
    max-height: 300px;
    object-fit: contain;
}

.product-show .product-title .titel h1{
    font-size: 26px;
    line-height: 28px;
}
.product-detail .product-title {
    position: relative;

    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);

    -webkit-transition: all .6s cubic-bezier(0.24, 1, 0, 1.1);
    -moz-transition: all .6s cubic-bezier(0.24, 1, 0, 1.1);
    -o-transition: all .6s cubic-bezier(0.24, 1, 0, 1.1);
    transition: all .6s cubic-bezier(0.24, 1, 0, 1.1);

    transition-delay: .02s;
}

.modal-open .product-detail .product-title {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
}

.product-detail .product-title h2 {
    color: white;
}

.product-detail .product-cat {
    position: relative;
    margin-bottom: 30px;

    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);

    -webkit-transition: all .6s cubic-bezier(0.24, 1, 0, 1.1);
    -moz-transition: all .6s cubic-bezier(0.24, 1, 0, 1.1);
    -o-transition: all .6s cubic-bezier(0.24, 1, 0, 1.1);
    transition: all .6s cubic-bezier(0.24, 1, 0, 1.1);

    transition-delay: .04s;
}

.modal-open .product-detail .product-cat {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
}

.product-detail .product-cat p {
    color: rgba(255, 255, 255, .5);
    margin-bottom: 0;
}

.product-detail p,
.product-detail a {
    color: white;
}
.home-header-wrapper .product-detail p,
.home-header-wrapper .product-detail a {
    color: #5c5c5c;
    margin-bottom: 0;
    font-size: 13px;
    line-height: 15px;
}

.product-detail .product-intro {
    position: relative;
    margin-bottom: 40px;

    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);

    -webkit-transition: all .6s cubic-bezier(0.24, 1, 0, 1.1);
    -moz-transition: all .6s cubic-bezier(0.24, 1, 0, 1.1);
    -o-transition: all .6s cubic-bezier(0.24, 1, 0, 1.1);
    transition: all .6s cubic-bezier(0.24, 1, 0, 1.1);

    transition-delay: .08s;
}

.modal-open .product-detail .product-intro {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
}

.product-detail .read-more {
    position: relative;

    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    -ms-transform: translateX(100%);
    -o-transform: translateX(100%);
    transform: translateX(100%);

    -webkit-transition: all .6s cubic-bezier(0.24, 1, 0, 1.1);
    -moz-transition: all .6s cubic-bezier(0.24, 1, 0, 1.1);
    -o-transition: all .6s cubic-bezier(0.24, 1, 0, 1.1);
    transition: all .6s cubic-bezier(0.24, 1, 0, 1.1);

    transition-delay: .12s;
}

.modal-open .product-detail .read-more {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
}

.product-detail .read-more a {
    text-decoration: none;
}
.product-detail .read-more a:before {
    content: '';
    width: 60px;
    height: 1px;
    display: inline-block;
    background-color: white;
    position: relative;
    margin-right: 18px;
    vertical-align: middle;
}

.prev-next-products {
    position: relative;
    padding-top: 80px;
    padding-bottom: 4px;
}

.prev-next-products .product-wrapper {
    width: 100%;
}

/*SOCIALS*/

.socials a {
    position: relative;
    height: 25px;
    width: auto;
    margin-right: 10px;
    text-decoration: none!important;

    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;

    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -ms-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}

.socials a:last-child {
    margin-right: 0;
}

.socials a:before {
    content: '';
    background: transparent;
    height: auto;
    width: auto;
    font-size: 20px;
    display: inline-block;
    font-family: 'FontAwesome';
    text-align: center;
    z-index: 2;
    position: relative;
    color: #afafaf;
    vertical-align: baseline;

    -webkit-transition: all .2s ease-in;
    -moz-transition: all .2s ease-in;
    -ms-transition: all .2s ease-in;
    -o-transition: all .2s ease-in;
    transition: all .2s ease-in;
}

.socials a:after{
    content: '';
}
.socials a.vimeo:before {
    content: '\f27d';
}
.socials a.twitter:before {
    content: '\f099';
}
.socials a.instagram:before {
    content: '\f16d';
}
.socials a.facebook:before {
    content: '\f230';
}
.socials a.linkedin:before {
    content: '\f0e1';
}
.socials a.pinterest:before {
    content: '\f0d2';
}
.config-mode .parallax{
    opacity: 1;
}
.pinterest-logo{
    width: 50px;
    height: auto;
    position: absolute;
    right: 15px;
    bottom: 15px;
}
/*TEKST AFBEELDING*/

.column {
    position: relative;
    width: 50%;
}

.column.text {
    padding: 100px 6%;

    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.column.text .titel h4 {
    color: white;
    margin-bottom: 35px;
}

.column.text .tekst p {
    color: white;
}

.column.image .parallax {
    position: absolute;
    height: 100%;
}

/*AFBEELDINGEN MET CONTENT ELEMENT*/

.afbeeldingen-tekst-element {
    position: relative;
}

/* .afbeeldingen-tekst-element h1,
.titel-subtitel-element h1 {
    font-size: 52px;
    line-height: 62px;
} */

.titel-header .titel {
    position: relative;
    max-width: 850px;
}

.titel.titel-small h1,
.titel.titel-small h2 {
    font-size: 36px;
    line-height: 46px;
}


.home-header-wrapper.hotel-show{
    margin-bottom: 0px;
}
.afbeeldingen-tekst-element .tekst {
    margin-top: 0px;
}


.afbeeldingen-tekst-element img {
    position: absolute;
}

.afbeeldingen-tekst-element .titel-container {
    max-width: 100%;
    margin: 0 auto 20px auto;
}
.afbeeldingen-tekst-element .titel-container .subtitel {
    margin-top: 0px;
    margin-bottom: 0px;
}

.afbeeldingen-tekst-element .text-image .parallax {
    margin-top: 0px;
}

/* .afbeeldingen-tekst-element .text-image .parallax.right-image {
    margin-top: 40px;
} */
.afbeeldingen-tekst-element .parallax.mg-bottom {
    margin-top: unset!important;
    margin-bottom: 80px;
}

.subtitel p {
    color: #484848;
}

.subtitel p:before {
    display: none;
    content: '';
    width: 30px;
    height: 1px;
    background-color: #dbdbdb;
    position: relative;
    margin-right: 18px;
    vertical-align: middle;
}

.opening-hours {
    position: relative;
    margin-top: auto;
}

.opening-hours h3 {
    margin-top: 35px;
    margin-bottom: 35px;
}

.dagen {
    position: relative;
    min-width: 200px;
}

.opening-hours .tekst {
    position: relative;
    margin-top: 25px;
}

.opening-hours .tekst p {
    margin-bottom: 0;
}

.afbeeldingen-tekst-form {
    position: relative;
}

.afbeeldingen-tekst-form form {
    margin: 0 auto;
    width: calc(100% + 40px);
    transform: translateX(-20px);
    display: flex;
    flex-flow: row wrap;

}

.afbeeldingen-tekst-element .parallax:after{
    display: none;
}

a:not([href]):not([tabindex]) {
    color: black;
    text-decoration: none;
}

.afbeeldingen-tekst-form .submit-form-btn {
    width: auto;
    margin-right: 0px;
    margin-left: 0px;
    color: white;
    padding-left: 10px;
    padding-right: 10px;
    margin-right: auto;
}

.afbeeldingen-tekst-form .mg-bottom {
    margin-bottom: 50px;
}

/*TITEL SUBTITEL*/

.titel-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.titel-subtitel-element {
    position: relative;
    padding-top: 65px;
    padding-bottom: 65px;
}

.titel-subtitel-element.less-padding {
    padding-top: 20px;
    padding-bottom: 10px;
}

.titel-subtitel-element.center-text {
    max-width: 950px;
    margin: 0 auto;
    text-align: center;
}

.titel-subtitel-element .subtitel {
    display: inline-block;
}

/*TITLES ANIMATIE*/

.anim-titles {
    overflow: hidden;
}

.anim-titles__slide-in-wrapper {
    display: inline-block;
    transform: translateX(0%);
    opacity: 1;
    -webkit-transition: all 1s cubic-bezier(.22,.61,.36,1);
    -moz-transition: all 1s cubic-bezier(.22,.61,.36,1);
    -ms-transition: all 1s cubic-bezier(.22,.61,.36,1);
    -o-transition: all 1s cubic-bezier(.22,.61,.36,1);
    transition: all 1s cubic-bezier(.22,.61,.36,1);
    -webkit-transform: translateX(0%);
    -moz-transform: translateX(0%);
    -ms-transform: translateX(0%);
    -o-transform: translateX(0%);
}

.anim-titles.in-view .anim-titles__slide-in-wrapper {
    transform: translateX(0);
    opacity: 1;
}

.anim-titles__slide-up-wrapper {
    display: inline-block;
    transform: translateY(0px);
    opacity: 1;
    -webkit-transition: all 1s cubic-bezier(.22,.61,.36,1);
    -moz-transition: all 1s cubic-bezier(.22,.61,.36,1);
    -ms-transition: all 1s cubic-bezier(.22,.61,.36,1);
    -o-transition: all 1s cubic-bezier(.22,.61,.36,1);
    transition: all 1s cubic-bezier(.22,.61,.36,1);
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
}

.anim-titles.in-view .anim-titles__slide-up-wrapper {
    transform: translateY(0);
    opacity: 1;

    transition-delay: .5s;
}

/*LOOKBOOK*/

.lookbook-container {
    position: relative;
}

.lookbook-container .lookbook-item {
    position: relative;
    height: auto;
    margin-bottom: 20px;
    overflow: hidden;
}

.lookbook-container .lookbook-item img {
    height: 100%;
    width: 100%;
}

.lookbook-item .lookbook-afbeelding {
    position: relative;

    -webkit-transition: all .8s ease;
    -moz-transition: all .8s ease;
    -ms-transition: all .8s ease;
    -o-transition: all .8s ease;
    transition: all .8s ease;
}

.lookbook-item .lookbook-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: transparent;


    -webkit-transition: all .8s ease;
    -moz-transition: all .8s ease;
    -ms-transition: all .8s ease;
    -o-transition: all .8s ease;
    transition: all .8s ease;
}

.lookbook-overlay .overlay-content {
    position: relative;
    text-align: center;
}

.lookbook-overlay .overlay-content .add-icon {
    position: relative;
    margin-bottom: 15px;
    opacity: 0;

    -webkit-transform: translateY(15px);
    -moz-transform: translateY(15px);
    -ms-transform: translateY(15px);
    -o-transform: translateY(15px);
    transform: translateY(15px);

    -webkit-transition: all .8s ease;
    -moz-transition: all .8s ease;
    -ms-transition: all .8s ease;
    -o-transition: all .8s ease;
    transition: all .8s ease;
}

.lookbook-overlay .overlay-content p {
    position: relative;
    opacity: 0;
    color: white;

    -webkit-transform: translateY(25px);
    -moz-transform: translateY(25px);
    -ms-transform: translateY(25px);
    -o-transform: translateY(25px);
    transform: translateY(25px);


    -webkit-transition: all .8s ease;
    -moz-transition: all .8s ease;
    -ms-transition: all .8s ease;
    -o-transition: all .8s ease;
    transition: all .8s ease;
}

.lookbook-item:hover .lookbook-overlay  {
    background-color: rgba(0,0,0, .2);
}

.lookbook-item:hover .lookbook-overlay .overlay-content .add-icon,
.lookbook-item:hover .lookbook-overlay .overlay-content p {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);

    opacity: 1;
}

.lookbook-item:hover .lookbook-afbeelding {
    -webkit-transform: scale(1.08);
    -moz-transform: scale(1.08);
    -ms-transform: scale(1.08);
    -o-transform: scale(1.08);
    transform: scale(1.08);
}
.grid-item {
    width: calc(50% - 10px);
    opacity: 0;
}

.grid.done .grid-item{
    opacity: 1;
}
/*IMAGE GROW ANIMATIE*/

/* .-wrapper {
    overflow: hidden;
} */
/*
. {
    -webkit-transition: transform .8s ease;
    -moz-transition: transform .8s ease;
    -ms-transition: transform .8s ease;
    -o-transition: transform .8s ease;
    transition: transform .8s ease;
} */

/* .-wrapper:hover{
    -webkit-transform: scale(1.08);
    -moz-transform: scale(1.08);
    -ms-transform: scale(1.08);
    -o-transform: scale(1.08);
    transform: scale(1.08);
}

.slider-container.projecten .-wrapper:hover {
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
} */

/*SLIDE IN ANIMATIE*/

.slide-in-wrapper {

}

.slide-in {
    opacity: 1;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
    -webkit-transition: transform .8s ease, opacity .8s ease;
    -moz-transition: transform .8s ease, opacity .8s ease;
    -ms-transition: transform .8s ease, opacity .8s ease;
    -o-transition: transform .8s ease, opacity .8s ease;
    transition: transform .8s ease, opacity .8s ease;
}

.slide-in-wrapper:hover .slide-in {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);

    opacity: 1;
}

.slide-in-visible {
    -webkit-transition: transform .8s ease;
    -moz-transition: transform .8s ease;
    -ms-transition: transform .8s ease;
    -o-transition: transform .8s ease;
    transition: transform .8s ease;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
}

.slide-in-wrapper:hover .slide-in-visible {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}


/*BLOG OVERZICHT*/

.blog-overzicht-container {
    position: relative;
    padding-top: 40px;
    padding-bottom: 40px;
}

.blog-overzicht-titel {
    position: relative;
    text-align: left;
    width: 100%;
    z-index: 6;
    top: 0px;
}

.slider-container.blogs {
    position: relative;
    margin-bottom: 80px;
    height: 600px;
}

.slider-container.blogs .swiper-slide {
    opacity: .3;

    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -ms-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}

.slider-container.blogs .swiper-slide-active,
.slider-container.blogs .swiper-slide-duplicate-active {
    opacity: 1;
}

.slider-container.blogs .swiper-pagination {
    bottom: -57px;
}

.blog-slide-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.blog-slide-wrapper .blog-slide-image {
    position: relative;
    height: 100%;
}

.blog-slide-wrapper .blog-slide-image:before {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: rgba(0,0,0, .25);
    top: 0;
    left: 0;
    z-index: 1;
}

.blog-slide-wrapper .blog-slide-content {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    text-align: center;
    z-index: 1;

    padding: 10%;
}

.blog-slide-content .titel {
    position: relative;
}

.blog-slide-content .titel h3 {
    color: white;
}
.blog-slide-content .datum p, .hotel-content .datum p {
    color: rgba(255,255,255, .5);
    margin-bottom: 0;
}


/*BLOG ITEM*/
.item-wrapper-bottom svg{
    margin: 0 0 3px 6px;
    fill:#484848;
}

.item-wrapper-bottom{
    margin-bottom: 40px;
}

.items-container .blog-wrapper:nth-child(2n),
.items-container .project-wrapper:nth-child(2n),
.items-container .product-wrapper:nth-child(2n),
.items-container .hotel-wrapper:nth-child(2n),
.home-intro-container .items-container .project-wrapper:nth-child(3n),
.items-container .parent-item-wrapper:nth-child(2n)
{
    margin-right: 0;
}

.home-intro-container .items-container .project-wrapper:nth-child(2n){
    margin-right: 20px;
}
.blog-wrapper {
    position: relative;
    width: calc(1/2 * 100% - (1 - 1/2) * 20px);
    margin-bottom: 65px;
    margin-right: 20px;
    overflow: hidden;
}

.blog-wrapper .blog-wrapper-inner {
    position: relative;
    opacity: 0;

    -webkit-transition: opacity 2.5s cubic-bezier(.22,.61,.36,1);
    -moz-transition: opacity 2.5s cubic-bezier(.22,.61,.36,1);
    -o-transition: opacity 2.5s cubic-bezier(.22,.61,.36,1);
    transition: opacity 2.5s cubic-bezier(.22,.61,.36,1);
}

.blog-wrapper.in-view .blog-wrapper-inner {
    opacity: 1;
}

.blog-wrapper .blog-afbeelding {
    position: relative;
    height: 300px;
}

.blog-wrapper .blog-inner {
    position: relative;
    margin-top: 35px;
}

.blog-wrapper .datum {
    position: relative;
}

.blog-wrapper .datum p {
    color: #484848;
    margin-bottom: 0;
    font-size: 12px;
}

/*IN VIEW FADE*/

.items-container .project-wrapper,
.items-container .product-wrapper,
.items-container .hotel-wrapper {
    opacity: 1;

    -webkit-transition: opacity 2.5s cubic-bezier(.22, .61, .36, 1);
    -moz-transition: opacity 2.5s cubic-bezier(.22, .61, .36, 1);
    -ms-transition: opacity 2.5s cubic-bezier(.22, .61, .36, 1);
    -o-transition: opacity 2.5s cubic-bezier(.22, .61, .36, 1);
    transition: opacity 2.5s cubic-bezier(.22, .61, .36, 1);
}
.home-intro-wrapper .items-container .project-wrapper{
    width: calc(1/3 * 100% - (1 - 1/3) * 20px);;
}
.items-container.project-index  .project-wrapper{
    max-height: unset;
    max-width: unset;
}
.items-container .project-wrapper.in-view,
.items-container .product-wrapper.in-view,
.items-container .hotel-wrapper.in-view {
    opacity: 1;
}

.project-wrapper .full-link-btn {
    z-index: 6;
}

/* BREADCRUMS */
.breadcrumbs svg{
    margin-right: 2px;
    margin-left: 0;
    margin-bottom: 4px;
    transform: rotate(180deg);
}

.breadcrumbs a:after{
    background-color: #484848;
    bottom: -2px;
}
.breadcrumbs a, .breadcrumbs a:hover{
    text-transform: uppercase;
    color: #484848;
}
.breadcrumbs {
    margin-top: 10px;
    margin-bottom: 10px;
}
/* CONTACTFORM STYLING */

form {
    font-size: 0;
}

.active-announce .announce-form{
    transform: translateY(0%);
    -webkit-transform: translateY(0%);
    -moz-transform: translateY(0%);
    -ms-transform: translateY(0%);
    -o-transform: translateY(0%);
}

.footer-announce-form.active-announce .placeholder{
    transform: translateY(-100%);
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
}

.submit-form.submit-form-btn{
    /* position: absolute;
    top: 0; */
    margin-top: 0;
    padding: 0 0 0 0 ;
    width: 44px;
    height: 44px;
    border-width: 0px;
}
.afbeeldingen-tekst-form label, .afbeeldingen-tekst-form span, .afbeeldingen-tekst-form option, .afbeeldingen-tekst-form input{
    color: black;
}

.footer-menu .afbeeldingen-tekst-form .submit-form-btn:hover:after{
    opacity: 1;
    background: white;
}

.afbeeldingen-tekst-form .submit-form-btn:hover:after{
    opacity: 0;
}
.submit-form-btn span{
    position: relative;
    z-index: 3;
    color: #484848;
}
.submit-form.submit-form-btn:after{
    opacity: 1;
    transition: all .5s ease-in-out;
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .5s ease-in-out;
    -ms-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    display: none;
}

.submit-form.submit-form-btn:hover:after{
    background-color: white;
}


.submit-form.submit-form-btn a{
    padding: 10px ;
}

.footer-announce-form .submit-form.submit-form-btn a{
    padding: 10px 10px 14px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.footer-announce-form{
    border: 1px solid white;
    overflow: hidden;
    position: relative;
    height: 45px;
}
.announce-form .form-field-container{
    overflow: visible;
    padding-top: 0;
    width: calc(100% - 44px);
}
.announce-form .form-field__input::placeholder{
    color: white;
    text-transform: uppercase;
}



.footer-wrapper .footer-kolom.left{
    width: 42.5%;
}
.footer-wrapper .footer-kolom {
    width: 57.5%;
}
.footer-wrapper .right .footer-kolom-inner:nth-last-child(1){
    padding-right: 0;
}
.announce-form .form-field__input{
    color: white;
    text-transform: uppercase;
    padding: 10px;
}
.announce-form .form-field__input,
.announce-form .form-field__textarea,
.announce-form .form-field{
    height: 100%;
}

.footer-announce-form .placeholder{
    height: 44px;
    position: absolute;
    width: 100%;
    left: 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;
    color: white;
    text-transform: uppercase;
    padding: 8px 10px;
}

.footer-announce-form .placeholder span{
    color: white;
    font-size: 16px;
    line-height: 28px;
}

.footer-announce-form button svg{
    fill: white;
}
.footer-announce-form:hover .placeholder{
    transform: translateY(-100%);
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
}

.announce-form button span{
    color: #484848;
    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;
}
.announce-form .form-field__input {
    /* border-bottom: 1px solid rgb(255, 255, 255);
    border-top: 1px solid rgb(255, 255, 255);
    border-right: 1px solid rgb(255, 255, 255);
    border-left: 1px solid rgb(255, 255, 255);
    background: white; */
}

.footer-announce-form:hover .announce-form{
    transform: translate(0);
    -webkit-transform: translate(0);
    -moz-transform: translate(0);
    -ms-transform: translate(0);
    -o-transform: translate(0);
}
.announce-form{
    transform: translateY(100%);
    -webkit-transform: translateY(100%);
    -moz-transform: translateY(100%);
    -ms-transform: translateY(100%);
    -o-transform: translateY(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;
}
.announce-form label{
    display: none;
}
.form-field {
    display: block;
    position: relative;
    z-index: 3;
    width: 100%;
}

.form-field-container.select .form-field.select{
    display: flex;
    position: relative;
    z-index: 3;
    width: 100%;
    justify-content: space-between;
}

.form-field-container.select  .form-field.select .form-field__label, .radio .form-field__label{
    position: relative;
    width: auto;
    display: flex;
    align-items: center;
    padding-right: 30px;
    transform: translate(0, 0) scale(1)!important;
    -webkit-transform: translate(0, 0) scale(1)!important;
    -moz-transform: translate(0, 0) scale(1)!important;
    -ms-transform: translate(0, 0) scale(1)!important;
    -o-transform: translate(0, 0) scale(1)!important;
    top: 0!important;
}
.form-field.select select{
    width: auto;
}

.form-field.select::before{
    content: '';
    position: absolute;
    top: 50%;
    right: 18px;
    height: 8px;
    width: 8px;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid #88898A;
    background-color: transparent;
    transform: translateY(-50%);
}

.afbeeldingen-tekst-form .form-field-container{
    margin-right: 20px;
    margin-left: 20px;
}
.afbeeldingen-tekst-form .form-field-container{
    width: calc(100% - 40px);
}
.form-field-container.two_third {
    width: calc(((100% / 3) * 2) - 40px);
}

.form-field-container.one_third {
    width: calc((100% / 3 ) - 40px);
}
.form-field.checkbox, .form-field.radio{
    display: flex;
    flex-direction: row;
    align-items: center;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(136, 137, 138, .2)
}
.form-field.checkbox .form-field__label{
    top: 0;
    position: relative;
    width: auto;
    padding-right: 30px;
    display: flex;
    align-content: center;
}
.form-field_check_label{
    padding-right: 20px;
    margin-bottom: 0;
}
.form-field-container.half {
    width: calc(50% - 40px);
}

.form-field-container.select {
    /* padding-top: 38px; */
    margin-bottom: 0px;
}

.form-field-container.select .form-field--stay-filled .form-field__label {
    -webkit-transform: translateY(-32px) scale(.7);
    -ms-transform: translateY(-32px) scale(.7);
    transform: translateY(-32px) scale(.7);
}

.form-field-container .form-field--is-active .form-field__label,
.form-field-container .form-field--is-filled .form-field__label,
.form-field-container .form-field--stay-filled .form-field__label {
    -webkit-transform: translateY(-25px) scale(.7);
    -ms-transform: translateY(-25px) scale(.7);
    transform: translateY(-25px) scale(.7);
}



.form-field__label {
    position: absolute;
    display: block;
    top: 4px;
    left: 0;
    margin: 0;
    padding: 0;
    width: 100%;
    z-index: -1;

    -webkit-transform: translateY(0) scale(1);
    -moz-transform: translateY(0) scale(1);
    -ms-transform: translateY(0) scale(1);
    -o-transform: translateY(0) scale(1);
    transform: translateY(0) scale(1);

    transform-origin: left;

    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -ms-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
}

.form-field__label p,
option p {
    display: inline;
    font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
}

.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);
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    width: 1%;
}

.form-field__input,
.form-field__textarea {
    -webkit-appearance: none!important;
    -moz-appearance: none!important;
    appearance: none!important;
    background: transparent;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    border: 0;
    border-bottom: 1px solid rgba(136, 137, 138, .5);
    color: #333333;
    display: block;
    outline: 0;
    width: 100%;
    z-index: 5;
    height: 40px;
    padding: 0;
}

/* .leaflet-pane .leaflet-layer:nth-child(2){
    opacity: 0!important;
}

.leaflet-tile-container{
    filter: brightness(3);
    -webkit-filter: brightness(3);
}
.leaflet-pane .leaflet-pane.leaflet-tile-pane{
    filter: grayscale(6) invert(20%) contrast(0.2) brightness(1.8);
    -webkit-filter: grayscale(6) invert(20%) contrast(0.2) brightness(1.8);
} */
.form-field-container {
    position: relative;
    display: flex;
    overflow: hidden;
    padding-top: 24px;
    width: 100%;
    justify-content: center;
    align-items: flex-end;
}


.footer-menu .afbeeldingen-tekst-form input.form-field__input{
    background-color: white;
    height: 44px;
    border: 1px solid white;
}

.footer-menu .afbeeldingen-tekst-form form{
    width: 100%;
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
}

.footer-menu .afbeeldingen-tekst-form .form-field-container:nth-last-child(3){
    width: 60%;
}

.footer-menu .afbeeldingen-tekst-form .form-field-container:nth-last-child(2){
    width: 40%;
}
.footer-menu .afbeeldingen-tekst-form .form-field-container{
    padding-top: 0;
    width: 50%;
    margin: 0 0 0 0 ;
}

.footer-menu .afbeeldingen-tekst-form .submit-form-btn{
    height: 44px;
    margin-top: 0;
    
}



.form-field-container input, textarea, .form-field__input {
    margin-top: 0;
    padding: 10px 20px;
    background: rgba(136, 137, 138, .04);
    border: 1px solid rgba(136, 137, 138, .5);
    height: 60px;
    color: #484848;
}

.date .form-field__label{
    z-index: 2;
    line-height: 58px;
    background-color: #fafafa;
    left: 20px;
    top: 1px;
    width: calc(100% - 30px);
}
.modal .afbeeldingen-tekst-form .form-field-container{
    width: 100%!important;
}
.form-field.first label {
    display: block;
}

.form-field.select select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: transparent;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    padding: 10px 20px;
    background: rgba(136, 137, 138, .04);
    border: 1px solid rgba(136, 137, 138, .5);
    height: 60px;
    width: 100%;
}

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"] {
    position: relative;
    -webkit-appearance: none;
    padding: 5px;
    width: 14px;
    height: 14px;
    border: 1px solid  #C3C4C4;;
}

.form-field input[type="checkbox"]:checked {
    color: #DBDBDB;
}

.form-field input[type="checkbox"]:after,
.form-field input[type="radio"]:after {
    content: '';
    position: absolute;
    width: 14px !important;
    height: 14px !important;
    top: -1px;
    left: -1px;
    background-color: transparent;

    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -ms-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}

.form-field input[type="radio"]:after {
    width: 14px !important;
    height: 14px !important;
    top: -1px;
    left: -1px;
    -webkit-border-radius: 0%;
    -moz-border-radius: 0%;
    border-radius: 0%;
    -ms-border-radius: 0%;
    -o-border-radius: 0%;
}

.form-field input[type="checkbox"]:checked:after {
    background-color:  #C3C4C4;
}

.form-field input[type="radio"] {
    position: relative;
    -webkit-appearance: none;
    padding: 5px;
    width: 14px;
    height: 14px;

    border: 1px solid  #C3C4C4;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}

.form-field input[type="radio"]:checked {
    color: black;
}

.form-field input[type="radio"]:checked:after {
    background-color: rgba(136, 137, 138, .5);
}

textarea {
    min-height: 150px;
    max-height: 350px;
}

.submit-form-btn {
    margin-top: 10px;
}

button:focus {
    outline: none;
}

/* MODAL */
#productmodal .modal-body {
    padding-top: 40px;
    padding-bottom: 50px;
}
.modal-content{
    background-color: white;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    padding: 0;
    border: none;
    overflow: hidden;
}
.modal-header, .modal-footer, .modal-body{
    position: relative;
    border-bottom: none;
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom-left-radius: unset;
    border-bottom-right-radius: unset;
    border-top-left-radius: unset;
    border-top-right-radius: unset;
    padding: 0px 50px;
    justify-content: flex-start;
    color: white;
}
.hide-modal .modal{
    display: none!important;
}
.modal-open .modal{
    background: rgba(136, 137, 138, 0.77);
}
.modal-body{
    padding-top: 50px;
    padding-bottom: 25px;
}
.modal-footer{
    padding-top: 0;
    padding-bottom: 50px;
}

.modal-header .close {
    margin: 0;
    position: absolute;
    top: 0;
    right: 0;
    border: none;
    background: #dbdbdb;
    height: 50px;
    width: 50px;
    opacity: 1;
    z-index: 10;
    padding: 10px;
}

/*QUOTE ELEMENT*/

.quote-element {
    margin-top: 0;
    margin-bottom: 0;
    padding: 80px 10%;
}

/* FOOTER */
.footer-container.index-footer {
    margin-top: 0;
}

.footer-container {
    position: relative;
    margin-top: 0px;
    padding-top: 100px;
    padding-bottom: 240px;
    background-color: #484848;
}

.footer-wrapper .footer-logo {
    position: relative;
    height: 40px;
}

.footer-wrapper .footer-logo img {
    filter: brightness(0) invert(1);
    max-height: 100%;
    width: 260px;
    height: auto;
    -webkit-filter: brightness(0) invert(1);
}

.footer-kolom.mobile .social-media {
    display: none;
}

.social-media {
    position: relative;
    margin-top: auto;
}

.social-media.socials .footer-item{
    background: #555556;
}

.social-media .footer-item {
    margin-right: 14px;
}
.social-media.socials{
    margin-top: 20px;
    margin-left: 0;
}

.social-media a,
.social-media p {
    position: relative;
    color: white;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 0;
}

.social-media.socials a:last-child {
    margin-right: 0;
    opacity: 1;
}

.footer-kolom-inner {
    position: relative;
    width: 50%;
    padding-right: 20px;
}

.footer-kolom-inner a,
.footer-kolom-inner p {
    position: relative;
    margin-bottom: 0;
    display: inline-block;
    color: white;
    text-decoration: none;
}

.footer-kolom-inner .kolom-kopje {
    color: white;
    margin-bottom: 15px;
    margin-top: 13px;
}

.footer-menu .footer-item {
    position: relative;
    /* margin-bottom: 10px; */
}

.footer-menu a, .breadcrumbs a {
    position: relative;
    text-decoration: none;
}

.footer-item a:after {
    background-color: white;
}

.footer-menu .footer-item:last-child {
    margin-bottom: 0;
}

.contact-info {
    position: relative;
    height: 100%;
}

.contact-info .email {
    /* margin-top: 36px; */
}

.footer-menu p , .footer-item a{
    font-size: 13px;
}

.contact-info .email:after {
    -webkit-transform: translateY(-3px);
    -moz-transform: translateY(-3px);
    -ms-transform: translateY(-3px);
    -o-transform: translateY(-3px);
    transform: translateY(-3px);
}
.nilson-info .socials.social-media .footer-item{
    margin-right: 20px;
}


.nilson-info .socials.social-media .footer-item:nth-last-child(1){
    margin-right: 0px;
}
.nilson-info {
    position: absolute;
    bottom: -125px;
    width: 100%;
    left: 0;
}

.nilson-info a,
.nilson-info p {
    font-size: 12px;
    opacity: .6;
}
.nilson-info p a {
    opacity: 1;
}

.nilson-info .footer-item {
    margin-right: 0;
}

.nilson-info .spacer {
    margin-left: 5px;
    margin-right: 5px;
}

/* socials */

.footer-container-inner{
    position: relative;
    padding-bottom: 40px;
}
.footer-container .socials a::after{
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: white;
    -webkit-transform: scale(0);
    transform: scale(0);
    -webkit-transform-origin: center center;
    transform-origin: center center;
    transition: -webkit-transform .5s cubic-bezier(.19, 1, .22, 1);
    transition: transform .5s cubic-bezier(.19, 1, .22, 1);
    transition: transform .5s cubic-bezier(.19, 1, .22, 1), -webkit-transform .5s cubic-bezier(.19, 1, .22, 1);
    border-radius: 50%;
    z-index: 0;
    display: none;
}

.footer-container .socials a{
    height: 30px;
    width: 30px;
}
.footer-container .socials a:hover:after {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

.footer-container .socials a:before {
    content: '';
    background: transparent;
    height: 30px;
    width: 30px;
    /* border: 1px solid white; */
    line-height: 30px;
    border-radius: 100%;
    display: inline-block;
    vertical-align: baseline;
    font-family: 'FontAwesome';
    color: white;
    text-align: center;
    font-size: 13px;
    z-index: 2;
    position: relative;

    -webkit-transition: all .2s ease-in;
    -moz-transition: all .2s ease-in;
    -ms-transition: all .2s ease-in;
    -o-transition: all .2s ease-in;
    transition: all .2s ease-in;
}

.socials a.facebook:before{
    content: '\f09a';
}

.socials a.twitter:before{
    content: '\f099';
}

.socials a.linkedin:before {
    content: '\f0e1';
}

.socials a.google:before {
    content: '\f0d5';
}

.socials a.instagram:before {
    content: '\f16d';
}

.socials a.pinterest:before{
    content: '\f231';
}

.footer-container .socials a:hover:before{
    opacity: .8;
    color: white;
}
/*ACCORDION*/

.accordion {
    position: relative;
    height: auto;
    min-height: 76px;
    cursor: pointer;
    padding: 20px 80px 20px 30px;
    width: 100%;
    text-align: left;
    outline: none;
    border: 0;
    background-color: transparent;
    border-top: 1px solid rgba(136, 137, 138, .5);

    -webkit-transition: all .5s ease;
    -moz-transition: all .5s ease;
    -ms-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
}



.dealer__result .accordion{
    min-height: 28px;
    padding: 0;
    border-top: none;
    border: none;
    background-color: none;
    border-bottom: 0px;
    padding-right: 20px;
}

.dealer__result__list {
    overflow: hidden;
}

.dealer__search__wrapper{
    width: 30%;
    padding-right: 30px;
}

#maps,
#maps-container {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.leaflet-marker-icon{
    height: 73px;
    width: 73px;
}

.custom-div-icon {
    height: 20px!important;
    width: 20px!important;
    background: transparent;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
}

.custom-div-icon:before {
    display: none;
    content: '';
    background: #5c5c5c;
    width: 200%;
    height: 200%;
    top: -10px;
    left: -10px;
    position: absolute;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
    background-color: rgba(0,0,0, .1);
    z-index: 0;
    opacity: 1;
    -webkit-animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
    animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;

    -webkit-transition: all .4s ease;
    -moz-transition: all .4s ease;
    -ms-transition: all .4s ease;
    -o-transition: all .4s ease;
    transition: all .4s ease;
}
.custom-div-icon:after {
    content: '';
    background-image: url('https://plate-assets.com/img/44b0f53dd7/maps.png?height=125&signature=5892a30ecd4796328ff98f651026f4c878d7fc53');
    background-size: contain;
    background-position: center center;
    width: 100%;
    height: 100%;
    top: 0;
    left: -0%;
    position: absolute;   
    z-index: 11;
    opacity: 1;
}

img.leaflet-tile.leaflet-tile-loaded {
    filter: grayscale(9) invert(1) brightness(1.35) hue-rotate(-14deg) brightness(1.1) invert(1);
}

.custom-div-icon:before{

}
.loader{
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 1000;
    background: rgba(219, 219, 219, 0.8);
}

.loader-animation{
    left: 50%;
    top: 50%;
    height: 100px;
    width: 100px;
    position: relative;
    background: #c5c3c3;
    border-radius: 100%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
}

.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;
}


@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }

.location-wrapper {
    width: 70%;
    height: 80vh;
    margin-bottom: 100px;
    position: relative;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    overflow: hidden;
    -ms-border-radius: 0px;
    -o-border-radius: 0px;
}

.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: 5px;
    border-bottom-left-radius: 5px;
}

.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;
}



.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;
}

.accordion h5.intro {
    margin-bottom: 0;
    font-size: 13px;
    line-height: 38px;
}

.accordion:focus {
    outline: none;
}

.panel {
    padding: 0 30px;
    background-color: transparent;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    border: none;
}

.panel .inner-panel {
    padding: 0 0 20px 0;
}

.panel .inner-panel p {
    margin-bottom: 0;
}

.dealer__result .accordion .open-close {
    position: absolute;
    right: 0px;
    height: 0;
    width: 0;
    top: 15px;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 7px solid #5c5c5c;
}

.dealer__result  .accordion.active .open-close{
    transform: rotate(-180deg) translateY(50%);
    -webkit-transform: rotate(-180deg) translateY(50%);
    -moz-transform: rotate(-180deg) translateY(50%);
    -ms-transform: rotate(-180deg) translateY(50%);
    -o-transform: rotate(-180deg) translateY(50%);
}
.accordion .open-close {
    position: absolute;
    right: 30px;
    height: 25px;
    width: 25px;
    top: 22px;

    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.accordion .open-close svg {
    position: relative;
    top: -2px;
    width: 100%;
    height: 100%;
}

.accordion.active .open-close {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.product-categories h2{
    margin-bottom: 20px;
    font-family: 'FrankRuhlLibre';
    text-transform: initial;
    font-size: 40px;
    line-height: 45px;
}
/*BLOG ARTIKELEN*/

.blogartikel-show .intro-container {
    padding-top: 65px;
    padding-bottom: 100px;
}

.highlighted-products {
    padding-top: 80px;
    padding-bottom: 80px;
}

.highlighted-products .titel-container {
    margin-bottom: 45px;
}


.blogartikel-show .date-time {
    padding-top: 85px;
    padding-bottom: 35px;
}

.date-time p {
    color: #484848;
    opacity: .6;
    font-size: 14px;
    margin-bottom: 0;
}

.date-time .datum {

}

.date-time .datum p:after {
    content: '';
    width: 30px;
    height: 1px;
    display: inline-block;
    background-color: #dbdbdb;
    position: relative;
    margin-right: 18px;
    margin-left: 18px;
    vertical-align: middle;
}

/* MEDIA QUERIES */

@media screen and (max-width: 1500px) {

}

@media screen and (max-width: 1300px) {
    .product-cat-wrapper {
        height: 450px;
    }

    /* .designers-wrapper .afbeelding {
        height: 450px;
    } */

    .items-container .blog-wrapper {
        width: calc(1/2 * 100% - (1 - 1/2) * 20px);
        margin-bottom: 20px;
    }

    .blog-wrapper .blog-inner {
        margin-top: 15px;
    }

    /* .items-container .blog-wrapper:nth-child(2n),
    .items-container .project-wrapper:nth-child(2n),
    .items-container .hotel-wrapper:nth-child(2n) {
        margin-right: 20px;
    }

    .items-container .blog-wrapper:nth-child(2n),
    .items-container .hotel-wrapper:nth-child(2n),
    .items-container .project-wrapper:nth-child(3n) {
        margin-right: 0;
    } */


    .cat-page-content {
        padding-top: 100px;
        padding-bottom: 100px;
    }

    /* .product-wrapper {
        height: 550px;
    } */

    .cat-page-cats .text-image .product-cat-wrapper {
        height: 400px;
        margin-top: 65px;
    }

    .cat-page-cats .image .product-cat-wrapper {
        height: 100%;
        min-height: 700px;
    }



}

@media screen and (max-width: 1024px) {

    h1 {
        font-size: 40px;
        line-height: 45px;
    }

    /* h2 {
        font-size: 38px;
        line-height: 43px;
    }

    h3 {
        font-size: 35px;
        line-height: 45px;
    } */

    h4, .product-cat-link a, .quote h2, .quote h3, .project-content h3 {
        font-size: 25px;
        line-height: 34px;
    }

    h5 {
        font-size: 22px;
        line-height: 28px;
    }

    h6 {
        font-size: 16px;
        line-height: 26px;
    }

    .home-header-inner{
        padding-top: 70%;
    }

    .breadcrumbs{
        margin-top: 20px;
        margin-bottom: 0px;
    }
    .navbar-nav .nav-item{
        padding-right: 30px;
    }
    .slider-container.projecten .swiper-pagination{
        bottom: -2px!important;
    }

    .slider-container.projecten{
        padding-bottom: 50px;
    }

    .mobile{
        display: block;
    }
    .desktop{
        display: none;
    }
    /* .menu-open .bar{
        background-color: white;
    } */

    .menu-content .product-container{
        flex-flow: row wrap;
    }

    .navbar-toggler p{
        display: none;
    }

    .plate--container-fluid {
        padding-left: 15px;
        padding-right: 15px;
    }

    .blog-overzicht-titel {
        top: 0;
    }

    .dealer__search__wrapper h1,
    .afbeeldingen-tekst-element h1,
    .titel-subtitel-element h1 {
        font-size: 22px;
        line-height: 26px;
    }

    .product-cat-link a {
        font-size: 30px;
        line-height: 40px;
    }
    .menu-product-cats:before{
        transform: translateX(15px);
        -webkit-transform: translateX(15px);
        -moz-transform: translateX(15px);
        -ms-transform: translateX(15px);
        -o-transform: translateX(15px);
    }
    .menu-content:before {
        transform: translateX(-15px);
        -webkit-transform: translateX(-15px);
        -moz-transform: translateX(-15px);
        -ms-transform: translateX(-15px);
        -o-transform: translateX(-15px);
    }
    .menu-content{
        padding-left: 0;
    }
    .top-bar {
    }

    .parallax-xs {
         height: 250px;
     }

    .parallax-min-xs {
        min-height: 250px;
        height: 100%;
    }

    .parallax-s {
        height: 450px;
    }

    .parallax-min-s {
        min-height: 450px;
        height: 100%;
    }

    .parallax-m {
        height: 500px;
    }

    .parallax-min-m {
        height: 500px;
        min-height: unset;
    }

    .parallax-l {
        height: 625px;
    }

    .parallax-min-l {
        min-height: 625px;
        height: 100%;
    }

 
    .product-categories .inner-categories {
        /* -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column; */
    }

    .product-cat-wrapper {
        width: 100%;
        height: 250px;
        margin-right: 0;
        margin-bottom: 20px;
    }

    .home-intro-container {
        padding-top: 100px;
        padding-bottom: 100px;
    }

    .home-intro-container .afbeeldingen-tekst {
        margin-top: 100px;
    }

    .home-intro-container .afbeeldingen-tekst .text-image .parallax {
        margin-top: 0;
    }

    .home-intro-container .afbeeldingen-tekst .intro-tekst {
        margin: 65px 0;
    }



    /* .designers-wrapper .content-inner .titel {
        margin-bottom: 25px;
    } */

    /* .designers-wrapper .content-inner .tekst {
        margin-top: 25px;
    } */

    /* .home-hotels-container {
        padding-top: 100px;
        padding-bottom: 50px;
    } */

    .home-hotels-container .hotels-wrapper .content.left {
        padding-right: 15px;
    }

    .slider-container.hotels {
        padding-bottom: 65px;
    }

    .slider-container.hotels .swiper-slide {
        width: 50%!important;
    }

    .hotel-wrapper .hotel-inner,
    .project-wrapper .project-inner{
        padding: 15px 30px 30px 30px!important;
    }

    .footer-container {
        padding-top: 100px;
        padding-bottom: 200px;
    }

    .footer-kolom {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        position: relative;
        width: 100%;
    }

    .footer-kolom-inner {
        width: 100%;
        margin-bottom: 35px;
    }

    .footer-kolom-inner:last-child {
        margin-bottom: 0;
    }

    .footer-wrapper .footer-logo,
    .footer-wrapper .social-media {
        margin-bottom: 35px;
    }

    /* .designers-wrapper .afbeelding {
        height: 350px;
    } */

    .hotel-wrapper {
        height: 350px;
    }

    .product-cat-page {
        padding-top: 0;
        padding-bottom: 0;
    }

    .cat-page-header .titel h1 {
        font-size: 40px;
        line-height: 50px;
    }

    .cat-page-header .cat-page-image {
        height: 350px;
    }

    .cat-page-content {
        padding-top: 65px;
        padding-bottom: 65px;
    }

    .product-wrapper:nth-child(1n) {
        width: 100%;
        margin-right: 0;
        padding-top: 67%;
    }

    .cat-page-quote {
        padding: 60px 8%;
        margin-top: 60px;
        margin-bottom: 60px;
    }

    .cat-page-cats .text-image .intro-tekst {
        margin-top: 0;
    }

    .cat-page-cats .text-image .intro-tekst h2 {
        margin-bottom: 25px;
    }

    .cat-page-cats .text-image .product-cat-wrapper {
        height: 250px;
        margin-top: 65px;
    }

    .cat-page-cats .image .product-cat-wrapper {
        height: 250px;
        min-height: unset;
    }

    .product-show .intro-container {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .product-show .afbeeldingen-tekst, .product-show .afbeeldingen-galerij {
        margin-top: 100px;
    }

    .hotel-intro-container,
    .project-intro-container {
        padding-top: 0px;
        padding-bottom: 100px;
    }

    .hotel-intro-container .text-image .parallax,
    .project-intro-container .text-image .parallax {
        margin-top: 0;
        order: 1;
    }

    .hotel-intro-container .text-image{
        margin-bottom: 40px;
    }

    .hotel-intro-container .text-image .intro-tekst,
    .project-intro-container .text-image .intro-tekst {
        order: 2;
        padding-top: 65px;
        padding-bottom: 65px;
    }

    .sleep-test-container,
    .project-content-wrapper {
        padding-bottom: 100px;
    }

    .project-content-wrapper {
        max-width: 85%;
    }

    .galerij-afbeelding {
        height: 300px;
        width: calc(2/4 * 100% - (1 - 2/4) * 20px)!important;
    }

    .product-tabs-container .tab-row {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .tab-row .name {
        margin-bottom: 10px;
    }

    .tab-links {
        list-style: none;
        padding-left: 0;
        margin-bottom: 65px;
    }

    .stofgroepen-tabs-container .tab-links {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;

        margin-bottom: 0;
    }

    .stofgroepen-tabs-container .tab-links li {
        border-bottom: 0;
        width: auto;
        margin-right: 0;
        position: absolute;
        opacity: 1!important;
    }

    .stofgroepen-tabs-container .tab-links li:nth-child(1) {
        top: 0;
    }

    .stofgroepen-tabs-container .tab-links li:nth-child(2) {
        top: 260px;
    }

    .stofgroepen-tabs-container .tab-links li:nth-child(3) {
        top: 520px;
    }

    .stofgroepen-tabs-container .tab-links li:nth-child(4) {
        top: 780px;
    }

    .stofgroepen-tabs-container .tab-links li:nth-child(5) {
        top: 1040px;
    }

    .stofgroepen-tabs-container .tab-links li:nth-child(6) {
        top: 1300px;
    }

    .stofgroep-tab-wrapper .tab {
        position: relative;
        margin-bottom: 80px;
        opacity: 1;
        visibility: visible;
    }

    .product-detail-container .product-detail {
        width: 400px;
    }

    .product-detail .product-image {
        position: relative;
        margin-bottom: 25px;
    }

    .product-detail .product-image img {
        max-height: 150px;
    }

    .prev-next-products {
        position: relative;
        padding-top: 30px;
        padding-bottom: 0;
    }

    .slider-container.blogs {
        margin-bottom: 120px;
        height: 450px;
    }

    .slider-container.images {
        margin-bottom: 100px;
        height: 450px;
    }

    .titel-subtitel-element {
        padding-top: 25px;
        padding-bottom: 45px;
    }

    .afbeeldingen-tekst-element .text-image {
        order: 1;
    }

    .afbeeldingen-tekst-element .image {
        order: 2;
    }
    .items-container .parent-item-wrapper{
        width: 100%;
        margin-bottom: 20px;
        margin-right: 0;
    }

    .items-container .parent-item-wrapper .hotel-wrapper{
        margin-bottom: 10px;
    }
    
    .item-wrapper-bottom{
        margin-bottom: 20px;
    }

    .afbeeldingen-tekst-element .titel-container .subtitel {
        margin-top: 0px;
        margin-bottom: 0px;
    }

    .afbeeldingen-tekst-element .titel-container {
        max-width: 85%;
        margin: unset;
        margin-bottom: 00px;
    }

    .afbeeldingen-tekst-form .titel-container {
        margin-bottom: 20px;
    }

    .afbeeldingen-tekst-element .text-image .parallax {
        margin-top: 0;
        margin-bottom: 65px;
    }

    .intro-tekst {
        max-width: 100%;
    }

    .plate--column {
        min-height: 0;
        flex-basis: 100%;
        max-width: 100%;
    }

    .afbeeldingen-tekst-form {
        margin-bottom: 65px;
    }

    /* .afbeeldingen-tekst-form form {
        width: 100%;
    } */

    .menu-button {
        display: none;
    }

    .navbar-toggler {
        margin-left: auto;
    }

    .navbar-brand {
        margin-right: 10px;
    }

    .footer-wrapper .footer-logo img,
    .navbar-brand img {
        width: 200px;
    }

    .navbar {
        height: 80px!important;
    }

    .main-content-wrapper {
        padding-top: 115px;
    }

    .main-content-wrapper.less-padding {
        padding-top: 80px;
    }

    #navbarResponsive {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;

        -webkit-transition: transform 1s ease-in-out, opacity .8s cubic-bezier(0.22, 0.61, 0.36, 1);
        -moz-transition: transform 1s ease-in-out, opacity .8s cubic-bezier(0.22, 0.61, 0.36, 1);
        -ms-transition: transform 1s ease-in-out, opacity .8s cubic-bezier(0.22, 0.61, 0.36, 1);
        -o-transition: transform 1s ease-in-out, opacity .8s cubic-bezier(0.22, 0.61, 0.36, 1);
        transition: transform 1s ease-in-out, opacity .8s cubic-bezier(0.22, 0.61, 0.36, 1);
    }

    .is-leaving .menu-product-cats {
        -webkit-transform: translateY(100%);
        -moz-transform: translateY(100%);
        -ms-transform: translateY(100%);
        -o-transform: translateY(100%);
        transform: translateY(100%);

        -webkit-transition: transform .8s ease-in-out, opacity .8s cubic-bezier(0.22, 0.61, 0.36, 1);
        -moz-transition: transform .8s ease-in-out, opacity .8s cubic-bezier(0.22, 0.61, 0.36, 1);
        -ms-transition: transform .8s ease-in-out, opacity .8s cubic-bezier(0.22, 0.61, 0.36, 1);
        -o-transition: transform .8s ease-in-out, opacity .8s cubic-bezier(0.22, 0.61, 0.36, 1);
        transition: transform .8s ease-in-out, opacity .8s cubic-bezier(0.22, 0.61, 0.36, 1);
    }

    .menu-wrapper {
        overflow-y: scroll;
        overflow-x: hidden;
        max-height: calc(100vh - 100px);

        display: block;
        flex-direction: unset;
        top: 85px;
    }

    .menu-column-wrapper {
        height: 100%;
        padding-bottom: 30px;
        padding-top: 30px;
        padding-left: 30px;
        padding-right: 30px;

        min-height: fit-content;

        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .menu-column {
        width: 100%;
        height: auto;

        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;

        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;

        min-height: fit-content;

        margin-bottom: 35px;
    }

    .menu-column:nth-child(1) {
        min-height: 320px;
        height: 320px;
    }

    .menu-column:nth-child(2) {
        margin-bottom: 0;
        padding-left: 0;
        padding-top: 30px;
    }

    .navbar-nav{
        height: 100%;
    }


    .navbar-nav .nav-item a {
        margin-bottom: 7px;
        text-transform: uppercase;
        font-size: 13px;
        line-height: 16px;
    }

    .language-switcher {
        height: auto;
    }

    .language-list {
        padding-top: 0px;
    }

    .menu-product-cats {
        width: 100%;
        height: auto;
        padding-bottom: 65px;
    }

    .product-cat-list {
        margin-top: 0;
        margin-bottom: 0;
    }

    .contact-info {
        height: auto;
        margin-top: 0;
    }

    .product-cat-link {
        position: relative;
        margin-bottom: 10px;
    }

    .menu-content {
        width: 100%;
        height: auto;
        padding-top: 0;
        padding-bottom: 145px;
    }

    .menu-content .social-media {
        position: relative;
        margin-top: 25px;
        bottom: unset;
        width: auto;
        left: 0;
    }

    .footer-wrapper .footer-kolom.right{
        margin-top: 40px;
    }

    .opening-hours {
        margin-bottom: 65px;
    }

    .quote-element {
        margin-top: 0!important;
        margin-bottom: 0!important;
    }

    .footer-kolom.desktop .social-media {
        display: none;
    }

    .footer-kolom.mobile .social-media {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        margin-top: 60px;
        margin-bottom: 0;
    }

    .footer-kolom.mobile .footer-item {
        margin-right: 14px;
    }

    .menu-column-inner h5 {
        margin-bottom: 0;
    }


    .afbeeldingen-tekst-form .mg-bottom {
        margin-bottom: 30px;
    }

    .blogartikel-show .intro-container {
        padding-top: 25px;
        padding-bottom: 45px;
    }

    .highlighted-products {
        padding-top: 65px;
        padding-bottom: 0;
    }

    .highlighted-products .titel-container {
        margin-bottom: 25px;
    }

    .blogartikel-show .date-time {
        padding-top: 40px;
        padding-bottom: 30px;
    }

    .nilson-info {
        position: absolute;
        bottom: unset;
        top: 75px;
    }

    .menu-open .menu-product-cats{
        position: relative;
        padding-bottom: 40px;
    }

    .navigation::before{
        display: none;
        content: '';
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        height: 100%;
        background-color: red;
    }

    #tab-options .tab-row .name {
        border-right: 0 solid rgba(103, 103, 104, 0.1);
    }
    #tab-options .value.standard {
        border-right: 0 solid rgba(103, 103, 104, 0.1);
    }
    #tab-options .tab-row {
        padding: 6px 0;
    }
    #tab-options .tab-row .value {
        padding: 0;
    }

}

@media screen and (max-width: 767px) {
    .cat-page-cats .left {
        margin-bottom: 30px;
    }

    .column.text{
        padding: 30px 30px 30px 30px;
    }
    .form-field-container{
        width: calc(100% - 40px)!important;
    }
    .footer-wrapper .footer-kolom{
        width: 100%;
    }
    .cta-bar {
        height: 45px;
    }
    .cta-bar .cta-item a{
        font-size: 8px;
        line-height: 20px;
        padding: 4px 5px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .dealer__search__wrapper, .location-wrapper{
        padding-right: 0;
        padding-left: 0;
        width: 100%;
    }

    .location-wrapper{
        height: 400px;
        margin-top: 40px;
    }

    .faq-wrapper{
        margin-top: 20px;
        margin-bottom: 20px;
    }
    .accordion{
        padding: 20px 80px 20px 0px;
    }

    .titel h2 {
        margin-bottom: 30px;
    }

    .column{
        width: 100%;
    }

    .column.image{
        padding-top: 56.25%;
    }

    .column.image .parallax{
        top: 0;
    }
    .panel{
        padding-left: 0;
    }

    .accordion h5.intro{
        font-size: 13px;
        line-height: 18px;
    }
    .designers-wrapper .right .content-inner{
        padding-left: 0;
        padding-right: 0;
    }
    .left, .right {
        width: 100%;
    }

    .hotel-wrapper, .project-wrapper.-wrapper{
        margin-bottom: 30px;
    }
    .designers-wrapper .video-wrapper, .designers-wrapper .afbeelding, .items-container .project-wrapper, .items-container .hotel-wrapper {
        width: 100%!important;
        padding: 65.421% 0 0 0!important;
        margin-right: 0!important;
        margin-left: 0!important;
        height: 0;
    }
    .home-header-wrapper{
        height: auto;
        max-height: unset;
    }

    .hotel-section{
        margin-top: 0;
    }


    .cta-bar{
        top: unset;
        bottom: 0;
    }

    .home-header-wrapper .swiper-slide{
        margin-bottom: 0;
    }
    .project-wrapper .project-inner.mobile .project-content{
        padding-bottom: 0;
    }
    .project-wrapper .project-inner.mobile{
        display: block;
        position: relative!important;
        margin-top: 70vw;
        bottom: 0;
        padding-bottom: 0;
    }

    .project-wrapper .project-inner.mobile .project-content h1, .project-wrapper .project-inner.mobile .project-content .ondertitel p{
        color: #5c5c5c;
    }

    .hotel-wrapper .hotel-content .titel {
        margin-bottom: 0;
    }

    .items-container .project-wrapper .titel h1 {
        margin-bottom: 0;
    }

    .galerij-afbeelding {
        width: 100%!important;
    }

    .home-header-wrapper .highlights-container{

    }
    .highlights-container {
        max-height: unset;
    }

    .header__highlights img {
        z-index: 3;
    }

    .home-header-wrapper .header__highlight{
        z-index: 16;
    }
    .header__highlight {
        z-index: 3;
    }

    .product-detail-container {
        -webkit-transform: translateY(100%);
        -moz-transform: translateY(100%);
        -ms-transform: translateY(100%);
        -o-transform: translateY(100%);
        transform: translateY(-100%);
    }

    .home-header-wrapper .product-detail-container.modal-open{
        position: absolute;

        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
        transform: translateX(0);

    }
    .product-detail-container.modal-open {
        position: relative;

        -webkit-transform: translateY(-3%);
        -moz-transform: translateY(-3%);
        -ms-transform: translateY(-3%);
        -o-transform: translateY(-3%);
        transform: translateY(-3%);
    }

    .product-detail-container .product-detail {
        width: 100%;
        padding: 12% 8% 8% 8%;
        margin-right: 0;
    }

    .product-detail .product-image img {
        max-height: 250px;
    }

    .product-detail .product-intro {
        margin-bottom: 20px;
    }

    .close-container {
        display: none;
    }

    .afbeeldingen-tekst-element .titel-container {
        max-width: 100%;
    }

    .project-content-wrapper {
        max-width: 100%;
    }

    .grid-item {
        width: 100%;
    }

    .items-container .project-wrapper{
        max-width: unset;

    }
    .product-categories.bottom-categories{
        padding-bottom: 0;
    }
    .product-categories{
        padding-top: 10px;
        padding-bottom: 60px;
    }

    .designers-container, .home-intro-container, .home-hotels-container {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .home-intro-container .items-container .project-wrapper:nth-child(3n){
        margin-bottom: 0;
    }

    .plate--container, .plate--container-fluid{
        padding-left: 30px;
        padding-right: 30px;
    }
    .menu-product-cats:before{
        transform: translateX(30px);
    }
    .menu-content:before{
        transform: translateX(-30px);
    }

    .home-video-container .designers-container{
        padding-top: 0;
    }

    /* .home-video-container .designers-container .content-inner{
        margin-top: 0;
        margin-bottom: 30px;
    } */

    .designers-wrapper .content-inner {
        padding-left: 0;
        padding-right: 0;
        margin-top: 30px;
    }

    .designers-wrapper .right{
        order: 2;
    }
    .product-cat-list{
        width: 100%;
    }

    .stoffen-container {
        grid-template-columns: repeat(auto-fill, minmax(32%, 1fr));
    }

    .stof .stof-naam p {
        font-size: 12px;
        line-height: normal;
    }
}


@media screen and (min-width: 576px) {
    .modal-dialog {
        max-width: 500px;
        margin: 0 auto;
        top: 50%;
        transform: translate(0%,-50%)!important;
    }

}

@media screen and (max-width: 600px) {

    .slider-container.hotels .swiper-slide {
        width: 85%!important;
    }

    /* h1 {
        font-size: 40px;
        line-height: 55px;
    } */
    .titel h1{
        font-size: 22px;
        line-height: 26px;
    }

    /* h2 {
        font-size: 35px;
        line-height: 45px;
    }

    h3 {
        font-size: 30px;
        line-height: 40px;
    } */

    h4 {
        font-size: 20px;
        line-height: 25px;
    }

    h5 {
        font-size: 20px;
        line-height: 26px;
    }

    .ondertitel p{
        font-size: 11px;
        line-height: 15px;
    }
    .blog-overzicht-titel {
        top: 0px;
    }

    /* .dealer__search__wrapper h1,
    .afbeeldingen-tekst-element h1,
    .titel-subtitel-element h1 {
        font-size: 35px;
        line-height: 45px;
    } */

    .items-container .project-wrapper .titel h1 {
        font-size: 35px;
        line-height: 45px;
    }


}
@media screen and (max-width: 550px) {


    .items-container .blog-wrapper,
    .items-container .project-wrapper,
    .items-container .hotel-wrapper {
        margin-right: 0;
        width: 100%;
        /* height: 60vw; */
    }


    .product-categories .inner-categories .item-wrapper, .product-categories.pt-0 .inner-categories .item-wrapper {
        margin-right: 0;
        width: 100%;
        margin-bottom: 20px;
    }

}
@media screen and (max-height: 650px) {
    .menu-column-wrapper .product-container{
        height: 100%;
    }

    .navbar-nav{
        height: 100%;
    }

    .menu-column-wrapper{
        padding:30px;
    }

    .menu-column{
        padding-left: 0;
    }
}

@media screen and (max-height: 800px) and (min-width: 1024px){
    .menu-column-wrapper{
        height: auto;
        min-height: calc(100vh - 155px);
        margin-top: 125px;
    }

    .menu-open .menu-product-cats{
        position: relative;
        top: 0;
        margin-bottom: 20px;
    }

    .language-list{
        padding-top: 0;
    }

    .navbar-nav{
        justify-content: flex-start;
        align-items: flex-start;
        height: auto;
    }

    .home-header-inner{
        padding-top: 66vh;
    }
}

@media screen and (max-width: 400px) {
    .navbar-brand img {
        width: 160px;
    }
}

/*MIN WIDTH*/

@media (min-width: 1921px) {
    .plate--container {
        width: 1900px;
    }
    .product-cat-link {
        text-align: left;
    }
}
/*
@media (min-width: 991px) {
    .footer-kolom-inner:nth-last-child(1){
        padding-left: 20px;
    }
} */
