/*** BODY ***/
body {
    position: relative;  
  }
  main {
    overflow-x: hidden;
  }
  video {
    width: 90%;
  }
  /*** HEADINGS ***/
  h1 {
    font-size: 37px;  
  }
  
  /*** MARGINS FOR CAROUSELS ***/
  #why-acoustics-slideshow-wrapper .slide .left-content > div {
    transform: none;
    margin-left: var(--whyAcousticsSurfaceContent);
  }
  #why-acoustics-slideshow-controls {
    transform: none !important;
    left: var(--whyAcousticsSurfaceControls) !important;
  }
  #soft-surface-slideshow-wrapper .slide .left-content > div {
    transform: none;
    margin-left: var(--softSurfaceContent);
  }
  #soft-surface-slideshow-controls {
    transform: none !important;
    left: var(--softSurfaceControls) !important;
  }
  #hard-surface-slideshow-wrapper .slide .left-content > div {
    transform: none;
    margin-left: var(--hardSurfaceContent);
  }
  #hard-surface-slideshow-controls {
    transform: none !important;
    left: var(--hardSurfaceControls) !important;
  }
  #wellbac-cushion-wrapper video {
    margin-top: var(--wellbacVideoTopMargin);
  }
  
  
  /*** NAVBAR CIRCLES ***/
  #navbar-circles {
    position: fixed;
    right: 50px;
    top: 30vh;
    z-index: 500;
  }
  #navbar-circles > a {
    display: block;
    color: #fff;
    font-size: 20px;
    position: relative;
    top: -20px;
    left: -11px;
  }
  #navbar-circles > a,
  #navbar-circles > a:link,
  #navbar-circles > a:active,
  #navbar-circles > a:focus {
    text-decoration: none;  
  }
  #navbar-circles ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  #navbar-circles li {
    display: block;  
    float: none;
    margin-bottom: 20px;
    height: 15px;
  }
  #navbar-circles li a {
    display: block;
    width: 15px;
    height: 15px;
    border-radius: 8px;
    padding: 0;
    border: 2px solid #fff;
    background: transparent;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    position: relative;
    display: block !important;
  }
  #navbar-circles a::before {
    color: #fff;
    position: absolute;
    left: -210px;
    top: -8px;
    text-align: right;
    float: right;
    display: none;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    white-space: nowrap;
    width: 200px;
  }
  #navbar-circles a[href="#introduction-wrapper"]::before {
    content: "Introduction";
  }
  #navbar-circles a[href="#why-acoustics-wrapper"]::before {
    content: "Why Acoustics";
  }
  #navbar-circles a[href="#wellbac-cushion-wrapper"]::before {
    content: "WellBAC Cushion";
  }
  #navbar-circles a[href="#soft-surface-wrapper"]::before {
    content: "Soft Surface";
  }
  #navbar-circles a[href="#flexform-sound-wrapper"]::before {
    content: "Flexform Sound";
  }
  #navbar-circles a[href="#hard-surface-wrapper"]::before {
    content: "Hard Surface";
  }
  #navbar-circles a[href="#quietlife-wrapper"]::before {
    content: "QuietLife";
  }
  #navbar-circles a[href="#hear-the-difference-wrapper"]::before {
    content: "Hear the Difference";
  }
  #navbar-circles a[href="#mixed-formations-wrapper"]::before {
    content: "Mixed Formations";
  }
  #navbar-circles.zh a::before {
    content: "" !important;
  }
  
  #navbar-circles li > a.active,
  #navbar-circles li > a.active:focus,
  #navbar-circles li > a.active:hover {
    background: #fff;
  }
  #navbar-circles li > a.active::before,
  #navbar-circles li > a.active:focus::before,
  #navbar-circles li > a.active:hover::before {
    display: inline-block;
  }
  /*  >> Nav Circles - Dark Theme */
  #navbar-circles.dark-theme > a {
    color: #333;  
  }
  #navbar-circles.dark-theme li a {
    border: 2px solid #333;
  }
  #navbar-circles.dark-theme a::before {
    color: #333;
  }
  #navbar-circles.dark-theme li > a.active,
  #navbar-circles.dark-theme li > a.active:focus,
  #navbar-circles.dark-theme li > a.active:hover {
    background: #333;
  }
  /* >> Nav Circles - Media Queries */
  @media only screen and (max-width: 991px) {
    h1 {
        font-size: 30px;  
    }
    #navbar-circles {
        display: none;  
    }
  }
  
  /*** INTRODUCTION ***/
  #introduction-wrapper {
    background: #333; 
    position: relative;
    z-index: 2;
    padding: 0;
  }
  #introduction-wrapper .video-container {
    position: relative;
    height: 100vh;
  }
  /* >> Introduction - Video */
  #introduction-wrapper .video-container video {
    width: 100%;
    height: 100vh;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: bottom;
    object-position: bottom;
  }
  /* >> Introduction - Text Overlay */
  #introduction-wrapper .text-overlay {
    color: #fff;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    top: 28vh;
    text-align: center;
    z-index: 10;
    max-width: 1000px;
  }
  #introduction-wrapper .text-overlay > span {
    font-size: 20px;
    display: block;
    margin-top: 25px;
    letter-spacing: 5px;
  }
  #introduction-wrapper .text-overlay h1 {
    font-size: 75px;  
    letter-spacing: 10px;
    margin-bottom: 15px;
    font-weight: 100 !important;
    color: #fff;
    margin: 0;
    width: 1000px;
  }
  #introduction-wrapper .text-overlay > span.expanded {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 25px;
  }
  #introduction-wrapper .text-overlay > span.expanded b {
    font-weight: 500 !important;
  }
  #introduction-wrapper .text-overlay > span:last-of-type {
    margin-top: 20px;
  }
  #introduction-wrapper .text-overlay > img {
    width: 100px;
    display: block;
    margin: 40px auto;
  }
  #introduction-wrapper .text-overlay > p {
    font-size: 18px;
  }
  /* >> Introduction - Media Queries */
  @media only screen and (max-width: 1300px) {
    #introduction-wrapper .text-overlay > span.expanded {
        margin-top: 0;
        margin-bottom: 50px;
        font-size: 22px;
    }
    #introduction-wrapper .text-overlay h1 {
        font-size: 60px;
    }
  }
  @media only screen and (max-width: 1200px) {
    #introduction-wrapper .text-overlay h1 {
        font-size: 50px;
        width: 700px;
    }
    #introduction-wrapper .text-overlay > p {
        width: 600px;
        margin: 0 auto;
    }
  }
  @media only screen and (max-width: 1100px) {
    #introduction-wrapper .text-overlay > span.expanded {
        margin-bottom: 30px;
    }
    #introduction-wrapper .text-overlay h1 {
        font-size: 40px;
        width: auto;
    }
    #introduction-wrapper .text-overlay > span {
        font-size: 18px;
    }
  }
  @media only screen and (max-width: 991px) {
    #introduction-wrapper .text-overlay {
        top: 30vh;  
    }
    #introduction-wrapper .text-overlay > span {
        letter-spacing: 5px;
    }
    #introduction-wrapper .text-overlay > span:last-of-type {
        top: 70px;
    }
    #introduction-wrapper .text-overlay > p {
        font-size: 16px;
    }   
  }
  @media only screen and (max-width: 767px) {
    #introduction-wrapper .text-overlay > span.expanded {
        font-size: 20px;
    }
    #introduction-wrapper .text-overlay {
        width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }
    #introduction-wrapper .text-overlay > p {
        width: auto;
    }
  }
  @media only screen and (max-width: 600px) {
    #introduction-wrapper .text-overlay {
        top: 25vh;
    }
    #introduction-wrapper .text-overlay > span.expanded {
        font-size: 18px;
    }
    #introduction-wrapper .text-overlay > span {
        font-size: 17px;
        letter-spacing: 2px; 
    }
    #introduction-wrapper .text-overlay h1 {
        font-size: 35px;
        letter-spacing: 5px;
    }
    #introduction-wrapper .text-overlay > span:last-of-type {
        top: 30px;
    } 
  }
  @media only screen and (max-width: 500px) {
    #introduction-wrapper .text-overlay h1 {
        font-size: 29px;
        letter-spacing: 2px;
    }
  }
  /* >> Introduction - iMac 4K */
  @media only screen and (min-width: 2500px) and (-webkit-min-device-pixel-ratio: 2) and (min-resolution: 192dpi) {
    #introduction-wrapper .text-overlay > span.expanded {
        margin-bottom: 50px;
    }
    #introduction-wrapper .text-overlay {
        width: auto;
        max-width: 1400px;
    }
    #introduction-wrapper .text-overlay h1 {
        font-size: 120px;
        width: 1400px;
    }
    #introduction-wrapper .text-overlay > span.expanded,
    #introduction-wrapper .text-overlay > span {
        font-size: 35px;
    }
    #introduction-wrapper .text-overlay > span:last-of-type {
        margin-top: 50px;
    }
    #introduction-wrapper .text-overlay > p {
        font-size: 25px;
    }
  }
  /* >> Introduction - iPhone 5, 5C, 5S, SE */
  @media only screen and (device-width: 320px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait) {
    #introduction-wrapper .text-overlay {
        top: 22vh;
    }    
    #introduction-wrapper .text-overlay h1 {
        font-size: 24px;
    }
    #introduction-wrapper .text-overlay > span {
        font-size: 15px;
    }
    #introduction-wrapper .text-overlay > span.expanded,
    #introduction-wrapper .text-overlay > span:last-of-type {
        top: 20px;
    }      
  }
  
  /*** WHY ACOUSTICS ***/
  #why-acoustics-wrapper {
    position: relative;
    padding: 0;
    background: black;
  }
  #why-acoustics-outer-wrapper {
    position: relative;
  }
  /* >> Why Acoustics - Slideshow */
  #why-acoustics-slideshow-wrapper .cycle-slideshow {
    width: 100%;  
    height: 100vh;
  }
  #why-acoustics-slideshow-wrapper .slide {
    width: inherit;
    height: inherit;
  }
  #why-acoustics-slideshow-wrapper .slide > div {
    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;
  }
  /* >> Why Acoustics - Slide Content */
  #why-acoustics-slideshow-wrapper .slide .left-content,
  #why-acoustics-slideshow-wrapper .slide .right-content {
    height: 100vh;
  }
  #why-acoustics-slideshow-wrapper .slide .right-content {
    background-size: cover;
    background-repeat: no-repeat;
    background-color: transparent;
    width: 55vw;
    order: 2;
    position: relative;
  }
  #why-acoustics-slideshow-wrapper .slide .left-content {
    background: #000;
    width: 45vw;
    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;
    order: 1;
  }
  #why-acoustics-slide-1 .right-content {
    background-image: url('/-/media/91787a2f3b524303b1b0bbee4f24b7be.ashx');
  }
  #why-acoustics-slide-2 .right-content {
    background-image: url('/-/media/478cf6b323df44c08a5d6e26d140a657.ashx');
  }
  #why-acoustics-slide-3 .right-content {
    background-image: url('/-/media/4f9464ed6ada4357b46ecbfea821f7bf.ashx');
  }
  #why-acoustics-wrapper.ap #why-acoustics-slide-1 .right-content {
    background-image: url('/-/media/390598a45e174506ba016c8766f473ae.ashx');
  }
  #why-acoustics-wrapper.ap #why-acoustics-slide-2 .right-content {
    background-image: url('/-/media/5410cf1dc6cb402498027052063c8e4c.ashx');
  }
  #why-acoustics-wrapper.ap #why-acoustics-slide-3 .right-content {
    background-image: url('/-/media/1ae314123c074760a7c8afdeea9b8e4a.ashx');
  }
  #why-acoustics-wrapper.au #why-acoustics-slide-1 .right-content {
    background-image: url('/-/media/b7b62b68896b44eea686ec0ad1afc9ab.ashx');
  }
  #why-acoustics-wrapper.au #why-acoustics-slide-2 .right-content {
    background-image: url('/-/media/89d993a2e06f492c855429cfc908f850.ashx');
  }
  #why-acoustics-wrapper.au #why-acoustics-slide-3 .right-content {
    background-image: url('/-/media/e84c7e8079a44544a5bed5753dcf3b09.ashx');
  }
  #why-acoustics-slideshow-wrapper .slide .left-content > div {
    max-width: 500px;
    margin: 0 auto;
    margin-right: 175px;
  }
  #why-acoustics-slideshow-wrapper .slide .left-content img {
    width: 200px;
    display: block;
    margin: 0 auto 20px;
  }
  #why-acoustics-slideshow-wrapper .slide .left-content h1 {
    color: #fff;
    font-size: 35px;
    text-align: center;
    font-weight: 100 !important;
    margin-bottom: 0;
  }
  #why-acoustics-slideshow-wrapper .slide .left-content h2 {
    color: #fff;
    font-size: 20px;
    text-align: center;
    font-weight: 500 !important;
    margin-top: 30px;
    margin-bottom: 30px;
  }
  #why-acoustics-slideshow-wrapper .slide .left-content p {
    font-size: 18px;
    color: #fff;
    line-height: 1.5em;
    text-align: center;
    padding-bottom: 20px;
  }
  #why-acoustics-slideshow-wrapper .slide .left-content span {
    display: block;
    color: #fff;
    text-align: center;
    margin-top: 30px;
  }
  #why-acoustics-slide-2 .slide .left-content span {
    top: 95px;
  }
  /* >> Why Acoustics - Slideshow Controls */
  #why-acoustics-slideshow-controls {
    position: absolute;
    bottom: 10vh;
    left: 40%;
    transform: translateX(-250%);
    z-index: 100;
  }
  #why-acoustics-slideshow-controls button {
    border-radius: 0;
    border: 1px solid #fff;
    background: #000;
    padding: 15px 23px;
    font-size: 30px;
    color: #fff;
  }
  #why-acoustics-slideshow-controls button:last-of-type {
    margin-left: 30px;  
  }
  #why-acoustics-slideshow-controls button:focus {
    outline: none;
  }
  /* >> Why Acoustics - Media Queries */
  @media only screen and (max-width: 1700px) {
    #why-acoustics-slideshow-wrapper .slide .left-content > div {
        margin-left: 50px;
        margin-right: 125px;
    }
    #why-acoustics-slideshow-controls {
        transform: translateX(-226%);
    }
  }
  @media only screen and (max-width: 1520px) {
    #why-acoustics-slideshow-wrapper .slide .left-content h1 {
        font-size: 27px;
    }
    #why-acoustics-slideshow-wrapper .slide .left-content p {
        font-size: 17px;
    }
  }
  @media only screen and (max-width: 1450px) {
    #why-acoustics-slideshow-wrapper .slide .left-content > div {
        max-width: 400px;
        margin: 0 0 0 50px;
    }
    #why-acoustics-slideshow-wrapper .slide .left-content h1 {
        font-size: 27px;
    }
  }
  @media only screen and (max-width: 1300px) {
    #why-acoustics-slideshow-wrapper .cycle-slideshow {
        height: auto;
        min-height: 100vh;
    }
    #why-acoustics-slideshow-wrapper .slide .left-content,
    #why-acoustics-slideshow-wrapper .slide .right-content {
        width: 100vw;
    }
    #why-acoustics-slideshow-wrapper .slide .right-content {
        height: 65vh;
        order: 1;
    }
    #why-acoustics-slideshow-wrapper .slide .left-content {
        min-height: 60vh;
        height: auto;
        padding: 30px 15px;
        order: 2;
    }
    #why-acoustics-slideshow-wrapper .slide > div {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    #why-acoustics-slideshow-wrapper .slide .right-content {
        background-position: center;
    }
    #why-acoustics-slideshow-wrapper .slide .left-content > div {
        width: 90%;
        max-width: 500px;
        margin: 0 auto;
    }
    #why-acoustics-slideshow-wrapper .slide .left-content p {
        font-size: 18px;
    }
    #why-acoustics-slideshow-controls {
        bottom: auto;
        right:  auto;
        left: 50%;
        transform: translateX(-50%);
        top: 53vh;
        width: 170px;
    }
    #why-acoustics-slideshow-controls button {
        background: transparent;
    }
  }
  @media only screen and (max-width: 991px) {
    #why-acoustics-slideshow-wrapper .slide .left-content h1 {
        font-size: 35px;
        margin-top: 30px;
    }
    #why-acoustics-slideshow-wrapper .slide .left-content h2 {
        margin-top: 10px;
        margin-bottom: 15px;
    }
    #why-acoustics-slideshow-wrapper .slide .left-content p {
        font-size: 15px;
    }
  }
  @media only screen and (max-width: 767px) {
    #why-acoustics-slideshow-wrapper .slide .left-content {
        height: 50vh;
    }
  }
  @media only screen and (max-width: 600px) {
    #why-acoustics-slideshow-wrapper .slide .left-content h1 {
        font-size: 30px;
    }
    #why-acoustics-slideshow-wrapper .slide .left-content p {
        font-size: 16px;
    }
  }
  @media only screen and (max-width: 500px) {
    #why-acoustics-slideshow-wrapper .slide .left-content img {
        width: 125px;
    }
    #why-acoustics-slideshow-wrapper .slide .left-content h1 {
        font-size: 23px;
    }
    #why-acoustics-slideshow-wrapper .slide .left-content h2 {
        font-size: 16px;
    }
    #why-acoustics-slideshow-wrapper .slide .left-content {
        height: 60vh;
    }
    #why-acoustics-slideshow-controls {
        top: 50vh;
    }
    #why-acoustics-slideshow-wrapper .slide .left-content p {
        font-size: 17px;
    }
  }
  /* >> Why Acoustics - iMac 4K */
  @media only screen and (min-width: 2500px) and (-webkit-min-device-pixel-ratio: 2) and (min-resolution: 192dpi) {
    #why-acoustics-slideshow-wrapper .slide .left-content img {
        width: 300px;
    }
    #why-acoustics-slideshow-wrapper .slide .left-content > div {
        max-width: 700px;
    }
    #why-acoustics-slideshow-wrapper .slide .left-content h2 {
        font-size: 30px;
    }
    #why-acoustics-slideshow-wrapper .slide .left-content p {
        font-size: 24px;
    }
    #why-acoustics-slideshow-wrapper .slide .left-content span {
        font-size: 20px;
    }
    #why-acoustics-slideshow-controls {
        transform: translateX(-290%);
        bottom: 20vh;
    }
  }
  /* >> Why Acoustics - iPhone 6+, 7+, 8+ */
  @media only screen and (device-width: 414px) and (-webkit-device-pixel-ratio: 3) and (orientation: portrait) { 
    #why-acoustics-slideshow-wrapper .slide .left-content {
        height: 58vh;
    }
    #why-acoustics-slideshow-wrapper .slide .left-content p {
        font-size: 14px;
    }
  }
  /* >> Why Acoustics - iPhone 6, 6S, 7, 8 */
  @media only screen and (device-width: 375px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait) {   
    #why-acoustics-slideshow-wrapper .slide .left-content {
        height: 80vh;
    }
  }
  /* >> Why Acoustics - iPhone 5, 5C, 5S, SE */
  @media only screen and (device-width: 320px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait) {
    #why-acoustics-slideshow-wrapper .slide .left-content {
        height: 90vh;
    }
    #why-acoustics-slideshow-wrapper .slide .left-content h1 {
        font-size: 20px;
    }
    #why-acoustics-slideshow-wrapper .slide .left-content p {
        font-size: 15px;
    }
  }
  
  /*** WELLBAC CUSHION ***/
  #wellbac-cushion-wrapper.ap {
    height: 100vh;
    position: relative;
    background: black;
    padding-left: 0;
    padding-right: 0;
  }
  /* >> WellBAC Cushion - Video Container */
  #wellbac-cushion-wrapper.ap .video-container {
    height: 80vh;
    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;
  }
  #wellbac-cushion-wrapper.ap .text-overlay {
    color: #fff;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    top: 28vh;
    text-align: center;
    z-index: 10;
    max-width: 1000px;
  }
  #wellbac-cushion-wrapper.ap .video-container img {
    width: 100%;
    height: 80vh;
    position: absolute;
    top: 0;
    left: 0;
    -o-object-fit: cover;
    object-fit: cover;
  }
  #wellbac-cushion-wrapper.ap .video-container span {
    font-size: 25px;
    display: block;
    letter-spacing: 5px;
    position: relative;
    z-index: 1;
    color: #f1f1f1;
    font-weight: 500 !important;
    line-height: 115%;
  }
  #wellbac-cushion-wrapper.ap .video-container h1 {
    position: relative;
    z-index: 1;
    color: #f1f1f1;
    font-weight: 400 !important;
    letter-spacing: 5px;
    text-transform: uppercase;
    font-size: 60px;
    margin-top: 20px;
    margin-bottom: 40px;
  }
  #wellbac-cushion-wrapper.ap .video-container h1 sup {
    top: -0.2em;
  }
  #wellbac-cushion-wrapper.ap .video-container a.mlkn-button {
    text-transform: uppercase;
    border: 1px solid #f1f1f1;
    background: #f1f1f1;
    color: #000;
    letter-spacing: 1px;
    font-weight: bold;
    position: relative;
    z-index: 1;
    width: 300px;
    text-align: center;
  }
  /* >> WellBAC Cushion - Text Container */
  #wellbac-cushion-wrapper.ap .container {
    height: 20vh;
  }
  #wellbac-cushion-wrapper.ap .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: 20vh;
    padding: 30px 15px;
  }
  #wellbac-cushion-wrapper.ap .container p {
    color: white;
    text-align: center;
    font-size: 18px;
    padding-bottom: 15px;
  }
  
  /* >> WellBAC Cushion - Media Queries */
  @media only screen and (max-width: 1400px) {
    #wellbac-cushion-wrapper.ap .image-container span {
        font-size: 23px;
    }
    #wellbac-cushion-wrapper.ap .image-container h1 {
        font-size: 50px;
    }
  }
  @media only screen and (max-width: 1200px) {
    #wellbac-cushion-wrapper.ap .image-container span {
        font-size: 20px;
    }
    #wellbac-cushion-wrapper.ap .image-container h1 {
        font-size: 40px;
    }
  }
  @media only screen and (max-width: 1100px) {
    #wellbac-cushion-wrapper.ap .image-container h1 {
        font-size: 35px;
    }
  }
  /* IPAD PRO */
  @media only screen and (width: 1024px) and (-webkit-device-pixel-ratio: 2) {
    #wellbac-cushion-wrapper.ap .video-container {
        height: 42vh;
    }
    #wellbac-cushion-wrapper.ap .text-overlay {
        top: 12vh;
        width: 100%;
    }
    #wellbac-cushion-wrapper.ap {
        height: 60vh;
    }
  }
  @media only screen and (max-width: 991px) {
    #wellbac-cushion-wrapper.ap {
        height: auto;
        min-height: 100vh;
    }
    #wellbac-cushion-wrapper.ap .container,
    #wellbac-cushion-wrapper.ap .container .content-wrapper {
        height: auto;
        min-height: 20vh;
    }
    #wellbac-cushion-wrapper.ap .container p {
        padding-bottom: 0;
        font-size: 16px;
    }
  }
  /* IPAD 9th gen */
  @media only screen and (width: 810px) and (-webkit-device-pixel-ratio: 2) {
    #wellbac-cushion-wrapper.ap {
        min-height: revert;
        height: 60vh;
    }
    #wellbac-cushion-wrapper.ap .video-container {
        height: 42vh;
    }
    #wellbac-cushion-wrapper.ap .text-overlay {
        top: 3vh;
    }
  }
  @media only screen and (max-width: 767px) {
    #wellbac-cushion-wrapper.ap .image-container span {
        letter-spacing: 2px;
    }
    #wellbac-cushion-wrapper.ap .image-container h1 {
        letter-spacing: 2px;
        text-align: center;
    }
  }
  @media only screen and (max-width: 600px) {
    #wellbac-cushion-wrapper.ap .image-container span {
        font-size: 18px;
    }
    #wellbac-cushion-wrapper.ap .image-container h1 {
        font-size: 28px;
    }
  }
  @media only screen and (max-width: 500px) {
    #wellbac-cushion-wrapper.ap .container .content-wrapper {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    #wellbac-cushion-wrapper.ap .image-container span {
        font-size: 16px;
    }
    #wellbac-cushion-wrapper.ap .image-container h1 {
        font-size: 22px;
    }
  }
  /* >> WellBAC Cushion - iMac 4K */
  @media only screen and (min-width: 2500px) and (-webkit-min-device-pixel-ratio: 2) and (min-resolution: 192dpi) {
    #wellbac-cushion-wrapper.ap .image-container span {
        font-size: 35px;
        margin-bottom: 30px;
    }
    #wellbac-cushion-wrapper.ap .image-container h1 {
        font-size: 90px;
        margin-top: 0;
        margin-bottom: 30px;
    }
    #wellbac-cushion-wrapper.ap .image-container a.mlkn-button {
        font-size: 20px;
        width: 400px;
        padding: 15px 20px;
    }
    #wellbac-cushion-wrapper.ap .container p {
        font-size: 25px;
    }
  }
  /* >> WellBAC Cushion - iPhone 5, 5C, 5S, SE */
  @media only screen and (device-width: 320px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait) {
    #wellbac-cushion-wrapper.ap .image-container h1 {
        font-size: 18px;
    }
  }
  /*** WELLBAC CUSHION ***/
  #wellbac-cushion-wrapper {
    height: 100vh;
    position: relative;
    background: #f1f1f1;
    padding-left: 0;
    padding-right: 0;
  }
  #wellbac-cushion-wrapper.au {
    background: black;
  }
  /* >> WellBAC Cushion - Image Container */
  #wellbac-cushion-wrapper .image-container {
    height: 80vh;
    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;
  }
  #wellbac-cushion-wrapper .image-container img {
    width: 100%;
    height: 80vh;
    position: absolute;
    top: 0;
    left: 0;
    -o-object-fit: cover;
    object-fit: cover;
  }
  #wellbac-cushion-wrapper .image-container span {
    font-size: 25px;
    display: block;
    letter-spacing: 5px;
    position: relative;
    z-index: 1;
    color: #f1f1f1;
    font-weight: 500 !important;
  }
  #wellbac-cushion-wrapper .image-container h1 {
    position: relative;
    z-index: 1;
    color: #f1f1f1;
    font-weight: 400 !important;
    letter-spacing: 5px;
    text-transform: uppercase;
    font-size: 60px;
    margin-top: 20px;
    margin-bottom: 40px;
  }
  #wellbac-cushion-wrapper .image-container h1 sup {
    top: -0.2em;
  }
  #wellbac-cushion-wrapper .image-container a.mlkn-button {
    text-transform: uppercase;
    border: 1px solid #f1f1f1;
    background: #f1f1f1;
    color: #000;
    letter-spacing: 1px;
    font-weight: bold;
    display: block;
    position: relative;
    z-index: 1;
    width: 300px;
    text-align: center;
  }
  /* >> WellBAC Cushion - Text Container */
  #wellbac-cushion-wrapper .container {
    height: 20vh;
  }
  #wellbac-cushion-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: 20vh;
    padding: 30px 15px;
  }
  #wellbac-cushion-wrapper .container p {
    color: #000;
    text-align: center;
    font-size: 18px;
    padding-bottom: 15px;
  }
  #wellbac-cushion-wrapper.au .container p {
    color: white;
  }
  /* >>> WellBAC Cushion - Video Container */
  #wellbac-cushion-wrapper video {
    width: var(--videoWidth);
  }
  /* >> WellBAC Cushion - Media Queries */
  /* >> WellBAC Cushion - iMac 4K */
  @media only screen and (min-width: 2500px) and (-webkit-min-device-pixel-ratio: 2) and (min-resolution: 192dpi) {
    #wellbac-cushion-wrapper .image-container span {
        font-size: 35px;
        margin-bottom: 30px;
    }
    #wellbac-cushion-wrapper .image-container h1 {
        font-size: 90px;
        margin-top: 0;
        margin-bottom: 30px;
    }
    #wellbac-cushion-wrapper .image-container a.mlkn-button {
        font-size: 20px;
        width: 400px;
        padding: 15px 20px;
    }
    #wellbac-cushion-wrapper .container p {
        font-size: 25px;
    }
  }
  @media only screen and (max-width: 1400px) {
    #wellbac-cushion-wrapper .image-container span {
        font-size: 23px;
    }
    #wellbac-cushion-wrapper .image-container h1 {
        font-size: 50px;
    }
  }
  @media only screen and (max-width: 1200px) {
    #wellbac-cushion-wrapper .image-container span {
        font-size: 20px;
    }
    #wellbac-cushion-wrapper .image-container h1 {
        font-size: 40px;
    }
  }
  @media only screen and (max-width: 1100px) {
    #wellbac-cushion-wrapper .image-container h1 {
        font-size: 35px;
    }
  }
  /* IPAD PRO */
  @media only screen and (width: 1024px) and (-webkit-device-pixel-ratio: 2) {
  
  }
  @media only screen and (max-width: 991px) {
    #wellbac-cushion-wrapper {
        height: auto;
        min-height: 100vh;
    }
    #wellbac-cushion-wrapper .container,
    #wellbac-cushion-wrapper .container .content-wrapper {
        height: auto;
        min-height: 20vh;
    }
    #wellbac-cushion-wrapper .container p {
        padding-bottom: 0;
        font-size: 16px;
    }
  }
  @media only screen and (max-width: 767px) {
    #wellbac-cushion-wrapper .image-container span {
        letter-spacing: 2px;
    }
    #wellbac-cushion-wrapper .image-container h1 {
        letter-spacing: 2px;
        text-align: center;
    }
  }
  @media only screen and (max-width: 600px) {
    #wellbac-cushion-wrapper .image-container span {
        font-size: 18px;
    }
    #wellbac-cushion-wrapper .image-container h1 {
        font-size: 28px;
    }
    #wellbac-cushion-wrapper.ap .video-container h1 {
        font-size: 45px;
    }
  }
  @media only screen and (max-width: 500px) {
    #wellbac-cushion-wrapper .container .content-wrapper {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    #wellbac-cushion-wrapper .image-container span {
        font-size: 16px;
    }
    #wellbac-cushion-wrapper .image-container h1 {
        font-size: 22px;
    }
  }
  /* iPhone 13 PRO MAX */
  @media only screen and (max-width: 428px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 3) {
    #wellbac-cushion-wrapper video {
        width: 1000px;
    }
    #wellbac-cushion-wrapper.ap .text-overlay {
        top: 20vh;
    }
    #wellbac-cushion-wrapper.ap .container .content-wrapper {
        margin-top: -10vh;
    }
    #wellbac-cushion-wrapper.ap {
        min-height: revert;
        height: 90vh;
    }
  }
  /* iPhone 6+, 7+, 8+ */
  @media only screen and (device-width: 414px) and (-webkit-device-pixel-ratio: 3) and (orientation: portrait) { 
    #wellbac-cushion-wrapper.ap {
        min-height: revert;
        height: 95vh;
    }
    #wellbac-cushion-wrapper.ap .container .content-wrapper {
        margin-top: revert;
    }
    #wellbac-cushion-wrapper.ap .container {
        margin-top: -7vh;
    }
    #wellbac-cushion-wrapper.ap .text-overlay {
        top: 10vh;
    }
  }
  /* iPhone 13 */
  @media only screen and (max-width: 393px) and (orientation: portrait) and (-webkit-min-device-pixel-ratio: 3) {
    #wellbac-cushion-wrapper video {
        width: 850px;
    }
  }
  /* iPhone 6, 6S, 7, 8 */
  @media only screen and (device-width: 375px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait) {   
    #wellbac-cushion-wrapper.ap .text-overlay {
        top: 10vh;
    }
    #wellbac-cushion-wrapper video {
        width: 1000px;
    }
  }
  /* >> WellBAC Cushion - iPhone 5, 5C, 5S, SE */
  @media only screen and (device-width: 320px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait) {
    #wellbac-cushion-wrapper .image-container h1 {
        font-size: 18px;
    }
    #wellbac-cushion-wrapper video {
        width: 1000px;
    }
    #wellbac-cushion-wrapper.ap .text-overlay {
        top: 10vh;
    }
    #wellbac-cushion-wrapper.ap .video-container span {
        font-size: 20px;
    }
    #wellbac-cushion-wrapper.ap .video-container h1 {
        font-size: 40px;
    }
  }
  
  
  /*** SOFT SURFACE ***/
  #soft-surface-wrapper {
    position: relative;
    padding: 0;
    background: black;
  }
  #soft-surface-outer-wrapper {
    position: relative;
  }
  /* >> Soft Surface - Slideshow */
  #soft-surface-slideshow-wrapper .cycle-slideshow {
    width: 100%;  
    height: 100vh;
  }
  #soft-surface-slideshow-wrapper .slide {
    width: inherit;
    height: inherit;
  }
  #soft-surface-slideshow-wrapper .slide > div {
    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;
  }
  /* >> Soft Surface - Slide Content */
  #soft-surface-slideshow-wrapper .slide .left-content,
  #soft-surface-slideshow-wrapper .slide .right-content {
    height: 100vh;
  }
  #soft-surface-slideshow-wrapper .slide .right-content {
    background-size: cover;
    background-repeat: no-repeat;
    background-color: transparent;
    width: 55vw;
    order: 2;
    position: relative;
  }
  #soft-surface-slideshow-wrapper .slide .left-content {
    background: #000;
    width: 45vw;
    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;
    order: 1;
  }
  #soft-surface-slide-1 .right-content {
    background-image: url('/-/media/1b995ab919114b0faa7078bab40297ff.ashx');
  }
  #soft-surface-slide-2 .right-content {
    background-image: url('/-/media/c8f6beda3a76467386d845be9317d8ad.ashx');
  }
  #soft-surface-slide-3 .right-content {
    background-image: url('/-/media/6c9508ac49064966aa7b4f56d8af08e1.ashx');
  }
  #soft-surface-slide-4 .right-content {
    background-image: url('/-/media/82c7f75548d8477d9cde38a609a7332d.ashx');
  }
  #soft-surface-slide-5 .right-content {
    background-image: url('/-/media/585bfda388934eae9e4277c8f9d270be.ashx');
  }
  #soft-surface-wrapper.ap #soft-surface-slide-1 .right-content {
    background-image: url('/-/media/63da13513ce64bcca94dd102f0c72839.ashx');
  }
  #soft-surface-wrapper.ap #soft-surface-slide-2 .right-content {
    background-image: url('/-/media/904d8b643fd94d8489b3f1c2bcbc51c2.ashx');
  }
  #soft-surface-wrapper.ap #soft-surface-slide-3 .right-content {
    background-image: url('/-/media/b606ad51a2e541f68b610e3d40a33c74.ashx');
  }
  #soft-surface-wrapper.ap #soft-surface-slide-4 .right-content {
    background-image: url('/-/media/3bea2cc7cb594c598c1ff78e061342e2.ashx');
  }
  #soft-surface-wrapper.ap #soft-surface-slide-5 .right-content {
    background-image: url('/-/media/8232c26575c74f1d97790db3ed71f639.ashx');
  }
  #soft-surface-wrapper.au #soft-surface-slide-1 .right-content {
    background-image: url('/-/media/3d037146cf9b4f578d6b1f7443f0c7d0.ashx');
  }
  #soft-surface-wrapper.au #soft-surface-slide-2 .right-content {
    background-image: url('/-/media/8b93d41a678c422680478c9a595debf0.ashx');
  }
  #soft-surface-wrapper.au #soft-surface-slide-3 .right-content {
    background-image: url('/-/media/90f42b706d8a4a41a7341037ef958320.ashx');
  }
  #soft-surface-wrapper.au #soft-surface-slide-4 .right-content {
    background-image: url('/-/media/ac064a095e1b4280acde2df1960ac339.ashx');
  }
  #soft-surface-wrapper.au #soft-surface-slide-5 .right-content {
    background-image: url('/-/media/021f90612b574b0799ad5f3a8871689e.ashx');
  }
  #soft-surface-slideshow-wrapper .slide .left-content > div {
    max-width: 500px;
    margin: 0 auto;
    margin-right: 175px;
  }
  #soft-surface-slideshow-wrapper .slide .left-content img {
    width: 200px;
    display: block;
    margin: 0 auto 20px;
  }
  #soft-surface-slideshow-wrapper .slide .left-content h1 {
    color: #fff;
    font-size: 45px;
    text-align: center;
    font-weight: 100 !important;
    margin-bottom: 0;
  }
  #soft-surface-slideshow-wrapper .slide .left-content h2 {
    color: #fff;
    font-size: 20px;
    text-align: center;
    font-weight: 500 !important;
    margin-top: 30px;
    margin-bottom: 30px;
  }
  #soft-surface-slideshow-wrapper .slide .left-content p {
    font-size: 18px;
    color: #fff;
    line-height: 1.5em;
    text-align: center;
    padding-bottom: 20px;
  }
  #soft-surface-slide-2.slide .left-content p,
  #soft-surface-slide-3.slide .left-content p {
    font-size: 17px;
  }
  #soft-surface-slideshow-wrapper .slide .left-content p strong {
    font-weight: 600 !important;
  }
  #soft-surface-slideshow-wrapper .slide .left-content span {
    display: block;
    color: #fff;
    text-align: center;
    margin-top: 30px;
  }
  #soft-surface-slide-2 .slide .left-content span {
    top: 95px;
  }
  /* >> Soft Surface - Slideshow Controls */
  #soft-surface-slideshow-controls {
    position: absolute;
    bottom: 10vh;
    left: 40%;
    transform: translateX(-250%);
    z-index: 100;
  }
  #soft-surface-slideshow-controls button {
    border-radius: 0;
    border: 1px solid #fff;
    background: #000;
    padding: 15px 23px;
    font-size: 30px;
    color: #fff;
  }
  #soft-surface-slideshow-controls button:last-of-type {
    margin-left: 30px;  
  }
  #soft-surface-slideshow-controls button:focus {
    outline: none;
  }
  /* >> Soft Surface - Media Queries */
  @media only screen and (max-width: 1700px) {
    #soft-surface-slideshow-wrapper .slide .left-content > div {
        margin-left: 50px;
        margin-right: 125px;
    }
    #soft-surface-slideshow-controls {
        transform: translateX(-226%);
    }
    #soft-surface-slideshow-wrapper .slide .left-content p {
        font-size: 16px;
    }
  }
  @media only screen and (max-width: 1450px) {
    #soft-surface-slideshow-wrapper .slide .left-content > div {
        max-width: 400px;
        margin: 0 0 0 50px;
    }
  }
  @media only screen and (max-width: 1300px) {
    #soft-surface-slideshow-wrapper .cycle-slideshow {
        height: auto;
        min-height: 100vh;
    }
    #soft-surface-slideshow-wrapper .slide .left-content,
    #soft-surface-slideshow-wrapper .slide .right-content {
        width: 100vw;
    }
    #soft-surface-slideshow-wrapper .slide .right-content {
        height: 65vh;
        order: 1;
    }
    #soft-surface-slideshow-wrapper .slide .left-content {
        min-height: 60vh;
        height: auto;
        padding: 30px 15px;
        order: 2;
    }
    #soft-surface-slideshow-wrapper .slide > div {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    #soft-surface-slideshow-wrapper .slide .right-content {
        background-position: center;
    }
    #soft-surface-slideshow-wrapper .slide .left-content > div {
        width: 90%;
        max-width: 500px;
        margin: 0 auto;
    }
    #soft-surface-slideshow-wrapper .slide .left-content p {
        font-size: 18px;
    }
    #soft-surface-slideshow-controls {
        bottom: auto;
        right:  auto;
        left: 50%;
        transform: translateX(-50%);
        top: 53vh;
        width: 170px;
    }
    #soft-surface-slideshow-controls button {
        background: transparent;
    }
  }
  @media only screen and (max-width: 991px) {
    #soft-surface-slideshow-wrapper .slide .left-content h1 {
        font-size: 40px;
        margin-top: 30px;
    }
    #soft-surface-slideshow-wrapper .slide .left-content h1 {
        margin-top: 10px;
        margin-bottom: 15px;
    }
    #soft-surface-slideshow-wrapper .slide .left-content p {
        font-size: 16px;
    }
  }
  @media only screen and (max-width: 767px) {
    #soft-surface-slideshow-wrapper .slide .left-content h1 {
        font-size: 35px;
    }
    #soft-surface-slideshow-wrapper .slide .left-content {
        height: 50vh;
    }
  }
  @media only screen and (max-width: 500px) {
    #soft-surface-slideshow-wrapper .slide .left-content img {
        width: 125px;
    }
    #soft-surface-slideshow-wrapper .slide .left-content h1 {
        font-size: 30px;
    }
    #soft-surface-slideshow-wrapper .slide .left-content h2 {
        font-size: 16px;
    }
    #soft-surface-slideshow-wrapper .slide .left-content {
        height: 52vh;
    }
    #soft-surface-slideshow-controls {
        top: 50vh;
    }
  }
  /* >> Soft Surface - iMac 4K */
  @media only screen and (min-width: 2500px) and (-webkit-min-device-pixel-ratio: 2) and (min-resolution: 192dpi) {
    #soft-surface-slideshow-wrapper .slide .left-content img {
        width: 300px;
    }
    #soft-surface-slideshow-wrapper .slide .left-content > div {
        max-width: 700px;
    }
    #soft-surface-slideshow-wrapper .slide .left-content h2 {
        font-size: 30px;
    }
    #soft-surface-slideshow-wrapper .slide .left-content p {
        font-size: 24px;
    }
    #soft-surface-slideshow-wrapper .slide .left-content span {
        font-size: 20px;
    }
    #soft-surface-slideshow-controls {
        transform: translateX(-290%);
        bottom: 20vh;
    }
  }
  /* >> Soft Surface - iPhone 6+, 7+, 8+ */
  @media only screen and (device-width: 414px) and (-webkit-device-pixel-ratio: 3) and (orientation: portrait) { 
    #soft-surface-slideshow-wrapper .slide .left-content {
        height: 58vh;
    }
    #soft-surface-slideshow-wrapper .slide .left-content p {
        font-size: 15px;
    }
  }
  /* >> Soft Surface - iPhone 6, 6S, 7, 8 */
  @media only screen and (device-width: 375px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait) {   
    #soft-surface-slideshow-wrapper .slide .left-content {
        height: 75vh;
    }
  }
  /* >> Soft Surface - iPhone 5, 5C, 5S, SE */
  @media only screen and (device-width: 320px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait) {
    #soft-surface-slideshow-wrapper .slide .left-content {
        height: 84vh;
    }
    #soft-surface-slideshow-wrapper .slide .left-content h2 {
        font-size: 14px;
    }
    #soft-surface-slideshow-wrapper .slide .left-content p {
        font-size: 15px;
    }
  }
  
  
  
  /*** HEAR THE DIFFERENCE ***/
  #hear-the-difference-wrapper {
    height: 100vh;
    position: relative;
    background: black;
    padding-left: 0;
    padding-right: 0;
  }
  /* >> Hear the Difference - Image Container */
  #hear-the-difference-wrapper .image-container {
    height: 80vh;
    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;
  }
  #hear-the-difference-wrapper .image-container img {
    width: 100%;
    height: 80vh;
    position: absolute;
    top: 0;
    left: 0;
    -o-object-fit: cover;
    object-fit: cover;
  }
  #hear-the-difference-wrapper .image-container span {
    font-size: 25px;
    display: block;
    letter-spacing: 5px;
    position: relative;
    z-index: 1;
    color: #f1f1f1;
    font-weight: 500 !important;
  }
  #hear-the-difference-wrapper .image-container h1 {
    position: relative;
    z-index: 1;
    color: #f1f1f1;
    font-weight: 400 !important;
    letter-spacing: 5px;
    text-transform: uppercase;
    font-size: 60px;
    margin-top: 20px;
    margin-bottom: 40px;
  }
  #hear-the-difference-wrapper .image-container h1 sup {
    top: -0.2em;
  }
  #hear-the-difference-wrapper .image-container a.mlkn-button {
    text-transform: uppercase;
    border: 1px solid #f1f1f1;
    background: #f1f1f1;
    color: #000;
    letter-spacing: 1px;
    font-weight: bold;
    display: block;
    position: relative;
    z-index: 1;
    width: 300px;
    text-align: center;
  }
  /* >> Hear the Difference - Text Container */
  #hear-the-difference-wrapper .container {
    height: auto;
    padding: 3rem 0;
  }
  #hear-the-difference-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: 20vh;
    padding: 30px 15px;
  }
  #hear-the-difference-wrapper .container p {
    color: white;
    text-align: center;
    font-size: 18px;
    padding-bottom: 15px;
  }
  /* >> Hear the Difference - Media Queries */
  @media only screen and (max-width: 1400px) {
    #hear-the-difference-wrapper .image-container span {
        font-size: 23px;
    }
    #hear-the-difference-wrapper .image-container h1 {
        font-size: 50px;
    }
  }
  @media only screen and (max-width: 1200px) {
    #hear-the-difference-wrapper .image-container span {
        font-size: 20px;
    }
    #hear-the-difference-wrapper .image-container h1 {
        font-size: 40px;
    }
  }
  @media only screen and (max-width: 1100px) {
    #hear-the-difference-wrapper .image-container h1 {
        font-size: 35px;
    }
  }
  @media only screen and (max-width: 991px) {
    #hear-the-difference-wrapper {
        height: auto;
        min-height: 100vh;
    }
    #hear-the-difference-wrapper .container,
    #hear-the-difference-wrapper .container .content-wrapper {
        height: auto;
        min-height: 20vh;
    }
    #hear-the-difference-wrapper .container p {
        padding-bottom: 0;
        font-size: 16px;
    }
  }
  @media only screen and (max-width: 767px) {
    #hear-the-difference-wrapper .image-container span {
        letter-spacing: 2px;
    }
    #hear-the-difference-wrapper .image-container h1 {
        letter-spacing: 2px;
        text-align: center;
    }
  }
  @media only screen and (max-width: 600px) {
    #hear-the-difference-wrapper .image-container span {
        font-size: 18px;
    }
    #hear-the-difference-wrapper .image-container h1 {
        font-size: 28px;
    }
  }
  @media only screen and (max-width: 500px) {
    #hear-the-difference-wrapper .container .content-wrapper {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    #hear-the-difference-wrapper .image-container span {
        font-size: 16px;
    }
    #hear-the-difference-wrapper .image-container h1 {
        font-size: 22px;
    }
  }
  /* >> Hear the Difference - iMac 4K */
  @media only screen and (min-width: 2500px) and (-webkit-min-device-pixel-ratio: 2) and (min-resolution: 192dpi) {
    #hear-the-difference-wrapper .image-container span {
        font-size: 35px;
        margin-bottom: 30px;
    }
    #hear-the-difference-wrapper .image-container h1 {
        font-size: 90px;
        margin-top: 0;
        margin-bottom: 30px;
    }
    #hear-the-difference-wrapper .image-container a.mlkn-button {
        font-size: 20px;
        width: 400px;
        padding: 15px 20px;
    }
    #hear-the-difference-wrapper .container p {
        font-size: 25px;
    }
  }
  /* >> Hear the Difference - iPhone 5, 5C, 5S, SE */
  @media only screen and (device-width: 320px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait) {
    #hear-the-difference-wrapper .image-container h1 {
        font-size: 18px;
    }
  }
  
  
  /*** FLEXFORM SOUND ***/
  #flexform-sound-wrapper {
    position: relative;
    background: #f1f1f1;
    padding-left: 0;
    padding-right: 0;
  }
  #flexform-sound-wrapper.ap, #flexform-sound-wrapper.au {
    background: black;
  }
  /* >> Flexform Sound - Image Container */
  #flexform-sound-wrapper .image-container {
    height: 75vh;
    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;
  }
  #flexform-sound-wrapper .image-container img {
    width: 100%;
    height: 75vh;
    position: absolute;
    top: 0;
    left: 0;
    -o-object-fit: cover;
    object-fit: cover;
  }
  #flexform-sound-wrapper .image-container span {
    font-size: 25px;
    display: block;
    letter-spacing: 5px;
    position: relative;
    z-index: 1;
    color: #f1f1f1;
    font-weight: 500 !important;
  }
  #flexform-sound-wrapper .image-container h1 {
    position: relative;
    z-index: 1;
    color: #f1f1f1;
    font-weight: 400 !important;
    letter-spacing: 5px;
    text-transform: uppercase;
    font-size: 60px;
    margin-top: 20px;
    margin-bottom: 20px;
  }
  #flexform-sound-wrapper .image-container h1 strong {
    font-weight: 600 !important;
  }
  #flexform-sound-wrapper .image-container h1 sup {
    top: -0.2em;
  }
  #flexform-sound-wrapper .image-container span.tagline {
    font-size: 20px;
    font-weight: 400 !important;
    letter-spacing: 7px;
  }
  #flexform-sound-wrapper .image-container .button-wrapper {
    text-align: center;
    margin-top: 30px;
  }
  #flexform-sound-wrapper .image-container a.mlkn-button {
    text-transform: uppercase;
    border: 1px solid #f1f1f1;
    background: #f1f1f1;
    color: #000;
    letter-spacing: 1px;
    font-weight: bold;
    position: relative;
    z-index: 1;
    width: 275px;
    text-align: center;
  }
  #flexform-sound-wrapper .image-container a.mlkn-button:last-of-type {
    margin-left: 15px;
  }
  /* >> Flexform Sound - Text Container */
  #flexform-sound-wrapper .container {
    height: auto;
    padding: 3rem 0;
  }
  #flexform-sound-wrapper .container .content-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 25vh;
    padding: 30px 15px;
  }
  #flexform-sound-wrapper .container h2 {
    font-size: 22px;
    color: #000;
    text-align: center;
    font-weight: 500 !important;
  }
  #flexform-sound-wrapper.ap .container h2, #flexform-sound-wrapper.au .container h2 {
    color: white;
  }
  #flexform-sound-wrapper .container p {
    color: #000;
    text-align: center;
    font-size: 18px;
    padding-bottom: 0;
  }
  #flexform-sound-wrapper.ap .container p, #flexform-sound-wrapper.au .container p {
    color: white;
  }
  #flexform-sound-wrapper .container p:first-of-type {
    margin-bottom: 0;
  }
  #flexform-sound-wrapper .container p:last-of-type {
    margin-top: 15px;
  }
  /* >> Flexform Sound - Media Queries */
  @media only screen and (max-width: 1200px) {
    #flexform-sound-wrapper .image-container h1 {
        font-size: 50px;
    }
  }
  @media only screen and (max-width: 1100px) {
    #flexform-sound-wrapper .image-container h1 {
        font-size: 40px;
    }
    #flexform-sound-wrapper .image-container a.mlkn-button {
        width: 250px;
    }
  }
  @media only screen and (max-width: 991px) {
    #flexform-sound-wrapper {
        height: auto;
    }
    #flexform-sound-wrapper .image-container a.mlkn-button,
    #flexform-sound-wrapper .image-container a.mlkn-button:last-of-type {
        display: block;
        margin: 15px auto 0;
        width: 275px;
    }
    #flexform-sound-wrapper .container,
    #flexform-sound-wrapper .container .content-wrapper {
        height: auto;
        min-height: 25vh;
    }
    #flexform-sound-wrapper .container p {
        padding-bottom: 0;
        font-size: 16px;
    }
  }
  @media only screen and (max-width: 767px) {
    #flexform-sound-wrapper .image-container span {
        letter-spacing: 2px;
    }
    #flexform-sound-wrapper .image-container h1 {
        font-size: 35px;
        text-align: center;
        letter-spacing: 2px;
    }
  }
  @media only screen and (max-width: 500px) {
    #flexform-sound-wrapper .container .content-wrapper {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    #flexform-sound-wrapper .image-container span {
        font-size: 22px;
    }
    #flexform-sound-wrapper .image-container h1 {
        font-size: 28px;
    }
    #flexform-sound-wrapper .container p {
        font-size: 15px;
    }
    #flexform-sound-wrapper .container p:last-of-type {
        font-size: 14px;
    }
  }
  /* >> Flexform Sound - iMac 4K */
  @media only screen and (min-width: 2500px) and (-webkit-min-device-pixel-ratio: 2) and (min-resolution: 192dpi) {
    #flexform-sound-wrapper .image-container span {
        font-size: 35px;
        margin-bottom: 30px;
    }
    #flexform-sound-wrapper .image-container h1 {
        font-size: 90px;
        margin-top: 0;
        margin-bottom: 30px;
    }
    #flexform-sound-wrapper .image-container span.tagline {
        font-size: 30px;
    }
    #flexform-sound-wrapper .image-container a.mlkn-button {
        font-size: 20px;
        width: 400px;
        padding: 15px 20px;
    }
    #flexform-sound-wrapper .container p {
        font-size: 25px;
    }
  }
  /* >> Flexform Sound - iPhone 6+, 7+, 8+ */
  @media only screen and (device-width: 414px) and (-webkit-device-pixel-ratio: 3) and (orientation: portrait) { 
    #flexform-sound-wrapper .container h2 {
        font-size: 23px;
    }
  }
  /* >> Flexform Sound - iPhone 5, 5C, 5S, SE */
  @media only screen and (device-width: 320px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait) {
    #flexform-sound-wrapper .image-container h1 {
        font-size: 22px;
    }
    #flexform-sound-wrapper .image-container span,
    #flexform-sound-wrapper .image-container span.tagline {
        font-size: 18px;
    }
  }
  
  /*** HARD SURFACE ***/
  #hard-surface-wrapper {
    position: relative;
    padding: 0;
  }
  #hard-surface-outer-wrapper {
    position: relative;
  }
  /* >> Hard Surface - Slideshow */
  #hard-surface-slideshow-wrapper .cycle-slideshow {
    width: 100%;  
    height: 100vh;
  }
  #hard-surface-slideshow-wrapper .slide {
    width: inherit;
    height: inherit;
  }
  #hard-surface-slideshow-wrapper .slide > div {
    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;
  }
  /* >> Hard Surface - Slide Content */
  #hard-surface-slideshow-wrapper .slide .left-content,
  #hard-surface-slideshow-wrapper .slide .right-content {
    height: 100vh;
  }
  #hard-surface-slideshow-wrapper .slide .right-content {
    background-size: cover;
    background-repeat: no-repeat;
    background-color: transparent;
    width: 55vw;
    order: 2;
    position: relative;
  }
  #hard-surface-slideshow-wrapper .slide .left-content {
    background: #000;
    width: 45vw;
    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;
    order: 1;
  }
  #hard-surface-slide-1 .right-content {
    background-image: url('/-/media/a22c1370aeb04d60ab79478d23f5bf17.ashx');
  }
  #hard-surface-slide-2 .right-content {
    background-image: url('/-/media/e6c16da87a284216a6f991361f175e36.ashx');
  }
  #hard-surface-slide-3 .right-content {
    background-image: url('/-/media/73e24b263a4c4e41912edd516982501a.ashx');
  }
  #hard-surface-wrapper.ap #hard-surface-slide-1 .right-content {
    background-image: url('/-/media/4e7e3f3113f34822b9fcd415b8fb2158.ashx');
  }
  #hard-surface-wrapper.ap #hard-surface-slide-2 .right-content {
    background-image: url('/-/media/6ee99c18f23b473f814014f1e37ee5e4.ashx');
  }
  #hard-surface-wrapper.ap #hard-surface-slide-3 .right-content {
    background-image: url('/-/media/fe57f73907c642469262fbefdc307500.ashx');
  }
  #hard-surface-wrapper.au #hard-surface-slide-1 .right-content {
    background-image: url('/-/media/e30284362e66476ca7b34de7ce3025c5.ashx');
  }
  #hard-surface-wrapper.au #hard-surface-slide-2 .right-content {
    background-image: url('/-/media/5d41989ac16a43d685ccf737cd4360e2.ashx');
  }
  #hard-surface-wrapper.au #hard-surface-slide-3 .right-content {
    background-image: url('/-/media/df587f8936d64a89868da9acd66cc6b8.ashx');
  }
  #hard-surface-slideshow-wrapper .slide .left-content > div {
    max-width: 500px;
    margin: 0 auto;
    margin-right: 175px;
  }
  #hard-surface-slideshow-wrapper .slide .left-content img {
    width: 200px;
    display: block;
    margin: 0 auto 20px;
  }
  #hard-surface-slideshow-wrapper .slide .left-content h1 {
    color: #fff;
    font-size: 45px;
    text-align: center;
    font-weight: 100 !important;
    margin-bottom: 0;
  }
  #hard-surface-slideshow-wrapper .slide .left-content h2 {
    color: #fff;
    font-size: 20px;
    text-align: center;
    font-weight: 500 !important;
    margin-top: 30px;
    margin-bottom: 30px;
  }
  #hard-surface-slideshow-wrapper .slide .left-content p {
    font-size: 18px;
    color: #fff;
    line-height: 1.5em;
    text-align: center;
    padding-bottom: 20px;
  }
  #hard-surface-slide-3.slide .left-content p {
    font-size: 17px;
  }
  #hard-surface-slideshow-wrapper .slide .left-content p strong {
    font-weight: 600 !important;
  }
  #hard-surface-slideshow-wrapper .slide .left-content span {
    display: block;
    color: #fff;
    text-align: center;
    margin-top: 30px;
  }
  #hard-surface-slide-2 .slide .left-content span {
    top: 95px;
  }
  /* >> Hard Surface - Slideshow Controls */
  #hard-surface-slideshow-controls {
    position: absolute;
    bottom: 10vh;
    left: 40%;
    transform: translateX(-250%);
    z-index: 100;
  }
  #hard-surface-slideshow-controls button {
    border-radius: 0;
    border: 1px solid #fff;
    background: #000;
    padding: 15px 23px;
    font-size: 30px;
    color: #fff;
  }
  #hard-surface-slideshow-controls button:last-of-type {
    margin-left: 30px;  
  }
  #hard-surface-slideshow-controls button:focus {
    outline: none;
  }
  /* >> Hard Surface - Media Queries */
  @media only screen and (max-width: 1700px) {
    #hard-surface-slideshow-wrapper .slide .left-content > div {
        margin-left: 50px;
        margin-right: 125px;
    }
    #hard-surface-slideshow-controls {
        transform: translateX(-226%);
    }
  }
  @media only screen and (max-width: 1450px) {
    #hard-surface-slideshow-wrapper .slide .left-content > div {
        max-width: 400px;
        margin: 0 0 0 50px;
    }
    #hard-surface-slideshow-wrapper .slide .left-content h2 {
        font-size: 19px;
    }
  }
  @media only screen and (max-width: 1300px) {
    #hard-surface-slideshow-wrapper .cycle-slideshow {
        height: auto;
        min-height: 100vh;
    }
    #hard-surface-slideshow-wrapper .slide .left-content,
    #hard-surface-slideshow-wrapper .slide .right-content {
        width: 100vw;
    }
    #hard-surface-slideshow-wrapper .slide .right-content {
        height: 65vh;
        order: 1;
    }
    #hard-surface-slideshow-wrapper .slide .left-content {
        min-height: 60vh;
        height: auto;
        padding: 30px 15px;
        order: 2;
    }
    #hard-surface-slideshow-wrapper .slide > div {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
    #hard-surface-slideshow-wrapper .slide .right-content {
        background-position: center;
    }
    #hard-surface-slideshow-wrapper .slide .left-content > div {
        width: 90%;
        max-width: 500px;
        margin: 0 auto;
    }
    #hard-surface-slideshow-wrapper .slide .left-content p {
        font-size: 17px;
    }
    #hard-surface-slideshow-controls {
        bottom: auto;
        right:  auto;
        left: 50%;
        transform: translateX(-50%);
        top: 53vh;
        width: 170px;
    }
    #hard-surface-slideshow-controls button {
        background: transparent;
    }
  }
  @media only screen and (max-width: 991px) {
    #hard-surface-slideshow-wrapper .slide .left-content h1 {
        font-size: 40px;
        margin-top: 30px;
    }
    #hard-surface-slideshow-wrapper .slide .left-content h2 {
        margin-top: 10px;
        margin-bottom: 15px;
    }
    #hard-surface-slideshow-wrapper .slide .left-content p {
        font-size: 16px;
    }
  }
  @media only screen and (max-width: 767px) {
    #hard-surface-slideshow-wrapper .slide .left-content h1 {
        font-size: 35px;
    }
    #hard-surface-slideshow-wrapper .slide .left-content {
        height: 50vh;
    }
  }
  @media only screen and (max-width: 500px) {
    #hard-surface-slideshow-wrapper .slide .left-content img {
        width: 125px;
    }
    #hard-surface-slideshow-wrapper .slide .left-content h1 {
        font-size: 30px;
    }
    #hard-surface-slideshow-wrapper .slide .left-content h2 {
        font-size: 16px;
    }
    #hard-surface-slideshow-wrapper .slide .left-content {
        height: 52vh;
    }
    #hard-surface-slideshow-controls {
        top: 50vh;
    }
  }
  /* >> Hard Surface - iMac 4K */
  @media only screen and (min-width: 2500px) and (-webkit-min-device-pixel-ratio: 2) and (min-resolution: 192dpi) {
    #hard-surface-slideshow-wrapper .slide .left-content img {
        width: 300px;
    }
    #hard-surface-slideshow-wrapper .slide .left-content > div {
        max-width: 700px;
    }
    #hard-surface-slideshow-wrapper .slide .left-content h2 {
        font-size: 30px;
    }
    #hard-surface-slideshow-wrapper .slide .left-content p {
        font-size: 25px;
    }
    #hard-surface-slideshow-wrapper .slide .left-content span {
        font-size: 20px;
    }
    #hard-surface-slideshow-controls {
        transform: translateX(-290%);
        bottom: 20vh;
    }
  }
  /* >> Hard Surface - iPhone 6+, 7+, 8+ */
  @media only screen and (device-width: 414px) and (-webkit-device-pixel-ratio: 3) and (orientation: portrait) { 
    #hard-surface-slideshow-wrapper .slide .left-content {
        height: 58vh;
    }
  }
  /* >> Hard Surface - iPhone 6, 6S, 7, 8 */
  @media only screen and (device-width: 375px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait) {   
    #hard-surface-slideshow-wrapper .slide .left-content {
        height: 64vh;
    }
    #hard-surface-slideshow-wrapper .slide .left-content p {
        font-size: 15px;
    }
  }
  /* >> Hard Surface - iPhone 5, 5C, 5S, SE */
  @media only screen and (device-width: 320px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait) {
    #hard-surface-slideshow-wrapper .slide .left-content {
        height: 79vh;
    }
    #hard-surface-slideshow-wrapper .slide .left-content p {
        font-size: 15px;
    }
  }
  
  /*** QUIETLIFE ***/
  #quietlife-wrapper {
    height: 100vh;
    background-image: url('/-/media/8bd58fb1c3cd4cb1906a483e85f47a20.ashx');
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
  }
  #quietlife-wrapper.au {
    background-image: url('/-/media/a9f2d9e6a32c48f980ec98e6f86c2c50.ashx');
  }
  #quietlife-wrapper .row {
    min-height: 100vh;
    /* -- START IE 11 HACK -- */
    height: 1px;
    /* -- END IE 11 HACK -- */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  /* >> QuietLife - Content */
  #quietlife-wrapper h1,
  #quietlife-wrapper p {
    width: 100%;
    color: #fff;
    text-align: center;
    display: block;
    padding-left: 30px;
    padding-right: 30px;
  }
  #quietlife-wrapper h1 {
    font-size: 80px;  
    letter-spacing: 30px;
    margin-bottom: 15px;
    font-weight: 100 !important;
  }
  #quietlife-wrapper p {
    font-size: 25px;
    letter-spacing: 10px;
    font-weight: 400 !important;
  }
  #quietlife-wrapper .buttons {
    text-align: center;
    margin-top: 40px;
  }
  #quietlife-wrapper a.mlkn-button {
    width: 310px;
    background: #fff;
    border: 1px solid #fff;
    text-align: center;
    color: #333;
    font-weight: 700 !important;
    letter-spacing: 1px;
  }
  #quietlife-wrapper .buttons a:last-of-type {
    margin-left: 30px;  
  }
  /* >> QuietLife - Media Queries */
  @media only screen and (max-width: 991px) {
    #quietlife-wrapper a.mlkn-button {
        display: block;
        margin: 20px auto !important;
    }
  }
  @media only screen and (max-width: 767px) {
    #quietlife-wrapper h1 {
        font-size: 65px;
    }
    #quietlife-wrapper p {
        font-size: 22px;
    }
  }
  @media only screen and (max-width: 660px) {
    #quietlife-wrapper h1 {
        letter-spacing: 20px;
    }
  }
  @media only screen and (max-width: 600px) {
    #quietlife-wrapper h1 {
        letter-spacing: 10px;
    }
    #quietlife-wrapper p {
        letter-spacing: 5px;
    }
  }
  @media only screen and (max-width: 500px) {
    #quietlife-wrapper h1 {
        font-size: 50px;
        letter-spacing: 5px;
    }
    #quietlife-wrapper a.mlkn-button {
        width: auto;
    }
    #quietlife-wrapper p {
        font-weight: 500 !important;
    }
  }
  /* >> QuietLife - iMac 4K */
  @media only screen and (min-width: 2500px) and (-webkit-min-device-pixel-ratio: 2) and (min-resolution: 192dpi) {
    #quietlife-wrapper h1 {
        font-size: 130px;
    }
    #quietlife-wrapper p {
        font-size: 35px;
    }
    #quietlife-wrapper a.mlkn-button {
        font-size: 20px;
        width: 400px;
        padding: 10px 15px;
        font-weight: 600 !important;
    }
  }
  /* >> QuietLife - iPhone 5, 5C, 5S, SE */
  @media only screen and (device-width: 320px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait) {
    #quietlife-wrapper h1 {
        font-size: 40px;
    }
    #quietlife-wrapper p {
        font-size: 16px;
    }
  }
  
  
  /*** Mixed Formations ***/
  #mixed-formations-wrapper {
    height: 100vh;
    background-image: url('/-/media/367ADD925CB24A469F75CCA910335723.ashx');
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
  }
  #mixed-formations-wrapper .row {
    min-height: 100vh;
    /* -- START IE 11 HACK -- */
    height: 1px;
    /* -- END IE 11 HACK -- */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  /* >> Mixed Formations - Content */
  #mixed-formations-wrapper h1,
  #mixed-formations-wrapper p {
    width: 100%;
    color: #fff;
    text-align: center;
    display: block;
    padding-left: 30px;
    padding-right: 30px;
  }
  #mixed-formations-wrapper h1 {
    font-size: 80px;
    letter-spacing: 15px;
    margin-bottom: 15px;
    font-weight: 400 !important;
  }
  #mixed-formations-wrapper p {
    font-size: 25px;
    letter-spacing: 10px;
    font-weight: 400 !important;
  }
  #mixed-formations-wrapper .buttons {
    text-align: center;
    margin-top: 40px;
  }
  #mixed-formations-wrapper a.mlkn-button {
    width: 320px;
    background: #fff;
    border: 1px solid #fff;
    text-align: center;
    color: #333;
    font-weight: 700 !important;
    letter-spacing: 1px;
  }
  #mixed-formations-wrapper .buttons a {
    margin: 1.5rem;  
  }
  /* >> Mixed Formations - Media Queries */
  @media only screen and (max-width: 991px) {
    #mixed-formations-wrapper a.mlkn-button {
        display: block;
        margin: 20px auto !important;
    }
  }
  @media only screen and (max-width: 767px) {
    #mixed-formations-wrapper h1 {
        font-size: 65px;
    }
    #mixed-formations-wrapper p {
        font-size: 22px;
    }
  }
  @media only screen and (max-width: 660px) {
    #mixed-formations-wrapper h1 {
        letter-spacing: 20px;
    }
  }
  @media only screen and (max-width: 600px) {
    #mixed-formations-wrapper h1 {
        letter-spacing: 10px;
    }
    #mixed-formations-wrapper p {
        letter-spacing: 5px;
    }
  }
  @media only screen and (max-width: 500px) {
    #mixed-formations-wrapper h1 {
        font-size: 50px;
        letter-spacing: 5px;
    }
    #mixed-formations-wrapper a.mlkn-button {
        width: auto;
    }
    #mixed-formations-wrapper p {
        font-weight: 500 !important;
    }
  }
  /* >> Mixed Formations - iMac 4K */
  @media only screen and (min-width: 2500px) and (-webkit-min-device-pixel-ratio: 2) and (min-resolution: 192dpi) {
    #mixed-formations-wrapper h1 {
        font-size: 130px;
    }
    #mixed-formations-wrapper p {
        font-size: 35px;
    }
    #mixed-formations-wrapper a.mlkn-button {
        font-size: 20px;
        width: 400px;
        padding: 10px 15px;
        font-weight: 600 !important;
    }
  }
  /* >> Mixed Formations - iPhone 5, 5C, 5S, SE */
  @media only screen and (device-width: 320px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait) {
    #mixed-formations-wrapper h1 {
        font-size: 40px;
    }
    #mixed-formations-wrapper p {
        font-size: 16px;
    }
    #mixed-formations-wrapper a.mlkn-button {
        font-size: 15px;
    }
  }

  
  /*** Quiet Woods ***/
  #quiet-woods-wrapper {
    height: 100vh;
    background-image: url('/-/media/6567546b13904adbb680647ad3639f3a.ashx');
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
  }
  #quiet-woods-wrapper .row {
    min-height: 100vh;
    /* -- START IE 11 HACK -- */
    height: 1px;
    /* -- END IE 11 HACK -- */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  /* >> Quiet Woods - Content */
  #quiet-woods-wrapper h1,
  #quiet-woods-wrapper p {
    width: 100%;
    color: #fff;
    text-align: center;
    display: block;
    padding-left: 30px;
    padding-right: 30px;
  }
  #quiet-woods-wrapper h1 {
    font-size: 80px;
    letter-spacing: 15px;
    margin-bottom: 15px;
    font-weight: 400 !important;
  }
  #quiet-woods-wrapper p {
    font-size: 25px;
    letter-spacing: 10px;
    font-weight: 400 !important;
  }
  #quiet-woods-wrapper .buttons {
    text-align: center;
    margin-top: 40px;
  }
  #quiet-woods-wrapper a.mlkn-button {
    width: 320px;
    background: #fff;
    border: 1px solid #fff;
    text-align: center;
    color: #333;
    font-weight: 700 !important;
    letter-spacing: 1px;
  }
  #quiet-woods-wrapper .buttons a:nth-of-type(2) {
    margin-left: 30px;  
  }
  /* >> Quiet Woods - Media Queries */
  @media only screen and (max-width: 991px) {
    #quiet-woods-wrapper a.mlkn-button {
        display: block;
        margin: 20px auto !important;
    }
  }
  @media only screen and (max-width: 767px) {
    #quiet-woods-wrapper h1 {
        font-size: 65px;
    }
    #quiet-woods-wrapper p {
        font-size: 22px;
    }
  }
  @media only screen and (max-width: 660px) {
    #quiet-woods-wrapper h1 {
        letter-spacing: 20px;
    }
  }
  @media only screen and (max-width: 600px) {
    #quiet-woods-wrapper h1 {
        letter-spacing: 10px;
    }
    #quiet-woods-wrapper p {
        letter-spacing: 5px;
    }
  }
  @media only screen and (max-width: 500px) {
    #quiet-woods-wrapper h1 {
        font-size: 50px;
        letter-spacing: 5px;
    }
    #quiet-woods-wrapper a.mlkn-button {
        width: auto;
    }
    #quiet-woods-wrapper p {
        font-weight: 500 !important;
    }
  }
  /* >> Quiet Woods - iMac 4K */
  @media only screen and (min-width: 2500px) and (-webkit-min-device-pixel-ratio: 2) and (min-resolution: 192dpi) {
    #quiet-woods-wrapper h1 {
        font-size: 130px;
    }
    #quiet-woods-wrapper p {
        font-size: 35px;
    }
    #quiet-woods-wrapper a.mlkn-button {
        font-size: 20px;
        width: 400px;
        padding: 10px 15px;
        font-weight: 600 !important;
    }
  }
  /* >> Quiet Woods - iPhone 5, 5C, 5S, SE */
  @media only screen and (device-width: 320px) and (-webkit-device-pixel-ratio: 2) and (orientation: portrait) {
    #quiet-woods-wrapper h1 {
        font-size: 40px;
    }
    #quiet-woods-wrapper p {
        font-size: 16px;
    }
    #quiet-woods-wrapper a.mlkn-button {
        font-size: 15px;
    }
  }