



/* Base */
ul,
li,
p,
html,
body {
    margin: 0;
    padding: 0;
}

body {
    width: 100%;
    font-family: museo-sans, sans-serif;
    font-weight: 300;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    padding: 0;
    font-weight: 400;
    font-family: 'Imprint MT Shadow';
    color: #e8884d;
    position: relative;
    margin-bottom: 3rem!important;
}
h1 span,
h2 span,
h3 span,
h4 span,
h5 span,
h6 span {
    display: block;
}
h1::after,
h2::after,
h3::after,
h4::after,
h5::after,
h6::after {
    content: '';
    height: 2px;
    width: 100px;
    position: absolute;
    bottom: -20px;
    left: 0;
    background: #e8884d;
}

img {
    max-width: 100%;
}

.layout-container {
    overflow-x: hidden;
    background: #fff;
}

a {
    color: #e8884d;
    text-decoration: none;
}

a:hover {
    color: darken(#e8884d, 20%);
}

section {
    position: relative;
    padding: 80px 0;
}

.wrapper {
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    display: block;
    padding: 0 40px;
}

@media only screen and (max-width: 991px){
    .wrapper {
        padding: 0 20px;
    }
}

/* Fonts */
h1 {
    font-size: 2.5rem;
    letter-spacing: 0.2rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.6rem;
}

h4 {
    font-size: 1.4rem;
}

h5 {
    font-size: 1.2rem;
}

h6 {
    font-size: 1rem;
}

p {
    font-size: 1.1rem;
    line-height: 1.8rem;
    font-weight: 100;
}

img {
    max-width: 100%;
}


/* Helpers */
.embed {
    position: relative;
    overflow: hidden;
    padding-top: -56.25%;
}  
.embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.overlay {
    position: relative;
} 

.overlay::after {
    content: '';
    position: absolute;
    top:0;
    bottom:0;
    left:0;
    right:0;
    height: 100%;
    width: 100%;
    background: rgba(0,0,0,0.2);
    z-index: 2;
}

/* Buttons */
.btn {
    display: inline-block;
    vertical-align: middle;
    padding: 14px 30px;
    border: 2px solid transparent;
    -webkit-appearance: none;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition-property: background-color, border-color, color;
    transition-duration: 0.3s;
    outline: 0;
    border-radius: 0px;
    text-align: center;
    border-radius: 6px;
    min-width: auto;
    position: relative;
    text-transform: uppercase;
  
    /* If anchor used as button */
    white-space: nowrap;
    text-decoration: none;
    line-height: initial;
}

.btn-primary {
    background: #e8884d;
    color: #FFFFFF;
    border-color: #e8884d;
}

.btn-primary:hover {
    background: #c35027;
    color: #FFFFFF;
    border-color: #c35027;
}

.btn-outline {
    background: transparent;
    border: 1px solid transparent;
    color: #1C1C1C;
    border-color: #1C1C1C;
}


.btn-outline:hover {
    background: #1C1C1C;
    color: #FFFFFF;
    border-color: #1C1C1C;
}

.btn-outline:hover::before {
    filter: invert(1);
}

/* Navigation */
nav {
    position: fixed;
    height: 100px;
    z-index: 100;
    width: 100%;
    top: 0;
    transition: all 350ms ease-in-out;
}

@media screen and (max-width: 768px){
    nav {
        padding: 0 20px;
        box-sizing: border-box;
    }
}

nav .wrapper {
    position: relative;
    height: 100%;
}

nav.scrolled {
    height: 60px;
    background: #FFFFFF;
}

nav .branding {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 200px;
    transition: all 350ms ease-in-out;
    filter: brightness(0) invert(1);
}

nav.active {
    background: none;
    height: 80px;
}

nav.active .branding {
    width: 200px;
    filter: none;
}

nav.scrolled .branding {
    width: 170px;
    filter: none;
}

nav .hamburger {
    width: 30px;
    height: 20px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: all 350ms ease-in-out;
    cursor: pointer;
}

nav .hamburger span {
    height: 2px;
    width: 30px;
    display: block;
    background: #FFFFFF;
    position: absolute;
    left: 0;
    right: 0;
    border-radius: 20px;
    transition: all 350ms ease-in-out;
}

nav.scrolled .hamburger span {
    background: #382423;
}

nav.scrolled.active .hamburger span {
    background: #FFFFFF !important;
}

nav .hamburger span:first-child {
    top: 0;
}

nav .hamburger span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

nav .hamburger span:last-child {
    bottom: 0;
}

nav .hamburger.active span:first-child {
    transform: rotate(45deg) translateY(-50%);
    top: 50%;
}

nav .hamburger.active span:nth-child(2)  {
    transform: rotate(-45deg) translateY(-50%);
    top: 50%;
}

nav .hamburger.active span:last-child {
    transform: translateY(-50%) translateX(300%);
    opacity: 0;
}

.navigation {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    z-index: 99;
    position: fixed;
    background-color: rgba(0, 0, 0, 0.95);
    transition: all 350ms ease-in-out;

    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
}
.navigation::before {
    content: '';
    width: 10%;
    display: block;
    background-color: #382423;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 0;
    opacity: .5;
}

.navigation.active {
    transform: translateY(0%);
    opacity: 1;
    visibility: visible;
}

.navigation ul {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    max-height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 40px 0;
    box-sizing: border-box;
}

.navigation .wrapper {
    position: relative;
    height: 100%;
}

.navigation ul li a {
    font-family: 'ScotchW01-ModernDisplay';
    font-size: 25px;
    font-weight: 100;
    color: #FFFFFF;
    transition: all 350ms ease-in-out;
    position: relative;
    display: inline-block;
    position: relative;
}

@media screen and (max-width: 768px){
    .navigation ul li a {
        font-size: 22px;
    }
}

.navigation ul li {
    transform: translateX(-10%);
    transition: all 450ms ease-in-out;
    opacity: 0;
}

.navigation.active ul li {
    transform: translateX(0%);
    opacity: 1;
    transition-delay: 50ms;
}

.navigation.active ul li:nth-child(2){
    transition-delay: 150ms;
}

.navigation.active ul li:nth-child(3){
    transition-delay: 250ms;
}

.navigation.active ul li:nth-child(4){
    transition-delay: 350ms;
}

.navigation.active ul li:nth-child(5){
    transition-delay: 450ms;
}

.navigation.active ul li:nth-child(6){
    transition-delay: 550ms;
}

.navigation.active ul li:nth-child(7){
    transition-delay: 650ms;
}

.navigation ul li a::after {
    content:" ";
    top: 15px;
    left: 10px;
    background: hsla(23, 77%, 61%, 0.479); 
    width: 0%;
    height: 40%;
    position: absolute;
    display: block;
    transition: all 350ms ease-in-out;
    z-index: -1;
}

.navigation ul li a:hover {
    transform: translateX(5%);
}

.navigation ul li a:hover::after {
    width: 100%;
}

.navigation ul {
    list-style: none;
}

.navigation ul li a {
    padding: 20px 0;
}

.navigation .nav-instagram-cta .title-block {
    margin-bottom: 40px;
}

.text-content ul {
    margin-left: 20px;
    display: block;
}

.text-content ul li {
    margin-bottom: 15px;
    color: #1B1E24; 
}

.navigation .nav-instagram-cta .title-block span {
    color: #FFFFFF;
    margin-bottom: 20px;
}

.navigation .nav-instagram-cta .title-block h4 {
    color: #FFFFFF;
    font-weight: 100;
    margin-top: 10px;
}

.navigation .nav-instagram-cta {
    position: absolute;
    right: 120px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
}
 
.navigation .nav-instagram-cta::after { 
    content:" "; 
    width: 150px;
    height: 150px;
    background-color: #787878;
    background: url('../img/kleuratelier-1.jpg');
    position: absolute;
    right: -110px;
    top: 50%;
    transform: translateY(-50%) translateX(100%);
    background-size: cover;
    background-position: center;
    z-index: -1;
    opacity: 0.7;
    transition: all 550ms ease-in-out;
    transition-delay: 200ms;
}

.navigation .nav-instagram-cta::before {
    content:" "; 
    width: 150px;
    height: 150px; 
    background-color: #787878;
    background: url('../img/kleuratelier.jpg');
    position: absolute;
    right: -230px;
    top: calc(50% - 80px);
    transform: translateY(-50%) translateX(100%);
    background-size: cover;
    background-position: center;
    z-index: -1;
    opacity: 0.5;
    transition: all 550ms ease-in-out;
    transition-delay: 300ms;
}

.navigation.active .nav-instagram-cta::before {
    transform: translateY(-50%) translateX(0%);
}

.navigation.active .nav-instagram-cta::after {
    transform: translateY(-50%) translateX(0%);
}

.navigation .nav-instagram-cta .btn {
    border-color: #FFFFFF;
    color: #FFFFFF;
}

.navigation .nav-instagram-cta .btn:hover {
    background: #FFFFFF;
    color: #1C1C1C;
}

@media screen and (max-width: 768px){
    .nav-instagram-cta { 
        display: none;
    }
}

/* Header */

.home-header {
    height: 100vh;
    min-height: 650px;
    background-size: cover;
    background-position: center;  
    position: relative;
}

.standard-header {
    height: 80vh;
    min-height: 550px;
}

.standard-header h1 span {
    display: table;
    background: #FFFFFF;
    color: #e8884d;
    padding: 10px;
    border-radius: 3px;
    margin-top: 10px;
    font-size: 1.8rem;
}

.home-header .wrapper {
    position: relative;
    height: 100%;
    z-index: 20;
    padding: 0 20px;
    box-sizing: border-box; 
}

.home-header .background-image {
    height: 100%;
    background-size: cover;
    background-position: center;
}

.home-header .owl-item,
.home-header .owl-stage,
.home-header .owl-stage-outer {
    height: 100%;
}

.home-header .owl-item {
    display: inline-block;
}

.home-header .header-carousel {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%; 
}

.home-header .wrapper .content {
    position: absolute;  
    top: calc(50% - 0px); 
    transform: translateY(-50%); 
    left: 0; 
    max-width: 50%; 
}

@media screen and (max-width: 768px){
    .home-header .wrapper .content {
        position: absolute;  
        top: calc(50% - 60px); 
        transform: translateY(-50%); 
        left: 20px; 
        max-width: 100%; 
    }
}
.home-header .wrapper .content {
    padding: 50px;
    box-sizing: border-box;
    border: 3px solid #FFF;
}
.home-header .wrapper .content h1 {
    color: #FFFFFF;
    font-size: 4rem;
}
.home-header .wrapper .content h1::after {
    height: 3px;
    background-color: #FFF;
}
.home-header .wrapper .content .btn {
    margin-top: 20px;
}

.home-header .svg-overlay {
    position: absolute;
    bottom: -2px;
    left: 0px;
    right: 0px;
    z-index: 19;
    width: 100%;
}

.scroll-down {
    bottom: 50px;
    position: absolute;
    z-index: 4;
}
.scroll-down img {
    width: 15px;
}
.title-block span {
    text-transform: uppercase;
    color: #e8884d;
    font-weight: 700;
    font-size: 14px;
    font-weight: 600;
    font-family:'Imprint MT Shadow';
}

.title-block h4 {
    font-size: 2.4rem;
    font-weight: 400;
}

.text-block .wrapper {
    display: flex;
}

.text-block .text-content p {
    display: block;
    margin: 25px 0;
    font-size: 22px;
    line-height: 42px; 
}

@media screen and (max-width: 768px){
    .text-block .text-content p {
        font-size: 14px;
        line-height: 32px; 
    }
}

.text-block .wrapper {
    display: flex;
}

.text-block .wrapper .text-content {
    width: 50%;
}

.text-block .wrapper .image {
    width: 50%;
    text-align: right;
}

.text-block .wrapper .image img {
    max-width: 80%;
    box-shadow: 0 2px 137px 0 rgba(0, 0, 0, 0.19);
}
 
.image-full-width {
    display: inline-block;
    vertical-align: top;
    width: 50vw;
}

.text-content-full-width { 
    padding-left: calc(50% + 40px); 
}

.text-block-full-width {
    position: relative;
}

.text-block-full-width .wrapper {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

@media screen and (max-width: 768px){
    .text-block .wrapper {
        display: block;
    } 

    .text-block .wrapper .text-content {
        width: 100%;
    }
    
    .text-block .wrapper .image {
        width: 100%;
        text-align: center;
        margin-top: 55px;
    }

    .image-full-width {
        display: block;
        width: 100%;
    }

    .text-content-full-width {
        padding-left: 0;
    }

    .text-block-full-width .wrapper {
        top: 0;
        transform: none;
        position: relative;
        margin-top: 35px;
    }
}

/* left-text-image-block */

.left-text-image-block.light-content {
    background: #000; 
}

.left-text-image-block.light-content::before {
    content: '';
    width: 10%;
    display: block;
    background-color: #382423;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 0;
}
.left-text-image-block.light-content::after {
    content: '';
    width: 30%;
    display: block;
    background-color: #fff;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}
.left-text-image-block.light-content  > * {
    z-index: 1;
}
.left-text-image-block.light-content p {
    color: #FFF;
}
.left-text-image-block {
    display: flex;
    flex-direction: row;
    align-items: stretch;
}
.left-text-image-block .text-block {
    width: 50%;
    padding: 100px;
    box-sizing: border-box;
}   
.left-text-image-block .text-block h2 {
    margin-bottom: 30px;
}
.left-text-image-block .text-block p {
    margin-bottom: 30px;
}
.left-text-image-block .image-block {
    width: 50%;
    box-sizing: border-box;
}
.left-text-image-block .image-block .inner {
    display: block;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
/* Lookbook */

.lookbook {
    text-align: center;
}

.lookbook .title-block { 
    text-align: center;
}

.lookbook .items {
    display: grid; 
    grid-template-columns: 1fr 1fr 1fr 1fr; 
    grid-column-gap: 15px; 
    grid-row-gap: 25px; 
    margin-top: 60px; 
} 

@media screen and (max-width: 991px){
    .lookbook .items {
        display: grid; 
        grid-template-columns: 1fr 1fr; 
    }

    .lookbook .items .item {
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 768px){
    .lookbook .items {
        display: grid; 
        grid-template-columns: 1fr; 
    }
}

.lookbook .items .item span {
    text-transform: uppercase; 
    color: #e8884d; 
    font-weight: 700; 
    font-size: 12px; 
} 

.product-form {
    display: none;
    position: relative;
}

.product-form img {
    margin: 0 auto;
    position: relative;
    width: 30vw;
}

.product-form {
    padding: 0;
    width: 30vw;
}

@media screen and (max-width: 1240px){
    .product-form img {
        width: 40vw;
    }
    
    .product-form {
        width: 40vw;
    }
}

@media screen and (max-width: 991px){
    .product-form img {
        width: 50vw;
    }
    
    .product-form {
        width: 50vw;
    }
}

@media screen and (max-width: 768px){
    .product-form img {
        width: 80vw;
    }
    
    .product-form {
        width: 80vw;
    }
}

.product-form .inner {
    padding: 30px;
}

.product-form .inner p {
    display: block;
    color: #4A4A4A;
    margin: 15px 0;
}

.lookbook .items .item h5 {
    color: #122947; 
    font-size: 18px; 
    font-family: montserrat; 
    display: block; 
    margin-top: 6px;  
    font-weight: 400; 
} 

.lookbook .items .item .image {
    padding-bottom: 135%; 
    margin-bottom: 25px; 
    background-color: #fff;
    background-size: contain; 
    background-position: center; 
    background-repeat: no-repeat; 
}

.lookbook .button-row {
    width: 100%;
    display: flex;
    justify-content: space-around;
    margin-top: 60px;
}

@media screen and (max-width: 768px){
    .lookbook .button-row {
        width: 100%;
        display: block;
    }

    .lookbook .button-row a {
        margin-bottom: 15px;
    }
}

/* Brands carousel */
.brands {
    padding: 20px 0;
}

.brands .brand-carousel .item img {
    max-width: 80%;
    max-height: 80%;
    width: auto;
    height: auto;
    margin: 0 auto;
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.brands .brand-carousel .item {
    position: relative;
    height: 80px;
}

.lookbook .item {
    position: relative;    
}

.product-form .absolute-logo {
    width: 70px;
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 10;
}

/* Instagram cta footer */
.insta-header {
    background: #382423;
    text-align: center;
}

.insta-header .title-block {
    text-align: center;
    color: #FFFFFF;
    margin-bottom: 35px;
}

.insta-header .title-block span,
.insta-header .title-block h4 {
    color: #FFFFFF;
}
.insta-header .title-block h4::after {
    left: 0;
    right: 0;
    margin: 0 auto;
}

.insta-header p {
    font-size: 1.2rem;
    line-height: 2rem;
    color: #FFFFFF;
    display: block;
}

.insta-images {
    padding: 0;
    position: relative;
}

.insta-images .images-block {
    width: 30vw;
    height: 30vw;
    background: grey;
    display: inline-grid;
    grid-template-columns: 1fr 1fr;  
    grid-column-gap: 0; 
    grid-row-gap: 0;  
    position: relative;
} 
.insta-images .content h4::after {
    left: 0;
    right: 0;
    margin: 0 auto;
}
.insta-images .images-block:nth-child(2){
    float: right;
} 

@media screen and (max-width: 768px){
    .insta-images .images-block {
        width: 100vw;
        height: 100vw;
    }

    .insta-images .images-block:nth-child(2){
        display: none;
    }

    .insta-images .content::after {
        content:" ";
        width: 100%;
        height: 140%;
        background: #FFFFFF;
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        transform: translateY(-50%);
        z-index: -1;
    }
}

.insta-images .images-block .image {
    padding-bottom: 50%;
    background-size: cover;
    background-position: center;
}

.insta-images .content {
    text-align: center;
    position: absolute;
    left: 0; 
    right: 0; 
    margin: 0 auto; 
    top: 50%; 
    transform: translateY(-50%); 
    max-width: 350px; 
    z-index: 4; 
}

.insta-images .content .title-block {
    text-align: center;
    margin-bottom: 25px;
}

/* Footer */
footer {
    background: #1C1C1C;
    color: #FFFFFF;
    padding: 80px 20px;
}

footer .branding {
    margin-bottom: 35px;
    width: 200px;
}

footer .content {
    line-height: 2rem;
    
}

footer .content svg {
    vertical-align: middle;
    width: 20px; 
    margin-right: 10px;
}

.fancybox-form-wrap {
    z-index: 999; 
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 30%;
    left: calc(50vw + 200px);
    background: #fff;
    padding: 25px;
    display: inline-block;
    transition: all 350ms ease-in-out;
}

.fancybox-form-wrap p {
    display: block;
    margin: 20px 0;
}

.fancybox-form-wrap .fancybox-button {
    display: none;
}

.dealers .wrapper {
    display: grid; 
    grid-template-columns: 1fr 1fr 1fr 1fr; 
    grid-column-gap: 15px; 
    grid-row-gap: 25px; 
} 

@media screen and (max-width: 991px){
    .dealers .wrapper {
        display: grid; 
        grid-template-columns: 1fr 1fr; 
    }

    .dealers .wrapper .item {
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 768px){
    .dealers .wrapper {
        display: grid; 
        grid-template-columns: 1fr; 
    }
}


.dealers .item p {
    display: block;
    margin: 10px 0;
}

.dealers .item {
    background: #fff;
    padding: 20px;
    border: 1px solid #382423;
    box-sizing: border-box;
}

.dealers .item .btn {
    display: block;
    margin-top: 15px;
}



@media screen and (max-width: 1200px) {
    .home-header .wrapper .content {
        padding: 20px;
    }
    .home-header .wrapper .content h1 {
        font-size: 2.5rem;
    }
}

@media screen and (max-width: 991px) {
    .left-text-image-block {
        flex-direction: column;
        padding: 0px;
    }
    .left-text-image-block .text-block {
        width: 100%;
    }
    .left-text-image-block .image-block {
        width: 100%;
        height: 60vh;
    }
    .left-text-image-block.light-content::before {
        width: 20%;
    }
    .left-text-image-block.light-content::after {
        display: none;
    }
}
@media screen and (max-width: 768px) {
    .home-header .wrapper .content {
        max-width: 90%;
        top: calc(50% - 20px);
    }
    .home-header .wrapper .content .btn {
        margin-top: 5px;
        font-size: .8rem;
        padding: 10px;
    }
}