: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;
}

@font-face {
    font-family: 'Sofia Pro Light';
    src: url('../fonts/SofiaPro-Light.woff2') format('woff2'),
    url('../fonts/SofiaPro-Light.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}


html {
    scroll-behavior: smooth;
}

/* FONT & TEXT STYLING */

h1, h2, h3, h4, h5, h6 {
    font-family: 'FrankRuhlLibre';
    color: #88898A;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1 {
    font-size: 90px;
    line-height: 107px;
}

h2 {
    font-size: 52px;
    line-height: 62px;
}

h3 {
    font-size: 40px;
    line-height: 51px;
}

h4 {
    font-size: 36px;
    line-height: 46px;
}

h5 {
    font-size: 25px;
    line-height: 32px;
}

h6 {
    font-size: 18px;
    line-height: 26px;
}

p, 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: black;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

p, a {
    font-family: 'Sofia Pro Light';
    font-size: 16px;
    line-height: 28px;
    color: black;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/*SMOOTH SCROLL STYLING*/

html, body {
    width: 100vw;
    height: 100vh;
}

body {
    -webkit-transition: background-color 1s ease;
    -moz-transition: background-color 1s ease;
    -ms-transition: background-color 1s ease;
    -o-transition: background-color 1s ease;
    transition: background-color 1s ease;
}

::-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: #88898A;
    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: 100px;
    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(255, 255, 255, .5);
    text-decoration: none;

    -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);
}

.language-list li.current a,
.language-list li:hover a {
    color: white;
}

: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: 2;
    top: 0;
    left: 0;
}

.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: 0!important;
}

.main-content-wrapper.less-padding {
    padding-top: 150px;
}

.left,
.right {
    position: relative;
    width: calc(50% - 10px);
}

/*LOADER STYLING*/

#loader-wrapper {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    background: #88898A;
    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: 100%;
    padding-left: 8%;
    padding-right: 8%;
}

/* 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: #88898a;
}

/*COOKIE STYLING*/

.cc-window.cc-banner {
    width: 340px!important;
    right: 0;
    left: unset;
    align-items: center!important;
    padding: 25px 24px!important;
    font-size: 12px;
}
.cc-window .cc-message {
    font-size: 12px;
    line-height: 17px;
    margin-bottom: 0;
}
.cc-window .cc-message h6 {
    font-size: 20px;
    margin-bottom: 0;
    color: #2f3111!important;
}

.cc-window .cc-link {
    display: none;
}

.cc-window.cc-bottom {
    right: 20px!important;
    bottom: 20px!important;
    left: unset!important;
    border-radius: 5px!important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.16);
}

.cc-theme-classic .cc-btn:last-child {
    min-width: unset!important;
    font-size: 16px;
    height: 36px;
    padding: 1px 24px;
    -webkit-border-radius: 26px;
    -moz-border-radius: 26px;
    border-radius: 26px;
    text-decoration: none;
    font-weight: 400;

    -webkit-transition: opacity .4s ease;
    -moz-transition: opacity .4s ease;
    -ms-transition: opacity .4s ease;
    -o-transition: opacity .4s ease;
    transition: opacity .4s ease;
}
.cc-theme-classic .cc-btn:last-child:hover {
    opacity: .9;
    background-color: #2f3111;
}

.cc-compliance {
    align-items: flex-start!important;
    text-align: left!important;
}


/* 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: #88898a;
    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;
}

/* NAVIGATION STYLING */

.navigation {
    position: fixed;
    width: 100%;
    height: auto;
    background: transparent;
    z-index: 99;
    opacity: 1;
    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: 150px;
    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;
}

.navbar-inner {
    position: relative;
}

.navbar-brand {
    position: absolute;
    height: auto;
    padding-top: 0;
    width: 140px;
    padding-bottom: 0;
    margin-right: 0;
    z-index: 10;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}


.navbar-brand img {
    max-height: 100%;
    width: 100%;
    margin-top: 10px;
    height: 100%;
    backface-visibility: hidden;
}

#navbarResponsive {
    width: 100%;
    height: 100vh;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    opacity: 0;
    z-index: 98;

    -webkit-transform: translateY(-101%);
    -moz-transform: translateY(-101%);
    -ms-transform: translateY(-101%);
    -o-transform: translateY(-101%);
    transform: translateY(-101%);

    -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);


}
.menu-open #navbarResponsive {
    opacity: 1;

    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);

    -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);
}

.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: relative;
    background-color: #88898A;
    width: 40%;
    height: 100%;
    padding-left: 8%;
    padding-right: 5%;
    overflow: hidden;
    z-index: 1;
    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);
}

.menu-product-cats:before,
.quote-afbeelding:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: rgba(0,0,0, .25);
}

.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="#88898a",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: 60%;
    height: 100%;
    padding-right: 8%;
    padding-left: 8%;
    z-index: 1;
}

.menu-content:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: white;
}

.menu-column-wrapper {
    position: relative;
    height: 100%;
}

.menu-column {
    position: relative;
    width: 50%;
    height: 100%;
}

.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: #88898A;
    padding-top: 0;
    padding-bottom: 0;
    text-decoration: none;
}

.navbar-nav .nav-item a {
    margin-bottom: 10px;
}

.nav-item a:after,
.footer-item a:after,
.designers a:after,
.index-link:after,
.cta-item a:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 1px;
    width: 100%;
    background-color: #88898A;
    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 {
    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%;
    margin-left: 0;
}

.menu-content .social-media a {
    position: relative;
    color: #88898A;
    font-size: 14px;
    margin-right: 24px!important;
    text-decoration: none;
}

.menu-button {
    position: relative;
    margin-right: auto;
    z-index: 99;
}

.product-cat-list {
    position: relative;
    list-style: none;
    padding-left: 0;
    height: 100%;
    z-index: 3;
    margin-top: -100px;
}

.product-cat-link {
    position: relative;
    margin-bottom: 32px;
}

.product-cat-link:last-child {
    margin-bottom: 0;
}

.product-cat-link a {
    font-family: 'FrankRuhlLibre';
    font-size: 52px;
    line-height: 62px;
    color: rgba(255, 255, 255, 1);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-decoration: none;

    -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);
}

.product-cat-link:hover a {
    color: white;
}

.plate--element__image[data-id=element_1295698],
.plate--element__image[data-id=element_1295776],
.plate--element__image[data-id=element_1298254],
.plate--element__image[data-id=element_1298243] {
    margin-bottom: 90px;
    position: relative;
}

.plate--element__image[data-id=element_1295698]:before,
.plate--element__image[data-id=element_1298254]:before {
    content: '';
    background-image: url("/theme/assets/images/RobertvanRhee.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    height: 62px;
    z-index: 99999999999;
    bottom: 6px;
    left: -36px;
    width: 230px;
    position: absolute;
}

/*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 {
    padding: .25rem 8%;
    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-left: 18px;
    color: #88898a;
}

.navbar-toggler:focus {
    outline: none;
}

.bars {
    position: relative;
    height: auto;
    width: 30px;
}

.bar {
    width: 100%;
    height: 1px;
    background: #88898A;
    margin-bottom: 7px;

    -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: -16px;
}

.menu-open .bar-2 {
    opacity: 0;
}

/* BUTTONS */

.button {
    position: relative;
    height: 54px;
    display: inline-block;
    cursor: pointer;
    background-color: transparent;
    border: 1px solid white;
    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;
}

.button.dark {
    border: 1px solid #3b3e1b;
}

.button.dark:hover a {
    color: white!important;
}

.button.dark a {
    color: #3B3E1A!important;
}

.button:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #3b3e1b;

    -webkit-transition: transform .8s cubic-bezier(.22,.61,.36,1);
    -moz-transition: transform .8s cubic-bezier(.22,.61,.36,1);
    -ms-transition: transform .8s cubic-bezier(.22,.61,.36,1);
    -o-transition: transform .8s cubic-bezier(.22,.61,.36,1);
    transition: transform .8s cubic-bezier(.22,.61,.36,1);

    -webkit-transform: translateY(100%);
    -moz-transform: translateY(100%);
    -ms-transform: translateY(100%);
    -o-transform: translateY(100%);
    transform: translateY(100%);
}

.button:hover:after {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}

.button input {
    -webkit-appearance: none;
    border: 0;
    background: none;
    color: white;
    height: 100%;
    width: 100%;
    cursor: pointer;
    outline: none;
    padding: 17px 22px;
}

.button a {
    position: relative;
    font-size: 15px;
    line-height: 17px;
    width: 100%;
    height: 100%;
    text-align: center;
    display: inline-block;
    color: white!important;
    text-decoration: none;
    padding: 17px 22px;
    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: 100vh;
    padding: 0;
}

.home-header-wrapper:before {
    content: '';
    background-image: url("/theme/assets/images/divider.svg");
    width: 101vw;
    height: 100px;
    position: absolute;
    z-index: 3;
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: bottom center;
    backface-visibility: hidden;
    bottom: -2px;
}

.home-header-inner {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-container.projecten {
    position: relative;
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.slider-container.projecten .swiper-pagination-custom {
    width: auto;
    right: 8%;
    left: unset;
    text-align: right;
    bottom: 150px;

    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.swiper-pagination-custom span {
    color: white;
    font-size: 18px;
    font-family: 'FrankRuhlLibre';
}

.swiper-pagination-custom .current-index {
    font-size: 60px;
}
.swiper-pagination-custom .slash {
    margin-left: 6px;
    margin-right: 6px;
}

.swiper-pagination-bullet {
    width: 11px;
    height: 11px;
    background: white;
    opacity: .35;
}

.swiper-scrollbar {
    border-radius: 10px;
    position: relative;
    -ms-touch-action: none;
    background: rgba(0,0,0,.1);
    height: 1px!important;
    width: 92% !important;
}

.swiper-scrollbar-inner {
    width: 100%;
    height: 1px;
    position: relative;
    background: white;
    opacity: .1;
}

.swiper-scrollbar-drag {
    position: absolute;
    background: #2e3110;
}

.swiper-pagination-bullet-active {
    opacity: 1!important;
}

.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 6px;
}

.color-green {
    background-color: #2f3111;
}

.color-white {
    background-color: white;
}

.home {
    -webkit-transition: background-color 1s ease;
    -moz-transition: background-color 1s ease;
    -ms-transition: background-color 1s ease;
    -o-transition: background-color 1s ease;
    transition: background-color 1s ease;
}

/*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;
}

.parallax img {
    width: 100%;
    height: 120%;
    object-fit: cover;
    -o-object-fit: cover;
    pointer-events: none;
}

.parallax-xs {
    height: 375px;
}

.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%;
}

/*PROJECT ITEM*/

.items-container .project-wrapper {
    height: 600px;
    width: calc(1/3 * 100% - (1 - 1/3) * 20px);
    margin-right: 20px;
}
.items-container .project-wrapper .titel h1 {
    font-size: 40px;
    line-height: 51px;
}

.items-container .project-wrapper .project-inner {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
}

.items-container .project-wrapper .project-inner .project-content {
    text-align: left;
    padding-bottom: 0;
}

.project-wrapper {
    position: relative;
    height: 100%;
    margin-bottom: 20px;
}

.project-afbeelding {
    position: absolute;
    height: 100%;
    width: 100%;
    z-index: -1;
}

.project-wrapper:before {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: rgba(0,0,0, .25);
    top: 0;
    left: 0;
    z-index: 1;
}

.project-wrapper .project-inner {
    position: relative;
    height: 100%;
    padding: 60px 8%;
    z-index: 2;

    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.project-wrapper .project-inner .project-content {
    position: relative;
    width: 100%;
    color: white;
    text-align: left;
    padding-bottom: 85px;
}

.project-wrapper .project-inner .project-content h1,
.project-wrapper .project-inner .project-content .ondertitel p {
    color: white;
}

.ondertitel p {
    margin-bottom: 0;
}


/*HOTEL ITEM*/

.items-container .hotel-wrapper {
    width: calc(1/3 * 100% - (1 - 1/3) * 20px);
    margin-right: 20px;
}

.hotel-wrapper {
    position: relative;
    height: 700px;
    margin-bottom: 20px;
}

.hotel-afbeelding {
    position: absolute;
    height: 100%;
    z-index: -1;
}

.hotel-afbeelding:before {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: rgba(0,0,0, .25);
    top: 0;
    left: 0;
    z-index: 1;
}

.hotel-wrapper .hotel-inner {
    position: relative;
    height: 100%;
    padding: 60px;

    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.hotel-wrapper .hotel-inner .hotel-content {
    position: relative;
}

.hotel-wrapper .hotel-content .titel {
    margin-bottom: 6px;
}

.hotel-inner .hotel-content h3 {
    color: white;
    margin-bottom: 0;
}

.hotel-wrapper .hotel-inner .hotel-content .ondertitel p {
    color: rgba(255,255,255, .5);
}

.slider-container.hotels {
    position: relative;
    width: 100%;
    padding-bottom: 104px;
    overflow: hidden;
}

.slider-container.hotels .swiper-pagination {
    text-align: left;
    bottom: 0;
    width: auto;
}

.slider-container.hotels .swiper-slide {
    width: 400px!important;
    height: 600px;
}

.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: #88898A;
    opacity: .35;
}

/*HOTEL / PROJECT SHOW*/

.hotel-show .hotel-inner,
.project-show .project-inner {
    position: relative;
    width: 100%;

    padding: 60px 60px 140px 60px;

    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.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: 165px;
    padding-bottom: 145px;
}

.text-image .intro-tekst {
    margin-bottom: auto;
    max-width: 85%;
}

.hotel-intro-container .text-image .parallax,
.project-intro-container .text-image .parallax {
    margin-top: 50px;
}

.sleep-test-container,
.project-content-wrapper {
    position: relative;
    padding-bottom: 165px;
    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: 160px;
    height: 600px;
}

.slider-container.images .swiper-pagination {
    bottom: -94px !important;
    left: 50% !important;
    transform: translateX(-50%);
}

/*PRODUCT CATEGORIES*/
/*PRODUCT CATEGORIES*/

.product-categories {
    position: relative;
    padding-top: 165px;
    padding-bottom: 165px;
}

.product-categories .inner-categories {
    position: relative;
}

.product-categories .inner-categories .product-cat-wrapper:nth-child(3) {
    margin-right: 0;
}

.product-cat-wrapper {
    position: relative;
    width: calc(1/3 * 100% - (1 - 1/3) * 20px);
    height: 600px;
    margin-right: 20px;
    margin-bottom: 20px;
}

.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: rgba(136, 137, 138, 0.1);
    padding-top: 135px;
    padding-bottom: 165px;
}

.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: #88898A;
    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: #88898A;
    max-width: 100%;
}

.home-intro-container .afbeeldingen-tekst .text-image .parallax {
    margin-top: 10%;
}

/*PRODUCT CAT PAGE*/

.product-cat-page {
    position: relative;
    padding-top: 65px;
    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: #88898A;
    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: #88898A;
    position: relative;
    margin-right: 18px;
}

.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: 165px;
    padding-bottom: 145px;
}

.cat-page-content .tekst {
    position: relative;
    max-width: 540px;
}

.cat-page-quote {
    position: relative;
    background: #88898A;
    padding: 150px 10%;
    margin-top: 145px;
    margin-bottom: 165px;
}

.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: auto;
    max-width: 85%;
    margin-top: -20px;
}

.cat-page-cats .text-image .intro-tekst h2 {
    margin-bottom: 45px;
}

.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;
}

/*SCROLL INDICATOR*/

.scroll-indicator {
    position: absolute;
    overflow: hidden;
    height: 28px;
    top: 140px;
    width: 100px;
    left: 8%;
    z-index: 1;
}

.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: 165px;
    padding-bottom: 165px;
}

.designers-wrapper {
    position: relative;
}

.designers-wrapper .afbeelding {
    height: 600px;
}

.designers-wrapper .content-inner {
    position: relative;
    padding-left: 15%;
    padding-right: 2%;
}

.designers-wrapper .content-inner .titel {
    position: relative;
    margin-bottom: 35px;
    color: #88898A;
}

.designers-wrapper .content-inner .designers p,
.designers-wrapper .content-inner .designers a {
    position: relative;
    font-family: 'FrankRuhlLibre';
    font-size: 25px;
    line-height: 32px;
    margin-bottom: 0;
    color: #88898A;
    text-decoration: none;
}

.designers-wrapper .content-inner .tekst {
    position: relative;
    margin-top: 55px;
}

.video-container {
    width: 100%;
    position: relative;
    height: 100%;
    z-index: 2;
}

/*UITGELICHTE HOTELS HOME*/

.home-hotels-container {
    position: relative;
    width: 100%;
    padding-top: 145px;
    padding-bottom: 65px;

    padding-left: 8%;
    max-width: 1900px;
    margin: 0 auto;
}

.hotels-wrapper {
    position: relative;
}

.hotels-wrapper .titel {
    position: relative;
    margin-bottom: 45px;
}

.hotels-wrapper .titel h2 {
    color: #88898A;
}

.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%;
}

/* 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;
}

.item-wrapper .image-wrapper {
    position: relative;
    height: 400px;
    overflow: hidden;
    margin-bottom: 35px;
}

.item-wrapper .image-wrapper .item-afbeelding {
    position: relative;
    height: 100%;
}

.item-wrapper .item-content {
    text-align: center;
}

.item-wrapper .item-inner .tekst p {
    max-width: 80%;
    text-align: center;
    margin: 20px 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: 700px;
    margin-right: 20px;
    margin-bottom: 20px;
}

.product-wrapper .product-afbeelding {
    position: absolute;
    height: 100%;
}

.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: relative;
    height: 100%;
    z-index: 1;
    padding: 40px;
    text-align: center;
}

.product-wrapper .product-naam h3 {
    position: relative;
    color: white;
    margin-bottom: 0;
}

.product-wrapper .product-subtitel p {
    position: relative;
    color: rgba(255,255,255, .5);
    margin-bottom: 0;
}

/*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="#88898a",endColorstr="#ffffff",GradientType=1);
}

.product-show .scroll-indicator,
.project-show .scroll-indicator,
.hotel-show .scroll-indicator {
    bottom: 60px;
    top: unset;
}

.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: 165px;
    padding-bottom: 165px;
}

.product-show .subtitel p {
    color: #88898A;
    margin-bottom: 25px;
    margin-left: -48px;
}

.product-show .subtitel p:before {
    content: '';
    width: 30px;
    height: 1px;
    display: inline-block;
    background-color: #88898A;
    position: relative;
    margin-right: 18px;
}

.index-link {
    position: relative;
    color: #88898A!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: 165px;
}

.afbeeldingen-galerij {
    width: 100%;
}

.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: #88898A;
    padding-top: 100px;
    padding-bottom: 100px;
}

.product-tabs-container .tab-row {
    position: relative;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .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 {
    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;
}

.tab-links {
    list-style: none;
    padding-left: 0;
    margin-bottom: 90px;
}

.tab-links li {
    position: relative;
    width: 30%;
    margin-right: 5%;
    color: white;
    border-bottom: 1px solid white;
    opacity: .2!important;
    height: 40px;

    -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;
}

.tab-links li.active {
    opacity: 1!important;
}

.tab-links li:last-child {
    margin-right: 0;
}

.tab-links li a {
    color: white;
    text-decoration: none;
}

#tab-specs .tab-row .name {
    position: relative;
    width: 120px;
}

#tab-options .tab-row .name {
    position: relative;
    width: 225px;
}

#tab-options .tab-row .value {
    position: relative;
    display: inline-block;
}

.tab-row .name p,
.tab-row .value p,
.tab-row .value a {
    color: white!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;
}

.stof {
    position: relative;
    width: 210px;
    height: 210px;

    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:hover {
    -webkit-transform: scale(.9);
    -moz-transform: scale(.9);
    -ms-transform: scale(.9);
    -o-transform: scale(.9);
    transform: scale(.9);
}

.stof .stof-naam {
    position: relative;
    opacity: 0;

    -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: 900px;
    overflow: hidden;
}

.header__highlights {
    position: relative;
    height: auto;
    width: 100%;
    max-height: 900px;
}

.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: 1;
    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: 2;

    -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);
}

.product-detail-container.modal-open {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
}

.close-container {
    position: relative;
    width: 70%;
}
.close-container:hover {
    cursor: url("/theme/assets/images/close.svg") 22 22, pointer;
}

.product-detail-container .product-detail {
    position: relative;
    width: 35%;
    height: 100%;
    margin-right: -5%;
    margin-left: auto;
    background: #88898a;
    padding: 5% 11% 5% 6%;
    text-align: center;
}

.product-detail .product-image {
    position: relative;
    margin-bottom: 45px;
}

.product-detail .product-image img {
    width: 100%;
    max-height: 300px;
    object-fit: contain;
}

.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;
}

.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: 165px;
    padding-bottom: 45px;
}

.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.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';
}

/*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;
}

.afbeeldingen-tekst-element .tekst {
    margin-top: 35px;
}

.afbeeldingen-tekst-element img {
    position: absolute;
}

.afbeeldingen-tekst-element .titel-container {
    max-width: 85%;
    margin: 0 auto auto auto;
}
.afbeeldingen-tekst-element .titel-container .subtitel {
    margin-top: 60px;
    margin-bottom: 25px;
}

.afbeeldingen-tekst-element .text-image .parallax {
    margin-top: 80px;
}

.afbeeldingen-tekst-element .parallax.mg-bottom {
    margin-top: unset!important;
    margin-bottom: 80px;
}

.subtitel p {
    color: #88898A;
}

.subtitel p:before {
    content: '';
    width: 30px;
    height: 1px;
    display: inline-block;
    background-color: #88898A;
    position: relative;
    margin-right: 18px;
    vertical-align: middle;
}

.opening-hours {
    position: relative;
    margin-top: auto;
}

.opening-hours h3 {
    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: 85%;
}

.afbeeldingen-tekst-form .submit-form-btn {
    width: 100%;
}

.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(-20%);
    opacity: 0;

    -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);
}

.anim-titles.in-view .anim-titles__slide-in-wrapper {
    transform: translateX(0);
    opacity: 1;
}

.anim-titles__slide-up-wrapper {
    display: inline-block;
    transform: translateY(30px);
    opacity: 0;

    -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);
}

.anim-titles.in-view .anim-titles__slide-up-wrapper {
    transform: translateY(0);
    opacity: 1;

    transition-delay: .5s;
}

/*LOOKBOOK*/

.lookbook-container {
    position: relative;
    width: 100%;
}

.lookbook-container .lookbook-item {
    position: relative;
    height: auto;
    margin-bottom: 8%;
    overflow: hidden;
}

.lookbook-container .lookbook-item img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.gutter-sizer {
    width: 8%;
}

.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: 46%;
}

/*IMAGE GROW ANIMATIE*/

.image-grow-wrapper {
    overflow: hidden;
}

.image-grow {
    -webkit-transition: transform .8s ease;
    -moz-transition: transform .8s ease;
    -ms-transition: transform .8s ease;
    -o-transition: transform .8s ease;
    transition: transform .8s ease;
}

.image-grow-wrapper:hover .image-grow {
    -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 .image-grow-wrapper:hover .image-grow {
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
}

/*CHANGE BG COLOR SECTION*/

#change-bg-color {
    background-color: #2f3111;

    -webkit-transition: background-color 1s cubic-bezier(0.75, 0.25, 0.84, 0.57);
    -moz-transition: background-color 1s cubic-bezier(0.75, 0.25, 0.84, 0.57);
    -ms-transition: background-color 1s cubic-bezier(0.75, 0.25, 0.84, 0.57);
    -o-transition: background-color 1s cubic-bezier(0.75, 0.25, 0.84, 0.57);
    transition: background-color 1s cubic-bezier(0.75, 0.25, 0.84, 0.57);
}


/*SLIDE IN ANIMATIE*/

.slide-in-wrapper {

}

.slide-in {
    opacity: 0;

    -webkit-transform: translateY(25px);
    -moz-transform: translateY(25px);
    -ms-transform: translateY(25px);
    -o-transform: translateY(25px);
    transform: translateY(25px);

    -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(15px);
    -moz-transform: translateY(15px);
    -ms-transform: translateY(15px);
    -o-transform: translateY(15px);
    transform: translateY(15px);
}

.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: 45px;
    padding-bottom: 65px;
}

.blog-overzicht-titel {
    position: absolute;
    text-align: center;
    width: 100%;
    z-index: 6;
    top: -15px;
}

.slider-container.blogs {
    position: relative;
    margin-bottom: 165px;
    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 {
    color: white;
}

/*BLOG ITEM*/

.items-container .blog-wrapper:nth-child(3n),
.items-container .project-wrapper:nth-child(3n),
.items-container .product-wrapper:nth-child(2n),
.items-container .hotel-wrapper:nth-child(3n) {
    margin-right: 0;
}

.blog-wrapper {
    position: relative;
    width: calc(1/3 * 100% - (1 - 1/3) * 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: #88898A;
    margin-bottom: 0;
    font-size: 12px;
}

/*IN VIEW FADE*/

.items-container .project-wrapper,
.items-container .product-wrapper,
.items-container .hotel-wrapper {
    opacity: 0;

    -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);
}

.items-container .project-wrapper.in-view,
.items-container .product-wrapper.in-view,
.items-container .hotel-wrapper.in-view {
    opacity: 1;
}



/* CONTACTFORM STYLING */

form {
    font-size: 0;
}

.form-field {
    display: block;
    position: relative;
    z-index: 3;
    width: 100%;
}

.form-field-container.two_third {
    width: 63%;
}

.form-field-container.one_third {
    width: 33%;
    margin-left: 4%;
}

.form-field-container.select {
    padding-top: 38px;
    margin-bottom: 10px;
}

.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 {
    font-family: 'Sofia Pro Light';
    position: absolute;
    display: block;
    top: 4px;
    left: 0;
    margin: 0;
    padding: 0;
    width: 100%;
    color: white;

    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: 'Sofia Pro Light';
    color: white;
}

.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;
    font-family: 'Sofia Pro Light';
    color: white;
}

.form-field-container {
    position: relative;
    display: inline-block;
    overflow: hidden;
    padding-top: 24px;
    width: 100%;
}

.form-field-container input {
    margin-top: 0;
}

.form-field.first label {
    display: block;
}

.form-field.select select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: white;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    padding: 5px;
    border: 1px solid rgba(136, 137, 138, .5);
    height: 48px;
    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: 9px;
    width: 20px;
    height: 20px;
    border: 1px solid black;
}

.form-field input[type="checkbox"]:checked {
    color: black;
}

.form-field input[type="checkbox"]:after,
.form-field input[type="radio"]:after {
    content: '';
    position: absolute;
    width: 20px !important;
    height: 20px !important;
    top: -1px;
    left: -1px;
    background-color: transparent;

    -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 {
    top: 0;
    left: 0;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
}

.form-field input[type="checkbox"]:checked:after {
    background-color: black;
}

.form-field input[type="radio"] {
    position: relative;
    -webkit-appearance: none;
    padding: 10px;
    width: 20px;
    height: 20px;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    border: 1px solid black;
}

.form-field input[type="radio"]:checked {
    color: black;
}

.form-field input[type="radio"]:checked:after {
    background-color: black;
}

textarea {
    min-height: 150px;
    max-height: 350px;
}

.submit-form-btn {
    margin-top: 55px;
}

button:focus {
    outline: none;
}

/*QUOTE ELEMENT*/

.quote-element {
    margin-top: 0;
    margin-bottom: 0;
    padding: 200px 10%;
}

/* FOOTER */

.footer-container {
    position: relative;
    margin-top: 100px;
    padding-top: 120px;
    padding-bottom: 120px;
    background-color: #88898A;
}

.footer-wrapper .footer-logo {
    position: relative;
}

.footer-wrapper .footer-logo img {
    filter: brightness(0) invert(1);
    max-height: 100%;
    width: 260px;
}

.footer-kolom.mobile .social-media {
    display: none;
}

.logo-kolom {
    width: 40%;
}

.footer-kolommen {
    width: 60%;
}

.footer-kolommen .footer-kolom-inner {
    width: 45%;
}

.footer-kolommen .footer-kolom-inner.derde-kolom {
    width: 10%;
}

.social-media {
    position: relative;
    margin-top: unset;
    margin-left: auto;
}

.social-media .footer-item {
    margin-right: 0;
}

.social-media .footer-item {
    margin-right: 24px;
}

.social-media a,
.social-media p {
    position: relative;
    color: white;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 0;
}

.social-media a:last-child {
    margin-right: 0;
}

.footer-kolom-inner {
    position: relative;
}

.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: 24px;
}

.footer-menu .footer-item {
    position: relative;
    margin-bottom: 10px;
}

.footer-menu 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;
}

.contact-info .email:after {
    opacity: 1;
    -webkit-transform: translateY(-3px);
    -moz-transform: translateY(-3px);
    -ms-transform: translateY(-3px);
    -o-transform: translateY(-3px);
    transform: translateY(-3px);
}

.nilson-info a,
.nilson-info p {
    font-size: 12px;
}

.footer-item.mandelo {
    margin-top: auto;
}

.footer-item.mandelo p,
.footer-item.mandelo a {
    color: white;
    margin-bottom: 0;
    position: relative;
    text-decoration: none;
    font-size: 12px;
}

.footer-item.mandelo a:hover:after {
    opacity: 1;
    -webkit-transform: translateY(-1px);
    -moz-transform: translateY(-1px);
    -ms-transform: translateY(-1px);
    -o-transform: translateY(-1px);
    transform: translateY(-1px);
}

/*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;
}

.accordion h5.intro {
    margin-bottom: 0;
}

.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;
}

.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);
}

/*BLOG ARTIKELEN*/

.blogartikel-show .intro-container {
    padding-top: 65px;
    padding-bottom: 100px;
}

.highlighted-products {
    padding-top: 165px;
    padding-bottom: 65px;
}

.highlighted-products .titel-container {
    margin-bottom: 45px;
}

.blogartikel-show .date-time {
    padding-top: 85px;
    padding-bottom: 35px;
}

.date-time p {
    color: #88898a;
    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: #88898A;
    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 .hotel-wrapper,
    .items-container .project-wrapper {
        height: 450px;
        width: calc(1/2 * 100% - (1 - 1/2) * 20px);
    }

    .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(3n),
    .items-container .project-wrapper:nth-child(3n),
    .items-container .hotel-wrapper:nth-child(3n) {
        margin-right: 20px;
    }

    .items-container .blog-wrapper:nth-child(2n),
    .items-container .project-wrapper:nth-child(2n),
    .items-container .hotel-wrapper:nth-child(2n) {
        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: 60px;
        line-height: 75px;
    }

    h2 {
        font-size: 40px;
        line-height: 50px;
    }

    h3 {
        font-size: 35px;
        line-height: 45px;
    }

    h4 {
        font-size: 30px;
        line-height: 40px;
    }

    h5 {
        font-size: 22px;
        line-height: 28px;
    }

    h6 {
        font-size: 16px;
        line-height: 26px;
    }

    .blog-overzicht-titel {
        top: 0;
    }

    .dealer__search__wrapper h1,
    .afbeeldingen-tekst-element h1,
    .titel-subtitel-element h1 {
        font-size: 40px;
        line-height: 50px;
    }

    .product-cat-link a {
        font-size: 30px;
        line-height: 40px;
    }
    
    .top-bar {
    }

    .left, .right {
        width: 100%;
    }

    .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 {
        padding-top: 45px;
        padding-bottom: 100px;
    }

    .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;
    }

    .footer-wrapper .footer-logo img {
        width: 100px!important;
    }

    .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-container {
        padding-top: 100px;
        padding-bottom: 100px;
    }

    .designers-wrapper .content-inner {
        padding-left: 0;
        padding-right: 0;
        margin-top: 35px;
    }

    .designers-wrapper .content-inner .titel {
        margin-bottom: 25px;
    }

    .designers-wrapper .content-inner .tekst {
        margin-top: 25px;
    }

    .home-hotels-container {
        padding-top: 100px;
        padding-bottom: 0;
    }

    .home-hotels-container .hotels-wrapper .content.left {
        padding-right: 8%;
    }

    .slider-container.hotels {
        padding-bottom: 65px;
    }

    .hotel-wrapper .hotel-inner,
    .project-wrapper .project-inner {
        padding: 30px 8%;
    }

    .footer-container {
        padding-top: 100px;
        padding-bottom: 100px;
    }

    .footer-kolom {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .footer-kolom-inner {
        width: 100%;
        margin-bottom: 35px;
    }

    .footer-kolom-inner:last-child {
        margin-bottom: 0;
    }

    .footer-wrapper .logo-kolom {
        margin-bottom: 35px;
    }

    .designers-wrapper .afbeelding {
        height: 350px;
    }

    .footer-kolommen {
        width: 100%;
    }

    .footer-kolommen .footer-kolom-inner,
    .footer-kolommen .footer-kolom-inner.derde-kolom {
        width: 100%;
    }

    .footer-kolom-inner .social-media {
        margin-left: 0;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }

    .slider-container.hotels .swiper-slide {
        width: 300px!important;
        height: 450px;
    }

    .home-hotels-container {
        padding-bottom: 100px;
    }

    .hotel-wrapper {
        height: 350px;
    }

    .product-cat-page {
        padding-top: 35px;
        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 {
        height: 350px;
    }

    .cat-page-quote {
        padding: 100px 8%;
        margin-top: 100px;
        margin-bottom: 100px;
    }

    .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: 100px;
        padding-bottom: 100px;
    }

    .product-show .afbeeldingen-tekst, .product-show .afbeeldingen-galerij {
        margin-top: 100px;
    }

    .hotel-intro-container,
    .project-intro-container {
        padding-top: 100px;
        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 .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: 50px;
    }

    .stofgroepen-tabs-container .tab-links li {
        border-bottom: 0;
        width: auto;
        margin-right: 0;
        position: absolute;
        opacity: 1!important;
    }

    .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: 80px;
        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;
    }

    .afbeeldingen-tekst-element .titel-container .subtitel {
        margin-top: 25px;
        margin-bottom: 25px;
    }

    .afbeeldingen-tekst-element .titel-container {
        max-width: 85%;
        margin: unset;
        margin-bottom: 45px;
    }

    .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;
    }

    .menu-open .navbar-toggler p {
        color: white!important;
    }

    .menu-open .bar {
        background: white!important;
    }

    .navbar-brand {
        margin-right: 0;
        width: 100px;
    }

    .footer-wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .footer-wrapper .footer-logo img {
        width: 200px;
    }

    .navbar {
        height: 120px!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: 100vh;

        display: block;
        flex-direction: unset;
    }

    .menu-column-wrapper {
        height: 100%;

        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;
    }

    .home-header-wrapper:before {
        height: 60px;
    }

    .footer-item.mandelo {
        margin-top: 10px;
    }

    .menu-column:nth-child(2) {
        margin-bottom: 0;
    }

    .language-switcher {
        height: 90px;
    }

    .language-list {
        padding-top: 27px;
    }

    .menu-product-cats {
        width: 100%;
        height: auto;
        padding-top: 65px;
        padding-bottom: 65px;
    }

    .product-cat-list {
        margin-top: 0;
        margin-bottom: 0;
    }

    .contact-info {
        height: auto;
    }

    .product-cat-link {
        position: relative;
        margin-bottom: 10px;
    }

    .menu-content {
        width: 100%;
        height: auto;
        padding-top: 65px;
        padding-bottom: 100px;
    }

    .menu-content .social-media {
        position: relative;
        margin-top: 25px;
        bottom: unset;
        width: auto;
        left: 0;
    }

    .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: 30px;
        margin-bottom: 0;
    }

    .footer-kolom.mobile .footer-item {
        margin-right: 14px;
    }

    .menu-column-inner {
        height: auto;
    }

    .menu-column-inner h5 {
        margin-bottom: 0;
    }

    .home-header-wrapper {
        height: calc(92vh - 150px);
    }

    .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;
    }
    .slider-container.projecten .swiper-pagination-custom {
        bottom: 125px;
    }


}

@media screen and (max-width: 767px) {
    .product-wrapper {
        height: 250px;
        width: 100%;
        margin-right: 0;
    }

    .items-container .hotel-wrapper,
    .items-container .project-wrapper {
        height: 250px;
        width: 100%;
    }

    .items-container .blog-wrapper {
        width: 100%;
    }

    .items-container .blog-wrapper,
    .items-container .project-wrapper,
    .items-container .hotel-wrapper {
        margin-right: 0;
    }

    .hotel-wrapper .hotel-content .titel {
        margin-bottom: 0;
    }

    .items-container .project-wrapper .titel h1 {
        margin-bottom: 0;
    }

    .galerij-afbeelding {
        width: 100%!important;
    }

    .highlights-container {
        max-height: unset;
    }

    .header__highlights img {
        z-index: 3;
    }

    .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%);
    }

    .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%;
    }

}

@media screen and (max-width: 600px) {
    h1 {
        font-size: 40px;
        line-height: 55px;
    }

    h2 {
        font-size: 35px;
        line-height: 45px;
    }

    h3 {
        font-size: 30px;
        line-height: 40px;
    }

    h4 {
        font-size: 25px;
        line-height: 35px;
    }

    h5 {
        font-size: 20px;
        line-height: 26px;
    }


    .blog-overzicht-titel {
        top: 15px;
    }

    .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;
    }

}

/*MIN WIDTH*/

@media (min-width: 1921px) {
    .plate--container {
        width: 1900px;
    }
    .product-cat-link {
        text-align: right;
    }
}
