/*

bg grey:    #f2eeea;
bg grey 2:  #f1f1f2;
gold:       #ad936d;
body grey:  #53575a;
dark grey:  #525352;
footer:     #888b8d;
dot:        #c8c8c8;
nav/titles: #282828;

*/


/* ====== Begin Boilerplate CSS ====== */

html {
    margin: 0;
    padding: 0;
    height: 100%;
    box-sizing: border-box;
    background-color: #f1f1f2; /* Color seen during overscroll */
    font-size: 62.5%;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'ACaslonPro-Regular', serif;
    min-height: 100%;
    /*height: 100%;*/
    color: #282828;
    /*-webkit-font-smoothing: antialiased;*/
    /*-moz-osx-font-smoothing: grayscale;*/

    /* for slider */
    overflow-x: hidden;
}

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

p, li, span { margin: 0; line-height: 1.65; }

a { outline: 0; text-decoration: none; transition: color 0.25s ease-in-out; }

a:link { text-decoration: none; color: #282828; }
a:visited { text-decoration: none; color: #282828; }
a:focus { outline: 1px dotted #282828; }
a:hover { text-decoration: none; color: #ad936d; }
a:active { text-decoration: none; color: #282828; }

ul {
    list-style-type: none;
    padding: 0px;
    margin: 0px;
}

h1,h2,h3,h4,h5,h6 {
    margin: 0;
    font-weight: normal;
}

html > * { font-size: 1.4rem; }

.serif { font-family: serif; }
.sans-serif { font-family: sans-serif; }
.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }

.vh {
    height: 100vh;
}

/*.abs-fill-wrapper {*/
/*position: relative;*/
/*display: block;*/
/*height: 100%;*/
/*}*/

/*@media all and (min-width: 414px) {*/

.abs-fill-wrapper {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: 100%;
}

/*}*/

.table-table {
    position: relative;
    display: table;
    height: 100%;
    width: 100%;
}

.table-cell {
    position: relative;
    display: table-cell;
    height: 100%;
    width: 100%;
    vertical-align: middle;
}

.aspect-wrapper {
    position: relative;
    display: block;
    width: 100%;
    overflow: hidden;
}

.aspect-content {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.aspect-16-9 {
    position: relative;
    display: block;
    padding-top: 56.25%;
}

.aspect-3-2 {
    position: relative;
    display: block;
    padding-top: 66.666%;
}

.aspect-4-3 {
    position: relative;
    display: block;
    padding-top: 75%;
}

.aspect-6-5 {
    position: relative;
    display: block;
    padding-top: 83.333%;
}

.aspect-1-1 {
    position: relative;
    display: block;
    padding-top: 100%;
}

.stay-down-wrapper {
    position: relative;
    min-height: 100%;
}

.stay-down-content {
    /* padding-bottom: [height of footer]; */
}

.stay-down-footer {
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    right: 0;
    /* height: [height of footer]; */
}

.close {
    position: relative;
    display: inline-block;
    width: 25px;
    height: 25px;
    overflow: hidden;
    cursor: pointer;
    transition: background-color 0.35s ease-in-out;
}

.close::before, .close::after {
    content: '';
    position: absolute;
    height: 2px;
    margin-top: -1px;
    width: 100%;
    top: 50%;
    left: 0;
    background-color: #000;
    transition: background-color 0.35s ease-in-out;
}

.close::before {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

.close::after {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.close:hover {
    background-color: #000;
}

.close:hover::before,
.close:hover::after {
    background-color: #fff;
}

.page-curtain {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #f1f1f2;
    transition: opacity 2.5s cubic-bezier(0.55, 0.085, 0.68, 0.53);
    z-index: 5;
}

body.loaded .page-curtain {
    pointer-events: none;
    opacity: 0;
}

.vh-landing video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 101%;
    min-height: 101%;
    width: auto;
    height: auto;
    -ms-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    overflow: hidden;
}



/* Animated Menu Hamburger */

#menu-toggle {
    position: fixed;
    top: 17px;
    right: 16px;
    width: 29px;
    height: 29px;
    cursor: pointer;
}

#menu-toggle * {
    transition: width .25s ease-in-out, height .25s ease-in-out;
    box-sizing: border-box;
}

#menu-toggle span {
    display: block;
    background-color: #282828;
}

#menu-toggle #hamburger {
    position: absolute;
    height: 100%;
    width: 100%;
}

#menu-toggle #hamburger span {
    width: 29px;
    height: 1px;
    position: relative;
}

#menu-toggle #hamburger span:nth-child(1) {
    transition-delay: 0.5s;
    margin: 5px 0 8px;
}

#menu-toggle #hamburger span:nth-child(2) {
    transition-delay: 0.625s;
    margin: 0;
}

#menu-toggle #hamburger span:nth-child(3) {
    transition-delay: 0.75s;
    margin: 8px 0 5px;
}

#menu-toggle #cross {
    position: absolute;
    height: 100%;
    width: 100%;
    -ms-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

#menu-toggle #cross span {
    background-color: #282828;
}

#menu-toggle #cross span:nth-child(1) {
    height: 0%;
    width: 1px;
    position: absolute;
    top: 0;
    left: 14px;
    transition-delay: 0s;
}

#menu-toggle #cross span:nth-child(2) {
    width: 0%;
    height: 1px;
    position: absolute;
    left: 0;
    top: 14px;
    transition-delay: 0.25s;
}

#menu-toggle.open #hamburger span {
    width: 0%;
}

#menu-toggle.open #hamburger span:nth-child(1) {
    transition-delay: 0s;
}

#menu-toggle.open #hamburger span:nth-child(2) {
    transition-delay: 0.125s;
}

#menu-toggle.open #hamburger span:nth-child(3) {
    transition-delay: 0.25s;
}

#menu-toggle.open #cross span:nth-child(1) {
    height: 100%;
    transition-delay: 0.625s;
}

#menu-toggle.open #cross span:nth-child(2) {
    width: 100%;
    transition-delay: 0.375s;
}



/* ====== Slick Slider overrides ====== */

.slick-list,
.slick-track,
.slick-slide,
.slick-slide > div,
.slick-slide > div > div,
.slick-slide > div > div > img {
    height: 100%;
}

.slick-slide > div,
.slick-slide > div > div > img {
    width: 100%;
}

/* For when setting the gallery to a specific aspect-ratio */
.aspect-content .slider {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

/* For when swapping lazy-loaded img src as background-image */
.slick-list .slide img {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

/* ====== Form Styling Overrides ==== */

form {
    position: relative;
    display: block;
    margin: 0 auto;
    /*padding: 18px 0 0;*/
    width: 100%;
    /*max-width: 400px;*/
}

form label {
    display: none;
}

form input,
form select {
    position: relative;
    display: block;
    width: 100%;
    color: #000;
    background-color: transparent;
    border-top: 1px solid transparent;
    border-right: 1px solid transparent;
    border-left: 1px solid transparent;
    border-bottom: 1px solid #000;
    margin-bottom: 12px;
    line-height: 30px;
    height: 30px;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    outline: none;

    transition: background-color 0.25s ease;
}

form input::-webkit-input-placeholder {
    color: #000;
    opacity: 1 !important;
}
form input::-moz-placeholder {
    text-indent: 10px !important;
    color: #000;
    opacity: 1 !important;
}
form input:-ms-input-placeholder {
    color: #000;
}
form input:placeholder {
    color: #000;
}

form textarea::-webkit-input-placeholder {
    color: #000;
    opacity: 1 !important;
}
form textarea::-moz-placeholder {
    text-indent: 10px !important;
    color: #000;
    opacity: 1 !important;
}
form textarea:-ms-input-placeholder {
    color: #000;
}
form textarea:placeholder {
    color: #000;
}

form select {
    padding: 0 12px 0 0;
    line-height: 34px;
    background: url(../img/common/dd-arrow.png) right center no-repeat;
    background-size: 9px 18px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    -moz-text-indent: -2px;
}

@-moz-document url-prefix() { 
  form select {
    text-indent: -2px
  }
}

/* prevents white-on-white issues in Chrome */
form select option, optgroup {
    background-color: #fff;
    color: #000;
    -webkit-appearance: none;
}


form textarea {
    position: relative;
    display: block;
    width: 100%;
    margin-bottom: 12px;
    outline: none;
    background: transparent;
    color: #000;
    border: 1px solid #000;
    padding: 6px;
}

form input[type="submit"] {
    position: relative;
    display: block;
    margin: 0 auto;
    height: 36px;
    line-height: 36px;
    cursor: pointer;
    text-align: center;
    width: 100%;
    color: #000;
    border-radius: 0;
    border: 1px solid #000;
    padding: 0 10px;

    transition: background-color 0.35s ease-in-out, color 0.35s ease-in-out;
}

form input[type="submit"]:hover {
    background-color: #000 !important;
    color: #fff;
}

form input[type="submit"]:before {
    position: absolute;
    top: -50px;
    left: 0;
    content: '*required';
    font-style: italic;
    text-align: left;
}


/* ====== Waypoint Animations ====== */

.fade-in-up {
    opacity: 0;
    will-change: transform;
    -webkit-transform: translateY(50px);
    -ms-transform: translateY(50px);
    transform: translateY(50px);
    transition: opacity 1s ease-in-out, transform 1s ease;
}
.fade-in-up.activate,
.activate .fade-in-up {
    opacity: 1;
    will-change: transform;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

.fade-in-side {
    opacity: 0;
    will-change: transform;
    transition: opacity 1s ease-in-out, transform 1s ease;
}
.flop-row:nth-child(odd) .ff-copy.fade-in-side {
    -webkit-transform: translateX(-50px);
    -ms-transform: translateX(-50px);
    transform: translateX(-50px);
}
.flop-row:nth-child(even) .ff-copy.fade-in-side {
    -webkit-transform: translateX(50px);
    -ms-transform: translateX(50px);
    transform: translateX(50px);
}
.fade-in-side.activate,
.flop-row.activate .ff-copy.fade-in-side {
    opacity: 1;
    will-change: transform;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
}



/* ====== Begin Custom CSS ====== */

.vh-landing {
    position: relative;
    display: block;
    width: 100%;
    height: 100vh;
}

.vh-landing-inner {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* nav */
.nav {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    height: 64px;
    background-color: #f1f1f2;
    transition: transform 1s ease 5.5s;
}

body.home.preload .nav {
    transform: translateY(-64px);
}


/* REMOVED 2023 - 02- 13 PER CLIENT REQUEST */

/*body.loaded .nav.hide-nav {*/
    /*transform: translateY(-64px);*/
    /*transition: 0.5s ease 0s;*/
/*}*/

/*body.loaded .nav.show-nav {*/
    /*transform: translateY(0);*/
    /*transition: 0.5s ease 0s;*/
/*}*/

.a-nav-logo {
    position: relative;
    display: inline-block;
    margin-left: 16px;
    top: 14px;
}

.img-navlogo {
    position: relative;
    display: block;
    height: 36px;
    width: auto;
}

.nav-list {
    position: relative;
    display: block;
    padding-top: 36px;
    padding-left: 32px;
}

.nav-li {
    position: relative;
    display: block;
    margin-bottom: 9px;
}

.nav-li a {
    position: relative;
    display: inline-block;
    font-family: 'Canela-Regular';
}

.nav-no {
    position: relative;
    display: inline-block;
    margin-right: 4px;
    font-size: 0.8rem;
    color: #ad936d;
    width: 12px;
}

body.design .nav-li-design a:link,
body.amenities .nav-li-amenities a:link,
body.wellness .nav-li-wellness a:link,
body.location .nav-li-location a:link,
body.plans .nav-li-plans a:link,
body.news .nav-li-news a:link,
body.gallery .nav-li-gallery a:link,
body.contact .nav-li-contact a:link,
body.design .nav-li-design a:visited,
body.amenities .nav-li-amenities a:visited,
body.wellness .nav-li-wellness a:visited,
body.location .nav-li-location a:visited,
body.plans .nav-li-plans a:visited,
body.news .nav-li-news a:visited,
body.gallery .nav-li-gallery a:visited,
body.contact .nav-li-contact a:visited {
    color: #ad936d;
}

.nav-cta {
    position: relative;
    display: block;
    margin-left: 16px;
    height: 36px;
    width: 180px;
    line-height: 36px;
    border: 1px solid #ad936d;
    text-align: center;
    font-family: 'TradeGothic CondEighteen';
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-size: 1.2rem;
    transition: color 0.5s ease-in-out, background-color 0.5s ease-in-out;
}

.nav-cta:link,
.nav-cta:visited {
    color: #ad936d;
}

.nav-cta:hover,
.nav-cta:active {
    background-color: #ad936d;
    color: #fff;
}

body.nav-closed .nav {
    height: 64px;
    overflow: hidden;
}

body.nav-open .nav {
    height: 100%;
    bottom: 0;
    overflow-y: scroll;
}



body.nav-open .nav { transition: height 0.5s ease, padding-bottom 0s 0.5s; }
body.nav-open .nav-content-wrapper {  }
body.nav-open .nav-logo { transition: opacity 1s ease-in-out 0.05s; }
body.nav-open .nav-list li:nth-child(1) { transition: opacity 1s ease-in-out 0.30s; }
body.nav-open .nav-list li:nth-child(2) { transition: opacity 1s ease-in-out 0.35s; }
body.nav-open .nav-list li:nth-child(3) { transition: opacity 1s ease-in-out 0.40s; }
body.nav-open .nav-list li:nth-child(4) { transition: opacity 1s ease-in-out 0.45s; }
body.nav-open .nav-list li:nth-child(5) { transition: opacity 1s ease-in-out 0.50s; }
body.nav-open .nav-list li:nth-child(6) { transition: opacity 1s ease-in-out 0.55s; }
body.nav-open .nav-list li:nth-child(7) { transition: opacity 1s ease-in-out 0.60s; }
body.nav-open .nav-list li:nth-child(8) { transition: opacity 1s ease-in-out 0.65s; }

body.nav-open .nav-cta-wrapper { transition: opacity 1s ease-in-out 0.70s; }
body.nav-open .nav-footer { transition: opacity 1s ease-in-out 1.10s; }

body.nav-open .nav-logo,
body.nav-open .nav-list li:nth-child(1),
body.nav-open .nav-list li:nth-child(2),
body.nav-open .nav-list li:nth-child(3),
body.nav-open .nav-list li:nth-child(4),
body.nav-open .nav-list li:nth-child(5),
body.nav-open .nav-list li:nth-child(6),
body.nav-open .nav-list li:nth-child(7),
body.nav-open .nav-list li:nth-child(8),
body.nav-open .nav-cta-wrapper,
body.nav-open .nav-footer {
    opacity: 1;
}

@media all and (max-width: 959px) {
    body.nav-closed .nav {
        transition: height 0.5s ease-out 0.5s, padding-top 0s 0.5s;
    }
}

body.nav-closed .nav-content-wrapper {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease-in-out;
}

body.nav-closed .nav-logo,
body.nav-closed .nav-list li,
body.nav-closed .nav-footer,
body.nav-closed .nav-cta-wrapper {
    transition: opacity 0s 0.5s;
}

body.nav-closed .nav-logo,
body.nav-closed .nav-list li,
body.nav-closed .nav-footer,
body.nav-closed .nav-cta-wrapper {
    opacity: 0;
}



/* Flex Flopper */

.flex-flopper {
    position: relative;
    display: block;
    margin: 0 auto;
    max-width: 1600px;
    padding: 0 16px;
    margin-bottom: 72px;
}
.flop-row {
    position: relative;
    display: block;
    margin-bottom: 96px;
}
.ff-col {
}
.ff-copy,
.ff-img {
    position: relative;
    display: block;
    width: 100%;
}
.ff-copy {
    margin-bottom: 32px;
}
.ff-no {
    position: relative;
    display: block;
    color: #ad936d;
    font-family: 'Canela-Regular';
    font-size: 1rem;
}
.ff-title {
    position: relative;
    display: block;
    font-family: 'Canela-Regular';
    font-size: 1.8rem;
    color: #ad936d;
}
.ff-br {
    position: relative;
    display: block;
    margin: 8px auto 16px 0;
    width: 32px;
    height: 1px;
    background-color: #ad936d;
}
.med-title {
    position: relative;
    display: block;
    font-size: 4.8rem;
    font-family: 'Canela-Regular';
    line-height: 1.1;
    margin-bottom: 16px;
}
.ff-p {
    position: relative;
    display: block;
    margin-bottom: 16px;
}
.ff-cta {
    position: relative;
    display: block;
    width: 210px;
    max-width: 100%;
    margin: 0 auto 0 0;
    height: 36px;
    line-height: 36px;
    border: 1px solid #ad936d;
    text-align: center;
    font-family: 'TradeGothic CondEighteen';
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-size: 1.2rem;
    transition: color 0.5s ease-in-out, background-color 0.5s ease-in-out;
}
.ff-cta:link,
.ff-cta:visited {
    color: #ad936d;
}
.ff-cta:hover,
.ff-cta:active {
    background-color: #ad936d;
    color: #fff;
}
.flop-row:nth-child(1) .ff-img .aspect-content {
    background: url(../img/office.jpg) no-repeat center / cover;
}
.flop-row:nth-child(2) .ff-img .aspect-content {
    background: url(../img/11W_0003_4.jpeg) no-repeat center / cover;
}
.flop-row:nth-child(3) .ff-img .aspect-content {
    background: url(../img/neighborhood/WELLER_MWL002_1800x1200.jpg) no-repeat center / cover;
}
.flop-row:nth-child(4) .ff-img .aspect-content {
    background: url(../img/glass-box.jpg) no-repeat center / cover;
}


.landing-logo {
    position: absolute;
    right: 50%;
    bottom: 52.5%;
    transform: translate(50%, 50%);
    width: calc(100% - 64px);
    max-width: 420px;
}

.scroll-cta {
    position: absolute;
    bottom: 0;
    right: 50%;
    -webkit-transform: translateX(50%);
    -ms-transform: translateX(50%);
    transform: translateX(50%);
    cursor: pointer;

    bottom: -85px;
}

body.mobile .scroll-cta {
    bottom: 72px;
}

.scroll-cta span {
    position: relative;
    display: block;
    text-align: center;
    color: #f1f1f2;
    margin-bottom: 9px;
    pointer-events: none;
    font-family: 'TradeGothic CondEighteen';
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1.5rem;
}

.scroll-cta .scroll-arrow {
    position: relative;
    display: block;
    margin: 0 auto 16px;
    pointer-events: none;
}

.chapter-block {
    position: relative;
    display: block;
    width: 100%;
    padding: 96px 16px;
    text-align: center;
}

.chapter-block-inner {
    position: relative;
    display: block;
    margin: 0 auto;
}

.v-padless-block {
    position: relative;
    display: block;
    width: 100%;
    padding: 0 16px;
    text-align: center;
}

.wellness-feat-block {
    position: relative;
    display: block;
    width: 100%;
    padding: 64px 16px 0;
    text-align: center;
}
.final-block {
    margin-bottom: 64px;
}

.title-no {
    position: relative;
    display: block;
    font-family: 'Canela-Regular';
    font-size: 1.4rem;
    margin-bottom: 24px;
}

.big-title {
    position: relative;
    display: block;
    font-family: 'Canela-Regular';
    font-size: 6.4rem;
    color: #ad936d;
    line-height: 1;
    margin-bottom: 32px;
}

.title-subtitle {
    position: relative;
    display: block;
    font-family: 'TradeGothic CondEighteen';
    text-transform: uppercase;
    font-size: 1.5rem;
    letter-spacing: 2px;
    color: #ad936d;
    margin-bottom: 32px;
}

.copy-p {
    position: relative;
    display: block;
    margin: 0 auto 32px;
    max-width: 640px;
}

body.wellness .chapter-block-inner .copy-p {
    max-width: 680px;
}

.img-leed {
    position: relative;
    display: block;
    width: 100%;
    max-width: 160px;
    height: auto;
    margin: 72px auto 0;
}

.specs-block {
    position: relative;
    display: block;
    margin: 128px auto 0;
    max-width: 860px;
    border-top: 1px solid #ad936d;
    border-bottom: 1px solid #ad936d;
    padding: 42px 0;
    text-align: center;
}

.specs-block span {
    position: relative;
    display: block;
}

.specs-block .specs-title {
    font-family: 'Canela-Regular';
    font-size: 3.6rem;
    color: #ad936d;
    margin-bottom: 24px;
    line-height: 1.15;
}

.specs-block .spec {
    display: block;
    width: 220px;
    text-align: left;
    padding-left: 6px;
    margin: 0 auto;
    line-height: 1.25;
    margin-bottom: 3px;
}

.specs-block .spec:before {
    content: '-';
    position: absolute;
    top: 0;
    left: 0;
}

.specs-block .spec-sep {
    display: none;
    color: #ad936d;
    margin: 0 8px;
}


.large-copy {
    position: relative;
    display: block;
    font-family: 'Canela-Regular';
    font-size: 2.4rem;
    color: #ad936d;
    text-align: left;
    line-height: 1.35;
    margin: 0 auto 32px;
    max-width: 960px;
}

body.amenities .large-copy {
    max-width: 1060px;
}

body.wellness .large-copy {
    max-width: 1060px;
}


.news-highlights {
    position: relative;
    display: block;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 16px;
}
.nh-title {
    position: relative;
    display: block;
    color: #ad936d;
    font-family: 'Canela-Regular';
    font-size: 2.1rem;
    margin-bottom: 16px;
}
.nh-br {
    position: relative;
    display: block;
    width: 100%;
    height: 1px;
    background-color: #ad936d;
    margin: 24px 0;
}
.nh-wrapper {
    position: relative;
    display: block;
}
.nh-block {
    position: relative;
    display: block;
    margin: 0 auto 24px;
    max-width: 640px;
}
.nh-block:last-child {
    border-right: none;
}
.date-title {
    position: relative;
    display: block;
    color: #ad936d;
    font-size: 1.3rem;
    margin-bottom: 3px;
}
.nh-content {
    position: relative;
    display: flex;
    align-items: stretch;
    justify-content: center;
}
.nh-img {
    position: relative;
    width: 50%;
    padding-right: 16px;
}
.nh-img-inner {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    background: url(../img/sushi.jpg) no-repeat center / cover;
}
.hover-grad {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255,255,255,0.87);
    transition: opacity 0.35s ease-in-out;
    opacity: 0;

}
a.nh-block:hover .hover-grad {
    opacity: 1;
}
.hover-grad-plus {
    position: absolute;
    bottom: 50%;
    right: 50%;
    color: #ad936d;
    transform: translate(50%, 50%);
    font-size: 3.6rem;
    font-family: 'Canela-Regular';
}
.nh-copy {
    position: relative;
    width: 50%;
}
.nhb-title {
    position: relative;
    display: block;
    font-family: 'Canela-Regular';
    color: #ad936d;
    line-height: 1.1;
    font-size: 1.8rem;
    margin-bottom: 9px;
}
.nh-copy p {
    position: relative;
    display: block;
    line-height: 1.25;
    margin-bottom:9px;
    font-size: 1.3rem;
}
.nh-cta {
    position: relative;
    display: block;
    font-family: 'TradeGothic CondEighteen';
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-size: 1.2rem;
    color: #ad936d;
}
.nh-cta:link,
.nh-cta:visited {
    color: #ad936d;
}




.author-attrib {
    position: relative;
    display: block;
    font-family: 'TradeGothic CondEighteen';
    text-transform: uppercase;
    font-size: 1.5rem;
    letter-spacing: 2px;
    color: #ad936d;
}

.ital-subtitle {
    position: relative;
    display: block;
    font-family: 'ACaslonPro-Italic';
    font-size: 1.6rem;
    color: #ad936d;
}

.amen-block {
    position: relative;
    display: block;
}

.amen-title {
    position: relative;
    display: block;
    font-family: 'Canela-Regular';
    font-size: 4.2rem;
    color: #ad936d;
}

.amen-br {
    position: relative;
    display: block;
    width: 72px;
    margin: 8px auto 32px;
    height: 1px;
    background-color: #ad936d;
}

.amen-list-wrapper {
    position: relative;
    display: block;
    margin: 0 auto 64px;
    width: 100%;
    max-width: 560px;
}

ul.amen-list {
    position: relative;
    display: inline-block;
    width: 50%;
    text-align: left;
    vertical-align: top;
    padding-right: 32px;
}

body.wellness ul.amen-list {
    width: 100%;
    max-width: 400px;
    padding-right: 0;
}

ul.amen-list li {
    position: relative;
    display: block;
    line-height: 1.25;
    margin-bottom: 8px;
    padding-left: 6px;
}

ul.amen-list li:before {
    content: '-';
    position: absolute;
    top: 0;
    left: 0;
}

.amen-disc {
    position: relative;
    display: block;
    margin-top: 16px;
    font-family: 'ACaslonPro-Italic';
    font-size: 1.3rem;
    text-align: left;
    padding-left: 6px;
}

.amen-disc:before {
    content: '*';
    position: absolute;
    top: 0;
    left: 0;
}

.big-ch-br {
    position: relative;
    display: block;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 64px;
    height: 1px;
    background-color: #ad936d;
}
.wellness-feat-block .big-ch-br:last-child {
    margin-bottom: 0;
}


/* ====== Location Page ====== */

.hood-map-wrapper {
    position: relative;
    display: block;
    padding: 0 16px 64px;
    text-align: center;
}

.hood-map-wrapper .title-subtitle {
    margin-bottom: 16px;
}

.hood-map {
    position: relative;
    display: block;
    width: 100%;
    margin: 0 auto;
    max-width: 960px;
}

.map-inner-wrapper {
    position: relative;
    display: block;
    width: 100%;
    border: 1px solid #d6d7d8;
    max-width: 1024px;
    margin: 0 auto;
}

.map-nav {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    text-align: center;
    pointer-events: none;
}

.map-nav-inner {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    text-align: center;
}

        .map-button {
            cursor: pointer;
            width: auto;
            height: auto;
        }

            .map-button img {
                position: relative;
                display: block;
                height: 32px;
            }

    .map-arrows {
        position: absolute;
        width: 104px;
        height: 68px;
        left: 8px;
        top: 8px;
    }

        .ma-inner {
            position: relative;
            display: block;
            width: 100%;
            height: 100%;
        }

        .map-arrows .map-button {
            position: absolute;
        }

        .map-arrows .map-arrow-up {
            top: 0;
            right: 50%;
            transform: translateX(50%);
        }
        .map-arrows .map-arrow-down {
            bottom: 0;
            right: 50%;
            transform: translateX(50%);
        }
        .map-arrows .map-arrow-left {
            left: 0;
            bottom: 50%;
            transform: translateY(50%);
        }
        .map-arrows .map-arrow-right {
            right: 0;
            bottom: 50%;
            transform: translateY(50%);
        }


    .map-zoomers {
        position: absolute;
        right: 8px;
        top: 26px;
        text-align: right;
        pointer-events: auto;
    }

        .map-zoomers .map-button {
            position: relative;
            display: inline-block;
            vertical-align: bottom;
            margin-left: 4px;
        }

        .map-zoomers .map-button.map-refresh {

        }

    .map-legend {
        position: absolute;
        height: 33.333%;
        width: auto;
        top: calc(66.666% - 8px);
        left: 8px;

        display: none;
    }



/* prox lines */
.proximity-animator {
    position: relative;
    display: block;
    max-width: 960px;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 128px;
}

.proximity-animator .img-panel-title-pre,
.proximity-animator .img-panel-title {

}

.proximity-animator .img-panel-title {
    margin-bottom: 24px;
}

.proximity-animator-inner {
    position: relative;
    display: block;
}

.proximity-item {
    position: relative;
    display: block;
    margin-bottom: 12px;
}
proximity-animator-inner:last-child {
    margin-bottom: 0;
}

.prox-title {
    position: relative;
    display: inline-block;
    width: 102px;
    vertical-align: middle;
    padding-right: 9px;
}

.prox-distance {
    position: relative;
    display: inline-block;
    width: 130px;
    vertical-align: middle;
    padding-left: 9px;
}

.prox-line {
    position: relative;
    display: inline-block;
    width: calc(100% - 232px);
    vertical-align: middle;
    height: 6px;
    background-color: #fff;
}

.prox-line-fill {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    background-color: #ad936d;
}

.proximity-animator.disable .prox-line-fill {
    width: 0;
    transition: all 0s;
}

.proximity-animator.disable .pi-1 .prox-line-fill,
.proximity-animator.disable .pi-2 .prox-line-fill,
.proximity-animator.disable .pi-3 .prox-line-fill,
.proximity-animator.disable .pi-4 .prox-line-fill,
.proximity-animator.disable .pi-5 .prox-line-fill,
.proximity-animator.disable .pi-6 .prox-line-fill,
.proximity-animator.disable .pi-7 .prox-line-fill,
.proximity-animator.disable .pi-8 .prox-line-fill,
.proximity-animator.disable .pi-9 .prox-line-fill { width: 0 !important; }

.proximity-animator .pi-1 .prox-line-fill {
    transition: width 1s ease-in-out 0s;
}
.proximity-animator .pi-2 .prox-line-fill {
    transition: width 1s ease-in-out 0.2s;
}
.proximity-animator .pi-3 .prox-line-fill {
    transition: width 1s ease-in-out 0.4s;
}
.proximity-animator .pi-4 .prox-line-fill {
    transition: width 1s ease-in-out 0.6s;
}
.proximity-animator .pi-5 .prox-line-fill {
    transition: width 1s ease-in-out 0.8s;
}
.proximity-animator .pi-6 .prox-line-fill {
    transition: width 1s ease-in-out 1.0s;
}
.proximity-animator .pi-7 .prox-line-fill {
    transition: width 1s ease-in-out 1.2s;
}
.proximity-animator .pi-8 .prox-line-fill {
    transition: width 1s ease-in-out 1.4s;
}
.proximity-animator .pi-9 .prox-line-fill {
    transition: width 1s ease-in-out 1.6s;
}

.prox-waypoint {
    position: absolute;
    height: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
}

.prox-title,
.prox-distance {
    text-align: left;
}



/* Floor Plans */

.plans-wrapper {
    position: relative;
    display: block;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 64px 16px 0;
}
.plan-row {
    position: relative;
    display: block;
    width: 100%;
    border-bottom: 1px solid #ad936d;
}
.plan-col {
    position: relative;
    display: block;
}
.fp-copy {
    padding: 48px 0 24px 48px;
}
.fp-plate {
    padding-bottom: 48px;
}
.fp-plate-inner {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    padding-top: 50%;
}
.fp-plate-inner.fp-gr {
    background: url(../img/plates/11W_Offices_GroundLvl_Floor_Plate.png) no-repeat center / contain;
}
.fp-plate-inner.fp-mz {
    background: url(../img/plates/11W_Offices_MezzanineLvl_Floor_Plate.png) no-repeat center / contain;
}
.fp-plate-inner.fp-02 {
    background: url(../img/plates/11W_Offices_Lvl2_Floor_Plate.png) no-repeat center / contain;
}
.fp-plate-inner.fp-03 {
    background: url(../img/plates/11W_Offices_Lvl3_Floor_Plate.png) no-repeat center / contain;
}
.fp-plate-inner.fp-04 {
    background: url(../img/plates/11W_Offices_Lvl4_Floor_Plate.png) no-repeat center / contain;
}
.fp-plate-inner.fp-05 {
    background: url(../img/plates/11W_Offices_Lvl5_Floor_Plate.png) no-repeat center / contain;
}
.fp-plate-inner.fp-06 {
    background: url(../img/plates/11W_Offices_Lvl6_Floor_Plate.png) no-repeat center / contain;
}
.fp-plate-inner.fp-07 {
    background: url(../img/plates/11W_Offices_Lvl7_Floor_Plate.png) no-repeat center / contain;
}


.fp-floor-title {
    position: absolute;
    top: 0;
    text-align: right;
    width: 400px;
    height: 60px;
    line-height: 1;
    font-family: 'Canela-Regular';
    font-size: 3.2rem;
    color: #ad936d;
    pointer-events: none;
    transform-origin: 100% 0;
    /* x = (-400px - .fp-copy {padding-left}), y = .fp-copy {padding-top} */
    transform: translate(-448px, 48px) rotate(-90deg);
}
.fp-floor-pretitle {
    position: relative;
    display: block;
    font-family: 'Canela-Regular';
    line-height: 1;
    font-size: 3.2rem;
    margin-bottom: 24px;
}
.fp-title {
    position: relative;
    display: block;
    font-family: 'TradeGothic CondEighteen';
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-size: 1.2rem;
    margin-bottom: 8px;
}
.plan-col.fp-copy ul {
    position: relative;
    display: block;
    margin-bottom: 16px;
}
.plan-col.fp-copy li {
    position: relative;
    display: block;
    padding-left: 16px;
    line-height: 1.25;
    margin-bottom: 6px;
}
.plan-col.fp-copy li:before {
    position: absolute;
    left: 0;
    content: '-';
}
.fp-li-ast {
    position: relative;
    display: block;
    font-family: 'ACaslonPro-Italic';
    font-size: 1.4rem;
}
.fp-button {
    position: relative;
    display: block;
    width: 210px;
    max-width: 100%;
    margin: 0 auto 12px 0;
    height: 40px;
    line-height: 40px;
    border: 1px solid #ad936d;
    text-align: center;
    font-family: 'TradeGothic CondEighteen';
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-size: 1.2rem;
    transition: color 0.5s ease-in-out, background-color 0.5s ease-in-out;
}
.fp-button:link,
.fp-button:visited {
    color: #ad936d;
}
.fp-button:hover,
.fp-button:active {
    background-color: #ad936d;
    color: #fff;
}


/* News Page */

.news-stack {
    position: relative;
    display: block;
    padding: 128px 30px 64px;
    margin: 0 auto;
    max-width: 1200px;
}

.news-block {
    position: relative;
    display: block;
    width: 100%;
}

body.news .news-block {
    margin-bottom: 32px;
}

.nhb-title {
    font-size: 2.1rem;
}
.nw-post-copy-br {
    position: relative;
    display: block;
    width: 48px;
    height: 1px;
    background-color: #ad936d;
    margin: 16px auto 16px 0;
}

body.news .news-block .article-preview {
    position: relative;
    display: block;
    max-height: 110px;
    overflow: hidden;
    margin-bottom: 10px;
}

.news-block .article-preview p {
    position: relative;
    display: block;
    margin-bottom: 12px;
}
body.article .news-block p {
    margin-bottom: 32px;
}

body.news .news-block .article-fader {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    height: 60px;
    background: linear-gradient(rgba(241,241,242,0.0) 0%, rgba(241,241,242,1.0) 100%) no-repeat center;
    background-size: cover;
}
.news-highlights .article-fader {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    height: 60px;
    background: linear-gradient(rgba(241,241,242,0.0) 0%, rgba(241,241,242,1.0) 100%) no-repeat center;
    background-size: cover;
}
.news-highlight-fader-wrapper {
    position: relative;
    display: block;
}

.news-image-block {
    position: relative;
    display: block;
    margin-bottom: 30px;
}

.news-image-block .news-image {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

body.news .news-image a {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.article-breakline {
    position: relative;
    display: block;
    width: 100%;
    height: 1px;
    background-color: #ad936d;
    margin-bottom: 32px;
}

body.news .nhb-title a,
.news-article-link {
    transition: color 0.5s ease-in-out;
    color: #ad936d;
}

body.news .nhb-title a:link,
body.news .nhb-title a:visited,
.news-block .news-article-link:link,
.news-block .news-article-link:visited {
    color: #ad936d;
}

/*body.news .nhb-title a:hover,*/
/*body.news .nhb-title a:active,*/
.news-block .news-article-link:hover,
.news-block .news-article-link:active {
    color: #282828;
}

.news-block .news-article-link {
    position: relative;
    display: block;
    color: #ad936d;
    font-family: 'TradeGothic CondEighteen';
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-size: 1.2rem;
    transition: color 0.5s;
    margin-top: 32px;
    text-align: right;
}



/* News Article */

body.article .news-block {
    position: relative;
    display: block;
    margin-bottom: 72px;
}

.article-wrapper {
    position: relative;
    display: block;
    padding: 128px 32px 64px;
    margin: 0 auto;
    max-width: 860px;
}

.news-block span.date {
    position: relative;
    display: block;
    color: #ad936d;
    font-size: 1.3rem;
    margin-bottom: 12px;
}

body.article h1 {
    position: relative;
    display: block;
    font-family: 'Canela-Regular';
    color: #ad936d;
    font-size: 3.2rem;
    margin-bottom: 24px;
}

.news-block .share-row {
    position: absolute;
    top: 0;
    right: 0;
}
.news-block .share-row a {
    position: relative;
    display: inline-block;
    vertical-align: bottom;
    margin-left: 16px;
}
.news-block .share-row img {
    position: relative;
    display: block;
    height: 16px;
}

.news-title-break {
    position: relative;
    display: block;
    margin: 15px auto 30px 0;
    height: 1px;
    background-color: #ad936d;
    max-width: 72px;
}

.article-copy {
    position: relative;
    display: block;
}



/* Antiquated News Stuff from old design, replaced by circa news */

/*
.news-wrapper {
    position: relative;
    display: block;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 48px 16px 0;
    max-width: 560px;
}
.nw-post-col {
    position: relative;
    display: block;
}
.nw-post-img {
}
.nw-post-copy {
    padding-top: 18px;
}
.post-img-inner {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    padding-top: 66.666%;
    background: url(../img/neighborhood/shutterstock_1374890591_1800x1200.jpg) no-repeat center / cover;
}
.nw-share-row {
    position: absolute;
    top: 18px;
    right: 0;
}
.nw-share-row a {
    position: relative;
    display: inline-block;
    vertical-align: bottom;
    margin-left: 16px;
}
.nw-share-row img {
    position: relative;
    display: block;
    height: 16px;
}

*/



/* Gallery Page */

.gallery-wrapper {
    position: relative;
    display: block;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 96px 16px 0;
    height: 100vh;
}
@media all and (min-height: 1200px) {
    .gallery-wrapper {
        max-width: 1800px;
    }
}
.galpage-inner {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
}

.gallery-wrapper .sginner {
    position: absolute;
    width: 100%;
    right: 0;
    left: 0;
    bottom: 50%;
    transform: translateY(50%);
    height: auto;
}

.gal-arrows {
    position: absolute;
    bottom: calc(50% + 16px);
    transform: translateY(50%);
    width: 100%;
    left: 0;
    right: 0;
    height: 48px;
}

.gal-arrow {
    position: absolute;
    top: 0;
    width: 12px;
    height: 48px;
    cursor: pointer;
    transition: transform 0.5s ease-in-out;

    opacity: 0;
}

.prev-arrow {
    background: url(../img/arrow-left.png) no-repeat center / contain;
    left: 2px;
    transform:  translateX(14px);
}

.next-arrow {
    background: url(../img/arrow-right.png) no-repeat center / contain;
    right: 2px;
    transform:  translateX(-14px);
}

.activate .prev-arrow,
.activate .next-arrow {
    transform:  translateX(0);
}

body.gallery .slick-dotted.slick-slider {
    margin-bottom: 0;
}

@media all and (min-width:  768px) {

    .simple-gallery {
        padding: 0 48px;
    }

    .gal-arrow {
        width: 30px;
    }

    .prev-arrow {
        left: 10px;
        transform:  translateX(40px);
    }

    .next-arrow {
        right: 10px;
        transform:  translateX(-40px);
    }

    .activate .prev-arrow,
    .activate .next-arrow {
        opacity: 1;
    }

}

@media all and (min-aspect-ratio: 3/2) {
    .gallery-wrapper {
        height: auto;
    }
    .gallery-wrapper .sginner {
        position: relative;
        display: block;
        width: 100%;
        height: auto;
        bottom: auto;
        transform: translateY(0);
    }
}

/* contact page */

.conpage-block {
    position: relative;
    display: block;
    height: 100vh;
    padding: 96px 16px 16px;
    width: 100%;
    max-width: 2400px;
    margin: 0 auto;
}

.conpage-lt,
.conpage-rt {
    position: relative;
    display: block;
}
.conpage-lt {
    padding: 0 0 64px;
    max-width: 560px;
    margin: 0 auto;
}
.conpage-rt {
    height: 100%;
}
.conpage-logo {
    position: relative;
    display: block;
    width: 100%;
    max-width: 180px;
    margin: 0 auto 64px 0;
}
.img-contact-map {
    position: relative;
    display: block;
    height: 100%;
    width: 100%;
    background: url(../img/contact-map.svg) no-repeat center / contain;
}

.conpage-lteam-title {
    position: relative;
    display: block;
    font-family: 'Canela-Regular';
    font-size: 1.6rem;
    margin-bottom: 24px;
}


.contact-block {
    position: relative;
    display: block;
    padding: 48px 16px 64px;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
}

.contact-logo {
    position: relative;
    display: block;
    /* can't center this because svg is left aligned */
    margin: 0 auto 18px 0;
    width: 100%;
    max-width: 200px;
}

.contact-lt {
    position: relative;
    display: block;
}

.img-footlogo {
    position: relative;
    display: block;
    margin: 0 auto 24px;
    width: 100%;
    max-width: 280px;
}

.contact-rt {
    position: relative;
    display: block;
    padding-top: 24px;
}

.foot-contact-title {
    position: relative;
    display: block;
    font-family: 'Canela-Regular';
    font-size: 1.6rem;
    margin-bottom: 16px;
}

.leasing-team {
    position: relative;
    display: block;
    margin-bottom: 32px;
}

.leasing-col {
    position: relative;
    display: inline-block;
    width: 50%;
    vertical-align: top;
    max-width: 320px;
}

.leaser-name {
    position: relative;
    display: block;
    font-family: 'Canela-Regular';
    font-size: 2.4rem;
    line-height: 1.35;
}

.leaser-title {
    position: relative;
    display: block;
    line-height: 1.5;
}

.clear {
    position: relative;
    display: block;
}

.leaser-tel {
    position: relative;
    line-height: 1.5;
}

.leaser-email {
    position: relative;
    line-height: 1.5;
}

.cr-sub-col-1 {
    position: relative;
    display: block;
    margin-bottom: 24px;
}

.address {
    position: relative;
    line-height: 1.5;
}

.address span {
    position: relative;
    line-height: 1.5
}

.brochure-link {
    position: relative;
    display: block;
    margin-top: 12px;
}
.brochure-link a {
    text-decoration: underline;
}

.social-row {
    position: relative;
    display: block;
    margin-top: 12px;
}
.a-social {
    position: relative;
    display: inline-block;
    margin-right: 16px;
}
.a-social img {
    position: relative;
    display: block;
    height: 14px;
}

.footer {
    position: relative;
    display: block;
    padding: 16px;
    text-align: center;
    max-width: 1600px;
    margin: 0 auto;
}

.cbre-link {
    position: relative;
    display: inline-block;
    margin: 0 auto 8px;
}

.cbre-logo {
    position: relative;
    display: block;
    width: 84px;
    margin: 6px;
}

.footer-disclaimer {
    position: relative;
    display: block;
    line-height: 1.25;
    font-size: 1.1rem;
    color: #888b8d;
    margin: 0 auto;
}

.simple-gallery {
    position: relative;
    display: block;
    padding: 0 16px;
    width: 100%;
    margin: 0 auto;
}

.sginner {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
}

.s-slider-img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.s-slider-subtitle {
    position: relative;
    display: block;
    text-align: right;
    font-family: 'ACaslonPro-Italic';
    font-size: 1.4rem;
    padding-top: 6px;
}

.amen-slider .s-slider-subtitle {
    line-height: 1.25;
    /*height: 60px;*/
}

.s-slider-1-dots,
.s-slider-2-dots {
    position: absolute;
    bottom: 0px;
    left: 12px;
}
.i-slider-1-dots {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
}

.slick-dots {
    position: relative;
    display: block;
    width: 100%;
    bottom: auto;
    text-align: left;
}

.slick-dots li {
    position: relative;
    display: inline-block;
    margin: 0 12px 0 0;
    vertical-align: top;
    width: auto;
    height: auto;
}

.slick-dots li button {
    position: relative;
    display: block;
    width: 18px;
    height: 18px;
    border: 1px solid #c8c8c8;
    border-radius: 9px;
    padding: 4px;
}

.slick-dots li.slick-active button {
    border: 1px solid #ad936d;
}

.slick-dots li button::before {
    position: relative;
    display: block;
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 4px;
    background-color: transparent;

    opacity: 0;

}

.slick-dots li.slick-active button::before {
    content: '';
    background-color: #ad936d;
    opacity: 1;

}



/* Sliders */

.is-outer {
    position: relative;
    display: block;
    width: 100%;
    padding: 0 18px 1px;
    margin: 0 auto;
    /*overflow: hidden;*/
}

.slider-text-nav-wrapper {
    display: none;
    position: absolute;
    top: -52px;
    left: 44px;

}
.slider-text-nav {
    position: relative;
    display: block;
    height: 28px;
    line-height: 28px;
}
.stn-item {
    position: relative;
    display: inline-block;
    margin-right: 24px;
    vertical-align: middle;
    cursor: pointer;

    font-family: "Canela-Regular";
    color: #c8c8c8;
    transition: color 0.35s ease-in-out;
}
.stn-item.active {
    color: #ad936d;
}

@media all and (min-width: 1024px) {

    .slider-text-nav-wrapper {
        display: inline;

    }

}


.stn-design {}
.stn-wellness {}
.stn-security {}

.inception-slider-wrapper {
    position: relative;
    display: block;
    /*width: calc(100% + 36px);*/
    /*margin-left: -18px;*/
    /*margin-right: -18px;*/
    width: 100%;
}

.inception-slider {
    position: relative;
    display: block;
    width: 100%;
}

.in-slider-bg-image {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.in-slider .slick-slide {
    /*padding-right: 18px;*/
    /*padding-left: 18px;*/
}


.in-copy-slider-wrapper {
    position: relative;
    display: block;
}

.in-copy-slider {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
}

.in-copy-slider .slide {
}

.slide-copy-panel-placeholder,
.slide-copy-panel {
    position: relative;
    display: block;
    height: auto;
}

.slide-copy-panel-placeholder {

}

.slide-copy-panel {
    padding-bottom: 32px;
}

.in-copy-slider .slide .caps-headline {
    position: relative;
    display: block;
    font-family: 'TradeGothic CondEighteen';
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #ad936d;
}

.in-copy-slider .slide .slide-number {
    position: relative;
    display: block;
    margin-bottom: 16px;
}

.in-copy-slider .slide .title {
    position: relative;
    display: block;
    font-family: 'Canela-Regular';
    font-size: 2.8rem;
    color: #ad936d;
    line-height: 1.35;
}

.in-copy-slider .slide .in-slider-br {
    position: relative;
    display: block;
    height: 1px;
    width: 48px;
    background-color: #ad936d;
    margin: 12px auto 12px 0;
}

.in-copy-slider .slide p {
    position: relative;
    display: block;
}

.in-copy-slider .slide ul {
    position: relative;
    display: block; 
}

.in-copy-slider .slide ul li {
    position: relative;
    display: block;
    line-height: 1.25;
    margin-bottom: 3px;
    padding-left: 6px;
}

.in-copy-slider .slide ul li:before {
    content: '-';
    position: absolute;
    top: 0;
    left: 0;
}

.slider-arrow-fields {
    display: none;
}

.copy-slider-arrow-fields {
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    bottom: 50%;
    height: 0;
    transform: translateY(50%);
}

.copy-slider-arrow-fields .arrow-field {
    position: absolute;
    width: 8px;
    height: 20px;
    top: -10px;
    bottom: 0;
    cursor: pointer;
}

.slider-arrow-fields .arrow-field {
    position: absolute;
    width: 50%;
    height: 100%;
    top: 0;
    bottom: 0;
    cursor: pointer;
}

.copy-slider-arrow-fields .arrow-field-prev {
    left: 12px;
    background: url(../img/sm-arrow-left-2.svg) no-repeat center / contain;
    display: none !important;
}
.copy-slider-arrow-fields .arrow-field-next {
    right: 5px;
    background: url(../img/sm-carrot-rt.svg) no-repeat center / contain;
    display: none !important;
}



/* ====== Animation ====== */

.landing-logo {
    opacity: 0;
    transition: opacity 2.5s cubic-bezier(0.55, 0.085, 0.68, 0.53) 2.5s;
}

.nav-sticky {
    opacity: 0;
    transition: opacity 1.5s ease-in-out 5s;
}

body.preload .nav-sticky {
    pointer-events: none;
}

body.loaded .landing-logo,
body.loaded .nav-sticky {
    opacity: 1;
}

.scroll-cta {
    opacity: 0;
    transition: bottom 1.5s ease 5s, opacity 1.5s ease-in-out 5s;
}

body.loaded .scroll-cta.hide {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease-in-out;
}

body.loaded .scroll-cta.show {
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
}

body.loaded .scroll-cta {
    bottom: 0;
    opacity: 1;
}

body.loaded.mobile .scroll-cta {
    bottom: 36px;
}

body.loaded.mobile.ios .scroll-cta {
    bottom: 72px;
}

.fade-in-up {
    opacity: 0;
    will-change: transform;
    -webkit-transform: translateY(50px);
    -ms-transform: translateY(50px);
    transform: translateY(50px);
    transition: opacity 1s ease-in-out, transform 1s ease;
}
.fade-in-up.activate {
    opacity: 1;
    will-change: transform;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

.map-info-box {
    position: absolute;
    top: 8px;
    left: 8px;
    width: 180px;
    height: auto;
    padding: 24px 16px 8px;
    background-color: #464746;
    /*border: 1px solid #000;*/
    text-align: center;
    opacity: 0;
    transition: opacity 0.35s ease-in-out;
    color: #fff;
}

.map-info-box.active {
    opacity: 1;
}

.mib-title {
    position: relative;
    display: block;
    font-family: 'Canela-Regular';
    font-size: 1.8rem;
    /*margin-bottom: 4px;*/
    padding: 0 4px;
    line-height: 1.15;
    margin-bottom: 8px;
}
.map-info-box a {
    position: relative;
    display: block;
    color: #fff;
    line-height: 1;
    margin-bottom: 6px;
    font-size: 1.4rem;
}
.map-info-box a:link,
.map-info-box a:visited {
    color: #fff;
}

.map-info-box a:hover,
.map-info-box a:active {
    color: #fff;
    text-decoration: underline;
}
.mib-address {
    position: relative;
    display: block;
    line-height: 1;
    margin-bottom: 6px;
}
.mib-phone {}
.mib-url {}
.map-info-box .close {
    position: absolute;
    top: 6px;
    right: 50%;
    transform: translateX(50%);
    width: 17px;
    height: 17px;
}
.map-info-box .close:hover {
    background-color: transparent;
}
.map-info-box .close:before,
.map-info-box .close:after {
    background-color: #fff;
}





/* ====== Media Queries ====== */

.simple-gallery,
.is-outer {
    max-width: 1080px;
}

@media all and (min-height: 960px) {

    .in-copy-slider .slide .title {
        font-size: 3.6rem;
    }
    .simple-gallery,
    .is-outer {
        max-width: 1600px;
    }
}

@media all and (min-width: 540px) {

    .amen-slider .s-slider-subtitle {
        /*height: 46px;*/
        line-height: 1.5;
    }

}

@media all and (min-width: 720px) {


    .specs-block .spec,
    .specs-block .spec-sep {
        display: inline-block;
        vertical-align: middle;
    }

    .specs-block .spec {
        width: auto;
        padding-left: 0;
        margin-bottom: 0;
        line-height: 1.65;
    }
    .specs-block .spec:before {
        content: none;
    }

    .flop-row {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 36px;
    }
    .flop-row:nth-child(even) .ff-copy {
        order: 1;
    }
    .flop-row:nth-child(even) .ff-img {
        order: 0;
    }
    .ff-copy {
        width: 45%;
        margin-bottom: 0;
    }
    .flop-row:nth-child(odd)  .ff-copy {
        padding-right: 24px;
    }
    .flop-row:nth-child(even) .ff-copy {
        padding-left: 24px;
    }
    .ff-img {
        width: 55%;
    }
    .ff-p {
        margin-bottom: 32px;
    }



    .news-wrapper {
        padding-top: 96px;
        max-width: none;
    }
    .news-row {
        padding: 32px 0;
    }
    .nw-post-col {
    }
    .nw-post-img {
        width: 60%;
    }
    .nw-post-copy {
        width: 40%;
        padding-top: 18px;
        padding-left: 36px;
        padding-right: 36px;
    }
    .post-img-inner {
        padding-top: 0;
    }
    .nhb-title {
        font-size: 3.2rem;
    }
    .nw-post-copy-br {
        width: 64px;
        margin: 24px auto 24px 0;
    }
    .news-row p {
        margin-bottom: 24px;
    }



}

@media all and (min-width: 768px) {

    html > * { font-size: 1.5rem; }

    .scroll-cta span {
        font-size: 1.4rem;
    }

    .title-no {
        margin-bottom: 84px;
        font-size: 1.4rem;
    }
    .big-title {
        font-size: 12rem;
        line-height: 1.15;
        margin-bottom: 72px;
    }

    .title-subtitle {
        font-size: 1.6rem;
        letter-spacing: 3px;
        margin-bottom: 48px;
    }

    .large-copy {
        font-size: 3.8rem;
        line-height: 1.5;
        margin-bottom: 64px;
    }

    .author-attrib {
        font-size: 1.6rem;
        letter-spacing: 3px;
        margin-bottom: 8px;
    }

    .amen-title {
        font-size: 5.4rem;
        margin-bottom: 32px;
    }

    .amen-list-wrapper {
        margin: 0 auto 128px;
        padding-left: 24px;
    }

    ul.amen-list li,
    .amen-disc,
    .in-copy-slider .slide ul li {
        padding-left: 9px;
    }

    .big-ch-br {
        margin: 0 auto 96px;
    }



        .map-button img {
            height: 40px;
        }

        .map-arrows {
            width: 132px;
            height: 86px;
            top: 24px;
            left: 24px;
        }


        .map-zoomers {
            position: absolute;
            right: 24px;
            top: 47px;
            text-align: right;
        }

            .map-zoomers .map-button {
                margin-left: 6px;
            }

        .map-legend {
            height: 25%;
            top: calc(75% - 24px);
            left: 24px;

            display: inline;
        }


    .hood-map-wrapper {
        padding: 0 48px 96px;
    }
    .chapter-block {
        padding: 160px 48px 160px;
    }
    .contact-block {
        padding: 96px 0 64px;
    }
    .wellness-feat-block {
        padding: 128px 48px 0;
    }
    .final-block {
        margin-bottom: 128px;
    }

    .flex-flopper,
    .news-highlights,
    .simple-gallery {
        padding: 0 48px;
    }
    .plans-wrapper,
    .news-wrapper,
    .v-padless-block,
    .gallery-wrapper {
        padding-left: 48px;
        padding-right: 48px;
    }
    .nw-post-copy {
        padding-left: 36px;
    }

    .footer {
        padding: 24px 48px;
    }

    .s-slider-subtitle {
        font-size: 1.6rem;
    }

    .nav-sticky {
        padding-top: 12px;
        padding-right: 12px;
    }

    .sticky-button {
        margin-bottom: 12px;
        width: 200px;
        height: 40px;
        line-height: 42px;
        letter-spacing: 2px;
        font-size: 1.4rem;
    }


    .plan-row {
        position: relative;
        display: flex;
        width: 100%;
        border-bottom: 1px solid #ad936d;
        justify-content: center;
        align-items: stretch;
    }
    .plan-col {

    }
    .fp-copy {
        padding: 48px 24px 32px 48px;
        width: 45%;
    }
    .fp-plate {
        width: 55%;
        padding: 48px 0;
        height: auto;
    }
    .fp-plate-inner {
        padding: 0;
    }

    .fp-floor-title {
        width: 400px;
        height: 60px;
        font-size: 3.2rem;
        transform: translate(-448px, 48px) rotate(-90deg);
    }
    .plan-col.fp-copy ul {
        /*margin-bottom: 36px;*/
    }
    .fp-plate-inner {
        background-position: 0% 50%;
    }

    .prox-title {
        width: 160px;
        padding-right: 18px;
    }

    .prox-distance {
        width: 200px;
        padding-left: 18px;
    }

    .prox-line {
        width: calc(100% - 360px);
    }

    /* Plans */

    .bldg-lvl-selector {
        width: calc(33.333% - 12px);
        margin-right: 12px;
    }

    .plate-wrapper {
        width: 66.666%;
        padding: 48px;
    }

    .map-info-box {
        top: 24px;
        left: 24px;
        width: 240px;
        padding: 46px 18px 24px;
    }
    .mib-title {
        font-size: 2.3rem;
        /*margin-bottom: 8px;*/
        padding: 0 8px;
    }
    .map-info-box a {
        font-size: 1.6rem;
        margin-bottom: 8px;
    }
    .mib-address {
        margin-bottom: 8px;
    }
    .mib-phone {}
    .mib-url {}
    .map-info-box .close {
        top: 16px;
        width: 23px;
        height: 23px;
    }


}

@media all and (min-width: 960px) {

    body.nav-open .nav {
        height: 64px;
    }

    .nav-list {
        position: absolute;
        top: 0;
        left: 104px;
        padding-top: 0;
        padding-left: 0;
    }

    .a-nav-logo {
        margin-left: 24px;
    }

    .nav-li {
        display: inline-block;
        vertical-align: middle;
        height: 64px;
        margin-right: 8px;
        margin-bottom: 0;
    }

    .nav-li a {
        line-height: 64px;
    }

    .nav-no {
        width: auto;
    }

    .nav-cta {
        position: absolute;
        right: 24px;
        top: 14px;
        margin-left: 0;
    }

    #menu-toggle {
        display: none;
    }

    body.nav-closed .nav-content-wrapper,
    body.nav-open .nav-content-wrapper,
    .nav-content-wrapper {
        opacity: 1;
        pointer-events: auto;
    }

/*
    body.nav-open .nav,
    body.nav-closed .nav,
    .nav,
    body.nav-open .nav-content-wrapper,
    body.nav-closed .nav-content-wrapper,
    .nav-content-wrapper,
    body.nav-closed .nav-logo,
    body.nav-closed .nav-list li,
    body.nav-closed .nav-footer,
    body.nav-closed .nav-logo,
    body.nav-closed .nav-list li,
    body.nav-closed .nav-footer {
        transition: none;
    }
*/

    body.nav-open .nav-logo,
    body.nav-open .nav-list li:nth-child(1),
    body.nav-open .nav-list li:nth-child(2),
    body.nav-open .nav-list li:nth-child(3),
    body.nav-open .nav-list li:nth-child(4),
    body.nav-open .nav-list li:nth-child(5),
    body.nav-open .nav-list li:nth-child(6),
    body.nav-open .nav-list li:nth-child(7),
    body.nav-open .nav-list li:nth-child(8),
    body.nav-open .nav-cta-wrapper,
    body.nav-open .nav-footer,
    body.nav-closed .nav-logo,
    body.nav-closed .nav-list li:nth-child(1),
    body.nav-closed .nav-list li:nth-child(2),
    body.nav-closed .nav-list li:nth-child(3),
    body.nav-closed .nav-list li:nth-child(4),
    body.nav-closed .nav-list li:nth-child(5),
    body.nav-closed .nav-list li:nth-child(6),
    body.nav-closed .nav-list li:nth-child(7),
    body.nav-closed .nav-list li:nth-child(8),
    body.nav-closed .nav-cta-wrapper,
    body.nav-closed .nav-footer {
        opacity: 1;
    }

    .active-nav-line {
        position: absolute;
        right: 0;
        left: 0;
        bottom: 18px;
        width: 100%;
        height: 1px;
        background-color: #ad936d;
        opacity: 0;
    }

    body.design .nav-li-design .active-nav-line,
    body.amenities .nav-li-amenities .active-nav-line,
    body.wellness .nav-li-wellness .active-nav-line,
    body.location .nav-li-location .active-nav-line,
    body.plans .nav-li-plans .active-nav-line,
    body.news .nav-li-news .active-nav-line,
    body.gallery .nav-li-gallery .active-nav-line,
    body.contact .nav-li-contact .active-nav-line {
        opacity: 1;
    }

    .flop-row:nth-child(odd) .ff-copy,
    .flop-row:nth-child(even) .ff-copy {
        padding: 0 64px;
    }
    .ff-img {
    }
    .ff-title {
        font-size: 2.1rem;
    }
    .med-title {
        font-size: 6.4rem;
        line-height: 1.2;
        margin-bottom: 24px;
    }

    .nh-wrapper {
        display: flex;
        align-items: stretch;
        justify-content: center;
        margin-left: -16px;
        margin-right: -16px;
    }
    .nh-block {
        width: 33.333%;
        padding: 0 16px;
        border-right: 1px solid #ad936d;
        margin-bottom: 0;
        max-width: none;
    }
    .date-title {
        margin-bottom: 8px;
    }

    .nh-copy p {
        line-height: 1.35;
        font-size: 1.4rem;
    }


    .plans-wrapper {
        padding-top: 128px;
    }
    .fp-copy {
        padding: 48px 32px 32px 82px;
    }
    .fp-plate {
        padding: 48px 48px 48px 0;
    }

    .fp-floor-title {
        font-size: 4.6rem;
        transform: translate(-482px, 48px) rotate(-90deg);
    }
    .plan-col.fp-copy ul {
        margin-bottom: 64px;
    }

    .fp-copy {
        width: 40%;
    }
    .fp-plate {
        width: 60%;
    }



    .conpage-block {
        padding: 64px 16px 16px 0;
    }
    .conpage-lt,
    .conpage-rt {
        display: inline-block;
        vertical-align: middle;
    }
    .conpage-lt {
        width: 45%;
        padding: 0 24px 0 36px;
        max-width: none;
        margin: 0;
    }
    .conpage-rt {
        width: 55%;
        height: 100%;
    }
    .img-contact-map {
        background-position: 100% 50%;
    }


    body.news .news-block {
        padding-left: 450px;
        min-height: 280px;
    }

    body.news .news-image-block {
        position: absolute;
        top: 0;
        left: 0;
        width: 420px;
        height: 100%;
        margin-bottom: 0;
    }

}

@media all and (min-width: 1024px) {

    html > * { font-size: 1.6rem; }

    .nav-li {
        margin-right: 16px;
    }

    .large-copy {
        text-align: center;
    }

    .inception-slider .slick-list {
        overflow: visible;
    }

    .is-outer {
        padding: 0 24px 1px;
    }

    .inception-slider-wrapper {
        /*width: calc(100% + 144px);*/
        /*margin-left: -72px;*/
        /*margin-right: -72px;*/

        /* width = 100% - ( .is-outer{padding-left} + this{margin-left} - (.is-outer{padding-left} + .is-outer{padding-right}) ) */
        /* 24 - 90 - (24 + 24) = 114 */
        width: calc(100% + 114px);
        margin-left: -90px;
    }

    .in-slider .slick-slide {
        /*padding-right: 144px;*/
        /*padding-left: 36px;*/
        padding-right: 90px;
    }

    .i-slider-1-dots {
        left: 102px;
        bottom: 0px;
    }

    .in-copy-slider-wrapper {
        position: absolute;
        display: inline;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        pointer-events: none;
    }

    .slide-copy-panel-placeholder,
    .slide-copy-panel {
        position: absolute;
        right: 27.5%;
        width: 30%;
        bottom: 50%;
        max-width: 440px;
        transform: translate(50%, 50%);
    }

    .slide-copy-panel-placeholder {
        background-color: #fff;
        box-shadow: 0 12px 24px rgba(0,0,0,0.5);
    }

    .in-copy-slider .slide .caps-headline {
        font-size: 1.4rem;
    }

    .in-copy-slider .slide .slide-number {
        margin-bottom: 0;
    }

    .slide-copy-panel {
        padding: 21px;
    }

    .in-copy-slider .slide .in-slider-br {
        width: 64px;
        margin: 6px auto 24px 0;
    }

    .in-copy-slider .slide p { }

    .in-copy-slider .slide li {
        font-size: 1.5rem;
    }

    .copy-slider-arrow-fields {
        display: none;
    }

    .slider-arrow-fields {
        position: absolute;
        display: inline;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        height: 100%;
    }

    .slider-arrow-fields .arrow-field-prev {
        left: 0;
        cursor: url(../img/arrow-left.png), auto;
    }
    .slider-arrow-fields .arrow-field-next {
        right: 0;
        cursor: url(../img/arrow-right.png), auto;
    }
    
    .amen-slider .s-slider-subtitle {
        height: auto;
        line-height: 1.65;
    }



    .contact-lt {
        display: inline-block;
        width: 40%;
        vertical-align: top;
        padding-right: 96px;
    }

    .img-footlogo {
        margin: 0 auto 0 0;
    }

    .img-footlogo {
        max-width: 320px;
    }
    .contact-rt {
        display: inline-block;
        width: 60%;
        vertical-align: top;
        padding-top: 0;
        text-align: left;
    }

    .leasing-col {

    }

    .social-row {
        margin-top: 24px;
    }

    .cr-sub-col-1,
    .cr-sub-col-2 {
        position: relative;
        display: inline-block;
        vertical-align: top;
    }

    .cr-sub-col-1 {
        width: 33.333%;
    }

    .cr-sub-col-2 {
        width: 66.666%;
    }

    .foot-contact-title {
        position: absolute;
        right: 0;
        left: 0;
        top: -48px;
        margin: 0;
    }

    .fp-copy {
        width: 33.333%;
    }
    .fp-plate {
        width: 66.666%;
    }

}

@media all and (min-width: 1024px) and (min-height: 960px) {

    .in-copy-slider .slide .caps-headline {
        font-size: 1.6rem;
    }

    .in-copy-slider .slide .slide-number {
        margin-bottom: 16px;
    }

    .in-copy-slider .slide .title {
        font-size: 4.6rem;
    }

    .slide-copy-panel {
        padding: 32px;
    }

}

@media all and (min-width: 1200px) {

    html > * { font-size: 1.7rem; }

    .nav-list {
        left: 120px;
    }

    .a-nav-logo {
        margin-left: 32px;
    }

    .nav-cta {
        right: 32px;
    }

    .nav-li {
        margin-right: 24px;
    }

    .nw-post-copy {
        padding-top: 36px;
        padding-left: 48px;
        padding-right: 96px;
    }
    .nw-share-row {
        top: 36px;
    }

    .flex-flopper,
    .news-highlights,
    .simple-gallery {
        padding: 0 64px;
    }
    .chapter-block,
    .v-padless-block,
    .plans-wrapper,
    .news-wrapper,
    .gallery-wrapper {
        padding-left: 64px;
        padding-right: 64px;
    }

    .footer {
        padding: 36px 64px;
    }

    .contact-lt {
        width: 40%;
    }

    .contact-lt p {
        padding-right: 128px;
    }

    .contact-rt {
        width: 60%;
    }
    .foot-contact-title {
        font-size: 1.8rem;
    }

    .nh-img {
        padding-right: 32px;
    }
    .nh-wrapper {
        margin-left: -24px;
        margin-right: -24px;
    }
    .nh-block {
        padding: 0 24px;
    }
    .nh-copy {
        padding-right: 16px;
    }
    .nh-copy p {
        margin-bottom: 16px;
    }


    .conpage-lt {
        width: 50%;
        padding: 0 0 0 72px;
    }
    .conpage-rt {
        width: 50%;
    }




    .slide-copy-panel-placeholder,
    .slide-copy-panel {
        right: 22.5%;
        width: 25%;
    }

    .prev-arrow {
        left: 18px;
        transform:  translateX(56px);
    }

    .next-arrow {
        right: 18px;
        transform:  translateX(-56px);
    }

}

@media all and (min-width: 1260px) {

    body.news .news-image-block { 
        width: 500px;
    }

    body.news .news-block {
        padding-left: 560px;
        min-height: 333px;
    }

}

@media all and (min-width: 1440px) {

    .large-copy {
        font-size: 4.6rem;
    }



    .inception-slider-wrapper {
        /* width = 100% - ( .is-outer{padding-left} + this{margin-left} - (.is-outer{padding-left} + .is-outer{padding-right}) ) */
        /* 24 - 160 - 48 = 184 */
        width: calc(100% + 184px);
        margin-left: -160px;
    }

    .in-slider .slick-slide {
        padding-right: 160px;
    }

    .i-slider-1-dots {
        left: 180px;
        /*bottom: -28px;*/
    }
    .slide-copy-panel-placeholder,
    .slide-copy-panel {
        right: 27.5%;
        width: 22.5%;
    }



    .nw-post-copy {
        padding-top: 42px;
        padding-left: 64px;
        padding-right: 128px;
    }
    .nw-share-row {
        top: 42px
    }

    .nw-post-copy-br {
        width: 72px;
    }

    .contact-lt p {
        padding-right: 160px;
    }

    .flop-row:nth-child(odd) .ff-copy,
    .flop-row:nth-child(even) .ff-copy {
        /*width: 55%;*/
        padding: 0 128px;
    }
    .ff-img {
        /*width: 45%;*/
    }

}


/*

bg grey:    #f2eeea;
bg grey 2:  #f1f1f2;
gold:       #ad936d;
body grey:  #53575a;
dark grey:  #525352;
footer:     #888b8d;
dot:        #c8c8c8;
nav/titles: #282828;

*/

