/*** BODY ***/
body {
    position: relative;  
}
footer {
    margin-top: -2px;
}
.embedded-video.container-fluid {
    margin-top: 0;
}
main {
    overflow-x: hidden;
}
/*** HEADINGS ***/
h1 {
    font-size: 37px;  
}

/*** NAVBAR CIRCLES ***/
#navbar-circles {
    position: fixed;
    right: 1vw;
    top: 15vh;
    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;
    height: 15px;
}
#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: -210px;
    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="#gb-video-wrapper"]::before {
    content: "Grain + Bias";
}
#navbar-circles a[href="#dlux-video-wrapper"]::before {
    content: "D/LUX";
}
#navbar-circles a[href="#pattern-intro-wrapper"]::before {
    content: "Pattern Intro";
}
#navbar-circles a[href="#handspun-wrapper"]::before {
    content: "Handspun";
}
#navbar-circles a[href="#needlework-wrapper"]::before {
    content: "Needlework";
}
#navbar-circles a[href="#burnout-wrapper"]::before {
    content: "Burnout";
}
#navbar-circles a[href="#pattern-coordination-wrapper"]::before {
    content: "Pattern Coordination";
}
#navbar-circles a[href="#bespoke-workspaces-wrapper"]::before {
    content: "Bespoke Workspaces";
}
#navbar-circles a[href="#individual-spaces-wrapper"]::before {
    content: "Individual Spaces";
}
#navbar-circles a[href="#color-wrapper"]::before {
    content: "Color";
}
#navbar-circles a[href="#floorscapes-wrapper"]::before {
    content: "Floorscapes";
}
#navbar-circles a[href="#coordination-wrapper"]::before {
    content: "Coordination";
}
#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::before, #navbar-circles li > a.active:focus::before, #navbar-circles li > a.active:hover::before, #navbar-circles li:hover > a::before {
    display: inline-block;
}
#navbar-circles li > a.active, 
#navbar-circles li > a.active:focus, 
#navbar-circles li > a.active:hover {
    background: #fff;
}
#navbar-circles li.active > a::before,
#navbar-circles li.active > a:focus::before,
#navbar-circles li.active > a:hover::before {
    display: inline-block;
}
/*  >> Nav Circles - Dark Theme */
#navbar-circles.dark-theme > a {
    color: #000;  
}
#navbar-circles.dark-theme li a {
    border: 2px solid #000;
}
#navbar-circles.dark-theme a::before {
    color: #000;
}
#navbar-circles.dark-theme li > a.active,
#navbar-circles.dark-theme li > a.active:focus,
#navbar-circles.dark-theme li > a.active:hover {
    background: #000;
}
/* >> 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;
}
.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: #000;
    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: #000;
    font-weight: 700 !important;
    z-index: 2000;
    left: -106px;
    width: 250px;
    -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;
}
#interactive-brochure-anchor.dark-theme {
    background: #303030;
    color: #fff;
}
/* >> Interactive Brochure Anchor - Media Queries */
@media only screen and (max-width: 767px) {
    #interactive-brochure-anchor {
        top: auto;
        bottom: 0px;
        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: #000;
        color: #fff;
    }
}
@media only screen and (max-width: 500px) {
    #interactive-brochure-anchor {
        display: block;
        width: 100%;
        padding-top: 20px;
        padding-bottom: 20px;
    }
}

/*** GRAIN + BIAS VIDEO  ***/
#gb-video-wrapper {
    background: #000; 
    position: relative;
    z-index: 2;
    padding: 0;
}
#gb-video-wrapper .video-container {
    position: relative;
    height: 100vh;
}
/* >> Grain + Bias Video - Video */
#gb-video-wrapper .video-container video {
    width: 100%;
    height: 100vh;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: bottom;
    object-position: bottom;
}
/* >> Grain + Bias Video - Text Overlay */
#gb-video-wrapper .text-overlay {
    color: #fff;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    top: 32vh;
    text-align: center;
    z-index: 10;
}
#gb-video-wrapper .text-overlay > span {
    font-size: 20px;
    display: block;
    margin-top: 25px;
    letter-spacing: 5px;
}
#gb-video-wrapper .text-overlay h1 {
    font-size: 80px;  
    letter-spacing: 5px;
    margin-bottom: 15px;
    font-weight: 600 !important;
    color: #fff;
    margin: 0;
}
#gb-video-wrapper .text-overlay h1 span {
    color: #f2cd51;
}
#gb-video-wrapper .text-overlay > span.expanded {
    margin-top: 0;
    margin-bottom: 25px;
}
/* >> Grain + Bias Video - Media Queries */
/* >> iMac 4K */
@media only screen and (min-width: 2500px) and (-webkit-min-device-pixel-ratio: 2) and (min-resolution: 192dpi) {
    #gb-video-wrapper .text-overlay h1 {
        font-size: 125px;
    }
    #gb-video-wrapper .text-overlay > span {
        font-size: 35px;
    }
}
@media only screen and (max-width: 1100px) {
    #gb-video-wrapper .text-overlay h1 {
        font-size: 70px;
    }
    #gb-video-wrapper .text-overlay > span {
        font-size: 18px;
    }
}
@media only screen and (max-width: 991px) {
    #gb-video-wrapper .text-overlay {
        top: 30vh;  
    }
    #gb-video-wrapper .text-overlay h1 {
        font-size: 50px;
    }
    #gb-video-wrapper .text-overlay > span {
        letter-spacing: 5px;
    }       
}
@media only screen and (max-width: 767px) {
    #gb-video-wrapper .text-overlay {
        width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }
}
@media only screen and (max-width: 600px) {
    #gb-video-wrapper .text-overlay > span {
        font-size: 17px;
        letter-spacing: 2px; 
    }
}

/* >> Grain + Bias Video - iPhone 6, 6S, 7, 8 */
@media only screen and (device-width: 375px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait) {   
    #gb-video-wrapper .text-overlay h1 {
        font-size: 43px;
    }
    #gb-video-wrapper .text-overlay > span {
        font-size: 15px;
    }
}
/* >> Grain + Bias Video - iPhone 5, 5C, 5S, SE */
@media only screen and (device-width: 320px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait) {
    #gb-video-wrapper .text-overlay h1 {
        font-size: 35px;
    }
    #gb-video-wrapper .text-overlay > span {
        font-size: 15px;
    }
}

.embedded-video .play-btn__text {
    display: none !important;
}

/*** D/LUX ***/
#d-lux-wrapper {
    position: relative;
    /*top: -2px;*/
    padding: 0;
    background: #555;
}
#d-lux-wrapper .container {
    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;
}
#d-lux-wrapper .container h1 {
    font-weight: bold !important;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    font-size: 35px;
}
div[title="Play Video"]::before {
    content: "WATCH VIDEO";
    width: 300px;
    display: block;
    text-align: center;
    color: #000;
    background: #fff;
    padding: 10px 15px;
    font-size: 18px;
    font-weight: bold;
    position: relative;
    /* top: 290px; */
    right: 50px;
}
div[title="Play Video"] svg {
    display: none;
}
#dlux-video-wrapper .video-overlay {
    display: none;
}
div[title="Play Video"]::before {
    top: var(--dluxButtonTop);
    /* right: 110px; */
    /* left: var(--dluxButtonLeft); */
}
#dlux-video-wrapper picture img {
    height: 100vh !important;
}
#dlux-video-wrapper, #dlux-video-wrapper section, #dlux-video-wrapper iframe, #dlux-video-wrapper picture img {
    height: 100vh !important;
}
/* D/LUX MEDIA QUERIES */
@media only screen and (max-width: 991px) {
    div[title="Play Video"]::before {
        right: 102px;
    }
}
@media only screen and (max-width: 767px) {
    #dlux-video-wrapper picture img {
        content: url(/-/media/0c5b10613f7a451c94519e6b9269adf4.ashx);
    }
    div[title="Play Video"]::before {
        right: 95px;
    }
}/*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 {
        right: 100px;
    }
}

/*** PATTERN INTRO ***/
#pattern-intro-wrapper {
    position: relative;
    padding: 0;
    min-height: 100vh;
    /*top: -2px;*/
}
/* >> Pattern Intro - Slideshow */
#pattern-intro-slideshow-wrapper .cycle-slideshow {
    width: 1186px;  
    height: 77vh;
    margin-left: auto;
    margin-right: auto;
}
#pattern-intro-slideshow-wrapper .slide {
    width: inherit;
    height: inherit;
    min-height: inherit;
}
#pattern-intro-slideshow-wrapper img.base-image {
    position: relative;
    z-index: 2;
    display: block;
    height: 73vh;
    width: 1186px;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    margin: 0 auto;
}
#pattern-intro-slideshow-wrapper img.overlay-image {
    position: absolute;
    top: 50%;
    left: 0;
    z-index: 2;
    width: 300px;
    height: 300px;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
/* >> Pattern Intro - Content */
#pattern-intro-wrapper .content {
    height: 23vh;
    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;
}
#pattern-intro-wrapper .content h1,
#pattern-intro-wrapper .content p {
    text-align: center;
    color: #000;
}
#pattern-intro-wrapper .content h1 {
    text-transform: uppercase;
    font-size: 35px;
    color: #555;
    font-weight: bold !important;
    letter-spacing: 4px;
}
#pattern-intro-wrapper .content h1 span {
    color: #f2cd51;
}
#pattern-intro-wrapper .content p {
    max-width: 900px;
    margin: 0 auto;
    font-size: 18px;
}
/* >> Pattern Intro - Mobile Product Name */
#pattern-intro-slideshow-wrapper div.product-name {
    display: none;
    width: 100%;
    padding: 10px 20px;
    color: #000;
    background: #fff;
    opacity: 0.8;
    position: absolute;
    top: 55.5vh;
    z-index: 500;
    padding-left: 45px;
    font-weight: 600 !important;
}
/* >> Pattern Intro - Pager */
#pattern-intro-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: -10px;
    z-index: 500;
    width: 275px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}
#pattern-intro-slideshow-wrapper .cycle-pager a {
    width: 80px;
    height: 3px;
    background: #ddd;
}
#pattern-intro-slideshow-wrapper .cycle-pager a.cycle-pager-active {
    background: #777;  
}
/* >> Pattern Intro - Slideshow Controls */
#pattern-intro-outer-wrapper {
    position: relative;  
}
#pattern-intro-slideshow-controls {
    display: none;  
    margin: 20px 0;
    text-align: center;
    position: absolute;
    bottom: -20px;
    width: 100%;
    z-index: 500;
}
#pattern-intro-slideshow-controls button {
    border-radius: 0;
    border: 1px solid #777;
    background: transparent;
    padding: 15px 23px;
    font-size: 30px;
    color: #777;
}
#pattern-intro-slideshow-controls button:last-of-type {
    margin-left: 30px;  
}
#pattern-intro-slideshow-controls button:focus {
    outline: none;
}
/* >> Pattern Intro - Media Queries */
@media only screen and (max-width: 1600px) {
    #pattern-intro-slideshow-wrapper .cycle-slideshow,
    #pattern-intro-slideshow-wrapper img.base-image {
        width: 1000px;
    }
    #pattern-intro-slideshow-wrapper img.overlay-image {
        width: 250px;
        height: 250px;
    }
}
@media only screen and (max-width: 1400px) {
    #pattern-intro-slideshow-wrapper .cycle-slideshow,
    #pattern-intro-slideshow-wrapper img.base-image {
        width: 800px;
    }
    #pattern-intro-slideshow-wrapper .cycle-slideshow {
        height: 69vh;
    }
    #pattern-intro-slideshow-wrapper img.base-image {
        height: 65vh;
    }
    #pattern-intro-slideshow-wrapper img.overlay-image {
        width: 200px;
        height: 200px;
    }
}
@media only screen and (max-width: 1300px) {
    #pattern-intro-slideshow-wrapper .cycle-slideshow {
        height: 64vh;
    }
    #pattern-intro-slideshow-wrapper img.base-image {
        height: 60vh;
    }
    #pattern-intro-wrapper .content {
        height: 28vh;
    }
}
@media only screen and (max-width: 1200px) {
    #pattern-intro-slideshow-wrapper .cycle-slideshow,
    #pattern-intro-slideshow-wrapper img.base-image {
        width: 700px;
    }
    #pattern-intro-slideshow-wrapper .cycle-slideshow {
        height: 59vh;
    }
    #pattern-intro-slideshow-wrapper img.base-image {
        height: 55vh;
    }
}
@media only screen and (max-width: 1100px) {
    #pattern-intro-slideshow-wrapper .cycle-slideshow {
        height: 54vh;
    }
    #pattern-intro-slideshow-wrapper img.base-image {
        height: 50vh;
    }
}
@media only screen and (max-width: 991px) {
    #pattern-intro-wrapper {
        display: block;  
    }
    #pattern-intro-slideshow-wrapper .cycle-slideshow {
        height: 73vh;
        width: 100%
    }
    #pattern-intro-slideshow-wrapper img.base-image {
        height: 60vh;
        width: 100%;
    }
    #pattern-intro-slideshow-wrapper img.overlay-image {
        display: none;
    }
    #pattern-intro-slideshow-wrapper div.product-name {
        display: block;
    }    
    #pattern-intro-slideshow-wrapper .cycle-pager {
        display: none;  
    }
    #pattern-intro-slideshow-controls {
        display: block;
    }
    #pattern-intro-wrapper .content {
        min-height: 20vh;
        padding-top: 30px;
        padding-bottom: 30px;
    }
    #pattern-intro-wrapper .content h1,
    #pattern-intro-wrapper .content p {
        padding-left: 20px;
        padding-right: 20px;
    }
    #pattern-intro-wrapper .content h1 {
        font-size: 30px;
    }
    #pattern-intro-wrapper .content p {
        font-size: 16px;
    }
}
@media only screen and (max-width: 767px) {
    #pattern-intro-wrapper .content h1 {
        font-size: 25px;
    }
    #pattern-intro-wrapper .content p {
        font-size: 15px;
    }
    #pattern-intro-slideshow-wrapper div.product-name {
        padding-left: 20px;
    }   
}
@media only screen and (max-width: 600px) {
    #pattern-intro-wrapper .content h1 {
        font-size: 20px;
    }
    #pattern-intro-wrapper .content p {
        width: 100%;
    }
}
/* >> Pattern Intro - iMac 4K */
@media only screen and (min-width: 2500px) and (-webkit-min-device-pixel-ratio: 2) and (min-resolution: 192dpi) {
    #pattern-intro-wrapper .content p {
        font-size: 22px;
    }
}
/* >> 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 div.product-name {
        top: 54.5vh;
    } 
    #pattern-intro-wrapper .content {
        height: 35vh;
    }
}
/* >> 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 div.product-name {
        top: 53.5vh;
    } 
    #pattern-intro-slideshow-controls {
        bottom: -35px;
    }
    #pattern-intro-wrapper .content {
        min-height: 45vh;
    }
    #pattern-intro-wrapper .content h1 {
        font-size: 15px;
    }
    #pattern-intro-wrapper .content p {
        font-size: 13px;
    }
}

/*** HANDSPUN ***/
#handspun-wrapper {
    position: relative;
    /*top: -2px;*/
    padding: 0;
    background: #212121;
}
/* >> Handspun - Columns */
#handspun-wrapper .row > div {
    height: 100vh;
    position: relative;
}
#handspun-wrapper .row > div:last-of-type {
    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;
}
/* >> Handspun - Image */
#handspun-wrapper .row > div:first-of-type {
    background-image: url('/-/media/049e3cd4c0404187b278496e4fdf7936.ashx');
    background-repeat: no-repeat;
    background-size: cover;
}
/* >> Handspun - Content */
#handspun-wrapper .content {
    margin-left: 100px;
}
#handspun-wrapper .content h1,
#handspun-wrapper .content p {
    color: #fff;
    text-align: center;
}
#handspun-wrapper .content h1 {
    font-weight: 600 !important;
    letter-spacing: 5px;
}
#handspun-wrapper .content p {
    font-size: 18px;
}
#handspun-wrapper a.mlkn-button {
    color: #000;
    background: #fff;
    border: 1px solid #fff;
    display: block;
    margin: 0 auto;
    margin-top: 30px;
    text-align: center;
    max-width: 275px;
    font-weight: 700 !important;
}
/* >> Handspun - Hotspot */
#hotspot-1 {
    top: 60%;
    left: 30%;
}
/* >> Handspun - Media Queries */
@media only screen and (max-width: 1199px) {
    #handspun-wrapper .row > div {
        height: auto;
    }
    #handspun-wrapper .row > div:first-of-type {
        height: 60vh;
    }
    #handspun-wrapper .row > div:last-of-type {
        min-height: 40vh;
        padding-top: 20px;
        padding-bottom: 20px;
    }
    #handspun-wrapper .content {
        max-width: 700px;
        margin: 0 auto;
        padding-left: 20px;
        padding-right: 20px;
    }
}
@media only screen and (max-width: 767px) {
    #handspun-wrapper .content p {
        font-size: 13px;
    }
}
/* >> Handspun - iMac 4K */
@media only screen and (min-width: 2500px) and (-webkit-min-device-pixel-ratio: 2) and (min-resolution: 192dpi) {
    #handspun-wrapper .content p {
        font-size: 22px;
    }
}

/*** NEEDLEWORK ***/
#needlework-wrapper {
    position: relative;
    /*top: -2px;*/
    padding: 0;
    background: #212121;
}
/* >> Needlework - Columns */
#needlework-wrapper .row > div {
    height: 100vh;
}
#needlework-wrapper .row > div:last-of-type {
    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;
}
/* >> Needlework - Image */
#needlework-wrapper .row > div:first-of-type {
    background-image: url('/-/media/0bccade6fd734e2bae72a7361ddee240.ashx');
    background-repeat: no-repeat;
    background-size: cover;
}
/* >> Needlework - Content */
#needlework-wrapper .content {
    margin-left: 100px;
}
#needlework-wrapper .content h1,
#needlework-wrapper .content p {
    color: #fff;
    text-align: center;
}
#needlework-wrapper .content h1 {
    font-weight: 600 !important;
    letter-spacing: 5px;
}
#needlework-wrapper .content p {
    font-size: 18px;
}
#needlework-wrapper a.mlkn-button {
    color: #000;
    background: #fff;
    border: 1px solid #fff;
    display: block;
    margin: 0 auto;
    margin-top: 30px;
    text-align: center;
    max-width: 275px;
    font-weight: 700 !important;
}
/* >> Needlework - Hotspot */
#hotspot-2 {
    top: 60%;
    left: 30%;
}
/* >> Needlework - Media Queries */
@media only screen and (max-width: 1199px) {
    #needlework-wrapper .row > div {
        height: auto;
    }
    #needlework-wrapper .row > div:first-of-type {
        height: 60vh;
    }
    #needlework-wrapper .row > div:last-of-type {
        min-height: 40vh;
        padding-top: 20px;
        padding-bottom: 20px;
    }
    #needlework-wrapper .content {
        max-width: 700px;
        margin: 0 auto;
        padding-left: 20px;
        padding-right: 20px;
    }
    #hotspot-2 {
        top: 40%;
    }
}
@media only screen and (max-width: 767px) {
    #needlework-wrapper .content p {
        font-size: 14px;
    }
}
/* >> Needlework - iMac 4K */
@media only screen and (min-width: 2500px) and (-webkit-min-device-pixel-ratio: 2) and (min-resolution: 192dpi) {
    #needlework-wrapper .content p {
        font-size: 23px;
    }
}

/*** BURNOUT ***/
#burnout-wrapper {
    position: relative;
    /*top: -2px;*/
    padding: 0;
    background: #212121;
}
/* >> Burnout - Columns */
#burnout-wrapper .row > div {
    height: 100vh;
}
#burnout-wrapper .row > div:last-of-type {
    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;
}
/* >> Burnout - Image */
#burnout-wrapper .row > div:first-of-type {
    background-image: url('/-/media/4d344d81e3e745adb9cf8cb6dc17e128.ashx');
    background-repeat: no-repeat;
    background-size: cover;
}
/* >> Burnout - Content */
#burnout-wrapper .content {
    margin-left: 100px;
}
#burnout-wrapper .content h1,
#burnout-wrapper .content p {
    color: #fff;
    text-align: center;
}
#burnout-wrapper .content h1 {
    font-weight: 600 !important;
    letter-spacing: 5px;
}
#burnout-wrapper .content p {
    font-size: 18px;
}
#burnout-wrapper a.mlkn-button {
    color: #000;
    background: #fff;
    border: 1px solid #fff;
    display: block;
    margin: 0 auto;
    margin-top: 30px;
    text-align: center;
    max-width: 275px;
    font-weight: 700 !important;
}
/* >> Burnout - Hotspot */
#hotspot-3 {
    top: 30%;
    left: 30%;
}
/* >> Burnout - Media Queries */
@media only screen and (max-width: 1199px) {
    #burnout-wrapper .row > div {
        height: auto;
    }
    #burnout-wrapper .row > div:first-of-type {
        height: 60vh;
    }
    #burnout-wrapper .row > div:last-of-type {
        min-height: 40vh;
        padding-top: 20px;
        padding-bottom: 20px;
    }
    #burnout-wrapper .content {
        max-width: 700px;
        margin: 0 auto;
        padding-left: 20px;
        padding-right: 20px;
    }
}
@media only screen and (max-width: 767px) {
    #burnout-wrapper .content p {
        font-size: 13px;
    }
}
/* >> Burnout - iMac 4K */
@media only screen and (min-width: 2500px) and (-webkit-min-device-pixel-ratio: 2) and (min-resolution: 192dpi) {
    #burnout-wrapper .content p {
        font-size: 22px;
    }
}

/*** PATTERN COORDINATION ***/
#pattern-coordination-wrapper {
    height: 100vh;
    background-image: url('/-/media/2c0795629081423183504cec30c16fc7.ashx');
    background-repeat: no-repeat;
    background-size: cover;
    padding: 0;
    position: relative;
    /*top: -2px;*/
    background-position-x: 75%;
}
#pattern-coordination-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;
}
#pattern-coordination-wrapper [class^="col"] {
    position: relative;
    top: -100px;
}
/* >> Pattern Coordination - Content */
#pattern-coordination-wrapper .row h1,
#pattern-coordination-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;
}
#pattern-coordination-wrapper .row h1 {
    font-size: 35px;  
    margin: 20px auto;
    letter-spacing: 4px;
    font-weight: bold !important;
}
#pattern-coordination-wrapper .row p {
    font-size: 18px;
}
/* >> Pattern Coordination - Hotspots */
#hotspot-4 {
    top: 30%;
    left: 20%;
}
#hotspot-5 {
    top: 10%;
    right: 38%;
}
#hotspot-6 {
    top: 20%;
    right: 20%;
}
/* >> Pattern Coordination - Mobile Content */
#pattern-coordination-mobile-content {
    background: #000;
    display: none;
    position: relative;
    /*top: -2px;*/
}
#pattern-coordination-mobile-content [class^="col"] {
    min-height: 30vh;
    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; 
}
#pattern-coordination-mobile-content h1,
#pattern-coordination-mobile-content p {
    color: #fff;
    text-align: center;
}
#pattern-coordination-mobile-content h1 {
    font-weight: bold !important;
    letter-spacing: 4px;
    font-size: 25px;
}
#pattern-coordination-mobile-content p {
    font-size: 16px;
}
/* >> Pattern Coordination - Media Queries */
@media only screen and (max-width: 1199px) {
    #pattern-coordination-wrapper .row h1,
    #pattern-coordination-wrapper .row p {
        max-width: 800px;
    }
}
@media only screen and (max-width: 767px) {
    #pattern-coordination-wrapper {
        height: 70vh;
    }
    #pattern-coordination-wrapper .row {
        display: none;
    }
    #pattern-coordination-mobile-content {
        display: block;
    }
    #hotspot-4 {
        left: 6%;
    }
    #hotspot-6 {
        right: 6%;
    }
}
/*ipad 9th gen*/
@media only screen and (width: 810px) and (-webkit-device-pixel-ratio: 2) {
    #hotspot-4 {
        left: 7%;
    }
    #hotspot-5 {
        right: 50%;
    }
}
@media only screen and (max-width: 500px) { 
    #pattern-coordination-mobile-content h1 {
        font-size: 20px;
        letter-spacing: 1px;
    }
}
/* >> Pattern Coordination - iMac 4K */
@media only screen and (min-width: 2500px) and (-webkit-min-device-pixel-ratio: 2) and (min-resolution: 192dpi) {
    #pattern-coordination-wrapper .row p {
        font-size: 22px;
    }
}
/* >> Pattern Coordination - iPhone 6+, 7+, 8+ */
@media only screen and (device-width: 414px) and (-webkit-device-pixel-ratio: 3) and (orientation: portrait) { 
    #pattern-coordination-mobile-content p {
        font-size: 15px;
    }
}
/* >> Floorscapes - iPhone 6, 6S, 7, 8 */
@media only screen and (device-width: 375px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait) {   
    #pattern-coordination-mobile-content h1 {
        font-size: 19px;
    }
}
/* >> Pattern Coordination - iPhone 5, 5C, 5S, SE */
@media only screen and (device-width: 320px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait) {
    #pattern-coordination-mobile-content h1 {
        font-size: 17px;
        letter-spacing: 0;
    }
}

/*** BESPOKE WORKSPACES ***/
#bespoke-workspaces-wrapper {
    position: relative;
    /*top: -2px;*/
    padding: 0;
}
/* >> Bespoke Workspaces - Slideshow */
#bespoke-workspaces-slideshow-wrapper .cycle-slideshow {
    width: 100%;  
    height: 100vh;
}
#bespoke-workspaces-slideshow-wrapper .slide {
    width: inherit;
    height: inherit;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center bottom;
}
#bespoke-workspaces-slide-1 {
    background-image: url('/-/media/9a13906e89344cc282c603ebdd6505cd.ashx');
}
#bespoke-workspaces-slide-2 {
    background-image: url('/-/media/98b77222e11a4eab9df2eec603e855b5.ashx');
}
#bespoke-workspaces-slide-3 {
    background-image: url('/-/media/1b97cdc3d73342b29987d47987e0362b.ashx');
}
#bespoke-workspaces-slideshow-wrapper .slide-content {
    width: 750px;
    position: absolute;
    bottom: 80px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}
#bespoke-workspaces-slideshow-wrapper .slide-content h1,
#bespoke-workspaces-slideshow-wrapper .slide-content p {
    text-align: center;
    color: #fff;
    padding-left: 20px;
    padding-right: 20px;
}
#bespoke-workspaces-slideshow-wrapper .slide-content p {
    font-size: 18px;
}
#bespoke-workspaces-slideshow-wrapper .slide-content h1 {
    text-transform: none;
    font-weight: bold !important;
    letter-spacing: 4px;
    font-size: 35px;
}
/* >> Bespoke Workspaces - Pager */
#bespoke-workspaces-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; 
    position: absolute;
    bottom: 230px;
    z-index: 500;
    width: 330px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%); 
    transform: translateX(-50%);
}
#bespoke-workspaces-slideshow-wrapper .cycle-pager a {
    width: 100px;
    height: 100px;
    background-size: cover !important;
    background-color: transparent;
    background-repeat: no-repeat;
}
#bespoke-workspaces-slideshow-wrapper .cycle-pager a:first-of-type {
    background-image: url('/-/media/1493b795fb7c43909e427a9091ccf91f.ashx');
}
#bespoke-workspaces-slideshow-wrapper .cycle-pager a:nth-of-type(2) {
    background-image: url('/-/media/ac89c82d9b76472f855cccc15ba5a808.ashx');
}
#bespoke-workspaces-slideshow-wrapper .cycle-pager a:last-of-type {
    background-image: url('/-/media/b936a5f42bcb41aeb4f6ddab90355bed.ashx');
}
#bespoke-workspaces-slideshow-wrapper .cycle-pager a:first-of-type.cycle-pager-active {
    background-image: url('/-/media/b681a8d9c34c466e909f04fe9b96baf6.ashx');
}
#bespoke-workspaces-slideshow-wrapper .cycle-pager a:nth-of-type(2).cycle-pager-active {
    background-image: url('/-/media/ec8324abfb914a31a73b12df3af82aca.ashx');
}
#bespoke-workspaces-slideshow-wrapper .cycle-pager a:last-of-type.cycle-pager-active {
    background-image: url('/-/media/c6238521a24d4137b7f96670ee4ad65f.ashx');
}
/* >> Bespoke Workspaces - Mobile Content */
#bespoke-workspaces-mobile-content {
    background: #000;
    display: none;
    position: relative;
    /*top: -2px;*/
}
#bespoke-workspaces-mobile-content [class^="col"] {
    min-height: 30vh;
    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; 
}
#bespoke-workspaces-mobile-content h1,
#bespoke-workspaces-mobile-content p {
    color: #fff;
    text-align: center;
}
#bespoke-workspaces-mobile-content h1 {
    font-weight: bold !important;
    letter-spacing: 4px;
    font-size: 25px;
}
#bespoke-workspaces-mobile-content p {
    font-size: 16px;
}
/* >> Bespoke Workspaces - Media Queries */
@media only screen and (max-width: 991px) {
    #bespoke-workspaces-slideshow-wrapper .slide-content {
        max-width: 800px;
        width: 100%;
    }
    #bespoke-workspaces-slideshow-wrapper .slide-content h1 {
        font-size: 30px;
    }
}
@media only screen and (max-width: 767px) {
    #bespoke-workspaces-slideshow-wrapper .cycle-slideshow {
        height: 70vh;
    }
    #bespoke-workspaces-slideshow-wrapper .slide-content {
        display: none;
    }
    #bespoke-workspaces-mobile-content {
        display: block;
    }
    #bespoke-workspaces-slideshow-wrapper .cycle-pager {
        width: 250px;
        bottom: 30px;
    }
    #bespoke-workspaces-slideshow-wrapper .cycle-pager a {
        width: 70px;
        height: 70px;
    }
}
@media only screen and (max-width: 500px) {
    #bespoke-workspaces-mobile-content h1 {
        font-size: 20px;
    }
}
/* >> Bespoke Workspaces - iMac 4K */
@media only screen and (min-width: 2500px) and (-webkit-min-device-pixel-ratio: 2) and (min-resolution: 192dpi) {
    #bespoke-workspaces-slideshow-wrapper .slide-content p {
        font-size: 22px;
    }
}
/* >> Bespoke Workspaces - iPhone 5, 5C, 5S, SE */
@media only screen and (device-width: 320px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait) {
    #bespoke-workspaces-mobile-content h1 {
        font-size: 17px;
    }
}

/*** INDIVIDUAL SPACES ***/
#individual-spaces-wrapper {
    position: relative;
    /*top: -2px;*/
    background: #fff;
    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;
    padding-left: 0;
    padding-right: 0;
}
#individual-spaces-wrapper .container {
    padding-left: 0;
    padding-right: 0;
}
/* >> Individual Spaces - Slideshow */
#individual-spaces-slideshow-wrapper {
      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;  
}
#individual-spaces-slideshow-wrapper .cycle-slideshow {
    display: inline-block; 
    width: 1000px;
}
#individual-spaces-slideshow-wrapper .cycle-slideshow .slide {
    position: relative;  
}
#individual-spaces-slideshow-wrapper .cycle-slideshow img.main {
    width: 1000px;
}
#individual-spaces-slideshow-wrapper .cycle-slideshow img.overlay {
    position: absolute;
    width: 175px;
    height: 175px;
    z-index: 100;
    bottom: auto;
}
#individual-spaces-slide-1 img.overlay,
#individual-spaces-slide-3 img.overlay {
    left: auto;
    right: 0;
    -webkit-transform: translateX(50%);
    -ms-transform: translateX(50%);
    transform: translateX(50%);
}
#individual-spaces-slide-2 img.overlay {
    right: auto;
    left: 0;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}
#individual-spaces-overlay-1,
#individual-spaces-overlay-3,
#individual-spaces-overlay-5 {
    top: 100px;
}
#individual-spaces-overlay-2,
#individual-spaces-overlay-4,
#individual-spaces-overlay-6 {
    top: 300px;
}
/* >> Individual Spaces - Pager */
#individual-spaces-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;  
      width: 28%;
      margin: 50px auto 0;
}
#individual-spaces-slideshow-wrapper .cycle-pager a {
    width: 29%;
    height: 3px;
    background: #ddd;
}
#individual-spaces-slideshow-wrapper .cycle-pager a.cycle-pager-active {
    background: #777;  
}  
/* >> Individual Spaces - Slideshow Controls */
#individual-spaces-slideshow-controls {
    display: none;  
    margin: 50px 0 20px;
    text-align: center;
}
#individual-spaces-slideshow-controls button {
    border-radius: 0;
    border: 1px solid #fff;
    background: #000;
    padding: 15px 23px;
    font-size: 30px;
    color: #fff;
}
#individual-spaces-slideshow-controls button:last-of-type {
    margin-left: 30px;  
}
#individual-spaces-slideshow-controls button:focus {
    outline: none;
}
/* >> Individual Spaces - Content */
#individual-spaces-wrapper .content {
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 50px;
    margin-top: 50px;
}
#individual-spaces-wrapper .content h1,
#individual-spaces-wrapper .content p {
    text-align: center;
    color: #555;
}
#individual-spaces-wrapper .content h1 {
    text-transform: uppercase;
    font-weight: bold !important;
    letter-spacing: 4px;
    font-size: 35px;
    color: #555;
}
#individual-spaces-wrapper .content h1 span {
    color: #f2cd51;
}
#individual-spaces-wrapper .content p {
    font-size: 18px;
    margin: 0 auto;
    max-width: 750px;
    padding-left: 20px;
    padding-right: 20px;
}
/* >> Individual Spaces - Media Queries */
@media only screen and (max-width: 1400px) {
    #individual-spaces-slideshow-wrapper .cycle-slideshow,
    #individual-spaces-slideshow-wrapper .cycle-slideshow img.main {
        width: 800px;
    }
    #individual-spaces-slideshow-wrapper .cycle-slideshow img.overlay {
        width: 125px;
        height: 125px;
    }
    #individual-spaces-overlay-2,
    #individual-spaces-overlay-4,
    #individual-spaces-overlay-6 {
        top: 250px;
    }
}
@media only screen and (max-width: 1200px) {
    #individual-spaces-slideshow-wrapper .cycle-slideshow,
    #individual-spaces-slideshow-wrapper .cycle-slideshow img.main {
        width: 700px;
    }
    #individual-spaces-slideshow-wrapper .cycle-slideshow img.overlay {
        width: 100px;
        height: 100px;
    }
    #individual-spaces-overlay-1,
    #individual-spaces-overlay-3,
    #individual-spaces-overlay-5 {
        top: 125px;
    }
}
@media only screen and (max-width: 1199px) {
    #individual-spaces-wrapper .content h1 {
      font-size: 30px;  
    }
}
@media only screen and (max-width: 1100px) {
    #individual-spaces-slideshow-wrapper .cycle-slideshow,
    #individual-spaces-slideshow-wrapper .cycle-slideshow img.main {
      width: 600px;
    }
    #individual-spaces-overlay-1,
    #individual-spaces-overlay-3,
    #individual-spaces-overlay-5 {
        top: 75px;
    }
    #individual-spaces-overlay-2,
    #individual-spaces-overlay-4,
    #individual-spaces-overlay-6 {
        top: 200px;
    }
}

@media only screen and (max-width: 991px) {
    #individual-spaces-wrapper {
        min-height: 0;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        background: #000;
    }
    #individual-spaces-wrapper .content h1,
    #individual-spaces-wrapper .content p {
        color: #fff;
    }
    #individual-spaces-wrapper .content h1 {
        color: #fff;
    }
    #individual-spaces-slideshow-wrapper .cycle-slideshow,
    #individual-spaces-slideshow-wrapper .cycle-slideshow img.main {
      width: 100vw;
    }
    #individual-spaces-slideshow-wrapper .cycle-slideshow {
        height: 46vh;
    }
    #individual-spaces-slideshow-wrapper .cycle-slideshow img.main {
        height: 50vh;
        -o-object-fit: cover;
        object-fit: cover;
    }
    #individual-spaces-slide-1 img.main {
        -o-object-position: 20%;
        object-position: 20%;
    }
    #individual-spaces-slideshow-wrapper .cycle-slideshow img.overlay {
        display: none;
    }
    #individual-spaces-slideshow-wrapper .cycle-pager {
      display: none;  
    }
    #individual-spaces-slideshow-controls {
      display: block;  
    }
    #individual-spaces-wrapper .content {
        margin-top: 0;
    }
    #individual-spaces-wrapper .content h1 {
      margin-top: 0;  
      font-size: 25px;
    }
    #individual-spaces-wrapper .content p {
        font-size: 16px;
    }
}
/* >> Individual Spaces - iMac 4K */
@media only screen and (min-width: 2500px) and (-webkit-min-device-pixel-ratio: 2) and (min-resolution: 192dpi) {
    #individual-spaces-wrapper .content p {
        font-size: 23px;
    }
}
/*ipad 9th gen*/
@media only screen and (width: 810px) and (-webkit-device-pixel-ratio: 2) {
    #individual-spaces-slideshow-controls {
        margin: 80px 0 20px;
    }
}
@media only screen and (max-width: 500px) {
    #individual-spaces-wrapper .content h1 {
        font-size: 20px; 
        padding-left: 10px;
        padding-right: 10px;
    }
}
/*iphone 13 pro max*/
@media only screen and (max-width: 428px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 3) {
    #individual-spaces-slideshow-controls {
        margin: 80px 0 20px;
    }
}
/* >> Individual Spaces - iPhone 5, 5C, 5S, SE */
@media only screen and (device-width: 320px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait) {
    #individual-spaces-wrapper .content p {
        font-size: 14px;
    }
}

/*** COLOR ***/
#color-wrapper {
    position: relative;
    /*top: -2px;*/
    padding: 0;
}
/* >> Color - Slideshow */
#color-slideshow-wrapper .cycle-slideshow {
    width: 100%;  
    height: 100vh;
}
#color-slideshow-wrapper .slide {
    width: inherit;
    height: inherit;
    background-repeat: no-repeat;
    background-size: cover;
    background-position-y: bottom;
    background-position-x: 65%;
}
#color-slide-1 {
    background-image: url('/-/media/7ad80d444b6a41aa81594e844ec8ad05.ashx');
}
#color-slide-2 {
    background-image: url('/-/media/b942411fdbab488bba1103cd83873674.ashx');
}
#color-slideshow-wrapper .slide-content {
    width: 900px;
    position: absolute;
    bottom: 80px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}
#color-slideshow-wrapper .slide-content h1,
#color-slideshow-wrapper .slide-content p {
    text-align: center;
    color: #fff;
}
#color-slideshow-wrapper .slide-content p {
    font-size: 18px;
}
#color-slideshow-wrapper .slide-content h1 {
    text-transform: none;
    font-weight: bold !important;
    letter-spacing: 4px;
    font-size: 35px;
}
#color-slideshow-wrapper .slide-content h1 span {
    color: #f2cd51;
}
/* >> Color - Pager */
#color-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; 
    position: absolute;
    bottom: 230px;
    z-index: 500;
    width: 250px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%); 
    transform: translateX(-50%);
}
#color-slideshow-wrapper .cycle-pager a {
    width: 100px;
    height: 100px;
    background-size: cover !important;
    background-color: transparent;
    background-repeat: no-repeat;
}
#color-slideshow-wrapper .cycle-pager a:first-of-type {
    background-image: url('/-/media/ae142978475b41ac874f23b4839f68d8.ashx');
}
#color-slideshow-wrapper .cycle-pager a:last-of-type {
    background-image: url('/-/media/c0cafb265d994a548959cfadda3d41ca.ashx');
}
#color-slideshow-wrapper .cycle-pager a:first-of-type.cycle-pager-active {
    background-image: url('/-/media/c0b8707324834a4fbd5379d2e9153e1b.ashx');
}
#color-slideshow-wrapper .cycle-pager a:last-of-type.cycle-pager-active {
    background-image: url('/-/media/a5ad3c59a61046cca9391c30d849ffa5.ashx');
}
/* >> Color - Mobile Content */
#color-mobile-content {
    background: #000;
    display: none;
    position: relative;
    /*top: -2px;*/
}
#color-mobile-content [class^="col"] {
    min-height: 30vh;
    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; 
}
#color-mobile-content h1,
#color-mobile-content p {
    color: #fff;
    text-align: center;
}
#color-mobile-content h1 {
    font-weight: bold !important;
    letter-spacing: 4px;
    font-size: 25px;
}
#color-mobile-content h1 span {
    color: #f2cd51;
}
#color-mobile-content p {
    font-size: 16px;
}
/* >> Color - Media Queries */
/* >> Color - iMac 4K */
@media only screen and (min-width: 2500px) and (-webkit-min-device-pixel-ratio: 2) and (min-resolution: 192dpi) {
    #color-slideshow-wrapper .slide-content p {
        font-size: 22px;
    }
    #color-slideshow-wrapper .cycle-pager {
        bottom: 280px;
    }
}

/*Keith's Macbook*/
@media only screen and (min-width: 1450px) and (max-width: 1700px) {
    #color-slideshow-wrapper .slide-content {
        bottom: 50px;
    }
}
/*ipad pro*/
@media only screen and (width: 1024px) and (-webkit-device-pixel-ratio: 2) {
    #color-slideshow-wrapper .slide-content {
        bottom: 50px;
    }
}

@media only screen and (max-width: 991px) {
    #color-slideshow-wrapper .slide-content {
        max-width: 800px;
        width: 100%;
    }
    #color-slideshow-wrapper .slide-content h1 {
        font-size: 30px;
    }
}
/*ipad 9th gen*/
@media only screen and (width: 810px) and (-webkit-device-pixel-ratio: 2) {
    #color-slideshow-wrapper .slide-content {
        bottom: 50px;
    }
}
@media only screen and (max-width: 767px) {
    #color-slideshow-wrapper .cycle-slideshow {
        height: 70vh;
    }
    #color-slideshow-wrapper .slide-content {
        display: none;
    }
    #color-mobile-content {
        display: block;
    }
    #color-slideshow-wrapper .cycle-pager {
        width: 175px;
        bottom: 30px;
    }
    #color-slideshow-wrapper .cycle-pager a {
        width: 70px;
        height: 70px;
    }
}
@media only screen and (max-width: 500px) {
    #color-mobile-content h1 {
        font-size: 20px;
    }
}
/* >> Color - iPhone 5, 5C, 5S, SE */
@media only screen and (device-width: 320px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait) {
    #color-slideshow-wrapper .cycle-pager {
        bottom: 250px;
    }
}

/*** FLOORSCAPES ***/
#floorscapes-wrapper {
    position: relative;
    /*top: -2px;*/
    padding: 0;
    background: #000;
}
/* >> Floorscapes - Slideshow */
#floorscapes-slideshow-wrapper .cycle-slideshow {
    width: 100%;  
    height: 100vh;
}
#floorscapes-slideshow-wrapper .slide {
    width: inherit;
    height: inherit;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center bottom;
}
#floorscapes-slide-1 {
    background-image: url('/-/media/9e3abfdfbfea4df49eed06dd1016aa53.ashx');
}
#floorscapes-slide-2 {
    background-image: url('/-/media/9899479e73e045939dc1e860865e5695.ashx');
}
#floorscapes-slide-3 {
    background-image: url('/-/media/04d2f36070a64f98b32eaa181c1dda16.ashx');
}
#floorscapes-slide-4 {
    background-image: url('/-/media/49d5bd90acc642069b5ab18c62bbf1f3.ashx');
}
#floorscapes-slideshow-wrapper .slide-content {
    width: 750px;
    position: absolute;
    bottom: 80px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}
#floorscapes-slideshow-wrapper .slide-content h1,
#floorscapes-slideshow-wrapper .slide-content p {
    text-align: center;
    color: #fff;
    padding-left: 30px;
    padding-right: 30px;
}
#floorscapes-slideshow-wrapper .slide-content p {
    font-size: 18px;
}
#floorscapes-slideshow-wrapper .slide-content h1 {
    text-transform: none;
    font-weight: bold !important;
    letter-spacing: 4px;
    font-size: 35px;
}
/* >> Floorscapes - Pager */
#floorscapes-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: 375px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}
#floorscapes-slideshow-wrapper .cycle-pager a {
    width: 80px;
    height: 3px;
    background: #aaa;
}
#floorscapes-slideshow-wrapper .cycle-pager a.cycle-pager-active {
    background: #eee;  
}
/* >> Floorscapes - Slideshow Controls */
#floorscapes-outer-wrapper {
    position: relative;  
}
#floorscapes-slideshow-controls {
    display: none;  
    margin: 20px 0;
    text-align: center;
    position: absolute;
    bottom: 200px;
    width: 100%;
    z-index: 500;
}
#floorscapes-slideshow-controls button {
    border-radius: 0;
    border: 1px solid #eee;
    background: transparent;
    padding: 15px 23px;
    font-size: 30px;
    color: #eee;
}
#floorscapes-slideshow-controls button:last-of-type {
    margin-left: 30px;  
}
#floorscapes-slideshow-controls button:focus {
    outline: none;
}
/* >> Floorscapes - Mobile Content */
#floorscapes-mobile-content {
    background: #000;
    display: none;
    position: relative;
    /*top: -2px;*/
}
#floorscapes-mobile-content [class^="col"] {
    min-height: 30vh;
    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; 
}
#floorscapes-mobile-content h1,
#floorscapes-mobile-content p {
    color: #fff;
    text-align: center;
}
#floorscapes-mobile-content h1 {
    font-weight: bold !important;
    letter-spacing: 4px;
    font-size: 25px;
}
#floorscapes-mobile-content p {
    font-size: 17px;
}
/* >> Floorscapes - Media Queries */
@media only screen and (max-width: 991px) {
    #floorscapes-slideshow-wrapper .slide-content {
        width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }
    #floorscapes-slideshow-wrapper .cycle-pager {
        display: none;
    }
    #floorscapes-slideshow-controls {
        display: block;
    }
}
@media only screen and (max-width: 767px) {
    #floorscapes-slideshow-wrapper .cycle-slideshow {
        height: 70vh;
    }
    #floorscapes-slideshow-wrapper .slide-content {
        display: none;
    }
    #floorscapes-mobile-content {
        display: block;
    }
    #floorscapes-slideshow-controls {
        bottom: 30px;
        margin: 20px 0 0;
    }
}
@media only screen and (max-width: 500px) {
    #floorscapes-mobile-content h1 {
        font-size: 20px;
    }
}
/* >> Floorscapes - iMac 4K */
@media only screen and (min-width: 2500px) and (-webkit-min-device-pixel-ratio: 2) and (min-resolution: 192dpi) {
    #floorscapes-slideshow-wrapper .slide-content p {
        font-size: 22px;
    }
}
/* >> Floorscapes - iPhone 6, 6S, 7, 8 */
@media only screen and (device-width: 375px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait) {   
    #floorscapes-mobile-content h1 {
        font-size: 19px;
    }
}
/* >> iPhone 5, 5C, 5S, SE */
@media only screen and (device-width: 320px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait) {
    #floorscapes-mobile-content h1 {
        font-size: 17px;
        letter-spacing: 1px;
    }    
    #floorscapes-mobile-content p {
        font-size: 15px;
    }
}

/*** COORDINATION ***/
#coordination-wrapper {
    position: relative;
    /*top: -2px;*/
    padding: 0;
}
/* >> Coordination - Slideshow */
#coordination-slideshow-wrapper .cycle-slideshow {
    width: 100%;  
    height: 100vh;
}
#coordination-slideshow-wrapper .slide {
    width: inherit;
    height: inherit;
    background-repeat: no-repeat;
    background-size: cover;
    background-position-y: bottom;
    background-position-x: 65%;
}
#coordination-slide-1 {
    background-image: url('/-/media/136df9b321ee4b69a756d40b274b94ec.ashx');
}
#coordination-slide-2 {
    background-image: url('/-/media/46fea92e8f87460ba8ff7f3b779a7a36.ashx');
}
#coordination-slideshow-wrapper .slide-content {
    width: 750px;
    position: absolute;
    bottom: 80px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}
#coordination-slideshow-wrapper .slide-content h1,
#coordination-slideshow-wrapper .slide-content p {
    text-align: center;
    color: #fff;
    padding-left: 20px;
    padding-right: 20px;
}
#coordination-slideshow-wrapper .slide-content p {
    font-size: 18px;
}
#coordination-slideshow-wrapper .slide-content h1 {
    text-transform: none;
    font-weight: bold !important;
    letter-spacing: 4px;
    font-size: 35px;
}
/* >> Coordination - Hotspots */
#hotspot-7,
#hotspot-9 {
    top: 75%;
    left: 20%;
}
#hotspot-8,
#hotspot-10 {
    top: 55%;
    right: 20%;
}
/* >> Coordination - Pager */
#coordination-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: 180px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}
#coordination-slideshow-wrapper .cycle-pager a {
    width: 80px;
    height: 3px;
    background: #aaa;
}
#coordination-slideshow-wrapper .cycle-pager a.cycle-pager-active {
    background: #eee;  
}
/* >> Coordination - Slideshow Controls */
#coordination-outer-wrapper {
    position: relative;  
}
#coordination-slideshow-controls {
    display: none;  
    margin: 20px 0;
    text-align: center;
    position: absolute;
    bottom: 200px;
    width: 100%;
    z-index: 500;
}
#coordination-slideshow-controls button {
    border-radius: 0;
    border: 1px solid #eee;
    background: transparent;
    padding: 15px 23px;
    font-size: 30px;
    color: #eee;
}
#coordination-slideshow-controls button:last-of-type {
    margin-left: 30px;  
}
#coordination-slideshow-controls button:focus {
    outline: none;
}
/* >> Floorscapes - Mobile Content */
#coordination-mobile-content {
    background: #000;
    display: none;
    position: relative;
    /*top: -2px;*/
}
#coordination-mobile-content [class^="col"] {
    min-height: 30vh;
    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; 
}
#coordination-mobile-content h1,
#coordination-mobile-content p {
    color: #fff;
    text-align: center;
}
#coordination-mobile-content h1 {
    font-weight: bold !important;
    letter-spacing: 4px;
    font-size: 25px;
}
#coordination-mobile-content p {
    font-size: 17px;
}
/* >> Coordination Workspaces - Media Queries */
@media only screen and (max-width: 1200px) {
    #hotspot-7,
    #hotspot-9 {
        left: 13%;
    }
}
@media only screen and (max-width: 991px) {
    #hotspot-7,
    #hotspot-9 {
        top: 45%;
        left: 20%;
    }
    #hotspot-8,
    #hotspot-10 {
        top: 45%;
    }
    #coordination-slideshow-wrapper .slide-content {
        max-width: 800px;
        width: 100%;
    }
    #coordination-slideshow-wrapper .slide-content h1 {
        font-size: 30px;
    }
    #coordination-slideshow-wrapper .cycle-pager {
        display: none;
    }
    #coordination-slideshow-controls {
        display: block;
    }    
}
@media only screen and (max-width: 767px) {
    #coordination-slideshow-wrapper .cycle-slideshow {
        height: 50vh;
    }
    #coordination-slideshow-wrapper .slide-content {
        display: none;
    }
    #coordination-mobile-content {
        display: block;
    }
    #coordination-slideshow-controls {
        bottom: 30px;
        margin: 20px 0 0;
    }
}
@media only screen and (max-width: 500px) {
    #coordination-mobile-content h1 {
        font-size: 20px;
    }
}
/* >> Coordination - iMac 4K */
@media only screen and (min-width: 2500px) and (-webkit-min-device-pixel-ratio: 2) and (min-resolution: 192dpi) {
    #coordination-slideshow-wrapper .slide-content p {
        font-size: 22px;
    }
}
/* >> Coordination - iPhone 6, 6S, 7, 8 */
@media only screen and (device-width: 375px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait) {   
    #coordination-mobile-content p {
        font-size: 16px;
    }
}
/* >> Coordination - iPhone 5, 5C, 5S, SE */
@media only screen and (device-width: 320px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait) {
    #coordination-mobile-content h1 {
        letter-spacing: 1px;
    }
    #coordination-mobile-content p {
        font-size: 16px;
    }
}

/*** COLORLINE ***/

/*** 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;  
}
#colorline-wrapper .top-content h1 {
    text-transform: none;
    font-size: 35px;
    font-weight: bold !important;
    letter-spacing: 4px;
    margin-bottom: 0;
    color: #555;
}
#colorline-wrapper .top-content h2 {
    margin: 12px 0;
}
#colorline-wrapper .top-content p {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
#colorline-wrapper a.mlkn-button {
    display: block;
    margin: 0 auto;
    width: 300px;
    text-align: center;
    background: #c7972b;
    border: 1px solid #c7972b;
    font-weight: 700 !important;
}
#colorline-wrapper .bottom-content {
    margin-top: 50px;  
}
/* >> Colorline - Large Slideshow */
#colorline-large-desktop-slideshow {
    display: block;
}
#colorline-large-slideshow-wrapper .cycle-slideshow {
    width: 100%;  
}
#colorline-large-slideshow-wrapper .slide {
    width: 100%;  
    position: relative;
}
#colorline-large-slideshow-wrapper .slide > div:first-of-type {
    margin-top: 0 !important;  
}
#colorline-large-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-large-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-large-slideshow-wrapper .color-tile {
    display: inline-block;
    width: 15%;
    padding: 7px;
}
#colorline-large-slideshow-wrapper .color-tile img {
    width: 150px;
    height: 150px;
}
#colorline-large-slideshow-wrapper .color-tile p {
    color: #000;
    text-transform: uppercase;
    font-size: 12px;
    line-height: 1.2em;
    margin: 0;
}
#colorline-large-slideshow-wrapper .color-tile p span.new {
    font-style: italic;
    text-transform: uppercase;
    color: #c7972b;
}
#colorline-large-slideshow-wrapper .color-tile p:first-of-type {
    margin-top: 5px;  
}
/* >> Colorline - Slideshow */
#colorline-desktop-slideshow {
    display: none;
}
#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;
    width: 12.5%;
    padding: 7px;
}
#colorline-slideshow-wrapper .color-tile img {
    height: 122px;
    width: 122px;
}
#colorline-slideshow-wrapper .color-tile p {
    color: #000;
    text-transform: uppercase;
    font-size: 12px;
    line-height: 1.2em;
    margin: 0;
}
#colorline-slideshow-wrapper .color-tile p span.new {
    font-style: italic;
    text-transform: uppercase;
    color: #c7972b;
}
#colorline-slideshow-wrapper .color-tile p:first-of-type {
    margin-top: 5px;  
}
/* >> Colorline - Pager */
#colorline-large-slideshow-wrapper .cycle-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-large-slideshow-wrapper .cycle-pager a,
#colorline-slideshow-wrapper .cycle-pager a {
    width: 71px;
    height: 3px;
    background: #b1b1b1;
}
#colorline-large-slideshow-wrapper .cycle-pager a.cycle-pager-active,
#colorline-slideshow-wrapper .cycle-pager a.cycle-pager-active {
    background: #777;  
}
/* >> Colorline - Slideshow Controls */
#colorline-slideshow-controls {
    display: none;  
    margin: 20px 0;
    text-align: center;
}
#colorline-slideshow-controls button {
    border-radius: 0;
    border: 1px solid #999;
    background: #fff;
    padding: 15px 23px;
    font-size: 30px;
    color: #bbb;
}
#colorline-slideshow-controls button:last-of-type {
    margin-left: 30px;  
}
#colorline-slideshow-controls button:focus {
    outline: none;
}
/* >> Colorline - Mobile */
#colorline-mobile {
    display: none;
    text-align: center;
}
#colorline-mobile img {
    max-width: 375px;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
}
/* >> Colorline - Media Queries */
@media only screen and (max-width: 1650px) {
    #colorline-large-slideshow-wrapper .color-tile img {
        width: 125px;
        height: 125px;
    }
}
@media only screen and (max-width: 1450px) {
    #colorline-large-slideshow-wrapper .color-tile {
        width: 11%;
    }
    #colorline-large-slideshow-wrapper .color-tile img {
        width: 110px;
        height: 110px;
    }
}
@media only screen and (max-width: 1350px) {
    #colorline-large-desktop-slideshow {
        display: none;
    }
    #colorline-desktop-slideshow {
        display: block;
    }
}
@media only screen and (max-width: 1200px) {
    #colorline-slideshow-wrapper .color-tile img {
        height: 100px;
        width: 100px;
    }
}
@media only screen and (max-width: 991px) {
    #colorline-slideshow-wrapper .cycle-pager {
        display: none;  
    }
    #colorline-slideshow-controls {
        display: block;  
    }
    #colorline-slideshow-wrapper .color-tile {
        display: inline-block;
        width: 16%;
        padding: 7px;
    }
    #colorline-wrapper .top-content h1 {
        margin-top: 50px;
    }
}
@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-slideshow-wrapper .color-tile {
        display: inline-block;
        width: 18%;
        padding: 7px;
    }
}
@media only screen and (max-width: 700px) {
    #colorline-desktop-slideshow {
        display: none;
    }
    #colorline-mobile {
        display: block;
    }
}
@media only screen and (max-width: 500px) {
    #colorline-wrapper a.mlkn-button {
        width: auto;
    }
}
/* >> 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;
    }
}
/* >> 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;
    }
}

/*** MY ROOM TOOL ***/
#my-room-tool-wrapper {
    height: 100vh;
    background-image: url('/-/media/4d8bad7afc7e455097b727300f0b849d.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: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}
#my-room-tool-wrapper .row [class^="col"] {
    margin-bottom: 25vh;
}
/* >> 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 h1 span {
    color: #f2cd51;   
}
#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: #000;
    font-weight: 700 !important;
}
#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;
    }
}
@media only screen and (max-width: 767px) {
    #my-room-tool-wrapper .row [class^="col"] {
        margin-bottom: 5vh;
    }
    #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;
    }
}

/*** SHOP NOW ***/
#shop-now-wrapper {
    height: 100vh;
    background-image: url('/-/media/965aaf97a6384b6e8179827a58a8aa99.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: 80px;  
    letter-spacing: 5px;
    margin-bottom: 15px;
    font-weight: 600 !important;
}
#shop-now-wrapper h1 span {
    color: #f2cd51;
}
#shop-now-wrapper p {
    font-size: 30px;  
}
#shop-now-wrapper .buttons {
    text-align: center;
    margin-top: 40px;
}
#shop-now-wrapper a.mlkn-button {
    width: 325px;
    background: #212121;
    border: 1px solid #212121;
    text-align: center;
    color: #fff;
    font-weight: 700 !important;
}
#shop-now-wrapper .buttons a:last-of-type {
    margin-left: 30px;  
}
/* >> Shop Now - Media Queries */
@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 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 - 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: 400px;
        padding: 10px 15px;
        font-weight: 600 !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;
    }
}

/*** CREATIVE COLLECTIVE ***/
#creative-collective-wrapper {
    height: 300px;
    background-image: url('/-/media/ebdc35ea474e4b578503b5036ba24ecd.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: #322F30;
    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;
}
/* >> 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-with: 500px) {
    #creative-collective-wrapper a.mlkn-button {
        width: 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;
    }
}