﻿:root {
    --page-bg: #EFEDE9;
    --menu-hover: #435C6A;
    --menu-bg: #A8C8DB;
    --white: #FFFFFF;
    --black: #0B0B0B;
    --lightgray: #AAAAAA;
    --charcoal: #2b2e35;
    --metropolitanwhite: var(--page-bg);
    --fullmargin: 1697px;
    --fullmargin-extra: 1697px;
}

@font-face {
    font-family: SuisseIntl;
    src: url('/css/fonts/SuisseIntl-Book.otf');
    font-weight: 400;
}

textarea,
input[type="text"],
input[type="button"],
input[type="submit"] {
    -webkit-appearance: none;
    border-radius: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Canela Web";
    font-weight: 300;
    font-style: normal;
    line-height: 1.1;
}
h1 {
    font-size: 90px;
}
h2{
    font-size: 80px;
}
h3 {
    font-size: 60px;
}
h4 {
    font-size: 50px;
}
h1.heroheader {
    margin-top: 310px;
    font-size: 330px;
    font-size: 11vw;
    margin-bottom: 150px;
}
.template_contentpage h1.heroheader {
    font-size: 14vw;
}
    .blogsection h1.heroheader {
        font-size: 330px;
    }
h1.heroheader.insetcontent{
    position: relative;
}
    h1.heroheader.insetcontent:after {
        content: attr(data-content);
        position: absolute;
        z-index: 2;
        top: 0px;
        left: 0px;
    }


.template_contact h1.heroheader {
    margin-top: 230px;
}
.template_contact .section.ondark,
.template_contact .section.ondark a
{
    color: #efede9;
}
    .template_contact .section.ondark a.losenge {
        border: 1px solid #efede9;
    }
    

    body {
        background-color: var(--white);
        font-size: 18px;
        font-family: SuisseIntl;
        font-weight: 100;
    }
    body.page_home, body.page_collections, body.template_product {
        background-color: var(--page-bg);
    }
    .bgcol{
        background-color: var(--page-bg);
    }

    body a {
        color: var(--black);
        text-decoration: none;
        outline: none;
    }
    a.underlined {
        border-bottom: 1px var(--black) solid;
    }
    a.losenge, button.losenge, input.losenge{
        border: 1px solid var(--black);
        border-radius: 50px;
        padding: 15px 30px;
        display: inline-block;
        background-color: transparent;
        color: var(--black);
    }
        a.losenge:hover, button.losenge:hover, input.losenge:hover {
            border: 1px solid var(--black);
            background-color: var(--black);
            color: var(--white)
        }
        body a:hover {
            color: var(--black);
        }
        body p a:hover {
            opacity: 0.5;
        }
        a.gray{
            opacity: 0.5;
        }
div.subtitle {
    font-size: 40px;
    font-family: "Canela Web";
    line-height: 1em;
}

        header {
            padding-top: 38px;
            padding-bottom: 38px;
            position: fixed;
            width: 100%;
            z-index: 20;
            transition: background linear 0.4s;
            border-bottom: 1px solid transparent;
        }

            header.scrolled {
                background-color: var(--white);
                border-bottom: 1px solid var(--charcoal);
            }
            header.ondark.scrolled {
                background-color: var(--charcoal);
            }
            header.scrolled.fixed {
                position: absolute;
                padding-top: 18px;
                padding-bottom: 18px;
            }
            header.scrolled.slideback {
                animation: headerSlideBack 0.4s ease-in;
                  padding-top: 18px;
                  padding-bottom: 18px;
            }

            @keyframes headerSlideBack {
                0% {
                    top: -140px;
                }

                100% {
                    top: 0px;
                }
            }


            header .logo img {
                width: 174px;
                height: 46px;
                transition: ease-out 0.5s opacity;
            }

header.hamburger.lines{
    
}
    header .hamburger.lines {
        content: '';
        cursor: pointer;        
        z-index: 12;
        position: absolute;
        right: 15px;
    }
        header .hamburger.lines:before, header .hamburger.lines:after {
            content: '';
            width: 44px;
            border-top: 2px solid #0B0B0B;
            display: block;
            margin-top: 20px;
            transition: ease-out 0.5s all;
        }
            header .hamburger.lines:hover:before, header .hamburger.lines:hover:after {
                width: 54px;
            }
            header .hamburger.lines:after {
                margin-top: 13px;
                margin-bottom: 22px;
            }
            .sub_back {
                display: none;
            }

        body.menupopup header .hamburger.lines:before {
            transform: rotate(45deg);
        }
        body.menupopup header .hamburger.lines:after {
            transform: rotate(-45deg);
            margin-top: -1px;
        }
        body.menupopup header .logo img {
            opacity: 0;
        }


    header.ondark .logo img {
        filter: brightness(10) grayscale(1);
    }
    header.ondark .hamburger.lines:before, header.ondark .hamburger.lines:after {
        border-top: 2px solid #ffffff;
    }


header #menu {
    background-color: var(--menu-bg);
    position: fixed;
    width: 100vw;
    height: 100vh;
    left: -101vw;
    opacity: 0;
    transition: ease-out 0.5s all;
    top: 0px;
    z-index: 10;
    font-family: "Canela Web";
    pointer-events: none;
}
    header #menu .container {
        height: 100vh;
        display: flex;
        align-items: center;
    }
body.menupopup header #menu {
    left: 0vw;
    opacity: 1;
    pointer-events: all;
}

body.menupopup header .hamburger.lines::before, body.menupopup header .hamburger.lines::after {
    border-top: 2px solid var(--white);
}
    #menu ul li, #menu ul{
    list-style: none;
    color: white;
    margin:0px;
    padding: 0px;
    position: relative;
    margin-bottom: 10px;
}
    #menu ul li a {
        color: var(--white);
        text-decoration: none;
        white-space: nowrap;
    }

    #menu ul li:hover a, #menu ul li.active a,
    #menu ul li:hover:before, #menu ul li.active:before {
        color: var(--menu-hover);
    }

    #menu .sub{ pointer-events:none; }
    #menu .sub.show{ pointer-events: all; }

    #menu .sub ul li{
        position: initial;
    }

    #menu ul li ul {
        position: absolute;
        top: 0px;
        right: -30px;
        display: none;
        transform: translateX(100%);
    }
    @media (min-width: 991.98px) 
    {
        #menu ul li:hover ul {
            display: block;
        }
    }

    #menu  .sub ul li a{
        position: relative;
    }
        #menu .sub ul li:hover a:before {
            content: '';
            width: 100px;
            height: 108px;
            top: -35px;
            left: 60px;
            position: absolute;
            display: block;
            /*background-color: #ffe4c452;*/
        }        
        #menu .sub ul li:hover a:after {
            content: '';
            width: 200px;
            height: 208px;
            top: -115px;
            left: 100px;
            position: absolute;
            display: block;
            /*background-color: #efc4ff52*/
        }

        #menu .sub ul li:hover ul li a:before, #menu .sub ul li:hover ul li a:after{
            content: none;
        }
        #menu .sub ul li:hover ul li a{
            color: var(--white);
        }
            #menu .sub ul li:hover ul li a:hover {
                color: var(--menu-hover);
            }

        #menu .main {
        margin-left: 50%;
        font-size: 90px;
        line-height: 1em;
        position: relative;
        transition: margin 0.6s ease-in-out;
    }
        #menu .main.active {
            margin-left: 25%;
        }

    #menu .main ul li:before {
        content: attr(data-number);
        display: block;
        position: absolute;
        top: -30px;
        left: -20px;
        font-size: 14px;
    }

#menu .sub {
    position: absolute;
    top: 0px;
    left: 700px;
    opacity: 0;
    font-size: 22px;
    line-height: 1.7em;
    text-transform: uppercase;
    transition: left 0s ease-in-out, opacity 0s linear;
    /*width: 100%;*/
}
    #menu .sub.show {
        left: 500px;
        opacity: 1;
        transition: left 0.6s ease-in-out, opacity 0.6s linear;
    }

#menu .ancillary {
    position: absolute;
    bottom: 50px;
    font-family: SuisseIntl;
}
#menu .tertiary_back{ display: none; }


section.hero {
    height: 100vh;
    background-size: cover;
    background-position: 50%;
    animation: slideHero 60s linear;
}

section.bgcol{
    background-color: var(--page-bg);
}
section.content-heading{
    padding-top:310px;
    margin-bottom: 150px;
}
    section.content-heading + section{
        margin-bottom: 150px;
    }

    @keyframes slideHero {
        0% {
        background-position: 0%;
    }
    50% {
        background-position: 100%;
    }
    100% {
        background-position: 0%;
    }
}


.scrollArrow {
    position: absolute;
    bottom: -70px;
    left: 50%;
    height: 115px;
    border-left: 1px solid white;
}
    .scrollArrow .scrollText {
        height: 20px;
        overflow: hidden;
        top: -30px;
        position: absolute;
        left: -19px;
        color: white;
        width: 50px;
    }
        .scrollArrow .scrollText:before {
            content: 'Scroll';
            top: 0px;
            position: absolute;
            animation: scroll1 4s linear infinite;
        }
    .scrollArrow .scrollText:after {
        content: 'Scroll';
        top: -30px;
        position: absolute;
        animation: scroll2 4s linear infinite;
    }

@keyframes scroll1 {
    0% {
        top: 0px;
    }

    80% {
        top: 0px;
    }

    100% {
        top: 20px;
    }
}

@keyframes scroll2 {
    0% {
        top: -20px;
    }

    90% {
        top: -20px;
    }

    100% {
        top: 0px;
    }
}


h2.collectionsTitle {
    font-size: 130px;
}
#carouselHolder.collectionSlider .slick-slide img {
    display: block;
    margin: 0 auto;
    width: 60vw;
    object-fit: cover;
    height: 60vh;
    background-size: cover;
    background-position: 50%;
}
#carouselHolder.collectionSlider .slick-slide a{ position: relative; }
#carouselHolder.collectionSlider .slick-slide .rangeimage {
    display: block;
    margin: 0 auto;
    width: 60vw;
    object-fit: cover;
    height: 50vh;
    background-size: cover;
    background-position: 50% 50%;
    position: absolute;
    top: 0px;
    top: 12px;
}
.pretitle {
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 40px;
}
section.homeintro {
    padding-top: 210px;
    padding-bottom: 150px;
    background: top left no-repeat;
    background-size: contain;
}
    section.homeintro h2{
        font-size: 90px;
    }
    section.homeintro .pretitle{
        margin-bottom: 79px;
    }


.product-feature {
    margin-bottom: 140px;
}
.product-feature img{
    width: 100%;
}

    .product-feature h4 {
        font-size: 40px;
        margin-bottom: 27px;
    }
    .product-feature p{
        margin-bottom: 53px;
    }

.viewproduct, .line-link{
    color: #0B0B0B;
    text-decoration: none;
}
    .viewproduct:before, .line-link:before {
        content: '' !important;
        width: 37px;
        border-top: 1px solid #0B0B0B;
        display: inline-block;
        margin-right: 10px;
        height: 4px;
        transition: 0.2s ease-in width;
    }

    .viewproduct:hover:before, .line-link:hover:before {
        width: 45px;
        transition: 0.6s ease-in-out width;
    }
.template_products h1 {
    font-size: 40px;
}


a.roundButton {
    color: #0B0B0B;
    border: #0B0B0B 1px solid;
    border-radius: 30px;
    padding: 20px 60px;
    text-decoration: none;
    display: inline-block;
}
a.smallerRoundButton {
    color: #0B0B0B;
    border: #0B0B0B 1px solid;
    border-radius: 30px;
    padding: 20px 60px;
    text-decoration: none;
    display: inline-block;
}

section.collections-sliderholder {
    background-color: #C9BBB7;
    padding: 100px 0 130px 0;
    margin-bottom: 170px;
    overflow: hidden;
}
section.products-sliderholder {
    background-color: #d6e1e6;
    padding: 100px 0 130px 0;
    margin-bottom: 170px;
    overflow: hidden;
}


.cta-panel {
    padding-bottom: 140px;
    padding-top: 170px;
    background-color: var(--metropolitanwhite);
    margin-top: -170px;
}

    .cta-panel .illustration {
        height: 378px;
        background-position: top center;
        background-size: cover;
        margin-bottom: 50px;
    }
    .cta-panel h5 { 
        font-size: 50px;
        margin-bottom: 50px
    }
    .cta-panel a {
        margin-top: 40px
    }
.mobileonly{ display: none;}


footer {
    padding-top: 70px;
    background-color: white;
}
    footer .logo {
        width: 204px;
        height: 55px;
        margin-top: 95px;
        margin-bottom: 33px;
    }
        footer .footer_title {
            font-size: 70px;
            font-family: "Canela Web";
            font-weight: 200;
        }
            footer .footer_title > span {
                display: block;
                font-size: 16px;
                font-family: SuisseIntl;                
            }
        footer .footer_socialtitle {
            font-size: 30px;
            margin-bottom: 20px;
            font-family: "Canela Web";
            font-weight: 200;
        }
            footer .footer_socials > a {
                font-size: 14px;
                margin-right: 15px;
                text-transform: uppercase;
            }
        footer .legals {
        font-size: 12px;
    }
    footer .legals a{
        margin-left: 30px;
    }
    footer .footer_accreditations{
        margin-top: 80px;
    }
        footer .footer_accreditations > div {
            height: 60px;
            display: inline-block;
            margin-right: 10px;
        }
            footer .footer_accreditations > div img{
                height:100%;
            }
            footer .footer_tradeportal {
                margin-top: 30px;
                font-size: 20px;
                font-family: "Canela Web";
            }
        footer input[type="text"] {
            background: none;
            border: none;
            border-bottom-color: currentcolor;
            border-bottom-style: none;
            border-bottom-width: medium;
            border-bottom: 1px solid black;
            width: 100%;
            padding: 15px 0;

        }
        footer button[type="submit"] {
            position: absolute;
            right: 0px;
            border: 1px solid #F59E1A;
            border-radius: 30px;
            width: 40px;
            height: 40px;
            bottom: 10px;
            background-color: white;
            padding: 12px 0;
        }
            footer button[type="submit"]:hover {
                background-color: #F59E1A;
            }
            footer button[type="submit"] img {
                width: 15px;
                height: 15px;
                vertical-align: super;
            }
            footer .footer_socials{
                align-self: end;
            }
                footer .footer_socials p{
                    margin-bottom: 0px;
                }
.footer_socials img {
    width: 30px;
}


                .fullheightcarousel {
                    height: 100vh;
                    overflow: hidden;
                }
#carouselHolder .slick-slide, 
#productCarouselHolder .slick-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}
    #productCarouselHolder .slick-slide > div {
        width: 100%;
    }
#carouselHolder h1 {
    font-size: 140px;
    text-align: center;
    margin-top: -80px;
    text-transform: uppercase;
}
#carouselHolder .slideno {
    text-align: center;
    margin-bottom: 25px;
    font-size: 40px;
    font-style: italic;
    font-family: "Canela Web";
}
#collectionsCarouselHolder img, #productsCarouselHolder img {
    width: 100%;
    height: 390px;
    object-fit: cover;
}

    #collectionsCarouselHolder img{
        height: 550px;
        max-height: 550px;
        margin-bottom: 20px;
    }
    .template_collection #collectionsCarouselHolder img,
    .template_collection #productsCarouselHolder img {
        width: 100%;
        height: 390px;
        object-fit: cover;
    }

.template_collection .heroimageholder {
    position: relative;
    margin-top: 150px;
}

.template_collection .heroimage {
    width: 100%;
    margin-bottom: 170px;
}

#carouselHolder, #productCarouselHolder {
    opacity: 0;
}
.slick-initialized.slick-slider {
    animation: slickfadein 0.4s ease-in;
    animation-fill-mode: forwards;
}

@keyframes slickfadein {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.slickBigButtons .slick-prev, .slickBigButtons .slick-next,
.slickBigButtons .slick-prev:hover, .slickBigButtons .slick-next:hover {
    left: 85px;
    /*background-image: url('/content/Left_Arrow.svg');*/
    width: 68px;
    height: 68px;
    background-repeat: no-repeat;
    background-position: 50%;
    z-index: 10;
    border: 1px solid var(--black);
    border-radius: 50%;
    padding: 30px 30px;
}
    .slickBigButtons .slick-prev:hover,
    .slickBigButtons .slick-next:hover {
        background-color: var(--black);
    }
    .slickBigButtons .slick-next:hover {
        left: initial;
    }
        .slickBigButtons .slick-prev:hover:before, .slickBigButtons .slick-next:hover:before {
            border-top: 1px solid var(--white);
            border-right: 1px solid var(--white);
        }
.slickBigButtons .slick-next {
    /*background-image: url('/content/Right_Arrow.svg');*/
    left: initial;
    right: 85px;
}

    .slickBigButtons .slick-next:before, .slickBigButtons .slick-prev:before {
        content: '';
        width: 30px;
        height: 30px; 
    }

    .slickBigButtons .slick-prev.slick-arrow,
    .slickBigButtons .slick-next.slick-arrow {
        padding: 20px 14px;
    }

    .slickBigButtons .slick-next::before, 
    .slickBigButtons .slick-prev::before {
        content: '';
        position: absolute;
        width: 15px;
        height: 15px;
        border-top: 1px solid var(--black);
        border-right: 1px solid var(--black);
        transform: rotate(45deg);
        top: 25px;
        left: 20px;
    }

        .slickBigButtons .slick-prev:before {
            transform: rotate(-135deg);
            left: 30px;
        }



.umb-grid .grid-section > div {
    margin-bottom: 170px;
}

.section.midsection{
    padding-top: 170px;
}
.section.grid-type .container,
section.grid-type .container {
    margin-bottom: 170px;
}

.umb-grid .row.row-70-30 > [class^="col-"],
.umb-grid .row.row-30-70 > [class^="col-"] {
    align-self: end;
}
.row > [class^="col-"] img {
    max-width: 100%;
}
.umb-grid .row > [class^="col-"] img {
    width: 100%;

}
.umb-grid .row.row-overlapping-left {
    margin-bottom: -200px;
}
.umb-grid .row.row-overlapping-right {
    margin-bottom: -200px;
}
.umb-grid .row.row-overlapping-left [class^="col-"],
.umb-grid .row.row-overlapping-right [class^="col-"] {
    align-self: center;
}

.row-side-by-side > .col-md-5,
.row-side-by-side > .col-md-4 {
    align-self: center !important;
}
.umb-grid .row-image-left [class^="col-"],
.umb-grid .row-image-right [class^="col-"], 
.umb-grid .row-image-left-v2 [class^="col-"],
.umb-grid .row-image-right-v2 [class^="col-"] {
    align-self: center !important;
}

.umb-grid .negativespace {
    margin-bottom: -110px;
}

.row.row-left-image-w-text > .col-md-5 > div {
    margin-left: calc(((50vw) - (var(--fullmargin-extra) / 2)) * -1);
    margin-left: calc(-100vw / 2 + var(--fullmargin-extra) / 2);
    text-align: right;
}
    .row.row-left-image-w-text > .col-md-5 > div > img {
        width: 100%;
    }

.row.row-right-image-w-text > .col-md-6 > div {
    margin-right: calc(((50vw) - (var(--fullmargin-extra) / 2)) * -1);
    margin-right: calc(-100vw / 2 + var(--fullmargin-extra) / 2);
    text-align: left;
}

    .row.row-left-image-w-text > .col-md-5 > div > img {
        width: 100%;
    }

.row.row-left-image-w-text > .col-md-4,
.row.row-right-image-w-text > .col-md-4 {
    align-self: center !important;
}


    .product-section {
        border-bottom: 1px solid #707070;
        padding: 90px 0;
        padding-top: 130px;
    }


    .product-section h4 {
        margin-bottom: 30px;
        font-size: 40px;
    }
        .product-sections{
            margin-bottom: 170px;
        }

        .expand-section .expand-subtitle {
            font-family: SuisseIntl;
            font-size: 14px;
            line-height: 15px;
            margin-top: 0px;
            margin-bottom: 0px;
        }

.expand-section .row > div {
    align-self: center !important;
}
.template_product .expand-section .row > div {
    align-self: start !important;
}
.expand-section .expander {
    padding: 90px 0px;
    margin-top: -90px;
    margin-bottom: -90px;
    cursor: pointer;
}
.expand-section h3 {
    font-size: 60px;
}
.expand-section > .row + .row {
    padding-top: 90px;
}
.expand-section.show > .row + .row {
    display: flex;
    height: auto;
}
    .expand-section > .row + .row {
    display: none;
    height: 0px;
    overflow: hidden;
}

.expand-section > .row .plus {
    width: 77px;
    height: 77px;
    position: relative;
    transform: translateY(-6px);
}


    .expand-section > .row .plus:before {
        content: '';
        display: block;
        width: 77px;
        border-bottom: 1px solid var(--black);
        top: 50%;
        position: absolute;
        transition: all 0.3s ease-in-out;
    }
    .expand-section > .row .plus:after {
        content: '';
        display: block;
        height: 77px;
        border-left: 1px solid var(--black);
        left: 50%;
        position: absolute;
        transition: all 0.3s ease-in-out;
    }

        .expand-section.show > .row .plus:before {
            opacity: 0;
            transform: rotate(90deg);
        }
        .expand-section.show > .row .plus:after {
            transform: rotate(90deg);
        }



    .macro_teamSlidePanelWithImage h2 {
        margin-bottom: 50px;
    }
.person_details{
    margin-top: 40px;
}
.person_details h5{
    font-size: 40px;
    font-family: '"Canela Web"';
}
    .person_details p {
        text-transform: uppercase;
    }

.teamslick .slick-slide .col-4 {
    margin: 0 15px;
    padding-right: 15px;
}
.slickDotSlider .slick-dots {
    background-color: #707070;
    height: 1px;
    text-align: left;
    margin-bottom: 0px;
    bottom: -70px;
}
    .slickDotSlider .slick-dots li {
        width: 30%;
        height: 3px;
        margin: 0px;
        margin-top: -20px;
    }
        .slickDotSlider .slick-dots li button {
            width: 100%;
            margin: 0px;
            padding: 0px;
            height: 3px;
            padding: 40px;
        }

            .slickDotSlider .slick-dots li button:before {
                line-height: 3px;
                width: 100%;
                height: 3px;
                background-color: transparent;
                margin-top: 19px;
                content: '';
            }
            .slickDotSlider .slick-dots li.slick-active button:before {
                background-color: black;
            }

.slickArrowSlider .slick-dots {
    width: calc(100% - 170px);
}

.slickArrowSlider .slick-prev.slick-arrow,
.slickArrowSlider .slick-next.slick-arrow {
    left: initial;
    top: initial;
    padding: 20px 14px;
    bottom: -109px;
    right: 130px;
}
.slickArrowSlider .slick-next.slick-arrow {
    right: 90px;
}
.slickArrowSlider .slick-next:before,
.slickArrowSlider .slick-prev:before {
    content: '';
    position: absolute;
    width: 15px;
    height: 15px;
    border-top: 1px solid var(--black);
    border-right: 1px solid var(--black);
    transform: rotate(45deg);
    top: 11px;
    left: 4px;
}
.slickArrowSlider .slick-prev:before {
    transform: rotate(-135deg);
    left: 16px;
}



.macro_slidePanelWithImage, .macro_slidePanelWithNumbers {
    margin-left: calc(((50vw) - (var(--fullmargin-extra) / 2)) * -1);
    margin-left: calc(-100vw / 2 + var(--fullmargin-extra) / 2);
    margin-right: calc(((50vw) - (var(--fullmargin-extra) / 2)) * -1);
    margin-right: calc(-100vw / 2 + var(--fullmargin-extra) / 2);
}
.macro_slidePanelWithImage {
    padding: 225px 0 200px 0;
}
    .macro_slidePanelWithImage {
        padding: 125px 0 140px 0;
    }
        .macro_slidePanelWithImage h3 {
            font-size: 210px;
            text-align: left;
            margin-left: 170px;
            z-index: 3;
            opacity: 0;
        }
            .macro_slidePanelWithImage h3 + h3 {
                font-size: 210px;
                text-align: left;
                margin-left: 170px;
                z-index: 3;
                opacity: 1;
                position: absolute;
                top: 0px;
                left: 0px;
            }
    .macro_slidePanelWithImage .slidePanelWithImage {
        margin-top: -100px;
    }
        .macro_slidePanelWithImage .slidePanelWithImage h4 {
            margin-top: 250px;
            font-size: 60px;
            margin-bottom: 50px;
            line-height: 0.9em;
        }

        .macro_slidePanelWithImage .slidePanelWithImage .slick-prev,
        .macro_slidePanelWithImage .slidePanelWithImage .slick-next {
            left: initial;
            right: 75px;
            top: initial;
            bottom: -112px;
            border: 1px solid white;
            border-radius: 50%;
            padding: 30px 30px;
        }

        .macro_slidePanelWithImage .slickArrowSlider .slick-next:before,
        .macro_slidePanelWithImage .slickArrowSlider .slick-prev:before {
            /* top: 11px; */
            top: 24px;
        }

        .macro_slidePanelWithImage .slickArrowSlider .slick-prev:before {
            left: 25px;
        }
        .macro_slidePanelWithImage .slickArrowSlider .slick-next:before {
            left: 20px;
        }




        .macro_slidePanelWithImage .slidePanelWithImage .slick-next.slick-arrow {
            right: 0px;
            top: initial;
            bottom: -112px;
        }

        .macro_slidePanelWithNumbers .slick-list .slick-slide .container {
            position: relative;
        }
        .macro_slidePanelWithNumbers .slick-list {
            overflow: visible;
            padding: 200px 15px;
            padding: 225px 15px 200px 15px !important;
        }
        .macro_slidePanelWithNumbers {
            overflow-y: visible;
        }

        .macro_slidePanelWithNumbers .number {
            position: absolute;
            bottom: -266px;
            right: 110px;
            font-size: 700px;
        }
            .macro_slidePanelWithNumbers h3 {
                margin-bottom: 100px;
            }
            .macro_slidePanelWithNumbers .number h4 {
                font-size: 700px;
                color: var(--metropolitanwhite);
            }
            /*.macro_slidePanelWithNumbers .slick-prev.slick-arrow:before,
            .macro_slidePanelWithNumbers .slick-prev.slick-arrow:hover:before,
            .macro_slidePanelWithNumbers .slick-next.slick-arrow:before,
            .macro_slidePanelWithNumbers .slick-next.slick-arrow:hover:before {
                opacity: 0;
            }
            .macro_slidePanelWithNumbers .slick-next.slick-arrow,
            .macro_slidePanelWithNumbers .slick-prev.slick-arrow {
                position: absolute;
                top: 0px;
                height: 80%;
                width: 50%;
                transform: none;
                right: -20px;
                z-index: 2;
            }*/

            .macro_slidePanelWithNumbers .slickArrowSlider .slick-prev.slick-arrow,
            .macro_slidePanelWithNumbers .slickArrowSlider .slick-next.slick-arrow{
                bottom: -24px;
            }

            .macro_slidePanelWithNumbers .slickArrowSlider .slick-next::before,
            .macro_slidePanelWithNumbers .slickArrowSlider .slick-prev::before {
                border-top: 1px solid var(--white);
                border-right: 1px solid var(--white);
            }

    .macro_slidePanelWithNumbers .slick-dots {
                bottom: 15px;
                background-color: rgb(255 255 255 / 0.60);
            }
            .macro_slidePanelWithNumbers .slickDotSlider .slick-dots li.slick-active button::before {
                background-color: white;
            }


.blogpost .blogpost-image {
    width: 100%;
    height: 300px;
    background-position: 50%;
    background-size: cover;
    background-repeat: no-repeat;
    margin-bottom: 40px;
}
.blogpost h3 {
    font-size: 40px;
    margin-bottom: 30px;
}

.blogpost {
    margin-bottom: 206px;
}

.productimage-hero {
    position: relative;
}

    .productimage-hero h1 {
        position: absolute;
        font-size: 200px;
        text-transform: uppercase;
        top: 50%;
        text-align: center;
        width: 100%;
        z-index: 2;
        /**/
        font-size: 218px;
        top: 250px;
        margin-left: -12px;
    }
    .productimage-hero.longtitle h1 {
        font-size: 180px;
    }
    .productimage-hero.verylongtitle h1 {
        font-size: 160px;
    }
.template_range .productimage-hero h1 {
    font-size: 218px;
    top: 250px;
}
.template_range main section:first-of-type {
    background-color: var(--metropolitanwhite);
}
.template_range main .product-slider-secton .container-fluid {
    /*background-color: var(--metropolitanwhite);*/
}
    .template_range main .product-slider-secton .slick-slide .prod-item {
        border-right: 1px solid var(--lightgray);
    }
        .container-fluid .col {
            padding: 0;
        }

        .productimage-hero h1 + h1 {
            opacity: 0;
            z-index: 5;
        }

        .productimage-hero h1 + h1:hover {
            opacity: 1;
        }

        .productimage-hero h1 + h1 {
            transition: opacity 1s linear;
        }

    .productimage-hero img {
        width: 70%;
        position: relative;
        z-index: 3;
        margin: 150px 15%;
        /**/
        margin: 210px 15% 70px 15%;
    }
.template_range .productimage-hero img {
    margin: 210px 15% 70px 15%;
}


    p.backbutton {
        position: absolute;
        top: 187px;
        width: 50%;
        z-index: 5;
        margin-left: 30px;
        transition: ease-in-out 0.4s margin;
        text-align: left;
    }
        .template_product p.backbutton {
            top: 126px;
        }
    p .backbutton:hover {
                margin-left: 40px;
            }
            p.backbutton:before {
                content: '';
                position: absolute;
                display: block;
                width: 10px;
                height: 10px;
                border-top: 1px solid black;
                border-left: 1px solid black;
                left: -20px;
                transform: rotate(-45deg);
                top: 5px;
                transition: ease-in-out 0.4s left;
            }
            p.backbutton:hover:before {
                left: -30px;
            }

                .macro_gallerySlider .slick-slide .col-4 {
                    margin: 0 15px;
                    padding-right: 15px;
                }
.macro_gallerySlider {
    background-color: var(--metropolitanwhite);
    margin-left: calc(((50vw) - (var(--fullmargin) / 2)) * -1);
    margin-left: calc(-100vw / 2 + var(--fullmargin) / 2);
    margin-right: calc(((50vw) - (var(--fullmargin) / 2)) * -1);
    margin-right: calc(-100vw / 2 + var(--fullmargin) / 2);

    padding: 115px 0 150px 0;
    overflow: hidden;
}

.template_range .macro_gallerySlider {
    background-color: var(--metropolitanwhite);
    margin-left: calc(((50vw) - (var(--fullmargin-extra) / 2)) * -1);
    margin-left: calc(-100vw / 2 + var(--fullmargin-extra) / 2);
    margin-right: calc(((50vw) - (var(--fullmargin-extra) / 2)) * -1);
    margin-right: calc(-100vw / 2 + var(--fullmargin-extra) / 2);
}

.macro_gallerySlider h3 {
        font-size: 180px;
        margin-bottom: 20px;
    }
    .macro_gallerySlider .slick-slider .slick-list{
        overflow: visible;
    }

.macro_fullBleedBackground {
    background-color: var(--metropolitanwhite);
    background-size: cover;
    margin-left: calc(((50vw) - (var(--fullmargin) / 2)) * -1);
    margin-left: calc(-100vw / 2 + var(--fullmargin) / 2);
    margin-right: calc(((50vw) - (var(--fullmargin) / 2)) * -1);
    margin-right: calc(-100vw / 2 + var(--fullmargin) / 2);
    padding: 280px 0 240px 0;
    margin-top: -170px;
    text-align: center;
}
.template_range .macro_fullBleedBackground {
    margin-left: calc(((50vw) - (var(--fullmargin-extra) / 2)) * -1);
    margin-left: calc(-100vw / 2 + var(--fullmargin-extra) / 2);
    margin-right: calc(((50vw) - (var(--fullmargin-extra) / 2)) * -1);
    margin-right: calc(-100vw / 2 + var(--fullmargin-extra) / 2);
}


.youmayalsolike {
    padding-bottom: 200px;
}

    .youmayalsolike h3 {
        margin-bottom: 55px;
    }

    .youmayalsolike img {
        transition: 0.4s ease-in-out all;
        transform: translateY(0px);
    }
        .youmayalsolike img:hover {
            transform: translateY(-20px);
        }

    .youmayalsolike img + p {
        opacity: 0;
        transform: translateY(-20px);
        transition: 0.4s ease-in-out all;
    }
    .youmayalsolike img:hover + p {
        opacity: 1;
        transform: translateY(0px);
    }

    .gallerySlidePanel .slick-slide img {
        max-height: 500px;
        object-fit: cover;
    }

.template_range .gallerySlidePanel .slick-slide img {
    width: 100%;
    padding: 0 0px;
    height: 100%;
    object-fit: contain;
}
.template_range .gallerySlidePanel.range_productslider .slick-slide img {
    padding: 0 80px;
}


    .range_productslider {
        margin-top: 40px;
    }

.sampleform input[type=text], .sampleform select, .sampleform textarea,
#stockist_search input[type=text], #stockist_search select, #sampleselect_chosen {
    font-family: SuisseIntl;
    font-size: 16px;
    padding: 15px 10px;
    border: none;
    border-bottom: 1px solid #707070;
    margin-bottom: 40px;
    width: 100%;
    background-color: transparent;
}

    #sampleselect_chosen.chosen-container-active .chosen-choices {
        border: 1px solid #5897fb;
        -webkit-box-shadow: none;
        box-shadow: none;
    }

    #sampleselect_chosen.chosen-container-multi .chosen-choices {
        border: none;
        background-image: none;
        background-image: none;
    }
        #sampleselect_chosen.chosen-container-multi .chosen-choices li.search-choice {
            padding: 7px 25px 4px 9px;
            background-image: none;
            box-shadow: none;
        }
            #sampleselect_chosen.chosen-container-multi .chosen-choices li.search-choice .search-choice-close {
                top: 7px;
            }
    img .contact-image {
            position: absolute;
            left: 0px;
            width: 50%;
        }


/*Collections*/
.template_collection .mazeCollectionHeader {
    margin-top: 237px;
    text-transform: uppercase;
    display: inline-block;
}

.template_collection .heroimageholder h1 {
    font-size: 220px;
    position: absolute;
    top: -144px;
    z-index: 2;
    width: 100%;
    text-transform: uppercase;
}
.template_collection .collectionsTitle {
    text-transform: uppercase;
    display: inline-block;
    position: relative;
    font-size: 180px;
    font-family: 'Canela Web';
}

    .template_collection .collectionsTitle > div {
        position: absolute;
        right: -20px;
        top: 33px;
        transform: translateX(100%);
    }


/*retialers*/
.retialersSelection {
    margin-top: 100px;
}

    .retialersSelection h3 {
        border-bottom: 2px solid #000;
        opacity: 0.25;
        cursor: pointer;
        margin-right: -24px;
        padding-bottom: 20px;
    }

        .retialersSelection h3.active {
            opacity: 1;
        }

.retailers {
    margin-top: 100px;
}

    .retailers .col-md-4 {
        border-bottom: 1px solid #707070;
        margin-top: 60px;
        margin-bottom: 30px;
    }

    .retailers p {
        margin-bottom: 1px;
        font-size: 16px;
    }

        .retailers p.retailername {
            font-family: "Canela Web";
            font-size: 40px;
            margin-bottom: -5px;
        }

    .retailers .contact {
        margin-top: 35px;
        margin-bottom: 40px;
    }

        .retailers .contact a {
            margin-left: 10px;
        }

        .retailers .contact > div {
            width: 50%;
            float: left;
        }

            .retailers .contact > div + div + div {
                width: 100%;
                margin-top: 30px;
            }




#offline_retailers {
    margin-top: 180px;
}

#map {
    width: 100%;
    padding-bottom: 50%;
}




/**/

.section.insetcontent {
    margin-top: -240px;
}


body a.roundButton:hover,
body .roundButton:hover,
body a.smallerRoundButton:hover,
body .smallerRoundButton:hover {
    color: var(--metropolitanwhite);
    background-color: #0B0B0B;
    cursor: pointer;
}
    body .roundButton a,
    body .smallerRoundButton a {
      padding: 22px 20px;
    }
body .roundButton:hover a {
    color: var(--metropolitanwhite);
}
body .smallerRoundButton:hover a {
    color: var(--metropolitanwhite);
}
.roundButton:hover a, .smallerRoundButton:hover a,
body p a.smallerRoundButton:hover {
    opacity: 1;
}

span.largeLink {
    font-size: 60px;
    font-family: "Canela Web";
    font-weight: 300;
    font-style: normal;
    line-height: 1;
}

a.largeLink:hover {
    opacity: 1;
}


#product_carousel img {
    height: 65vh;
    object-fit: contain;
}
#product_carousel {
    margin-bottom: 60px;
    min-height: 60vh;
}
.product-section .desc{
    margin-bottom: 30px;
}
#product_carousel .slick-dots {
    bottom: -50px;
}


.template_blogpost section.hero {
    height: 80vh;
}

.template_blogpost section.title {
    margin-top: -175px;
}

    .template_blogpost section.title h1 {
        font-size: 90px;
        padding: 85px 111px;
    }


.template_blogpost .row.row-headline {
    font-size: 40px;
    font-family: "Canela Web";
    margin-bottom: 50px;
    line-height: 1.1em;
}

.template_blogpost .row.row-inset {
    font-size: 40px;
    font-family: "Canela Web";
    margin-top: 88px;
    margin-bottom: 47px;
    line-height: 1.1em;
}

.template_blogpost .row.row-article,
.template_blogpost .template_blogpost .umb-grid .grid-section > div {
    margin-bottom: 50px;
}

.template_blogpost .row.row-50-50 {
    margin-bottom: 100px;
}

.template_blogpost a.backToJournal {
    font-size: 40px;
    font-family: "Canela Web";
    margin-top: 50px;
    display: inline-block;
}

ul.filters, ul.filters li {
    display: inline-block;
    list-style: none;
    margin-bottom: 30px;
    padding-left: 0px;
}

    ul.filters li {
        padding: 10px 30px 8px 30px;
        border: 1px solid var(--black);
        margin-right: 10px;
        cursor: pointer;
        margin-bottom: 10px;
    }
        ul.filters li.active{
            color: var(--white);
            background-color: var(--black);
        }
        ul.filters li.temphidden {
            display: none;
        }




        .section.grid-type.product-slider-secton .container {
            margin-bottom: 0px;
        }
.section.grid-type.product-slider-secton .container-fluid {
    margin: 30px 0;
    margin-bottom: 170px;
}
.range_productslider.slick-slider,
.range_productslider.slick-slider.slick-dotted {
    margin: 0px;
}

.product-grid .product-grid-item img,
.range_productslider .prod-item img {
    align-self: center !important;
}
..range_productslider .prod-item{
    margin-bottom: 0px;
}
.product-grid .product-grid-item:hover img,
.range_productslider .prod-item:hover img {
    transform: scale(1.1);
}

.product-grid .product-grid-item a,
.range_productslider .prod-item a {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
}

.product-grid .product-grid-item span,
.range_productslider .prod-item span {
    font-weight: 800;
    text-transform: uppercase;
}
.range_productslider .prod-item{ margin-bottom: 0px; }

.product-grid .product-grid-item,
.range_productslider .prod-item {
    background-color: rgb(201 187 183 / 0.20);
    height: 440px;
    position: relative;
    display: flex;
    margin-bottom: 1.5rem;
}

    .product-grid .product-grid-item > div,
    .range_productslider .prod-item > div {
        opacity: 0;
        transition: 0.6s ease-in-out opacity;
        position: absolute;
        bottom: 22px;
        left: 40px;
        width: calc(100% - 80px);
        display:flex;
    }
        .product-grid .product-grid-item > div > div,
        .range_productslider .prod-item > div > div {
            flex-grow: 1;
            align-self: flex-end;
        }

        .product-grid .product-grid-item > div p,
        .range_productslider .prod-item > div p {
            font-size: 14px;
            opacity: 0.4;
            margin-bottom: 0px;
        }
    .product-grid .product-grid-item img,
    .range_productslider .prod-item img {
        align-self: center !important;
        padding: 0 30px;
        transition: 1s ease-out transform;
        pointer-events: none;
    }

    .product-grid .product-grid-item:hover,
    .range_productslider .prod-item:hover {
        background-color: rgb(201 187 183 / 0.50);
    }

        .product-grid .product-grid-item:hover > div,
        .range_productslider .prod-item:hover > div {
            opacity: 1;
        }
.container.product-grid{
    margin-bottom: 170px;
}
.template_contentpage main {
    overflow-x: hidden;
}
.ranges a:hover {
    opacity: 0.5;
}
    .text-center.backbutton {
        position: absolute;
        top: 80px;
        width: 100%;
        left: 0px;
        z-index: 20;
    }
.menupopup .text-center.backbutton {
    display: none;
}
    .product-colour{
    cursor: pointer;
}
.product-colour {
    width: 103px;
    display: inline-block;
    margin-right: 25px;
}
.product-colour > div {
    border-radius: 50px;
    width: 103px;
    height: 103px;
    background-size: cover;
    border: 4px solid white;
}

.colour-options.clearfix{ display: none; }
.colour-options[data-options="4"],
.colour-options[data-options="6"] {
    width: 280px;
}

.macro-video video {
    width: 100%;
}
.spacer {
    margin-bottom: 90px;
    display: inline-block;
}

.rangelinks {
    margin-bottom: 270px;
}

.range_productslider .slickArrowSlider .slick-dots {
    width: calc(90% - -20px);
    left: 30px;
}

#ajaxSignup.submitted{
    pointer-events: none;
    opacity: 0.7;
}

.range_header_padding{ margin-bottom: 170px; }

.rangeAllProdButton{ margin-top: 40px; }

.row.clearfix.row-4-wide {
    margin-top: -145px;
}


.section.bgimage-PalmRight {
    margin-top: -170px;
    padding-top: 170px;
    background-image: url(/content/Shadow_2.png);
    background-position: top right;
    background-repeat: no-repeat;
    background-size: contain;
    background-size: 50%;
}
.section.bgimage-PalmLeft {
    margin-top: -170px;
    padding-top: 170px;
    background-image: url(/content/PalmShadow.png);
    background-position: top left;
    background-repeat: no-repeat;
    background-size: contain;
}


/*****ANIMS******/
section.hero h1 p, section.hero .hero-subtitle,
.mze-fade-trigger .mze-fade-this, .mze-fade-trigger.mze-fade-this,
.mze-fade-trigger .mze-fade-this.inset p,
.umb-grid .col-md-12,
.section .row,
.homeintro .mze-fade-this em {
    opacity: 0;
    transform: translateY(80px);
    transition: opacity 0.5s ease-in, transform 1.8s cubic-bezier(0.000, 0.605, 0.110, 0.910); /* custom */
}

    section.hero.mze-fade-in h1 p, section.hero.mze-fade-in .hero-subtitle,
    .mze-fade-trigger.mze-fade-in .mze-fade-this, .mze-fade-trigger.mze-fade-in.mze-fade-this,
    .mze-fade-trigger.mze-fade-in .mze-fade-this.inset p,
    .umb-grid .col-md-12.mze-fade-in,
    .section .row.mze-fade-in {
        opacity: 1;
        transform: translateY(0px);
    }

    .mze-fade-in-on-scroll.mze-fade-in-noslideup {
        transform: translateY(0px);
    }

    .mze-fade-in-on-scroll.mze-fade-in-immediate {
        transition-delay: -3s !important;
    }


.homeintro .row .mze-fade-in em,
.umb-grid .col-md-12 .mze-fade-in em,
.section .row .mze-fade-in em {
    opacity: 1 !important;
    transition-delay: .1s;
}
    .mze-fade-in em + em {
        transition-delay: .4s;
    }
.homeintro .row  em,
.umb-grid .col-md-12  em,
.section .row  em {
    opacity: 0;
    transform: translateY(80px);
    transition: opacity 1s ease-in, transform 1.8s cubic-bezier(0.000, 0.605, 0.110, 0.910); /* custom */
}

.colour_preview{
    text-align: right;
}
.colour_preview .product-colour {
    width: 10px;
}
    .colour_preview .product-colour > div {
        width: 33px;
        height: 33px;
        border: 2px solid white;
    }

    /*transition-delay: 1s;*/
    .umb-grid .row .col-sm-8 {
}

section.hero.mze-fade-in h1 p + p,
.mze-fade-trigger.mze-fade-in .mze-fade-this.inset p + p {
    transition-delay: .4s;
}

    section.hero.mze-fade-in h1 p + p + p,
    .mze-fade-trigger.mze-fade-in .mze-fade-this.inset p + p + p {
        transition-delay: 0.6s;
    }
section.hero.mze-fade-in .hero-subtitle {
    transition-delay: 0.8s;
}

.mze-fade-trigger.mze-fade-in .mze-fade-this.mze-offset-1 {    transition-delay: 0.1s;}
.mze-fade-trigger.mze-fade-in .mze-fade-this.mze-offset-2 {    transition-delay: 0.2s;}
.mze-fade-trigger.mze-fade-in .mze-fade-this.mze-offset-3 {    transition-delay: 0.3s;}
.mze-fade-trigger.mze-fade-in .mze-fade-this.mze-offset-4 {    transition-delay: 0.4s;}
.mze-fade-trigger.mze-fade-in .mze-fade-this.mze-offset-5 {    transition-delay: 0.5s;}
.mze-fade-trigger.mze-fade-in .mze-fade-this.mze-offset-6 {    transition-delay: 0.6s;}
.mze-fade-trigger.mze-fade-in .mze-fade-this.mze-offset-7 {    transition-delay: 0.7s;}
.mze-fade-trigger.mze-fade-in .mze-fade-this.mze-offset-8 {    transition-delay: 0.8s;}
.mze-fade-trigger.mze-fade-in .mze-fade-this.mze-offset-9 {    transition-delay: 0.9s;}
.mze-fade-trigger.mze-fade-in .mze-fade-this.mze-offset-10 {    transition-delay: 1.0s;}

.prod-find-a-retailer-bottom {
    display: none;
}

.video-wrapper {
    width: 100%;
    padding-bottom: 60%;
    position: relative;
}
.video-wrapper iframe {
    width: 95%;
    height: 100%;
    position: absolute;
    top:0px;
    left:0px;
}
  

section.white {
    background-color: var(--white);
    padding-top: 60px;
}
div[data-full-width-style="whitebuffinset"] .row {
    background-color: #efede9;
    padding-left: 50px;
    padding-right: 50px;
}
    div[data-full-width-style="whitebuffinset"] .col-md-4 + .col-md-8 img {
        transform: translate(20px, -50px);
    }

    div[data-full-width-style="whitebuffinset"] .col-md-8 img {
        transform: translate(0px, -50px);
        padding-right: 0px;
    }

.row-image-left-v2, .row-image-right-v2 {
    margin-left: 0px;
    margin-right: 0px;
}
.explore_arrow {
    vertical-align: middle;
    line-height: 0px;
    border-bottom: 1px solid black;
    width: 30px;
    display: inline-block;
    margin-left: 10px;
    position: relative;
}
    .explore_arrow:after {
        position: absolute;
        content: '';
        transform: rotate(45deg);
        border-top: 1px solid black;
        border-right: 1px solid black;
        width: 10px;
        height: 10px;
        right: 0px;
        top: -4px;
    }



#product_carousel .slick-dots li button::before {
    font-size: 10px;
}

/**-----------Commercial Page additions------------**/

.commercialheader {
    padding-top: 150px;
    padding-bottom: 60px;
    text-align: center;
}

    .commercialheader .row {
        margin-bottom: 90px;
    }

div[data-full-width-style="buffinset"] {
    background-color: #efede9;
}

section[data-full-width-style="buffinset"] {
    background-color: #efede9;
}

.row.clearfix.row-4x img {
    margin-bottom: 30px;
}

.row.clearfix.row-4x .column {
    padding-right: calc(var(--bs-gutter-x) * 1);
    padding-left: calc(var(--bs-gutter-x) * 1);
}

    .row.clearfix.row-4x .column:first-of-type {
        padding-left: calc(var(--bs-gutter-x) * .5);
    }

    .row.clearfix.row-4x .column:last-of-type {
        padding-right: calc(var(--bs-gutter-x) * .5);
    }

.row.row-center-right-offset .col-md-4 {
    align-self: center !important;
}

.umb-grid-fullwidth .grid-section > section > div {
    padding-bottom: 85px;
    padding-top: 85px;
}

.umb-grid-fullwidth section[data-full-width-style="buffinset"]:first-child {
    margin-top: -170px;
}


.contact-section + .cta-panel {
    margin-top: 170px;
}