main .cycle-pager a {
    height: 10px;
    margin: 0 10px;
    width: 80px;
    background: white;
    opacity: 0.5;
}
.hotspots {
    position: relative;
}
.hotspot-content.leftSide {
    left: revert !important;
    right: 40px !important;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 0;
}
@media only screen and (max-width: 1200px) {
    .hotspot {
        display: none !important;
    }
}

/*** 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;
    }
}


/*** 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: 10rem;
    right: 25%;
}
.cycle-pager a {
    width: 100px;
    height: 15px;
    background: transparent;
    margin: 0 15px;
    border-radius: 25px;
    border: 1px solid #fff;
}
.cycle-pager a.cycle-pager-active {
    opacity: 1 !important;
}


/*** 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: 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 only screen and (max-width: 991px) {
    .hotspot {
        display: none;
    }
}


/*** The topsection WRAPPER ***/
#echo-field-video-wrapper {
    min-height: 90vh;
    position: relative;
    background: #474647;
    padding: 0;
}
/* >> The topsection - Video Container */
#echo-field-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;
}
#echo-field-video-wrapper .video-container video {
    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 Video - Text Overlay */
#echo-field-video-wrapper .text-overlay {
    color: #fff;
    position: absolute;
    /* top: max(263px, 38vh); */
    text-align: center;
    z-index: 10;
    max-width: 1100px;
}
#echo-field-video-wrapper .text-overlay > span {
    font-size: 20px;
    display: block;
    margin-top: 25px;
    letter-spacing: 5px;
}
#echo-field-video-wrapper .text-overlay h2 {
    font-size: 120px;  
    letter-spacing: 36px;
    margin-bottom: 15px;
    font-weight: 600 !important;
    color: #fff;
    margin: 0;
    margin-top: 10px;
}
#echo-field-video-wrapper h3 {
    font-size: 35px;
    font-weight: bold !important;
    letter-spacing: 3.85px;
    color: white;
}
#echo-field-video-wrapper h3.below-title {
    margin-top: 2vh;
}
#echo-field-video-wrapper .text-overlay span {
    font-size: 25px;
    letter-spacing: 3px;
}
#echo-field-video-wrapper .text-overlay p.below-title{
    font-size: 22px;
    letter-spacing: 1px;
    margin-top: 10px;
}
#echo-field-video-wrapper .bottom-text {
    letter-spacing: 1px;
    margin-top: 10px;
    bottom: 3vh;
    position: absolute;
    color: white;
    text-align: center;
}
#echo-field-video-wrapper .bottom-text p {
    font-size: 18px;
}
#echo-field-video-wrapper .bottom-text img {
    margin-top: 3vh;
    max-width: 40px;
}
#echo-field-video-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;
}
#echo-field-video-wrapper a.mlkn-button:hover {
    color: #fff;
    background: #000;
}
/* >> The topsection - Text Container */
#echo-field-video-wrapper .container {
    min-height: 25vh;
}
#echo-field-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;
}
#echo-field-video-wrapper .container p {
    color: #fff;
    text-align: center;
    font-size: 18px;
    padding-bottom: 15px;
}
#echo-field-video-wrapper .container .button-wrapper {
    text-align: center;
}
#echo-field-video-wrapper .container a.mlkn-button {
    border: 1px solid #fff;
    color: #000;
    font-weight: bold;
    letter-spacing: 1px;
    background: #fff;
    width: 310px;
}
#echo-field-video-wrapper .container a.mlkn-button:last-of-type {
    margin-left: 15px;
}
#echo-field-video-wrapper .mobileOnly {
    display: none;
}
#echo-field-video-wrapper p {
    margin: 2rem;
}
#echo-field-video-wrapper img.redListLogo {
    max-width: 150px;
    margin: 1rem;
}
/* >> Modular Landscapes - Media Queries */
@media only screen and (max-width: 1600px) {
    #echo-field-video-wrapper .text-overlay {
        max-width: 1000px;
    }
    #echo-field-video-wrapper .text-overlay h2 {
        font-size: 100px;
        letter-spacing: 25px;
    }
}
@media only screen and (max-width: 1200px) {
    #echo-field-video-wrapper .text-overlay h2 {
        font-size: 66px;
        letter-spacing: 12px;
    }
    #echo-field-video-wrapper h3 {
        font-size: 25px;
    }
}
@media only screen and (max-width: 991px) {
    #echo-field-video-wrapper {
        height: auto;
        min-height: 85vh;
    }
    #echo-field-video-wrapper .container,
    #echo-field-video-wrapper .container .content-wrapper {
        height: auto;
        min-height: 25vh;
    }
    #echo-field-video-wrapper .container p {
        padding-bottom: 0;
        font-size: 16px;
    }
    #echo-field-video-wrapper .container a.mlkn-button,
    #echo-field-video-wrapper .container a.mlkn-button:last-of-type {
        display: block;
        margin: 15px auto 0;
    }
    #echo-field-video-wrapper img.redListLogo {
        margin: 1vh;
    }
    #echo-field-video-wrapper .text-overlay h2 {
        font-size: 60px;
        letter-spacing: 10px;
    }
}
@media only screen and (max-width: 767px) {
    #echo-field-video-wrapper .text-overlay {
        width: 100%;
        padding: 10px;
    }
    #echo-field-video-wrapper .text-overlay h2 {
        font-size: 50px;
        letter-spacing: 8px;
    }
    #echo-field-video-wrapper .mobileOnly {
        display: revert;
    }
    #echo-field-video-wrapper .desktopOnly {
        display: none;
    }
    #echo-field-video-wrapper h3 {
        font-size: 20px;
    }
}
@media only screen and (max-width: 600px) {
    #echo-field-video-wrapper .text-overlay h2 {
        font-size: 45px;
    }
    #echo-field-video-wrapper .text-overlay span {
        font-size: 20px;
    }
}
@media only screen and (max-width: 500px) {
    #echo-field-video-wrapper .text-overlay > span.expanded {
        font-size: 15px;
        letter-spacing: 3px;
    }
    #echo-field-video-wrapper .text-overlay span {
        font-size: 18px;
        letter-spacing: 2px;
    }
    #echo-field-video-wrapper .text-overlay h2 {
        font-size: 36px;
        letter-spacing: 6px;
    }
    #echo-field-video-wrapper .container a.mlkn-button {
        font-size: 15px;
        width: 100%;
    }
    #echo-field-video-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) {
    #echo-field-video-wrapper .text-overlay > span.expanded {
        font-size: 25px;
    }
    #echo-field-video-wrapper .text-overlay h2 {
        font-size: 110px;
    }
    #echo-field-video-wrapper .container,
    #echo-field-video-wrapper .container .content-wrapper {
        height: max(188px, 25vh);
    }
    #echo-field-video-wrapper .container p {
        font-size: 25px;
    }
    #echo-field-video-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) {
    #echo-field-video-wrapper .text-overlay h2 {
        font-size: 40px;
        letter-spacing: 7px;
    }
}

/* birdseye wrapper */
#birdseye-wrapper {
    padding: 0;
    position: relative;
}
#birdseye-wrapper > div {
    padding: 10rem 20rem;
    display: flex;
}
#birdseye-wrapper .text-container {
max-width: 40%;
display: flex;
flex-direction: column;
justify-content: center;
padding-right: 6rem;
}
#birdseye-wrapper .image-container {
    display: flex;
    justify-content: flex-end;
    width: 100%;
}
#birdseye-wrapper p {
    font-size: 16px;
    color: #616365;
    padding-bottom: 2rem;
}
#birdseye-wrapper p.title {
    font-size: 42px;
    color: #636466;
    letter-spacing: 8.4px;
    font-weight: 600;
    line-height: normal;
}
#birdseye-wrapper a.mlkn-button {
    margin-top: 4rem;
    background-color: white;
    font-size: 16px;
    color: #636466;
    font-weight: 600;
    padding: 1rem 4rem;
    border-color: #636466;
    border-radius: 25px;
    width: fit-content;
}
#birdseye-wrapper a.mlkn-button:hover {
    background: #636466;
    color: white;
}
#birdseye-wrapper img {
    width: 40.625vw;
}
@media (max-width: 1400px) {
    #birdseye-wrapper img {
        width: 100%;
        object-fit: contain;
    }
    #birdseye-wrapper > div {
        padding: 10rem;
    }
}
@media (max-width: 1200px) {
    #birdseye-wrapper > div {
        padding: 10rem 0 10rem 10rem;
    }
    #birdseye-wrapper p.title {
        font-size: 36px;
    }
}
@media (max-width: 991px) {
    #birdseye-wrapper > div {
        flex-direction: column;
        padding: 5rem;
    }
    #birdseye-wrapper .text-container {
        padding: 0;
        margin-bottom: 5rem;
        max-width: 100%;
    }
    #birdseye-wrapper img {
        transform: scale(-1, 1);
        rotate: -90deg;
        width: 100%;
        object-fit: contain;
    }
    #birdseye-wrapper p.title {
        font-size: 24px;
    }
    #birdseye-wrapper a.mlkn-button {
        margin-top: 1rem;
    }
}
@media (max-width: 767px) {
    #birdseye-wrapper a.mlkn-button {
        padding: 1rem 2rem;
    }
}
/*installation wrapper*/
#installation-wrapper {
    padding: 0;
    position: relative;
}
#installation-wrapper .image-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
#installation-wrapper .image-container img:nth-of-type(2) {
    margin: 0 1rem;
    width: 79.8vw;
    object-fit: cover;
}
#installation-wrapper .image-container img:nth-of-type(1), #installation-wrapper .image-container img:nth-of-type(3) {
    width: 10.1vw;
}
#installation-wrapper p:not(.hotspot-content p) {
    color: white;
    font-size: 36px;
    font-weight: 600;
    letter-spacing: 3.6px;
}
#installation-wrapper .floating-left {
    position: absolute;
    top: 10rem;
    left: 10.1vw;
    border-bottom: 5px solid white;
    padding-bottom: 2rem;
    padding-left: 5rem;
}
#installation-wrapper .floating-right {
    position: absolute;
    bottom: 10rem;
    right: 10.1vw;
    border-bottom: 5px solid white;
    padding-bottom: 2rem;
    padding-right: 5rem;
}
#installation-hotspot-1 {
    bottom: 25%;
    left: 22vw;
}
#installation-hotspot-2 {
    bottom: 45%;
        left: 50vw;
}
@media (max-width: 991px) {
    #installation-wrapper {
        padding: 5rem 5rem 0;
    }
    #installation-wrapper .image-container img:nth-of-type(1), #installation-wrapper .image-container img:nth-of-type(3) {
        display: none;
    }
#installation-wrapper .image-container img:nth-of-type(2) {
    width: 100%;
    margin: 0;
}
#installation-wrapper .floating-left {
    left: 5vw;
}
#installation-wrapper .floating-right {
    right: 5vw;
    bottom: 5rem;
}
#installation-wrapper p:not(.hotspot-content p) {
    font-size: 24px;
}
}
@media (max-width: 767px) {
    #installation-wrapper {
        padding: 5rem 0 0;
    }
    #installation-wrapper .floating-left {
        left: 0;
    }
    #installation-wrapper .floating-right {
        right: 0;
    }
}

/*feature wrapper*/
#feature-wrapper {
    padding: 0;
    position: relative;
}

#feature-wrapper p.title:not(.hotspot-content p) {
    font-size: 36px;
    letter-spacing: 3.6px;
    font-weight: 600;
    color: #636466;
    margin-bottom: 2rem;
    line-height: normal;
}
#feature-wrapper p:not(.hotspot-content p) {
    font-size: 16px;
    color: #616365;
}
#feature-wrapper .left-container {

}
#feature-wrapper .image-container {
    position: relative;
}
#feature-wrapper .right-container {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}
#feature-wrapper .left-container .hotspots {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
#feature-wrapper .top-text {
    padding: 10rem 10rem 10rem 20rem;
}
#feature-wrapper .bottom-text {
    padding: 10rem 10rem 10rem 20rem;
}
#feature-wrapper .top-image {
    display: flex;
    justify-content: end;
    margin-top: 10rem;
}
#feature-wrapper .bottom-image {
    padding-left: 8.5rem;
}
#feature-wrapper .cycle-pager {
    left: 0;
    width: 50%;
    bottom: var(--featurePagerHeight);
}
#feature-hotspot-1 {
    bottom: 15%;
    left: 15%;
}
#feature-hotspot-2 {
    right: 15%;
    bottom: 33%;
}
.feature-hotspot-3 {
    bottom: 54%;
    left: 5vw;
}
.feature-hotspot-4 {
    bottom: 35%;
    left: 10vw;
}
.feature-hotspot-5 {
    bottom: 10%;
    left: 20vw;
}
.feature-hotspot-6 {
    top: 5%;
    left: 29vw;
}
#feature-hotspot-7 {
    bottom: 35%;
    right: 35%;
}
#feature-hotspot-8 {
    bottom: 30%;
    left: 45%;
}
@media (max-width: 1200px) {
    #feature-wrapper .top-text, #feature-wrapper .bottom-text {
        padding: 5rem 5rem 5rem 10rem;
    }
    #feature-wrapper .right-container {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        height: 100%;
    }
    #feature-wrapper p.title:not(.hotspot-content p) {
        font-size: 30px;
    }
}
@media (max-width: 991px) {
    #feature-wrapper p.title:not(.hotspot-content p) {
        font-size: 24px;
    }
    #feature-wrapper .bottom-image {
        display: none;
    }
    #feature-wrapper .top-image {
        margin-top: 0;
        justify-content: center;
    }
    #feature-wrapper .top-image img {
        max-width: min(90vw, 450px);
    }
    #feature-wrapper .cycle-pager {
        width: 100%;
        left: 0;
        top: var(--featurePagerHeightMobile);
        height: fit-content;
    }
    #feature-wrapper .top-text, #feature-wrapper .bottom-text {
        padding: 5rem;
    }
}


/*serene wrapper*/
#serene-wrapper {
    padding: 0;
    position: relative;
}
#serene-wrapper p:not(.hotspot-content p) {
    font-size: 16px;
    color: #616365;
}
#serene-wrapper p.title:not(.hotspot-content p) {
    font-size: 36px;
    letter-spacing: 3.6px;
    font-weight: 600;
    color: #636466;
    margin-bottom: 2rem;
    line-height: normal;
}
#serene-wrapper .text-container {
    padding: 10rem 10rem 10rem 20rem;
}
#serene-wrapper .top .left-container img {
    margin: auto 20rem;
    max-width: 60%;
}
#serene-wrapper .bottom .image-container {
    padding-left: 8.5rem;
    display: flex;
    height: 100%;
    object-fit: cover;
}
#serene-wrapper .bottom .right .text-container {
    padding: 10rem 20rem 10rem 8.5rem;
    display: none;
}
#serene-wrapper .right > div {
    height: 100%;
}
#serene-wrapper .image-container {
    position: relative;
}
#serene-wrapper .image-container .hotspots {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}
#serene-hotspot-1 {
    left: 45%;
    bottom: 45%;
}
#serene-hotspot-2 {
    bottom: 15%;
    right: 40%;
}
#serene-hotspot-3 {
    bottom: 30%;
    left: 45%;
}
#serene-hotspot-4 {
    bottom: 45%;
    left: 25%;
}
@media (max-width: 1200px) {
    #serene-wrapper .top .left-container img {
        display: none;
    }
    #serene-wrapper .image-container {
        display: flex;
        justify-content: center;
    }
    #serene-wrapper .text-container {
        padding: 5rem 10rem;
    }
    #serene-wrapper .bottom .image-container {
        padding: 0 10rem;
        display: none;
    }
    #serene-wrapper .bottom .image-container img {
        max-height: 60vh;
        width: 100%;
        object-fit: cover;
        padding: 0;
        object-position: bottom;
    }
    #serene-wrapper .bottom div > div {
        display: flex;
        flex-direction: column;
    }
    #serene-wrapper .bottom .right .text-container {
        padding: 5rem 10rem;
    }
    #serene-wrapper p.title:not(.hotspot-content p) {
        font-size: 30px;
    }
    #serene-wrapper .image-container img {
        width: 100%;
        padding: 0 10rem;
    }
    #serene-wrapper .bottom .right .image-container img {
        display: none;
    }
}
@media (max-width: 991px) {
    #serene-wrapper p.title:not(.hotspot-content p) {
        font-size: 24px;
    }
    #serene-wrapper .text-container {
        padding: 5rem;
    }
    #serene-wrapper .image-container img {
        padding: 0 5rem;
    }
    #serene-wrapper .bottom .image-container {
        padding: 0;
    }
    #serene-wrapper .bottom .right .text-container {
        padding: 5rem;
    }
}
@media (max-width: 767px) {
  
    #serene-wrapper .image-container img {
        width: 100%;
        padding: 0 5rem;
    }
}

/*colorline-wrapper*/
#colorline-wrapper {
    position: relative;
    padding: 0 12.5%;
    margin-top: 10rem;
}

#colorline-wrapper .slide {
    width: 100%;
}

#colorline-wrapper .top-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
#colorline-wrapper .bottom-row {
    margin-top: 2.5rem;
}
#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;
}
#colorline-wrapper p {
    font-size: 16px;
    color: #616365;
    text-align: left;
}

#colorline-wrapper .p-box {
    min-width: 300px;
    width: 25%;
    margin-right: 3rem;
}
#colorline-wrapper .titles span {
    font-size: 38px;
    color: #616365;
    opacity: 0.2;
    line-height: normal;
    white-space: nowrap;
    letter-spacing: 4.2px;
    font-weight: 500;
    padding: 0 1rem;
}
#colorline-wrapper  h2 {
    font-size: 24px;
    color: #616365;
    letter-spacing: 2.4px;
    font-weight: 600;
}
#colorline-wrapper .titles span.active {
    opacity: 1;
}
#colorline-wrapper .titles {
    margin: auto 0;
    display: flex;
    justify-content: center;
    width: 100%;
}

#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: space-between;  
    margin-top: 20px;
}
#colorline-wrapper .color-tile {
    display: inline-block;
    
    padding: 5px;
}

#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 a {
    text-decoration: none;
}
#colorline-wrapper .blank-tile {
    width: var(--blankTileWidth) !important;
}
#colorline-wrapper .color-tile.set-width img {
    width: var(--colorTileWidth) !important;
}
#colorline-wrapper .cycle-pager {
    display: none !important;
}
#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: 100% !important;
    width: 100px !important;
    max-width: 100%;
}
#colorline-wrapper .button-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
    padding: 5rem;
    margin-top: 5rem;
}

/* >> 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 {
    
    margin: 4rem 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;
    margin-top: 10rem;
}
#colorline-mobile img {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
}
#colorline-mobile .color-tile {
    display: inline-block;
    width: 33.3%;
    padding: 7px;
}
#colorline-mobile-slideshow-controls {
    display: none;
}
#colorline-mobile {
    display: none;
}
/* >> Colorline - Media Queries */
@media (max-width: 1700px) {
    #colorline-wrapper .color-tile p {
        letter-spacing: 0;
        font-size: 13px;
    }
}
@media only screen and (max-width: 1650px) {
    /* #colorline-large-slideshow-wrapper .color-tile img {
        width: 125px;
        height: 125px;
    } */
}
@media only screen and (max-width: 1500px) {
    /* #colorline-large-slideshow-wrapper .color-tile {
        width: 11%;
    }
    #colorline-large-slideshow-wrapper .color-tile img {
        width: 110px;
        height: 110px;
    } */
    #colorline-wrapper {
        padding: 0 5%;
    }
}
@media (max-width: 1400px) {
    #colorline-wrapper .titles span {
        white-space: normal;
        font-size: 28px;
        text-align: center;
    }
    #colorline-wrapper .titles span.active {
        font-weight: 600;
        border-bottom: none;
    }
    #colorline-wrapper .titles span:first-of-type {
        text-align: left;
    }
    #colorline-wrapper .titles span:last-of-type {
        text-align: right;
    }
    #colorline-wrapper .color-tile p {
        letter-spacing: -1px;
        font-size: 12px;
    }

}
@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-wrapper .color-tile img {
        height: 100px;
        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;
    }
}
@media (max-width: 1100px) {
    #colorline-wrapper {
        padding: 0 5rem;
    }
}
@media only screen and (max-width: 991px) {
    #colorline-wrapper .cycle-pager {
        display: none;  
    }
    #colorline-slideshow-controls {
        display: block;  
    }
    #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-wrapper .cycle-slideshow, #colorline-slideshow-controls {
        display: none;
    }
    #colorline-mobile {
        display: block;
    }
}
@media only screen and (max-width: 767px) {

    #colorline-wrapper .container-fluid {
        min-height: 0;
    }
    #colorline-wrapper .top-content h2 {
        margin-top: 0;
    }
    #colorline-wrapper .color-tile {
        display: inline-block;
        width: 18%;
        padding: 7px;
    }
    #colorline-wrapper .button-container {
        padding: 5rem 0;
    }

    #colorline-wrapper {
        padding: 0 2rem;
    }
    #colorline-wrapper .cycle-slideshow, #colorline-slideshow-controls {
        display: none;
    }
    #colorline-mobile {
        display: block;
    }
    #colorline-wrapper p {
        margin-bottom: 3rem;
    }
}
@media only screen and (max-width: 500px) {
    #colorline-wrapper a.mlkn-button {
        width: auto;
    }
    #colorline-wrapper {
        height: fit-content;
    }
}




/* 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%;
    margin-top: 10rem;
    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: 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: 24rem;
    right: 35vw;
  }
  #visualize-hotspot-2 {
    bottom: 10rem;
    right: 42vw;
  }

  /* Media Queries */
  @media (min-width: 2500px) {
    #visualize-wrapper #visualize-hotspot-1 {
        bottom: 40rem;
    }
    #visualize-wrapper #visualize-hotspot-2 {
        bottom: 15rem;
    }
  }
  @media only screen and (max-width: 1600px) {
    /* #visualize-hotspot-1 {
        bottom: 42vh;
    }
    #visualize-hotspot-2 {
        bottom: 28vh;
    } */
  }
  @media only screen and (max-width: 1500px) {
    #visualize-hotspot-1 {
        bottom: 23rem;
    }
  }
  @media only screen and (max-width: 1400px) {
    #visualize-hotspot-1 {
        bottom: 20rem;
    }
  }
  @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;
    }
}

