div.centerVert {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.hotspots.fillContainer {
    height: 100%;
    width: 100%;
    bottom: 100%;
    left: 0;
}
@media (max-width: 1200px) {
    .hotspots.fillContainer {
        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;
    }
}

/*** 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;
    }
}

/*hotspots*/
.hotspots {
    position: relative;
}
.hotspot-content.leftSide {
    left: revert !important;
    right: 40px !important;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 0;
}

/*** HOTSPOTS ***/
.hotspot {
    position: absolute;
    z-index: 99;
}
.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: 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: #000;
    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 (max-width: 1200px) {
    .hotspot {
        display: none;
    }
}



.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: 100%;
    /*matches to what the carousel bootstrap widths start at*/
    bottom: 5rem;
    right: 0;
}

.cycle-pager a {
    width: 100px;
    height: 10px;
    background: white;
    opacity: 0.2;
    margin: 0 15px;
    border-radius: 25px;
    border: 1px solid #fff;
}

.cycle-pager a.cycle-pager-active {
    opacity: 1;
}

.cycle-pager a.cycle-pager-active div {
    background: white;
    border-radius: 25px;
    height: 100%;
}

/*** The topsection WRAPPER ***/
#nibi-video-wrapper {
    min-height: 90vh;
    position: relative;
    background: #474647;
    padding: 0;
}

/* >> The topsection - Video Container */
#nibi-video-wrapper .video-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;
}

#nibi-video-wrapper .video-container video, #nibi-video-wrapper .video-container img:not(.logo) {
    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;
}
#nibi-video-wrapper .video-container img.logo {
    width: 230px;
    margin: 4rem auto;
    max-width: 50vw;
}
#nibi-video-wrapper .video-container video.loudOne {
    display: none;
}

/* >> The topsection Video - Text Overlay */
#nibi-video-wrapper .text-overlay {
    color: #fff;
    position: absolute;
    /* top: max(263px, 38vh); */
    text-align: center;
    z-index: 10;
}

#nibi-video-wrapper .text-overlay>span {
    font-size: 20px;
    display: block;
    margin-top: 25px;
    letter-spacing: 5px;
}

#nibi-video-wrapper .text-overlay h2 {
    font-size: 60px;
    letter-spacing: 5%;
    margin-bottom: 15px;
    font-weight: 500 !important;
    color: #fff;
    margin: 0;
    margin-top: 10px;
    
}

#nibi-video-wrapper h3 {
    font-size: 35px;
    font-weight: bold !important;
    letter-spacing: 5.25px;
    text-transform: uppercase;
    color: white;
}


#nibi-video-wrapper h3.below-title {
    margin-top: 2vh;
}
#nibi-video-wrapper .text-overlay p {
    font-size: 24px;
    letter-spacing: 1.2px;
    font-weight: 600;
    line-height: normal;
}
#nibi-video-wrapper .text-overlay span {
    font-size: 25px;
    letter-spacing: 3px;
}

#nibi-video-wrapper .text-overlay p.below-title {
    font-size: 22px;
    letter-spacing: 1px;
    margin-top: 10px;
}

#nibi-video-wrapper .bottom-text {
    letter-spacing: 1px;
    margin-top: 10px;
    bottom: 14rem;
    position: absolute;
    color: white;
    text-align: center;
}

#nibi-video-wrapper .bottom-text p {
    font-size: 18px;
}

#nibi-video-wrapper .bottom-text img {
    margin-top: 3vh;
    max-width: 40px;
}

#nibi-video-wrapper a.mlkn-button {
    display: block;
    width: 305px;
    text-align: center;
    max-width: 90vw;
    font-weight: 700 !important;
    margin: auto;
    font-size: 16px;
    color: #636466;
    background: white;
    border: 1px solid white;
    padding: 9px;
}
#nibi-video-wrapper a.mlkn-button:hover {
    background: #636466;
    color: white;
}

/* >> The topsection - Text Container */
#nibi-video-wrapper .container {
    min-height: 25vh;
}

#nibi-video-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;
}

#nibi-video-wrapper .container p {
    color: #fff;
    text-align: center;
    font-size: 18px;
    padding-bottom: 15px;
}

#nibi-video-wrapper .container .button-wrapper {
    text-align: center;
}

#nibi-video-wrapper .container a.mlkn-button {
    border: 1px solid #fff;
    color: #000;
    font-weight: bold;
    letter-spacing: 1px;
    background: #fff;
    width: 310px;
}

#nibi-video-wrapper .container a.mlkn-button:last-of-type {
    margin-left: 15px;
}

#nibi-video-wrapper .mobileOnly {
    display: none;
}

#nibi-video-wrapper p {
    margin: 2rem;
}

#nibi-video-wrapper img.redListLogo {
    max-width: 150px;
    margin: 1rem;
}

/* >> Modular Landscapes - Media Queries */
@media only screen and (max-width: 1600px) {
    #nibi-video-wrapper .text-overlay {
        max-width: 1000px;
    }
}

@media only screen and (max-width: 1400px) {
    #nibi-video-wrapper .text-overlay h2 {
        font-size: 50px;
    }
}

@media only screen and (max-width: 991px) {
    #nibi-video-wrapper {
        height: auto;
        min-height: 85vh;
    }

    #nibi-video-wrapper .container,
    #nibi-video-wrapper .container .content-wrapper {
        height: auto;
        min-height: 25vh;
    }

    #nibi-video-wrapper .container p {
        padding-bottom: 0;
        font-size: 16px;
    }

    #nibi-video-wrapper .container a.mlkn-button,
    #nibi-video-wrapper .container a.mlkn-button:last-of-type {
        display: block;
        margin: 15px auto 0;
    }

    #nibi-video-wrapper img.redListLogo {
        margin: 1vh;
    }

    #nibi-video-wrapper .text-overlay h2 {
        font-size: 40px;
    }
    #nibi-video-wrapper h3 {
        font-size: 24px;
    }
    #nibi-video-wrapper .video-container img.logo {
        margin: 2rem auto;
    }
    #nibi-video-wrapper .text-overlay p {
        font-size: 20px;
    }
}
@media (max-width: 767px) {
    #nibi-video-wrapper .video-container, #nibi-video-wrapper .video-container video, #nibi-video-wrapper .video-container img {
        max-height: 85vh;
    }
    #nibi-video-wrapper .bottom-text {
        bottom: 8rem;
    }
}

/* >> The topsection - iMac 4K */
@media only screen and (min-width: 2500px) and (-webkit-min-device-pixel-ratio: 2) and (min-resolution: 192dpi) {
    #nibi-video-wrapper .text-overlay>span.expanded {
        font-size: 25px;
    }

    #nibi-video-wrapper .text-overlay h2 {
        font-size: 70px;
    }

    #nibi-video-wrapper .container,
    #nibi-video-wrapper .container .content-wrapper {
        height: max(188px, 25vh);
    }

    #nibi-video-wrapper .container p {
        font-size: 25px;
    }

    #nibi-video-wrapper .container a.mlkn-button {
        font-size: 20px;
        width: 400px;
    }
}

#honoring-wrapper {
    position: relative;
    padding: 10rem;
}
#honoring-wrapper p {
    color: #616365;
    font-size: 16px;
}
#honoring-wrapper h2 {
    color: #636466;
    font-size: 30px;
    margin-bottom: 2rem;

}
#honoring-wrapper .button-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 3rem;
    float: left;
}
#honoring-wrapper .button-container a {
    margin: 1rem 0;
    padding: 8px 12px;
    color: #636466;
    border: 1px solid #636466;
    background: transparent;
    width: fit-content;
    min-width: 274px;
    font-weight: 700;
    font-size: 16px;
}
#honoring-wrapper .button-container a:hover {
    color: #F6F4F0;
    background: #636466;
}
#honoring-wrapper .left-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 50vw;
    min-width: 900px;
    z-index: 5;
    padding: 0;
}
#honoring-wrapper .text-container {
    position: absolute;
    top: 15rem;
    z-index: 9;
}
#honoring-wrapper span.slim-1:before {
    content: "";
    float: right;
    width: 4.34375vw;
    height: calc(var(--shiftLeftHeight1) + 1px);
}

#honoring-wrapper span.slim-2:before {
    content: "";
    float: right;
    width: 6.16667vw;
    height: calc(var(--shiftLeftHeight2) + 25px);
}

#honoring-wrapper span.slim-3:before {
    content: "";
    float: right;
    width: 5.2083vw;
    height: var(--shiftLeftHeight3);
}
#honoring-wrapper .hotspots {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
}
#honoring-hotspot-1 {
    bottom: 20%;
    left: 45%;
}
#honoring-hotspot-2 {
    bottom: 28%;
    right: 36%;
}
@media (max-width: 1400px) {
    #honoring-wrapper .text-container {
        position: relative;
        top: 0;
        margin-bottom: 5rem;
        text-align: center;
    }
    #honoring-wrapper .button-container a:nth-of-type(1) {
        margin-right: 15px;
    }
    #honoring-wrapper .button-container {
        flex-direction: row;
        width: 100%;
    }
    #honoring-wrapper .left-image {
        display: none;
    }
    #honoring-hotspot-1 {
        bottom: 16%;
        left: 45%;
    }
    #honoring-hotspot-2 {
        bottom: 24%;
        right: 39%;
    }
    #honoring-wrapper span.slim-1:before, #honoring-wrapper span.slim-2:before, #honoring-wrapper span.slim-3:before {
        width: 0;
    }
}
@media (max-width: 991px) {
    #honoring-wrapper .button-container a:nth-of-type(1) {
        margin-right: 0;
    }
    #honoring-wrapper .button-container {
        flex-direction: column;
        align-items: center;
    }
    #honoring-wrapper {
        padding: 5rem;
    }
    #honoring-wrapper .button-container {
        margin-top: 1rem;
    }
}
@media (max-width: 767px) {
    .button-container a.mlkn-button, .buttons a.mlkn-button {
        font-size: 14px !important;
        letter-spacing: 0 !important;
    }
}

/*designer-wrapper*/
#designer-wrapper {
    padding: 0 10rem 10rem 10rem;
    position: relative;
}
#designer-wrapper .text-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    align-items: center;
    padding-left: 5rem;
    padding-right: 5rem;
}
#designer-wrapper .text-container img {
    margin-bottom: 7rem;
    margin-top: -5rem;
    width: 187px;
}
#designer-wrapper h2 {
    color: #636466;
    font-size: 30px;
    letter-spacing: 1.5px;
    margin-bottom: 2rem;
}
#designer-wrapper p {
    color: #616365;
    font-size: 16px;
}

/*spark wrapper*/
#spark-wrapper {
    position: relative;
    padding: 10rem;
}
#spark-wrapper p {
    color: #616365;
    font-size: 16px;
    text-align: right;
}
#spark-wrapper h2 {
    color: #636466;
    font-size: 30px;
    text-align: right;
    font-weight: 600;
    margin-bottom: 2rem;
}
#spark-wrapper .button-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 3rem;
    float: left;
}
#spark-wrapper .button-container a {
    margin: 1rem 0;
    padding: 9px;
    color: #636466;
    border: 1px solid #636466;
    background: transparent;
    width: fit-content;
    min-width: 274px;
    font-weight: 700;
    font-size: 16px;
}
#spark-wrapper .button-container a:hover {
    color: #F6F4F0;
    background: #636466;
}
#spark-wrapper .text-container {
    height: 100%;

}
#spark-wrapper .text-container .row {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: end;
}
#spark-wrapper .right-image {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50vw;
    min-width: 900px;
    z-index: 5;
    padding: 0;
}
#spark-wrapper .text-container {
    position: absolute;
    top: 0;
    z-index: 9;
    left: 0;
    height: 80%;
    width: calc(100% - 10rem);
}
#spark-wrapper span.slim-1:before {
    content: "";
    float: left;
    width: 3vw;
    height: calc(var(--shiftRightHeight1) + 1px);
}

#spark-wrapper span.slim-2:before {
    content: "";
    float: left;
    width: 0.5vw;
    height: calc(var(--shiftRightHeight2) + 15px);
}

#spark-wrapper span.slim-3:before {
    content: "";
    float: left;
    width: 0;
    height: var(--shiftRightHeight3);
}
#spark-wrapper h2:before {
    content: "";
    float: left;
    width: 16.5vw;
    height: 25px;
}
#spark-wrapper .hotspots {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
}
#spark-hotspot-1 {
    left: 24%;
    bottom: 48%;
}
#spark-hotspot-2 {
    left: 42%;
    bottom: 34%;;
}
@media (max-width: 1600px) {
    #spark-wrapper span.slim-2:before {
        width: 0;
    }
    #designer-wrapper .text-container {
        padding: 0 .5rem;
    }
    #designer-wrapper {
        padding: 5rem;
    }
    #designer-wrapper img.artifact {
        transform: scale(-1, 1);
    }
    #spark-hotspot-1 {
        left: 25%;
        bottom: 45%;
    }
}
@media (max-width: 1400px) {
    #designer-wrapper img.artifact {
        transform: none;
    }
    #spark-wrapper .right-image {
        display: none;
    }
    #designer-wrapper .text-container img {
        margin-bottom: 3rem;
    }
    #designer-wrapper {
        margin-top: 0;
        padding: 0 5rem 0 5rem;
    }
    #designer-wrapper .text-container {
        margin-bottom: 3rem;
    }
    #spark-wrapper .text-container {
        position: relative;
        width: 100%;
        margin-bottom: 3rem;
    }
    #spark-hotspot-1 {
        bottom: 37%;
    }
    #spark-hotspot-2 {
        bottom: 27%;
    }
    #spark-wrapper h2, #spark-wrapper p {
        text-align: center;
    }
    #spark-wrapper span.slim-1:before, #spark-wrapper span.slim-2:before, #spark-wrapper span.slim-3:before, #spark-wrapper h2:before {
        width: 0;
    }
    #spark-wrapper {
        padding: 7rem 10rem 10rem;
    }
}
@media (max-width: 991px) {
    #designer-wrapper {
        padding: 5rem 5rem 0 5rem;
    }
    #spark-wrapper {
        padding: 5rem;
    }
}
@media (max-width: 767px) {
    #designer-wrapper img.artifact {
        display: none;
    }
}

/*installation wrapper*/
#installation-wrapper {
    position: relative;
    padding: 0rem 10rem 10rem 10rem;
}
#installation-wrapper img {
    width: 100%;
    object-fit: cover;
    height: inherit;
}
#installation-wrapper .top-image {
    margin-bottom: 15px;
}
#installation-wrapper .left-image {
    height: var(--installationHeight);
}
#installation-hotspot-1 {
    bottom: 45%;
    right: 30%;
}
#installation-hotspot-2 {
    bottom: 15%;
    right: 50%;
}
#installation-hotspot-3 {
    bottom: 40%;
    right: 5%;
}
#installation-hotspot-4 {
    bottom: 37%;
    left: 5%;
}
#installation-hotspot-5 {
    bottom: 55%;
    left: 40%;
}
@media (max-width: 1200px) {
    #installation-wrapper .left-image {
        display: none;
    }
    #installation-wrapper .right-images {
        display: flex;
    }
    #installation-wrapper .top-image {
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding-right: 25px;
    }
}
@media (max-width: 991px) {
    #installation-wrapper .top-image {
        display: none;
    }
    #installation-wrapper {
        padding: 0 5rem 5rem 5rem;
    }
    #installation-wrapper .right-images {
        display: block;
    }
}

/*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: 8px 12px;
    border-color: #636466;
    border-radius: 25px;
    margin: 1rem;
    width: fit-content;
}
#colorline-wrapper p {
    font-size: 16px;
    color: #616365;
}

#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;
}
#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;
}
#colorline-wrapper .color-tile p b {
    font-weight: 600;
}
#colorline-wrapper h2 {
    font-size: 32px;
    color: #66625D;
    font-weight: 600;
    letter-spacing: 0.64px;
}
#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: 200px;
    width: 100%;
}
#colorline-wrapper .button-container {
    display: flex;
    flex-direction: row;
    justify-content: 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 img {
        width: 100px;
    }
    #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: 6rem;
    }
    #colorline-wrapper .button-container {
        margin: 2rem auto 5rem;
    }
}
@media (max-width: 1100px) {
    #colorline-wrapper {
        padding: 0 5rem;
    }
}
@media only screen and (max-width: 991px) {

    #colorline-wrapper .color-tile {
        display: inline-block;
        width: 16%;
        padding: 0px;
    }
    #colorline-wrapper .titles span {
        font-size: 22px;
    }
    #colorline-wrapper .color-tile p {
        font-size: 10px;
    }
    #colorline-slideshow-controls {
        padding: 0 2.5rem;
    }
    #colorline-wrapper .button-container {
        flex-direction: column;
        align-items: center;
    }
    #colorline-wrapper {
        margin-top: 1rem;
    }
    #colorline-wrapper h3 {
        margin: 2rem auto;
    }
    #colorline-wrapper a.mlkn-button {
        margin: 1rem auto;
    }
}
@media (max-width: 767px) {
    #colorline-wrapper .desktop-only {
        display: none;
    }
    #colorline-wrapper .mobile-only {
        display: revert;
    }
    
}



/* 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;
  }
  
  /* 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: 100vw;
  }
  #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: absolute;
    height: var(--visImgHeight);
    top: 0;
  }
  #visualize-hotspot-1 {
    bottom: 31%;
    left: 30%;
  }
  #visualize-hotspot-2 {
    bottom: 20%;
    right: 42%;
  }
  #visualize-hotspot-3 {
    bottom: 17%;
    left: 40%;
  }
  #visualize-hotspot-4 {
    bottom: 33%;
    right: 35%;
  }

  /* Media Queries */
  @media (min-width: 2500px) {

  }
  @media only screen and (max-width: 1600px) {

  }
  @media only screen and (max-width: 1500px) {
 
  }
  @media only screen and (max-width: 1400px) {

  }
  @media only screen and (max-width: 1200px) {
    #visualize-wrapper img {
        width: 200%;
        max-width: fit-content;
        margin-left: -25%;
    }
        #visualize-hotspot-1 {
            bottom: 30rem;
        }
    /* #visualize-hotspot-1 {
        bottom: 48vh;
    }
    #visualize-hotspot-2 {
        bottom: 32vh;
    } */
  }
  @media only screen and (max-width: 1099px) {
    #visualize-wrapper h1 {
      font-size: 40px;  
    }
    #visualize-wrapper a.mlkn-button {
      width: 260px;  
    }
  }
  @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;
    }
}
