<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*
Theme Name:         A'ali'i
Theme URI:          https://www.chunk.co.uk
GitHub Theme URI:   chunk-wordpress-aalii
Description:        A custom WordPress theme for A'ali'i Ward Village, developed by Chunk on behalf of the Howard Hughes Corporation.
Version:            0.0.1
Author:             Chunk
Author URI:         https://chunk.co.uk
Text Domain:        hhc-aalii

License:            MIT License
License URI:        http://opensource.org/licenses/MIT
*/


@font-face {
    font-family: 'Domaine Regular';
    src: url(fonts/DomaineDisp-Regular.woff2) format("woff2"), url(fonts/DomaineDisp-Regular.woff) format("woff");
    font-weight: 400;
    font-style: normal
}

@font-face {
    font-family: 'Domaine Semibold';
    src: url(fonts/DomaineDisp-Semibold.woff2) format("woff2"), url(fonts/DomaineDisp-Semibold.woff) format("woff");
    font-weight: 400;
    font-style: normal
}

@font-face {
    font-family: 'Domaine Italic';
    src: url(fonts/DomaineTextRegularItalicRegular.woff2) format("woff2"), url(fonts/DomaineTextRegularItalicRegular.woff) format("woff");
    font-weight: 400;
    font-style: normal
}


@font-face {
    font-family: "CircularXXWeb-Regular";
    src: url("fonts/CircularXXWeb-Regular.woff") format("woff"), url("fonts/CircularXXWeb-Regular.woff2") format("woff2");
}

@font-face {
    font-family: "CircularXXWeb-Italic";
    src: url("fonts/CircularXXWeb-Italic.woff") format("woff"), url("fonts/CircularXXWeb-Italic.woff2") format("woff2");
}

@font-face {
    font-family: "CircularXXWeb-Medium";
    src: url("fonts/CircularXXWeb-Medium.woff") format("woff"), url("fonts/CircularXXWeb-Medium.woff2") format("woff2");
}

@font-face {
    font-family: "CircularXXWeb-Book";
    src: url("fonts/CircularXXWeb-Book.woff") format("woff"), url("fonts/CircularXXWeb-Book.woff2") format("woff2");
}





/*
	
	#F8F8F8  -- grey
#404041  -- footer font
#363636  -- body font
#F47820  -- orange

*/


/****** RESET *******/

html {
    box-sizing: border-box;
}



*,
*:before,
*:after {
    box-sizing: inherit;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
ul {
    margin: 0;
    padding: 0;
    font-weight: normal;
}

ol,
ul {
    list-style: none;
}

.cookie {
    background: rgba(54, 54, 54, 0.9);
    color: white;
    font-size: 1.2rem;
    line-height: 1.9rem;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100vw;
    padding: 20px 50px;
}

.close-disclaimer {
    background: white;
    font-size: 1.4rem;
    color: #363636;
    text-transform: uppercase;
    padding: 10px 22px;
    font-family: "CircularXXWeb-Medium";
    transition: all 0.3s ease;
    height: auto;
}

.error-page {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    text-align: center;
    min-height: 40vh;
}

.close-disclaimer {
    opacity: 0.8;
}

.cookie-message {
    width: 60%;
}

img {
    max-width: 100%;
    height: auto;
}

.flex-wrap {
    display: flex;
    justify-content: space-between;
}

.flex-center-v {
    align-items: center;
}

/****** END RESET *******/

/******* flex grid lite *****/

.grid {
    box-sizing: border-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -webkit-flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    -webkit-box-flex: 0;
    flex: 0 1 auto;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.grid.grid-nogutter {
    margin: 0
}

.grid.grid-nogutter&gt;.col {
    padding: 0
}

.col {
    box-sizing: border-box;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    -webkit-box-flex: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    -webkit-flex-basis: 0;
    flex-basis: 0;
    max-width: 100%;
    min-width: 0;
}

.col-align-top {
    -webkit-align-self: flex-start;
    -ms-flex-item-align: start;
    align-self: flex-start
}

.col-align-bottom {
    align-self: flex-end
}

.col-align-middle {
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center
}

.col-top {
    justify-content: flex-start !important;
    flex-direction: column;
    display: flex
}

.col-bottom {
    justify-content: flex-end !important;
    flex-direction: column;
    display: flex
}

.col-middle {
    justify-content: center;
    flex-direction: column;
    display: flex
}

.grid-start {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start
}

.grid-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.grid-end {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end
}

.grid-around {
    justify-content: space-around
}

.grid-between {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.col-first {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1
}

.col-last {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1
}

.grid-reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse
}

.col-fixed {
    flex: initial
}

.col-grow-2 {
    flex-grow: 2
}

.col-grow-3 {
    flex-grow: 3
}

.col-grow-4 {
    flex-grow: 4
}

.col-grow-5 {
    flex-grow: 5
}

.col-grow-6 {
    flex-grow: 6
}

.col-grow-7 {
    flex-grow: 7
}

.col-grow-8 {
    flex-grow: 8
}

.col-grow-9 {
    flex-grow: 9
}

.col-grow-10 {
    flex-grow: 10
}

.col-grow-11 {
    flex-grow: 11
}

.col-1 {
    -ms-flex-preferred-size: 8.33333%;
    -webkit-flex-basis: 8.33333%;
    flex-basis: 8.33333%;
    max-width: 8.33333%
}

.col-2 {
    -ms-flex-preferred-size: 16.66667%;
    -webkit-flex-basis: 16.66667%;
    flex-basis: 16.66667%;
    max-width: 16.66667%
}

.col-3 {
    -ms-flex-preferred-size: 25%;
    -webkit-flex-basis: 25%;
    flex-basis: 25%;
    max-width: 25%
}

.col-4 {
    -ms-flex-preferred-size: 33.33333%;
    -webkit-flex-basis: 33.33333%;
    flex-basis: 33.33333%;
    max-width: 33.33333%
}

.col-5 {
    -ms-flex-preferred-size: 41.66667%;
    -webkit-flex-basis: 41.66667%;
    flex-basis: 41.66667%;
    max-width: 41.66667%
}

.col-6 {
    -ms-flex-preferred-size: 50%;
    -webkit-flex-basis: 50%;
    flex-basis: 50%;
    max-width: 50%
}

.col-7 {
    -ms-flex-preferred-size: 58.33333%;
    -webkit-flex-basis: 58.33333%;
    flex-basis: 58.33333%;
    max-width: 58.33333%
}

.col-8 {
    -ms-flex-preferred-size: 66.66667%;
    -webkit-flex-basis: 66.66667%;
    flex-basis: 66.66667%;
    max-width: 66.66667%
}

.col-9 {
    -ms-flex-preferred-size: 75%;
    -webkit-flex-basis: 75%;
    flex-basis: 75%;
    max-width: 75%
}

.col-10 {
    -ms-flex-preferred-size: 83.33333%;
    -webkit-flex-basis: 83.33333%;
    flex-basis: 83.33333%;
    max-width: 83.33333%
}

.col-11 {
    -ms-flex-preferred-size: 91.66667%;
    -webkit-flex-basis: 91.66667%;
    flex-basis: 91.66667%;
    max-width: 91.66667%
}

.col-12 {
    -ms-flex-preferred-size: 100%;
    -webkit-flex-basis: 100%;
    flex-basis: 100%;
    max-width: 100%
}

@media only screen and (max-width: 480px) {

    .col-sm {
        flex: 100%;
        max-width: 100%
    }
}

@media only screen and (max-width: 624px) {
    .col-md {
        flex: 100%;
        max-width: 100%
    }
}

@media only screen and (max-width: 744px) {
    .col-lg {
        flex: 100%;
        max-width: 100%
    }
}

/****** end grid ******/



html {
    font-size: 62.5%;
}

body {
    font-size: 1.75rem;
    line-height: 2.3rem;
    font-family: "CircularXXWeb-Book";
    font-weight: normal;
    color: #363636;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    width: 100%;
}

.sticky {
    position: fixed;
    top: 0;
    background: white;
    z-index: 999;
    transition: all 0.3s linear;
}

.stickyMargin {
    margin-top: 219px;
}

#mobile_menu {
    display: none;
}

.mobile-only {
    display: none;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    display: block;
}




h1 {
    font-family: 'Domaine Regular';
    font-size: 5.4rem;
    line-height: 7rem;
    margin-bottom: 50px;
}

h2 {
    font-family: 'Domaine Italic';
    font-size: 4.8rem;
    line-height: 2.6rem;
}

h3 {
    font-family: 'CircularXXWeb-Medium';
    font-size: 1.8rem;
    line-height: 2.4rem;
    font-weight: 500;
}

h5 {
    font-family: "CircularXXWeb-Book";
    font-size: 1.8rem;
    line-height: 2.2rem;
}


h6 {
    font-family: "CircularXXWeb-Book";
    font-size: 1.6rem;
    line-height: 2rem;
}

.center {
    text-align: center;
}

.button {
    background: #f47820;
    color: white;
    font-size: 1.4rem;
    font-family: "CircularXXWeb-Book";
    padding: 6px 50px;
    text-transform: uppercase;
    margin-top: 35px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
}

#submit-lead {
    display: inline-block;
}

.li {
    font-family: "CircularXXWeb-Book";
    font-size: 1.6rem;
    line-height: 2.1rem;
}

.note {
    font-size: 1.4rem;
    line-height: 1.8rem;
    font-weight: 100;
}

.disclaimers {
	font-family: "CircularXXWeb-Book";
	font-size: 1.6rem;
	line-height: 2rem;
	display: block;
	margin: 0 auto;
	margin-top: -20px;
	text-align: center;
}

.modal-disclaimers {
	font-size: 1.9rem;
	line-height: 2.8rem;
	margin-bottom: 40px;
}

.quote {
    font-family: 'Domaine Italic';
    font-size: 3.0rem;
    line-height: 3.6rem;
}


.puff p {
    font-family: 'Domaine Regular';
    font-size: 2.4rem;
    line-height: 3.2rem;
}


.screen-reader-text {
    position: absolute !important;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
}

.screen-reader-text:focus {
    display: block;
    top: 5px;
    left: 5px;
    z-index: 100000;
    border-radius: 3px;
    -webkit-box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    background-color: #fcfafa;
    padding: 0.9375rem 1.4375rem 0.875rem;
    width: auto;
    height: auto;
    text-decoration: none;
    line-height: normal;
    color: #ff0101;
    font-size: 1rem;
    font-weight: 700;
    clip: auto !important;
}

a {
    text-decoration: none;
    color: #363636;
}

.slider {
    display: none;
}

.slider.slick-initialized {
    display: block;
}

header {
    height: 99px;
    display: flex;
    width: 100%;
    align-items: center;
    border-bottom: 1px solid #EDEDED;
    margin-bottom: 120px;
    justify-content: space-between;
    background: white;
    position: relative;
    z-index: 999;

}



.logo a {
    text-indent: -9999px;
    background: url(images/aalii.svg) no-repeat;
    background-size: contain;
    width: 173px;
    height: 36px;
    display: block;
    margin: 0px 0px 0px 52px;
}

.hamburger {
    display: none;
}


.main__nav {
    margin-right: 50px;
}

.main__nav a {
    font-family: 'Domaine Regular';
    font-size: 1.6rem;
    line-height: 1.6rem;
    position: relative;
    padding-bottom: 45px;

}

#menu-main-menu {
    display: flex;
    justify-content: flex-start;
}

#menu-main-menu li {
    margin-right: 30px;
}

.inquire {
    border-left: 1px solid #EDEDED;
    padding-left: 30px;
}

.inquire a {
    font-family: 'CircularXXWeb-Medium';
}

.main__nav a:after {
    transition: all 0.3s ease;
}

.main__nav a:after {
    content: '';
    background: url(images/nav_carrot.svg) no-repeat;
    position: absolute;
    bottom: 0;
    width: 10px;
    height: 12px;
    text-align: center;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 5px;
    transition: opacity 0.3s ease;
    opacity: 0;
    z-index: 9;
}

.main__nav a:hover:after,
.current_page_item a:after, .current-page-ancestor a:after {
    opacity: 1;
}

.main__nav .hideactive a:after {
    opacity: 0;
}


.sub-menu {
    position: absolute;
    margin-top: 38px;
    display: flex;
    flex-wrap: nowrap;
    padding-top: 20px;
    visibility: hidden;
}

.sub-menu:after {
    content: '';
    height: 1px;
    background: #F47820;
    width: 42vw;
    position: absolute;
    top: 0;
    transition: all .3s ease-in-out;
    left: 0;
    margin-top: -1px;
}


.sub-menu:before {
    background: white;
    content: '';
    width: 100vw;
    position: fixed;
    left: 0;
    top: 0;
    height: 70px;
    margin-top: 99px;

}

.sub-menu li a {
    font-size: 1.4rem;
}

.sub-menu li a:after {
    display: none;
}


.current_page_item .sub-menu, .current-page-ancestor .sub-menu {
    display: flex;
    visibility: visible;  
}

.menu-item-has-children:hover .sub-menu {
    display: flex;
    opacity: 1;
    visibility: visible;  
}  


.subnav-header {
    width: 100%;
    position: fixed;
    position: sticky;
    top: 0;
    left: 0;
    background: white;
    display: flex;
    padding: 20px 50px 20px 0;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    z-index: 999;

}

.subnav-header .logo {
    margin-right: 0;
}

.subnav-header ul {
    display: flex;
}

.subnav-header .top {
    font-family: 'CircularXXWeb-Medium';
    font-size: 1.4rem;
    font-weight: 500;

}

.subnav-header ul li {
    font-size: 1.6rem;
    margin-right: 35px;
    font-family: 'Domaine Regular';
}



.page-id-151 .sub-menu {
    display: flex;
}

.has-subnav:hover .sub-menu {
    display: flex;
}


#content {
    min-height: calc(100vh - 525px);
}

.has-announce-bar {
    padding-top: 100px;
}

#has-subnav .has-announce-bar {
    padding-top: 155px;
}

.fancybox-slide--html .fancybox-close-small {
    background: url(images/close-icon.svg) no-repeat;
    width: 32px;
    height: 32px;
    background-size: contain;
    margin-top: 50px;
    margin-right: 50px;
}

.fancybox-close-small svg {
    display: none !important;
}

.fancybox-content {
    padding-bottom: 100px !important;
    background: white;
}


footer {
    color: #404041;
    background: #F8F8F8;
    padding: 50px 50px 64px 50px;
    margin-top: 40px;

}

.footer__links {
    padding-left: 50px;
    border-right: 1px solid #EDEDED;
}

.footer__links a {
    font-family: "CircularXXWeb-Book";
    font-size: 1.4rem;
    color: #7A7A75;
}

.footer__contact {
    line-height: 2.4rem;
    padding-left: 50px;
    font-size: 1.4rem;
    color: #7A7A75;
}

#menu-footer-menu li {
    line-height: 2.4rem;
    margin-bottom: 0px;
    font-family: "CircularXXWeb-Book";
}

.footer__logos {
    align-items: flex-end;
    display: flex;
    padding-bottom: 10px;
    padding-left: 50px;
}

.wv-logo {
    height: 15px;
    margin-right: 30px;
}

.hh-logo {
    height: 30px;
    margin-bottom: -15px;
    max-width: none;
}

#mobile-nav {
    display: none;
}

.pad-content {
    padding: 0 50px;
}

.pad-top {
    padding-top: 50px;
}

.pad-bottom {
    padding-bottom: 50px;
}

.pad-right {
    margin-right: 50px;
}

/*** modules - top intro *****/


.video-responsive {
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative;
    height: 0;
}

.video-responsive iframe {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
}

figure {
    padding: 0;
    margin: 0;
}

.top_intro .image {
    position: relative;
    width: 100vw;
}

.content-module img {
    width: 100%;
    height: auto;
    display: block;
}

figcaption {
    position: absolute;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    font-size: 1.4rem;
    padding: 6px 20px 10px;
    font-family: 'Domaine Italic';
}

.no-caption figcaption {
    display: none;
}

.intro-copy {
    margin: 40px 0px 40px 0px;
    padding: 15px 35px;
    font-size: 1.8rem;
    border-left: 5px solid #F47820;
    max-width: 80%;
    font-family: 'Domaine Regular';
}


.home .intro-copy {
    margin-bottom: 130px;
}


.intro-copy strong {
    font-size: 2.4rem;
    line-height: 2.6rem;
    font-weight: 500;
    display: block;
    text-transform: uppercase;
    font-family: "CircularXXWeb-Medium";
    margin-bottom: 2.6rem;
}

.intro-copy em {
    font-weight: 100;
    font-style: normal;
    font-family: 'Domaine Italic';
}

.intro-copy p {
    margin: 0px 0;
    display: block;
    line-height: 2.4rem;
}

.top_intro .image {
    position: relative;
    width: 100vw;
    height: calc(100vw / 2);
    background-size: cover !important;
}

.top-bar {
    width: 100%;
    height: 30px;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 9;
  }



.announcement__bar {
    background: #DAF2FC;
    width: 100%;
    display: block;
    padding: 20px 50px;
    text-align: center;
    margin-bottom: 120px;
    position: fixed;
    z-index: 98;
    top: 0;
    margin-top: 99px;
}



#has-subnav .announcement__bar {
    margin-top: 169px;
}

.stickyMargin .announcement__bar {
    margin-top: 99px;
}


@media screen and (min-width: 1200px) { 
    
    #has-subnav .header-has-announce-bar .menu:before {
        background: white;
        content: '';
        width: 100vw;
        position: fixed;
        left: 0;
        top: 0;
        height: 70px;
        margin-top: 99px;
    }

}


#has-subnav.sticky-subnav-visible .announcement__bar {
    top: 0;
    margin-top: 76px;
}



.announcement__bar h1 {
    font-family: 'Domaine Regular';
    font-size: 2rem;
    line-height: 3.2rem;
    margin-bottom: 10px;
    text-transform: capitalize;
}

.announcement__bar a {
    text-decoration: underline;
    font-family: "CircularXXWeb-Book";
    font-size: 1.6rem;

}

.announcement__bar ul {
    display: flex;
    justify-content: center;
}

.announcement__bar li:first-child {
    margin-right: 35px;
}

@media only screen and (max-width: 480px) {

    .announcement__bar h1,
    .announcement__bar a {
        font-size: 1.4rem;
        line-height: 2rem;
    }

}


/*** modules - horizontal card *****/

.content-module {
    margin-bottom: 30px;
    display: block;
}

.horizontal-card:hover .horizontal-card__details {
    border-left: 13px solid #F47820;
}

.horizontal-card__inside {
    display: flex;
}

.horizontal-card h2 {
    margin-bottom: 7px;
    position: relative;
    font-size: 2rem;
    line-height: 2.5rem;
    font-family: "CircularXXWeb-Medium";
    text-transform: uppercase;
}

.horizontal-card h2:before {
    position: absolute;
    background: url(images/carrot-left.svg) no-repeat left center;
    background-size: contain;
    width: 18px;
    height: 21px;
    content: '';
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    margin-left: -35px;
    margin-top: 0px;
}

.horizontal-card p {
    font-size: 3.2rem;
    line-height: 3.6rem;
    font-family: 'Domaine Italic';

}


.horizontal-card__details {
    width: 40%;
    border-top: 2px solid #EDEDED;
    border-bottom: 2px solid #EDEDED;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-right: 5%;
    padding: 70px 50px 0 60px;
    border-left: 13px solid white;
    transition: all 0.3s ease;
}

.horizontal-card__image {
    width: 55%;
    position: relative;
}

.info-block__left,
.bullet-feature__left__inner {
    border-top: 2px solid #EAEAEA;
    border-bottom: 2px solid #EAEAEA;
}

.bullet-feature__left__inner {
    margin-right: 25px;
    height: 100%;
}


.simple-text {
    width: 75%;
    margin: 0 auto;
    margin-bottom: 60px;
}

.simple-text {
    max-width: 920px;
}

.simple-text h3 {
    font-size: 2rem;
    line-height: 2.7rem;
}

.simple-text p {
    margin-bottom: 30px;
    font-family: 'Domaine Regular';
    font-size: 1.8rem;
    line-height: 2.4rem;
}


.bullet-feature__left h3,
.info-block__left h3 {
    font-family: "CircularXXWeb-Medium";
    font-weight: 500;
    font-size: 1.8rem;
    line-height: 2.4rem;
    margin: 0px 0 17px 0;
    text-transform: uppercase;
}

.bullet-feature__left h2 {
    font-family: 'domaine italic';
    font-size: 3.2rem;
    line-height: 3.6rem;
    margin-bottom: 60px;
}

.wrap-page-content ul {
    list-style: none;
}

.wrap-page-content li,
.bullet-feature__left__inner i {
    margin-bottom: 15px;
    font-size: 1.6rem;
    line-height: 1.8rem;
}

.image {
    position: relative;
}


.repeatable-highlight__details h2 {
    font-family: "CircularXXWeb-Medium";
    font-size: 2rem;
    line-height: 2.5rem;
    text-transform: uppercase;
    margin-bottom: 2rem;
}


.repeatable-highlight__details p,
.image__gallery-single h2,
.carousel-wrapper h2,
.three-images .content {
    font-size: 3rem;
    line-height: 3.6rem;
    font-family: 'Domaine Italic';
}



.carousel-wrapper h2 {
    font-size: 2.7rem !important;
    line-height: 3rem !important;
    font-family: 'Domaine Italic';
}

.slick-prev,
.slick-next {
    position: absolute;
    top: 50% !important;
    display: block;
    width: 44px !important;
    height: 44px !important;
    padding: 0 !important;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
    opacity: 0.75 !important;
    background: #000000 !important;
}

.slick-prev:before,
.slick-next:before {
    opacity: 1 !important;
    width: 10px;
    height: 20px;
    top: 12px !important;
    left: 17px;
    background-size: contain;
    content: url(images/carousel-arrow-right.svg) !important;
    position: absolute;
}

.slick-next {
    right: 0 !important;
    //margin-right: 25px;
}

.slick-prev {
    left: 0 !important;
    //margin-left: 0px;
    z-index: 99;
    top: 0;

}

.slick-prev:before {
    //background: url(images/carousel-arrow-left.svg) no-repeat;
    //background-size: contain;
    content: url(images/carousel-arrow-left.svg) !important;
    left: 15px;
}

.slick-next:focus
{
    //color: transparent;
    //outline: none;
    //background: #000000;
}


.page-id-106 #content,
.page-id-105 #content {
    margin-bottom: 150px;
}

.page-id-393 #content .wrap-page-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-id-393 .simple-text {
    width: 100%;
    margin: 100px 0 200px 0;
}

.page-id-393 .simple-text h2 {
    margin-bottom: 20px;
}

.image__gallery-single h2,
.carousel-wrapper h2,
.floorplate-wrapper h2 {
    text-align: left;
    margin: 70px 0 20px 0;
}

.carousel-wrapper__inner,
.floorplate-wrapper__inner {
    margin-left: 30px;
}

.image__gallery-single p,
.carousel-wrapper p,
.floorplate-wrapper p {
    text-align: left;
    margin: 0px 0 40px 0;
    font-family: 'Domaine Regular';
}

.repeatable-highlight__details--inner {
    border-top: 2px solid #EDEDED;
    border-bottom: 2px solid #EDEDED;
    height: 100%;
    margin-right: 25px;
}

.three-images .content {
    border-top: 2px solid #EDEDED;
    border-bottom: 2px solid #EDEDED;
    padding-bottom: 50px;
    min-height: calc(45% - 25px);
    box-sizing: border-box;
    max-height: 45%;
    font-size: 2.6rem;
    line-height: 3rem;
}

.three-images .image {
    height: 55% !important;
    background-size: cover !important;
    background-color: #d0e2f0 !important;
}



.three-images .first-col {
    box-sizing: border-box;
}

.first-col .col {
    margin: 0px 25px 25px 0;
    height: auto;
}






.full-width-image-content h2 {
    font-size: 2rem;
    font-weight: 500;
    font-family: "CircularXXWeb-Medium";
}

.full-width-image-content p {
    font-family: 'Domaine Regular';
    font-size: 1.8rem;
    line-height: 2.4rem;
    margin-bottom: 20px;
    max-width: 80%;
}

#floorplates {
    text-align: left;
    margin-top: 70px;
    font-size: 2.7rem;
    line-height: 3rem;
}

.floorplate {
    background: #F4FBFE;
    padding-bottom: 30px;
}

.floorplate ul {
    margin: 0 auto;
    list-style: none;
    display: flex;
    justify-content: center;
}

.floorplate li {
    font-family: 'Domaine Regular';
    font-size: 2.6rem;
    line-height: 3.2rem;
    font-weight: 400;
    position: relative;
}

.floorplate li:first-child {
    margin-right: 50px;
}

.floorplate .active-tab:before,
.floorplate li:hover:before {
    height: 1px;
    position: absolute;
    width: 100%;
    background: #363636;
    content: '';
    bottom: 0;
    left: 0;
    margin-top;
    3px;
    font-weight: 500;

}

.floorplate .active-tab a {
    font-family: 'Domaine Semibold';
}

.tower-plate-controls {
    margin-top: 50px;
}

#annotations-mobile {
    display: none;
}


.tower-plate-map svg {
    position: relative;
    margin: 0 auto;
}

#floorplan-img {
    pointer-events: none;
}

#annotations-desktop {
    pointer-events: none;
}

#tower .cls-1,
#tower .cls-2,
#tower .cls-3,
#tower .cls-4 {
    transition: all 0.1s ease;
    cursor: pointer;
}

#podium .cls-1,
#podium .cls-2,
#podium .cls-3,
#podium .cls-4 {
    transition: all 0.1s ease;
    cursor: pointer;
}

#podium-mobile .cls-1,
#podium-mobile .cls-2,
#podium-mobile .cls-3,
#podium-mobile .cls-4 {
    transition: all 0.1s ease;
}

#tower-mobile .cls-1,
#tower-mobile .cls-2,
#tower-mobile .cls-3,
#tower-mobile .cls-4 {
    transition: all 0.1s ease;
}

#tower .cls-1:hover,
#tower .cls-2:hover,
#tower .cls-3:hover,
#tower .cls-4:hover {
    fill: #F4A56C;
    cursor: pointer;
}

#podium .cls-1:hover,
#podium .cls-2:hover,
#podium .cls-3:hover,
#podium .cls-4:hover {
    fill: #F4A56C;
    cursor: pointer;
}

.modal {
    height: 90%;
    width: 100%;
}

.modal .note {
    display: block;
    text-align: center;
    margin: 0 auto;
}

.hide-tab {
    display: none;
}



#sf-form {
    width: 60%;
    margin: 0 auto;
    margin-top: 20px;
}

#sf-aalii p {
    max-width: 380px;
    margin: 0 auto;
    text-transform: none;
    font-family: 'Domaine Regular';
    margin-bottom: 30px;
}

.underline {
    text-decoration: underline;
}

.foot p {
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.9rem;
    text-align: center;
    margin-bottom: 15px;
    width: 65%;
    max-width: none !important;
    font-family: "CircularXXWeb-Book" !important;
}

.foot .bigger {
    font-size: 1.4rem;
    line-height: 2.1rem;
}

.foot .empasize p {
    font-size: 1.5rem;
    line-height: 2.2rem;
    font-family: 'Domaine Regular' !important;
}

select,
input[type=text],
input[type=email],
input[type=phone] {
    width: calc(100% - 25px);
    font-size: 14px;
    border: 1px solid #363636;
    padding: 11px 18px;
    margin-bottom: 15px;
    text-transform: uppercase;
    color: #363636;
}

#sf-form label {
    position: absolute !important;
    width: 1px;
    height: 1px;
    clip: rect(1px, 1px, 1px, 1px);
}

select {
    background: url(images/dropdowndown.svg) no-repeat 95%;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0;
}

#sf-form .checkbox-container {
    display: inline-block;
    position: relative !important;
    padding-left: 30px;
    margin-bottom: 12px;
    cursor: pointer;
    line-height: 48px;
    font-style: italic;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    position: relative !important;
    width: auto !important;
    height: auto !important;
    clip: auto !important;
    text-align: center;
    font-family: 'Domaine Regular';
    font-size: 1.6rem;
    font-style: normal;
}

.checkbox-container input {
    position: absolute;
    display: none;
    cursor: pointer;
    height: 0;
    width: 0;
}

.col-12 select {
    background-position: 97.5%;
}

input[type=text]:focus,
input[type=text]:active,
input[type=email]:focus,
input[type=email]:active,
input[type=phone]:focus,
input[type=phone]:active {
    outline: none;
}

input[type=submit] {
    transition: all 0.3s ease;
}

input[type=submit]:disabled, .disabled {
    opacity: 0.7;
}

input[type=submit]:hover, #submit-lead:hover {
    background: black;
}

#submit-lead.submitting {
    min-width: 152px;
    padding: 6px 50px;
}

::-webkit-input-placeholder {
    /* Edge */
    color: #363636;
}

:-ms-input-placeholder {
    /* Internet Explorer 10-11 */
    color: #363636;
}

::placeholder {
    color: #363636;
}


/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 13px;
    width: 13px;
    margin-top: 17px;
    border: 1px solid #363636;
    border-radius: 50%;
}



/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.checkbox-container input:checked~.checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.checkbox-container .checkmark:after {
    left: 2px;
    top: 2px;
    width: 7px;
    height: 7px;
    background: #363636;
    border-radius: 50%;
}


.flooplatemodal h3 {
    font-size: 3.8rem;
    font-family: 'Domaine Regular';
    margin-bottom: 10px !important;
    margin-top: 84px !important;
    text-transform: none !important;
    display: block;
}

.flooplatemodal h4 {
    font-size: 2rem;
    line-height: 2.4rem;
    font-family: "CircularXXWeb-Book";
    text-transform: uppercase;
}


.flooplatemodal .note {
    font-size: 1.9rem;
    font-family: 'Domaine Italic';
}

.image-container {
    text-align: center;
    margin: 20px 0;
}

.image-container img {
    width: 100%;
}

.image-container #residence-mobile-image {
    display: none;
}

.mobile-image {
    display: none !important;
}

.bullets ol {
    list-style: none;
    counter-reset: li;
    margin-left: 20px;
    -webkit-column-count: 4;
    -moz-column-count: 4;
    column-count: 4;
    margin: 0 auto;
    column-fill: balance;
}

.bullets li {
    counter-increment: li;
    position: relative;
    padding-left: 45px;
}

.bullets ol li:before {
    content: '.'counter(li);
    color: #F47820;
    display: inline-block;
    width: 40px;
    text-align: right;
    direction: rtl;
    position: absolute;
    left: 0;
}



.hide,
.mobile-only {
    display: none;
}

.slider div img {
    width: 100%;
}

.slider div {
    position: relative;
}



.facebook,
.instagram {
    text-indent: -9999px;
    display: block;
    margin-right: 10px;
    background: url(images/facebook.svg) no-repeat;
    background-size: contain;
    width: 19px;
    height: 19px;
    float: left;
    display: inline;
}

.instagram {
    background: url(images/instagram.svg) no-repeat;
    background-size: contain;
}

.page-id-3 .simple-text ul,
.page-id-105 .simple-text ul {
    margin-top: 0;
    padding-top: 0;
    margin-bottom: 50px;
}

.page-id-3 p {
    margin-bottom: 10px;
}

.page-id-3 .simple-text ul li,
.page-id-105 .simple-text ul {
    font-family: 'Domaine Regular';
    font-size: 1.8rem;
    line-height: 2.4rem;
    list-style: disc;
    margin-left: 20px;
}

.page-id-3 h5,
.page-id-105 h5 {
    font-family: 'Domaine Semibold';
    margin-bottom: 20px;
    margin-top: 50px;
}

.page-id-3 strong,
.page-id-105 strong {
    font-family: 'Domaine Semibold';
    font-weight: normal;
}

.page-id-3 .simple-text {
    margin-bottom: 100px;
}

.amenties .bullets {
    margin-left: 80px;
    margin-right: 60px;
}

.amenties .bullets li {
    margin-right: 20px;
    font-size: 1.5rem;
}


/****** video player ******/

.video-player {
    display: block;
    position: relative;
    height: calc(100vw / 16 * 9);
}

#player {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#controls {

    position: absolute;

    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: rgba(0, 0, 0, 0.5); */

    background-size: cover;


}

.btn-play {

    position: absolute;
    cursor: pointer;
    width: 92px;
    height: 92px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.7);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    outline: none;
    background-image: url(images/play.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 26px 24px;
    text-indent: -9999px;
}

.hidden {
    visibility: hidden;
}


#residence-address p {
    margin-bottom: 5px;
}


@media screen and (max-width: 1300px) {



    .spacer {
        max-width: 25%;
        flex-basis: 25%;
    }

    .three-images .content {
        font-size: 2.6rem;
        line-height: 3.0rem;
        font-family: 'Domaine Italic';
    }

    .three-images .pad-top {
        padding-top: 30px;
    }
}


@media screen and (max-width: 1100px) and (min-width: 871px) {

    .horizontal-card p {
        font-size: 2.6rem;
        line-height: 3.2rem;
        font-family: 'Domaine Italic';
    }

    .three-images .image {
        background: none;
        height: 55% !important;
    }

    .horizontal-card__details {
        margin-right: 5%;
        padding: 20px 10px 0 50px;
        border-left: 10px solid white;
    }

    .bullets {
        margin-left: 40px !important;
        margin-right: 0 !important;
    }

    .bullets ol {
        -webkit-column-count: 3;
        -moz-column-count: 3;
        column-count: 3;
        margin: 0 auto;
        column-fill: balance;

    }


    .three-images .content {
        font-size: 2.3rem;
        line-height: 3.0rem;
        font-family: 'Domaine Italic';
    }


    .three-images .first-col .pad-content {
        padding-left: 20px;
        padding-right: 20px;
    }

    .three-images .pad-top {
        padding-top: 20px;
    }


    .repeatable-highlight__details--inner.pad-content,
    .info-block__left.pad-content {
        padding: 0 20px;
    }

    .repeatable-highlight__details--inner.pad-top,
    .info-block__left.pad-top {
        padding-top: 10px;
    }

    .repeatable-highlight__details--inner h2 {
        margin-top: 20px;
    }

    .repeatable-highlight__details p,
    .image__gallery-single h2,
    .carousel-wrapper h2 {
        font-size: 2.4rem;
        line-height: 3.0rem;
        font-family: 'Domaine Italic';
    }


}

@media screen and (max-width: 1180px) and (min-width: 1101px) {

    .horizontal-card p {
        font-size: 2.9rem;
        line-height: 3.2rem;
        font-family: 'Domaine Italic';
    }
    
}


@media screen and (max-width: 1220px) and (min-width: 871px) {
    .three-images .image {
        height: calc(55% - 25px) !important;
    }

}

@media screen and (max-width: 920px) and (min-width: 871px) {
    .three-images .content {
        font-size: 2rem;
        line-height: 2.7rem;
        font-family: 'Domaine Italic';
    }
    
    .horizontal-card p {
        font-size: 2.2rem;
        line-height: 3rem;
        font-family: 'Domaine Italic';
    }
}


@media screen and (max-width: 870px) {

    body {
        overflow-x: hidden;
        width: 100vw;
    }

    #sf-form {
        width: 100%;
        margin: 0 auto;
    }

    .foot p {
        width: 85%;
    }

    .three-images .image {
        background: none !important;
    }

    .amenties .bullets li {
        width: 100%;
    }

    .amenties .bullets {
        margin: 0 auto;
    }

    .announcement__bar {
        background: #DAF2FC;
        width: 100vw;
        display: block;
        padding: 30px 20px;
        text-align: center;
        margin-bottom: 90px;
        margin-top: -50px !important;
        position: relative;
        margin-top: 0px !important;
        margin-top: 45px !important;
        margin-bottom: 50px;
    
    }

    .sticky-mobile.announcement__bar {
        position: fixed;
    }

    .has-announce-bar {
        padding-top: 0px;
    }
    


    header {

        position: fixed;
        top: 0;
        background: white;
        z-index: 999;
        transition: all 0.3s linear;
        width: 100vw;

    }

    .cookie {
        padding: 30px;
    }

    .cookie .flex-wrap {
        display: block;
        text-align: center;
    }

    .cookie-message {
        width: 100%;
    }

    .close-disclaimer {
        margin-top: 20px;
        display: inline-block;
    }

    #content {
        margin-top: 100px;
        visibility: hidden;
    }

    #content.has-announce-bar {
        margin-top: 45px;
    }


    #has-subnav .has-announce-bar {
        padding-top: 0px;
    }


    #annotations-mobile {
        display: block;
    }

    #annotations-desktop,
    .desktop-only {
        display: none;
    }

    .desktop-image {
        display: none;
    }

    .mobile-image {
        display: block !important;
    }


    .mobile-only {
        display: block;
    }

    .image-container #residence-mobile-image {
        display: block;
        margin: 0 auto;
    }

    .image-container #residence-desktop-image {
        display: none;
    }

    h2 {
        font-family: 'Domaine Italic';
        font-size: 2.2rem;
        line-height: 2.6rem;
    }

    .bullets ol {
        margin-left: 0px;
        -webkit-column-count: 1;
        -moz-column-count: 1;
        column-count: 1;
        margin: 0 auto;
        max-width: 50%;

    }


    .has-subnav:hover .sub-menu {
        display: none !important;
    }

    .subnav-header {
        padding: 10px 20px 10px 0;
        height: 45px;
    }


    .subnav-header .top {
        font-family: 'CircularXXWeb-Medium';
        font-size: 1rem;
        font-weight: 500;
        display: none !important;

    }

    .subnav-header ul li {
        font-size: 1.2rem;
        margin-right: 10px;
        font-family: 'Domaine Regular';
        margin-top: 4px;
    }

  
    


    .subnav-header .logo {

        margin-right: 0;
    }



    .fancybox-content {
        padding: 0px 25px 60px 25px !important;
    }

    select,
    input[type=text],
    input[type=email],
    input[type=phone] {
        width: 100%;
    }


    body {
        font-size: 1.4rem;
        line-height: 2rem;
    }

    .logo {
        z-index: 999;
    }

    #mobile_menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: white;
        z-index: 99;
    }

    .mobile__nav {
        margin-top: 100px;
        text-align: center;
    }

    .mobile__nav li a {
        font-size: 2rem;
        line-height: 3rem;
        margin-bottom: 10px;
        display: block;
    }

    .inquire {
        border-left: none;
        padding-left: 0px;
    }


    .main__nav {
        display: none;
    }

    .logo {
        margin-left: 25px;
    }


    .logo a {
        background: url(images/aalii.svg) no-repeat;
        background-size: contain;
        width: 105px;
        height: 22px;
        display: block;
        margin: 0;
    }


    header {
        height: 45px;
        margin-bottom: 30px;
        border-bottom: none;
    }


    h1 {
        font-size: 3.6rem;
        line-height: 4.6rem;
        margin-bottom: 30px;
    }

    .pad-content {
        padding: 0 25px;
    }

    .top_intro .image {
        position: relative;
        width: 100vw;
        height: calc(100vw / 16 * 12);
        background-size: cover !important;
    }

    .intro-copy {
        margin: 40px 0px 40px 0px;
        padding: 0px 15px;
        font-size: 1.4rem;
        border-left: 5px solid #F47820;
        max-width: 100%;
        font-family: 'Domaine Regular';
    }

    .intro-copy strong {
        font-size: 2rem;
        line-height: 2.5rem;
    }

    .home .intro-copy {
        margin-bottom: 50px;
    }

    .horizontal-card__inside {
        display: flex;
        flex-wrap: wrap;
    }

    .horizontal-card__inside div {
        width: 100%;
    }

    .horizontal-card__details {
        padding: 20px 0 0 40px;
        order: 2;
        border: none;
    }

    .page-id-106 #content,
    .page-id-105 #content {
        margin-bottom: 70px;
    }


	.disclaimers {
		font-family: "CircularXXWeb-Book";
		font-size: 1.4rem;
		line-height: 2rem;
		margin-top: 30px;
		padding: 0 20px;
	}



    .image__gallery-single h2,
    .carousel-wrapper h2,
    .floorplate-wrapper h2 {
        text-align: left;
        margin: 24px 0 10px 0;
    }

    .carousel-wrapper__inner,
    .floorplate-wrapper__inner {
        margin-left: 0px;
    }

    .floorplate-wrapper__inner {
        margin-left: 20px;
    }

    .image__gallery-single p,
    .carousel-wrapper p,
    .floorplate-wrapper p {
        text-align: left;
        margin: 0px 0 30px 0;
    }

    .slick-prev,
    .slick-next {
        position: absolute;
        top: 38% !important;
    }

    #floorplates {
        margin-top: 30px;
    }

    .content-module {
        margin-bottom: 25px;
    }

    .horizontal-card__image {
        order: 1;
        border-bottom: 1px solid #EAEAEA;
        padding-bottom: 0px;
    }

    .horizontal-card p {
        font-size: 2.2rem;
        line-height: 2.6rem;
        font-family: 'Domaine Italic';
    }

    .carousel-image {
        display: block;
        margin-bottom: calc(2.4rem + 12px);
    }

    .slick-next,
    .slick-prev {
        padding-bottom: calc(2.4rem + 12px) !important;
    }

    figcaption {
        font-size: 1.2rem;
        line-height: 2.4rem;
        padding: 4px 15px 8px;
    }

    figcaption.carousel-caption {
        background: none;
        color: #363636;
        text-align: right;
        width: 100%;
    }

    footer {
        padding: 30px 20px 25px 20px;
    }

    footer a {
        font-size: 1.2rem;
        line-height: 2rem;
    }

    #menu-footer-menu li {
        line-height: 2rem;
        margin-bottom: 10px;
    }


    .col-3,
    .col-5,
    .col-4,
    .col-6,
    .col-7 {
        width: 100%;
        padding: 0;
        margin: 0;
        border: none;
        max-width: 100%;
        margin: 0 auto;
        flex-basis: 100%;
    }

    footer .col-3,
    footer .col-5,
    footer .col-4 {
        margin-bottom: 25px;
    }

    .footer__logos,
    .footer__social_links {
        display: flex;
        justify-content: center;
    }


    .footer__logos {

        max-width: 100vw;
    }

    .footer__logos img {
        height: auto;
    }


    .page-id-151 .bullet-feature__left {
        padding-top: 0 !important;
    }

    .bullet-feature__left__inner h2 {
        font-size: 2.2rem;
        line-height: 2.6rem;
    }



    .carousel-wrapper p,
    .floorplate-wrapper p,
    .bullet-feature__left__inner p {
        font-size: 1.6rem;
        line-height: 2rem;
    }

    .bullet-feature__left__inner li {
        font-size: 1.5rem;
        line-height: 1.8rem;
    }

    .repeatable-highlight .repeatable-highlight__details--inner {
        padding: 27px 25px 27px 25px;
        box-sizing: border-box;

    }

    .bullet-feature__left__inner {
        padding: 27px 25px 27px 25px !important;

    }

    .repeatable-highlight .repeatable-highlight__details {
        margin-bottom: 20px !important;
    }

    .repeatable-highlight .repeatable-highlight__details--inner p {
        font-size: 2rem;
        line-height: 2.4rem;
    }

    .repeatable-highlight__details--inner {
        margin-right: 0px;
    }

    .full-width-image-content__details .pad-content {
        padding: 0;
    }

    .full-width-image-content__details {
        margin-top: 30px;
    }

    .view-floorplan-btn,
    .view-floorplan-btn-podium {
        background: #363636;
        color: white;
        border-radius: 0;
        height: 36px;
        padding: 10px 45px;
        text-transform: uppercase;
        font-size: 1.4rem;
        text-align: center;
        border: none;
    }



    .full-width-image-content p {
        max-width: 100%;
    }

    footer div {
        text-align: center;
    }

    .bullet-features .pad-content,
    .image__gallery-single .pad-content {
        padding: 0;
    }

    .bullet-features .bullet-feature__left {
        padding: 25px 20px 0px 20px;
        order: 2;
    }

    .info-block__left,
    .repeatable-highlight__details {
        order: 2;
    }

    .bullet-feature__right,
    .info-block__right,
    .repeatable-highlight__image,
    .page-id-151 .bullet-features .bullet-feature__left {
        order: 1;
    }

    .page-id-151 .bullet-features .bullet-feature__left {
        margin-bottom: 20px;
    }

    .page-id-151 .repeatable-highlight__details {
        order: 1;
    }


    .page-id-151 .repeatable-highlight__image {
        order: 2;
    }

    .info-block__left h3 {
        margin-top: 30px;
        margin-bottom: 20px;
    }

    .repeatable-highlight__image {
        margin-bottom: 30px;
    }

    .horizontal-card:hover .horizontal-card__details {
        border-left: 6px solid #F47820;
    }

    .wv-logo {
        height: 14px;
        margin-right: 30px;
        margin-left: 10px;
    }

    .hh-logo {
        height: 30px;
        margin-bottom: -15px;
        min-width: 140px;
    }

    .sub-menu {
        display: none !important;
    }

    .floorplate ul {
        justify-content: center;
    }

    .floorplate li {
        font-family: 'Domaine Regular';
        font-size: 1.6rem;
        line-height: 1.9rem;
        font-weight: 400;
        position: relative;
        padding-top: 40px;
    }

    .flooplatemodal h3 {
        font-size: 2.8rem;
        font-family: 'Domaine Regular';
        margin-bottom: 5px !important;
        margin-top: 60px !important;
        text-transform: none !important;
        display: block;
    }

    .flooplatemodal h4 {
        font-size: 1.6rem;
        font-family: "CircularXXWeb-Book";
        text-transform: uppercase;
    }

    .unit-details,
    .unit-details-podium {
        margin: 30px 0 20px 0;
    }

    .tower-plate-controls {
        width: 100%;
        text-align: center;
        background: none;
    }

    .podium-mobile-wrap {
        text-align: center;
        margin-top: 30px;
    }

    .mobile-no-pad {
        padding: 0;
    }

    .unit-details h3,
    .unit-details-podium h3 {
        font-size: 1.8rem;
        line-height: 2rem;
        font-family: 'Domaine Regular';
        margin-bottom: 5px !important;
        text-transform: none !important;
        display: block;
    }

    .unit-details h4,
    .unit-details-podium j4 {
        font-size: 1.4rem;
        line-height: 2rem;
        font-family: "CircularXXWeb-Book";
        text-transform: uppercase;
    }

    .floorplate li:first-child {
        margin-right: 25px;
    }

    .hamburger {
        width: 26px;
        z-index: 25;
        display: block;
        top: 1.4375rem;
        right: 1.25rem;
        cursor: pointer;
        margin-right: 20px;
    }

    .hamburger span {
        position: relative;
        display: block;
        height: 2px;
        top: 0;
        background: #000;
        -webkit-transition: .3s;
        -o-transition: .3s;
        transition: .3s;
    }

    .hamburger span+span {
        margin-top: 4px;
    }

    .hamburger.active span:first-child {
        top: 6px;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg);
        -webkit-transition: top .3s, -webkit-transform .3s .3s;
        transition: top .3s, -webkit-transform .3s .3s;
        -o-transition: top .3s, -o-transform .3s .3s;
        transition: top .3s, transform .3s .3s;
        transition: top .3s, transform .3s .3s, -webkit-transform .3s .3s, -o-transform .3s .3s;
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        top: -6px;
        -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        transform: rotate(-45deg);
        -webkit-transition: top .3s, -webkit-transform .3s .3s;
        transition: top .3s, -webkit-transform .3s .3s;
        -o-transition: top .3s, -o-transform .3s .3s;
        transition: top .3s, transform .3s .3s;
        transition: top .3s, transform .3s .3s, -webkit-transform .3s .3s, -o-transform .3s .3s;
    }

    .three-images .first-col {
        display: block;
        height: 100%;
    }



    .three-images .image {
        margin-bottom: 25px;
    }


    .three-images .first-col .col {
        height: auto !important;
        margin-right: 0px;
        background-position: center center;
        margin-bottom: 15px;



    }

    .three-images .last {
        margin-right: 0 !important;
    }

    .three-image .img {
        min-height: 300px;
    }

    .mobile-only {
        display: block;
    }


    .fancybox-slide--html .fancybox-close-small {
        width: 15px;
        height: 15px;
        margin-top: 10px;
        margin-right: 10px;
    }

    .modal {
        height: 100%;
        width: 100%;
    }

    .flooplatemodal .note {
        font-size: 1.4rem;
        font-family: 'Domaine Italic';
    }

    #podium svg {
        margin-top: 20px;
    }

    .floorplate .pad-content {
        padding: 0 10px;
    }

    footer {
        margin-top: 0;
    }

    #sf-aalii {
        margin-top: 50px;
    }

    .stickyMargin {
        margin-top: 45px;
    }

    .simple-text {
        width: 95%;
    }


}




@media print {
    * {
        background: transparent !important;
        color: black !important;
        -webkit-box-shadow: none !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }

    .show-for-print {
        display: block !important;
    }

    .hide-for-print {
        display: none !important;
    }

    table.show-for-print {
        display: table !important;
    }

    thead.show-for-print {
        display: table-header-group !important;
    }

    tbody.show-for-print {
        display: table-row-group !important;
    }

    tr.show-for-print {
        display: table-row !important;
    }

    td.show-for-print {
        display: table-cell !important;
    }

    th.show-for-print {
        display: table-cell !important;
    }

    a,
    a:visited {
        text-decoration: underline;
    }

    a[href]:after {
        content: " ("attr(href) ")";
    }

    .ir a:after,
    a[href^='javascript:']:after,
    a[href^='#']:after {
        content: '';
    }

    abbr[title]:after {
        content: " ("attr(title) ")";
    }

    pre,
    blockquote {
        border: 1px solid #3a3a3a;
        page-break-inside: avoid;
    }

    thead {
        display: table-header-group;
    }

    tr,
    img {
        page-break-inside: avoid;
    }

    img {
        max-width: 100% !important;
    }

    @page {
        margin: 0.5cm;
    }

    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }

    h2,
    h3 {
        page-break-after: avoid;
    }
}</pre></body></html>