  /*** BODY ***/
  body {
    position: relative;
}
main {
    background: #fff;
}
.bottom-nav-wrapper {
    border-top: none !important;
}
a.mlkn-button {
    font-weight: 600 !important;
}
#tsbAudio {
    display: none;
}
main .cycle-pager a {
    height: 10px;
    margin: 0 10px;

    width: 80px;
}
.hotspots {
    position: relative;
}
.hotspot-content.leftSide {
    left: revert !important;
    right: 40px !important;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 0;
}
.hotspot {
    z-index: 99;
}
@media (max-width: 1200px) {
    .hotspot {
        display: none;
    }
}



/*** INTERACTIVE BROCHURE ANCHOR ***/
#interactive-brochure-anchor {
    display: inline-block;
    padding: 10px 20px;
    position: absolute;
    top: 50vh;
    background: #fff;
    color: #000;
    font-weight: 700 !important;
    z-index: 1060;
    left: -105px;
    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;
    font-size: 16px;
    line-height: 1.2em;
    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: 0;
        left: 50%;
        -webkit-transform: rotate(0) translateX(-50%);
        -ms-transform: rotate(0) translateX(-50%);
        transform: rotate(0) translateX(-50%);
        position: fixed;
        display: block;
        width: 100%;
        padding-top: 20px;
        padding-bottom: 20px;

    }
    #interactive-brochure-anchor,
    #interactive-brochure-anchor.dark-theme {
        background: #000;
        color: #fff;
    }
}



/*** HEADINGS ***/
h1 {
    font-size: 37px;  
}


/*** NAVBAR CIRCLES ***/
#navbar-circles {
    position: fixed;
    
    right: 3vw;
    top: 25vh;
    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 li {
    display: block;  
    float: none;
    margin-bottom: 20px;
    height: 15px;
}
#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 a {
    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;
    display: block !important;
}
#navbar-circles a::before {
    color: #fff;
    position: relative;
    left: -30px;
    top: -5px;
    text-align: right;
    float: right;
    display: none;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    white-space: nowrap;
}
#navbar-circles a[href="#free-space-wrapper"]::before {
    content: "Collective Mind";
}

#navbar-circles a[href="#printworks-wrapper"]::before {
    content: "PrintWorks";
}

#navbar-circles a[href="#colorline-wrapper"]::before {
    content: "Colorline";
}
#navbar-circles a[href="#visualize-wrapper"]::before {
    content: "Visualizer";
}
#navbar-circles a[href="#mpact-wrapper"]::before {
    content: "Sustainability";
}



#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;
    }
}


.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: center;  
    position: absolute;
    z-index: 500;
    width: 50%;
    bottom: 5rem;
    right: 25%;
}
.cycle-pager a {
    width: 100px;
    height: 15px;
    background: rgba(255, 255, 255, 0.3);
    margin: 0 15px;
    border-radius: 25px;
}
.cycle-pager a.cycle-pager-active {
    background: white;
}


/*** 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;
    text-align: left;
}
.hotspot-content {
    background: #fff;
    width: auto;
    
    border-radius: 20px;
    border-bottom-left-radius: 0;
    position: absolute;
    top: -23px;
    left: 40px;
    display: none;
    padding: 6px 10px 10px 15px;
}
.hotspot-content p {
    color: #616365;
    margin: 0;
    font-size: 12px !important;
}
.hotspot {
    position: absolute;
}
.hotspot .hotspot-content p {
    font-size: 14px;
    letter-spacing: 0px;
    height: 18px;
    white-space: nowrap;
    margin-right: 30px;
}
.hotspot .hotspot-content p:first-of-type:not(.hotspot-content p) {
    letter-spacing: 1px;
}
.hotspot .hotspot-content p b {
    font-weight: 600 !important;
}
.hotspot-content .arrow-right {
    width: 0;
    height: 0;
    border-top: 16px solid transparent;
    border-bottom: 16px solid transparent;
    border-left: 16px solid #636366;
    position: absolute;
    bottom: 10px;
    right: 10px;
}
/* >> 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;
}
@media only screen and (max-width: 991px) {
    .hotspot {
        display: none;
    }
}

/*** The topsection WRAPPER ***/
#free-space-wrapper {
    min-height: 90vh;
    position: relative;
    background: #474647;
    padding: 0;
}
/* >> The topsection - image Container */
#free-space-wrapper .image-container {
    height: max(750px, 100vh);
    width: 100%;
    position: relative;
    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;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
#free-space-wrapper .image-container img:not(.bottom-text img) {
    width: 100%;
    height: max(750px, 100vh);
    -o-object-fit: cover;
    object-fit: cover;
    /* -o-object-position: bottom; */
    /* object-position: bottom; */
    position: absolute;
    top: 0;
    left: 0;
}
/* >> The topsection image - Text Overlay */
#free-space-wrapper .text-overlay {
    color: #fff;
    position: absolute;
    /* top: max(263px, 38vh); */
    text-align: center;
    z-index: 10;
    max-width: 1100px;
}
#free-space-wrapper .text-overlay > span {
    font-size: 20px;
    display: block;
    margin-top: 25px;
    letter-spacing: 5px;
}
#free-space-wrapper .text-overlay h2 {
    font-size: 79px;  
    letter-spacing: 15.8px;
    margin-bottom: 15px;
    font-weight: 500 !important;
    color: #fff;
    margin: 0;
    margin-top: 10px;
}
#free-space-wrapper h3 {
    font-size: 35px;
    font-weight: bold !important;
    letter-spacing: 3.85px;
    color: white;
}
#free-space-wrapper h3.below-title {
    margin-top: 2vh;
}
#free-space-wrapper .text-overlay span {
    font-size: 25px;
    letter-spacing: 3px;
}
#free-space-wrapper .text-overlay p.below-title{
    font-size: 22px;
    letter-spacing: 1px;
    margin-top: 10px;
}
#free-space-wrapper .bottom-text {
    letter-spacing: 1px;
    margin-top: 10px;
    bottom: 3vh;
    position: absolute;
    color: white;
    text-align: center;
}
#free-space-wrapper .bottom-text p {
    font-size: 18px;
}
#free-space-wrapper .bottom-text img {
    margin-top: 3vh;
    max-width: 40px;
}
#free-space-wrapper a.mlkn-button {
    color: #000;
    background: #fff;
    display: block;
    width: 100%;
    text-align: center;
    max-width: 300px;
    border: 1px solid #fff;
    font-weight: 600 !important;
    margin: auto;
}
#free-space-wrapper a.mlkn-button:hover {
    color: #fff;
    background: #000;
}
/* >> The topsection - Text Container */
#free-space-wrapper .container {
    min-height: 25vh;
}
#free-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: max(188px, 25vh);
    padding: 30px 15px;
}
#free-space-wrapper .container p {
    color: #fff;
    text-align: center;
    font-size: 18px;
    padding-bottom: 15px;
}
#free-space-wrapper .container .button-wrapper {
    text-align: center;
}
#free-space-wrapper .container a.mlkn-button {
    border: 1px solid #fff;
    color: #000;
    font-weight: bold;
    letter-spacing: 1px;
    background: #fff;
    width: 310px;
}
#free-space-wrapper .container a.mlkn-button:last-of-type {
    margin-left: 15px;
}
#free-space-wrapper .mobileOnly {
    display: none;
}
#free-space-wrapper p {
    margin: 2rem;
}
#free-space-wrapper img.redListLogo {
    max-width: 150px;
    margin: 1rem;
}
/* >> Modular Landscapes - Media Queries */
@media only screen and (max-width: 1600px) {
    #free-space-wrapper .text-overlay {
        max-width: 1000px;
    }
}
@media only screen and (max-width: 1200px) {
    #free-space-wrapper .text-overlay h2 {
        font-size: 66px;
        letter-spacing: 12px;
    }
    #free-space-wrapper h3 {
        font-size: 25px;
    }
}
@media only screen and (max-width: 991px) {
    #free-space-wrapper {
        height: auto;
        min-height: 85vh;
    }
    #free-space-wrapper .container,
    #free-space-wrapper .container .content-wrapper {
        height: auto;
        min-height: 25vh;
    }
    #free-space-wrapper .container p {
        padding-bottom: 0;
        font-size: 16px;
    }
    #free-space-wrapper .container a.mlkn-button,
    #free-space-wrapper .container a.mlkn-button:last-of-type {
        display: block;
        margin: 15px auto 0;
    }
    #free-space-wrapper img.redListLogo {
        margin: 1vh;
    }
    #free-space-wrapper .text-overlay h2 {
        font-size: 60px;
        letter-spacing: 10px;
    }
}
@media only screen and (max-width: 767px) {
    #free-space-wrapper .text-overlay {
        width: 100%;
        padding: 10px;
    }
    #free-space-wrapper .text-overlay h2 {
        font-size: 50px;
        letter-spacing: 8px;
    }
    #free-space-wrapper .mobileOnly {
        display: revert;
    }
    #free-space-wrapper .desktopOnly {
        display: none;
    }
    #free-space-wrapper h3 {
        font-size: 20px;
    }
}
@media only screen and (max-width: 600px) {
    #free-space-wrapper .text-overlay h2 {
        font-size: 45px;
    }
    #free-space-wrapper .text-overlay span {
        font-size: 20px;
    }
}
@media only screen and (max-width: 500px) {
    #free-space-wrapper .text-overlay > span.expanded {
        font-size: 15px;
        letter-spacing: 3px;
    }
    #free-space-wrapper .text-overlay span {
        font-size: 18px;
        letter-spacing: 2px;
    }
    #free-space-wrapper .text-overlay h2 {
        font-size: 36px;
        letter-spacing: 6px;
    }
    #free-space-wrapper .container a.mlkn-button {
        font-size: 15px;
        width: 100%;
    }
    #free-space-wrapper h3 {
        font-size: 18px;
    }
}
/* >> The topsection - iMac 4K */
@media only screen and (min-width: 2500px) and (-webkit-min-device-pixel-ratio: 2) and (min-resolution: 192dpi) {
    #free-space-wrapper .text-overlay > span.expanded {
        font-size: 25px;
    }
    #free-space-wrapper .text-overlay h2 {
        font-size: 110px;
    }
    #free-space-wrapper .container,
    #free-space-wrapper .container .content-wrapper {
        height: max(188px, 25vh);
    }
    #free-space-wrapper .container p {
        font-size: 25px;
    }
    #free-space-wrapper .container a.mlkn-button {
        font-size: 20px;
        width: 400px;
    }
}
/* >> The topsection - iPhone 5, 5C, 5S, SE */
@media only screen and (device-width: 320px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait) {
    #free-space-wrapper .text-overlay h2 {
        font-size: 40px;
        letter-spacing: 7px;
    }
}

/* collection wrapper */
#collection-wrapper {
    position: relative;
    background: white;
    padding: 0;
    margin-top: 10rem;
    margin-bottom: 20rem;
}
#collection-wrapper h2 {
    color: #636466;
    font-size: 64px;
    font-weight: 600;
    line-height: 58px;
    text-align: right;
    width: min-content;
    letter-spacing: 10px;
}
#collection-wrapper p:not(.hotspot-content p) {
    color: #616365;
    font-size: 16px;
    margin-top: 10rem;
    margin-bottom: 3rem;
}
#collection-wrapper a.mlkn-button {
    color: #636466;
}
#collection-wrapper .office-image {
    width: 20.3125vw;
    float: right;
    margin-right: -7px;
}
#collection-wrapper .open-office-image {
    width: 100%;
    padding-right: 10rem;
}
#collection-wrapper .group-image {
    width: 30.8333vw;
}
#collection-wrapper .product-image {
    width: 18.64583vw;
    padding-top: 7px;
}
#collection-wrapper .floating-image {
    position: absolute;
    top: var(--collectionTopOffset);
    padding: 7px;
    background: white;
    right: var(--floatingImageOffset);
}
#collection-wrapper .right-image {
    text-align: right;
    padding-top: 7px;
}
#collection-wrapper .gallery-image {
    width: auto;
    margin-right: 3px;
    height: var(--galleryImageHeight);
}
#collection-wrapper .meeting-image {
    width: 15.625vw;
}
#collection-wrapper .floating-image > div:nth-of-type(2) {
    justify-content: end;
}
#collection-wrapper .text-container {
    position: absolute;
    bottom: calc(var(--galleryImageHeight) - 100px);
}
#collection-wrapper a.mlkn-button {
    color: #636466;
    background: #fff;
    display: block;
    width: 100%;
    text-align: center;
    max-width: 300px;
    border: 1px solid #fff;
    font-weight: 600 !important;
    border: 1px solid #636466;
    font-size: 16px;
}
#collection-wrapper a.mlkn-button:hover {
    color: #fff;
    background: #636466;
}
#collection-wrapper .image-container .col-6 .hotspots {
    height: 100%;
    bottom: 100%;
    z-index: 99;
}
#collection-hotspot-1 {
    top: 25vh;
    left: 10vw;
}
#collection-hotspot-2 {
    bottom: 50%;
    left: 33%;
}
#collection-hotspot-3 {
    bottom: 20%;
    right: 50%;
}
#collection-hotspot-4 {
    bottom: 9vh;
    left: 17vw;
}
@media (max-width: 1600px) {
    #collection-wrapper .text-container {
        bottom: 0;
    }
}
@media (max-width: 1400px) {
    #collection-wrapper .office-image {
        display: none;
    }
}
@media (max-width: 1200px) {
    #collection-wrapper .right-image {
        text-align: right;
    }
    #collection-wrapper .text-container {
        position: relative;
    }
    #collection-wrapper h2 {
        text-align: left;
        width: auto;
    }
    #collection-wrapper .office-image {
        display: block;
        width: 100%;
    }
    #collection-wrapper .floating-image {
        left: 10vw;
        background: transparent;
        top: calc(var(--collectionTopOffset) / (3/2));
    }
    #collection-wrapper p:not(.hotspot-content p) {
        margin-top: 3rem;
    }
    #collection-wrapper .meeting-image {
        width: 50%;
    }
    #collection-wrapper .open-office-image {
        padding-right: 0;
    }
    #collection-wrapper .floating-image > div:nth-of-type(2) {
        justify-content: start;
    }
    #collection-wrapper .product-image {
        padding-top: 0;
    }
    #collection-wrapper .group-image {
        padding-bottom: 7px;
        width: auto;
        padding-top: 7px;
        background: white;
    }
    #collection-wrapper .text-container {
        margin-top: 5rem;
    }
    #collection-wrapper {
        margin-bottom: 10rem;                                             
    }
    #collection-wrapper h2 {
        font-size: 48px;
        letter-spacing: 7.5px;
    }
}
@media (max-width: 767px) {
    #collection-wrapper h2 {
        font-size: 32px;
        letter-spacing: 5px;
    }
}
/* sidebyside-wrapper */
#sidebyside-wrapper {
    position: relative;
    background: white;
    padding: 0;
    margin-top: 10rem;
}
#sidebyside-wrapper p:not(.hotspot-content p) {
    font-size: 16px;
    color: #616365;
}
#sidebyside-wrapper p.title:not(.hotspot-content p) {
    font-size: 36px;
    color: #636466;
    font-weight: 600;
    margin-bottom: 3rem;
}
#sidebyside-wrapper .product-image {
    width: 28.64583vw;
}
#sidebyside-wrapper #share-carousel .slide > div:nth-of-type(2) {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    margin-top: 5rem;
}
#sidebyside-wrapper #learn-carousel .slide > div:nth-of-type(1) {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 5rem;
}
#sidebyside-wrapper .text-container {
    max-width: 275px;
}
#sidebyside-wrapper #share-carousel .text-container {
    margin-left: 5rem;
}
#sidebyside-wrapper .slide {
    width: 100%;
}
#sidebyside-wrapper .text-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
#sidebyside-wrapper .slide .underlined {
    border-bottom: 4px solid #636466;
    padding-bottom: 1rem;
}
#share-carousel .slide > div:nth-of-type(1) {
    text-align: center;
}
#learn-carousel .slide > div:nth-of-type(2) {
    text-align: center;
}
#share-carousel .cycle-pager {
    top: 5rem;
    bottom: unset;
}
#sidebyside-wrapper p:not(.title):not(.hotspot-content p) {
    margin-top: 1rem;
}
#sidebyside-hotspot-1, #sidebyside-hotspot-2, #sidebyside-hotspot-3 {
    bottom: 10vh;
    left: 18vw;
}
#sidebyside-hotspot-4 {
    bottom: 20vh;
    left: 30%;
}
#sidebyside-hotspot-5 {
    bottom: 30vh;
    left: 40%;
}
#sidebyside-hotspot-6 {
    bottom: 20vh;
    left: 30%;
}
@media (max-width: 1400px) {
    #sidebyside-wrapper .product-image {
        width: 25vw;
        object-fit: cover;
    }
}
@media (max-width: 1200px) {
    #learn-carousel {
        margin-top: 5rem;
    }
    #sidebyside-wrapper .product-image {
        width: 28.64583vw;
    }
    #sidebyside-wrapper p.title:not(.hotspot-content p) {
        font-size: 30px;
    }
}
@media (max-width: 991px) {
    #sidebyside-wrapper p.title:not(.hotspot-content p) {
        font-size: 24px;
    }
}
@media (max-width: 767px) {
    #sidebyside-wrapper .text-container {
        margin-left: 5rem;
    }
}
/*installation-wrapper*/
#installation-wrapper {
    position: relative;
    padding: 0;
    margin-top: 10rem;
    width: 100%;
}

#installation-wrapper .slide {
    width: 100%;
    padding: 0 10rem ;
}
#installation-wrapper .slide.cycle-slide-active {
    position: relative !important;
}
#installation-wrapper .slide.cycle-sentinel {
    display: none !important;
}
#installation-wrapper .image-container {
    height: var(--installationHeight);
    background-size: cover;
    width: 100%;
}

#installation-slide-1 .image-container {
    background-image: url('/-/media/CAE43C448DEA4E5A98BC3F6496EA001D.ashx');
}
#installation-slide-2 .image-container {
    background-image: url('/-/media/40AB97D3D9AE40D0A9EA749B0EED48F6.ashx');
}
#installation-slide-3 .image-container {
    background-image: url('/-/media/E6F0EFA0780341138BBD7496618E12A5.ashx');
}
#installation-slide-4 .image-container {
    background-image: url('/-/media/A8C0E50C8EFF49DC83A4782A7456681E.ashx');
}
#installation-wrapper .cycle-pager a {
    border: 1px solid #fff;
    background: #fff;
    opacity: 0.5;
}
#installation-hotspot-1 {
    bottom: 45vh;
    left: 20%;
}
#installation-hotspot-2 {
    bottom: 15vw;
    left: 55%;
}
#installation-hotspot-3 {
    bottom: 35vh;
    left: 50%;
}
#installation-hotspot-4 {
    bottom: 35vh;
    left: 50%;
}
#installation-hotspot-5 {
    bottom: 35vh;
    left: 50%;
}

#installation-wrapper .image-container {
    padding:  0;
    background-size: cover;
    background-repeat: no-repeat;
}
#installation-wrapper .buttons-wrapper {
    text-align: center;
    position: relative;
    bottom: 7rem;
    display: flex;
    justify-content: center;
}
#installation-wrapper .buttons-wrapper > div {
    padding: 2rem 3rem 0 3rem;
    background: white;
}
#installation-wrapper .buttons-wrapper img {
    cursor: pointer;
}
#installation-wrapper .bottom-content {
    text-align: center;
    bottom: 2rem;
}
#installation-wrapper p:not(.hotspot-content p) {
    font-size: 16px;
    color: #616365;
}
#installation-wrapper a.mlkn-button {
    border: 1px solid #636466;
    color: #636466;
    font-size: 16px;
    margin: 3rem auto 0;
    background: transparent;
}
#installation-wrapper a.mlkn-button:hover {
    color: white;
    background: #636466;
}
@media (max-width: 991px) {
    #installation-wrapper .buttons-wrapper {
        bottom: 5rem;
    }
    #installation-wrapper .buttons-wrapper img {
        width: 20%;
    }
}
@media (max-width: 767px) {
    #installation-wrapper .buttons-wrapper {
        bottom: 3rem;
    }
    #installation-wrapper .slide {
        padding: 0;
    }
}

/*crafted wrapper*/
#crafted-wrapper {
    position: relative;
    background: white;
    color: white;
    padding: 0;
    height: auto;
}
#crafted-wrapper p:not(.title):not(.hotspot p) {
    font-size: 16px;
    margin: 2.5rem 0 7rem;
}
#crafted-wrapper p.title:not(.hotspot p) {
    font-size: 36px;
    line-height: normal;
}
#crafted-wrapper > div:nth-of-type(2) {
    position: absolute;
    bottom: 0;
    width: 100%;
}
#crafted-wrapper .image-container {
    background: url(/-/media/1209D9E4AB7649ABAC9C3F9655AB779F.ashx);
    background-size: cover;
    background-repeat: no-repeat;
    height: 100vh;
    margin-top: 10rem;
    background-position: bottom;
}
#crafted-wrapper .text-box {
    max-width: 650px;
}
#crafted-wrapper .hotspots {
    height: 100%;
}
#crafted-wrapper .hotspot {
    z-index: 99;

}
#crafted-hotspot-1 {
    right: 30%;
    bottom: 25%;
}
@media (max-width: 991px) {
    #crafted-wrapper p.title:not(.hotspot p) {
        font-size: 24px;
    }
}


/* value wrapper */
#value-wrapper {
    padding: 10rem;
    position: relative;
}
#value-wrapper img {
    width: 100%;
    object-fit: cover;
}


#value-wrapper p.title:not(.hotspot-content p) {
    font-size: 36px;
    letter-spacing: 3.6px;
    color: #636466;
    font-weight: 600;
    margin-bottom: 3rem;
    line-height: normal;
}
#value-wrapper p:not(.hotspot-content p) {
    font-size: 16px;
    color: #616365;
}
#value-wrapper .text-container {
    padding: 0 14rem 10rem 14rem;
}

#value-wrapper .vert-images img:first-of-type {
    margin-bottom: 15px;
}

#value-wrapper .medium-image {
    height: var(--valueSmallImageHeight);
}
#value-wrapper .leftSide img {
    height: var(--valueLargeImageHeight);
}
#value-hotspot-1 {
    bottom: 25vh;
    left: 50%;
}
#value-hotspot-2 {
    bottom: 10vh;
    left: 15%;
}
#value-hotspot-3 {
    bottom: 6vh;
    left: 15%;
}
#value-hotspot-4 {
    bottom: 6vh;
    left: 15%;
}
@media (max-width: 1400px) {
    #value-wrapper .text-container {
        padding: 0 7rem 5rem 7rem;
    }
}
@media (max-width: 991px) {
    #value-wrapper {
        padding: 7.5rem 0 3rem;
    }
    #value-wrapper .text-container {
        padding: 3rem 7rem 5rem 7rem;
    }
    #value-wrapper p.title:not(.hotspot-content p) {
        font-size: 24px;
    }
}
@media (max-width: 767px) {
    #value-wrapper .text-container {
        padding: 2rem 0 5rem;
    }
}
/*colorline wrapper*/
#colorline-wrapper {
    padding: 0 10rem 10rem;
    position: relative;
}
#colorline-wrapper .slide {
    width: 100%;
}
#colorline-wrapper a.mlkn-button {
    background-color: white;
    font-size: 16px;
    color: #636466;
    font-weight: 600;
    padding: 1rem 4rem;
    border-color: #636466;
    border-radius: 25px;
    margin: 1rem;
    width: fit-content;
}
#colorline-wrapper p {
    font-size: 16px;
    color: #616365;
}
#colorline-wrapper h2 {
    font-weight: 600;
}
#colorline-wrapper p.pronunciation {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.28px;
    margin: 0;
}

#colorline-wrapper .color-tile:first-of-type  {
    padding-left: 0;
}
#colorline-wrapper .color-tile:last-of-type {
    padding-right: 0;
}

#colorline-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: 3rem 0;
}
#colorline-wrapper .color-tile {
    display: inline-block;
    
    padding: 10px;
}

#colorline-wrapper .color-tile p {
    color: #616365;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.7px;
    line-height: 1.2em;
    margin: 0;
    text-align: left;
}
#colorline-wrapper .color-tile p b {
    font-weight: 600;
}
#colorline-mobile {
    display: none;
}
#colorline-wrapper span:not(.mlkn-button span), #colorline-wrapper h2 {
    font-size: 32px;
    color: #636466;
    font-weight: 500;
    letter-spacing: 0.64px;
    cursor: pointer;
}
#colorline-wrapper span.active:not(.mlkn-button span) {
    font-weight: 700;
}
#colorline-wrapper .titles {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
}
#colorline-wrapper h3 {
    color: #636466;
    font-size: 30px;
    letter-spacing: 1.5px;
    font-weight: 600;
}
#colorline-wrapper a {
    text-decoration: none;
}
#colorline-slideshow-controls p {
    font-size: 24px;
    color: #616365;
}
div#colorline-slideshow-controls p span.active {
    font-weight: bold !important;
}
#colorline-wrapper .color-tile p span.new {
    font-style: italic;
    text-transform: uppercase;
    color: #c7972b;
}
#colorline-wrapper .color-tile p:first-of-type {
    margin-top: 5px;  
}
#colorline-wrapper .color-tile img {
    height: auto;
    max-width: 415px;
    width: 100%;
}
#colorline-wrapper .button-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


/* >> Colorline - Pager */
#colorline-large-slideshow-wrapper .cycle-pager,
#colorline-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;
}
/* >> Colorline - Slideshow Controls */
#colorline-slideshow-controls {
    position: absolute;
    bottom: 50%;
    left: 0;
    width: 100%;
    padding: 0 7.5rem;
    display: flex;
    justify-content: space-between;
    z-index: 99;
}
#colorline-slideshow-controls button {
    border-radius: 0;
    background: transparent;
    padding: 15px 23px;
    font-size: 30px;
    color: #777;
    border: none;
}
#colorline-slideshow-controls button:last-of-type {
    margin-left: 30px;  
}
#colorline-slideshow-controls button:focus {
    outline: none;
}

#colorline-wrapper .mobile-only {
    display: none;
}
#colorline-wrapper h2, #colorline-wrapper h3, #colorline-wrapper p {
    text-align: center;
}
@media (max-width: 1600px) {
    #colorline-slideshow-controls {
        padding: 0 5rem;
    }
}
@media (max-width: 1400px) {

    #colorline-wrapper .color-tile p {
        letter-spacing: -1px;
        font-size: 12px;
    }
    
}
@media only screen and (max-width: 1200px) {
 
    #colorline-wrapper .color-tile {
        padding: 10px;
    }
  
    #colorline-wrapper .top-content {
        margin-top: 0;
    }
    #colorline-wrapper .top-content h2 {
        font-size: 36px;
    }
    #colorline-wrapper {
        margin-top: 5rem;
    }
    #colorline-wrapper .titles span:not(.mlkn-button span) {
        font-size: 26px;
    }
}
@media (max-width: 1100px) {
    #colorline-wrapper {
        padding: 0 5rem;
    }
}
@media only screen and (max-width: 991px) {

    #colorline-wrapper .color-tile {
        display: inline-block;
        padding: 5px;
    }
    #colorline-wrapper .titles span:not(.mlkn-button span) {
        font-size: 22px;
    }
    #colorline-wrapper .color-tile p {
        font-size: 10px;
    }
    #colorline-slideshow-controls {
        padding: 0 2.5rem;
    }
}
@media (max-width: 767px) {
    #colorline-wrapper .desktop-only {
        display: none;
    }
    #colorline-wrapper .mobile-only {
        display: revert;
        text-align: center;
    }
    
}




/* VISUALIZE */
  /* Containers */
  #visualize-wrapper {
    height: fit-content;
    background-color: white;
    /* background-image: url('/-/media/878b8f77112341baaa508551ddc1dd53.ashx'); */
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 100% 75%;
    color: #636466;
  }
  #visualize-wrapper .row {
    min-height: fit-content;
    /* -- 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;
  }
  #visualize-wrapper .slide {
    width: 100%;
  }
  /* Content */

  #visualize-wrapper .row b:not(.hotspot b),
  #visualize-wrapper .row h2,
  #visualize-wrapper .row p:not(.hotspot p) {
    width: 100%;
    color: #616365;
    text-align: center;
    display: block;
    padding-left: 30px;
    padding-right: 30px;
  }
  #visualize-wrapper h2 {
    text-transform: none;  
  }
  #visualize-wrapper img {
    width: 100%;
  }
  #visualize-wrapper .row b:not(.hotspot-content b) {
    font-size: 30px;  
  }
  #visualize-wrapper .row h2 {
    font-size: 40px;  
    font-weight: 500 !important;
    letter-spacing: 1px;
    margin: 4vh 0 1vh;
    color:#616365;
    text-transform: uppercase;
  }
  #visualize-wrapper .buttons {
    text-align: center;  
    margin: 2vh 0 6vh;
  }
  #visualize-wrapper a.mlkn-button {
    width: 300px;
    background: white;
    border: 1px solid #636466;
    text-align: center;
    color: #636466;
    font-weight: 600 !important;
  }
  #visualize-wrapper a.mlkn-button:hover {
    color: white;
    background: #636466;
    
}
  #visualize-wrapper .buttons a:last-of-type {
    margin-left: 30px;  
  }
  /* HOTSPOTS */
  #visualize-wrapper .hotspots {
    position: relative;
  }
  #visualize-hotspot-1 {
    bottom: 20rem;
    left: 30vw;
  }
  #visualize-hotspot-2 {
    bottom: 55vh;
    right: 20vw;
  }
  #visualize-hotspot-3 {
    bottom: 30rem;
    right: 45vw;
  }
  #visualize-hotspot-4 {
    bottom: 57vh;
    left: 21vw;

  }
  #visualize-hotspot-5 {
    bottom: 30rem;
    right: 40vw;
  }

  /* Media Queries */
  @media (min-width: 2500px) {

  }
  @media only screen and (max-width: 1600px) {
    /* #visualize-hotspot-1 {
        bottom: 42vh;
    }
    #visualize-hotspot-2 {
        bottom: 28vh;
    } */
  }
  @media only screen and (max-width: 1500px) {

  }
  @media only screen and (max-width: 1200px) {

  }
  @media (max-width: 1100px) {
    #colorline-wrapper a.mlkn-button {
        margin-bottom: 5rem;
    }
  }
  @media only screen and (max-width: 991px) {
    #visualize-wrapper b {
      font-size: 20px;  
    }
    #visualize-wrapper h1 {
      font-size: 35px;  
    }
    #visualize-wrapper a.mlkn-button {
      display: block;
      margin: 20px auto !important;
      width: 300px;
    }  
  }
  @media only screen and (max-width: 850px) {

  }
  @media only screen and (max-width: 767px) {
    #visualize-wrapper .row h2 {
        font-size: 30px;
    }
  }
  @media only screen and (max-width: 500px) {
  #visualize-wrapper .row h1 {
    font-size: 25px;
  }
  }


  

/*** mpact ***/
#mpact-wrapper {
    height: auto;
    padding: 0;
    min-height: max(750px, 100vh);
    background-image: url('/-/media/ec64c54db41a4ae59525ebafefb11533.ashx');
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* background-position: right; */
}
#mpact-wrapper p, #mpact-wrapper h2, #mpact-wrapper h3, #mpact-wrapper h5, #mpact-wrapper h6, #mpact-wrapper .imgAndBtnContainer img, #mpact-wrapper .imgAndBtnContainer a {
    /* filter: drop-shadow(2px 4px 6px black); */
    filter: drop-shadow(0px 0px 10px black);
}
#mpact-wrapper .image-container {
    height: auto;
    /* min-height: max(750px, 100vh);
    background-image: url('/-/media/ec64c54db41a4ae59525ebafefb11533.ashx');
    background-repeat: no-repeat;
    background-size: cover; */
    padding: 0;
    position: relative;
    /* background-position: center; */
    display: flex;
    flex-direction: row;
    align-items: center;
}
#mpact-wrapper .image-container > div {
    width: 100%;
    height: max(750px, 100vh);
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: start;
    position: relative;
}
#mpact-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;
}
#mpact-wrapper .imgAndBtnContainer {
    display: flex;
    flex-direction: column;
    align-items: end;
}
#mpact-wrapper .imgAndBtnContainer img {
    margin: 0 auto 5vh;
}
/* >> mpact - Content */
#mpact-wrapper .row h1,
#mpact-wrapper .row p {
    width: 100%;
    max-width: 900px;
    color: #616365;
    text-align: left;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

#mpact-wrapper .row p {
    font-size: 18px;
}
#mpact-wrapper .text-box-left {
    max-width: 650px;
    left: 12.5rem;
    position: absolute;
    height: 100%;
    top: 12.5rem;
    color: white;
    display: flex;
    
}
#mpact-wrapper .text-box-right {
    max-width: 525px;
    right: 12.5rem;
    position: absolute;
    height: 100%;
    bottom: 12.5rem;
    color: white;
    display: flex;
    text-align: right;
    flex-direction: column;
    justify-content: flex-end;
}
#mpact-wrapper .text-box-right img {
    width: 322px;
}
#mpact-wrapper .text-box-left > div {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
#mpact-wrapper .text-box-right > div {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
#mpact-wrapper .text-box-left h3 {
    font-size: 50px;
    font-weight: 700 !important;
    letter-spacing: 5px;
    color: white;
}
#mpact-wrapper .text-box-right h3, #mpact-wrapper h3 {

    color: white;
}
#mpact-wrapper sup {
    font-size: 14px;
    top: -0.5em;
}
#mpact-wrapper h5 sup {
    top: -1em;
}
#mpact-wrapper h2 sup {
    font-size: 14px;
    top: -1.4em;
}
#mpact-wrapper h2 {
    font-weight: 700 !important;
    letter-spacing: 2px;
    font-size: 40px;
}
#mpact-wrapper h3 {
    font-size: 14px;
}
#mpact-wrapper .text-box-left h1 {
    color: white;
    text-transform: none;
    font-weight: 700 !important;
    letter-spacing: 4px;
    font-size: 60px;
    text-transform: none;
    margin-bottom: 10px;
}
#mpact-wrapper .text-box-left h6, #mpact-wrapper h6 {
    color: white;
    font-size: 50px;
    font-weight: 400;
    margin-bottom: 3vh;
}
#mpact-wrapper .text-box-left h5 {
    color: white;
    font-size: 30px;
    font-weight: 400;
}
#mpact-wrapper .text-box-left p, #mpact-wrapper .text-box-right p, #mpact-wrapper p {
    color: #fff;
    margin: 3vh auto;
}

#mpact-wrapper .text-box-right h2, #mpact-wrapper h2 {
    color: white;
}
#mpact-wrapper .text-box-right h1 {
    color: white;
    text-transform: none;
    font-weight: 700 !important;
    letter-spacing: 4px;
    font-size: 60px;
    text-transform: none;
    margin-bottom: 10px;
}
#mpact-wrapper .text-box-right h6, #mpact-wrapper h6 {
    color: white;
    font-size: 50px;
    font-weight: 400;
    margin-bottom: 3vh;
}
#mpact-wrapper .text-box-right h5, #mpact-wrapper h5 {
    color: white;
    font-size: 30px;
    font-weight: 400;
}

#mpact-wrapper .mobileOnly {
    display: none;
}
/* >> mpact - Hotspots */
#mpact-hotspot-1 {
    top: 19%;
    left: 33%;
}
#mpact-hotspot-2 {
    bottom: 53%;
    left: 20%;
}
#mpact-hotspot-3 {
    bottom: 35%;
    left: 45%;
}
#mpact-hotspot-4 {
    bottom: 8%;
    left: 46%;
}
#mpact-wrapper a.mlkn-button {
    color: #000;
    background: #fff;
    display: block;
    width: 100%;
    text-align: center;
    max-width: 300px;
    border: 1px solid #fff;
    font-weight: 600 !important;
    margin-bottom: 5vh;
}
#mpact-wrapper a.mlkn-button:hover {
    color: #fff;
    background: #000;
    border: 1px solid #000;
}
#mpact-wrapper .mobileOnly {
    display: none;
}
/* >> mpact - Mobile Content */
#mpact-mobile-content {
    background: #000;
    display: none;
    position: relative;
}
#mpact-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; 
}
#mpact-mobile-content h1,
#mpact-mobile-content p {
    color: #fff;
    text-align: left;
}
#mpact-mobile-content h1 {
    font-weight: 600 !important;
    letter-spacing: 4px;
    font-size: 25px;
}
#mpact-mobile-content p {
    font-size: 16px;
}
/* >> mpact - Media Queries */
@media only screen and (max-width: 1400px) {

}
@media only screen and (max-width: 1300px) {
    #mpact-wrapper .image-container > div {
        flex-direction: column;
        align-items: center;
        justify-content: revert;
    }
}
@media only screen and (max-width: 1200px) {
    #mpact-wrapper .row h1,
    #mpact-wrapper .row p {
        max-width: 800px;
    }
    #mpact-wrapper .text-box-left {
        margin: 0;
    }
    #mpact-wrapper .text-box-right {
        margin: 0;
    }
    #mpact-wrapper .text-box-left {
        left: 10rem;
    }
    #mpact-wrapper .text-box-right {
        right: 10rem;
    }
}

@media only screen and (max-width: 767px) {
    #mpact-wrapper {
        height: auto;
        padding: 0;
    }
    #mpact-wrapper .row {
        display: none;
    }
    #mpact-mobile-content {
        display: block;
    }
    #mpact-wrapper .text-box-left {
        width: 100%;
        left: 0;
        top: 0;
    }
    #mpact-wrapper .text-box-right {
        width: 100%;
        left: 0;
        top: 0;
    }
    #mpact-wrapper .mobileOnly {
        display: revert;
        position: relative;
    }
    #mpact-wrapper .text-box-left.desktopOnly {
        display: none;
    }
    #mpact-wrapper .text-box-left h1 {
        font-size: 50px;
    }
    #mpact-wrapper .text-box-left h3 {
        font-size: 22px;
    }
    #mpact-wrapper .text-box-left h2 {
        font-size: 22px;
    }
    #mpact-wrapper .text-box-left h5 {
        font-size: 20px;
    }

    #mpact-wrapper .text-box-right.desktopOnly {
        display: none;
    }
    #mpact-wrapper .text-box-right h1 {
        font-size: 50px;
    }
    #mpact-wrapper .text-box-right h3,    #mpact-wrapper h3 {
        font-size: 22px;
        color: #616365;
    }
    #mpact-wrapper .text-box-right h2,   #mpact-wrapper h2 {
        font-size: 22px;
        color: #616365;
    }
    #mpact-wrapper h5 {
        font-size: 28px;
        color: #616365;
    }
    #mpact-wrapper h6 {
        font-size: 32px;
        color: #616365;
    }
    #mpact-wrapper .mobileOnly.row p {
        color: #616365;
    }

    #mpact-wrapper .image-container {
        display: none;
    }
    #mpact-wrapper .mobileOnly img {
        margin-top: 0vh;
        margin-bottom: 0vh;
    }
    #mpact-wrapper .mobileOnly .imgAndBtnContainer img {
        filter: invert(62%);
        margin-bottom: 3vh;
    }
    #mpact-wrapper a.mlkn-button {
        color: #fff;
        background: #616365;
        border: 1px solid #616365;
    }
    #mpact-wrapper a.mlkn-button:hover {
        color: #616365;
        background: #fff;
        border: 1px solid #616365;
    }
    #mpact-wrapper {
        background: white;
    }
    #mpact-wrapper .row {
        min-height: revert;
        height: auto;
    }
    #mpact-wrapper .mobileOnly {
        display: revert;
    }
    #mpact-wrapper .desktopOnly {
        display: none;
    }
    #mpact-wrapper .text-box-left > div {
        margin-top: 50px;
    }
    #mpact-wrapper .text-box-right > div {
        margin-top: 50px;
    }
    #mpact-wrapper sup, #mpact-wrapper h5 sup {
        top: -0.25em;
    }
    #mpact-wrapper {
        background-position: right;
    }
    #mpact-wrapper .mobileOnly > div {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
    }
    #mpact-wrapper .mobileOnly > div > div:first-of-type {
        margin-top: 5vh;
    }
    #mpact-wrapper p, #mpact-wrapper h2, #mpact-wrapper h3, #mpact-wrapper h5, #mpact-wrapper h6, #mpact-wrapper .imgAndBtnContainer img, #mpact-wrapper .imgAndBtnContainer a {
        filter: none;
    }
    #mpact-wrapper h2 sup {
        top: -0.4em;
    }
    #mpact-wrapper .imgAndBtnContainer {
        align-items: center;
    }
}

@media only screen and (max-width: 500px) { 
    #mpact-mobile-content h1 {
        font-size: 20px;
        letter-spacing: 1px;
    }
}
/* >> mpact - iMac 4K */
@media only screen and (min-width: 2500px) and (-webkit-min-device-pixel-ratio: 2) and (min-resolution: 192dpi) {
    #mpact-wrapper .row p {
        font-size: 22px;
    }
}
/* >> mpact - iPhone 6+, 7+, 8+ */
@media only screen and (device-width: 414px) and (-webkit-device-pixel-ratio: 3) and (orientation: portrait) { 
    #mpact-mobile-content p {
        font-size: 15px;
    }
}
/* >> mpact - iPhone 6, 6S, 7, 8 */
@media only screen and (device-width: 375px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait) {   
    #mpact-mobile-content h1 {
        font-size: 19px;
    }
}

/*** CREATIVE COLLECTIVE ***/
#creative-collective-wrapper {
    height: 300px;
    background-image: url('/-/media/2a935b853ef840a59256fbff87faab54.ashx');
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    position: relative;
    
}
/* >> 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;
}
/* >> 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;
    }
}
/* >> 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;
    }
}

