/*** BODY ***/
body {
    position: relative;  
}
main {
    overflow-x: hidden;
}
footer {
    /* margin-top: -2px; */
}

/*** HEADINGS ***/
h1 {
    font-size: 37px;  
}

/*** NAVBAR CIRCLES ***/
#navbar-circles {
    position: fixed;
    right: 50px;
    top: 30vh;
    z-index: 500;
}
#navbar-circles > a {
    display: block;
    color: #fff;
    font-size: 20px;
    position: relative;
    top: -20px;
    left: -11px;
}
#navbar-circles > a,
#navbar-circles > a:link,
#navbar-circles > a:active,
#navbar-circles > a:focus {
    text-decoration: none;  
}
#navbar-circles ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
#navbar-circles li {
    display: block;  
    float: none;
    margin-bottom: 20px;
}
#navbar-circles li a {
    display: block;
    width: 15px;
    height: 15px;
    border-radius: 8px;
    padding: 0;
    border: 2px solid #fff;
    background: transparent;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    position: relative;
    display: block !important;
}
#navbar-circles a::before {
    color: #fff;
    position: absolute;
    left: -215px;
    top: -8px;
    text-align: right;
    float: right;
    display: none;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    white-space: nowrap;
    width: 200px;
}
#navbar-circles a[href="#lumenology-video-wrapper"]::before {
    content: "Lumenology";
}
#navbar-circles a[href="#pattern-intro-wrapper"]::before {
    content: "Pattern Intro";
}
#navbar-circles a[href="#design-overview-wrapper"]::before {
    content: "Design Overview";
}
#navbar-circles a[href="#MainContainer_C011_Col00"]::before {
    content: "Collection Video";
}
#navbar-circles a[href="#style-performance-wrapper"]::before {
    content: "Style With Performance";
}
#navbar-circles a[href="#prism-pairings-wrapper"]::before {
    content: "A Prism Of Pairings";
}
#navbar-circles a[href="#dynamic-floorscapes-wrapper"]::before {
    content: "Dynamic Floorscapes";
}
#navbar-circles a[href="#colorline-wrapper"]::before {
    content: "Colorline";
}
#navbar-circles a[href="#my-room-tool-wrapper"]::before {
    content: "My Room Tool";
}
#navbar-circles a[href="#shop-now-wrapper"]::before {
    content: "Shop Now";
}
#navbar-circles li > a.active,
#navbar-circles li > a.active:focus,
#navbar-circles li > a.active:hover {
    background: #fff;
}
#navbar-circles li > a.active::before,
#navbar-circles li > a.active:focus::before,
#navbar-circles li > a.active:hover::before {
    display: inline-block;
}
/*  >> Nav Circles - Dark Theme */
#navbar-circles.dark-theme > a {
    color: #333;  
}
#navbar-circles.dark-theme li a {
    border: 2px solid #333;
}
#navbar-circles.dark-theme a::before {
    color: #333;
}
#navbar-circles.dark-theme li > a.active,
#navbar-circles.dark-theme li > a.active:focus,
#navbar-circles.dark-theme li > a.active:hover {
    background: #333;
}
/* >> Nav Circles - Media Queries */
@media only screen and (max-width: 991px) {
    h1 {
        font-size: 30px;  
    }
    #navbar-circles {
        display: none;  
    }
}

/*** KEYFRAMES ***/
@keyframes pulse {
    0% {
      opacity: 0.4;
    }
    50% {
      opacity: 1;
    }
    100% {
      opacity: 0.4;
    }
}
@-moz-keyframes pulse {
    0% {
      opacity: 0.4;
    }
    50% {
      opacity: 1;
    }
    100% {
      opacity: 0.4;
    }
}
@-webkit-keyframes pulse {
    0% {
      opacity: 0.4;
    }
    50% {
      opacity: 1;
    }
    100% {
      opacity: 0.4;
    }
}
@-o-keyframes pulse {
    0% {
      opacity: 0.4;
    }
    50% {
      opacity: 1;
    }
    100% {
      opacity: 0.4;
    }
}
@-ms-keyframes pulse {
    0% {
      opacity: 0.4;
    }
    50% {
      opacity: 1;
    }
    100% {
      opacity: 0.4;
    }
}

/*** HOTSPOTS ***/
.hotspot {
    position: absolute;
    z-index: 100;
}
.hotspot-anchor {
    display: block;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #fff;
    padding: 4px;
    border: 3px solid #fff;
    background-clip: content-box;
    transition: 0.3s;
    -webkit-animation: pulse 2s infinite;
    -moz-animation: pulse 2s infinite;
    -o-animation: pulse 2s infinite;
    -ms-animation: pulse 2s infinite;
    animation: pulse 2s infinite;
}
.hotspot-content {
    background: #fff;
    width: 250px;
    padding: 15px;
    border-radius: 20px;
    position: absolute;
    top: -23px;
    left: 40px;
    display: none;
}
.hotspot-content p {
    color: #333;
    margin: 0;
}
/* >> Hotspot - Hover Styles */
.hotspot-anchor:hover {
    -webkit-animation: none;
    -moz-animation: none;
    -o-animation: none;
    -ms-animation: none;
    animation: none;
}
.hotspot-anchor:hover .hotspot-content {
    display: block;
}

/*** INTERACTIVE BROCHURE ANCHOR ***/
#interactive-brochure-anchor {
    display: inline-block;
    padding: 5px 20px 9px;
    position: fixed;
    top: 50vh;
    background: #fff;
    color: #333;
    font-weight: 700 !important;
    z-index: 2000;
    left: -143px;
    width: 325px;
    -webkit-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(270deg);
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
}
#interactive-brochure-anchor.dark-theme {
    background: #333;
    color: #fff;
}
/* >> Interactive Brochure Anchor - Media Queries */
@media only screen and (max-width: 767px) {
    #interactive-brochure-anchor {
        top: auto;
        bottom: 0;
        left: 50%;
        -webkit-transform: rotate(0) translateX(-50%);
        -ms-transform: rotate(0) translateX(-50%);
        transform: rotate(0) translateX(-50%);
    }
    #interactive-brochure-anchor,
    #interactive-brochure-anchor.dark-theme {
        background: #333;
        color: #fff;
    }
}
@media only screen and (max-width: 500px) {
    #interactive-brochure-anchor {
        display: block;
        width: 100%;
        padding-top: 20px;
        padding-bottom: 20px;
    }
}

/*** LUMENOLOGY VIDEO  ***/
#lumenology-video-wrapper {
    background: #333; 
    position: relative;
    z-index: 2;
    padding: 0;
}
#lumenology-video-wrapper .video-container {
    position: relative;
    height: 100vh;
    background: url(/-/media/74DF1F7E534D498AA1C07BAE0B7AFA2F.ashx);
    background-position: bottom center;
    background-size: cover;
}
/* >> Lumenology Video - Video */
#lumenology-video-wrapper .video-container video {
    width: 100%;
    height: 100vh;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: bottom;
    object-position: bottom;
}
/* >> Lumenology Video - Text Overlay */
#lumenology-video-wrapper .text-overlay {
    color: #fff;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    top: 28vh;
    text-align: center;
    z-index: 10;
    width: auto;
    background: rgba(0, 0, 0, 0.3);
    padding: 2rem 4rem;
}
#lumenology-video-wrapper .text-overlay > span {
    font-size: 20px;
    display: block;
    margin-top: 25px;
    letter-spacing: 5px;
}
#lumenology-video-wrapper .text-overlay h1 {
    font-size: 100px;  
    letter-spacing: 5px;
    margin-bottom: 15px;
    font-weight: 700 !important;
    color: #fff;
    margin: 0;
}
#lumenology-video-wrapper .text-overlay h2 {
    text-align: center;
    font-size: 35px;
    color: #fff;
    letter-spacing: 5px;
    font-weight: 500 !important;
    margin-top: 0;
}
#lumenology-video-wrapper .text-overlay > span.expanded {
    margin-top: 0;
    margin-bottom: 25px;
}
#lumenology-video-wrapper .text-overlay > span:last-of-type {
    position: relative;
    top: 170px;
}
/* >> Lumenology Video - Media Queries */
@media only screen and (max-width: 1100px) {
    #lumenology-video-wrapper .text-overlay h1 {
        font-size: 70px;
    }
    #lumenology-video-wrapper .text-overlay h2 {
        font-size: 30px;
    }
    #lumenology-video-wrapper .text-overlay > span {
        font-size: 18px;
    }
}
@media only screen and (max-width: 991px) {
    #lumenology-video-wrapper .text-overlay {
        top: 30vh; 
        padding-bottom:0; 
    }
    #lumenology-video-wrapper .text-overlay > span {
        letter-spacing: 5px;
    }
    #lumenology-video-wrapper .text-overlay > span:last-of-type {
        top: 70px;
    }      
}
@media only screen and (max-width: 767px) {
    #lumenology-video-wrapper .text-overlay h1 {
        font-size: 50px;
    }
    #lumenology-video-wrapper .text-overlay h2 {
        font-size: 25px;
    }
    #lumenology-video-wrapper .text-overlay {
        width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }
}
@media only screen and (max-width: 600px) {
    #lumenology-video-wrapper .text-overlay h1 {
        font-size: 40px;
    }
    #lumenology-video-wrapper .text-overlay h2 {
        font-size: 22px;
    }
    #lumenology-video-wrapper .text-overlay > span {
        font-size: 17px;
        letter-spacing: 2px; 
    }
    #lumenology-video-wrapper .text-overlay > span:last-of-type {
        top: 50px;
    } 
}
/* >> Lumenology Video - iMac 4K */
@media only screen and (min-width: 2500px) and (-webkit-min-device-pixel-ratio: 2) and (min-resolution: 192dpi) {
    #lumenology-video-wrapper .text-overlay {
        width: auto;
    }
    #lumenology-video-wrapper .text-overlay h1 {
        font-size: 125px;
    }
    #lumenology-video-wrapper .text-overlay h2 {
        font-size: 50px;
    }
    #lumenology-video-wrapper .text-overlay > span {
        font-size: 35px;
    }
}
/* >> Lumenology Video - iPhone 6, 6S, 7, 8 */
@media only screen and (device-width: 375px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait) {
    #lumenology-video-wrapper .text-overlay {
        top: 22vh;
    } 
    #lumenology-video-wrapper .text-overlay h1 {
        font-size: 43px;
    }
    #lumenology-video-wrapper .text-overlay > span {
        font-size: 15px;
    }
}
/* >> Lumenology Video - iPhone 5, 5C, 5S, SE */
@media only screen and (device-width: 320px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait) {
    #lumenology-video-wrapper .text-overlay {
        top: 22vh;
    }    
    #lumenology-video-wrapper .text-overlay h1 {
        font-size: 35px;
        margin-left: -4vw;
    }
    #lumenology-video-wrapper .text-overlay h2 {
        font-size: 20px;
    }
    #lumenology-video-wrapper .text-overlay > span {
        font-size: 15px;
    }
    #lumenology-video-wrapper .text-overlay > span:last-of-type {
        top: 20px;
    }      
}

/*** PATTERN INTRO ***/
#pattern-intro-wrapper {
    position: relative;
    /* top: -2px; */
    padding: 0;
}
/* >> Pattern Intro - Slideshow */
#pattern-intro-slideshow-wrapper .cycle-slideshow {
    width: 100%;  
    height: 100vh;
}
#pattern-intro-slideshow-wrapper .slide {
    width: inherit;
    height: inherit;
    min-height: inherit;
    position: relative;
}
#pattern-intro-slide-1 .background,
#pattern-intro-slide-2 .background,
#pattern-intro-slide-3 .background,
#pattern-intro-slide-4 .background {
    width: 100%;
    height: 65vh;
    position: absolute;
    top: 0;
    left: 0;
}
#pattern-intro-slide-1 .background {
    background: #bccdd9;
}
#pattern-intro-slide-2 .background {
    background: #e6d3c0;
}
#pattern-intro-slide-3 .background {
    background: #ccbdc8;
}
#pattern-intro-slide-4 .background {
    background: #c6c7b8;
}
#pattern-intro-slideshow-wrapper .plank-images {
    position: relative;
    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-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    top: 11vh;
}
#pattern-intro-slideshow-wrapper img.plank {
    height: 63vh;
    margin: 0 30px;
    position: relative;
}
#pattern-intro-slideshow-wrapper img.plank-2 {
    top: 5vh;
}
#pattern-intro-slideshow-wrapper .slide-content {
    width: 100%;
    position: absolute;
    bottom: 75px;
}
#pattern-intro-slideshow-wrapper .slide-content h1,
#pattern-intro-slideshow-wrapper .slide-content p {
    text-align: center;
    color: #333;
}
#pattern-intro-slideshow-wrapper .slide-content h1 {
    text-transform: uppercase;
    font-size: 80px;
    color: #fff;
    font-weight: bold !important;
    letter-spacing: 15px;
    position: relative;
    top: -23vh;
    margin-bottom: 0.67em;
}
#pattern-intro-slideshow-wrapper .slide-content h2 {
    text-align: center;
    font-size: 40px;
    color: #fff;
    position: relative;
    top: -28vh;
    letter-spacing: 5px;
    font-weight: 500 !important;
}
#pattern-intro-slideshow-wrapper .slide-content p {
    width: 700px;
    margin: 0 auto;  
    font-size: 18px;
}
/* >> Pattern Intro - Media Queries */
/* >> Pattern Intro - iMac 4K */
@media only screen and (min-width: 2500px) and (-webkit-min-device-pixel-ratio: 2) and (min-resolution: 192dpi) {
    #pattern-intro-slideshow-wrapper .slide-content p {
        font-size: 22px;
        width: 1000px;
    }
}
@media only screen and (max-width: 1500px) {
    #pattern-intro-slideshow-wrapper .slide-content h1 {
        font-size: 70px;
    }
}
@media only screen and (max-width: 1400px) {
    #pattern-intro-slideshow-wrapper .slide-content h1 {
        font-size: 60px;
    }
}
@media only screen and (max-width: 1200px) {
    #pattern-intro-slideshow-wrapper .plank-images {
        top: 17vh;
    }
    #pattern-intro-slideshow-wrapper img.plank {
        height: 55vh;
        margin: 0 20px;
    }    
    #pattern-intro-slideshow-wrapper .slide-content h1 {
        font-size: 40px;
    }
    #pattern-intro-slideshow-wrapper .slide-content h2 {
        font-size: 30px;
        top: -26vh;
    }
}

@media only screen and (max-width: 1100px) {
    #pattern-intro-slideshow-wrapper .slide-content p {
        width: 750px;
    }
}
/*ipad pro*/
@media only screen and (width: 1024px) and (-webkit-device-pixel-ratio: 2) {
    #pattern-intro-slideshow-wrapper .slide-content h2 {
        top: -24vh;
    }
}
@media only screen and (max-width: 991px) {
    #pattern-intro-wrapper {
        display: block;  
    }
    #pattern-intro-slideshow-wrapper .slide-content h1 {
        font-size: 35px;
    }
    #pattern-intro-slideshow-wrapper .slide-content p {
        padding: 0 30px;
        width: 700px;
        font-size: 16px;
    }
}
/*ipad 9th gen*/
@media only screen and (width: 810px) and (-webkit-device-pixel-ratio: 2) {
    #pattern-intro-slideshow-wrapper .slide-content h2 {
        top: -25vh;
    }
}
@media only screen and (max-width: 767px) {
    #pattern-intro-slideshow-wrapper .cycle-slideshow {
        height: auto;
        min-height: 100vh;
    }
    #pattern-intro-slide-1 .background,
    #pattern-intro-slide-2 .background,
    #pattern-intro-slide-3 .background,
    #pattern-intro-slide-4 .background {
        height: 50vh;
    }
    #pattern-intro-slideshow-wrapper .plank-images {
        top: 8vh;
    }
    #pattern-intro-slideshow-wrapper img.plank {
        height: 45vh;
        margin: 0 10px;
    }
    #pattern-intro-slideshow-wrapper .slide-content {
        bottom: 120px;
    }
    #pattern-intro-slideshow-wrapper .slide-content h1 {
        font-size: 25px;
        color: #333;
        top: 0;
        letter-spacing: 13px;
    }
    #pattern-intro-slideshow-wrapper .slide-content h2 {
        font-size: 22px;
        color: #333;
        top: -2vh;
    }
    #pattern-intro-slideshow-wrapper .slide-content p {
        font-size: 15px;
        width: 100%;
    }
}
@media only screen and (max-width: 600px) {
    #pattern-intro-slideshow-wrapper .slide-content {
        bottom: 60px;
    }
    #pattern-intro-slideshow-wrapper .slide-content h1 {
        font-size: 20px;
        letter-spacing: 8px;
        top: -1vh;
    }
    #pattern-intro-slideshow-wrapper .slide-content h2 {
        font-size: 18px;
    }
    #pattern-intro-slideshow-wrapper .slide-content p {
        width: 100%;
    }
}

/*iphone 13*/
@media only screen and (max-width: 393px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 3) {
    #pattern-intro-slideshow-wrapper .slide-content {
        bottom: 40px;
    }
}
/* >> Pattern Intro - iPhone 6, 6S, 7, 8 */
@media only screen and (device-width: 375px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait) {
    #pattern-intro-slideshow-wrapper .slide-content {
        bottom: 40px;
    }
    #pattern-intro-slideshow-wrapper .cycle-slideshow {
        height: 108vh;
    }
}
/* >> Pattern Intro - iPhone 5, 5C, 5S, SE */
@media only screen and (device-width: 320px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait) {
    #pattern-intro-slideshow-wrapper .cycle-slideshow {
        height: 122vh;
    }
    #pattern-intro-slideshow-wrapper .slide-content {
        bottom: 40px;
    }
    #pattern-intro-slideshow-wrapper .slide-content h1 {
        font-size: 20px;
        letter-spacing: 4px;
        top: 1vh;
    }
    #pattern-intro-slideshow-wrapper .slide-content h2 {
        font-size: 16px;
        letter-spacing: 2px;
    }
}

/*** DESIGN OVERVIEW ***/
#design-overview-wrapper {
    position: relative;
    /* top: -2px; */
    padding: 0;
    background: #fff;
}
/* >> Design Overview - Slideshow */
#design-overview-slideshow-wrapper .cycle-slideshow {
    width: 100%;  
    height: 100vh;
}
#design-overview-slideshow-wrapper .slide {
    width: inherit;
    height: inherit;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center bottom;
}
#design-overview-slide-1 {
    background-image: url('/-/media/75d84c7bbe964b5fa08fe6fa92c06397.ashx');
}
#design-overview-slide-2 {
    background-image: url('/-/media/b50476b0a67e4d44a29bc9ccc94a49b2.ashx');
}
#design-overview-slide-3 {
    background-image: url('/-/media/ee86b7307f80402ea8ba8791eb207563.ashx');
}
#design-overview-slideshow-wrapper .slide-content {
    width: 750px;
    position: absolute;
    bottom: 80px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}
#design-overview-slideshow-wrapper .slide-content h1,
#design-overview-slideshow-wrapper .slide-content p {
    text-align: center;
    color: #333;
    padding-left: 30px;
    padding-right: 30px;
}
#design-overview-slideshow-wrapper .slide-content p {
    font-size: 18px;
    width: 500px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1em;
}
#design-overview-slideshow-wrapper .slide-content h1 {
    text-transform: none;
    font-weight: bold !important;
    letter-spacing: 4px;
    font-size: 35px;
    margin-bottom: 0.67em;
}
#design-overview-slideshow-wrapper .slide-content a.mlkn-button {
    display: block;
    background: #fff;
    border: 1px solid #fff;
    color: #333;
    text-align: center;
    font-weight: bold;
    width: 310px;
    margin: 0 auto;
    letter-spacing: 1px;
}
/* >> Design Overview - Pager */
#design-overview-slideshow-wrapper .cycle-pager {
    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-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;  
    position: absolute;
    bottom: 50px;
    z-index: 500;
    width: 280px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}
#design-overview-slideshow-wrapper .cycle-pager a {
    width: 80px;
    height: 3px;
    background: #999;
}
#design-overview-slideshow-wrapper .cycle-pager a.cycle-pager-active {
    background: #555;  
}
/* >> Design Overview - Slideshow Controls */
#design-overview-outer-wrapper {
    position: relative;  
}
#design-overview-slideshow-controls {
    display: none;  
    margin: 20px 0;
    text-align: center;
    position: absolute;
    bottom: 29vh;
    width: 100%;
    z-index: 500;
}
#design-overview-slideshow-controls button {
    border-radius: 0;
    border: 1px solid #333;
    background: transparent;
    padding: 15px 23px;
    font-size: 30px;
    color: #333;
}
#design-overview-slideshow-controls button:last-of-type {
    margin-left: 30px;  
}
#design-overview-slideshow-controls button:focus {
    outline: none;
}
/* >> Design Overview - Mobile Images */
#design-overview-slideshow-wrapper .slide .mobile-background {
    display: none;
    width: 100%;
    height: 70vh;
    background-repeat: no-repeat;
    background-size: cover;
    background-position-x: left;
    background-position-y: center;
}
#design-overview-slide-1 .mobile-background {
    background-image: url('/-/media/75d84c7bbe964b5fa08fe6fa92c06397.ashx');
}
#design-overview-slide-2 .mobile-background {
    background-image: url('/-/media/b50476b0a67e4d44a29bc9ccc94a49b2.ashx');
}
#design-overview-slide-3 .mobile-background {
    background-image: url('/-/media/ee86b7307f80402ea8ba8791eb207563.ashx');
}
/* >> Design Overview - Media Queries */
/* >> Design Overview - iMac 4K */
@media only screen and (min-width: 2500px) and (-webkit-min-device-pixel-ratio: 2) and (min-resolution: 192dpi) {
    #design-overview-slideshow-wrapper .slide-content {
        width: 1200px;
    }
    #design-overview-slideshow-wrapper .slide-content h1 {
        font-size: 55px;
    }
    #design-overview-slideshow-wrapper .slide-content p {
        font-size: 22px;
    }
}
@media only screen and (max-width: 1100px) {
    #design-overview-slideshow-wrapper .slide-content {
        width: 600px;
    }
}
@media only screen and (max-width: 991px) {
    #design-overview-slideshow-wrapper .cycle-slideshow,
    #design-overview-slideshow-wrapper .slide {
        height: auto;
        min-height: 100vh;
    }
    #design-overview-slideshow-wrapper .slide-content {
        height: 42vh;
        width: 100%;
        padding: 30px 20px;
        position: static;
        bottom: unset;
        left: unset;
        -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
        transform: translateX(0);
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    #design-overview-slideshow-wrapper .slide-content h1 {
        font-size: 25px;
        margin-top: 60px;
    }    
    #design-overview-slideshow-wrapper .slide-content p {
        font-size: 16px;
    }
    #design-overview-slideshow-wrapper .slide-content a.mlkn-button {
        border: 2px solid #333;
    }
    #design-overview-slideshow-wrapper .cycle-pager {
        display: none;
    }
    #design-overview-slideshow-controls {
        display: block;
    }
    #design-overview-slide-1,
    #design-overview-slide-2,
    #design-overview-slide-3 {
        background-image: none;
    }
    #design-overview-slideshow-wrapper .slide .mobile-background {
        display: block;
    }
}
@media only screen and (max-width: 600px) {
    #design-overview-slideshow-wrapper .slide-content p {
        width: auto;
    }
}
@media only screen and (max-width: 500px) {
    #design-overview-slideshow-wrapper .slide-content p {
        font-size: 15px;
    }
    #design-overview-slideshow-wrapper .slide-content a.mlkn-button {
        width: auto;
        margin: 0;
    }
}

/* >> Design Overview - iPhone 6+, 7+, 8+ */
@media only screen and (device-width: 414px) and (-webkit-device-pixel-ratio: 3) and (orientation: portrait) { 
    #design-overview-slideshow-wrapper .slide-content {
        height: 43vh;
    }
    #design-overview-slideshow-wrapper .slide-content h1 {
        margin-top: 70px;
    }
}
/*iphone 13*/
@media only screen and (max-width: 393px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 3) {
    #design-overview-slideshow-wrapper .slide-content h1, #design-overview-slideshow-wrapper .slide-content p {
        padding-left: 15px;
        padding-right: 15px;
    }
    #design-overview-slideshow-wrapper .slide-content h1 {
        margin-top: 65px;
    }
}
/* >> Design Overview - iPhone 6, 6S, 7, 8 */
@media only screen and (device-width: 375px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait) {
    #design-overview-slideshow-wrapper .slide-content {
        height: 50vh;
    }
    #design-overview-slideshow-wrapper .slide-content h1 {
        margin-top: 60px;
    }
    #design-overview-slideshow-controls {
        bottom: 34vh;
    }
}
/* >> Design Overview - iPhone 5, 5C, 5S, SE */
@media only screen and (device-width: 320px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait) {
    #design-overview-slideshow-wrapper .slide-content {
        height: 57vh;
    }
    #design-overview-slideshow-wrapper .slide-content p {
        padding-left: 0;
        padding-right: 0;
    }
    #design-overview-slideshow-controls {
        bottom: 39vh;
    }
    #design-overview-slideshow-wrapper .slide-content a.mlkn-button {
        letter-spacing: 0;
    }
    #design-overview-slideshow-wrapper .slide-content h1 {
        white-space: nowrap;
    }
}

/* EMBEDDED VIDEO - MainContainer_C011_Col00 */
.embedded-video {
    margin-top: 0 !important;
}
div[title="Play Video"]::before {
    content: "WATCH COLLECTION VIDEO";
    width: 300px;
    display: block;
    text-align: center;
    color: #000;
    background: #fff;
    padding: 10px 15px;
    font-size: 18px;
    font-weight: bold;
    position: absolute;
    top: var(--embeddedVideoButtonTop);
    border-radius: 25px;
    right: -1vw;
}
div[title="Play Video"] svg {
    display: none;
}
#MainContainer_C011_Col00 .video-overlay {
    display: none;
}
#MainContainer_C011_Col00 picture img {
    height: 100vh !important;
}
#MainContainer_C011_Col00, #MainContainer_C011_Col00 section, #MainContainer_C011_Col00 iframe, #MainContainer_C011_Col00 picture img {
    height: 100vh !important;
}
.embedded-video .play-btn__text {
    visibility: hidden !important;
}
/* Media Queries */
@media only screen and (max-width: 1600px) {
    div[title="Play Video"]::before {
        right: -3vw;
    } 
}
@media only screen and (max-width: 1200px) {
    div[title="Play Video"]::before {
        right: -4vw;
    } 
}
@media only screen and (max-width: 991px) {
    div[title="Play Video"]::before {
        margin: 0 -94px;
        right: 0;
    }
}
@media only screen and (max-width: 767px) {
    /* #MainContainer_C011_Col00 picture img {
        content: url(/-/media/139bd25a280341b8a2ecdce6b3e2d83c.ashx);
    } */
    div[title="Play Video"]::before {
        margin: 0 -94px;
    }
}
/*iphone 5, 5c, 5s, se*/
@media only screen and (device-width: 320px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait) {
    div[title="Play Video"]::before {
        margin: 0 -100px;
    }
}

/*** STYLE WITH PERFORMANCE ***/
#style-performance-wrapper {
    height: 100vh;
    background-image: url('/-/media/95798edbc68c47758c02e1305053f099.ashx');
    background-repeat: no-repeat;
    background-size: cover;
    padding: 0;
    position: relative;
    /* top: -2px; */
}
#style-performance-wrapper .row {
    min-height: 100vh;
    /* -- START IE 11 HACK */
    height: 1px;
    /* -- END IE 11 HACK */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}
#style-performance-wrapper [class^="col"] {
    position: relative;
    top: -100px;
}
/* >> Style with Performance - Content */
#style-performance-wrapper .row h1,
#style-performance-wrapper .row p {
    width: 100%;
    max-width: 900px;
    color: #fff;
    text-align: center;
    display: block;
    padding-left: 30px;
    padding-right: 30px;
    margin-left: auto;
    margin-right: auto;
}
#style-performance-wrapper .row h1 {
    font-size: 35px;  
    margin: 20px auto;
    letter-spacing: 4px;
    font-weight: bold !important;
    margin-bottom: 0.67em;
}
#style-performance-wrapper .row p {
    font-size: 18px;
    margin-bottom: 30px;
    width: 700px;
}
#style-performance-wrapper .row a.mlkn-button {
    display: block;
    width: 250px;
    text-align: center;
    background: #fff;
    border: 1px solid #fff;
    color: #333;
    font-weight: bold;
    margin: 0 auto;
    letter-spacing: 1px;
}
/* >> Style with Performance - Hotspots */
#hotspot-1 {
    top: 65%;
    left: 15%;
}
#hotspot-2 {
    top: 40%;
    left: 43%;
}
/* >> Style with Performance - Mobile Content */
#style-performance-mobile-content {
    background: #fff;
    display: none;
    position: relative;
    /* top: -2px; */
}
#style-performance-mobile-content [class^="col"] {
    min-height: 35vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-top: 30px;
    padding-bottom: 30px; 
}
#style-performance-mobile-content h1,
#style-performance-mobile-content p {
    color: #444;
    text-align: center;
}
#style-performance-mobile-content h1 {
    font-weight: bold !important;
    letter-spacing: 4px;
    font-size: 25px;
}
#style-performance-mobile-content p {
    font-size: 16px;
    width: 600px;
    margin-left: auto;
    margin-right: auto;
}
#style-performance-mobile-content a.mlkn-button {
    display: block;
    width: 250px;
    text-align: center;
    background: #fff;
    border: 2px solid #444;
    color: #444;
    font-weight: bold;
    margin: 0 auto;
}
/* >> Style with Performance - Media Queries */
@media only screen and (max-width: 1350px) {
    #style-performance-wrapper .row h1,
    #style-performance-wrapper .row p {
        max-width: 800px
    }
}
@media only screen and (max-width: 1199px) {
    #style-performance-wrapper .row h1,
    #style-performance-wrapper .row p {
        max-width: 700px;
    }
}
@media only screen and (max-width: 991px) {
    #hotspot-1,
    #hotspot-2 {
        display: none;
    }
    #style-performance-wrapper {
        height: 70vh;
        background-position-x: 70%;
        background-position-y: bottom;
    }
    #style-performance-wrapper .row {
        display: none;
    }
    #style-performance-mobile-content {
        display: block;
    }
}
@media only screen and (max-width: 767px) {
    #style-performance-mobile-content p {
        width: 100%;
    }
}
@media only screen and (max-width: 500px) { 
    #style-performance-mobile-content h1 {
        font-size: 23px;
        letter-spacing: 1px;
    }
    #style-performance-mobile-content p {
        font-size: 17px;
    }
    #style-performance-mobile-content a.mlkn-button {
        width: auto;
        margin: 0;
    }
}
/* >> Style with Performance - iMac 4K */
@media only screen and (min-width: 2500px) and (-webkit-min-device-pixel-ratio: 2) and (min-resolution: 192dpi) {
    #style-performance-wrapper .row h1,
    #style-performance-wrapper .row p {
        max-width: 1200px;
    }
    #style-performance-wrapper .row h1 {
        font-size: 55px;
    }
    #style-performance-wrapper .row p {
        font-size: 22px;
    }
}
/* >> Style with Performance - iPhone 6+, 7+, 8+ */
@media only screen and (device-width: 414px) and (-webkit-device-pixel-ratio: 3) and (orientation: portrait) {
    #style-performance-mobile-content p {
        font-size: 15px;
    }
    #style-performance-mobile-content [class^="col"] {
        min-height: 40vh;
    }
}
/* >> Style with  Performance - iPhone 6, 6S, 7, 8 */
@media only screen and (device-width: 375px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait) {
    #style-performance-mobile-content h1 {
        font-size: 19px;
    }
}
/* >> Style with Performance - iPhone 5, 5C, 5S, SE */
@media only screen and (device-width: 320px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait) {
    #style-performance-mobile-content h1 {
        font-size: 17px;
        letter-spacing: 0;
    }
    #style-performance-mobile-content p {
        font-size: 16px;
    }
}

/*** A PRISM OF PAIRINGS ***/
#prism-pairings-wrapper {
    background: #f1f1f1;
    position: relative;
    /* top: -2px; */
    padding: 0;
    height: 100vh;
}
/* >> A Prism of Pairings - Slideshow Container */
#prism-pairings-wrapper .slideshow-container {
    height: 75vh;
    width: 100%;
}
#prism-pairings-wrapper .cycle-slideshow {
    width: 100%;  
    height: 75vh;
}
#prism-pairings-wrapper .cycle-slideshow .slide {
    width: 100%;
    height: 75vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}
/*#prism-pairings-slide-1 {
    background-image: url('/-/media/a3fb9a275cd04bb5a5ca6098b9e12be2.ashx');
}*/
#prism-pairings-slide-1 {
    background-image: url('/-/media/0214c607f02f4ffca56d0a85907f2d4b.ashx');
}
#prism-pairings-slide-2 {
    background-image: url('/-/media/3af90e6b81064780b830a698a2576ffc.ashx');
}
/* >> A Prism of Pairings - Hotspots */
#hotspot-3 {
    top: 20%;
    left: 12%;
}
#hotspot-4 {
    top: 65%;
    right: 30%;
}
#hotspot-5 {
    top: 78%;
    left: 7%;
}
#hotspot-6 {
    top: 25%;
    right: 45%;
}
#hotspot-7 {
    top: 75%;
    right: 17%;
}
#hotspot-8 {
    top: 20%;
    left: 10%;
}
#hotspot-9 {
    top: 15%;
    right: 22%;
}
#hotspot-10 {
    top: 85%;
    right: 18%;
}
/* >> A Prism of Pairings - Pager */
#prism-pairings-slideshow-wrapper .cycle-pager {
    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-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;  
    position: absolute;
    bottom: 30px;
    z-index: 500;
    width: 180px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}
#prism-pairings-slideshow-wrapper .cycle-pager a {
    width: 80px;
    height: 3px;
    background: #aaa;
}
#prism-pairings-slideshow-wrapper .cycle-pager a.cycle-pager-active {
    background: #eee;  
}
/* >> A Prism of Pairings - Slideshow Controls */
#prism-pairings-slideshow-controls {
    display: none;  
    text-align: center;
    position: relative;
    z-index: 2;
    top: 3vh;
}
#prism-pairings-slideshow-controls button {
    border-radius: 0;
    border: 1px solid #333;
    background: transparent;
    padding: 15px 23px;
    font-size: 30px;
    color: #333;
}
#prism-pairings-slideshow-controls button:last-of-type {
    margin-left: 30px;  
}
#prism-pairings-slideshow-controls button:focus {
    outline: none;
}
/* >> A Prism of Pairings - Text Container */
#prism-pairings-wrapper .container {
    height: 25vh;
}
#prism-pairings-wrapper .container .content-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 25vh;
    padding: 15px !important;
}
#prism-pairings-wrapper .container h1 {
    font-weight: bold !important;
    letter-spacing: 5px;
    color: #333;
    text-align: center;
    font-size: 35px;
    margin-bottom: 0.67em;
}
#prism-pairings-wrapper .container p {
    color: #333;
    text-align: center;
    font-size: 18px;
    padding-bottom: 15px;
    width: 750px;
    margin-left: auto;
    margin-right: auto;
}
/* >> A Prism of Pairings - Media Queries */
/* >> A Prism of Pairings - iMac 4K */
@media only screen and (min-width: 2500px) and (-webkit-min-device-pixel-ratio: 2) and (min-resolution: 192dpi) {
    #prism-pairings-wrapper .container h1 {
        font-size: 55px;
    }
    #prism-pairings-wrapper .container p {
        font-size: 22px;
    }
}
@media only screen and (max-width: 1200px) {
    #prism-pairings-wrapper .container p {
        width: auto;
    }
}
@media only screen and (max-width: 991px) {
    #prism-pairings-wrapper {
        height: auto;
        min-height: 100vh;
    }
    #prism-pairings-slideshow-wrapper {
        position: relative;
        z-index: 1;
    }
    #prism-pairings-wrapper .slideshow-container,
    #prism-pairings-wrapper .cycle-slideshow,
    #prism-pairings-wrapper .cycle-slideshow .slide {
        height: 70vh;
    }
    #hotspot-3,
    #hotspot-4,
    #hotspot-5,
    #hotspot-6,
    #hotspot-7,
    #hotspot-8,
    #hotspot-9,
    #hotspot-10 {
        display: none;
    }
    #prism-pairings-slideshow-wrapper .cycle-pager {
        display: none;
    }
    #prism-pairings-slideshow-controls {
        display: block;
    }     
    #prism-pairings-wrapper .container,
    #prism-pairings-wrapper .container .content-wrapper {
        height: auto;
        min-height: 35vh;
    }
    #prism-pairings-wrapper .container h1 {
        margin-top: 50px;
    }
    #prism-pairings-wrapper .container p {
        font-size: 16px;
    }
}
/*ipad 9th gen*/
@media only screen and (width: 810px) and (-webkit-device-pixel-ratio: 2) {
    #prism-pairings-wrapper .container h1 {
        margin-top: 65px;
    }
}
@media only screen and (max-width: 767px) {
    #prism-pairings-wrapper .cycle-slideshow .slide {
        background-position-x: 65%;
    }
    #prism-pairings-wrapper .container h1 {
        margin-top: 70px;
    }
}
@media only screen and (max-width: 500px) {
    #prism-pairings-wrapper .container h1 {
        font-size: 25px;
        margin-top: 90px;
    }
    #prism-pairings-wrapper .container p {
        font-size: 15px;
    }
}

/*iphone 6+, 7+, 8+*/
@media only screen and (device-width: 414px) and (-webkit-device-pixel-ratio: 3) and (orientation: portrait) {
    #prism-pairings-wrapper .container h1 {
        margin-top: 100px;
    }
}
/*iphone 13*/
@media only screen and (max-width: 393px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 3) {
    #prism-pairings-wrapper .container h1 {
        margin-top: 100px;
    }
}
/* >> A Prism of Pairings - iPhone 5, 5C, 5S, SE */
@media only screen and (device-width: 320px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait) {
    #prism-pairings-wrapper .container h1 {
        font-size: 19px;
    }
}

/*** DYNAMIC FLOORSCAPES ***/
#dynamic-floorscapes-wrapper {
    height: 100vh;
    background-image: url('/-/media/16B190E601E54748A8CA4806029B03AB.ashx');
    background-repeat: no-repeat;
    background-size: cover;
    padding: 0;
    position: relative;
    /* top: -2px; */
    background-position-x: center;
}
#dynamic-floorscapes-wrapper .row {
    min-height: 100vh;
    /* -- START IE 11 HACK */
    height: 1px;
    /* -- END IE 11 HACK */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}
#dynamic-floorscapes-wrapper [class^="col"] {
    position: relative;
    top: -65px;
}
/* >> Dynamic Floorscapes - Content */
#dynamic-floorscapes-wrapper .row h1,
#dynamic-floorscapes-wrapper .row p {
    width: 100%;
    max-width: 900px;
    color: #fff;
    text-align: center;
    display: block;
    padding-left: 30px;
    padding-right: 30px;
    margin-left: auto;
    margin-right: auto;
}
#dynamic-floorscapes-wrapper .row h1 {
    font-size: 35px;  
    margin: 20px auto;
    letter-spacing: 4px;
    font-weight: bold !important;
    margin-bottom: 0.67em;
}
#dynamic-floorscapes-wrapper .row p {
    font-size: 18px;
    width: 800px;
}
/* >> Dynamic Floorscapes - Hotspots */
#hotspot-11 {
    top: 81%;
    left: 15%;
}
#hotspot-12 {
    top: 58%;
    right: 36%;
}
/* >> Dynamic Floorscapes - Mobile Content */
#dynamic-floorscapes-mobile-content {
    background: #fff;
    display: none;
    position: relative;
    /* top: -2px; */
}
#dynamic-floorscapes-mobile-content [class^="col"] {
    min-height: 35vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-top: 30px;
    padding-bottom: 30px; 
}
#dynamic-floorscapes-mobile-content h1,
#dynamic-floorscapes-mobile-content p {
    color: #333;
    text-align: center;
}
#dynamic-floorscapes-mobile-content h1 {
    font-weight: bold !important;
    letter-spacing: 4px;
    font-size: 25px;
}
#dynamic-floorscapes-mobile-content p {
    font-size: 16px;
    width: 700px;
}
/* >> Dynamic Floorscapes - Media Queries */
@media only screen and (max-width: 1350px) {
    #dynamic-floorscapes-wrapper .row h1,
    #dynamic-floorscapes-wrapper .row p {
        max-width: 800px
    }
}
@media only screen and (max-width: 1199px) {
    #dynamic-floorscapes-wrapper [class^="col"] {
        top: -40px;
    }
    #dynamic-floorscapes-wrapper .row h1,
    #dynamic-floorscapes-wrapper .row p {
        max-width: 700px;
    }
    #dynamic-floorscapes-wrapper .row p {
        width: 650px;
    }
}
@media only screen and (max-width: 991px) {
    #hotspot-11,
    #hotspot-12 {
        display: none;
    }
    #dynamic-floorscapes-wrapper {
        height: 70vh;
        background-position-y: bottom;
    }
    #dynamic-floorscapes-wrapper .row {
        display: none;
    }
    #dynamic-floorscapes-mobile-content {
        display: block;
    }
    #dynamic-floorscapes-mobile-content [class^="col"]  {
        min-height: initial;
    }
}
@media only screen and (max-width: 767px) {
    #dynamic-floorscapes-mobile-content p {
        width: auto;
    }
}
@media only screen and (max-width: 500px) { 
    #dynamic-floorscapes-mobile-content h1 {
        font-size: 25px;
        letter-spacing: 1px;
    }
    #dynamic-floorscapes-mobile-content p {
        font-size: 17px;
    }
}
/* >> Dynamic Floorscapes - iMac 4K */
@media only screen and (min-width: 2500px) and (-webkit-min-device-pixel-ratio: 2) and (min-resolution: 192dpi) {
    #dynamic-floorscapes-wrapper .row h1,
    #dynamic-floorscapes-wrapper .row p {
        max-width: 1200px;
    }
    #dynamic-floorscapes-wrapper .row h1 {
        font-size: 55px;
    }
    #dynamic-floorscapes-wrapper .row p {
        font-size: 22px;
    }
}
/* >> Dynamic Floorscapes - iPhone 6+, 7+, 8+ */
@media only screen and (device-width: 414px) and (-webkit-device-pixel-ratio: 3) and (orientation: portrait) {
    #dynamic-floorscapes-mobile-content p {
        font-size: 16px;
    }
    #dynamic-floorscapes-mobile-content [class^="col"] {
        min-height: 40vh;
    }
}
/* >> Dynamic Floorscapes - iPhone 6, 6S, 7, 8 */
@media only screen and (device-width: 375px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait) {
    #dynamic-floorscapes-mobile-content h1 {
        font-size: 19px;
    }
}
/* >> Dynamic Floorscapes - iPhone 5, 5C, 5S, SE */
@media only screen and (device-width: 320px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait) {
    #dynamic-floorscapes-mobile-content h1 {
        font-size: 17px;
        letter-spacing: 0;
    }
    #dynamic-floorscapes-mobile-content p {
        font-size: 16px;
    }
}

/*** DIVERSITY OF SPACE ***/
#diversity-space-wrapper {
    background: #f1f1f1;
    position: relative;
    /* top: -2px; */
    padding: 0;
    height: 100vh;
}
/* >> Diversity of Space - Slideshow Container */
#diversity-space-wrapper .slideshow-container {
    height: 75vh;
    width: 100%;
}
#diversity-space-wrapper .cycle-slideshow {
    width: 100%;  
    height: 75vh;
}
#diversity-space-wrapper .cycle-slideshow .slide {
    width: 100%;
    height: 75vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}
#diversity-space-slide-1 {
    background-image: url('/-/media/b4a565ba6bcd4c3ca4eddd175abf3aa6.ashx');
}
#diversity-space-slide-2 {
    background-image: url('/-/media/c68afd740aa24ced9739b74edebc8374.ashx');
}
#diversity-space-slide-3 {
    background-image: url('/-/media/9214e66fb36b476e99fc4cddae88c904.ashx');
}
/* >> Diversity of Space - Hotspots */
#hotspot-13 {
    top: 45%;
    right: 35%;
}
#hotspot-14 {
    top: 25%;
    left: 20%;
}
#hotspot-15 {
    top: 50%;
    right: 50%;
}
#hotspot-16 {
    top: 50%;
    left: 30%;
}
/* >> Diversity of Space - Pager */
#diversity-space-slideshow-wrapper .cycle-pager {
    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-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;  
    position: absolute;
    bottom: 30px;
    z-index: 500;
    width: 280px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}
#diversity-space-slideshow-wrapper .cycle-pager a {
    width: 80px;
    height: 3px;
    background: #ccc;
}
#diversity-space-slideshow-wrapper .cycle-pager a.cycle-pager-active {
    background: #e7e7e7;  
}
/* >> Diversity of Space - Slideshow Controls */
#diversity-space-slideshow-controls {
    display: none;  
    text-align: center;
    position: relative;
    z-index: 2;
    top: 3vh;
}
#diversity-space-slideshow-controls button {
    border-radius: 0;
    border: 1px solid #333;
    background: transparent;
    padding: 15px 23px;
    font-size: 30px;
    color: #333;
}
#diversity-space-slideshow-controls button:last-of-type {
    margin-left: 30px;  
}
#diversity-space-slideshow-controls button:focus {
    outline: none;
}
/* >> Diversity of Space - Text Container */
#diversity-space-wrapper .container {
    height: 25vh;
}
#diversity-space-wrapper .container .content-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 25vh;
    padding: 15px !important;
}
#diversity-space-wrapper .container h1 {
    font-weight: bold !important;
    letter-spacing: 5px;
    color: #444;
    text-align: center;
    font-size: 35px;
}
#diversity-space-wrapper .container p {
    color: #444;
    text-align: center;
    font-size: 18px;
    padding-bottom: 15px;
    width: 815px;
    margin-left: auto;
    margin-right: auto;
}
/* >> Diversity of Space - Media Queries */
@media only screen and (max-width: 1199px) {
    #diversity-space-wrapper .container p {
        width: 550px;
    }
}
@media only screen and (max-width: 991px) {
    #diversity-space-wrapper {
        height: auto;
        min-height: 100vh;
    }
    #diversity-space-slideshow-wrapper {
        position: relative;
        z-index: 1;
    }
    #diversity-space-wrapper .slideshow-container,
    #diversity-space-wrapper .cycle-slideshow,
    #diversity-space-wrapper .cycle-slideshow .slide {
        height: 70vh;
    }
    #hotspot-13,
    #hotspot-14,
    #hotspot-15,
    #hotspot-16 {
        display: none;
    }
    #diversity-space-slideshow-wrapper .cycle-pager {
        display: none;
    }
    #diversity-space-slideshow-controls {
        display: block;
    }     
    #diversity-space-wrapper .container,
    #diversity-space-wrapper .container .content-wrapper {
        height: auto;
        min-height: 35vh;
    }
    #diversity-space-wrapper .container h1 {
        margin-top: 50px;
    }
    #diversity-space-wrapper .container p {
        font-size: 16px;
        width: 500px;
    }
}
/*ipad 9th gen*/
@media only screen and (width: 810px) and (-webkit-device-pixel-ratio: 2) {
    #diversity-space-wrapper .container h1 {
        margin-top: 65px;
    }
}
@media only screen and (max-width: 767px) {
    #diversity-space-wrapper .cycle-slideshow .slide {
        background-position-x: 65%;
    }
    #diversity-space-wrapper .container h1 {
        margin-top: 70px;
    }
}
@media only screen and (max-width: 600px) {
    #diversity-space-wrapper .container p {
        width: 100%;
    }
}
@media only screen and (max-width: 510px) {
    #diversity-space-wrapper .container h1 {
        font-size: 25px;
        margin-top: 90px;
    }
    #diversity-space-wrapper .container p {
        font-size: 15px;
    }
}
@media only screen and (max-width: 500px) { }
/* >> Diversity of Space - iMac 4K */
@media only screen and (min-width: 2500px) and (-webkit-min-device-pixel-ratio: 2) and (min-resolution: 192dpi) {
    #diversity-space-wrapper .container h1 {
        font-size: 55px;
    }
    #diversity-space-wrapper .container p {
        font-size: 22px;
    }
}
/*iphone 6+, 7+, 8+*/
@media only screen and (device-width: 414px) and (-webkit-device-pixel-ratio: 3) and (orientation: portrait) {
    #diversity-space-wrapper .container, #diversity-space-wrapper .container .content-wrapper {
        min-height: 40vh;
    }
}
/* >> Diversity of Space - iPhone 5, 5C, 5S, SE */
@media only screen and (device-width: 320px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait) {
    #diversity-space-wrapper .container h1 {
        font-size: 19px;
        white-space: nowrap;
    }
    #diversity-space-wrapper .container p {
        font-size: 16px;
    }
    #diversity-space-slideshow-controls {
        top: 4vh;
    }
}

/*** COLORLINE ***/
#colorline-wrapper {
    padding-top: 50px;
    padding-bottom: 50px;
}
#colorline-wrapper .container {
    min-height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;    
}
/* >> Colorline - Top Content */
#colorline-wrapper .top-content h1,
#colorline-wrapper .top-content h2,
#colorline-wrapper .top-content p {
    text-align: center;  
    color: #333;
}
#colorline-wrapper .top-content h1 {
    text-transform: none;
    font-size: 35px;
    font-weight: bold !important;
    letter-spacing: 4px;
    margin-bottom: 0;
}
#colorline-wrapper .top-content h2 {
    margin: 12px 0;
}
#colorline-wrapper .top-content p {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1em;
}
#colorline-wrapper a.mlkn-button {
    display: block;
    margin: 0 auto;
    width: 310px;
    text-align: center;
    background: #fff;
    border: 2px solid #333;
    color: #333;
    font-weight: 700 !important;
    letter-spacing: 1px;
}
/* >> Colorline - Slideshow */
#colorline-wrapper .bottom-content {
    margin-top: 50px;  
}
#colorline-slideshow-wrapper .cycle-slideshow {
    width: 100%;  
}
#colorline-slideshow-wrapper .slide {
    width: 100%;  
    position: relative;
}
#colorline-slideshow-wrapper .slide > div:first-of-type {
    margin-top: 0 !important;  
}
#colorline-slideshow-wrapper .slide h2.side-text {
    position: absolute;  
    background: transparent;
    height: 24px;
    margin: 0;
    text-align: center;
    -webkit-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(270deg);
    top: 150px;
    left: -60px;
    display: inline-block;
}
#colorline-slideshow-wrapper .color-row {
    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-pack: center;
    -ms-flex-pack: center;
    justify-content: center;  
    margin-top: 20px;
}
#colorline-slideshow-wrapper .color-tile {
    display: inline-block;
    padding: 7px;
}
#colorline-slideshow-wrapper .color-tile a {
    text-decoration: none;
}
#colorline-slideshow-wrapper .color-tile img {
    width: 100px;
}
#colorline-slideshow-wrapper .color-tile p {
    color: #333;
    text-transform: uppercase;
    font-size: 12px;
    line-height: 1.2em;
    margin: 0;
}
#colorline-slideshow-wrapper .color-tile p:first-of-type {
    margin-top: 5px;  
}
/* >> Colorline - Pager */
#colorline-slideshow-wrapper .cycle-pager {
      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-pack: space-evenly;
      -ms-flex-pack: space-evenly;
      justify-content: space-evenly;
      width: 260px;
      margin: 50px auto 0;
}
#colorline-slideshow-wrapper .cycle-pager a {
    width: 71px;
    height: 3px;
    background: #b1b1b1;
}
#colorline-slideshow-wrapper .cycle-pager a.cycle-pager-active {
    background: #777;  
}
/* >> Colorline Tablet - Slideshow */
#colorline-tablet-outer-wrapper {
    display: none;
}
#colorline-tablet-slideshow-wrapper .cycle-slideshow {
    width: 100%;  
}
#colorline-tablet-slideshow-wrapper .slide {
    width: 100%;  
    position: relative;
}
#colorline-tablet-slideshow-wrapper .slide > div:first-of-type {
    margin-top: 0 !important;  
}
#colorline-tablet-slideshow-wrapper .slide h2.side-text {
    position: absolute;  
    background: transparent;
    height: 24px;
    margin: 0;
    text-align: center;
    -webkit-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(270deg);
    top: 150px;
    left: -60px;
    display: inline-block;
}
#colorline-tablet-slideshow-wrapper .color-row {
    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-pack: center;
    -ms-flex-pack: center;
    justify-content: center;  
    margin-top: 20px;
}
#colorline-tablet-slideshow-wrapper .color-tile {
    display: inline-block;
    width: 9%;
    padding: 7px;
}
#colorline-tablet-slideshow-wrapper .color-tile a {
    text-decoration: none;
}
#colorline-tablet-slideshow-wrapper .color-tile img {
    width: 80px;
}
#colorline-tablet-slideshow-wrapper .color-tile p {
    color: #333;
    text-transform: uppercase;
    font-size: 12px;
    line-height: 1.2em;
    margin: 0;
}
#colorline-tablet-slideshow-wrapper .color-tile p:first-of-type {
    margin-top: 5px;  
}
/* >> Colorline Tablet - Pager */
#colorline-tablet-slideshow-wrapper .cycle-pager {
      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-pack: space-evenly;
      -ms-flex-pack: space-evenly;
      justify-content: space-evenly;
      width: 530px;
      margin: 50px auto 0;
}
#colorline-tablet-slideshow-wrapper .cycle-pager a {
    width: 71px;
    height: 3px;
    background: #b1b1b1;
}
#colorline-tablet-slideshow-wrapper .cycle-pager a.cycle-pager-active {
    background: #777;  
}
/* >> Colorline Tablet - Slideshow Controls */
#colorline-tablet-slideshow-controls {
    display: none;  
    margin: 20px 0;
    text-align: center;
}
#colorline-tablet-slideshow-controls button {
    border-radius: 0;
    border: 1px solid #333;
    background: #fff;
    padding: 15px 23px;
    font-size: 30px;
    color: #333;
}
#colorline-tablet-slideshow-controls button:last-of-type {
    margin-left: 30px;  
}
#colorline-tablet-slideshow-controls button:focus {
    outline: none;
}
/* >> Colorline Mobile - Slideshow */
#colorline-mobile-outer-wrapper {
    display: none;
}
#colorline-mobile-slideshow-wrapper .cycle-slideshow {
    width: 100%;  
}
#colorline-mobile-slideshow-wrapper .slide {
    width: 100%;  
    position: relative;
}
#colorline-mobile-slideshow-wrapper .slide > div:first-of-type {
    margin-top: 0 !important;  
}
#colorline-mobile-slideshow-wrapper .slide h2.side-text {
    position: absolute;  
    background: transparent;
    height: 24px;
    margin: 0;
    text-align: center;
    -webkit-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(270deg);
    top: 150px;
    left: -60px;
    display: inline-block;
}
#colorline-mobile-slideshow-wrapper .color-row {
    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-pack: center;
    -ms-flex-pack: center;
    justify-content: center;  
    margin-top: 20px;
}
#colorline-mobile-slideshow-wrapper .color-tile {
    display: inline-block;
    width: 15%;
    padding: 7px;
}
#colorline-mobile-slideshow-wrapper .color-tile a {
    text-decoration: none;
}
#colorline-mobile-slideshow-wrapper .color-tile img {
    width: 80px;
}
#colorline-mobile-slideshow-wrapper .color-tile p {
    color: #333;
    text-transform: uppercase;
    font-size: 12px;
    line-height: 1.2em;
    margin: 0;
}
#colorline-mobile-slideshow-wrapper .color-tile p:first-of-type {
    margin-top: 5px;  
}
/* >> Colorline Mobile - Slideshow Controls */
#colorline-mobile-slideshow-controls {
    margin: 20px 0;
    text-align: center;
}
#colorline-mobile-slideshow-controls button {
    border-radius: 0;
    border: 1px solid #333;
    background: #fff;
    padding: 15px 23px;
    font-size: 30px;
    color: #333;
}
#colorline-mobile-slideshow-controls button:last-of-type {
    margin-left: 30px;  
}
#colorline-mobile-slideshow-controls button:focus {
    outline: none;
}

/* >> Colorline - Media Queries */
@media only screen and (max-width: 1700px) {
    #colorline-slideshow-wrapper .color-tile img {
        width: 80px;
    }
}
@media only screen and (max-width: 1400px) {
    #colorline-wrapper .container {
        min-height: initial;
    }
    #colorline-outer-wrapper {
        display: none;
    }
    #colorline-tablet-outer-wrapper {
        display: block;
    }
}
@media only screen and (max-width: 1199px) {
    #colorline-tablet-slideshow-wrapper .color-tile {
        width: 11%;
    }
}
@media only screen and (max-width: 991px) {
    #colorline-tablet-slideshow-wrapper .cycle-pager {
        display: none;  
    }
    #colorline-tablet-slideshow-controls {
        display: block;  
    }
    #colorline-tablet-slideshow-wrapper .color-tile {
        width: 13%;
    }
    #colorline-wrapper .top-content h1 {
        margin-top: 50px;
    }
    #colorline-wrapper .bottom-content {
        margin-bottom: 75px;
    }
}
@media only screen and (max-width: 767px) {
    #colorline-wrapper {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    #colorline-wrapper .container {
        min-height: 0;
    }
    #colorline-wrapper .top-content h1 {
        margin-top: 0;
    }
    #colorline-tablet-outer-wrapper {
        display: none;
    }
    #colorline-mobile-outer-wrapper {
        display: block;
    }
}
@media only screen and (max-width: 700px) {
    #colorline-mobile-slideshow-wrapper .color-tile {
        width: 17%;
    }  
}
@media only screen and (max-width: 650px) {
    #colorline-mobile-slideshow-wrapper .color-tile {
        width: 19%;
    }
    #colorline-mobile-slideshow-wrapper .color-tile p {
        display: none;
    }
}
@media only screen and (max-width: 600px) {
    #colorline-mobile-slideshow-wrapper .color-tile {
        width: 21%;
    }
}
@media only screen and (max-width: 500px) {
    #colorline-mobile-slideshow-wrapper .color-row {
        -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
        justify-content: space-evenly;
    }
    #colorline-mobile-slideshow-wrapper .color-tile {
        width: 25%;
    }
    #colorline-mobile-slideshow-wrapper .color-tile img {
        width: 60px;
    }
    #colorline-wrapper a.mlkn-button {
        width: auto;
    }
    #colorline-wrapper .bottom-content {
        margin-bottom: 0;
    }
}
/* >> Colorline - iMac 4K */
@media only screen and (min-width: 2500px) and (-webkit-min-device-pixel-ratio: 2) and (min-resolution: 192dpi) {
    #colorline-wrapper .top-content h1 {
        font-size: 45px;
    }
    #colorline-wrapper .top-content p {
        font-size: 22px;
    }
    #colorline-wrapper a.mlkn-button {
        font-size: 20px;
        width: 400px;
        padding: 10px 15px;
    }
}
/* >> Colorline - iPhone 6+, 7+, 8+ */
@media only screen and (device-width: 414px) and (-webkit-device-pixel-ratio: 3) and (orientation: portrait) { 
    #colorline-wrapper .top-content h2 {
        font-size: 18px;
        white-space: nowrap;
    }
}
/* >> Colorline - iPhone 6, 6S, 7, 8 */
@media only screen and (device-width: 375px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait) {
    #colorline-wrapper .top-content h2 {
        font-size: 16px;
    }
}
/* >> Colorline - iPhone 5, 5C, 5S, SE */
@media only screen and (device-width: 320px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait) {
    #colorline-wrapper .top-content h2 {
        font-size: 13px;
    }
    #colorline-wrapper .top-content p {
        font-size: 15px;
    }
    #colorline-mobile-slideshow-wrapper .color-tile img {
        width: 50px;
    }
    #colorline-wrapper a.mlkn-button {
        letter-spacing: -0.15px;
    }
}

/*** MY ROOM TOOL ***/
#my-room-tool-wrapper {
    height: 100vh;
    background-image: url('/-/media/6367d73f48604877844fc6a024d53654.ashx');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom center;
    position: relative;
    /* top: -2px; */
}
#my-room-tool-wrapper .row {
    min-height: 100vh;
    /* -- START IE 11 HACK */
    height: 1px;
    /* -- END IE 11 HACK */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
/* >> My Room Tool - Content */
#my-room-tool-wrapper b,
#my-room-tool-wrapper h1,
#my-room-tool-wrapper p {
    width: 100%;
    color: #fff;
    text-align: center;
    display: block;
    padding-left: 20px;
    padding-right: 20px;
}
#my-room-tool-wrapper h1 {
    text-transform: none;  
}
#my-room-tool-wrapper b {
    font-size: 30px;  
}
#my-room-tool-wrapper h1 {
    font-size: 50px;  
    margin: 20px 0;
    letter-spacing: 4px;
}
#my-room-tool-wrapper p {
    font-size: 18px;
}
#my-room-tool-wrapper .buttons {
    text-align: center;  
    margin-top: 40px;
}
#my-room-tool-wrapper a.mlkn-button {
    width: 300px;
    background: #fff;
    border: 1px solid #fff;
    text-align: center;
    color: #333;
    font-weight: 700 !important;
    letter-spacing: 1px;
}
#my-room-tool-wrapper .buttons a:last-of-type {
    margin-left: 30px;  
}  
/* >> My Room Tool - Media Queries */
@media only screen and (max-width: 1399px) {
    #my-room-tool-wrapper h1 {
        font-size: 40px;  
    }
}
@media only screen and (max-width: 1199px) {
    #my-room-tool-wrapper h1 {
        font-size: 30px;  
    }
}
@media only screen and (max-width: 1099px) {
    #my-room-tool-wrapper a.mlkn-button {
        width: 260px;  
    }
}
@media only screen and (max-width: 991px) {
    #my-room-tool-wrapper .row [class^="col"] {
        margin-bottom: 15vh;
    }
    #my-room-tool-wrapper b {
        font-size: 20px;  
    }
    #my-room-tool-wrapper p {
        font-size: 16px;
    }
    #my-room-tool-wrapper a.mlkn-button {
        display: block;
        margin: 20px auto !important;
        width: 300px;
    }
    #my-room-tool-wrapper .row {
        -webkit-box-pack: flex-end;
        -ms-flex-pack: flex-end;
        justify-content: flex-end; 
    }
}
@media only screen and (max-width: 767px) {
    #my-room-tool-wrapper .row [class^="col"] {
        margin-bottom: 15vh;
    }
    #my-room-tool-wrapper h1 {
        font-size: 35px;  
    }
}
@media only screen and (max-width: 500px) {
    #my-room-tool-wrapper h1 {
        font-size: 30px;
        font-weight: 500 !important;
        margin: 10px 0;
    }
    #my-room-tool-wrapper p {
        font-weight: 500 !important;
    }
    #my-room-tool-wrapper a.mlkn-button {
        width: auto;
    }
}
/* >> My Room Tool - iMac 4K */
@media only screen and (min-width: 2500px) and (-webkit-min-device-pixel-ratio: 2) and (min-resolution: 192dpi) {
    #my-room-tool-wrapper .row [class^="col"] {
        margin-bottom: 29vh;
    }
    #my-room-tool-wrapper p {
        font-size: 22px;
    }
    #my-room-tool-wrapper a.mlkn-button {
        font-size: 20px;
        width: 400px;
        padding: 10px 15px;        
    }
}
/* >> My Room Tool - iPhone 6+, 7+, 8+ */
@media only screen and (device-width: 414px) and (-webkit-device-pixel-ratio: 3) and (orientation: portrait) { 
    #my-room-tool-wrapper h1 {
        font-size: 25px;
    }
}
/* >> My Room Tool - iPhone 6, 6S, 7, 8 */
@media only screen and (device-width: 375px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait) {
    #my-room-tool-wrapper h1 {
        font-size: 21px;
    }
}
/* >> My Room Tool - iPhone 5, 5C, 5S, SE */
@media only screen and (device-width: 320px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait) {
    #my-room-tool-wrapper h1 {
        font-size: 18px;  
    }
    #my-room-tool-wrapper p {
        font-size: 15px;
    }
    #my-room-tool-wrapper .row [class^="col"] {
        margin-bottom: 7vh;
    }
}

/*** SHOP NOW ***/
#shop-now-wrapper {
    height: 100vh;
    background-image: url('/-/media/2dbc41b5d856433f83b1526cf1e97501.ashx');
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    /* top: -2px; */
}
#shop-now-wrapper .row {
    min-height: 100vh;
    /* -- START IE 11 HACK -- */
    height: 1px;
    /* -- END IE 11 HACK -- */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
/* >> Shop Now - Content */
#shop-now-wrapper h1,
#shop-now-wrapper p {
    width: 100%;
    color: #fff;
    text-align: center;
    display: block;
    padding-left: 30px;
    padding-right: 30px;
}
#shop-now-wrapper h1 {
    font-size: 100px;  
    letter-spacing: 5px;
    margin-bottom: 15px;
    font-weight: 700 !important;
}
#shop-now-wrapper p {
    font-size: 30px;  
}
#shop-now-wrapper .buttons {
    text-align: center;
    margin-top: 40px;
}
#shop-now-wrapper a.mlkn-button {
    width: 340px;
    background: #fff;
    border: 1px solid #fff;
    text-align: center;
    color: #333;
    font-weight: 700 !important;
    letter-spacing: 1px;
}
#shop-now-wrapper .buttons a:last-of-type {
    margin-left: 30px;  
}
/* >> Shop Now - Media Queries */
/* >> Shop Now - iMac 4K */
@media only screen and (min-width: 2500px) and (-webkit-min-device-pixel-ratio: 2) and (min-resolution: 192dpi) {
    #shop-now-wrapper a.mlkn-button {
        font-size: 20px;
        width: 410px;
        padding: 10px 15px;
        font-weight: 600 !important;
    }
}
@media only screen and (max-width: 991px) {
    #shop-now-wrapper h1 {
        font-size: 70px;  
    }
    #shop-now-wrapper p {
        font-size: 20px;  
    }
    #shop-now-wrapper a.mlkn-button {
        display: block;
        margin: 20px auto !important;
    }
}
@media only screen and (max-width: 767px) {
    #shop-now-wrapper {
        background-position-x: 43%;
    }
    #shop-now-wrapper h1 {
        font-size: 60px;  
    }
}
@media only screen and (max-width: 500px) {
    #shop-now-wrapper h1 {
        font-size: 40px;  
    }
    #shop-now-wrapper a.mlkn-button {
        width: auto;
    }
    #shop-now-wrapper p {
        font-weight: 500 !important; 
    }
}

/* >> Shop Now - iPhone 6, 6S, 7, 8 */
@media only screen and (device-width: 375px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait) {
    #shop-now-wrapper h1 {
        font-size: 35px;
    }
}
/* >> Shop Now - iPhone 5, 5C, 5S, SE */
@media only screen and (device-width: 320px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait) {
    #shop-now-wrapper h1 {
        font-size: 27px;
    }
    #shop-now-wrapper a.mlkn-button {
        letter-spacing: -0.15px;   
    }
}

/*** CREATIVE COLLECTIVE ***/
#creative-collective-wrapper {
    height: 300px;
    background-image: url('/-/media/7b397150333040fbb5c24ebbee8921f4.ashx');
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    position: relative;
    /* top: -2px; */
}
/* >> Creative Collective - Image */
#creative-collective-wrapper img {
    width: 200px;  
    margin-top: 40px;
}
/* >> Creative Collective - Button */
#creative-collective-wrapper a.mlkn-button {
    background: #036;
    border: 1px solid #036;
    text-align: center;
    margin-top: 135px;
    width: 300px;
    color: #fff;
    font-weight: 700 !important;
}
/* >> Creative Collective - Media Queries */
@media only screen and (max-width: 767px) {
    #creative-collective-wrapper .row > div:first-of-type {
        text-align: center;  
    }
    #creative-collective-wrapper .row > div:first-of-type img {
        margin: 20px auto 0;  
        width: 150px;
    }
    #creative-collective-wrapper a.mlkn-button {
        display: block;
        margin: 30px auto 0;
    }
}
@media only screen and (max-width: 500px) {
    #creative-collective-wrapper a.mlkn-button {
        width: 100%;
    }
}
/* >> Creative Collective - iMac 4K */
@media only screen and (min-width: 2500px) and (-webkit-min-device-pixel-ratio: 2) and (min-resolution: 192dpi) {
    #creative-collective-wrapper a.mlkn-button {
        font-size: 20px;
    }
}

/*** SUSTAINABILITY OVERVIEW ***/
#sustainability-overview-wrapper {
    background: #343233;
    position: relative;
    /* top: -2px; */
}
#sustainability-overview-wrapper .container {
    padding-top: 50px;
    padding-bottom: 50px;
}
#sustainability-overview-wrapper [class^="col"] {
    padding-left: 30px;
    padding-right: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 295px;
}
/* >> Sustainability Overview - Content */
#sustainability-overview-wrapper h2,
#sustainability-overview-wrapper p {
    color: #fff;
}
#sustainability-overview-wrapper h2 {
    text-transform: none;  
}
/* >> Sustainability Overview - Image */
#sustainability-overview-wrapper img {
    width: 100%;
}
/* >> Sustainability Overview - Media Queries */
@media only screen and (max-width: 991px) {
    #sustainability-overview-wrapper [class^="col"] {
        height: auto;
    }
}
/* >> Sustainability Overview - iMac 4K */
@media only screen and (min-width: 2500px) and (-webkit-min-device-pixel-ratio: 2) and (min-resolution: 192dpi) {
    #sustainability-overview-wrapper h2 {
        font-size: 32px; 
    }
    #sustainability-overview-wrapper p {
        font-size: 20px;
    }
}